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

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

--
-- Current Database: `homeston_wp464`
--


--
-- Table structure for table `wpjj_commentmeta`
--

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

--
-- Dumping data for table `wpjj_commentmeta`
--

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

--
-- Table structure for table `wpjj_comments`
--

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

--
-- Dumping data for table `wpjj_comments`
--

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

--
-- Table structure for table `wpjj_e_events`
--

DROP TABLE IF EXISTS `wpjj_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text COLLATE utf8mb4_unicode_520_ci,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_e_events`
--

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

--
-- Table structure for table `wpjj_e_submissions`
--

DROP TABLE IF EXISTS `wpjj_e_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_e_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `hash_id` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `main_meta_id` bigint(20) unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint(20) unsigned NOT NULL,
  `referer` varchar(500) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `referer_title` varchar(300) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `element_id` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `form_name` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `campaign_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` varchar(46) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_agent` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `actions_count` int(11) DEFAULT '0',
  `actions_succeeded_count` int(11) DEFAULT '0',
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `meta` text COLLATE utf8mb4_unicode_520_ci,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  KEY `main_meta_id_index` (`main_meta_id`),
  KEY `hash_id_index` (`hash_id`),
  KEY `type_index` (`type`),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `campaign_id_index` (`campaign_id`),
  KEY `user_id_index` (`user_id`),
  KEY `user_ip_index` (`user_ip`),
  KEY `status_index` (`status`),
  KEY `is_read_index` (`is_read`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `referer_index` (`referer`(191)),
  KEY `referer_title_index` (`referer_title`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_e_submissions`
--

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

--
-- Table structure for table `wpjj_e_submissions_actions_log`
--

DROP TABLE IF EXISTS `wpjj_e_submissions_actions_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_e_submissions_actions_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL,
  `action_name` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `action_label` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log` text COLLATE utf8mb4_unicode_520_ci,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `action_name_index` (`action_name`),
  KEY `status_index` (`status`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_e_submissions_actions_log`
--

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

--
-- Table structure for table `wpjj_e_submissions_values`
--

DROP TABLE IF EXISTS `wpjj_e_submissions_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_e_submissions_values` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `key` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_e_submissions_values`
--

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

--
-- Table structure for table `wpjj_links`
--

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

--
-- Dumping data for table `wpjj_links`
--

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

--
-- Table structure for table `wpjj_options`
--

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

--
-- Dumping data for table `wpjj_options`
--

LOCK TABLES `wpjj_options` WRITE;
/*!40000 ALTER TABLE `wpjj_options` DISABLE KEYS */;
INSERT INTO `wpjj_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://kclgenetics.com','yes'),(2,'home','http://kclgenetics.com','yes'),(3,'blogname','Larson Running L Ranch','yes'),(4,'blogdescription','Home of KCL Genetics ','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','support@maiahost.com','yes'),(7,'start_of_week','0','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','closed','yes'),(21,'default_pingback_flag','','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:155:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"team_member/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"team_member/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"team_member/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"team_member/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"team_member/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"team_member/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"team_member/([^/]+)/embed/?$\";s:44:\"index.php?team_member=$matches[1]&embed=true\";s:32:\"team_member/([^/]+)/trackback/?$\";s:38:\"index.php?team_member=$matches[1]&tb=1\";s:40:\"team_member/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?team_member=$matches[1]&paged=$matches[2]\";s:47:\"team_member/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?team_member=$matches[1]&cpage=$matches[2]\";s:36:\"team_member/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?team_member=$matches[1]&page=$matches[2]\";s:28:\"team_member/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"team_member/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"team_member/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"team_member/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"team_member/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"team_member/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:61:\"team_member_position/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?team_member_position=$matches[1]&feed=$matches[2]\";s:56:\"team_member_position/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?team_member_position=$matches[1]&feed=$matches[2]\";s:37:\"team_member_position/([^/]+)/embed/?$\";s:53:\"index.php?team_member_position=$matches[1]&embed=true\";s:49:\"team_member_position/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?team_member_position=$matches[1]&paged=$matches[2]\";s:31:\"team_member_position/([^/]+)/?$\";s:42:\"index.php?team_member_position=$matches[1]\";s:35:\"mif_skins/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"mif_skins/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"mif_skins/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"mif_skins/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"mif_skins/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"mif_skins/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"mif_skins/(.+?)/embed/?$\";s:42:\"index.php?mif_skins=$matches[1]&embed=true\";s:28:\"mif_skins/(.+?)/trackback/?$\";s:36:\"index.php?mif_skins=$matches[1]&tb=1\";s:36:\"mif_skins/(.+?)/page/?([0-9]{1,})/?$\";s:49:\"index.php?mif_skins=$matches[1]&paged=$matches[2]\";s:43:\"mif_skins/(.+?)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?mif_skins=$matches[1]&cpage=$matches[2]\";s:32:\"mif_skins/(.+?)(?:/([0-9]+))?/?$\";s:48:\"index.php?mif_skins=$matches[1]&page=$matches[2]\";s:36:\"efbl_skins/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"efbl_skins/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"efbl_skins/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"efbl_skins/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"efbl_skins/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"efbl_skins/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"efbl_skins/(.+?)/embed/?$\";s:43:\"index.php?efbl_skins=$matches[1]&embed=true\";s:29:\"efbl_skins/(.+?)/trackback/?$\";s:37:\"index.php?efbl_skins=$matches[1]&tb=1\";s:37:\"efbl_skins/(.+?)/page/?([0-9]{1,})/?$\";s:50:\"index.php?efbl_skins=$matches[1]&paged=$matches[2]\";s:44:\"efbl_skins/(.+?)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?efbl_skins=$matches[1]&cpage=$matches[2]\";s:33:\"efbl_skins/(.+?)(?:/([0-9]+))?/?$\";s:49:\"index.php?efbl_skins=$matches[1]&page=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=44&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:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(4750,'widget_smatcat_team_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4751,'widget_ots_main_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4926,'theme_switched_via_customizer','','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:16:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";i:2;s:53:\"easy-twitter-feed-widget/easy-twitter-feed-widget.php\";i:3;s:43:\"easy-weather-widget/easy-weather-widget.php\";i:4;s:29:\"easy-wp-smtp/easy-wp-smtp.php\";i:5;s:31:\"elementor-pro/elementor-pro.php\";i:6;s:23:\"elementor/elementor.php\";i:7;s:44:\"facebook-pagelike-widget/facebook_widget.php\";i:8;s:19:\"jetpack/jetpack.php\";i:9;s:39:\"our-team-enhanced/our-team-showcase.php\";i:10;s:24:\"slider-images/Slider.php\";i:11;s:37:\"wd-facebook-feed/facebook-feed-wd.php\";i:12;s:29:\"widget-logic/widget_logic.php\";i:13;s:25:\"widget-options/plugin.php\";i:14;s:23:\"wordfence/wordfence.php\";i:15;s:67:\"wp-author-date-and-meta-remover/wp-author-date-and-meta-remover.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:82:\"/home/homeston/public_html/kclgenetics.com/wp-content/themes/start-press/style.css\";i:1;s:81:\"/home/homeston/public_html/kclgenetics.com/wp-content/plugins/akismet/akismet.php\";i:2;s:84:\"/home/homeston/public_html/kclgenetics.com/wp-content/themes/twentysixteen/style.css\";i:3;s:77:\"/home/homeston/public_html/kclgenetics.com/wp-content/themes/avenue/style.css\";i:4;s:67:\"/home/homeston/new.kclgenetics.com/wp-content/themes/Divi/style.css\";}','no'),(40,'template','start-press','yes'),(41,'stylesheet','start-press','yes'),(72844,'finished_updating_comment_type','1','yes'),(44,'comment_registration','1','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','51917','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','0','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','1','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:4:{i:1;a:0:{}i:2;a:6:{s:5:\"title\";s:22:\"Thought for the Day...\";s:4:\"text\";s:159:\"<img class=\"wp-image-667 aligncenter\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-1024x777.jpg\" alt=\"\" width=\"188\" height=\"156\" />\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:12:\"widget_logic\";s:0:\"\";s:27:\"extended_widget_opts-text-2\";a:6:{s:7:\"id_base\";s:6:\"text-2\";s:10:\"visibility\";a:4:{s:7:\"options\";s:4:\"show\";s:8:\"selected\";s:1:\"1\";s:4:\"misc\";a:1:{s:4:\"home\";s:1:\"1\";}s:5:\"pages\";a:2:{i:51;s:1:\"1\";i:44;s:1:\"1\";}}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:4:\"left\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"3\";}}i:3;a:6:{s:5:\"title\";s:26:\"Click here for PDF Version\";s:4:\"text\";s:257:\"<a href=\"http://kclgenetics.com/wp-content/uploads/2018/05/LarsonsHerefordAlliance051918.pdf\"><img class=\"alignleft size-medium wp-image-695\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-300x296.png\" alt=\"\" width=\"300\" height=\"296\" /></a>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:12:\"widget_logic\";s:0:\"\";s:27:\"extended_widget_opts-text-3\";a:6:{s:7:\"id_base\";s:6:\"text-3\";s:10:\"visibility\";a:2:{s:7:\"options\";s:4:\"hide\";s:8:\"selected\";s:1:\"0\";}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"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:3:{s:29:\"easy-wp-smtp/easy-wp-smtp.php\";s:17:\"swpsmtp_uninstall\";s:27:\"issuu-panel/issuu-panel.php\";a:2:{i:0;s:10:\"IssuuPanel\";i:1;s:15:\"uninstallPlugin\";}s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','44','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','662','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wpjj_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:64:{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:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:3:{s:5:\"title\";s:11:\"Site Search\";s:12:\"widget_logic\";s:0:\"\";s:29:\"extended_widget_opts-search-2\";a:6:{s:7:\"id_base\";s:8:\"search-2\";s:10:\"visibility\";a:2:{s:7:\"options\";s:4:\"hide\";s:8:\"selected\";s:1:\"0\";}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"0\";}}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:13:\"media_image-8\";i:1;s:6:\"text-3\";i:2;s:15:\"media_gallery-5\";i:3;s:6:\"text-2\";i:4;s:15:\"media_gallery-6\";}s:15:\"primary-sidebar\";a:3:{i:0;s:13:\"media_image-7\";i:1;s:13:\"media_image-4\";i:2;s:8:\"search-2\";}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_nav_menu','a:3:{i:2;a:4:{s:5:\"title\";s:10:\"Donor Cows\";s:8:\"nav_menu\";i:9;s:12:\"widget_logic\";s:0:\"\";s:31:\"extended_widget_opts-nav_menu-2\";a:6:{s:7:\"id_base\";s:10:\"nav_menu-2\";s:10:\"visibility\";a:4:{s:7:\"options\";s:4:\"show\";s:8:\"selected\";s:1:\"2\";s:5:\"pages\";a:1:{i:60;s:1:\"1\";}s:10:\"categories\";a:1:{i:3;s:1:\"1\";}}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"0\";}}i:3;a:4:{s:5:\"title\";s:14:\"Bull Influence\";s:8:\"nav_menu\";i:10;s:12:\"widget_logic\";s:0:\"\";s:31:\"extended_widget_opts-nav_menu-3\";a:6:{s:7:\"id_base\";s:10:\"nav_menu-3\";s:10:\"visibility\";a:2:{s:7:\"options\";s:4:\"show\";s:8:\"selected\";s:1:\"2\";}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"0\";}}s:12:\"_multiwidget\";i:1;}','yes'),(104,'cron','a:22:{i:1648285024;a:2:{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;}}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;}}}i:1648285543;a:1:{s:21:\"wordfence_ls_ntp_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:1648285890;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:1648288076;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1648288174;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:1648289475;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:1648289490;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:1648301790;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:1648301833;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:1648302389;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:1648310870;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1648316242;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:1648332480;a:1:{s:34:\"fs_data_sync_easy-facebook-likebox\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1648341542;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1648342085;a:1:{s:28:\"ots_extensions_license_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1648346299;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:1648346492;a:1:{s:21:\"et_builder_fonts_cron\";a:1:{s:32:\"552cbb9d6515dadbbc4718ad75114f08\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{s:8:\"interval\";s:5:\"daily\";}s:8:\"interval\";i:86400;}}}i:1648414800;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"370d5dbc66ef6823841d96b0cf225dcd\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1648414800;}}}}i:1648483200;a:1:{s:31:\"wordfence_email_activity_report\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1648674000;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"637fe8f799c8cbd0a01ef02c10dbb825\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1648674000;}}}}i:1648731863;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(105,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1488548430;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'),(354,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"support@maiahost.com\";s:7:\"version\";s:5:\"5.9.2\";s:9:\"timestamp\";i:1646976720;}','no'),(23418,'db_upgraded','','yes'),(232,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1521770490;}','no'),(235,'_site_transient_et_update_themes','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1521770478;}','no'),(136,'recently_activated','a:0:{}','yes'),(1126,'wordfence_version','7.5.9','yes'),(4915,'theme_mods_twentysixteen','a:12:{s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:472;s:12:\"header_image\";s:13:\"remove-header\";s:10:\"link_color\";s:7:\"#145a32\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:16:\"header_textcolor\";s:6:\"1a1a1a\";s:16:\"background_image\";s:0:\"\";s:21:\"background_position_x\";s:5:\"right\";s:21:\"background_position_y\";s:6:\"center\";s:15:\"background_size\";s:4:\"auto\";s:16:\"background_color\";s:6:\"105b00\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1556756014;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:13:\"media_image-8\";i:1;s:6:\"text-3\";}s:9:\"sidebar-1\";a:7:{i:0;s:13:\"media_image-9\";i:1;s:14:\"media_image-10\";i:2;s:10:\"nav_menu-2\";i:3;s:13:\"media_image-6\";i:4;s:8:\"fbw_id-2\";i:5;s:8:\"search-2\";i:6;s:10:\"nav_menu-3\";}s:9:\"sidebar-2\";a:3:{i:0;s:13:\"media_image-7\";i:1;s:13:\"media_image-4\";i:2;s:15:\"media_gallery-4\";}s:9:\"sidebar-3\";a:3:{i:0;s:15:\"media_gallery-5\";i:1;s:6:\"text-2\";i:2;s:15:\"media_gallery-6\";}}}}','yes'),(4921,'et_pb_builder_options','a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}','yes'),(1199,'wordfence_syncAttackDataAttempts','0','no'),(1200,'wordfence_syncingAttackData','0','no'),(1202,'wordfence_lastSyncAttackData','1647780814','no'),(11639,'widget_eww-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(8440,'theme_mods_city-store','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(4872,'wordfence_installed','1','yes'),(4744,'avenue','a:53:{s:17:\"sc_headerbar_bool\";s:3:\"yes\";s:26:\"avenue_branding_bar_height\";i:80;s:15:\"sc_facebook_url\";s:41:\"https://www.facebook.com/polledherefords/\";s:14:\"sc_twitter_url\";s:17:\"http://@runlranch\";s:15:\"sc_linkedin_url\";s:0:\"\";s:12:\"sc_gplus_url\";s:0:\"\";s:16:\"sc_instagram_url\";s:0:\"\";s:14:\"sc_youtube_url\";s:0:\"\";s:16:\"sc_pinterest_url\";s:0:\"\";s:12:\"sc_phone_url\";s:12:\"972-824-5869\";s:14:\"sc_address_url\";s:32:\"2793 FM 1991 * Clifton, TX 76634\";s:17:\"sc_footer_columns\";s:8:\"col-md-4\";s:14:\"sc_footer_text\";s:23:\"© 2001 Running L Ranch\";s:14:\"sc_theme_color\";s:4:\"blue\";s:12:\"sc_font_size\";i:14;s:14:\"sc_font_family\";s:22:\"Montserrat, sans-serif\";s:24:\"sc_font_family_secondary\";s:16:\"Lato, sans-serif\";s:16:\"sc_single_layout\";s:5:\"col2r\";s:18:\"sc_single_featured\";s:2:\"on\";s:14:\"sc_single_date\";s:2:\"on\";s:16:\"sc_single_author\";s:2:\"on\";s:19:\"sc_homepage_sidebar\";s:11:\"sidebar-off\";s:14:\"sc_blog_layout\";s:5:\"col2r\";s:19:\"sc_blog_layout_left\";s:4:\"col1\";s:16:\"sc_blog_featured\";s:2:\"on\";s:14:\"sc_slider_bool\";s:3:\"yes\";s:15:\"sc_slide1_image\";s:74:\"http://kclgenetics.com/wp-content/themes/avenue/inc/images/avenue_demo.jpg\";s:14:\"sc_slide1_text\";s:17:\"Welcome to Avenue\";s:15:\"sc_slide1_text2\";s:45:\"A professional, multi-purpose WordPress theme\";s:15:\"sc_slide2_image\";s:74:\"http://kclgenetics.com/wp-content/themes/avenue/inc/images/avenue_demo.jpg\";s:14:\"sc_slide2_text\";s:17:\"Welcome to Avenue\";s:15:\"sc_slide2_text2\";s:45:\"A professional, multi-purpose WordPress theme\";s:15:\"sc_slide3_image\";s:74:\"http://kclgenetics.com/wp-content/themes/avenue/inc/images/avenue_demo.jpg\";s:14:\"sc_slide3_text\";s:17:\"Welcome to Avenue\";s:15:\"sc_slide3_text2\";s:45:\"A professional, multi-purpose WordPress theme\";s:11:\"sc_cta_bool\";s:3:\"yes\";s:13:\"sc_cta1_title\";s:13:\"Theme Options\";s:12:\"sc_cta1_icon\";s:7:\"fa-cogs\";s:12:\"sc_cta1_text\";s:37:\"Change typography, colors, layouts...\";s:11:\"sc_cta1_url\";s:0:\"\";s:19:\"sc_cta1_button_text\";s:10:\"Click Here\";s:13:\"sc_cta2_title\";s:17:\"Responsive Layout\";s:12:\"sc_cta2_icon\";s:9:\"fa-mobile\";s:12:\"sc_cta2_text\";s:33:\"Fully responsive and mobile-ready\";s:11:\"sc_cta2_url\";s:0:\"\";s:19:\"sc_cta2_button_text\";s:10:\"Click Here\";s:13:\"sc_cta3_title\";s:19:\"Professional Design\";s:12:\"sc_cta3_icon\";s:10:\"fa-diamond\";s:12:\"sc_cta3_text\";s:51:\"Modern design to give your site a professional look\";s:11:\"sc_cta3_url\";s:0:\"\";s:19:\"sc_cta3_button_text\";s:10:\"Click Here\";s:25:\"sc_frontpage_content_bool\";s:3:\"yes\";s:21:\"sc_cta_trio_underline\";s:2:\"no\";}','yes'),(4746,'avenue_migration_process','completed','yes'),(4753,'ots-extension-notices','a:0:{}','yes'),(4927,'customize_stashed_theme_mods','a:2:{s:13:\"twentyfifteen\";a:1:{s:27:\"nav_menu_locations[primary]\";a:4:{s:5:\"value\";i:2;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2018-04-19 23:57:43\";}}s:4:\"Divi\";a:3:{s:32:\"nav_menu_locations[primary-menu]\";a:4:{s:5:\"value\";i:2;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2018-04-20 00:00:22\";}s:34:\"nav_menu_locations[secondary-menu]\";a:4:{s:5:\"value\";i:5;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2018-04-20 00:00:22\";}s:31:\"nav_menu_locations[footer-menu]\";a:4:{s:5:\"value\";i:2;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2018-04-20 00:00:22\";}}}','no'),(4977,'option_tree','a:34:{s:21:\"incart_welcome_speach\";s:0:\"\";s:23:\"incart-lite_colorpicker\";s:7:\"#1abc9c\";s:19:\"incart-lite_favicon\";s:0:\"\";s:20:\"incart-lite_logo_img\";s:0:\"\";s:29:\"incart-lite_frontslider_stype\";s:0:\"\";s:20:\"incart-lite_logo_alt\";s:12:\"Incart Theme\";s:23:\"incart-lite_moblie_menu\";s:4:\"1025\";s:23:\"incart-lite_head_topbar\";s:2:\"on\";s:17:\"head_social_icons\";s:0:\"\";s:22:\"incart-lite_fbook_link\";s:1:\"#\";s:24:\"incart-lite_twitter_link\";s:1:\"#\";s:22:\"incart-lite_gplus_link\";s:1:\"#\";s:25:\"incart-lite_linkedin_link\";s:1:\"#\";s:26:\"incart-lite_pinterest_link\";s:1:\"#\";s:23:\"incart-lite_flickr_link\";s:1:\"#\";s:25:\"incart-lite_dribbble_link\";s:1:\"#\";s:19:\"incart-lite_vk_link\";s:1:\"#\";s:22:\"incart-lite_skype_link\";s:1:\"#\";s:26:\"incart-lite_instagram_link\";s:1:\"#\";s:22:\"incart-lite_vimeo_link\";s:1:\"#\";s:26:\"incart-lite_topbar_contact\";s:14:\"1+555-240-7980\";s:28:\"incart-lite_blogpage_heading\";s:4:\"Blog\";s:32:\"incart-lite_fb1_first_part_image\";s:0:\"\";s:27:\"incart-lite_featured_title1\";s:12:\"Incart Theme\";s:31:\"incart-lite_fb1_first_part_link\";s:0:\"\";s:33:\"incart-lite_fb2_second_part_image\";s:0:\"\";s:27:\"incart-lite_featured_title2\";s:12:\"Incart Theme\";s:32:\"incart-lite_fb2_second_part_link\";s:0:\"\";s:32:\"incart-lite_fb3_third_part_image\";s:0:\"\";s:27:\"incart-lite_featured_title3\";s:12:\"Incart Theme\";s:31:\"incart-lite_fb3_third_part_link\";s:0:\"\";s:30:\"incart-lite_fullparallax_image\";s:0:\"\";s:29:\"incart-lite_para_content_left\";s:0:\"\";s:21:\"incart-lite_copyright\";s:19:\"Copyright text here\";}','yes'),(4978,'theme_mods_incart-lite','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(5111,'widgetopts_installDate','2018-04-20 05:13:58','yes'),(5112,'widgetopts_tabmodule-visibility','activate','yes'),(5113,'widgetopts_tabmodule-devices','activate','yes'),(5114,'widgetopts_tabmodule-alignment','activate','yes'),(5115,'widgetopts_tabmodule-hide_title','activate','yes'),(5116,'widgetopts_tabmodule-classes','activate','yes'),(5117,'widgetopts_tabmodule-logic','activate','yes'),(5118,'widgetopts_tabmodule-settings','s:158:\"a:2:{s:10:\"visibility\";a:3:{s:9:\"post_type\";s:1:\"1\";s:10:\"taxonomies\";s:1:\"1\";s:4:\"misc\";s:1:\"1\";}s:7:\"classes\";a:2:{s:2:\"id\";s:1:\"1\";s:4:\"type\";s:4:\"both\";}}\";','yes'),(5119,'_widgetopts_default_registered_','1','yes'),(4985,'widget_fbw_id','a:2:{i:2;a:14:{s:17:\"data_small_header\";s:0:\"\";s:26:\"data_adapt_container_width\";s:0:\"\";s:15:\"data_hide_cover\";s:0:\"\";s:18:\"data_show_facepile\";s:0:\"\";s:15:\"data_show_posts\";s:2:\"on\";s:5:\"title\";s:0:\"\";s:6:\"app_id\";s:15:\"503595753002055\";s:6:\"fb_url\";s:40:\"https://www.facebook.com/polledherefords\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"750\";s:10:\"custom_css\";s:0:\"\";s:10:\"select_lng\";s:0:\"\";s:12:\"widget_logic\";s:0:\"\";s:29:\"extended_widget_opts-fbw_id-2\";a:6:{s:7:\"id_base\";s:8:\"fbw_id-2\";s:10:\"visibility\";a:4:{s:4:\"main\";s:0:\"\";s:7:\"options\";s:4:\"show\";s:8:\"selected\";s:1:\"1\";s:5:\"pages\";a:1:{i:306;s:1:\"1\";}}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"0\";}}s:12:\"_multiwidget\";i:1;}','yes'),(4987,'widget_ffwd_info','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4990,'ffwd_admin_notice','a:1:{s:15:\"two_week_review\";a:3:{s:5:\"start\";s:9:\"5/16/2019\";s:3:\"int\";i:14;s:9:\"dismissed\";i:0;}}','yes'),(4989,'ffwd_autoupdate_time','1648290259','yes'),(5120,'widgetopts_removed_global_pages','1','yes'),(5121,'widgetopts_settings','a:14:{s:8:\"settings\";a:2:{s:10:\"visibility\";a:3:{s:9:\"post_type\";s:1:\"1\";s:10:\"taxonomies\";s:1:\"1\";s:4:\"misc\";s:1:\"1\";}s:7:\"classes\";a:2:{s:2:\"id\";s:1:\"1\";s:4:\"type\";s:4:\"both\";}}s:10:\"visibility\";s:8:\"activate\";s:7:\"devices\";s:8:\"activate\";s:9:\"alignment\";s:8:\"activate\";s:10:\"hide_title\";s:8:\"activate\";s:7:\"classes\";s:8:\"activate\";s:5:\"logic\";s:8:\"activate\";s:10:\"siteorigin\";b:0;s:6:\"search\";s:8:\"activate\";s:4:\"move\";s:8:\"activate\";s:9:\"elementor\";b:0;s:11:\"widget_area\";s:8:\"activate\";s:13:\"import_export\";s:8:\"activate\";s:6:\"beaver\";b:0;}','yes'),(5084,'widget_logic_version','5.7.0','no'),(5085,'widget_logic','a:0:{}','yes'),(5096,'jetpack_log','a:4:{i:0;a:4:{s:4:\"time\";i:1524242987;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:1;a:4:{s:4:\"time\";i:1524242994;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:2;a:4:{s:4:\"time\";i:1524243000;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:145541036;s:4:\"code\";s:8:\"register\";}i:3;a:4:{s:4:\"time\";i:1524243025;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:145541036;s:4:\"code\";s:8:\"register\";}}','no'),(5090,'jetpack_activation_source','a:2:{i:0;s:4:\"list\";i:1;N;}','yes'),(5097,'jetpack_tos_agreed','1','yes'),(5098,'jetpack_secrets','a:1:{s:19:\"jetpack_authorize_1\";a:3:{s:8:\"secret_1\";s:32:\"ee91gvwkaZPTt7BnXUnbJuQGrlEKSCoU\";s:8:\"secret_2\";s:32:\"QrvTU5Aju52PuOWe4MYQwDKaUz8CAFdE\";s:3:\"exp\";i:1615261575;}}','no'),(5099,'jetpack_private_options','a:1:{s:10:\"blog_token\";s:65:\"EFlOo9qupVengIyCe8jC4hHW83Bb%54R.EfTe5F@mV0lP^F*)e7T1AKr61iMXMJkq\";}','yes'),(5100,'jetpack_last_connect_url_check','1615254375','no'),(5103,'jetpack_active_plan','a:7:{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;}','yes'),(5427,'widget_do-etfw','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5124,'widgetopts_global_categories','a:4:{i:0;O:7:\"WP_Term\":16:{s:7:\"term_id\";i:4;s:4:\"name\";s:5:\"Bulls\";s:4:\"slug\";s:5:\"bulls\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:4;s:8:\"taxonomy\";s:8:\"category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:12;s:6:\"filter\";s:3:\"raw\";s:6:\"cat_ID\";i:4;s:14:\"category_count\";i:12;s:20:\"category_description\";s:0:\"\";s:8:\"cat_name\";s:5:\"Bulls\";s:17:\"category_nicename\";s:5:\"bulls\";s:15:\"category_parent\";i:0;}i:1;O:7:\"WP_Term\":16:{s:7:\"term_id\";i:3;s:4:\"name\";s:4:\"Cows\";s:4:\"slug\";s:4:\"cows\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:3;s:8:\"taxonomy\";s:8:\"category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:22;s:6:\"filter\";s:3:\"raw\";s:6:\"cat_ID\";i:3;s:14:\"category_count\";i:22;s:20:\"category_description\";s:0:\"\";s:8:\"cat_name\";s:4:\"Cows\";s:17:\"category_nicename\";s:4:\"cows\";s:15:\"category_parent\";i:0;}i:2;O:7:\"WP_Term\":16:{s:7:\"term_id\";i:6;s:4:\"name\";s:4:\"News\";s:4:\"slug\";s:4:\"news\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:6;s:8:\"taxonomy\";s:8:\"category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:2;s:6:\"filter\";s:3:\"raw\";s:6:\"cat_ID\";i:6;s:14:\"category_count\";i:2;s:20:\"category_description\";s:0:\"\";s:8:\"cat_name\";s:4:\"News\";s:17:\"category_nicename\";s:4:\"news\";s:15:\"category_parent\";i:0;}i:3;O:7:\"WP_Term\":16:{s:7:\"term_id\";i:1;s:4:\"name\";s:13:\"Uncategorized\";s:4:\"slug\";s:13:\"uncategorized\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:1;s:8:\"taxonomy\";s:8:\"category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:0;s:6:\"filter\";s:3:\"raw\";s:6:\"cat_ID\";i:1;s:14:\"category_count\";i:0;s:20:\"category_description\";s:0:\"\";s:8:\"cat_name\";s:13:\"Uncategorized\";s:17:\"category_nicename\";s:13:\"uncategorized\";s:15:\"category_parent\";i:0;}}','yes'),(5128,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.5.6\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1524245299;s:7:\"version\";s:5:\"5.0.1\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(39058,'widgetopts_global_types','a:5:{s:4:\"post\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:4:\"post\";s:5:\"label\";s:5:\"Posts\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:5:\"Posts\";s:13:\"singular_name\";s:4:\"Post\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:9:\"All Posts\";s:8:\"archives\";s:13:\"Post Archives\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:5:\"Posts\";s:14:\"name_admin_bar\";s:4:\"Post\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";i:5;s:9:\"menu_icon\";N;s:15:\"capability_type\";s:4:\"post\";s:12:\"map_meta_cap\";b:1;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:1;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:7:\"rewrite\";b:0;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:5:\"posts\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Posts_Controller\";}s:4:\"page\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:4:\"page\";s:5:\"label\";s:5:\"Pages\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:5:\"Pages\";s:13:\"singular_name\";s:4:\"Page\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Page\";s:9:\"edit_item\";s:9:\"Edit Page\";s:8:\"new_item\";s:8:\"New Page\";s:9:\"view_item\";s:9:\"View Page\";s:10:\"view_items\";s:10:\"View Pages\";s:12:\"search_items\";s:12:\"Search Pages\";s:9:\"not_found\";s:15:\"No pages found.\";s:18:\"not_found_in_trash\";s:24:\"No pages found in Trash.\";s:17:\"parent_item_colon\";s:12:\"Parent Page:\";s:9:\"all_items\";s:9:\"All Pages\";s:8:\"archives\";s:13:\"Page Archives\";s:10:\"attributes\";s:15:\"Page Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into page\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this page\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter pages list\";s:21:\"items_list_navigation\";s:21:\"Pages list navigation\";s:10:\"items_list\";s:10:\"Pages list\";s:14:\"item_published\";s:15:\"Page published.\";s:24:\"item_published_privately\";s:25:\"Page published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Page reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Page scheduled.\";s:12:\"item_updated\";s:13:\"Page updated.\";s:9:\"menu_name\";s:5:\"Pages\";s:14:\"name_admin_bar\";s:4:\"Page\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:1;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";i:20;s:9:\"menu_icon\";N;s:15:\"capability_type\";s:4:\"page\";s:12:\"map_meta_cap\";b:1;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:1;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_page\";s:9:\"read_post\";s:9:\"read_page\";s:11:\"delete_post\";s:11:\"delete_page\";s:10:\"edit_posts\";s:10:\"edit_pages\";s:17:\"edit_others_posts\";s:17:\"edit_others_pages\";s:13:\"publish_posts\";s:13:\"publish_pages\";s:18:\"read_private_posts\";s:18:\"read_private_pages\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_pages\";s:20:\"delete_private_posts\";s:20:\"delete_private_pages\";s:22:\"delete_published_posts\";s:22:\"delete_published_pages\";s:19:\"delete_others_posts\";s:19:\"delete_others_pages\";s:18:\"edit_private_posts\";s:18:\"edit_private_pages\";s:20:\"edit_published_posts\";s:20:\"edit_published_pages\";s:12:\"create_posts\";s:10:\"edit_pages\";}s:7:\"rewrite\";b:0;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:5:\"pages\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Posts_Controller\";}s:10:\"attachment\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:10:\"attachment\";s:5:\"label\";s:5:\"Media\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:5:\"Media\";s:13:\"singular_name\";s:5:\"Media\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:10:\"Edit Media\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:20:\"View Attachment Page\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:5:\"Media\";s:8:\"archives\";s:5:\"Media\";s:10:\"attributes\";s:21:\"Attachment Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:5:\"Media\";s:14:\"name_admin_bar\";s:5:\"Media\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";N;s:9:\"menu_icon\";N;s:15:\"capability_type\";s:4:\"post\";s:12:\"map_meta_cap\";b:1;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:1;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:12:\"upload_files\";}s:7:\"rewrite\";b:0;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:5:\"media\";s:21:\"rest_controller_class\";s:30:\"WP_REST_Attachments_Controller\";}s:17:\"elementor_library\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:17:\"elementor_library\";s:5:\"label\";s:12:\"My Templates\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:12:\"My Templates\";s:13:\"singular_name\";s:8:\"Template\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:16:\"Add New Template\";s:9:\"edit_item\";s:13:\"Edit Template\";s:8:\"new_item\";s:12:\"New Template\";s:9:\"view_item\";s:13:\"View Template\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:15:\"Search Template\";s:9:\"not_found\";s:18:\"No Templates found\";s:18:\"not_found_in_trash\";s:27:\"No Templates found in Trash\";s:17:\"parent_item_colon\";s:0:\"\";s:9:\"all_items\";s:13:\"All Templates\";s:8:\"archives\";s:13:\"All Templates\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:9:\"Templates\";s:14:\"name_admin_bar\";s:8:\"Template\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";N;s:9:\"menu_icon\";s:20:\"dashicons-admin-page\";s:15:\"capability_type\";s:4:\"post\";s:12:\"map_meta_cap\";b:1;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";s:17:\"elementor_library\";s:10:\"can_export\";b:1;s:16:\"delete_with_user\";N;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:7:\"rewrite\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";b:0;}s:11:\"team_member\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:11:\"team_member\";s:5:\"label\";s:12:\"Team Members\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:12:\"Team Members\";s:13:\"singular_name\";s:11:\"Team Member\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:14:\"Add New Member\";s:9:\"edit_item\";s:11:\"Edit Member\";s:8:\"new_item\";s:10:\"New Member\";s:9:\"view_item\";s:11:\"View Member\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:14:\"Search Members\";s:9:\"not_found\";s:17:\"No members found.\";s:18:\"not_found_in_trash\";s:26:\"No members found in Trash.\";s:17:\"parent_item_colon\";s:15:\"Parent Members:\";s:9:\"all_items\";s:11:\"All Members\";s:8:\"archives\";s:15:\"Member Archives\";s:10:\"attributes\";s:17:\"Member Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:4:\"Team\";s:14:\"name_admin_bar\";s:11:\"Team Member\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";N;s:9:\"menu_icon\";s:21:\"dashicons-admin-users\";s:15:\"capability_type\";s:4:\"post\";s:12:\"map_meta_cap\";b:1;s:20:\"register_meta_box_cb\";s:26:\"ots\\team_member_meta_boxes\";s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";s:11:\"team_member\";s:10:\"can_export\";b:1;s:16:\"delete_with_user\";N;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:7:\"rewrite\";a:5:{s:4:\"slug\";s:11:\"team_member\";s:10:\"with_front\";b:1;s:5:\"pages\";b:1;s:5:\"feeds\";b:0;s:7:\"ep_mask\";i:1;}s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";b:0;}}','yes'),(6089,'widget_maxwell-magazine-posts-columns','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6090,'widget_maxwell-magazine-posts-grid','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6091,'theme_mods_maxwell','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(6093,'theme_mods_bg-photo-frame','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(6094,'theme_mods_skt-toothy','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(6107,'widget_recent-posts-template3','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(6108,'widget_category-posts-template1','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(6109,'widget_recent-posts-template2','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(6110,'widget_top-footer-category-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(6111,'theme_mods_news-viral','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(6534,'ffwd_subscribe_done','1','yes'),(9566,'widgetopts_global_taxonomies','a:3:{s:8:\"category\";O:11:\"WP_Taxonomy\":23:{s:4:\"name\";s:8:\"category\";s:5:\"label\";s:10:\"Categories\";s:6:\"labels\";O:8:\"stdClass\":23:{s:4:\"name\";s:10:\"Categories\";s:13:\"singular_name\";s:8:\"Category\";s:12:\"search_items\";s:17:\"Search Categories\";s:13:\"popular_items\";N;s:9:\"all_items\";s:14:\"All Categories\";s:11:\"parent_item\";s:15:\"Parent Category\";s:17:\"parent_item_colon\";s:16:\"Parent Category:\";s:9:\"edit_item\";s:13:\"Edit Category\";s:9:\"view_item\";s:13:\"View Category\";s:11:\"update_item\";s:15:\"Update Category\";s:12:\"add_new_item\";s:16:\"Add New Category\";s:13:\"new_item_name\";s:17:\"New Category Name\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:20:\"No categories found.\";s:8:\"no_terms\";s:13:\"No categories\";s:21:\"items_list_navigation\";s:26:\"Categories list navigation\";s:10:\"items_list\";s:15:\"Categories list\";s:9:\"most_used\";s:9:\"Most Used\";s:13:\"back_to_items\";s:25:\"&larr; Back to Categories\";s:9:\"menu_name\";s:10:\"Categories\";s:14:\"name_admin_bar\";s:8:\"category\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:24:\"post_categories_meta_box\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:15:\"edit_categories\";s:12:\"delete_terms\";s:17:\"delete_categories\";s:12:\"assign_terms\";s:17:\"assign_categories\";}s:7:\"rewrite\";a:4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:1;s:7:\"ep_mask\";i:512;s:4:\"slug\";s:8:\"category\";}s:9:\"query_var\";s:13:\"category_name\";s:21:\"update_count_callback\";s:0:\"\";s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:10:\"categories\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Terms_Controller\";s:8:\"_builtin\";b:1;}s:8:\"post_tag\";O:11:\"WP_Taxonomy\":23:{s:4:\"name\";s:8:\"post_tag\";s:5:\"label\";s:4:\"Tags\";s:6:\"labels\";O:8:\"stdClass\":23:{s:4:\"name\";s:4:\"Tags\";s:13:\"singular_name\";s:3:\"Tag\";s:12:\"search_items\";s:11:\"Search Tags\";s:13:\"popular_items\";s:12:\"Popular Tags\";s:9:\"all_items\";s:8:\"All Tags\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:8:\"Edit Tag\";s:9:\"view_item\";s:8:\"View Tag\";s:11:\"update_item\";s:10:\"Update Tag\";s:12:\"add_new_item\";s:11:\"Add New Tag\";s:13:\"new_item_name\";s:12:\"New Tag Name\";s:26:\"separate_items_with_commas\";s:25:\"Separate tags with commas\";s:19:\"add_or_remove_items\";s:18:\"Add or remove tags\";s:21:\"choose_from_most_used\";s:30:\"Choose from the most used tags\";s:9:\"not_found\";s:14:\"No tags found.\";s:8:\"no_terms\";s:7:\"No tags\";s:21:\"items_list_navigation\";s:20:\"Tags list navigation\";s:10:\"items_list\";s:9:\"Tags list\";s:9:\"most_used\";s:9:\"Most Used\";s:13:\"back_to_items\";s:19:\"&larr; Back to Tags\";s:9:\"menu_name\";s:4:\"Tags\";s:14:\"name_admin_bar\";s:8:\"post_tag\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:16:\"manage_post_tags\";s:10:\"edit_terms\";s:14:\"edit_post_tags\";s:12:\"delete_terms\";s:16:\"delete_post_tags\";s:12:\"assign_terms\";s:16:\"assign_post_tags\";}s:7:\"rewrite\";a:4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:1024;s:4:\"slug\";s:3:\"tag\";}s:9:\"query_var\";s:3:\"tag\";s:21:\"update_count_callback\";s:0:\"\";s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:4:\"tags\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Terms_Controller\";s:8:\"_builtin\";b:1;}s:20:\"team_member_position\";O:11:\"WP_Taxonomy\":23:{s:4:\"name\";s:20:\"team_member_position\";s:5:\"label\";s:6:\"Groups\";s:6:\"labels\";O:8:\"stdClass\":24:{s:4:\"name\";s:6:\"Groups\";s:13:\"singular_name\";s:5:\"Group\";s:12:\"search_items\";s:13:\"Search Groups\";s:13:\"popular_items\";N;s:9:\"all_items\";s:10:\"All Groups\";s:11:\"parent_item\";s:12:\"Parent Group\";s:17:\"parent_item_colon\";s:13:\"Parent Group:\";s:9:\"edit_item\";s:10:\"Edit Group\";s:9:\"view_item\";s:13:\"View Category\";s:11:\"update_item\";s:12:\"Update Group\";s:12:\"add_new_item\";s:13:\"Add New Group\";s:13:\"new_item_name\";s:9:\"New Group\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:20:\"No categories found.\";s:8:\"no_terms\";s:13:\"No categories\";s:21:\"items_list_navigation\";s:26:\"Categories list navigation\";s:10:\"items_list\";s:15:\"Categories list\";s:9:\"most_used\";s:9:\"Most Used\";s:13:\"back_to_items\";s:25:\"&larr; Back to Categories\";s:9:\"menu_name\";s:6:\"Groups\";s:14:\"name_admin_bar\";s:5:\"Group\";s:8:\"archives\";s:10:\"All Groups\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:0;s:11:\"meta_box_cb\";s:24:\"post_categories_meta_box\";s:11:\"object_type\";a:1:{i:0;s:11:\"team_member\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";a:5:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:0;i:0;s:0:\"\";s:4:\"slug\";s:20:\"team_member_position\";}s:9:\"query_var\";s:20:\"team_member_position\";s:21:\"update_count_callback\";s:0:\"\";s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";b:0;s:8:\"_builtin\";b:0;}}','yes'),(5141,'widgetopts_tabmodule-widget_area','activate','yes'),(5142,'widgetopts_tabmodule-import_export','activate','yes'),(5143,'widgetopts_tabmodule-move','activate','yes'),(5144,'widgetopts_tabmodule-search','activate','yes'),(5161,'widget_rich_web_photo_slider','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6099,'widget_poseidon-magazine-posts-columns','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6100,'widget_poseidon-magazine-posts-grid','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6101,'widget_poseidon-magazine-posts-boxed','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6102,'widget_poseidon-magazine-vertical-box','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6103,'theme_mods_poseidon','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1545006454;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:13:\"media_image-8\";i:1;s:6:\"text-3\";i:2;s:6:\"text-2\";i:3;s:13:\"media_image-7\";i:4;s:15:\"media_gallery-6\";}s:7:\"sidebar\";a:10:{i:0;s:13:\"media_image-9\";i:1;s:14:\"media_image-10\";i:2;s:10:\"nav_menu-2\";i:3;s:13:\"media_image-6\";i:4;s:8:\"fbw_id-2\";i:5;s:8:\"search-2\";i:6;s:15:\"media_gallery-5\";i:7;s:15:\"media_gallery-4\";i:8;s:13:\"media_image-4\";i:9;s:10:\"nav_menu-3\";}s:17:\"magazine-homepage\";a:0:{}}}}','yes'),(8569,'ffwd_limit_notice','1','yes'),(6606,'issuu_painel_api_key','','yes'),(6607,'issuu_painel_api_secret','','yes'),(6608,'issuu_painel_enabled_user','Administrator','yes'),(6609,'issuu_painel_debug','disable','yes'),(6610,'issuu_painel_shortcode_cache','s:6:\"a:0:{}\";','yes'),(6611,'issuu_painel_cache_status','disable','yes'),(6612,'issuu_painel_reader','issuu_embed','yes'),(6613,'issuu_painel_cron','s:102:\"a:1:{s:31:\"on-cron-flush-issuu-panel-cache\";a:2:{s:4:\"init\";i:1527100377;s:12:\"next_trigger\";i:3600;}}\";','yes'),(6614,'widget_issuupanelwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6366,'widgetopts_RatingDiv','yes','yes'),(13431,'ffwd_old_version','1.0.35','yes'),(143,'jetpack_activated','1','yes'),(145,'jetpack_file_data','a:1:{s:3:\"4.6\";a:52:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:40:\"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:76:\"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:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:65:\"Allow comments with WordPress.com, Twitter, Facebook, or Google+.\";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:61:\"Organize and display different types of content on your site.\";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:54:\"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:51:\"Write posts or pages in plain-text Markdown syntax.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:47:\"Optimize your site for smartphones and tablets.\";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:27:\"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:34:\"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:43:\"Prevent and block malicious login attempts.\";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:\"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:46:\"Secure user authentication with WordPress.com.\";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:55:\"Notify your readers of new posts and comments by 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:0:\"\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";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:45:\"Powerful, simple video hosting for WordPress.\";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'),(234,'et_account_status','active','yes'),(146,'jetpack_available_modules','a:1:{s:4:\"10.7\";a:42:{s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s: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:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(147,'jetpack_options','a:9:{s:7:\"version\";s:15:\"10.7:1646305465\";s:11:\"old_version\";s:15:\"10.6:1643799813\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:145541036;s:6:\"public\";i:1;s:9:\"jumpstart\";s:14:\"new_connection\";s:14:\"last_heartbeat\";i:1648230118;s:30:\"recommendations_banner_enabled\";b:0;}','yes'),(149,'do_activate','0','yes'),(437,'swpsmtp_options','a:3:{s:16:\"from_email_field\";s:0:\"\";s:15:\"from_name_field\";s:0:\"\";s:13:\"smtp_settings\";a:6:{s:4:\"host\";s:16:\"smtp.example.com\";s:15:\"type_encryption\";s:4:\"none\";s:4:\"port\";i:25;s:13:\"autentication\";s:3:\"yes\";s:8:\"username\";s:12:\"yourusername\";s:8:\"password\";s:12:\"yourpassword\";}}','yes'),(178,'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'),(173,'jetpack_sync_settings_disable','0','yes'),(180,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";b:0;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(191,'jetpack_constants_sync_checksum','a:21:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:3200812905;s:14:\"WP_CONTENT_DIR\";i:1424981059;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:3766019635;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:1581579137;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:771791684;s:8:\"WP_DEBUG\";i:734881840;s:16:\"ATOMIC_CLIENT_ID\";i:634125391;}','yes'),(194,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:4:\"http\";}','yes'),(195,'jetpack_sync_https_history_site_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:4:\"http\";}','yes'),(196,'jetpack_sync_https_history_home_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:4:\"http\";}','yes'),(73548,'jetpack_updates_sync_checksum','a:3:{s:14:\"update_plugins\";i:3986291696;s:13:\"update_themes\";i:4028186428;s:11:\"update_core\";i:56664087;}','yes'),(226,'jetpack_callables_sync_checksum','a:37:{s:18:\"wp_max_upload_size\";i:2450289511;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:200385012;s:8:\"site_url\";i:200385012;s:8:\"home_url\";i:200385012;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:2903718415;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:1397006253;s:10:\"post_types\";i:2151754813;s:18:\"post_type_features\";i:2689574129;s:10:\"shortcodes\";i:2684363740;s:27:\"rest_api_allowed_post_types\";i:2577480890;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:1760049636;s:11:\"get_plugins\";i:3700065801;s:14:\"active_modules\";i:2194798513;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:4010310513;s:14:\"paused_plugins\";i:223132457;s:13:\"paused_themes\";i:223132457;s:26:\"main_network_site_wpcom_id\";i:1940133352;s:24:\"get_plugins_action_links\";i:1365559828;s:5:\"roles\";i:3691570292;s:8:\"timezone\";i:3808505409;s:13:\"theme_support\";i:2200017897;s:23:\"wp_get_environment_type\";i:1138987844;s:24:\"available_jetpack_blocks\";i:1690063776;s:12:\"is_fse_theme\";i:734881840;}','yes'),(227,'jpsq_sync_checkout','0:0','no'),(228,'jetpack_next_sync_time_sync','1648284872','yes'),(229,'jetpack_next_sync_time_full-sync-enqueue','1622628128','yes'),(237,'current_theme','Start Press','yes'),(238,'theme_mods_Divi','a:12:{i:0;b:0;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:21:\"et_pb_layouts_updated\";s:3:\"yes\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:34:\"et_pb_predefined_layouts_version_2\";s:2:\"on\";s:18:\"custom_css_post_id\";i:38;s:16:\"background_color\";s:6:\"319e45\";s:18:\"nav_menu_locations\";a:3:{s:12:\"primary-menu\";i:2;s:14:\"secondary-menu\";i:5;s:11:\"footer-menu\";i:2;}s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";}','yes'),(239,'theme_switched','','yes'),(240,'et_pb_cache_notice','a:1:{s:6:\"3.0.31\";s:6:\"ignore\";}','yes'),(241,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(242,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(243,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(244,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(245,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(246,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(247,'et_divi','a:238:{s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:25:\"3_0_flush_rewrite_rules_2\";s:4:\"done\";s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:15:\"divi_1_3_images\";s:7:\"checked\";s:9:\"divi_logo\";s:62:\"http://new.kclgenetics.com/wp-content/uploads/2017/03/logo.gif\";s:12:\"divi_favicon\";s:0:\"\";s:14:\"divi_fixed_nav\";s:5:\"false\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#e02b20|#e09900|#edf000|#7cda24|#0c71c3|#8300e9\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_mailchimp_api_key\";s:0:\"\";s:31:\"divi_regenerate_mailchimp_lists\";s:5:\"false\";s:28:\"divi_regenerate_aweber_lists\";s:5:\"false\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:5:\"false\";s:21:\"divi_show_google_icon\";s:5:\"false\";s:18:\"divi_show_rss_icon\";s:5:\"false\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:2:\"on\";s:16:\"divi_back_to_top\";s:5:\"false\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:15:\"divi_custom_css\";s:0:\"\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:25:\"divi_scroll_to_anchor_fix\";s:5:\"false\";s:14:\"divi_postinfo2\";a:0:{}s:22:\"divi_show_postcomments\";s:5:\"false\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:0:{}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:0:\"\";s:21:\"divi_integration_body\";s:0:\"\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:16:\"show_search_icon\";b:0;s:12:\"phone_number\";s:14:\"(972) 824-5869\";s:12:\"header_email\";s:17:\"runLranch@aol.com\";s:11:\"menu_height\";i:243;s:12:\"header_style\";s:8:\"centered\";s:12:\"boxed_layout\";b:1;s:12:\"accent_color\";s:7:\"#013a13\";s:16:\"secondary_nav_bg\";s:7:\"#0b4f00\";s:24:\"show_footer_social_icons\";b:0;s:27:\"bottom_bar_background_color\";s:7:\"#001910\";s:21:\"custom_footer_credits\";s:60:\"Copyrights KCL Genetics 2012-2017 - Larsons\' Running L Ranch\";s:21:\"bottom_bar_text_color\";s:7:\"#b7b7b7\";s:21:\"primary_nav_font_size\";i:18;s:16:\"primary_nav_font\";s:7:\"Raleway\";s:16:\"cover_background\";b:0;s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:30:\"et_fb_pref_modal_snap_location\";s:4:\"left\";s:21:\"et_fb_pref_modal_snap\";s:5:\"false\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:400;s:33:\"et_fb_pref_modal_dimension_height\";i:400;s:27:\"et_fb_pref_modal_position_x\";i:386;s:27:\"et_fb_pref_modal_position_y\";i:10;s:24:\"show_header_social_icons\";b:1;s:26:\"all_buttons_bg_color_hover\";s:21:\"rgba(255,255,255,0.2)\";s:39:\"static_css_custom_css_safety_check_done\";b:1;s:27:\"et_pb_clear_templates_cache\";b:1;s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:27:\"divi_skip_font_subset_force\";b:1;s:19:\"post_meta_font_size\";s:2:\"14\";s:16:\"post_meta_height\";s:1:\"1\";s:17:\"post_meta_spacing\";s:1:\"0\";s:15:\"post_meta_style\";s:0:\"\";s:21:\"post_header_font_size\";s:2:\"30\";s:18:\"post_header_height\";s:1:\"1\";s:19:\"post_header_spacing\";s:1:\"0\";s:17:\"post_header_style\";s:0:\"\";s:13:\"content_width\";s:4:\"1080\";s:12:\"gutter_width\";s:1:\"3\";s:17:\"use_sidebar_width\";s:0:\"\";s:13:\"sidebar_width\";s:2:\"21\";s:15:\"section_padding\";s:1:\"4\";s:20:\"phone_section_height\";s:2:\"50\";s:21:\"tablet_section_height\";s:2:\"50\";s:11:\"row_padding\";s:1:\"2\";s:16:\"phone_row_height\";s:2:\"30\";s:17:\"tablet_row_height\";s:2:\"30\";s:14:\"body_font_size\";s:2:\"14\";s:16:\"body_font_height\";s:3:\"1.7\";s:20:\"phone_body_font_size\";s:2:\"14\";s:21:\"tablet_body_font_size\";s:2:\"14\";s:16:\"body_header_size\";s:2:\"30\";s:19:\"body_header_spacing\";s:1:\"0\";s:18:\"body_header_height\";s:1:\"1\";s:17:\"body_header_style\";s:0:\"\";s:22:\"phone_header_font_size\";s:2:\"30\";s:23:\"tablet_header_font_size\";s:2:\"30\";s:12:\"heading_font\";s:4:\"none\";s:9:\"body_font\";s:4:\"none\";s:10:\"link_color\";s:7:\"#013a13\";s:10:\"font_color\";s:7:\"#666666\";s:12:\"header_color\";s:7:\"#666666\";s:13:\"color_schemes\";s:4:\"none\";s:12:\"vertical_nav\";s:0:\"\";s:24:\"vertical_nav_orientation\";s:4:\"left\";s:22:\"slide_nav_show_top_bar\";s:2:\"on\";s:15:\"slide_nav_width\";s:3:\"320\";s:19:\"slide_nav_font_size\";s:2:\"14\";s:23:\"slide_nav_top_font_size\";s:2:\"14\";s:24:\"fullscreen_nav_font_size\";s:2:\"30\";s:28:\"fullscreen_nav_top_font_size\";s:2:\"18\";s:22:\"slide_nav_font_spacing\";s:1:\"0\";s:14:\"slide_nav_font\";s:4:\"none\";s:20:\"slide_nav_font_style\";s:0:\"\";s:12:\"slide_nav_bg\";s:7:\"#013a13\";s:21:\"slide_nav_links_color\";s:7:\"#ffffff\";s:28:\"slide_nav_links_color_active\";s:7:\"#ffffff\";s:19:\"slide_nav_top_color\";s:21:\"rgba(255,255,255,0.6)\";s:16:\"slide_nav_search\";s:21:\"rgba(255,255,255,0.6)\";s:19:\"slide_nav_search_bg\";s:15:\"rgba(0,0,0,0.2)\";s:13:\"nav_fullwidth\";s:0:\"\";s:17:\"hide_primary_logo\";s:0:\"\";s:11:\"logo_height\";s:2:\"54\";s:15:\"menu_margin_top\";s:1:\"0\";s:24:\"primary_nav_font_spacing\";s:1:\"0\";s:22:\"primary_nav_font_style\";s:0:\"\";s:23:\"secondary_nav_font_size\";s:2:\"12\";s:23:\"secondary_nav_fullwidth\";s:0:\"\";s:26:\"secondary_nav_font_spacing\";s:1:\"0\";s:18:\"secondary_nav_font\";s:4:\"none\";s:24:\"secondary_nav_font_style\";s:0:\"\";s:9:\"menu_link\";s:15:\"rgba(0,0,0,0.6)\";s:16:\"hide_mobile_logo\";s:0:\"\";s:16:\"mobile_menu_link\";s:15:\"rgba(0,0,0,0.6)\";s:16:\"menu_link_active\";s:7:\"#013a13\";s:14:\"primary_nav_bg\";s:7:\"#ffffff\";s:23:\"primary_nav_dropdown_bg\";s:7:\"#ffffff\";s:31:\"primary_nav_dropdown_line_color\";s:7:\"#013a13\";s:31:\"primary_nav_dropdown_link_color\";s:15:\"rgba(0,0,0,0.7)\";s:30:\"primary_nav_dropdown_animation\";s:4:\"fade\";s:21:\"mobile_primary_nav_bg\";s:7:\"#ffffff\";s:28:\"secondary_nav_text_color_new\";s:7:\"#ffffff\";s:25:\"secondary_nav_dropdown_bg\";s:7:\"#0b4f00\";s:33:\"secondary_nav_dropdown_link_color\";s:7:\"#ffffff\";s:32:\"secondary_nav_dropdown_animation\";s:4:\"fade\";s:22:\"primary_nav_text_color\";s:4:\"dark\";s:24:\"secondary_nav_text_color\";s:5:\"light\";s:14:\"footer_columns\";s:1:\"4\";s:9:\"footer_bg\";s:7:\"#222222\";s:23:\"widget_header_font_size\";d:18;s:24:\"widget_header_font_style\";b:0;s:21:\"widget_body_font_size\";s:2:\"14\";s:23:\"widget_body_line_height\";s:3:\"1.7\";s:22:\"widget_body_font_style\";b:0;s:24:\"footer_widget_text_color\";s:4:\"#fff\";s:24:\"footer_widget_link_color\";s:4:\"#fff\";s:26:\"footer_widget_header_color\";s:7:\"#013a13\";s:26:\"footer_widget_bullet_color\";s:7:\"#013a13\";s:28:\"footer_menu_background_color\";s:22:\"rgba(255,255,255,0.05)\";s:22:\"footer_menu_text_color\";s:7:\"#bbbbbb\";s:29:\"footer_menu_active_link_color\";s:7:\"#013a13\";s:26:\"footer_menu_letter_spacing\";s:1:\"0\";s:22:\"footer_menu_font_style\";b:0;s:21:\"footer_menu_font_size\";s:2:\"14\";s:21:\"bottom_bar_font_style\";b:0;s:20:\"bottom_bar_font_size\";s:2:\"14\";s:27:\"bottom_bar_social_icon_size\";s:2:\"24\";s:28:\"bottom_bar_social_icon_color\";s:7:\"#666666\";s:29:\"disable_custom_footer_credits\";s:0:\"\";s:21:\"all_buttons_font_size\";s:2:\"20\";s:22:\"all_buttons_text_color\";s:7:\"#ffffff\";s:20:\"all_buttons_bg_color\";s:13:\"rgba(0,0,0,0)\";s:24:\"all_buttons_border_width\";s:1:\"2\";s:24:\"all_buttons_border_color\";s:7:\"#ffffff\";s:25:\"all_buttons_border_radius\";s:1:\"3\";s:19:\"all_buttons_spacing\";s:1:\"0\";s:22:\"all_buttons_font_style\";s:0:\"\";s:16:\"all_buttons_font\";s:4:\"none\";s:16:\"all_buttons_icon\";s:3:\"yes\";s:25:\"all_buttons_selected_icon\";s:1:\"5\";s:22:\"all_buttons_icon_color\";s:7:\"#ffffff\";s:26:\"all_buttons_icon_placement\";s:5:\"right\";s:22:\"all_buttons_icon_hover\";s:3:\"yes\";s:28:\"all_buttons_text_color_hover\";s:7:\"#ffffff\";s:30:\"all_buttons_border_color_hover\";s:13:\"rgba(0,0,0,0)\";s:31:\"all_buttons_border_radius_hover\";s:1:\"3\";s:25:\"all_buttons_spacing_hover\";s:1:\"0\";s:40:\"divi_email_provider_credentials_migrated\";b:1;}','yes'),(248,'et_images_temp_folder','/home/homeston/new.kclgenetics.com/wp-content/uploads/et_temp','yes'),(249,'et_schedule_clean_images_last_time','1524182386','yes'),(250,'et_google_api_settings','a:2:{s:7:\"api_key\";s:0:\"\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";}','yes'),(251,'et_automatic_updates_options','a:2:{s:8:\"username\";s:8:\"maiahost\";s:7:\"api_key\";s:40:\"ef4be42a6943ab6ae795681c2086391467692e6b\";}','yes'),(252,'et_account_status_last_checked','1521770356','yes'),(432,'WPLANG','','yes'),(419,'category_children','a:0:{}','yes'),(267,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(1127,'wordfenceActivated','1','yes'),(5080,'widget_logic_options','a:1:{s:13:\"media_image-4\";a:6:{s:6:\"incexc\";a:1:{s:9:\"condition\";s:4:\"show\";}s:8:\"location\";a:16:{s:13:\"is_front_page\";s:1:\"0\";s:7:\"is_home\";s:1:\"0\";s:11:\"is_singular\";s:1:\"0\";s:9:\"is_single\";s:1:\"0\";s:7:\"is_page\";s:1:\"0\";s:13:\"is_attachment\";s:1:\"0\";s:9:\"is_search\";s:1:\"0\";s:6:\"is_404\";s:1:\"0\";s:10:\"is_archive\";s:1:\"0\";s:7:\"is_date\";s:1:\"0\";s:6:\"is_day\";s:1:\"0\";s:8:\"is_month\";s:1:\"0\";s:7:\"is_year\";s:1:\"0\";s:11:\"is_category\";s:1:\"0\";s:6:\"is_tag\";s:1:\"0\";s:9:\"is_author\";s:1:\"0\";}s:28:\"custom_post_types_taxonomies\";a:2:{s:23:\"is_singular-team_member\";s:1:\"0\";s:27:\"is_tax-team_member_position\";s:1:\"0\";}s:10:\"word_count\";a:3:{s:15:\"check_wordcount\";s:1:\"0\";s:20:\"check_wordcount_type\";s:4:\"less\";s:10:\"word_count\";s:0:\"\";}s:3:\"url\";a:1:{s:4:\"urls\";s:0:\"\";}s:11:\"admin_notes\";a:1:{s:5:\"notes\";s:0:\"\";}}}','yes'),(1080,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1081,'widget_media_image','a:7:{i:4;a:17:{s:13:\"attachment_id\";i:124;s:3:\"url\";s:70:\"http://kclgenetics.com/wp-content/uploads/2017/03/dam-110W-300x180.jpg\";s:5:\"title\";s:17:\"KCL Bonissa Power\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:7:\"caption\";s:55:\"Bonissa 65K. One of the foundation donors at the ranch.\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:12:\"widget_logic\";s:0:\"\";s:34:\"extended_widget_opts-media_image-4\";a:6:{s:7:\"id_base\";s:13:\"media_image-4\";s:10:\"visibility\";a:3:{s:7:\"options\";s:4:\"show\";s:8:\"selected\";s:1:\"2\";s:4:\"misc\";a:1:{s:4:\"home\";s:1:\"1\";}}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"0\";}}i:6;a:17:{s:13:\"attachment_id\";i:204;s:3:\"url\";s:68:\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\";s:5:\"title\";s:12:\"Thank You!!!\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:7:\"caption\";s:25:\"Every 3rd Saturday of May\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:12:\"widget_logic\";s:0:\"\";s:34:\"extended_widget_opts-media_image-6\";a:6:{s:7:\"id_base\";s:13:\"media_image-6\";s:10:\"visibility\";a:3:{s:7:\"options\";s:4:\"show\";s:8:\"selected\";s:1:\"0\";s:4:\"misc\";a:1:{s:4:\"home\";s:1:\"1\";}}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"0\";}}i:7;a:17:{s:13:\"attachment_id\";i:648;s:3:\"url\";s:75:\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-300x199.jpg\";s:5:\"title\";s:17:\"Strength in Youth\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:7:\"caption\";s:21:\"Daughter of El Dorado\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:12:\"widget_logic\";s:0:\"\";s:34:\"extended_widget_opts-media_image-7\";a:6:{s:7:\"id_base\";s:13:\"media_image-7\";s:10:\"visibility\";a:3:{s:7:\"options\";s:4:\"show\";s:8:\"selected\";s:1:\"1\";s:4:\"misc\";a:1:{s:4:\"home\";s:1:\"1\";}}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"0\";}}i:8;a:15:{s:13:\"attachment_id\";i:204;s:3:\"url\";s:76:\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale-300x180.jpg\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:9;a:17:{s:13:\"attachment_id\";i:679;s:3:\"url\";s:90:\"http://kclgenetics.com/wp-content/uploads/2018/05/2018-Hereford-Alliance-Cover-232x300.jpg\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:60:\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051918\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:1;s:11:\"image_title\";s:0:\"\";s:12:\"widget_logic\";s:0:\"\";s:34:\"extended_widget_opts-media_image-9\";a:6:{s:7:\"id_base\";s:13:\"media_image-9\";s:10:\"visibility\";a:3:{s:4:\"main\";s:1:\"0\";s:7:\"options\";s:4:\"hide\";s:8:\"selected\";s:1:\"1\";}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:5:{s:8:\"selected\";s:1:\"0\";s:5:\"title\";s:1:\"1\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"0\";}}i:10;a:17:{s:13:\"attachment_id\";i:695;s:3:\"url\";s:70:\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:9:\"thumbnail\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:7:\"caption\";s:21:\"Click For Catalog PDF\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:83:\"http://kclgenetics.com/wp-content/uploads/2018/05/LarsonsHerefordAlliance051918.pdf\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:1;s:11:\"image_title\";s:0:\"\";s:12:\"widget_logic\";s:0:\"\";s:35:\"extended_widget_opts-media_image-10\";a:6:{s:7:\"id_base\";s:14:\"media_image-10\";s:10:\"visibility\";a:4:{s:4:\"main\";s:1:\"0\";s:7:\"options\";s:4:\"show\";s:8:\"selected\";s:1:\"0\";s:4:\"misc\";a:1:{s:4:\"home\";s:1:\"1\";}}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"0\";}}s:12:\"_multiwidget\";i:1;}','yes'),(4760,'theme_mods_twentyfifteen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(4986,'ffwd_version','1.1.34','yes'),(1082,'widget_media_gallery','a:4:{i:4;a:9:{s:5:\"title\";s:27:\"Some of the Sires Used Here\";s:7:\"columns\";i:3;s:4:\"size\";s:4:\"full\";s:9:\"link_type\";s:4:\"none\";s:14:\"orderby_random\";b:0;s:3:\"ids\";a:3:{i:0;i:647;i:1;i:510;i:2;i:159;}s:4:\"type\";s:7:\"default\";s:12:\"widget_logic\";s:0:\"\";s:36:\"extended_widget_opts-media_gallery-4\";a:6:{s:7:\"id_base\";s:15:\"media_gallery-4\";s:10:\"visibility\";a:4:{s:7:\"options\";s:4:\"show\";s:8:\"selected\";s:1:\"1\";s:4:\"misc\";a:1:{s:4:\"home\";s:1:\"1\";}s:5:\"pages\";a:3:{i:62;s:1:\"1\";i:44;s:1:\"1\";i:303;s:1:\"1\";}}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"0\";}}i:5;a:9:{s:5:\"title\";s:16:\"Maternal Prowess\";s:7:\"columns\";i:3;s:4:\"size\";s:5:\"large\";s:9:\"link_type\";s:4:\"post\";s:14:\"orderby_random\";b:0;s:4:\"type\";s:7:\"default\";s:12:\"widget_logic\";s:0:\"\";s:36:\"extended_widget_opts-media_gallery-5\";a:6:{s:7:\"id_base\";s:15:\"media_gallery-5\";s:10:\"visibility\";a:4:{s:7:\"options\";s:4:\"show\";s:8:\"selected\";s:1:\"1\";s:4:\"misc\";a:1:{s:4:\"home\";s:1:\"1\";}s:5:\"pages\";a:2:{i:60;s:1:\"1\";i:303;s:1:\"1\";}}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"0\";}s:3:\"ids\";a:6:{i:0;i:509;i:1;i:503;i:2;i:643;i:3;i:653;i:4;i:651;i:5;i:731;}}i:6;a:9:{s:5:\"title\";s:10:\"Shop Local\";s:7:\"columns\";i:1;s:4:\"size\";s:4:\"full\";s:9:\"link_type\";s:4:\"none\";s:14:\"orderby_random\";b:0;s:4:\"type\";s:7:\"default\";s:12:\"widget_logic\";s:0:\"\";s:36:\"extended_widget_opts-media_gallery-6\";a:6:{s:7:\"id_base\";s:15:\"media_gallery-6\";s:10:\"visibility\";a:4:{s:7:\"options\";s:4:\"show\";s:8:\"selected\";s:1:\"0\";s:4:\"misc\";a:1:{s:4:\"home\";s:1:\"1\";}s:5:\"pages\";a:1:{i:44;s:1:\"1\";}}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"0\";}s:3:\"ids\";a:1:{i:0;i:467;}}s:12:\"_multiwidget\";i:1;}','yes'),(1083,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1084,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4649,'widget_sc_recent_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1128,'wf_plugin_act_error','','yes'),(4722,'optionsframework','a:1:{s:2:\"id\";s:6:\"avenue\";}','yes'),(1110,'et_core_version','3.0.106','yes'),(4949,'theme_mods_mckinley','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(4962,'widget_idolcorp_contactinfo_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4963,'theme_mods_idolcorp','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(4964,'_transient_idolcorp_top_header_transient','\r\n     <section class=\"hgroup-right\">\r\n              <div class=\"caller\"><a class=\"fa-phone\" href=\"tel:1671575987\" title=\"our number\" target=\"_blank\">167-157-5987</a>\r\n              </div>              <div class=\"inline-social-profiles\">\r\n                <ul>\r\n                  <li><a class=\"fa-facebook-f\" href=\"https://facebook.com/\" title=\"Facebook\" target=\"_blank\"></a></li>                  <li><a class=\"fa-twitter\" href=\"https://twitter.com/\" title=\"Twitter\" target=\"_blank\"></a></li>                  <li><a class=\"fa-linkedin\" href=\"https://linkedin.com/\" title=\"Linkedin\" target=\"_blank\"></a></li>                  <li><a class=\"fa-google-plus\" href=\"https://plus.google.com/\" title=\"Google Plus\" target=\"_blank\"></a></li>                  <li><a class=\"fa-youtube\" href=\"https://youtube.com/\" title=\"Youtube\" target=\"_blank\"></a></li>                  <li><a class=\"fa-vimeo-square\" href=\"https://vimeo.com/\" title=\"Vimeo\" target=\"_blank\"></a></li>\r\n                </ul>\r\n              </div>\r\n            </section>\r\n            ','yes'),(4976,'option_tree_settings','a:3:{s:15:\"contextual_help\";a:2:{s:7:\"content\";a:1:{i:0;a:3:{s:2:\"id\";s:12:\"general_help\";s:5:\"title\";s:7:\"General\";s:7:\"content\";s:30:\"<p>Help content goes here!</p>\";}}s:7:\"sidebar\";s:33:\"<p>Sidebar content goes here!</p>\";}s:8:\"sections\";a:7:{i:0;a:2:{s:5:\"title\";s:16:\"General Settings\";s:2:\"id\";s:15:\"general_default\";}i:1;a:2:{s:5:\"title\";s:15:\"Header Settings\";s:2:\"id\";s:15:\"header_settings\";}i:2;a:2:{s:5:\"title\";s:16:\"Top Bar Settings\";s:2:\"id\";s:20:\"head_topbar_settings\";}i:3;a:2:{s:5:\"title\";s:13:\"Blog Settings\";s:2:\"id\";s:13:\"blog_settings\";}i:4;a:2:{s:5:\"title\";s:26:\"Home Page Featured Section\";s:2:\"id\";s:21:\"home_feature_settings\";}i:5;a:2:{s:5:\"title\";s:26:\"Home Page Parallax Section\";s:2:\"id\";s:22:\"home_parallax_settings\";}i:6;a:2:{s:5:\"title\";s:15:\"Footer Settings\";s:2:\"id\";s:14:\"footer_section\";}}s:8:\"settings\";a:34:{i:0;a:10:{s:2:\"id\";s:21:\"incart_welcome_speach\";s:5:\"label\";s:17:\"Welcome to Incart\";s:4:\"desc\";s:146:\"<h1>Welcome to Incart Lite</h1>\r\n			<p>Thank you for using Incart Lite. Get started below and go through the left tabs to set up your website.</p>\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:9:\"textblock\";s:7:\"section\";s:15:\"general_default\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";}i:1;a:6:{s:5:\"label\";s:12:\"Color Scheme\";s:2:\"id\";s:23:\"incart-lite_colorpicker\";s:4:\"type\";s:11:\"colorpicker\";s:4:\"desc\";s:16:\"Set color scheme\";s:3:\"std\";s:7:\"#1abc9c\";s:7:\"section\";s:15:\"general_default\";}i:2;a:6:{s:5:\"label\";s:14:\"Upload Favicon\";s:2:\"id\";s:19:\"incart-lite_favicon\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:47:\"This creates a custom favicon for your website.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:15:\"general_default\";}i:3;a:6:{s:5:\"label\";s:11:\"Change Logo\";s:2:\"id\";s:20:\"incart-lite_logo_img\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:44:\"This creates a custom logo for your website.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:15:\"header_settings\";}i:4;a:6:{s:5:\"label\";s:15:\"Home page Image\";s:2:\"id\";s:29:\"incart-lite_frontslider_stype\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:64:\"Choose image for home page. Size: Width 1600px and Height 500px.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:15:\"header_settings\";}i:5;a:6:{s:2:\"id\";s:20:\"incart-lite_logo_alt\";s:5:\"label\";s:13:\"Logo ALT Text\";s:4:\"desc\";s:36:\"Enter logo image alt attribute text.\";s:3:\"std\";s:12:\"Incart Theme\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:15:\"header_settings\";}i:6;a:10:{s:2:\"id\";s:23:\"incart-lite_moblie_menu\";s:5:\"label\";s:26:\"Mobile Menu Activate Width\";s:4:\"desc\";s:55:\"Layout width after which mobile menu will get activated\";s:3:\"std\";s:4:\"1025\";s:4:\"type\";s:14:\"numeric-slider\";s:7:\"section\";s:15:\"header_settings\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:12:\"min_max_step\";s:10:\"100,1180,1\";}i:7;a:6:{s:2:\"id\";s:23:\"incart-lite_head_topbar\";s:5:\"label\";s:14:\"Header Top Bar\";s:4:\"desc\";s:22:\"On/Off header top bar.\";s:4:\"type\";s:6:\"on-off\";s:3:\"std\";s:2:\"on\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:8;a:7:{s:2:\"id\";s:17:\"head_social_icons\";s:5:\"label\";s:19:\"Social Follow Icons\";s:4:\"desc\";s:113:\"<h2><b>Social Follow Icons</b></h2>\r\n			<p>Add your social profile URL( eg: <b>http://facebook.com/user</b> )</p>\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:9:\"textblock\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:9;a:7:{s:5:\"label\";s:13:\"Facebook Link\";s:2:\"id\";s:22:\"incart-lite_fbook_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:20:\"Enter Facebook Link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:10;a:7:{s:5:\"label\";s:12:\"Twitter Link\";s:2:\"id\";s:24:\"incart-lite_twitter_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:19:\"Enter Twitter link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:11;a:7:{s:5:\"label\";s:14:\"Google Plus ID\";s:2:\"id\";s:22:\"incart-lite_gplus_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:21:\"Enter Google plus Id.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:12;a:7:{s:5:\"label\";s:13:\"Linkedin Link\";s:2:\"id\";s:25:\"incart-lite_linkedin_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:20:\"Enter Linkedin link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:13;a:7:{s:5:\"label\";s:14:\"Pinterest Link\";s:2:\"id\";s:26:\"incart-lite_pinterest_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:21:\"Enter Pinterest link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:14;a:7:{s:5:\"label\";s:11:\"Flickr Link\";s:2:\"id\";s:23:\"incart-lite_flickr_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:18:\"Enter Flickr link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:15;a:7:{s:5:\"label\";s:13:\"Dribbble Link\";s:2:\"id\";s:25:\"incart-lite_dribbble_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:20:\"Enter Dribbble link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:16;a:7:{s:5:\"label\";s:7:\"Vk Link\";s:2:\"id\";s:19:\"incart-lite_vk_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:14:\"Enter vk link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:17;a:7:{s:5:\"label\";s:10:\"Skype Link\";s:2:\"id\";s:22:\"incart-lite_skype_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:17:\"Enter skype link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:18;a:7:{s:5:\"label\";s:14:\"Instagram Link\";s:2:\"id\";s:26:\"incart-lite_instagram_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:21:\"Enter instagram link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:19;a:7:{s:5:\"label\";s:10:\"Vimeo Link\";s:2:\"id\";s:22:\"incart-lite_vimeo_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:17:\"Enter vimeo link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:20;a:7:{s:5:\"label\";s:14:\"Contact Number\";s:2:\"id\";s:26:\"incart-lite_topbar_contact\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:21:\"Enter Contact Number.\";s:3:\"std\";s:14:\"1+555-240-7980\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:21;a:6:{s:2:\"id\";s:28:\"incart-lite_blogpage_heading\";s:5:\"label\";s:21:\"Enter Blog Page Title\";s:4:\"desc\";s:27:\"Enter Blog Page Title text.\";s:3:\"std\";s:4:\"Blog\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:13:\"blog_settings\";}i:22;a:6:{s:5:\"label\";s:69:\"First Featured Box Image Path (size: width * height (263px * 369px) )\";s:2:\"id\";s:32:\"incart-lite_fb1_first_part_image\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:36:\"Upload image for first featured box.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:21:\"home_feature_settings\";}i:23;a:6:{s:2:\"id\";s:27:\"incart-lite_featured_title1\";s:5:\"label\";s:26:\"First Featured Image Title\";s:4:\"desc\";s:36:\"Enter logo image alt attribute text.\";s:3:\"std\";s:12:\"Incart Theme\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:21:\"home_feature_settings\";}i:24;a:6:{s:2:\"id\";s:31:\"incart-lite_fb1_first_part_link\";s:5:\"label\";s:23:\"First Featured Box Link\";s:4:\"desc\";s:34:\"Enter link for first featured box.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:21:\"home_feature_settings\";}i:25;a:6:{s:5:\"label\";s:70:\"Second Featured Box Image Path (size: width * height (263px * 369px) )\";s:2:\"id\";s:33:\"incart-lite_fb2_second_part_image\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:37:\"Upload image for second featured box.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:21:\"home_feature_settings\";}i:26;a:6:{s:2:\"id\";s:27:\"incart-lite_featured_title2\";s:5:\"label\";s:27:\"Second Featured Image Title\";s:4:\"desc\";s:36:\"Enter logo image alt attribute text.\";s:3:\"std\";s:12:\"Incart Theme\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:21:\"home_feature_settings\";}i:27;a:6:{s:2:\"id\";s:32:\"incart-lite_fb2_second_part_link\";s:5:\"label\";s:24:\"Second Featured Box Link\";s:4:\"desc\";s:35:\"Enter link for second featured box.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:21:\"home_feature_settings\";}i:28;a:6:{s:5:\"label\";s:69:\"Third Featured Box Image Path (size: width * height (263px * 369px) )\";s:2:\"id\";s:32:\"incart-lite_fb3_third_part_image\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:36:\"Upload image for third featured box.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:21:\"home_feature_settings\";}i:29;a:6:{s:2:\"id\";s:27:\"incart-lite_featured_title3\";s:5:\"label\";s:26:\"Third Featured Image Title\";s:4:\"desc\";s:36:\"Enter logo image alt attribute text.\";s:3:\"std\";s:12:\"Incart Theme\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:21:\"home_feature_settings\";}i:30;a:6:{s:2:\"id\";s:31:\"incart-lite_fb3_third_part_link\";s:5:\"label\";s:23:\"Third Featured Box Link\";s:4:\"desc\";s:34:\"Enter link for third featured box.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:21:\"home_feature_settings\";}i:31;a:6:{s:5:\"label\";s:74:\"Parallax Section Background Image (size: width * height (1600x * 1000px) )\";s:2:\"id\";s:30:\"incart-lite_fullparallax_image\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:45:\"Upload background image for parallax section.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:22:\"home_parallax_settings\";}i:32;a:6:{s:5:\"label\";s:24:\"Parallax Section Content\";s:2:\"id\";s:29:\"incart-lite_para_content_left\";s:4:\"type\";s:8:\"textarea\";s:4:\"desc\";s:34:\"Enter content for parallax section\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:22:\"home_parallax_settings\";}i:33;a:6:{s:5:\"label\";s:14:\"Copyright Text\";s:2:\"id\";s:21:\"incart-lite_copyright\";s:4:\"type\";s:8:\"textarea\";s:4:\"desc\";s:32:\"You can use HTML for links etc..\";s:3:\"std\";s:19:\"Copyright text here\";s:7:\"section\";s:14:\"footer_section\";}}}','yes'),(4651,'theme_mods_avenue','a:4:{s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:434;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1544296263;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:13:\"media_image-8\";i:1;s:6:\"text-3\";i:2;s:6:\"text-2\";i:3;s:13:\"media_image-7\";i:4;s:15:\"media_gallery-6\";}s:14:\"sidebar-banner\";a:0:{}s:15:\"sidebar-bannerb\";a:0:{}s:15:\"sidebar-bannerc\";a:0:{}s:12:\"sidebar-left\";a:0:{}s:9:\"sidebar-1\";a:9:{i:0;s:13:\"media_image-9\";i:1;s:14:\"media_image-10\";i:2;s:10:\"nav_menu-2\";i:3;s:13:\"media_image-6\";i:4;s:8:\"fbw_id-2\";i:5;s:8:\"search-2\";i:6;s:15:\"media_gallery-5\";i:7;s:15:\"media_gallery-4\";i:8;s:13:\"media_image-4\";}s:14:\"sidebar-footer\";a:1:{i:0;s:10:\"nav_menu-3\";}}}}','yes'),(23446,'theme_mods_bizworx-pro','a:24:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:17:\"front_header_type\";s:5:\"image\";s:18:\"background_image_1\";s:79:\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\";s:14:\"header_title_1\";s:26:\"Welcome to Running L Ranch\";s:17:\"header_subtitle_1\";s:20:\"Home of KCL Genetics\";s:17:\"banner_button_url\";s:52:\"https://kclgenetics.com/2018-hereford-alliance-sale/\";s:13:\"banner_button\";s:22:\"Hereford Alliance Sale\";s:13:\"header_height\";i:650;s:13:\"contact_phone\";s:12:\"972-824-5869\";s:13:\"contact_email\";s:17:\"RunLRanch@aol.com\";s:15:\"contact_address\";s:30:\"2793 FM 1991-Clifton, TX 76634\";s:14:\"toggle_contact\";i:1;s:20:\"button_border_radius\";s:2:\"10\";s:11:\"custom_logo\";s:0:\"\";s:14:\"footer_credits\";s:35:\"All Rights Reserved Running L Ranch\";s:16:\"other_background\";s:67:\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw.jpg\";s:19:\"other_header_height\";i:400;s:15:\"hide_breadcrumb\";s:0:\"\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1557027725;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:13:\"media_image-8\";i:1;s:6:\"text-3\";i:2;s:15:\"media_gallery-5\";i:3;s:6:\"text-2\";i:4;s:15:\"media_gallery-6\";}s:9:\"sidebar-1\";a:10:{i:0;s:13:\"media_image-9\";i:1;s:14:\"media_image-10\";i:2;s:10:\"nav_menu-2\";i:3;s:13:\"media_image-6\";i:4;s:8:\"fbw_id-2\";i:5;s:8:\"search-2\";i:6;s:10:\"nav_menu-3\";i:7;s:13:\"media_image-7\";i:8;s:13:\"media_image-4\";i:9;s:15:\"media_gallery-4\";}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}}}s:19:\"wrapper_top_padding\";i:61;s:22:\"wrapper_bottom_padding\";i:75;s:13:\"primary_color\";s:7:\"#000000\";}','yes'),(23416,'wp_page_for_privacy_policy','0','yes'),(23417,'show_comments_cookies_opt_in','0','yes'),(36303,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1556711398','no'),(36419,'elementor_fonts_manager_fonts','a:0:{}','yes'),(36360,'elementor_version','2.6.6','yes'),(36361,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(36371,'elementor_pro_version','3.3.1','yes'),(36372,'_elementor_pro_installed_time','1556734909','yes'),(36658,'widget_start-press-recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(36418,'elementor_fonts_manager_font_types','a:0:{}','yes'),(36454,'elementor_pro_theme_builder_conditions','a:0:{}','yes'),(36390,'_elementor_installed_time','1556754058','yes'),(36391,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:13:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:14:\"Online Service\";i:7;s:7:\"Product\";i:8;s:11:\"Real Estate\";i:9;s:18:\"Social Involvement\";i:10;s:14:\"Thank You Page\";i:11;s:6:\"Travel\";i:12;s:18:\"Under Construction\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:886:{i:0;a:16:{s:4:\"tmpl\";i:768;s:2:\"id\";i:10107;s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";i:1547851373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:206;s:11:\"trend_index\";i:207;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:16:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:16:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:16:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:16:{s:4:\"tmpl\";i:773;s:2:\"id\";i:10158;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";i:1547852227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:255;s:11:\"trend_index\";i:295;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:16:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:16:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:16:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:16:{s:4:\"tmpl\";i:776;s:2:\"id\";i:10190;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";i:1547885703;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:214;s:11:\"trend_index\";i:151;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:16:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:16:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:16:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:16:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:16:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:16:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:16:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:16:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:16:{s:4:\"tmpl\";i:782;s:2:\"id\";i:10256;s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";i:1547888909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:458;s:11:\"trend_index\";i:597;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:16:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:16:{s:4:\"tmpl\";i:783;s:2:\"id\";i:10267;s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";i:1547889047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:281;s:11:\"trend_index\";i:233;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:16:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:16:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:16:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:16:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:16:{s:4:\"tmpl\";i:787;s:2:\"id\";i:10307;s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";i:1547893266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:641;s:11:\"trend_index\";i:689;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:16:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:16:{s:4:\"tmpl\";i:788;s:2:\"id\";i:10318;s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";i:1547893367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:327;s:11:\"trend_index\";i:326;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:16:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:16:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:16:{s:4:\"tmpl\";i:790;s:2:\"id\";i:10339;s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";i:1547893603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:390;s:11:\"trend_index\";i:393;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:16:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:16:{s:4:\"tmpl\";i:791;s:2:\"id\";i:10352;s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";i:1547915335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:445;s:11:\"trend_index\";i:525;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:16:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:16:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:16:{s:4:\"tmpl\";i:793;s:2:\"id\";i:10372;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";i:1547915554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:638;s:11:\"trend_index\";i:636;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:16:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:16:{s:4:\"tmpl\";i:794;s:2:\"id\";i:10382;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";i:1547916616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:242;s:11:\"trend_index\";i:258;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:16:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:16:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:16:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:16:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:16:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:16:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:16:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:16:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:16:{s:4:\"tmpl\";i:799;s:2:\"id\";i:10434;s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";i:1547961950;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:359;s:11:\"trend_index\";i:353;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:16:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:16:{s:4:\"tmpl\";i:800;s:2:\"id\";i:10444;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";i:1547962029;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:385;s:11:\"trend_index\";i:298;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:16:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:16:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:16:{s:4:\"tmpl\";i:802;s:2:\"id\";i:10467;s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";i:1547962277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:722;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:16:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:16:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:16:{s:4:\"tmpl\";i:804;s:2:\"id\";i:10487;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";i:1547964527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:554;s:11:\"trend_index\";i:618;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:16:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:16:{s:4:\"tmpl\";i:805;s:2:\"id\";i:10498;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";i:1547964616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:421;s:11:\"trend_index\";i:382;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:16:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:16:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:16:{s:4:\"tmpl\";i:807;s:2:\"id\";i:10519;s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";i:1547964801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:585;s:11:\"trend_index\";i:629;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:16:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:16:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:16:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:16:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:16:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:16:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:16:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:16:{s:4:\"tmpl\";i:812;s:2:\"id\";i:10569;s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";i:1547967812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:529;s:11:\"trend_index\";i:485;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:16:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:16:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:16:{s:4:\"tmpl\";i:814;s:2:\"id\";i:10590;s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";i:1547967978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:466;s:11:\"trend_index\";i:356;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:16:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:16:{s:4:\"tmpl\";i:815;s:2:\"id\";i:10600;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";i:1547968080;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:483;s:11:\"trend_index\";i:494;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:16:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:16:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:16:{s:4:\"tmpl\";i:817;s:2:\"id\";i:10622;s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";i:1547969678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:543;s:11:\"trend_index\";i:456;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:16:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:16:{s:4:\"tmpl\";i:818;s:2:\"id\";i:10633;s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";i:1547969858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:675;s:11:\"trend_index\";i:722;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:16:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:16:{s:4:\"tmpl\";i:819;s:2:\"id\";i:10644;s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";i:1547970814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:484;s:11:\"trend_index\";i:440;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:16:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:16:{s:4:\"tmpl\";i:820;s:2:\"id\";i:10654;s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";i:1547970917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:658;s:11:\"trend_index\";i:676;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:16:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:16:{s:4:\"tmpl\";i:821;s:2:\"id\";i:10664;s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";i:1547973928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:552;s:11:\"trend_index\";i:384;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:16:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:16:{s:4:\"tmpl\";i:822;s:2:\"id\";i:10675;s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";i:1547974110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:519;s:11:\"trend_index\";i:477;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:16:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:16:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:16:{s:4:\"tmpl\";i:824;s:2:\"id\";i:9719;s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";i:1547976107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:398;s:11:\"trend_index\";i:282;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:16:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:16:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:16:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:16:{s:4:\"tmpl\";i:827;s:2:\"id\";i:10137;s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";i:1547976342;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:570;s:11:\"trend_index\";i:589;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:16:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:16:{s:4:\"tmpl\";i:828;s:2:\"id\";i:10244;s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";i:1547976402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:623;s:11:\"trend_index\";i:660;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:16:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:16:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:16:{s:4:\"tmpl\";i:830;s:2:\"id\";i:10127;s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";i:1547984061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:700;s:11:\"trend_index\";i:738;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:16:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:16:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:16:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:16:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:16:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:16:{s:4:\"tmpl\";i:835;s:2:\"id\";i:10776;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";i:1548047055;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:694;s:11:\"trend_index\";i:694;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:16:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:16:{s:4:\"tmpl\";i:836;s:2:\"id\";i:10785;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";i:1548047593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:468;s:11:\"trend_index\";i:442;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:16:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:16:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:16:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:16:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:16:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:16:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:16:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:16:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:16:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:16:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:16:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:16:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:16:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:16:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:16:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:16:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:16:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:16:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:16:{s:4:\"tmpl\";i:854;s:2:\"id\";i:10794;s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";i:1548067619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:430;s:11:\"trend_index\";i:475;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:16:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:16:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:16:{s:4:\"tmpl\";i:1368;s:2:\"id\";i:23275;s:5:\"title\";s:44:\"Classic | Contact | Digital Marketing Agency\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-agency-small.jpg\";s:12:\"tmpl_created\";i:1647799000;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-contact-digital-marketing-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:16:{s:4:\"tmpl\";i:857;s:2:\"id\";i:10871;s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";i:1548074396;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:706;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:16:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:16:{s:4:\"tmpl\";i:858;s:2:\"id\";i:10936;s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";i:1548874587;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:478;s:11:\"trend_index\";i:572;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:16:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:16:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:16:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:16:{s:4:\"tmpl\";i:861;s:2:\"id\";i:10964;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";i:1550039106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:598;s:11:\"trend_index\";i:664;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:16:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:16:{s:4:\"tmpl\";i:862;s:2:\"id\";i:10992;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";i:1550072007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:668;s:11:\"trend_index\";i:668;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:16:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:16:{s:4:\"tmpl\";i:863;s:2:\"id\";i:11005;s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";i:1550073303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:680;s:11:\"trend_index\";i:615;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:16:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:16:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:16:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:16:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:16:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:16:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:16:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:16:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:16:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:16:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:16:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:16:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:16:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:16:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:16:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:16:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:16:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:16:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:16:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:16:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:16:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:16:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:16:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:16:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:16:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:16:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:16:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:16:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:16:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:16:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:16:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"online shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:16:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:16:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:16:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:16:{s:4:\"tmpl\";i:719;s:2:\"id\";i:9611;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546965350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:605;s:11:\"trend_index\";i:603;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:16:{s:4:\"tmpl\";i:720;s:2:\"id\";i:9622;s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";i:1546965896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:607;s:11:\"trend_index\";i:460;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:16:{s:4:\"tmpl\";i:721;s:2:\"id\";i:9631;s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546968270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:661;s:11:\"trend_index\";i:705;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:16:{s:4:\"tmpl\";i:724;s:2:\"id\";i:9662;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";i:1547009087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:684;s:11:\"trend_index\";i:658;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:16:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:16:{s:4:\"tmpl\";i:727;s:2:\"id\";i:9690;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";i:1547011716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:393;s:11:\"trend_index\";i:571;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:16:{s:4:\"tmpl\";i:728;s:2:\"id\";i:9699;s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";i:1547015827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:475;s:11:\"trend_index\";i:527;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:16:{s:4:\"tmpl\";i:730;s:2:\"id\";i:9571;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";i:1547726151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:622;s:11:\"trend_index\";i:538;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:16:{s:4:\"tmpl\";i:733;s:2:\"id\";i:9740;s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";i:1547822836;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:624;s:11:\"trend_index\";i:691;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:16:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/interior-design-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:16:{s:4:\"tmpl\";i:735;s:2:\"id\";i:9762;s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";i:1547824145;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:463;s:11:\"trend_index\";i:436;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:16:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:16:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:55:\"Fly-In | Team Details Popup | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:16:{s:4:\"tmpl\";i:736;s:2:\"id\";i:9772;s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";i:1547824279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:760;s:11:\"trend_index\";i:781;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:16:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:16:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:188;a:16:{s:4:\"tmpl\";i:738;s:2:\"id\";i:9793;s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";i:1547831151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:670;s:11:\"trend_index\";i:742;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:16:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:52:\"Full Screen | Menu Popup | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:190;a:16:{s:4:\"tmpl\";i:742;s:2:\"id\";i:9836;s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";i:1547835635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:634;s:11:\"trend_index\";i:669;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:16:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:51:\"Classic | Discount Popup | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:16:{s:4:\"tmpl\";i:743;s:2:\"id\";i:9847;s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";i:1547836956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:751;s:11:\"trend_index\";i:838;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:16:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:50:\"Hello Bar | CTA Popup | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:16:{s:4:\"tmpl\";i:744;s:2:\"id\";i:9858;s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";i:1547837100;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:769;s:11:\"trend_index\";i:684;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:16:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:45:\"Classic | Discount Popup | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:16:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:51:\"Bottom Bar | Discount Popup | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:16:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:38:\"Hello Bar | Menu Popup | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:16:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:43:\"Full Screen | Booking Popup | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:16:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:16:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:40:\"Classic | Discount Popup | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:16:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:40:\"Slide-In | Contact Popup | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:16:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:34:\"Fly-In | Cta Popup | Dental Clinic\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/fly-in-cta-popup-dental-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:16:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:35:\"Classic | Cta Popup | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:16:{s:4:\"tmpl\";i:752;s:2:\"id\";i:9944;s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";i:1547841939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:757;s:11:\"trend_index\";i:700;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:16:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:46:\"Bottom Bar | Contact Popup | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:16:{s:4:\"tmpl\";i:753;s:2:\"id\";i:9955;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";i:1547842065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:551;s:11:\"trend_index\";i:627;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:16:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:38:\"Fly-In | Contact Popup | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:208;a:16:{s:4:\"tmpl\";i:754;s:2:\"id\";i:9965;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";i:1547842174;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:588;s:11:\"trend_index\";i:591;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:16:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:37:\"Classic |  Login Popup | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:210;a:16:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:42:\"Full Screen | Login Popup | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:16:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:34:\"Classic | Login Popup | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:16:{s:4:\"tmpl\";i:757;s:2:\"id\";i:9995;s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";i:1547844802;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:772;s:11:\"trend_index\";i:817;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:16:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:37:\"Classic | Login Popup | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:16:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:46:\"Classic |  Login Popup | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:16:{s:4:\"tmpl\";i:759;s:2:\"id\";i:10016;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";i:1547845062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:792;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:16:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:16:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:42:\"Fly-In | Contact Popup | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:16:{s:4:\"tmpl\";i:760;s:2:\"id\";i:10026;s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";i:1547845205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:616;s:11:\"trend_index\";i:587;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:16:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:42:\"Fly-In | Cta Popup | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:16:{s:4:\"tmpl\";i:761;s:2:\"id\";i:10036;s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";i:1547845409;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:614;s:11:\"trend_index\";i:717;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:16:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:16:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:43:\"Full Screen | Contact Popup | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:16:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:45:\"Classic | Contact | Support  Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:16:{s:4:\"tmpl\";i:763;s:2:\"id\";i:10057;s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";i:1547847938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:764;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:16:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:16:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:16:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:16:{s:4:\"tmpl\";i:766;s:2:\"id\";i:10087;s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";i:1547848301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:644;s:11:\"trend_index\";i:632;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:16:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:16:{s:4:\"tmpl\";i:767;s:2:\"id\";i:10097;s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";i:1547848411;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:689;s:11:\"trend_index\";i:758;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:16:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:16:{s:4:\"tmpl\";i:831;s:2:\"id\";i:9816;s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";i:1547991876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:720;s:11:\"trend_index\";i:823;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:16:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:16:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:16:{s:4:\"tmpl\";i:718;s:2:\"id\";i:9602;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1546964559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:600;s:11:\"trend_index\";i:604;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:16:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photographer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"project\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:237;a:16:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:238;a:16:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture &#8211; Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:239;a:16:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:240;a:16:{s:4:\"tmpl\";i:842;s:2:\"id\";i:10277;s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";i:1548055999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:729;s:11:\"trend_index\";i:802;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:16:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:16:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:16:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:244;a:16:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/law-firm-services-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:16:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:246;a:16:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:16:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:248;a:16:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photographer-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Gallery\",\"Photography\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:249;a:16:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:250;a:16:{s:4:\"tmpl\";i:748;s:2:\"id\";i:9903;s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";i:1547838896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:765;s:11:\"trend_index\";i:840;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:16:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:16:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:253;a:16:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/architecture-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"creative portfolio\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:254;a:16:{s:4:\"tmpl\";i:810;s:2:\"id\";i:10549;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";i:1547967595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:713;s:11:\"trend_index\";i:666;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:16:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:16:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:257;a:16:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:16:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:16:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"online shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:260;a:16:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/3d-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"creative portfolio\",\"Design\",\"Designer\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:16:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:16:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner &#8211; Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:263;a:16:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/business-consulting-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:16:{s:4:\"tmpl\";i:834;s:2:\"id\";i:10529;s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";i:1548046309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:474;s:11:\"trend_index\";i:398;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:16:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:16:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"interior design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:267;a:16:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/conference-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:37:\"[\"Conference\",\"Contact\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:16:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:269;a:16:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/construction-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:16:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:271;a:16:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:272;a:16:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:273;a:16:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/contact-plants-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:16:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"online shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:275;a:16:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:16:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:277;a:16:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:278;a:16:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dental-care-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:16:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:280;a:16:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:281;a:16:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"medical\",\"Online\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:16:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:283;a:16:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:16:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/time-management-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:285;a:16:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/exhibition-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"creative portfolio\",\"Exhibition\",\"Gallery\",\"portfolio\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:16:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:16:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:288;a:16:{s:4:\"tmpl\";i:797;s:2:\"id\";i:10413;s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";i:1547961774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:752;s:11:\"trend_index\";i:813;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:16:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:290;a:16:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/hotel-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Contact\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:291;a:16:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:292;a:16:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:293;a:16:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/insurance-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:16:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:295;a:16:{s:4:\"tmpl\";i:779;s:2:\"id\";i:10223;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";i:1547887343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:497;s:11:\"trend_index\";i:503;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:16:{s:4:\"tmpl\";i:811;s:2:\"id\";i:10559;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";i:1547967711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:714;s:11:\"trend_index\";i:729;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:16:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:16:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:299;a:16:{s:4:\"tmpl\";i:846;s:2:\"id\";i:10403;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";i:1548056371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:627;s:11:\"trend_index\";i:659;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:16:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:16:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/interior-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:16:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:303;a:16:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:16:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/online-training-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:16:{s:4:\"tmpl\";i:749;s:2:\"id\";i:9913;s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";i:1547841430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:542;s:11:\"trend_index\";i:417;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:16:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:16:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/car-wash-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:16:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/packing-moving-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"moving\",\"Storge\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:16:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:310;a:16:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:16:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/restaurant-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:46:\"[\"Contact\",\"Food\",\"form\",\"Google Maps\",\"Info\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:16:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:16:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:314;a:16:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:16:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/spa-beauty-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:16:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:317;a:16:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:16:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/travel-agency-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:16:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:16:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:321;a:16:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:322;a:16:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:16:{s:4:\"tmpl\";i:717;s:2:\"id\";i:9592;s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";i:1546963720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:663;s:11:\"trend_index\";i:807;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:16:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:16:{s:4:\"tmpl\";i:778;s:2:\"id\";i:10210;s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";i:1547886103;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:784;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:16:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:16:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:16:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:16:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:330;a:16:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:331;a:16:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:16:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:16:{s:4:\"tmpl\";i:762;s:2:\"id\";i:10047;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";i:1547847757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:522;s:11:\"trend_index\";i:513;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:16:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:16:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:336;a:16:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:16:{s:4:\"tmpl\";i:746;s:2:\"id\";i:9879;s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";i:1547838416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:676;s:11:\"trend_index\";i:761;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:16:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:339;a:16:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:16:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/birthday-party-invitation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:16:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:16:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:343;a:16:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:16:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:16:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:16:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:16:{s:4:\"tmpl\";i:843;s:2:\"id\";i:10297;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";i:1548056099;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:590;s:11:\"trend_index\";i:607;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:16:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:16:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:16:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:16:{s:4:\"tmpl\";i:847;s:2:\"id\";i:10393;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";i:1548056682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:678;s:11:\"trend_index\";i:837;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:16:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:16:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:16:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:16:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:16:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:16:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:16:{s:4:\"tmpl\";i:813;s:2:\"id\";i:10579;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";i:1547967887;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:712;s:11:\"trend_index\";i:782;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:16:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:16:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:361;a:16:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:16:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:16:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:16:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:16:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:16:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:16:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:16:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:16:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:16:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:371;a:16:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:16:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:16:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:16:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:16:{s:4:\"tmpl\";i:833;s:2:\"id\";i:10180;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";i:1548045309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:686;s:11:\"trend_index\";i:788;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:16:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:377;a:16:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:16:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:16:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:380;a:16:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:16:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:16:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:16:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:16:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:16:{s:4:\"tmpl\";i:825;s:2:\"id\";i:9731;s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";i:1547976166;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:635;s:11:\"trend_index\";i:648;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:16:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:16:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:16:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:16:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:16:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:16:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:16:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:16:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:16:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:16:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:16:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:16:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:16:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:16:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:16:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:16:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:16:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:403;a:16:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:16:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:16:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:16:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:16:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:16:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:409;a:16:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:16:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:16:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:412;a:16:{s:4:\"tmpl\";i:758;s:2:\"id\";i:10005;s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";i:1547844909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:755;s:11:\"trend_index\";i:760;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:16:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:16:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:16:{s:4:\"tmpl\";i:798;s:2:\"id\";i:10424;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";i:1547961866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:677;s:11:\"trend_index\";i:753;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:16:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:16:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:16:{s:4:\"tmpl\";i:755;s:2:\"id\";i:9975;s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";i:1547842284;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:774;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:16:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:16:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"interior design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:16:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:16:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:423;a:16:{s:4:\"tmpl\";i:764;s:2:\"id\";i:10067;s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";i:1547848075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:582;s:11:\"trend_index\";i:619;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:16:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:16:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:426;a:16:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:16:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:16:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:16:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:16:{s:4:\"tmpl\";i:789;s:2:\"id\";i:10329;s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";i:1547893478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:781;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:16:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:16:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:433;a:16:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:16:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:435;a:16:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:436;a:16:{s:4:\"tmpl\";i:723;s:2:\"id\";i:9650;s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";i:1547007598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:771;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:16:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:438;a:16:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:16:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:16:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:16:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:16:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:16:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:16:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:16:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:16:{s:4:\"tmpl\";i:840;s:2:\"id\";i:10200;s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";i:1548055635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:719;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:16:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:16:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:16:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:16:{s:4:\"tmpl\";i:832;s:2:\"id\";i:10287;s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";i:1547994301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:602;s:11:\"trend_index\";i:439;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:451;a:16:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:16:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:16:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:16:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:16:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:456;a:16:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:457;a:16:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:16:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:16:{s:4:\"tmpl\";i:747;s:2:\"id\";i:9889;s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";i:1547838722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:743;s:11:\"trend_index\";i:713;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:16:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:461;a:16:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:16:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:463;a:16:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:16:{s:4:\"tmpl\";i:765;s:2:\"id\";i:10077;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";i:1547848197;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:540;s:11:\"trend_index\";i:574;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:16:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:466;a:16:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:16:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:16:{s:4:\"tmpl\";i:844;s:2:\"id\";i:10362;s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";i:1548056253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:587;s:11:\"trend_index\";i:560;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:16:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:16:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:16:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:16:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:16:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:16:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:16:{s:4:\"tmpl\";i:849;s:2:\"id\";i:10454;s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";i:1548056896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:776;s:11:\"trend_index\";i:804;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:16:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:16:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:16:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:16:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:16:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:481;a:16:{s:4:\"tmpl\";i:739;s:2:\"id\";i:9803;s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";i:1547831298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:701;s:11:\"trend_index\";i:808;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:16:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:16:{s:4:\"tmpl\";i:816;s:2:\"id\";i:10611;s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";i:1547968868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:779;s:11:\"trend_index\";i:792;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:16:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:16:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:486;a:16:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:16:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:16:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:16:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:16:{s:4:\"tmpl\";i:806;s:2:\"id\";i:10508;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";i:1547964711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:711;s:11:\"trend_index\";i:793;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:16:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:492;a:16:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:493;a:16:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:16:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:495;a:16:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:496;a:16:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:16:{s:4:\"tmpl\";i:751;s:2:\"id\";i:9934;s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";i:1547841787;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:681;s:11:\"trend_index\";i:752;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:16:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:499;a:16:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:500;a:16:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:501;a:16:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:502;a:16:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:503;a:16:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:16:{s:4:\"tmpl\";i:729;s:2:\"id\";i:9709;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";i:1547023834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:728;s:11:\"trend_index\";i:728;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:16:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:16:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:507;a:16:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:16:{s:4:\"tmpl\";i:725;s:2:\"id\";i:9671;s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1547010259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:639;s:11:\"trend_index\";i:598;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:16:{s:4:\"tmpl\";i:838;s:2:\"id\";i:10234;s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";i:1548055049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:746;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:16:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:511;a:16:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:16:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:513;a:16:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:514;a:16:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:16:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:16:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:16:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:16:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:16:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:16:{s:4:\"tmpl\";i:745;s:2:\"id\";i:9869;s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";i:1547837269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:766;s:11:\"trend_index\";i:820;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:521;a:16:{s:4:\"tmpl\";i:850;s:2:\"id\";i:10539;s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";i:1548056994;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:726;s:11:\"trend_index\";i:810;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:16:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:16:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:524;a:16:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:16:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:526;a:16:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:16:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:528;a:16:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:16:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:16:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:16:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:16:{s:4:\"tmpl\";i:839;s:2:\"id\";i:10147;s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";i:1548055522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:775;s:11:\"trend_index\";i:824;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:16:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:534;a:16:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:535;a:16:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:536;a:16:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:16:{s:4:\"tmpl\";i:750;s:2:\"id\";i:9923;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";i:1547841537;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:699;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:538;a:16:{s:4:\"tmpl\";i:852;s:2:\"id\";i:10117;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";i:1548066998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:727;s:11:\"trend_index\";i:662;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:539;a:16:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:16:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:16:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:16:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:16:{s:4:\"tmpl\";i:741;s:2:\"id\";i:9826;s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";i:1547835513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:745;s:11:\"trend_index\";i:831;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:16:{s:4:\"tmpl\";i:848;s:2:\"id\";i:10478;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";i:1548056829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:595;s:11:\"trend_index\";i:559;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:16:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:546;a:16:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:16:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:548;a:16:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:16:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:550;a:16:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:16:{s:4:\"tmpl\";i:823;s:2:\"id\";i:10685;s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";i:1547974729;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:721;s:11:\"trend_index\";i:814;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:16:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:16:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:16:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:16:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:16:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:16:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:16:{s:4:\"tmpl\";i:756;s:2:\"id\";i:9985;s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";i:1547844661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:758;s:11:\"trend_index\";i:815;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:16:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:16:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:16:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:16:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:16:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:16:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:16:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:16:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:16:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:16:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:16:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:16:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:16:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:16:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:573;a:16:{s:4:\"tmpl\";i:714;s:2:\"id\";i:9559;s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";i:1546946547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:617;s:11:\"trend_index\";i:839;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:16:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:16:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:576;a:16:{s:4:\"tmpl\";i:734;s:2:\"id\";i:9752;s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";i:1547823982;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:740;s:11:\"trend_index\";i:801;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:16:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:578;a:16:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:16:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:580;a:16:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:16:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:582;a:16:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:16:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:584;a:16:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:16:{s:4:\"tmpl\";i:774;s:2:\"id\";i:10169;s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";i:1547852334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:546;s:11:\"trend_index\";i:701;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:16:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:587;a:16:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:16:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:16:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:16:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:16:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:16:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:16:{s:4:\"tmpl\";i:726;s:2:\"id\";i:9680;s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";i:1547010967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:725;s:11:\"trend_index\";i:725;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:16:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:16:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:16:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:16:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:16:{s:4:\"tmpl\";i:737;s:2:\"id\";i:9783;s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";i:1547831059;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:534;s:11:\"trend_index\";i:415;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:16:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:16:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:16:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:16:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:16:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:16:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:605;a:16:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:16:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:607;a:16:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:16:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:609;a:16:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:16:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:611;a:16:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:16:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:613;a:16:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:16:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:615;a:16:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:16:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:617;a:16:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:16:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:16:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:16:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:16:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:16:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:16:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:16:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:625;a:16:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:626;a:16:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:627;a:16:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:628;a:16:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:629;a:16:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:630;a:16:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:631;a:16:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:632;a:16:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:633;a:16:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:634;a:16:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:635;a:16:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:16:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:16:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:16:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:16:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:16:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:16:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:16:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:16:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:16:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:16:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:16:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:16:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:16:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:16:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:16:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:16:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:16:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:16:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:16:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:16:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:16:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:16:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:16:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:16:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:16:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:16:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:16:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:16:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:16:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:16:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:16:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:16:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:16:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:16:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:16:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:16:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:16:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:16:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:16:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:16:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:16:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:677;a:16:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:16:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:679;a:16:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:16:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:16:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:16:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:16:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:16:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:16:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:686;a:16:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:687;a:16:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:16:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:16:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"interior design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:16:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:691;a:16:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:16:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:16:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:16:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:16:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:16:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:16:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:16:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:16:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:16:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:16:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:16:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:16:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:16:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:16:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:16:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:16:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:16:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:16:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:16:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:16:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:16:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:16:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:16:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:16:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:16:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:717;a:16:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:718;a:16:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:719;a:16:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:720;a:16:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:721;a:16:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:722;a:16:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:723;a:16:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:724;a:16:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:725;a:16:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:16:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:727;a:16:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:728;a:16:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:729;a:16:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:730;a:16:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Footer\",\"portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:731;a:16:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:732;a:16:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:733;a:16:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Header\",\"portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:734;a:16:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:735;a:16:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:736;a:16:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:16:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:16:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:739;a:16:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:16:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:16:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:16:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:16:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:16:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:745;a:16:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:746;a:16:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:747;a:16:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:748;a:16:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:16:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:16:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:16:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:16:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:16:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:754;a:16:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:755;a:16:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:16:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:757;a:16:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:16:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:759;a:16:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:16:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:761;a:16:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:762;a:16:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:763;a:16:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:764;a:16:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:16:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:16:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:767;a:16:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:16:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:16:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:16:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:16:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:16:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:16:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:16:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:775;a:16:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:776;a:16:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:777;a:16:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:16:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:16:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:16:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:16:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:16:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:16:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:784;a:16:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:16:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:16:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:16:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:16:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:16:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:16:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:791;a:16:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:16:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:793;a:16:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:16:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:795;a:16:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:796;a:16:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:16:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:798;a:16:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:799;a:16:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:16:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:801;a:16:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:802;a:16:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:803;a:16:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:16:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:805;a:16:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:16:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:16:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:808;a:16:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:809;a:16:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:810;a:16:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:16:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:16:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:16:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:16:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:16:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:16:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:16:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:818;a:16:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:819;a:16:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:820;a:16:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:821;a:16:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:822;a:16:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:823;a:16:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:824;a:16:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:825;a:16:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:826;a:16:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:827;a:16:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:828;a:16:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:829;a:16:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:830;a:16:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:831;a:16:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:832;a:16:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:833;a:16:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:834;a:16:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:835;a:16:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:836;a:16:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:837;a:16:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:838;a:16:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:839;a:16:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:840;a:16:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:841;a:16:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:842;a:16:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:843;a:16:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:844;a:16:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:845;a:16:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:846;a:16:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:847;a:16:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:848;a:16:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:849;a:16:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:850;a:16:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:851;a:16:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:852;a:16:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:853;a:16:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:854;a:16:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:855;a:16:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:856;a:16:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:857;a:16:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:858;a:16:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:859;a:16:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:860;a:16:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:861;a:16:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:862;a:16:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:863;a:16:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:864;a:16:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:865;a:16:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:866;a:16:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:867;a:16:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:868;a:16:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:869;a:16:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:870;a:16:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:871;a:16:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:872;a:16:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:873;a:16:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:874;a:16:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:875;a:16:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:876;a:16:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:877;a:16:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:878;a:16:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:879;a:16:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:880;a:16:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:881;a:16:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:882;a:16:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:883;a:16:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:884;a:16:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:885;a:16:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(36392,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:35:\"Elementor Websites of February 2022\";s:7:\"excerpt\";s:263:\"February’s showcase adds some much-needed color and excitement to the long wintery season. From high-end business technology and creative NFTs to underground urban paintings and community arts and so much in between, these websites offer something for everyone.\";s:7:\"created\";i:1647516309;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/showcase-february-2022/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:54:\"6 Top Ecommerce Security Threats and Solutions of 2022\";s:7:\"excerpt\";s:267:\"According to recent studies, 32% of direct and organic traffic to ecommerce sites comes from Invalid Traffic — bots, malicious users, or suspicious users. In this article, we will dive deeper into some of these threats and offer the best solutions to address them.\";s:7:\"created\";i:1647217020;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:144:\"https://elementor.com/blog/top-ecommerce-security-threats-and-solutions/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:36:\"4 Women Making Moves in Web Creation\";s:7:\"excerpt\";s:173:\"Today is International Women’s Day, and what better way to celebrate girl power than with some inspiring stories from women web creators in our community across the globe.\";s:7:\"created\";i:1646738701;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:134:\"https://elementor.com/blog/women-making-moves-in-web-creation/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:75:\"The Opportunities and Challenges of Being a Female Web Entrepreneur in 2022\";s:7:\"excerpt\";s:305:\"While the web creates more equal opportunities, female founders secured only 2% of venture capital in the U.S. in 2021. Miriam Schwab, Co-founder and CEO of Strattic, shares her personal story and challenges as a female tech entrepreneur and why she firmly believes the future is bright for women in tech.\";s:7:\"created\";i:1646732431;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:149:\"https://elementor.com/blog/challenges-opportunities-for-female-entrepreneurs/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:35:\"The Hidden Costs of Website Hosting\";s:7:\"excerpt\";s:350:\"When you look at web hosting costs on a hosting provider\'s site, you\'ll typically see one single number for each plan. That\'s why it\'s easy to think that one price is all you\'ll ever pay. But Is that really the case? In this post, we\'re going to dig into web hosting costs in detail, including those hidden costs that you\'ll want to pay attention to.\";s:7:\"created\";i:1646652423;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:120:\"https://elementor.com/blog/hidden-hosting-costs/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(109767,'jp_sync_error_log_sync','a:3:{i:1637146249;O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:19:\"http_request_failed\";a:1:{i:0;s:59:\"cURL error 6: Could not resolve host: jetpack.wordpress.com\";}}s:10:\"error_data\";a:1:{s:19:\"http_request_failed\";i:-10520;}s:18:\"\0*\0additional_data\";a:0:{}}s:15:\"1641395980.7457\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:17:\"invalid_signature\";a:1:{i:0;s:25:\"The timestamp is too old.\";}}s:10:\"error_data\";a:1:{s:17:\"invalid_signature\";i:401;}s:18:\"\0*\0additional_data\";a:0:{}}s:15:\"1641469342.7275\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:17:\"invalid_signature\";a:1:{i:0;s:25:\"The timestamp is too old.\";}}s:10:\"error_data\";a:1:{s:17:\"invalid_signature\";i:401;}s:18:\"\0*\0additional_data\";a:0:{}}}','yes'),(98883,'elementor_pro_remote_info_api_data_3.3.1','a:2:{s:7:\"timeout\";i:1648205060;s:5:\"value\";s:51550:\"{\"stable_version\":\"3.6.4\",\"last_updated\":\"2022-02-02 15:14:57\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:46553:\\\"<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser <\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (#16815)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplefy the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget\\n<h4>3.4.2 - 2021-10-12<\\/h4><\\/li>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: &quot;Save &amp; Close &quot;button in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-16<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-16<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor Pro v3.1<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.6.4\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"5.9.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/package_download\\/MTY0ODI0ODI2MDpjY2JlMGM5MjNmYTRhYzFhNzRlZjE3Nzc1MDk2MTA4MToxOjNlNTU2ODE1NzFiYzc4NDhiZTMwOWMxMzY2NTc0YjY0Omh0dHBzQC8va2NsZ2VuZXRpY3MuY29tOjA=\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/package_download\\/MTY0ODI0ODI2MDpjY2JlMGM5MjNmYTRhYzFhNzRlZjE3Nzc1MDk2MTA4MToxOjNlNTU2ODE1NzFiYzc4NDhiZTMwOWMxMzY2NTc0YjY0Omh0dHBzQC8va2NsZ2VuZXRpY3MuY29tOjA=\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.6.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"5.9.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/previous_download\\/MTY0ODI0ODI2MDpjY2JlMGM5MjNmYTRhYzFhNzRlZjE3Nzc1MDk2MTA4MToxOjMuNi4wOjA5OGZhNWM5ODI3YzFmODgwZTZjOWRjNmI0YTIxZTRlOmh0dHBzQC8va2NsZ2VuZXRpY3MuY29t\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/previous_download\\/MTY0ODI0ODI2MDpjY2JlMGM5MjNmYTRhYzFhNzRlZjE3Nzc1MDk2MTA4MToxOjMuNi4wOjA5OGZhNWM5ODI3YzFmODgwZTZjOWRjNmI0YTIxZTRlOmh0dHBzQC8va2NsZ2VuZXRpY3MuY29t\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]}}\";}','yes'),(96761,'elementor_submissions_db_version','5','yes'),(96764,'elementor_controls_usage','a:1:{s:7:\"wp-post\";a:13:{s:13:\"facebook-page\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:4:{s:3:\"url\";i:1;s:13:\"show_facepile\";i:1;s:8:\"show_cta\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:26;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:14;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:19;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:33;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:7:{s:5:\"image\";i:33;s:10:\"image_size\";i:25;s:14:\"caption_source\";i:15;s:7:\"caption\";i:16;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:19:\"image_border_border\";i:23;s:19:\"image_border_radius\";i:25;s:5:\"width\";i:4;s:18:\"image_border_color\";i:3;s:18:\"image_border_width\";i:9;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:2;s:13:\"_border_color\";i:2;s:14:\"_border_radius\";i:3;s:13:\"_border_width\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:18;s:3:\"gap\";i:17;s:5:\"color\";i:3;}}s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"align\";i:3;s:5:\"style\";i:2;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:7;s:5:\"align\";i:4;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:7;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:28:\"text_shadow_text_shadow_type\";i:2;s:23:\"text_shadow_text_shadow\";i:2;s:10:\"blend_mode\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:14:\"_border_radius\";i:1;}}}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:5:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:10:\"navigation\";i:1;s:13:\"image_stretch\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:19:\"image_border_border\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;s:18:\"image_border_width\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:17:\"animated-headline\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:3:\"tag\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:3:{s:11:\"title_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_line_height\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:14:\"_border_radius\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:9:\"image-box\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:2:{s:11:\"image_space\";i:1;s:10:\"image_size\";i:1;}s:21:\"section_style_content\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:2;s:4:\"zoom\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:2;s:14:\"_border_radius\";i:2;}}}}s:9:\"shortcode\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:9:\"countdown\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"section_countdown\";a:2:{s:8:\"due_date\";i:1;s:13:\"custom_labels\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_box_style\";a:4:{s:20:\"box_background_color\";i:1;s:17:\"box_border_border\";i:1;s:17:\"box_border_radius\";i:1;s:11:\"box_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}}}','no'),(101492,'jetpack_package_versions','a:4:{s:6:\"backup\";s:5:\"1.2.4\";s:6:\"search\";s:5:\"0.9.1\";s:10:\"connection\";s:6:\"1.36.4\";s:4:\"sync\";s:6:\"1.30.0\";}','yes'),(108150,'jp_sync_last_success_sync','1648284862.5789','no'),(36936,'recovery_keys','a:0:{}','yes'),(58524,'widgetopts_global_all_pages','a:9:{i:0;O:8:\"stdClass\":3:{s:2:\"ID\";s:2:\"54\";s:10:\"post_title\";s:27:\"2019 Hereford Alliance Sale\";s:11:\"post_parent\";s:1:\"0\";}i:1;O:8:\"stdClass\":3:{s:2:\"ID\";s:2:\"62\";s:10:\"post_title\";s:33:\"Carefully Selected Sire Influence\";s:11:\"post_parent\";s:1:\"0\";}i:2;O:8:\"stdClass\":3:{s:2:\"ID\";s:2:\"51\";s:10:\"post_title\";s:10:\"Contact Us\";s:11:\"post_parent\";s:1:\"0\";}i:3;O:8:\"stdClass\":3:{s:2:\"ID\";s:3:\"913\";s:10:\"post_title\";s:13:\"Facebook Demo\";s:11:\"post_parent\";s:1:\"0\";}i:4;O:8:\"stdClass\":3:{s:2:\"ID\";s:2:\"44\";s:10:\"post_title\";s:20:\"Home of KCL Genetics\";s:11:\"post_parent\";s:1:\"0\";}i:5;O:8:\"stdClass\":3:{s:2:\"ID\";s:2:\"60\";s:10:\"post_title\";s:23:\"KCL Genetics Donor Cows\";s:11:\"post_parent\";s:1:\"0\";}i:6;O:8:\"stdClass\":3:{s:2:\"ID\";s:3:\"911\";s:10:\"post_title\";s:22:\"My Instagram Feed Demo\";s:11:\"post_parent\";s:1:\"0\";}i:7;O:8:\"stdClass\":3:{s:2:\"ID\";s:3:\"306\";s:10:\"post_title\";s:12:\"News Updates\";s:11:\"post_parent\";s:1:\"0\";}i:8;O:8:\"stdClass\":3:{s:2:\"ID\";s:3:\"303\";s:10:\"post_title\";s:12:\"Our Approach\";s:11:\"post_parent\";s:1:\"0\";}}','yes'),(46306,'fta_settings','a:1:{s:7:\"plugins\";a:2:{s:9:\"instagram\";a:2:{s:15:\"default_skin_id\";i:910;s:15:\"default_page_id\";i:911;}s:8:\"facebook\";a:2:{s:15:\"default_skin_id\";i:912;s:15:\"default_page_id\";i:913;}}}','yes'),(49961,'fb-widget-activation-date','1575570796','no'),(41654,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:30:\"easy-facebook-likebox/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.3\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1648116273;s:11:\"plugin_path\";s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";}}s:7:\"abspath\";s:43:\"/home/homeston/public_html/kclgenetics.com/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";s:8:\"sdk_path\";s:30:\"easy-facebook-likebox/freemius\";s:7:\"version\";s:5:\"2.4.3\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1648116273;}}','yes'),(41655,'fs_debug_mode','','yes'),(41656,'fs_accounts','a:15:{s:21:\"id_slug_type_path_map\";a:1:{i:4142;a:3:{s:4:\"slug\";s:21:\"easy-facebook-likebox\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";}}s:11:\"plugin_data\";a:1:{s:21:\"easy-facebook-likebox\";a:25:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1563557655;s:16:\"sdk_last_version\";s:5:\"2.4.2\";s:11:\"sdk_version\";s:5:\"2.4.3\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.3.3\";s:14:\"plugin_version\";s:5:\"6.3.4\";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:15:\"kclgenetics.com\";s:9:\"server_ip\";s:14:\"173.236.79.234\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1563564139;s:7:\"version\";s:5:\"4.4.1\";}s:15:\"prev_is_premium\";b:0;s:18:\"sticky_optin_added\";b:1;s:14:\"has_trial_plan\";b:1;s:22:\"install_sync_timestamp\";i:1648247841;s:19:\"keepalive_timestamp\";i:1648247841;s:20:\"activation_timestamp\";i:1586957844;s:9:\"sync_cron\";O:8:\"stdClass\":5:{s:7:\"version\";s:5:\"5.2.5\";s:7:\"blog_id\";i:0;s:11:\"sdk_version\";s:5:\"2.3.0\";s:9:\"timestamp\";i:1586957846;s:2:\"on\";b:1;}s:21:\"trial_promotion_shown\";i:1586957846;s:30:\"affiliate_program_notice_shown\";i:1586957846;s:14:\"sync_timestamp\";i:1648247841;s:15:\"is_whitelabeled\";b:0;}}s:13:\"file_slug_map\";a:1:{s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";s:21:\"easy-facebook-likebox\";}s:7:\"plugins\";a:1:{s:21:\"easy-facebook-likebox\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:16:\"Easy Social Feed\";s:4:\"slug\";s:21:\"easy-facebook-likebox\";s:12:\"premium_slug\";s:29:\"easy-facebook-likebox-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";s:3:\"all\";s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";s:7:\"version\";s:5:\"6.3.4\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_d982f4dff842224ca5e54c84f6822\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"4142\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"c634a9cf8d75905c1de88ada779223e8\";s:13:\"admin_notices\";a:1:{s:21:\"easy-facebook-likebox\";a:2:{s:15:\"trial_promotion\";a:8:{s:7:\"message\";s:798:\"Hey! How do you like <b>Easy Social Feed</b> so far? Test all our awesome <a href=\"http://kclgenetics.com/wp-admin/admin.php?billing_cycle=annual&trial=true&page=feed-them-all-pricing\">Instagram Feed Pro</a>,  <a href=\"http://kclgenetics.com/wp-admin/admin.php?billing_cycle=annual&trial=true&page=feed-them-all-pricing\">Facebook Feed Pro</a> and  <a href=\"http://kclgenetics.com/wp-admin/admin.php?billing_cycle=annual&trial=true&page=feed-them-all-pricing\">Combo</a> premium features with a 7-day free trial. No commitment for 7 days - cancel anytime!  <a style=\"margin-left: 10px; vertical-align: super;\" href=\"http://kclgenetics.com/wp-admin/admin.php?billing_cycle=annual&trial=true&page=feed-them-all-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:10:\"manager_id\";s:21:\"easy-facebook-likebox\";s:6:\"plugin\";s:16:\"Easy Social Feed\";s:10:\"wp_user_id\";N;}s:17:\"affiliate_program\";a:8:{s:7:\"message\";s:367:\"Hey there, did you know that <strong>Easy Social Feed</strong> has an affiliate program? If you like the plugin you can become our ambassador and earn some cash!  <a style=\"display: block; margin-top: 10px;\" href=\"http://kclgenetics.com/wp-admin/admin.php?page=feed-them-all-affiliation\"><button class=\"button button-primary\">Learn more... &nbsp;&#10140;</button></a>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:9:\"promotion\";s:6:\"sticky\";b:1;s:2:\"id\";s:17:\"affiliate_program\";s:10:\"manager_id\";s:21:\"easy-facebook-likebox\";s:6:\"plugin\";s:16:\"Easy Social Feed\";s:10:\"wp_user_id\";N;}}}s:5:\"plans\";a:1:{s:21:\"easy-facebook-likebox\";a:5:{i:0;O:14:\"FS_Plugin_Plan\":21:{s:9:\"plugin_id\";s:8:\"NDE0Mg==\";s:4:\"name\";s:8:\"ZnJlZQ==\";s:5:\"title\";s:8:\"RnJlZQ==\";s:11:\"description\";N;s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:4:\"MQ==\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";N;s:23:\"is_require_subscription\";s:0:\"\";s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:0:\"\";s:2:\"id\";s:8:\"NjcxMw==\";s:7:\"updated\";s:28:\"MjAxOS0wOS0wNCAxOTowNDoyNg==\";s:7:\"created\";s:28:\"MjAxOS0wNy0xOSAxNToxNjoxMA==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:1;O:14:\"FS_Plugin_Plan\":21:{s:9:\"plugin_id\";s:8:\"NDE0Mg==\";s:4:\"name\";s:24:\"aW5zdGFncmFtX3ByZW1pdW0=\";s:5:\"title\";s:24:\"SW5zdGFncmFtIEZlZWQgUHJv\";s:11:\"description\";N;s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:4:\"MQ==\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";s:4:\"Nw==\";s:23:\"is_require_subscription\";s:4:\"MQ==\";s:10:\"support_kb\";s:96:\"aHR0cHM6Ly9lYXN5c29jaWFsZmVlZC5jb20vZG9jdW1lbnRhdGlvbi1jYXRlZ29yeS9lYXN5LWZhY2Vib29rLWxpa2Vib3gv\";s:13:\"support_forum\";N;s:13:\"support_email\";s:32:\"aGVscEBlYXN5c29jaWFsZmVlZC5jb20=\";s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:0:\"\";s:2:\"id\";s:8:\"NzI3NQ==\";s:7:\"updated\";s:28:\"MjAyMS0wOS0yMCAxODoxMjo1NQ==\";s:7:\"created\";s:28:\"MjAxOS0wOS0wNCAwOTowMDo0Mg==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:2;O:14:\"FS_Plugin_Plan\":21:{s:9:\"plugin_id\";s:8:\"NDE0Mg==\";s:4:\"name\";s:24:\"ZmFjZWJvb2tfcHJlbWl1bQ==\";s:5:\"title\";s:24:\"RmFjZWJvb2sgRmVlZCBQcm8=\";s:11:\"description\";N;s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:0:\"\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";s:4:\"Nw==\";s:23:\"is_require_subscription\";s:4:\"MQ==\";s:10:\"support_kb\";s:96:\"aHR0cHM6Ly9lYXN5c29jaWFsZmVlZC5jb20vZG9jdW1lbnRhdGlvbi1jYXRlZ29yeS9lYXN5LWZhY2Vib29rLWxpa2Vib3gv\";s:13:\"support_forum\";N;s:13:\"support_email\";s:32:\"aGVscEBlYXN5c29jaWFsZmVlZC5jb20=\";s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:0:\"\";s:2:\"id\";s:8:\"NzI3Nw==\";s:7:\"updated\";s:28:\"MjAyMS0wOS0yMCAxODoxMzo0MQ==\";s:7:\"created\";s:28:\"MjAxOS0wOS0wNCAxMDoyOTowNg==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:3;O:14:\"FS_Plugin_Plan\":21:{s:9:\"plugin_id\";s:8:\"NDE0Mg==\";s:4:\"name\";s:20:\"Y29tYm9fcHJlbWl1bQ==\";s:5:\"title\";s:8:\"Q29tYm8=\";s:11:\"description\";N;s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:4:\"MQ==\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";s:4:\"Nw==\";s:23:\"is_require_subscription\";s:4:\"MQ==\";s:10:\"support_kb\";s:96:\"aHR0cHM6Ly9lYXN5c29jaWFsZmVlZC5jb20vZG9jdW1lbnRhdGlvbi1jYXRlZ29yeS9lYXN5LWZhY2Vib29rLWxpa2Vib3gv\";s:13:\"support_forum\";N;s:13:\"support_email\";s:32:\"aGVscEBlYXN5c29jaWFsZmVlZC5jb20=\";s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:4:\"MQ==\";s:2:\"id\";s:8:\"NzI3OA==\";s:7:\"updated\";s:28:\"MjAyMS0wOS0yMCAxODoxNDozNQ==\";s:7:\"created\";s:28:\"MjAxOS0wOS0wNCAxMDozMDowNg==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:4;O:14:\"FS_Plugin_Plan\":21:{s:9:\"plugin_id\";s:8:\"NDE0Mg==\";s:4:\"name\";s:16:\"ZW50ZXJwcmlzZQ==\";s:5:\"title\";s:16:\"RW50ZXJwcmlzZQ==\";s:11:\"description\";N;s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:4:\"MQ==\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";N;s:23:\"is_require_subscription\";s:0:\"\";s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:0:\"\";s:2:\"id\";s:8:\"ODQ3Mw==\";s:7:\"updated\";s:28:\"MjAyMC0xMi0yOCAxNTo0Mzo0NA==\";s:7:\"created\";s:28:\"MjAxOS0xMi0yNiAxNDozMjo1MQ==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}}s:14:\"active_plugins\";O:8:\"stdClass\":3:{s:9:\"timestamp\";i:1613602734;s:3:\"md5\";s:32:\"a31db91edc1b15701a3e2f1176cbec71\";s:7:\"plugins\";a:16:{s:37:\"wd-facebook-feed/facebook-feed-wd.php\";a:5:{s:4:\"slug\";s:16:\"wd-facebook-feed\";s:7:\"version\";s:6:\"1.1.20\";s:5:\"title\";s:17:\"10Web Social Feed\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:36:\"contact-form-7/wp-contact-form-7.php\";a:5:{s:4:\"slug\";s:14:\"contact-form-7\";s:7:\"version\";s:5:\"5.1.7\";s:5:\"title\";s:14:\"Contact Form 7\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";a:5:{s:4:\"slug\";s:21:\"easy-facebook-likebox\";s:7:\"version\";s:5:\"5.2.5\";s:5:\"title\";s:16:\"Easy Social Feed\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:53:\"easy-twitter-feed-widget/easy-twitter-feed-widget.php\";a:5:{s:4:\"slug\";s:24:\"easy-twitter-feed-widget\";s:7:\"version\";s:3:\"0.9\";s:5:\"title\";s:24:\"Easy Twitter Feed Widget\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:43:\"easy-weather-widget/easy-weather-widget.php\";a:5:{s:4:\"slug\";s:19:\"easy-weather-widget\";s:7:\"version\";s:5:\"3.2.5\";s:5:\"title\";s:19:\"Easy Weather Widget\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:29:\"easy-wp-smtp/easy-wp-smtp.php\";a:5:{s:4:\"slug\";s:12:\"easy-wp-smtp\";s:7:\"version\";s:7:\"1.3.9.2\";s:5:\"title\";s:12:\"Easy WP SMTP\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:23:\"elementor/elementor.php\";a:5:{s:4:\"slug\";s:9:\"elementor\";s:7:\"version\";s:5:\"2.9.7\";s:5:\"title\";s:9:\"Elementor\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:31:\"elementor-pro/elementor-pro.php\";a:5:{s:4:\"slug\";s:13:\"elementor-pro\";s:7:\"version\";s:5:\"2.5.8\";s:5:\"title\";s:13:\"Elementor Pro\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:19:\"jetpack/jetpack.php\";a:5:{s:4:\"slug\";s:7:\"jetpack\";s:7:\"version\";s:5:\"8.4.1\";s:5:\"title\";s:24:\"Jetpack by WordPress.com\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:39:\"our-team-enhanced/our-team-showcase.php\";a:5:{s:4:\"slug\";s:17:\"our-team-enhanced\";s:7:\"version\";s:5:\"4.4.2\";s:5:\"title\";s:17:\"Our Team Showcase\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:24:\"slider-images/Slider.php\";a:5:{s:4:\"slug\";s:13:\"slider-images\";s:7:\"version\";s:5:\"1.4.1\";s:5:\"title\";s:13:\"Slider Images\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:44:\"facebook-pagelike-widget/facebook_widget.php\";a:5:{s:4:\"slug\";s:24:\"facebook-pagelike-widget\";s:7:\"version\";s:3:\"6.0\";s:5:\"title\";s:28:\"Widget for Social Page Feeds\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:29:\"widget-logic/widget_logic.php\";a:5:{s:4:\"slug\";s:12:\"widget-logic\";s:7:\"version\";s:6:\"5.10.4\";s:5:\"title\";s:12:\"Widget Logic\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:25:\"widget-options/plugin.php\";a:5:{s:4:\"slug\";s:14:\"widget-options\";s:7:\"version\";s:5:\"3.7.4\";s:5:\"title\";s:14:\"Widget Options\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:23:\"wordfence/wordfence.php\";a:5:{s:4:\"slug\";s:9:\"wordfence\";s:7:\"version\";s:5:\"7.4.6\";s:5:\"title\";s:18:\"Wordfence Security\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:67:\"wp-author-date-and-meta-remover/wp-author-date-and-meta-remover.php\";a:5:{s:4:\"slug\";s:31:\"wp-author-date-and-meta-remover\";s:7:\"version\";s:5:\"1.0.5\";s:5:\"title\";s:32:\"WP Author, Date and Meta Remover\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}}}s:11:\"all_plugins\";O:8:\"stdClass\":3:{s:9:\"timestamp\";i:1613169399;s:3:\"md5\";s:32:\"b3e831540570804dd31a25950d184c71\";s:7:\"plugins\";a:26:{s:37:\"wd-facebook-feed/facebook-feed-wd.php\";a:6:{s:4:\"slug\";s:16:\"wd-facebook-feed\";s:7:\"version\";s:6:\"1.1.20\";s:5:\"title\";s:17:\"10Web Social Feed\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:6:\"1.1.32\";}s:19:\"akismet/akismet.php\";a:6:{s:4:\"slug\";s:7:\"akismet\";s:7:\"version\";s:5:\"4.1.4\";s:5:\"title\";s:17:\"Akismet Anti-Spam\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"4.1.8\";}s:29:\"bizworx-tools/theme-tools.php\";a:5:{s:4:\"slug\";s:13:\"bizworx-tools\";s:7:\"version\";s:3:\"1.1\";s:5:\"title\";s:13:\"Bizworx Tools\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:36:\"contact-form-7/wp-contact-form-7.php\";a:6:{s:4:\"slug\";s:14:\"contact-form-7\";s:7:\"version\";s:5:\"5.1.7\";s:5:\"title\";s:14:\"Contact Form 7\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"5.3.2\";}s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";a:6:{s:4:\"slug\";s:21:\"easy-facebook-likebox\";s:7:\"version\";s:5:\"5.2.5\";s:5:\"title\";s:16:\"Easy Social Feed\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"6.2.0\";}s:53:\"easy-twitter-feed-widget/easy-twitter-feed-widget.php\";a:5:{s:4:\"slug\";s:24:\"easy-twitter-feed-widget\";s:7:\"version\";s:3:\"0.9\";s:5:\"title\";s:24:\"Easy Twitter Feed Widget\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:43:\"easy-weather-widget/easy-weather-widget.php\";a:5:{s:4:\"slug\";s:19:\"easy-weather-widget\";s:7:\"version\";s:5:\"3.2.5\";s:5:\"title\";s:19:\"Easy Weather Widget\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:29:\"easy-wp-smtp/easy-wp-smtp.php\";a:6:{s:4:\"slug\";s:12:\"easy-wp-smtp\";s:7:\"version\";s:7:\"1.3.9.2\";s:5:\"title\";s:12:\"Easy WP SMTP\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"1.4.5\";}s:23:\"elementor/elementor.php\";a:6:{s:4:\"slug\";s:9:\"elementor\";s:7:\"version\";s:5:\"2.9.7\";s:5:\"title\";s:9:\"Elementor\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"3.1.1\";}s:31:\"elementor-pro/elementor-pro.php\";a:6:{s:4:\"slug\";s:13:\"elementor-pro\";s:7:\"version\";s:5:\"2.5.8\";s:5:\"title\";s:13:\"Elementor Pro\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:6:\"2.10.3\";}s:21:\"hello-dolly/hello.php\";a:5:{s:4:\"slug\";s:11:\"hello-dolly\";s:7:\"version\";s:5:\"1.7.2\";s:5:\"title\";s:11:\"Hello Dolly\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:9:\"hello.php\";a:5:{s:4:\"slug\";s:11:\"hello-dolly\";s:7:\"version\";s:5:\"1.7.2\";s:5:\"title\";s:11:\"Hello Dolly\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:27:\"issuu-panel/issuu-panel.php\";a:5:{s:4:\"slug\";s:11:\"issuu-panel\";s:7:\"version\";s:5:\"1.6.8\";s:5:\"title\";s:11:\"Issuu Panel\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:19:\"jetpack/jetpack.php\";a:6:{s:4:\"slug\";s:7:\"jetpack\";s:7:\"version\";s:5:\"8.4.1\";s:5:\"title\";s:24:\"Jetpack by WordPress.com\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:3:\"9.4\";}s:39:\"our-team-enhanced/our-team-showcase.php\";a:5:{s:4:\"slug\";s:17:\"our-team-enhanced\";s:7:\"version\";s:5:\"4.4.2\";s:5:\"title\";s:17:\"Our Team Showcase\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:35:\"responsive-menu/responsive-menu.php\";a:6:{s:4:\"slug\";s:15:\"responsive-menu\";s:7:\"version\";s:6:\"3.1.28\";s:5:\"title\";s:15:\"Responsive Menu\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"4.0.4\";}s:24:\"slider-images/Slider.php\";a:5:{s:4:\"slug\";s:13:\"slider-images\";s:7:\"version\";s:5:\"1.4.1\";s:5:\"title\";s:13:\"Slider Images\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:69:\"ultimate-responsive-image-slider/ultimate-responsive-image-slider.php\";a:6:{s:4:\"slug\";s:32:\"ultimate-responsive-image-slider\";s:7:\"version\";s:5:\"3.4.4\";s:5:\"title\";s:40:\"Ultimate Responsive Image Slider - 3.4.4\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"3.5.0\";}s:27:\"updraftplus/updraftplus.php\";a:6:{s:4:\"slug\";s:11:\"updraftplus\";s:7:\"version\";s:7:\"1.16.23\";s:5:\"title\";s:28:\"UpdraftPlus - Backup/Restore\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:7:\"1.16.47\";}s:33:\"widget-context/widget-context.php\";a:6:{s:4:\"slug\";s:14:\"widget-context\";s:7:\"version\";s:5:\"1.2.0\";s:5:\"title\";s:14:\"Widget Context\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"1.3.2\";}s:44:\"facebook-pagelike-widget/facebook_widget.php\";a:6:{s:4:\"slug\";s:24:\"facebook-pagelike-widget\";s:7:\"version\";s:3:\"6.0\";s:5:\"title\";s:28:\"Widget for Social Page Feeds\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:3:\"6.1\";}s:29:\"widget-logic/widget_logic.php\";a:5:{s:4:\"slug\";s:12:\"widget-logic\";s:7:\"version\";s:6:\"5.10.4\";s:5:\"title\";s:12:\"Widget Logic\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:25:\"widget-options/plugin.php\";a:6:{s:4:\"slug\";s:14:\"widget-options\";s:7:\"version\";s:5:\"3.7.4\";s:5:\"title\";s:14:\"Widget Options\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"3.7.6\";}s:23:\"wordfence/wordfence.php\";a:6:{s:4:\"slug\";s:9:\"wordfence\";s:7:\"version\";s:5:\"7.4.6\";s:5:\"title\";s:18:\"Wordfence Security\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:6:\"7.4.14\";}s:67:\"wp-author-date-and-meta-remover/wp-author-date-and-meta-remover.php\";a:6:{s:4:\"slug\";s:31:\"wp-author-date-and-meta-remover\";s:7:\"version\";s:5:\"1.0.5\";s:5:\"title\";s:32:\"WP Author, Date and Meta Remover\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"1.0.6\";}s:22:\"wp-editor/wpeditor.php\";a:6:{s:4:\"slug\";s:9:\"wp-editor\";s:7:\"version\";s:7:\"1.2.6.3\";s:5:\"title\";s:9:\"WP Editor\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"1.2.7\";}}}s:10:\"all_themes\";O:8:\"stdClass\":3:{s:9:\"timestamp\";i:1613602735;s:3:\"md5\";s:32:\"a27164f33d7ce3d806efb64b15b99789\";s:6:\"themes\";a:24:{s:4:\"Divi\";a:5:{s:4:\"slug\";s:4:\"Divi\";s:7:\"version\";s:7:\"3.0.106\";s:5:\"title\";s:4:\"Divi\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:6:\"avenue\";a:5:{s:4:\"slug\";s:6:\"avenue\";s:7:\"version\";s:5:\"3.0.0\";s:5:\"title\";s:6:\"Avenue\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:14:\"bg-photo-frame\";a:5:{s:4:\"slug\";s:14:\"bg-photo-frame\";s:7:\"version\";s:5:\"1.2.8\";s:5:\"title\";s:14:\"BG Photo Frame\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:11:\"bizworx-pro\";a:5:{s:4:\"slug\";s:11:\"bizworx-pro\";s:7:\"version\";s:3:\"1.0\";s:5:\"title\";s:11:\"Bizworx Pro\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:15:\"business-center\";a:5:{s:4:\"slug\";s:15:\"business-center\";s:7:\"version\";s:5:\"1.2.0\";s:5:\"title\";s:15:\"Business Center\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:14:\"chic-lifestyle\";a:5:{s:4:\"slug\";s:14:\"chic-lifestyle\";s:7:\"version\";s:5:\"1.1.3\";s:5:\"title\";s:14:\"Chic Lifestyle\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:10:\"city-store\";a:5:{s:4:\"slug\";s:10:\"city-store\";s:7:\"version\";s:5:\"1.4.5\";s:5:\"title\";s:10:\"City Store\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:14:\"curiosity-lite\";a:5:{s:4:\"slug\";s:14:\"curiosity-lite\";s:7:\"version\";s:5:\"2.2.1\";s:5:\"title\";s:14:\"Curiosity Lite\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:8:\"idolcorp\";a:5:{s:4:\"slug\";s:8:\"idolcorp\";s:7:\"version\";s:3:\"1.2\";s:5:\"title\";s:8:\"idolcorp\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:11:\"incart-lite\";a:5:{s:4:\"slug\";s:11:\"incart-lite\";s:7:\"version\";s:5:\"1.0.7\";s:5:\"title\";s:11:\"Incart Lite\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:10:\"lithestore\";a:5:{s:4:\"slug\";s:10:\"lithestore\";s:7:\"version\";s:5:\"1.1.5\";s:5:\"title\";s:10:\"LitheStore\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:7:\"maxwell\";a:5:{s:4:\"slug\";s:7:\"maxwell\";s:7:\"version\";s:3:\"2.2\";s:5:\"title\";s:7:\"Maxwell\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:8:\"mckinley\";a:5:{s:4:\"slug\";s:8:\"mckinley\";s:7:\"version\";s:5:\"1.1.0\";s:5:\"title\";s:8:\"McKinley\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:6:\"moesia\";a:5:{s:4:\"slug\";s:6:\"moesia\";s:7:\"version\";s:4:\"1.52\";s:5:\"title\";s:6:\"Moesia\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:10:\"news-viral\";a:5:{s:4:\"slug\";s:10:\"news-viral\";s:7:\"version\";s:5:\"1.1.4\";s:5:\"title\";s:10:\"News Viral\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:8:\"poseidon\";a:5:{s:4:\"slug\";s:8:\"poseidon\";s:7:\"version\";s:3:\"2.2\";s:5:\"title\";s:8:\"Poseidon\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:9:\"reyl-lite\";a:5:{s:4:\"slug\";s:9:\"reyl-lite\";s:7:\"version\";s:5:\"1.0.5\";s:5:\"title\";s:9:\"Reyl Lite\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:10:\"skt-toothy\";a:5:{s:4:\"slug\";s:10:\"skt-toothy\";s:7:\"version\";s:3:\"1.6\";s:5:\"title\";s:10:\"SKT Toothy\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:11:\"start-press\";a:5:{s:4:\"slug\";s:11:\"start-press\";s:7:\"version\";s:5:\"1.3.4\";s:5:\"title\";s:11:\"Start Press\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:6:\"storto\";a:5:{s:4:\"slug\";s:6:\"storto\";s:7:\"version\";s:5:\"1.6.2\";s:5:\"title\";s:6:\"Storto\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:13:\"twentyfifteen\";a:5:{s:4:\"slug\";s:13:\"twentyfifteen\";s:7:\"version\";s:3:\"2.8\";s:5:\"title\";s:14:\"Twenty Fifteen\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:14:\"twentynineteen\";a:5:{s:4:\"slug\";s:14:\"twentynineteen\";s:7:\"version\";s:3:\"1.9\";s:5:\"title\";s:15:\"Twenty Nineteen\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:15:\"twentyseventeen\";a:5:{s:4:\"slug\";s:15:\"twentyseventeen\";s:7:\"version\";s:3:\"2.5\";s:5:\"title\";s:16:\"Twenty Seventeen\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:13:\"twentysixteen\";a:5:{s:4:\"slug\";s:13:\"twentysixteen\";s:7:\"version\";s:3:\"2.3\";s:5:\"title\";s:14:\"Twenty Sixteen\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}}}s:5:\"sites\";a:1:{s:21:\"easy-facebook-likebox\";O:7:\"FS_Site\":26:{s:7:\"site_id\";s:8:\"10969346\";s:9:\"plugin_id\";s:4:\"4142\";s:7:\"user_id\";s:7:\"2915859\";s:5:\"title\";s:22:\"Larson Running L Ranch\";s:3:\"url\";s:22:\"http://kclgenetics.com\";s:7:\"version\";s:5:\"6.3.4\";s:8:\"language\";s:5:\"en-US\";s:7:\"charset\";s:5:\"UTF-8\";s:16:\"platform_version\";s:5:\"5.9.2\";s:11:\"sdk_version\";s:5:\"2.4.3\";s:28:\"programming_language_version\";s:6:\"5.6.40\";s:7:\"plan_id\";s:4:\"6713\";s:10:\"license_id\";N;s:13:\"trial_plan_id\";N;s:10:\"trial_ends\";N;s:10:\"is_premium\";b:0;s:15:\"is_disconnected\";b:0;s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;s:7:\"is_beta\";b:0;s:10:\"public_key\";s:32:\"pk_45edba60210a687f9c933a38be2d4\";s:10:\"secret_key\";s:32:\"sk_?Xf3keVG*LgQ?B3WcG5hd[8;0k{.P\";s:2:\"id\";s:7:\"4368063\";s:7:\"updated\";s:19:\"2022-03-24 10:04:35\";s:7:\"created\";s:19:\"2020-04-15 13:37:23\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:5:\"users\";a:1:{i:2915859;O:7:\"FS_User\":13:{s:5:\"email\";s:20:\"support@maiahost.com\";s:5:\"first\";s:7:\"larsons\";s:4:\"last\";s:0:\"\";s:11:\"is_verified\";b:0;s:11:\"customer_id\";N;s:5:\"gross\";i:0;s:10:\"public_key\";s:32:\"pk_b55de060212113726b4b937d7940b\";s:10:\"secret_key\";s:32:\"sk_~QTZsJ_yA*]RB=cytT;9T<-N%(%31\";s:2:\"id\";s:7:\"2915859\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2020-04-15 13:37:23\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:7:\"is_beta\";b:0;}}s:23:\"user_id_license_ids_map\";a:1:{i:4142;a:1:{i:2915859;a:0:{}}}s:12:\"all_licenses\";a:1:{i:4142;a:0:{}}s:6:\"addons\";a:1:{i:4142;a:2:{i:0;O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";s:4:\"4142\";s:5:\"title\";s:9:\"Multifeed\";s:4:\"slug\";s:13:\"esf-multifeed\";s:12:\"premium_slug\";s:21:\"esf-multifeed-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:1;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"7320\";s:11:\"description\";s:180:\"The Multifeed extension adds the ability to display posts or events from multiple Facebook pages in one single feed. The posts are ordered by date with the newest posts at the top.\";s:17:\"short_description\";s:139:\"Easily display posts or events from multiple Facebook pages in one single feed. Posts are ordered by date with the newest posts at the top.\";s:10:\"banner_url\";s:61:\"//s3-us-west-2.amazonaws.com/freemius/plugins/7320/banner.png\";s:15:\"card_banner_url\";s:66:\"//s3-us-west-2.amazonaws.com/freemius/plugins/7320/card_banner.png\";s:15:\"selling_point_0\";s:72:\"Display posts from multiple pages (even not owned by you) in single feed\";s:15:\"selling_point_1\";s:49:\"Display events from multiple pages in single feed\";s:15:\"selling_point_2\";s:61:\"Display posts from multiple Instagram accounts in single feed\";s:11:\"screenshots\";O:8:\"stdClass\":4:{s:12:\"screenshot_0\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/7320/screenshots/0.png\";s:12:\"screenshot_1\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/7320/screenshots/1.png\";s:12:\"screenshot_2\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/7320/screenshots/2.png\";s:12:\"screenshot_3\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/7320/screenshots/3.png\";}s:2:\"id\";s:4:\"1979\";s:7:\"updated\";s:19:\"2021-01-27 21:40:23\";s:7:\"created\";s:19:\"2020-12-28 21:56:45\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_614dfe1097ba6696e1ad9e72efa30\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"7320\";s:7:\"updated\";s:19:\"2021-08-02 15:51:28\";s:7:\"created\";s:19:\"2020-12-01 13:58:08\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:1;O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";s:4:\"4142\";s:5:\"title\";s:13:\"Featured Post\";s:4:\"slug\";s:17:\"esf-featured-post\";s:12:\"premium_slug\";s:25:\"esf-featured-post-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:1;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"8262\";s:11:\"description\";s:138:\"The Featured Post extension adds the ability to display single post or events from Facebook pages or Instagram account in one single feed.\";s:17:\"short_description\";s:81:\"Select any single post from Facebook and Instagram Feed to show as featured post.\";s:10:\"banner_url\";s:61:\"//s3-us-west-2.amazonaws.com/freemius/plugins/8262/banner.png\";s:15:\"card_banner_url\";s:66:\"//s3-us-west-2.amazonaws.com/freemius/plugins/8262/card_banner.png\";s:15:\"selling_point_0\";s:56:\"Display single post as Featured post from Facebook feed.\";s:15:\"selling_point_1\";s:57:\"Display single post as Featured post from Instagram feed.\";s:15:\"selling_point_2\";s:68:\"Select post visually from dashboard and get the generated shortcode.\";s:11:\"screenshots\";O:8:\"stdClass\":4:{s:12:\"screenshot_0\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/8262/screenshots/0.png\";s:12:\"screenshot_1\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/8262/screenshots/1.png\";s:12:\"screenshot_2\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/8262/screenshots/2.jpg\";s:12:\"screenshot_3\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/8262/screenshots/3.jpg\";}s:2:\"id\";s:4:\"2193\";s:7:\"updated\";s:19:\"2021-05-10 17:01:15\";s:7:\"created\";s:19:\"2021-05-10 16:16:35\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_2f68aaddd0c6fe6607dba2ee0d7e1\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"8262\";s:7:\"updated\";s:19:\"2021-06-13 10:55:42\";s:7:\"created\";s:19:\"2021-04-26 18:26:35\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}}}','yes'),(96765,'elementor_install_history','a:2:{s:6:\"2.10.3\";i:1628031054;s:5:\"3.3.1\";i:1628031055;}','yes'),(63917,'elementor_custom_icon_sets_config','a:0:{}','yes'),(36657,'theme_mods_start-press','a:7:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:9:\"main-menu\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:472;s:25:\"start-press_primary_color\";s:7:\"#476a53\";s:24:\"start-press_facebook_url\";s:35:\"http://facebook.com/polledherefords\";s:23:\"start-press_twitter_url\";s:28:\"http://twitter.com/runlranch\";}','yes'),(56195,'_transient_jetpack_assumed_site_creation_date','2017-03-03 13:36:30','yes'),(41666,'fs_gdpr','a:2:{s:2:\"u0\";a:1:{s:8:\"required\";b:0;}s:2:\"u1\";a:2:{s:8:\"required\";b:0;s:18:\"show_opt_in_notice\";b:0;}}','yes'),(36689,'efbl_install_date','2019-05-05 04:05:47','yes'),(36690,'widget_easy_facebook_feed','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(36691,'widget_easy_facebook_page_plugin','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:16:{s:5:\"title\";s:9:\"Follow Us\";s:11:\"fanpage_url\";s:40:\"https://www.facebook.com/polledherefords\";s:8:\"fb_appid\";s:0:\"\";s:10:\"show_faces\";s:1:\"1\";s:11:\"show_stream\";s:1:\"1\";s:10:\"hide_cover\";s:0:\"\";s:10:\"box_height\";s:4:\"1000\";s:9:\"box_width\";s:3:\"300\";s:10:\"responsive\";s:1:\"1\";s:12:\"small_header\";s:0:\"\";s:8:\"hide_cta\";s:0:\"\";s:6:\"locale\";s:5:\"en_US\";s:12:\"locale_other\";s:0:\"\";s:14:\"animate_effect\";s:6:\"fadeIn\";s:12:\"widget_logic\";s:0:\"\";s:48:\"extended_widget_opts-easy_facebook_page_plugin-3\";a:6:{s:7:\"id_base\";s:27:\"easy_facebook_page_plugin-3\";s:10:\"visibility\";a:3:{s:4:\"main\";s:0:\"\";s:7:\"options\";s:4:\"hide\";s:8:\"selected\";s:1:\"0\";}s:7:\"devices\";a:1:{s:7:\"options\";s:4:\"hide\";}s:9:\"alignment\";a:1:{s:7:\"desktop\";s:7:\"default\";}s:5:\"class\";a:4:{s:8:\"selected\";s:1:\"0\";s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"logic\";s:0:\"\";}s:9:\"tabselect\";s:1:\"0\";}}}','yes'),(36692,'_efbl_version','4.4.0','no'),(36693,'efbl_access_token','EAADKA3Dmp8wBAIIRAZCzsSrHxQgGqWbge7cFsIs6PsfZCMZBwlZBhkS4pVRaqZChoRiN3gVhsEDITKCWb9MxQRmcApPhiro1a4KVmQeO0zgw3J2iZCSmNjTiZCZAGB7l8ZBTW1CqUFTpZCMo0If8eqPwr15BedSWgO0tKkq8tUWS5UoQZDZD#_','yes'),(37486,'wordfence_ls_version','1.0.9','yes'),(41882,'elementor_1_elementor_updater_batch_90243e4068a8adbfef38a146760f','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:29:\"_v_2_6_6_fa4_migration_button\";}}}','no'),(41079,'elementor_icon_manager_needs_update','yes','yes'),(41080,'elementor_load_fa4_shim','yes','yes'),(36428,'elementor_log','a:42:{s:32:\"fe011c38e689cac53d935627792450ce\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-05-05 04:01:00\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:45:\"Elementor Pro/Upgrades - _v_2_5_4_form Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-05-05 04:01:00\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:45:\"Elementor Pro/Upgrades - _v_2_5_4_form Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"28577998c42cf15bb4e083e93e33a39d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-05-05 04:01:00\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor Pro/Upgrades - _v_2_5_4_form Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-05-05 04:01:00\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:47:\"Elementor Pro/Upgrades - _v_2_5_4_form Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"b4fe6c31ba1fd8e71418e19703b58508\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-05-05 04:01:00\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"2.2.4\";s:2:\"to\";s:5:\"2.5.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-05-05 04:01:00\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"2.2.4\";s:2:\"to\";s:5:\"2.5.6\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"564f0f262fa1fc1607c14f69097ff6c1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-05-07 17:33:46\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.14\";s:2:\"to\";s:6:\"2.5.15\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-05-07 17:33:46\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.14\";s:2:\"to\";s:6:\"2.5.15\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"e14bba97aa0ce4d66dbbef942936c66a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-05-08 16:50:25\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"2.5.6\";s:2:\"to\";s:5:\"2.5.8\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-05-08 16:50:25\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"2.5.6\";s:2:\"to\";s:5:\"2.5.8\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"ab0618758efcf597e7d15ee1b23d86fd\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-05-28 17:35:23\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.15\";s:2:\"to\";s:6:\"2.5.16\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-05-28 17:35:23\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.15\";s:2:\"to\";s:6:\"2.5.16\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"f88b52f58b1eab6aa0f3032f36070f4e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-09 17:37:52\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.16\";s:2:\"to\";s:5:\"2.6.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-09 17:37:52\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.16\";s:2:\"to\";s:5:\"2.6.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"e2cc9b7eb983930529150a40815cd05a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-09 17:37:57\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-09 17:37:57\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"a006ea7070def9d6bd8db70ed5ca13ff\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-09 17:37:57\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:55:\"Elementor/Upgrades - _v_2_6_0_fa4_migration_flag Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-09 17:37:57\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:55:\"Elementor/Upgrades - _v_2_6_0_fa4_migration_flag Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"b555e2cae725298b8869d42d43d2b846\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-09 17:37:57\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:57:\"Elementor/Upgrades - _v_2_6_0_fa4_migration_flag Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-09 17:37:57\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:57:\"Elementor/Upgrades - _v_2_6_0_fa4_migration_flag Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"ab35e6a9e0870bdb4f3ae5573633f6cd\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-09 17:37:57\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.16\";s:2:\"to\";s:5:\"2.6.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-09 17:37:57\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.16\";s:2:\"to\";s:5:\"2.6.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"6cd30425b4a9da674de30c363aef7958\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-10 19:24:15\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.0\";s:2:\"to\";s:5:\"2.6.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-10 19:24:15\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.0\";s:2:\"to\";s:5:\"2.6.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"09a5ed5bac0ca8090a4d2221bdccea64\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-14 17:38:23\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.1\";s:2:\"to\";s:5:\"2.6.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-14 17:38:23\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.1\";s:2:\"to\";s:5:\"2.6.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"6d17ade29f7b17265ec71500fe62946e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-18 17:35:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.2\";s:2:\"to\";s:5:\"2.6.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-18 17:35:18\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.2\";s:2:\"to\";s:5:\"2.6.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"7754894b46bb4a7cb1f6f1fb619ba8ee\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-19 17:34:16\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.4\";s:2:\"to\";s:5:\"2.6.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-19 17:34:16\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.4\";s:2:\"to\";s:5:\"2.6.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"ad3ea7e221483370fac0b75799329628\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-23 17:36:13\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.5\";s:2:\"to\";s:5:\"2.6.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-23 17:36:13\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.5\";s:2:\"to\";s:5:\"2.6.6\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d812479fb2c71784273098b012e52681\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-23 17:36:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-23 17:36:17\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"43a1409dc900dddabcec73a3fbbf3492\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-23 17:36:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:57:\"Elementor/Upgrades - _v_2_6_6_fa4_migration_button Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-23 17:36:17\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:57:\"Elementor/Upgrades - _v_2_6_6_fa4_migration_button Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"ec87ae16ee7c4ab08c9a426ff7c81b0b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-23 17:36:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:59:\"Elementor/Upgrades - _v_2_6_6_fa4_migration_button Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-23 17:36:17\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:59:\"Elementor/Upgrades - _v_2_6_6_fa4_migration_button Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"e24678b52495c4ef54836c48c2241723\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-23 17:36:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.5\";s:2:\"to\";s:5:\"2.6.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-23 17:36:17\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.5\";s:2:\"to\";s:5:\"2.6.6\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"11e51ebd6a7b6dd71a53a2e6388a2698\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-07-23 17:36:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.5\";s:2:\"to\";s:5:\"2.6.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-07-23 17:36:18\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.6.5\";s:2:\"to\";s:5:\"2.6.6\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"0e860464be5b2179b2fcc5c89c36da29\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-07-03 13:37:32\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"2.5.8\";s:2:\"to\";s:6:\"2.10.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-07-03 13:37:32\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"2.5.8\";s:2:\"to\";s:6:\"2.10.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"3846877d36077d9555eb07e01693f9ff\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:95:\"/home/homeston/public_html/kclgenetics.com/wp-content/plugins/elementor-pro/license/updater.php\";s:7:\"\0*\0line\";i:150;s:7:\"\0*\0date\";s:19:\"2021-07-03 23:49:35\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:43:\"Cannot use object of type WP_Error as array\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-07-03 23:49:35\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:43:\"Cannot use object of type WP_Error as array\";s:4:\"file\";s:95:\"/home/homeston/public_html/kclgenetics.com/wp-content/plugins/elementor-pro/license/updater.php\";s:4:\"line\";i:150;s:5:\"trace\";b:1;}}s:32:\"6269d33c732bab8a5e46a95286688e7e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"17582b1e88c52ac4cc2b0e7ffcaa64cf\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:55:\"Elementor Pro/Upgrades - _v_3_1_0_media_carousel Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:55:\"Elementor Pro/Upgrades - _v_3_1_0_media_carousel Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"4406bde067f9521d5b37259f1918f007\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:57:\"Elementor Pro/Upgrades - _v_3_1_0_media_carousel Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:57:\"Elementor Pro/Upgrades - _v_3_1_0_media_carousel Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"614ee8413b027a925254d856f340ca8f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:48:\"Elementor Pro/Upgrades - _v_3_1_0_reviews Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:48:\"Elementor Pro/Upgrades - _v_3_1_0_reviews Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"7ec27a206b201c431458ab99036dd922\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor Pro/Upgrades - _v_3_1_0_reviews Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:50:\"Elementor Pro/Upgrades - _v_3_1_0_reviews Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"c3e3c3452bd59f455565bb89b1f420b9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:61:\"Elementor Pro/Upgrades - _v_3_1_0_testimonial_carousel Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:61:\"Elementor Pro/Upgrades - _v_3_1_0_testimonial_carousel Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"96dbf332da49abb75d4e450211d38de8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:63:\"Elementor Pro/Upgrades - _v_3_1_0_testimonial_carousel Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:63:\"Elementor Pro/Upgrades - _v_3_1_0_testimonial_carousel Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"75211ece304c67ddc187c94342da043d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor Pro/Upgrades - _v_3_1_0_slides Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:47:\"Elementor Pro/Upgrades - _v_3_1_0_slides Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"e42f3684178653c4e1f97cac6672e678\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:49:\"Elementor Pro/Upgrades - _v_3_1_0_slides Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:49:\"Elementor Pro/Upgrades - _v_3_1_0_slides Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"cf85df406a5317bf01984e7570953cdd\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:54:\"Elementor Pro/Upgrades - _v_3_3_0_nav_menu_icon Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:54:\"Elementor Pro/Upgrades - _v_3_3_0_nav_menu_icon Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"661d574ef7e9c3c318f2d67a4e42c2a4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:56:\"Elementor Pro/Upgrades - _v_3_3_0_nav_menu_icon Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:56:\"Elementor Pro/Upgrades - _v_3_3_0_nav_menu_icon Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"ff9f8c29d424292ce3ea146020bbd727\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:58:\"Elementor Pro/Upgrades - _v_3_3_0_recalc_usage_data Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:58:\"Elementor Pro/Upgrades - _v_3_3_0_recalc_usage_data Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"d8de0183951697d7cc512ce0ec443dbd\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"2.10.3\";s:2:\"to\";s:5:\"3.3.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:55\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"2.10.3\";s:2:\"to\";s:5:\"3.3.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"895e7179944d9f539cc0206fb973294e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:60:\"Elementor Pro/Upgrades - _v_3_3_0_recalc_usage_data Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:60:\"Elementor Pro/Upgrades - _v_3_3_0_recalc_usage_data Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"4cf94788019ab804703f00aa8fa95f8c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"2.10.3\";s:2:\"to\";s:5:\"3.3.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:55\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"2.10.3\";s:2:\"to\";s:5:\"3.3.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"fc3a50ecefbb3729356d2bb7970e7f36\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:101:\"/home/homeston/public_html/kclgenetics.com/wp-content/plugins/elementor-pro/core/upgrade/upgrades.php\";s:7:\"\0*\0line\";i:996;s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:55\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:27:\"Undefined index: pagination\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:55\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:27:\"Undefined index: pagination\";s:4:\"file\";s:101:\"/home/homeston/public_html/kclgenetics.com/wp-content/plugins/elementor-pro/core/upgrade/upgrades.php\";s:4:\"line\";i:996;s:5:\"trace\";b:1;}}s:32:\"c5632763f97010d3b2a99b17ca0ee32f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-03 22:50:56\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"2.10.3\";s:2:\"to\";s:5:\"3.3.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-03 22:50:56\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"2.10.3\";s:2:\"to\";s:5:\"3.3.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"af402410a8d8948c44743494bf5cf8ea\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:119:\"/home/homeston/public_html/kclgenetics.com/wp-content/plugins/elementor-pro/modules/payments/classes/payment-button.php\";s:7:\"\0*\0line\";i:15;s:7:\"\0*\0date\";s:19:\"2022-03-23 10:11:19\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:189:\"Declaration of ElementorPro\\Modules\\Payments\\Classes\\Payment_Button::render_button() should be compatible with Elementor\\Widget_Button::render_button(Elementor\\Widget_Base $instance = NULL)\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:55;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2022-03-24 13:11:11\";i:1;s:19:\"2022-03-24 13:11:19\";i:2;s:19:\"2022-03-24 13:11:19\";i:3;s:19:\"2022-03-24 13:57:50\";i:4;s:19:\"2022-03-24 16:21:04\";i:5;s:19:\"2022-03-24 20:24:48\";i:6;s:19:\"2022-03-24 20:25:08\";i:7;s:19:\"2022-03-24 20:43:58\";i:8;s:19:\"2022-03-24 20:44:11\";i:9;s:19:\"2022-03-24 20:44:17\";i:10;s:19:\"2022-03-24 20:44:54\";i:11;s:19:\"2022-03-24 20:45:29\";i:12;s:19:\"2022-03-24 22:38:45\";i:13;s:19:\"2022-03-24 22:38:46\";i:14;s:19:\"2022-03-25 00:49:29\";i:15;s:19:\"2022-03-25 00:49:30\";i:16;s:19:\"2022-03-25 00:49:33\";i:17;s:19:\"2022-03-25 00:49:41\";i:18;s:19:\"2022-03-25 00:49:48\";i:19;s:19:\"2022-03-25 00:50:05\";i:20;s:19:\"2022-03-25 00:50:08\";i:21;s:19:\"2022-03-25 00:50:14\";i:22;s:19:\"2022-03-25 00:50:14\";i:23;s:19:\"2022-03-25 00:50:16\";i:24;s:19:\"2022-03-25 00:50:19\";i:25;s:19:\"2022-03-25 00:50:19\";i:26;s:19:\"2022-03-25 04:26:39\";i:27;s:19:\"2022-03-25 04:26:41\";i:28;s:19:\"2022-03-25 08:05:12\";i:29;s:19:\"2022-03-25 09:16:15\";i:30;s:19:\"2022-03-25 10:05:05\";i:31;s:19:\"2022-03-25 15:20:42\";i:32;s:19:\"2022-03-25 16:36:32\";i:33;s:19:\"2022-03-25 16:36:34\";i:34;s:19:\"2022-03-26 04:10:47\";i:35;s:19:\"2022-03-26 04:10:48\";i:36;s:19:\"2022-03-26 04:10:50\";i:37;s:19:\"2022-03-26 04:10:51\";i:38;s:19:\"2022-03-26 04:10:53\";i:39;s:19:\"2022-03-26 05:45:32\";i:40;s:19:\"2022-03-26 06:45:54\";i:41;s:19:\"2022-03-26 08:38:10\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:189:\"Declaration of ElementorPro\\Modules\\Payments\\Classes\\Payment_Button::render_button() should be compatible with Elementor\\Widget_Button::render_button(Elementor\\Widget_Base $instance = NULL)\";s:4:\"file\";s:119:\"/home/homeston/public_html/kclgenetics.com/wp-content/plugins/elementor-pro/modules/payments/classes/payment-button.php\";s:4:\"line\";i:15;s:5:\"trace\";b:1;}}s:32:\"de37ef35317ebd119cfa952311f9f251\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:105:\"/home/homeston/public_html/kclgenetics.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:302;s:7:\"\0*\0date\";s:19:\"2022-03-23 10:11:19\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:179;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2022-03-25 14:19:51\";i:1;s:19:\"2022-03-25 14:19:51\";i:2;s:19:\"2022-03-25 14:27:55\";i:3;s:19:\"2022-03-25 14:28:14\";i:4;s:19:\"2022-03-25 14:28:16\";i:5;s:19:\"2022-03-25 14:28:22\";i:6;s:19:\"2022-03-25 14:30:58\";i:7;s:19:\"2022-03-25 14:55:10\";i:8;s:19:\"2022-03-25 14:55:12\";i:9;s:19:\"2022-03-25 14:56:45\";i:10;s:19:\"2022-03-25 14:58:50\";i:11;s:19:\"2022-03-25 14:58:51\";i:12;s:19:\"2022-03-25 15:19:36\";i:13;s:19:\"2022-03-25 15:19:37\";i:14;s:19:\"2022-03-25 15:25:23\";i:15;s:19:\"2022-03-25 15:25:24\";i:16;s:19:\"2022-03-25 15:42:24\";i:17;s:19:\"2022-03-25 15:42:25\";i:18;s:19:\"2022-03-25 15:43:21\";i:19;s:19:\"2022-03-25 15:49:21\";i:20;s:19:\"2022-03-25 15:49:22\";i:21;s:19:\"2022-03-25 16:02:58\";i:22;s:19:\"2022-03-25 16:02:58\";i:23;s:19:\"2022-03-25 16:36:30\";i:24;s:19:\"2022-03-25 16:36:35\";i:25;s:19:\"2022-03-25 16:45:39\";i:26;s:19:\"2022-03-25 17:23:28\";i:27;s:19:\"2022-03-25 17:51:39\";i:28;s:19:\"2022-03-25 20:03:37\";i:29;s:19:\"2022-03-25 20:51:29\";i:30;s:19:\"2022-03-26 03:20:19\";i:31;s:19:\"2022-03-26 03:30:15\";i:32;s:19:\"2022-03-26 03:30:16\";i:33;s:19:\"2022-03-26 04:44:26\";i:34;s:19:\"2022-03-26 04:44:27\";i:35;s:19:\"2022-03-26 04:46:45\";i:36;s:19:\"2022-03-26 05:35:29\";i:37;s:19:\"2022-03-26 06:41:40\";i:38;s:19:\"2022-03-26 06:41:42\";i:39;s:19:\"2022-03-26 07:24:23\";i:40;s:19:\"2022-03-26 08:54:24\";i:41;s:19:\"2022-03-26 08:54:24\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:105:\"/home/homeston/public_html/kclgenetics.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:302;s:5:\"trace\";b:1;}}}','no'),(36412,'elementor_pro_license_key','ccbe0c923fa4ac1a74ef177750961081','yes'),(36420,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(36421,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(36422,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(52520,'admin_email_lifespan','0','yes'),(58533,'fs_api_cache','a:6:{s:26:\"get:/v1/users/2915859.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":16:{s:15:\"default_card_id\";N;s:5:\"gross\";i:0;s:6:\"source\";i:0;s:13:\"last_login_at\";N;s:5:\"email\";s:20:\"support@maiahost.com\";s:5:\"first\";s:7:\"larsons\";s:4:\"last\";s:0:\"\";s:7:\"picture\";N;s:2:\"ip\";s:12:\"76.185.46.91\";s:11:\"is_verified\";b:0;s:10:\"secret_key\";s:32:\"sk_~QTZsJ_yA*]RB=cytT;9T<-N%(%31\";s:10:\"public_key\";s:32:\"pk_b55de060212113726b4b937d7940b\";s:2:\"id\";s:7:\"2915859\";s:7:\"created\";s:19:\"2020-04-15 13:37:23\";s:7:\"updated\";N;s:11:\"customer_id\";N;}s:7:\"created\";i:1586957844;s:9:\"timestamp\";i:1587044244;}s:29:\"get:/v1/installs/4368063.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":31:{s:7:\"site_id\";s:8:\"10969346\";s:9:\"plugin_id\";s:4:\"4142\";s:7:\"user_id\";s:7:\"2915859\";s:3:\"url\";s:22:\"http://kclgenetics.com\";s:5:\"title\";s:22:\"Larson Running L Ranch\";s:7:\"version\";s:5:\"5.2.5\";s:7:\"plan_id\";s:4:\"6713\";s:10:\"license_id\";N;s:13:\"trial_plan_id\";N;s:10:\"trial_ends\";N;s:15:\"subscription_id\";N;s:5:\"gross\";i:0;s:12:\"country_code\";s:2:\"us\";s:8:\"language\";s:5:\"en-US\";s:7:\"charset\";s:5:\"UTF-8\";s:16:\"platform_version\";s:3:\"5.4\";s:11:\"sdk_version\";s:5:\"2.3.0\";s:28:\"programming_language_version\";s:6:\"7.0.33\";s:9:\"is_active\";b:1;s:15:\"is_disconnected\";b:0;s:10:\"is_premium\";b:0;s:14:\"is_uninstalled\";b:0;s:9:\"is_locked\";b:0;s:6:\"source\";i:0;s:8:\"upgraded\";N;s:12:\"last_seen_at\";s:19:\"2020-04-15 13:37:25\";s:10:\"secret_key\";s:32:\"sk_?Xf3keVG*LgQ?B3WcG5hd[8;0k{.P\";s:10:\"public_key\";s:32:\"pk_45edba60210a687f9c933a38be2d4\";s:2:\"id\";s:7:\"4368063\";s:7:\"created\";s:19:\"2020-04-15 13:37:23\";s:7:\"updated\";N;}s:7:\"created\";i:1586957844;s:9:\"timestamp\";i:1587044244;}s:45:\"get:/v1/users/2915859/plugins/4142/plans.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:5:\"plans\";a:5:{i:0;O:14:\"FS_Plugin_Plan\":21:{s:9:\"plugin_id\";s:4:\"4142\";s:4:\"name\";s:4:\"free\";s:5:\"title\";s:4:\"Free\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:2:\"id\";s:4:\"6713\";s:7:\"updated\";s:19:\"2019-09-04 19:04:26\";s:7:\"created\";s:19:\"2019-07-19 15:16:10\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:1;O:14:\"FS_Plugin_Plan\":21:{s:9:\"plugin_id\";s:4:\"4142\";s:4:\"name\";s:17:\"instagram_premium\";s:5:\"title\";s:18:\"Instagram Feed Pro\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:7;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";s:72:\"https://easysocialfeed.com/documentation-category/easy-facebook-likebox/\";s:13:\"support_forum\";N;s:13:\"support_email\";s:23:\"help@easysocialfeed.com\";s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:2:\"id\";s:4:\"7275\";s:7:\"updated\";s:19:\"2021-09-20 18:12:55\";s:7:\"created\";s:19:\"2019-09-04 09:00:42\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:2;O:14:\"FS_Plugin_Plan\":21:{s:9:\"plugin_id\";s:4:\"4142\";s:4:\"name\";s:16:\"facebook_premium\";s:5:\"title\";s:17:\"Facebook Feed Pro\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:7;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";s:72:\"https://easysocialfeed.com/documentation-category/easy-facebook-likebox/\";s:13:\"support_forum\";N;s:13:\"support_email\";s:23:\"help@easysocialfeed.com\";s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:2:\"id\";s:4:\"7277\";s:7:\"updated\";s:19:\"2021-09-20 18:13:41\";s:7:\"created\";s:19:\"2019-09-04 10:29:06\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:3;O:14:\"FS_Plugin_Plan\":21:{s:9:\"plugin_id\";s:4:\"4142\";s:4:\"name\";s:13:\"combo_premium\";s:5:\"title\";s:5:\"Combo\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:7;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";s:72:\"https://easysocialfeed.com/documentation-category/easy-facebook-likebox/\";s:13:\"support_forum\";N;s:13:\"support_email\";s:23:\"help@easysocialfeed.com\";s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:2:\"id\";s:4:\"7278\";s:7:\"updated\";s:19:\"2021-09-20 18:14:35\";s:7:\"created\";s:19:\"2019-09-04 10:30:06\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:4;O:14:\"FS_Plugin_Plan\":21:{s:9:\"plugin_id\";s:4:\"4142\";s:4:\"name\";s:10:\"enterprise\";s:5:\"title\";s:10:\"Enterprise\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:2:\"id\";s:4:\"8473\";s:7:\"updated\";s:19:\"2020-12-28 15:43:44\";s:7:\"created\";s:19:\"2019-12-26 14:32:51\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}}s:7:\"created\";i:1648247830;s:9:\"timestamp\";i:1648334230;}s:56:\"get:/v1/users/2915859.json?plugin_id=4142&fields=is_beta\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":2:{s:2:\"id\";s:7:\"2915859\";s:7:\"is_beta\";b:0;}s:7:\"created\";i:1613602733;s:9:\"timestamp\";i:1613689133;}s:65:\"get:/v1/users/2915859/plugins/4142/licenses.json?is_enriched=true\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:8:\"licenses\";a:0:{}}s:7:\"created\";i:1648247830;s:9:\"timestamp\";i:1648334230;}s:59:\"get:/v1/installs/4368063/addons.json?enriched=true&count=50\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:7:\"plugins\";a:2:{i:0;O:8:\"stdClass\":33:{s:16:\"parent_plugin_id\";s:4:\"4142\";s:12:\"developer_id\";s:4:\"2306\";s:8:\"store_id\";s:3:\"847\";s:10:\"install_id\";s:7:\"6100480\";s:4:\"slug\";s:13:\"esf-multifeed\";s:5:\"title\";s:9:\"Multifeed\";s:11:\"environment\";i:0;s:4:\"icon\";s:93:\"//s3-us-west-2.amazonaws.com/freemius/plugins/7320/icons/62a2d5be25897ce04037937985678631.png\";s:15:\"default_plan_id\";s:5:\"12266\";s:5:\"plans\";s:17:\"12266,11931,12265\";s:8:\"features\";s:19:\"8933,8934,8935,9019\";s:17:\"money_back_period\";N;s:13:\"refund_policy\";N;s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:0:\"\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:1;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:10:\"public_key\";s:32:\"pk_614dfe1097ba6696e1ad9e72efa30\";s:2:\"id\";s:4:\"7320\";s:7:\"created\";s:19:\"2020-12-01 13:58:08\";s:7:\"updated\";s:19:\"2021-08-02 15:51:28\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"7320\";s:3:\"url\";N;s:11:\"description\";s:180:\"The Multifeed extension adds the ability to display posts or events from multiple Facebook pages in one single feed. The posts are ordered by date with the newest posts at the top.\";s:17:\"short_description\";s:139:\"Easily display posts or events from multiple Facebook pages in one single feed. Posts are ordered by date with the newest posts at the top.\";s:10:\"banner_url\";s:61:\"//s3-us-west-2.amazonaws.com/freemius/plugins/7320/banner.png\";s:15:\"card_banner_url\";s:66:\"//s3-us-west-2.amazonaws.com/freemius/plugins/7320/card_banner.png\";s:15:\"selling_point_0\";s:72:\"Display posts from multiple pages (even not owned by you) in single feed\";s:15:\"selling_point_1\";s:49:\"Display events from multiple pages in single feed\";s:15:\"selling_point_2\";s:61:\"Display posts from multiple Instagram accounts in single feed\";s:11:\"screenshots\";O:8:\"stdClass\":4:{s:12:\"screenshot_0\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/7320/screenshots/0.png\";s:12:\"screenshot_1\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/7320/screenshots/1.png\";s:12:\"screenshot_2\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/7320/screenshots/2.png\";s:12:\"screenshot_3\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/7320/screenshots/3.png\";}s:2:\"id\";s:4:\"1979\";s:7:\"created\";s:19:\"2020-12-28 21:56:45\";s:7:\"updated\";s:19:\"2021-01-27 21:40:23\";}s:12:\"premium_slug\";s:21:\"esf-multifeed-premium\";}i:1;O:8:\"stdClass\":33:{s:16:\"parent_plugin_id\";s:4:\"4142\";s:12:\"developer_id\";s:4:\"2306\";s:8:\"store_id\";s:3:\"847\";s:10:\"install_id\";s:7:\"7234344\";s:4:\"slug\";s:17:\"esf-featured-post\";s:5:\"title\";s:13:\"Featured Post\";s:11:\"environment\";i:0;s:4:\"icon\";s:93:\"//s3-us-west-2.amazonaws.com/freemius/plugins/8262/icons/9ee7c23db831d0d9ebcc536458a33a3b.png\";s:15:\"default_plan_id\";s:5:\"13669\";s:5:\"plans\";s:17:\"13669,13667,13668\";s:8:\"features\";s:14:\"9427,9530,9428\";s:17:\"money_back_period\";N;s:13:\"refund_policy\";N;s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:0:\"\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:1;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:10:\"public_key\";s:32:\"pk_2f68aaddd0c6fe6607dba2ee0d7e1\";s:2:\"id\";s:4:\"8262\";s:7:\"created\";s:19:\"2021-04-26 18:26:35\";s:7:\"updated\";s:19:\"2021-06-13 10:55:42\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"8262\";s:3:\"url\";s:40:\"https://easysocialfeed.com/featured-post\";s:11:\"description\";s:138:\"The Featured Post extension adds the ability to display single post or events from Facebook pages or Instagram account in one single feed.\";s:17:\"short_description\";s:81:\"Select any single post from Facebook and Instagram Feed to show as featured post.\";s:10:\"banner_url\";s:61:\"//s3-us-west-2.amazonaws.com/freemius/plugins/8262/banner.png\";s:15:\"card_banner_url\";s:66:\"//s3-us-west-2.amazonaws.com/freemius/plugins/8262/card_banner.png\";s:15:\"selling_point_0\";s:56:\"Display single post as Featured post from Facebook feed.\";s:15:\"selling_point_1\";s:57:\"Display single post as Featured post from Instagram feed.\";s:15:\"selling_point_2\";s:68:\"Select post visually from dashboard and get the generated shortcode.\";s:11:\"screenshots\";O:8:\"stdClass\":4:{s:12:\"screenshot_0\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/8262/screenshots/0.png\";s:12:\"screenshot_1\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/8262/screenshots/1.png\";s:12:\"screenshot_2\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/8262/screenshots/2.jpg\";s:12:\"screenshot_3\";s:68:\"//s3-us-west-2.amazonaws.com/freemius/plugins/8262/screenshots/3.jpg\";}s:2:\"id\";s:4:\"2193\";s:7:\"created\";s:19:\"2021-05-10 16:16:35\";s:7:\"updated\";s:19:\"2021-05-10 17:01:15\";}s:12:\"premium_slug\";s:25:\"esf-featured-post-premium\";}}}s:7:\"created\";i:1628031001;s:9:\"timestamp\";i:1628117401;}}','no'),(74387,'_elementor_pro_license_data_fallback','a:2:{s:7:\"timeout\";i:1628117403;s:5:\"value\";s:355:\"{\"expires\":\"2021-11-10 23:59:59\",\"payment_id\":9179920,\"subscription_id\":9179920,\"customer_name\":\" \",\"customer_email\":\"desotoprivate@aol.com\",\"price_id\":2,\"license_limit\":3,\"site_count\":3,\"activations_left\":0,\"success\":true,\"license\":\"valid\",\"item_id\":6630547,\"item_name\":\"Elementor Pro - Plus\",\"subscriptions\":\"enable\",\"checksum\":\"checksum\",\"features\":[]}\";}','yes'),(74388,'_elementor_pro_license_data','a:2:{s:7:\"timeout\";i:1628074203;s:5:\"value\";s:355:\"{\"expires\":\"2021-11-10 23:59:59\",\"payment_id\":9179920,\"subscription_id\":9179920,\"customer_name\":\" \",\"customer_email\":\"desotoprivate@aol.com\",\"price_id\":2,\"license_limit\":3,\"site_count\":3,\"activations_left\":0,\"success\":true,\"license\":\"valid\",\"item_id\":6630547,\"item_name\":\"Elementor Pro - Plus\",\"subscriptions\":\"enable\",\"checksum\":\"checksum\",\"features\":[]}\";}','yes'),(54284,'elementor_active_kit','914','yes'),(58534,'_site_transient_timeout_locked_1','1902317845','no'),(58535,'_site_transient_locked_1','1','no'),(58609,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":4,\"critical\":1}','yes'),(64136,'secret_key','Tgr5wRlt8E,2uQ*eG61Z5cHsjc$0znKb3X>7#x~LdrRxN6[a%6}fUDd>7S;: OM5','no'),(61839,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(79642,'jp_sync_retry_after_sync','','no'),(71978,'ffwd_token_error_flag','1','yes'),(72838,'disallowed_keys','','no'),(72839,'comment_previously_approved','1','yes'),(72840,'auto_plugin_theme_update_emails','a:0:{}','no'),(72841,'auto_update_core_dev','enabled','yes'),(72842,'auto_update_core_minor','enabled','yes'),(72843,'auto_update_core_major','unset','yes'),(122449,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1648264821;s:7:\"checked\";a:24:{s:4:\"Divi\";s:7:\"3.0.106\";s:6:\"avenue\";s:5:\"3.0.0\";s:14:\"bg-photo-frame\";s:5:\"1.2.8\";s:11:\"bizworx-pro\";s:3:\"1.0\";s:15:\"business-center\";s:5:\"1.2.1\";s:14:\"chic-lifestyle\";s:6:\"10.0.6\";s:10:\"city-store\";s:5:\"1.4.5\";s:14:\"curiosity-lite\";s:5:\"2.2.1\";s:8:\"idolcorp\";s:3:\"1.2\";s:11:\"incart-lite\";s:5:\"1.0.7\";s:10:\"lithestore\";s:5:\"1.1.5\";s:7:\"maxwell\";s:5:\"2.3.6\";s:8:\"mckinley\";s:5:\"1.1.0\";s:6:\"moesia\";s:4:\"1.53\";s:10:\"news-viral\";s:5:\"1.1.4\";s:8:\"poseidon\";s:5:\"2.3.6\";s:9:\"reyl-lite\";s:5:\"1.0.5\";s:10:\"skt-toothy\";s:3:\"1.7\";s:11:\"start-press\";s:5:\"1.3.4\";s:6:\"storto\";s:5:\"1.6.4\";s:13:\"twentyfifteen\";s:3:\"3.1\";s:14:\"twentynineteen\";s:3:\"2.2\";s:15:\"twentyseventeen\";s:3:\"2.9\";s:13:\"twentysixteen\";s:3:\"2.6\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:21:{s:6:\"avenue\";a:6:{s:5:\"theme\";s:6:\"avenue\";s:11:\"new_version\";s:5:\"3.0.0\";s:3:\"url\";s:36:\"https://wordpress.org/themes/avenue/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/avenue.3.0.0.zip\";s:8:\"requires\";s:3:\"4.0\";s:12:\"requires_php\";b:0;}s:14:\"bg-photo-frame\";a:6:{s:5:\"theme\";s:14:\"bg-photo-frame\";s:11:\"new_version\";s:5:\"1.2.8\";s:3:\"url\";s:44:\"https://wordpress.org/themes/bg-photo-frame/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/bg-photo-frame.1.2.8.zip\";s:8:\"requires\";s:3:\"4.0\";s:12:\"requires_php\";b:0;}s:15:\"business-center\";a:6:{s:5:\"theme\";s:15:\"business-center\";s:11:\"new_version\";s:5:\"1.2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/business-center/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/business-center.1.2.1.zip\";s:8:\"requires\";s:3:\"4.5\";s:12:\"requires_php\";s:3:\"5.6\";}s:14:\"chic-lifestyle\";a:6:{s:5:\"theme\";s:14:\"chic-lifestyle\";s:11:\"new_version\";s:6:\"10.0.6\";s:3:\"url\";s:44:\"https://wordpress.org/themes/chic-lifestyle/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/chic-lifestyle.10.0.6.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"city-store\";a:6:{s:5:\"theme\";s:10:\"city-store\";s:11:\"new_version\";s:5:\"1.4.5\";s:3:\"url\";s:40:\"https://wordpress.org/themes/city-store/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/city-store.1.4.5.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:14:\"curiosity-lite\";a:6:{s:5:\"theme\";s:14:\"curiosity-lite\";s:11:\"new_version\";s:5:\"2.2.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/curiosity-lite/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/curiosity-lite.2.2.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:8:\"idolcorp\";a:6:{s:5:\"theme\";s:8:\"idolcorp\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:38:\"https://wordpress.org/themes/idolcorp/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/idolcorp.1.2.zip\";s:8:\"requires\";s:3:\"4.5\";s:12:\"requires_php\";b:0;}s:11:\"incart-lite\";a:6:{s:5:\"theme\";s:11:\"incart-lite\";s:11:\"new_version\";s:5:\"1.0.7\";s:3:\"url\";s:41:\"https://wordpress.org/themes/incart-lite/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/incart-lite.1.0.7.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:7:\"maxwell\";a:6:{s:5:\"theme\";s:7:\"maxwell\";s:11:\"new_version\";s:5:\"2.3.6\";s:3:\"url\";s:37:\"https://wordpress.org/themes/maxwell/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/maxwell.2.3.6.zip\";s:8:\"requires\";s:3:\"5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:8:\"mckinley\";a:6:{s:5:\"theme\";s:8:\"mckinley\";s:11:\"new_version\";s:5:\"1.1.0\";s:3:\"url\";s:38:\"https://wordpress.org/themes/mckinley/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/mckinley.1.1.0.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:6:\"moesia\";a:6:{s:5:\"theme\";s:6:\"moesia\";s:11:\"new_version\";s:4:\"1.53\";s:3:\"url\";s:36:\"https://wordpress.org/themes/moesia/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/moesia.1.53.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"news-viral\";a:6:{s:5:\"theme\";s:10:\"news-viral\";s:11:\"new_version\";s:5:\"1.1.4\";s:3:\"url\";s:40:\"https://wordpress.org/themes/news-viral/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/news-viral.1.1.4.zip\";s:8:\"requires\";s:3:\"4.0\";s:12:\"requires_php\";b:0;}s:8:\"poseidon\";a:6:{s:5:\"theme\";s:8:\"poseidon\";s:11:\"new_version\";s:5:\"2.3.6\";s:3:\"url\";s:38:\"https://wordpress.org/themes/poseidon/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/poseidon.2.3.6.zip\";s:8:\"requires\";s:3:\"5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:9:\"reyl-lite\";a:6:{s:5:\"theme\";s:9:\"reyl-lite\";s:11:\"new_version\";s:5:\"1.0.5\";s:3:\"url\";s:39:\"https://wordpress.org/themes/reyl-lite/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/reyl-lite.1.0.5.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:10:\"skt-toothy\";a:6:{s:5:\"theme\";s:10:\"skt-toothy\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:40:\"https://wordpress.org/themes/skt-toothy/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/skt-toothy.1.7.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:11:\"start-press\";a:6:{s:5:\"theme\";s:11:\"start-press\";s:11:\"new_version\";s:5:\"1.3.4\";s:3:\"url\";s:41:\"https://wordpress.org/themes/start-press/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/start-press.1.3.4.zip\";s:8:\"requires\";s:5:\"4.8.0\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:6:\"storto\";a:6:{s:5:\"theme\";s:6:\"storto\";s:11:\"new_version\";s:5:\"1.6.4\";s:3:\"url\";s:36:\"https://wordpress.org/themes/storto/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/storto.1.6.4.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:13:\"twentyfifteen\";a:6:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.3.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.2.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:13:\"twentysixteen\";a:6:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.2.6.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(124572,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.2\";s:7:\"version\";s:5:\"5.9.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1648264820;s:15:\"version_checked\";s:5:\"5.9.2\";s:12:\"translations\";a:0:{}}','no'),(127480,'_transient_timeout_jetpack_sync_callables_await','1648284922','no'),(127481,'_transient_jetpack_sync_callables_await','1648284862.1477','no'),(77479,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),(127482,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1648284892','no'),(127483,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:2;i:1;d:0.0011498928070068359375;}','no'),(127191,'_transient_timeout_jetpack_plugin_api_action_links_refresh','1648289847','no'),(127192,'_transient_jetpack_plugin_api_action_links_refresh','1648203447','no'),(127490,'_transient_timeout_global_styles_start-press','1648284924','no'),(127491,'_transient_global_styles_start-press','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(127407,'_site_transient_timeout_theme_roots','1648266620','no'),(127408,'_site_transient_theme_roots','a:24:{s:4:\"Divi\";s:7:\"/themes\";s:6:\"avenue\";s:7:\"/themes\";s:14:\"bg-photo-frame\";s:7:\"/themes\";s:11:\"bizworx-pro\";s:7:\"/themes\";s:15:\"business-center\";s:7:\"/themes\";s:14:\"chic-lifestyle\";s:7:\"/themes\";s:10:\"city-store\";s:7:\"/themes\";s:14:\"curiosity-lite\";s:7:\"/themes\";s:8:\"idolcorp\";s:7:\"/themes\";s:11:\"incart-lite\";s:7:\"/themes\";s:10:\"lithestore\";s:7:\"/themes\";s:7:\"maxwell\";s:7:\"/themes\";s:8:\"mckinley\";s:7:\"/themes\";s:6:\"moesia\";s:7:\"/themes\";s:10:\"news-viral\";s:7:\"/themes\";s:8:\"poseidon\";s:7:\"/themes\";s:9:\"reyl-lite\";s:7:\"/themes\";s:10:\"skt-toothy\";s:7:\"/themes\";s:11:\"start-press\";s:7:\"/themes\";s:6:\"storto\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(127409,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1648264821;s:8:\"response\";a:1:{s:24:\"slider-images/Slider.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/slider-images\";s:4:\"slug\";s:13:\"slider-images\";s:6:\"plugin\";s:24:\"slider-images/Slider.php\";s:11:\"new_version\";s:5:\"1.5.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/slider-images/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/slider-images.1.5.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/slider-images/assets/icon-128x128.png?rev=1534872\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/slider-images/assets/banner-772x250.png?rev=1658394\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.3\";s:6:\"tested\";s:5:\"5.8.4\";s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:22:{s:37:\"wd-facebook-feed/facebook-feed-wd.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/wd-facebook-feed\";s:4:\"slug\";s:16:\"wd-facebook-feed\";s:6:\"plugin\";s:37:\"wd-facebook-feed/facebook-feed-wd.php\";s:11:\"new_version\";s:5:\"1.2.7\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wd-facebook-feed/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wd-facebook-feed.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wd-facebook-feed/assets/icon-256x256.png?rev=2140064\";s:2:\"1x\";s:69:\"https://ps.w.org/wd-facebook-feed/assets/icon-128x128.png?rev=2140064\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/wd-facebook-feed/assets/banner-1544x500.png?rev=2587543\";s:2:\"1x\";s:71:\"https://ps.w.org/wd-facebook-feed/assets/banner-772x250.png?rev=2587543\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{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.2.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.2.2.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:8:\"requires\";s:3:\"5.0\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.5.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";}s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:35:\"w.org/plugins/easy-facebook-likebox\";s:4:\"slug\";s:21:\"easy-facebook-likebox\";s:6:\"plugin\";s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";s:11:\"new_version\";s:5:\"6.3.4\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/easy-facebook-likebox/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/easy-facebook-likebox.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/easy-facebook-likebox/assets/icon-128x128.png?rev=2476598\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:76:\"https://ps.w.org/easy-facebook-likebox/assets/banner-772x250.png?rev=2576261\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:53:\"easy-twitter-feed-widget/easy-twitter-feed-widget.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/easy-twitter-feed-widget\";s:4:\"slug\";s:24:\"easy-twitter-feed-widget\";s:6:\"plugin\";s:53:\"easy-twitter-feed-widget/easy-twitter-feed-widget.php\";s:11:\"new_version\";s:3:\"0.9\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/easy-twitter-feed-widget/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/easy-twitter-feed-widget.0.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/easy-twitter-feed-widget/assets/icon-256x256.png?rev=1025015\";s:2:\"1x\";s:77:\"https://ps.w.org/easy-twitter-feed-widget/assets/icon-128x128.png?rev=1025015\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/easy-twitter-feed-widget/assets/banner-1544x500.png?rev=1025015\";s:2:\"1x\";s:79:\"https://ps.w.org/easy-twitter-feed-widget/assets/banner-772x250.png?rev=1025015\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:43:\"easy-weather-widget/easy-weather-widget.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/easy-weather-widget\";s:4:\"slug\";s:19:\"easy-weather-widget\";s:6:\"plugin\";s:43:\"easy-weather-widget/easy-weather-widget.php\";s:11:\"new_version\";s:5:\"3.2.5\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/easy-weather-widget/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/easy-weather-widget.3.2.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/easy-weather-widget/assets/icon-256x256.png?rev=1794437\";s:2:\"1x\";s:72:\"https://ps.w.org/easy-weather-widget/assets/icon-128x128.png?rev=1794437\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/easy-weather-widget/assets/banner-1544x500.png?rev=1794435\";s:2:\"1x\";s:74:\"https://ps.w.org/easy-weather-widget/assets/banner-772x250.png?rev=1794435\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"2.8\";}s:29:\"easy-wp-smtp/easy-wp-smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/easy-wp-smtp\";s:4:\"slug\";s:12:\"easy-wp-smtp\";s:6:\"plugin\";s:29:\"easy-wp-smtp/easy-wp-smtp.php\";s:11:\"new_version\";s:5:\"1.4.7\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/easy-wp-smtp/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/easy-wp-smtp.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/easy-wp-smtp/assets/icon-128x128.png?rev=1242044\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/easy-wp-smtp/assets/banner-772x250.png?rev=1650323\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2622511\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:21:\"hello-dolly/hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:21:\"hello-dolly/hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:27:\"issuu-panel/issuu-panel.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/issuu-panel\";s:4:\"slug\";s:11:\"issuu-panel\";s:6:\"plugin\";s:27:\"issuu-panel/issuu-panel.php\";s:11:\"new_version\";s:5:\"1.6.8\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/issuu-panel/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/issuu-panel.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:55:\"https://s.w.org/plugins/geopattern-icon/issuu-panel.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:4:\"10.7\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/jetpack.10.7.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=2638128\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2638128\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2638128\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:35:\"responsive-menu/responsive-menu.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/responsive-menu\";s:4:\"slug\";s:15:\"responsive-menu\";s:6:\"plugin\";s:35:\"responsive-menu/responsive-menu.php\";s:11:\"new_version\";s:5:\"4.1.9\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/responsive-menu/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/responsive-menu.4.1.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/responsive-menu/assets/icon-256x256.png?rev=1782326\";s:2:\"1x\";s:68:\"https://ps.w.org/responsive-menu/assets/icon-128x128.png?rev=1782326\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/responsive-menu/assets/banner-772x250.png?rev=1782326\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.6\";}s:69:\"ultimate-responsive-image-slider/ultimate-responsive-image-slider.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:46:\"w.org/plugins/ultimate-responsive-image-slider\";s:4:\"slug\";s:32:\"ultimate-responsive-image-slider\";s:6:\"plugin\";s:69:\"ultimate-responsive-image-slider/ultimate-responsive-image-slider.php\";s:11:\"new_version\";s:5:\"3.5.5\";s:3:\"url\";s:63:\"https://wordpress.org/plugins/ultimate-responsive-image-slider/\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/plugin/ultimate-responsive-image-slider.3.5.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:85:\"https://ps.w.org/ultimate-responsive-image-slider/assets/icon-128x128.gif?rev=2305926\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:87:\"https://ps.w.org/ultimate-responsive-image-slider/assets/banner-772x250.jpg?rev=1787938\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/updraftplus\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:7:\"1.22.11\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/updraftplus.1.22.11.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-256x256.jpg?rev=1686200\";s:2:\"1x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-128x128.jpg?rev=1686200\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/updraftplus/assets/banner-1544x500.png?rev=1686200\";s:2:\"1x\";s:66:\"https://ps.w.org/updraftplus/assets/banner-772x250.png?rev=1686200\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.2\";}s:33:\"widget-context/widget-context.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/widget-context\";s:4:\"slug\";s:14:\"widget-context\";s:6:\"plugin\";s:33:\"widget-context/widget-context.php\";s:11:\"new_version\";s:5:\"1.3.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/widget-context/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/widget-context.1.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/widget-context/assets/icon-256x256.png?rev=1919865\";s:2:\"1x\";s:67:\"https://ps.w.org/widget-context/assets/icon-128x128.png?rev=1919865\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/widget-context/assets/banner-1544x500.png?rev=1919865\";s:2:\"1x\";s:69:\"https://ps.w.org/widget-context/assets/banner-772x250.png?rev=1919865\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:44:\"facebook-pagelike-widget/facebook_widget.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/facebook-pagelike-widget\";s:4:\"slug\";s:24:\"facebook-pagelike-widget\";s:6:\"plugin\";s:44:\"facebook-pagelike-widget/facebook_widget.php\";s:11:\"new_version\";s:3:\"6.1\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/facebook-pagelike-widget/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/facebook-pagelike-widget.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/facebook-pagelike-widget/assets/icon-128x128.png?rev=2079670\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/facebook-pagelike-widget/assets/banner-772x250.png?rev=2571899\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:29:\"widget-logic/widget_logic.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/widget-logic\";s:4:\"slug\";s:12:\"widget-logic\";s:6:\"plugin\";s:29:\"widget-logic/widget_logic.php\";s:11:\"new_version\";s:6:\"5.10.4\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/widget-logic/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/widget-logic.5.10.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/widget-logic/assets/icon-256x256.png?rev=1619621\";s:2:\"1x\";s:65:\"https://ps.w.org/widget-logic/assets/icon-128x128.png?rev=1619621\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/widget-logic/assets/banner-1544x500.jpg?rev=1619643\";s:2:\"1x\";s:67:\"https://ps.w.org/widget-logic/assets/banner-772x250.jpg?rev=1619643\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/widget-logic/assets/banner-1544x500-rtl.jpg?rev=1619621\";s:2:\"1x\";s:71:\"https://ps.w.org/widget-logic/assets/banner-772x250-rtl.jpg?rev=1619621\";}s:8:\"requires\";s:3:\"3.0\";}s:25:\"widget-options/plugin.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/widget-options\";s:4:\"slug\";s:14:\"widget-options\";s:6:\"plugin\";s:25:\"widget-options/plugin.php\";s:11:\"new_version\";s:6:\"3.7.14\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/widget-options/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/widget-options.3.7.14.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/widget-options/assets/icon-256x256.gif?rev=2513739\";s:2:\"1x\";s:67:\"https://ps.w.org/widget-options/assets/icon-128x128.gif?rev=2513739\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/widget-options/assets/banner-1544x500.png?rev=1923981\";s:2:\"1x\";s:69:\"https://ps.w.org/widget-options/assets/banner-772x250.png?rev=1923981\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":10:{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.5.9\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wordfence.7.5.9.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/wordfence/assets/icon-256x256.png?rev=2070855\";s:2:\"1x\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";s:3:\"svg\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102\";s:2:\"1x\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";}s:67:\"wp-author-date-and-meta-remover/wp-author-date-and-meta-remover.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:45:\"w.org/plugins/wp-author-date-and-meta-remover\";s:4:\"slug\";s:31:\"wp-author-date-and-meta-remover\";s:6:\"plugin\";s:67:\"wp-author-date-and-meta-remover/wp-author-date-and-meta-remover.php\";s:11:\"new_version\";s:5:\"1.0.6\";s:3:\"url\";s:62:\"https://wordpress.org/plugins/wp-author-date-and-meta-remover/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/wp-author-date-and-meta-remover.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:83:\"https://ps.w.org/wp-author-date-and-meta-remover/assets/icon-128x128.png?rev=983363\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:86:\"https://ps.w.org/wp-author-date-and-meta-remover/assets/banner-1544x500.png?rev=947673\";s:2:\"1x\";s:85:\"https://ps.w.org/wp-author-date-and-meta-remover/assets/banner-772x250.png?rev=947673\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:22:\"wp-editor/wpeditor.php\";O:8:\"stdClass\":10:{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:5:\"1.2.7\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wp-editor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-editor.1.2.7.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:8:\"requires\";s:3:\"3.9\";}}s:7:\"checked\";a:26:{s:37:\"wd-facebook-feed/facebook-feed-wd.php\";s:5:\"1.2.7\";s:19:\"akismet/akismet.php\";s:5:\"4.2.2\";s:29:\"bizworx-tools/theme-tools.php\";s:3:\"1.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.5.6\";s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";s:5:\"6.3.4\";s:53:\"easy-twitter-feed-widget/easy-twitter-feed-widget.php\";s:3:\"0.9\";s:43:\"easy-weather-widget/easy-weather-widget.php\";s:5:\"3.2.5\";s:29:\"easy-wp-smtp/easy-wp-smtp.php\";s:5:\"1.4.7\";s:23:\"elementor/elementor.php\";s:5:\"3.6.1\";s:31:\"elementor-pro/elementor-pro.php\";s:5:\"3.3.1\";s:9:\"hello.php\";s:5:\"1.7.2\";s:21:\"hello-dolly/hello.php\";s:5:\"1.7.2\";s:27:\"issuu-panel/issuu-panel.php\";s:5:\"1.6.8\";s:19:\"jetpack/jetpack.php\";s:4:\"10.7\";s:39:\"our-team-enhanced/our-team-showcase.php\";s:5:\"4.4.2\";s:35:\"responsive-menu/responsive-menu.php\";s:5:\"4.1.9\";s:24:\"slider-images/Slider.php\";s:5:\"1.4.9\";s:69:\"ultimate-responsive-image-slider/ultimate-responsive-image-slider.php\";s:5:\"3.5.5\";s:27:\"updraftplus/updraftplus.php\";s:7:\"1.22.11\";s:33:\"widget-context/widget-context.php\";s:5:\"1.3.2\";s:44:\"facebook-pagelike-widget/facebook_widget.php\";s:3:\"6.1\";s:29:\"widget-logic/widget_logic.php\";s:6:\"5.10.4\";s:25:\"widget-options/plugin.php\";s:6:\"3.7.14\";s:23:\"wordfence/wordfence.php\";s:5:\"7.5.9\";s:67:\"wp-author-date-and-meta-remover/wp-author-date-and-meta-remover.php\";s:5:\"1.0.6\";s:22:\"wp-editor/wpeditor.php\";s:5:\"1.2.7\";}}','no'),(127395,'_transient_timeout_jetpack_is_single_user','1648297690','no'),(127396,'_transient_jetpack_is_single_user','1','no'),(127473,'_transient_timeout_jetpack_sync_constants_await','1648287486','no'),(127474,'_transient_jetpack_sync_constants_await','1648283886.718','no'),(123446,'jetpack_sync_settings_dedicated_sync_enabled','0','yes'),(126777,'elementor_events_db_version','1.0.0','no'),(127356,'_transient_timeout_jetpack_https_test','1648316518','no'),(127357,'_transient_jetpack_https_test','1','no'),(127358,'_transient_timeout_jetpack_https_test_message','1648316518','no'),(127359,'_transient_jetpack_https_test_message','','no'),(82846,'wpcom_publish_posts_with_markdown','1','yes'),(82852,'jetpack_active_modules','a:1:{i:0;s:21:\"woocommerce-analytics\";}','yes'),(82854,'jetpack_testimonial','0','yes'),(76517,'wfls_last_role_change','1634637933','no'),(73480,'jetpack_sync_settings_sync_via_cron','1','yes'),(73481,'jetpack_sync_settings_max_queue_size','5000','yes'),(73482,'jetpack_sync_settings_max_queue_lag','7200','yes'),(73484,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(73485,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(73486,'jetpack_sync_settings_upload_max_rows','500','yes'),(73487,'jetpack_sync_settings_sync_wait_time','10','yes'),(73488,'jetpack_sync_settings_sync_wait_threshold','10','yes'),(73489,'jetpack_sync_settings_enqueue_wait_time','1','yes'),(73490,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(73491,'jetpack_sync_settings_post_types_blacklist','a:0:{}','yes'),(73495,'jetpack_sync_settings_taxonomies_blacklist','a:0:{}','yes'),(73497,'jetpack_sync_settings_render_filtered_content','0','yes'),(73498,'jetpack_sync_settings_post_meta_whitelist','a:0:{}','yes'),(73500,'jetpack_sync_settings_comment_meta_whitelist','a:0:{}','yes'),(73502,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(73503,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(73504,'jetpack_sync_settings_cron_sync_time_limit','240','yes'),(73505,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(73506,'jetpack_sync_settings_term_relationships_full_sync_item_size','100','yes'),(73507,'jetpack_sync_settings_sync_sender_enabled','1','yes'),(73508,'jetpack_sync_settings_full_sync_sender_enabled','1','yes'),(73509,'jetpack_sync_settings_full_sync_send_duration','9','yes'),(73510,'jetpack_sync_settings_full_sync_limits','a:5:{s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}}','yes'),(73511,'jetpack_sync_settings_checksum_disable','0','yes'),(73531,'jetpack_plugin_api_action_links','a:2:{s:39:\"our-team-enhanced/our-team-showcase.php\";a:2:{s:6:\"Go Pro\";s:55:\"https://smartcatdesign.net/downloads/our-team-showcase/\";s:8:\"Settings\";s:81:\"https://kclgenetics.com/wp-admin/edit.php?post_type=team_member&page=ots-settings\";}s:25:\"widget-options/plugin.php\";a:2:{s:8:\"Settings\";s:84:\"https://kclgenetics.com/wp-admin/options-general.php?page=widgetopts_plugin_settings\";s:7:\"Upgrade\";s:110:\"https://widget-options.com/pricing/?utm_source=upgradebtn&utm_medium=plugins&utm_campaign=widgetoptspluginlink\";}}','yes'),(123442,'_transient_timeout_jetpack_file_data_10.7','1648811064','no'),(123443,'_transient_jetpack_file_data_10.7','a:5:{s:32:\"1e4a28ef3fe675ff9a0480cf101879cb\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:24:\"requires_user_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:12:\"plan_classes\";s:0:\"\";}s:32:\"568683ae399e327797985bb946dd706e\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:24:\"requires_user_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:12:\"plan_classes\";s:0:\"\";}s:32:\"2032024dda2c21b45d57d4a087be0cef\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:24:\"requires_user_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:12:\"plan_classes\";s:0:\"\";}s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:24:\"requires_user_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:12:\"plan_classes\";s:0:\"\";}s:32:\"ae2d7bf89af239c1887a8e764d030b51\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:24:\"requires_user_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:12:\"plan_classes\";s:0:\"\";}}','no'),(96689,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(96716,'wp_force_deactivated_plugins','a:0:{}','yes'),(72837,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:25:\"{{WP_PLUGIN_DIR}}/jetpack\";}','yes'),(96745,'_elementor_pro_api_requests_lock','a:1:{s:11:\"get_version\";i:1648161860;}','yes'),(96746,'elementor_pro_remote_info_api_data_2.10.3','a:2:{s:7:\"timeout\";i:1628074240;s:5:\"value\";s:28038:\"{\"stable_version\":\"3.3.1\",\"last_updated\":\"2021-08-02 07:43:23\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:24546:\\\"<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: &quot;Save &amp; Close &quot;button in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-16<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-16<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor Pro v3.1<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.3.1\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"5.8\",\"elementor_requires\":\"3.0.1\",\"package\":\"http:\\/\\/my.elementor.com\\/edd-sl\\/package_download\\/MTYyODExNzQ0MTpjY2JlMGM5MjNmYTRhYzFhNzRlZjE3Nzc1MDk2MTA4MToxOjI2ZjRiNWFkNTVkMjEzMTM3NmRmNzU5YWFjMDgxOWIxOmh0dHBALy9rY2xnZW5ldGljcy5jb206MA==\",\"download_link\":\"http:\\/\\/my.elementor.com\\/edd-sl\\/package_download\\/MTYyODExNzQ0MTpjY2JlMGM5MjNmYTRhYzFhNzRlZjE3Nzc1MDk2MTA4MToxOjI2ZjRiNWFkNTVkMjEzMTM3NmRmNzU5YWFjMDgxOWIxOmh0dHBALy9rY2xnZW5ldGljcy5jb206MA==\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.3.5\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"5.8\",\"elementor_requires\":\"3.0.1\",\"package\":\"http:\\/\\/my.elementor.com\\/edd-sl\\/previous_download\\/MTYyODExNzQ0MTpjY2JlMGM5MjNmYTRhYzFhNzRlZjE3Nzc1MDk2MTA4MToxOjMuMy41OmVlNDY3MjQ2YTQ0MTMyMjVlMzY1OWExYjU3OTZmMTY2Omh0dHBALy9rY2xnZW5ldGljcy5jb20=\",\"download_link\":\"http:\\/\\/my.elementor.com\\/edd-sl\\/previous_download\\/MTYyODExNzQ0MTpjY2JlMGM5MjNmYTRhYzFhNzRlZjE3Nzc1MDk2MTA4MToxOjMuMy41OmVlNDY3MjQ2YTQ0MTMyMjVlMzY1OWExYjU3OTZmMTY2Omh0dHBALy9rY2xnZW5ldGljcy5jb20=\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/icon.svg\"}},\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor\\/elementor.php\",\"version\":\"3.3.0\",\"operator\":\">=\"}]]}}\";}','yes'),(96780,'_elementor_global_css','a:6:{s:4:\"time\";i:1628033059;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(96881,'_transient_dirsize_cache','a:54:{s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/et_temp\";i:0;s:75:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/elementor/css\";i:42032;s:78:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/elementor/thumbs\";i:9058;s:71:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/elementor\";i:51090;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2021/03\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2021/02\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2021/08\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2021/07\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2021/01\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2021/04\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2021/05\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2021/06\";i:0;s:66:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2021\";i:0;s:80:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/issuu-panel-folder\";i:85;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2017/03\";i:36321900;s:66:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2017\";i:36321900;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2020/03\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2020/09\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2020/12\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2020/11\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2020/02\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2020/08\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2020/07\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2020/01\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2020/04\";i:209766;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2020/05\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2020/06\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2020/10\";i:0;s:66:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2020\";i:209766;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2019/03\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2019/09\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2019/12\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2019/11\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2019/02\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2019/08\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2019/07\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2019/01\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2019/04\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2019/05\";i:5753248;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2019/06\";i:16770542;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2019/10\";i:0;s:66:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2019\";i:22523790;s:75:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/wpcf7_uploads\";i:14;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2018/09\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2018/12\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2018/11\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2018/08\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2018/07\";i:0;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2018/04\";i:57323204;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2018/05\";i:97762375;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2018/06\";i:4744193;s:69:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2018/10\";i:0;s:66:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads/2018\";i:159829772;s:61:\"/home/homeston/public_html/kclgenetics.com/wp-content/uploads\";i:218936417;}','yes'),(96767,'elementor_1_elementor_pro_updater_batch_7a05e5111b9187eb95c09f15','a:6:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:34:\"ElementorPro\\Core\\Upgrade\\Upgrades\";i:1;s:23:\"_v_3_1_0_media_carousel\";}}i:1;a:1:{s:8:\"callback\";a:2:{i:0;s:34:\"ElementorPro\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_v_3_1_0_reviews\";}}i:2;a:1:{s:8:\"callback\";a:2:{i:0;s:34:\"ElementorPro\\Core\\Upgrade\\Upgrades\";i:1;s:29:\"_v_3_1_0_testimonial_carousel\";}}i:3;a:1:{s:8:\"callback\";a:2:{i:0;s:34:\"ElementorPro\\Core\\Upgrade\\Upgrades\";i:1;s:15:\"_v_3_1_0_slides\";}}i:4;a:1:{s:8:\"callback\";a:2:{i:0;s:34:\"ElementorPro\\Core\\Upgrade\\Upgrades\";i:1;s:22:\"_v_3_3_0_nav_menu_icon\";}}i:5;a:1:{s:8:\"callback\";a:2:{i:0;s:34:\"ElementorPro\\Core\\Upgrade\\Upgrades\";i:1;s:26:\"_v_3_3_0_recalc_usage_data\";}}}','no');
/*!40000 ALTER TABLE `wpjj_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_postmeta`
--

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

--
-- Dumping data for table `wpjj_postmeta`
--

LOCK TABLES `wpjj_postmeta` WRITE;
/*!40000 ALTER TABLE `wpjj_postmeta` DISABLE KEYS */;
INSERT INTO `wpjj_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1377,44,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1386,158,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1385,306,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1384,60,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1383,174,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1382,173,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1381,95,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1380,54,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1379,51,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1378,62,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(70,40,'_wp_attached_file','2017/03/logo.gif'),(71,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:227;s:6:\"height\";i:200;s:4:\"file\";s:16:\"2017/03/logo.gif\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a: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:{}}}'),(79,44,'_edit_last','1'),(80,44,'_edit_lock','1586957052:1'),(81,44,'_wp_page_template','default'),(82,44,'_et_pb_post_hide_nav','default'),(83,44,'_et_pb_page_layout','et_right_sidebar'),(84,44,'_et_pb_side_nav','off'),(85,44,'_et_pb_use_builder','on'),(86,44,'_et_pb_ab_bounce_rate_limit','5'),(87,44,'_et_pb_ab_stats_refresh_interval','hourly'),(88,44,'_et_pb_old_content',''),(89,44,'_et_pb_enable_shortcode_tracking',''),(90,44,'_et_pb_custom_css',''),(91,44,'_et_pb_light_text_color','#ffffff'),(92,44,'_et_pb_dark_text_color','#666666'),(93,44,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(94,44,'_et_pb_section_background_color','#ffffff'),(105,51,'_edit_last','1'),(106,51,'_edit_lock','1559774600:1'),(107,52,'_wp_attached_file','2017/03/Professor-Denver-2104.jpg'),(108,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:267;s:4:\"file\";s:33:\"2017/03/Professor-Denver-2104.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Professor-Denver-2104-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Professor-Denver-2104-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Professor-Denver-2104-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Professor-Denver-2104-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Professor-Denver-2104-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(109,51,'_wp_page_template','default'),(110,51,'_et_pb_post_hide_nav','default'),(111,51,'_et_pb_page_layout','et_right_sidebar'),(112,51,'_et_pb_side_nav','off'),(113,51,'_et_pb_use_builder','on'),(114,51,'_et_pb_ab_bounce_rate_limit','5'),(115,51,'_et_pb_ab_stats_refresh_interval','hourly'),(116,51,'_et_pb_old_content',''),(117,51,'_et_pb_enable_shortcode_tracking',''),(118,51,'_et_pb_custom_css',''),(119,51,'_et_pb_light_text_color','#ffffff'),(120,51,'_et_pb_dark_text_color','#666666'),(121,51,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(122,51,'_et_pb_section_background_color','#ffffff'),(123,54,'_edit_last','1'),(124,54,'_edit_lock','1586957577:1'),(125,55,'_wp_attached_file','2017/03/sale.logo_.png'),(126,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2150;s:6:\"height\";i:750;s:4:\"file\";s:22:\"2017/03/sale.logo_.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"sale.logo_-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"sale.logo_-300x105.png\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"sale.logo_-768x268.png\";s:5:\"width\";i:768;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"sale.logo_-1024x357.png\";s:5:\"width\";i:1024;s:6:\"height\";i:357;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"sale.logo_-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"sale.logo_-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"sale.logo_-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"sale.logo_-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:23:\"sale.logo_-1080x377.png\";s:5:\"width\";i:1080;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"sale.logo_-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(127,54,'_wp_page_template','default'),(128,54,'_et_pb_post_hide_nav','default'),(129,54,'_et_pb_page_layout','et_right_sidebar'),(130,54,'_et_pb_side_nav','off'),(131,54,'_et_pb_use_builder','on'),(132,54,'_et_pb_ab_bounce_rate_limit','5'),(133,54,'_et_pb_ab_stats_refresh_interval','hourly'),(134,54,'_et_pb_old_content',''),(135,54,'_et_pb_enable_shortcode_tracking',''),(136,54,'_et_pb_custom_css',''),(137,54,'_et_pb_light_text_color','#ffffff'),(138,54,'_et_pb_dark_text_color','#666666'),(139,54,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(140,54,'_et_pb_section_background_color','#ffffff'),(141,60,'_edit_last','1'),(142,60,'_edit_lock','1559788735:1'),(143,60,'_wp_page_template','default'),(144,60,'_et_pb_post_hide_nav','default'),(145,60,'_et_pb_page_layout','et_right_sidebar'),(146,60,'_et_pb_side_nav','off'),(147,60,'_et_pb_use_builder','on'),(148,60,'_et_pb_ab_bounce_rate_limit','5'),(149,60,'_et_pb_ab_stats_refresh_interval','hourly'),(150,60,'_et_pb_old_content',''),(151,60,'_et_pb_enable_shortcode_tracking',''),(152,60,'_et_pb_custom_css',''),(153,60,'_et_pb_light_text_color','#ffffff'),(154,60,'_et_pb_dark_text_color','#666666'),(155,60,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(156,60,'_et_pb_section_background_color','#ffffff'),(157,62,'_edit_last','1'),(158,62,'_edit_lock','1559785770:1'),(159,62,'_wp_page_template','default'),(160,62,'_et_pb_post_hide_nav','default'),(161,62,'_et_pb_page_layout','et_right_sidebar'),(162,62,'_et_pb_side_nav','off'),(163,62,'_et_pb_use_builder','on'),(164,62,'_et_pb_ab_bounce_rate_limit','5'),(165,62,'_et_pb_ab_stats_refresh_interval','hourly'),(166,62,'_et_pb_old_content',''),(167,62,'_et_pb_enable_shortcode_tracking',''),(168,62,'_et_pb_custom_css',''),(169,62,'_et_pb_light_text_color','#ffffff'),(170,62,'_et_pb_dark_text_color','#666666'),(171,62,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(172,62,'_et_pb_section_background_color','#ffffff'),(173,64,'_menu_item_type','custom'),(174,64,'_menu_item_menu_item_parent','0'),(175,64,'_menu_item_object_id','64'),(176,64,'_menu_item_object','custom'),(177,64,'_menu_item_target',''),(178,64,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(179,64,'_menu_item_xfn',''),(180,64,'_menu_item_url','/'),(221,73,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:28:\"2017/03/JSF-12-Violet-4R.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"JSF-12-Violet-4R-150x150.jpg\";s:5:\"width\";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:\"JSF-12-Violet-4R-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"JSF-12-Violet-4R-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"JSF-12-Violet-4R-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"JSF-12-Violet-4R-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"JSF-12-Violet-4R-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(182,65,'_menu_item_type','post_type'),(183,65,'_menu_item_menu_item_parent','0'),(184,65,'_menu_item_object_id','62'),(185,65,'_menu_item_object','page'),(186,65,'_menu_item_target',''),(187,65,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(188,65,'_menu_item_xfn',''),(189,65,'_menu_item_url',''),(220,73,'_wp_attached_file','2017/03/JSF-12-Violet-4R.jpg'),(191,66,'_menu_item_type','post_type'),(192,66,'_menu_item_menu_item_parent','0'),(193,66,'_menu_item_object_id','60'),(194,66,'_menu_item_object','page'),(195,66,'_menu_item_target',''),(196,66,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(197,66,'_menu_item_xfn',''),(198,66,'_menu_item_url',''),(200,67,'_menu_item_type','post_type'),(201,67,'_menu_item_menu_item_parent','0'),(202,67,'_menu_item_object_id','54'),(203,67,'_menu_item_object','page'),(204,67,'_menu_item_target',''),(205,67,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(206,67,'_menu_item_xfn',''),(207,67,'_menu_item_url',''),(219,72,'_edit_lock','1524368790:1'),(209,68,'_menu_item_type','post_type'),(210,68,'_menu_item_menu_item_parent','0'),(211,68,'_menu_item_object_id','51'),(212,68,'_menu_item_object','page'),(213,68,'_menu_item_target',''),(214,68,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(215,68,'_menu_item_xfn',''),(216,68,'_menu_item_url',''),(218,72,'_edit_last','1'),(222,72,'_thumbnail_id','73'),(224,72,'_et_post_bg_color','#ffffff'),(225,72,'_et_post_bg_layout','light'),(226,72,'_et_pb_show_title','on'),(227,72,'_et_pb_post_hide_nav','default'),(228,72,'_et_pb_page_layout','et_right_sidebar'),(229,72,'_et_pb_side_nav','off'),(230,72,'_et_pb_use_builder','on'),(231,72,'_et_pb_ab_bounce_rate_limit','5'),(232,72,'_et_pb_ab_stats_refresh_interval','hourly'),(233,72,'_et_pb_old_content','<p>[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 388px; width: 832px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"><!-- [et_pb_line_break_holder] --><tbody><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td width=\"%\">&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td align=\"left\" valign=\"middle\">WTK 75A CONTINENTAL 66F {CHB} (P42009650)</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td colspan=\"2\" valign=\"middle\">GHC CHUNK 113L (P43065793)</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td width=\"%\">&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td align=\"left\" valign=\"middle\">GHC MS NANCY RENEE 48A (CAN2483336)</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire:&nbsp;GHC BEAR 12N (P43068831)</strong></span></td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td width=\"%\">&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td align=\"left\" valign=\"middle\">HAROLDSON RAIDER P183 2Z {CHB,HYF} (P21837600)</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td colspan=\"2\" valign=\"middle\">BAR-E-L SYBIL 7D (P43068830)</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td width=\"%\">&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td align=\"left\" valign=\"middle\">KAL MAJISTICK 28R 2W (CAN2321967)</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td width=\"%\">&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td align=\"left\" valign=\"middle\">RLOA R271 DYNASTY ET 37U (P21837682)</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td colspan=\"2\" valign=\"middle\">JSF 37 271 DEVO 23C {SOD} (P23913360)</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td width=\"%\">&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td align=\"left\" valign=\"middle\">JSF 183 VICTORIA 7A (CAN2539130)</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam:&nbsp;JSF 23 VIOLET 6M (P43068841)</strong></span></td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td width=\"%\">&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td align=\"left\" valign=\"middle\">TEE-JAY 2F HABANERO ET 7H (P43068838)</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td colspan=\"2\" valign=\"middle\">JSF 7H RADIANT LADY 50K (P43068840)</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td width=\"%\">&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td>&nbsp;</td><!-- [et_pb_line_break_holder] --><td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td><!-- [et_pb_line_break_holder] --><td align=\"left\" valign=\"middle\">JSF 23 RADIANT LADY 63F (P43068839)</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --></tbody><!-- [et_pb_line_break_holder] --></table><!-- [et_pb_line_break_holder] --><p>&nbsp;</p><!-- [et_pb_line_break_holder] --><table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"><!-- [et_pb_line_break_holder] --><tbody><!-- [et_pb_line_break_holder] --><tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS&nbsp;</th></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5B2325232E25\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&amp;<br />Growth</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.1</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.2</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+43</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+67</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+17</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+39</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-3.3</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+84</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.95</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.96</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.3</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.014</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.09</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.12</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 13</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 20</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --><tr><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.13</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.47</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.38</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.35</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.30</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.13</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.13</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.13</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.09</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.12</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.10</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td><!-- [et_pb_line_break_holder] --><td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td><!-- [et_pb_line_break_holder] --></tr><!-- [et_pb_line_break_holder] --></tbody><!-- [et_pb_line_break_holder] --></table>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]</p>'),(246,79,'_edit_lock','1524368785:1'),(247,80,'_wp_attached_file','2017/03/GO-MS-7195-ADVANCE-W9.jpg'),(248,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:33:\"2017/03/GO-MS-7195-ADVANCE-W9.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"GO-MS-7195-ADVANCE-W9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"GO-MS-7195-ADVANCE-W9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"GO-MS-7195-ADVANCE-W9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"GO-MS-7195-ADVANCE-W9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"GO-MS-7195-ADVANCE-W9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"GO-MS-7195-ADVANCE-W9-400x400.jpg\";s:5:\"width\";i:400;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,79,'_thumbnail_id','80'),(268,84,'_wp_attached_file','2017/03/TH-805H-743-PRIMROSE-401W.jpg'),(251,79,'_et_post_bg_color','#ffffff'),(252,79,'_et_post_bg_layout','light'),(253,79,'_et_pb_show_title','on'),(254,79,'_et_pb_post_hide_nav','default'),(255,79,'_et_pb_page_layout','et_right_sidebar'),(256,79,'_et_pb_side_nav','off'),(257,79,'_et_pb_use_builder','on'),(258,79,'_et_pb_ab_bounce_rate_limit','5'),(259,79,'_et_pb_ab_stats_refresh_interval','hourly'),(260,79,'_et_pb_old_content',''),(261,79,'_et_pb_enable_shortcode_tracking',''),(262,79,'_et_pb_custom_css',''),(263,79,'_et_pb_light_text_color','#ffffff'),(264,79,'_et_pb_dark_text_color','#666666'),(265,79,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(266,79,'_et_pb_section_background_color','#ffffff'),(269,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:37:\"2017/03/TH-805H-743-PRIMROSE-401W.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"TH-805H-743-PRIMROSE-401W-150x150.jpg\";s:5:\"width\";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:\"TH-805H-743-PRIMROSE-401W-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"TH-805H-743-PRIMROSE-401W-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"TH-805H-743-PRIMROSE-401W-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"TH-805H-743-PRIMROSE-401W-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"TH-805H-743-PRIMROSE-401W-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(234,72,'_et_pb_enable_shortcode_tracking',''),(235,72,'_et_pb_custom_css',''),(236,72,'_et_pb_light_text_color','#ffffff'),(237,72,'_et_pb_dark_text_color','#666666'),(238,72,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(239,72,'_et_pb_section_background_color','#ffffff'),(245,79,'_edit_last','1'),(270,83,'_edit_last','1'),(271,83,'_thumbnail_id','84'),(291,87,'_edit_last','1'),(273,83,'_et_post_bg_color','#ffffff'),(274,83,'_et_post_bg_layout','light'),(275,83,'_et_pb_show_title','on'),(276,83,'_et_pb_post_hide_nav','default'),(277,83,'_et_pb_page_layout','et_right_sidebar'),(278,83,'_et_pb_side_nav','off'),(279,83,'_et_pb_use_builder','on'),(280,83,'_et_pb_ab_bounce_rate_limit','5'),(281,83,'_et_pb_ab_stats_refresh_interval','hourly'),(282,83,'_et_pb_old_content',''),(283,83,'_et_pb_enable_shortcode_tracking',''),(284,83,'_et_pb_custom_css',''),(285,83,'_et_pb_light_text_color','#ffffff'),(286,83,'_et_pb_dark_text_color','#666666'),(287,83,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(288,83,'_et_pb_section_background_color','#ffffff'),(289,83,'_edit_lock','1524368788:1'),(292,87,'_edit_lock','1524369076:1'),(293,88,'_wp_attached_file','2017/03/KCL-29R-Mary-Anne-23G-5R-ET.jpg'),(294,88,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:39:\"2017/03/KCL-29R-Mary-Anne-23G-5R-ET.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"KCL-29R-Mary-Anne-23G-5R-ET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"KCL-29R-Mary-Anne-23G-5R-ET-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"KCL-29R-Mary-Anne-23G-5R-ET-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"KCL-29R-Mary-Anne-23G-5R-ET-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"KCL-29R-Mary-Anne-23G-5R-ET-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"KCL-29R-Mary-Anne-23G-5R-ET-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(295,87,'_thumbnail_id','88'),(314,91,'_edit_last','1'),(297,87,'_et_post_bg_color','#ffffff'),(298,87,'_et_post_bg_layout','light'),(299,87,'_et_pb_show_title','on'),(300,87,'_et_pb_post_hide_nav','default'),(301,87,'_et_pb_page_layout','et_right_sidebar'),(302,87,'_et_pb_side_nav','off'),(303,87,'_et_pb_use_builder','on'),(304,87,'_et_pb_ab_bounce_rate_limit','5'),(305,87,'_et_pb_ab_stats_refresh_interval','hourly'),(306,87,'_et_pb_old_content',''),(307,87,'_et_pb_enable_shortcode_tracking',''),(308,87,'_et_pb_custom_css',''),(309,87,'_et_pb_light_text_color','#ffffff'),(310,87,'_et_pb_dark_text_color','#666666'),(311,87,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(312,87,'_et_pb_section_background_color','#ffffff'),(315,91,'_edit_lock','1524368274:1'),(316,92,'_wp_attached_file','2017/03/KB-SULTANA-8051U.jpg'),(317,92,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:28:\"2017/03/KB-SULTANA-8051U.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"KB-SULTANA-8051U-150x150.jpg\";s:5:\"width\";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:\"KB-SULTANA-8051U-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"KB-SULTANA-8051U-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"KB-SULTANA-8051U-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"KB-SULTANA-8051U-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"KB-SULTANA-8051U-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(318,91,'_thumbnail_id','92'),(337,95,'_edit_last','1'),(320,91,'_et_post_bg_color','#ffffff'),(321,91,'_et_post_bg_layout','light'),(322,91,'_et_pb_show_title','on'),(323,91,'_et_pb_post_hide_nav','default'),(324,91,'_et_pb_page_layout','et_right_sidebar'),(325,91,'_et_pb_side_nav','off'),(326,91,'_et_pb_use_builder','on'),(327,91,'_et_pb_ab_bounce_rate_limit','5'),(328,91,'_et_pb_ab_stats_refresh_interval','hourly'),(329,91,'_et_pb_old_content',''),(330,91,'_et_pb_enable_shortcode_tracking',''),(331,91,'_et_pb_custom_css',''),(332,91,'_et_pb_light_text_color','#ffffff'),(333,91,'_et_pb_dark_text_color','#666666'),(334,91,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(335,91,'_et_pb_section_background_color','#ffffff'),(338,95,'_edit_lock','1524368791:1'),(339,96,'_wp_attached_file','2017/03/KB-SWEET-SALLY-5109.jpg'),(340,96,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:875;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2017/03/KB-SWEET-SALLY-5109.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"KB-SWEET-SALLY-5109-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"KB-SWEET-SALLY-5109-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"KB-SWEET-SALLY-5109-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"KB-SWEET-SALLY-5109-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"KB-SWEET-SALLY-5109-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"KB-SWEET-SALLY-5109-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"KB-SWEET-SALLY-5109-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(341,95,'_thumbnail_id','96'),(360,99,'_edit_last','1'),(343,95,'_et_post_bg_color','#ffffff'),(344,95,'_et_post_bg_layout','light'),(345,95,'_et_pb_show_title','on'),(346,95,'_et_pb_post_hide_nav','default'),(347,95,'_et_pb_page_layout','et_right_sidebar'),(348,95,'_et_pb_side_nav','off'),(349,95,'_et_pb_use_builder','on'),(350,95,'_et_pb_ab_bounce_rate_limit','5'),(351,95,'_et_pb_ab_stats_refresh_interval','hourly'),(352,95,'_et_pb_old_content',''),(353,95,'_et_pb_enable_shortcode_tracking',''),(354,95,'_et_pb_custom_css',''),(355,95,'_et_pb_light_text_color','#ffffff'),(356,95,'_et_pb_dark_text_color','#666666'),(357,95,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(358,95,'_et_pb_section_background_color','#ffffff'),(379,101,'_wp_attached_file','2017/03/TH-122-71I-DOMINETTE-511X-ET.jpg'),(362,99,'_et_post_bg_color','#ffffff'),(363,99,'_et_post_bg_layout','light'),(364,99,'_et_pb_show_title','on'),(365,99,'_et_pb_post_hide_nav','default'),(366,99,'_et_pb_page_layout','et_right_sidebar'),(367,99,'_et_pb_side_nav','off'),(368,99,'_et_pb_use_builder','on'),(369,99,'_et_pb_ab_bounce_rate_limit','5'),(370,99,'_et_pb_ab_stats_refresh_interval','hourly'),(371,99,'_et_pb_old_content',''),(372,99,'_et_pb_enable_shortcode_tracking',''),(373,99,'_et_pb_custom_css',''),(374,99,'_et_pb_light_text_color','#ffffff'),(375,99,'_et_pb_dark_text_color','#666666'),(376,99,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(377,99,'_et_pb_section_background_color','#ffffff'),(378,99,'_edit_lock','1524368784:1'),(380,101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:40:\"2017/03/TH-122-71I-DOMINETTE-511X-ET.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"TH-122-71I-DOMINETTE-511X-ET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"TH-122-71I-DOMINETTE-511X-ET-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"TH-122-71I-DOMINETTE-511X-ET-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"TH-122-71I-DOMINETTE-511X-ET-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"TH-122-71I-DOMINETTE-511X-ET-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"TH-122-71I-DOMINETTE-511X-ET-400x400.jpg\";s:5:\"width\";i:400;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,99,'_thumbnail_id','101'),(384,104,'_edit_last','1'),(385,104,'_edit_lock','1524368787:1'),(386,105,'_wp_attached_file','2017/03/GHC-MISS-CARLA-ET-52N.jpg'),(387,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:875;s:6:\"height\";i:525;s:4:\"file\";s:33:\"2017/03/GHC-MISS-CARLA-ET-52N.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"GHC-MISS-CARLA-ET-52N-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"GHC-MISS-CARLA-ET-52N-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"GHC-MISS-CARLA-ET-52N-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"GHC-MISS-CARLA-ET-52N-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"GHC-MISS-CARLA-ET-52N-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"GHC-MISS-CARLA-ET-52N-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"GHC-MISS-CARLA-ET-52N-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(388,104,'_thumbnail_id','105'),(407,109,'_edit_last','1'),(390,104,'_et_post_bg_color','#ffffff'),(391,104,'_et_post_bg_layout','light'),(392,104,'_et_pb_show_title','on'),(393,104,'_et_pb_post_hide_nav','default'),(394,104,'_et_pb_page_layout','et_right_sidebar'),(395,104,'_et_pb_side_nav','off'),(396,104,'_et_pb_use_builder','on'),(397,104,'_et_pb_ab_bounce_rate_limit','5'),(398,104,'_et_pb_ab_stats_refresh_interval','hourly'),(399,104,'_et_pb_old_content',''),(400,104,'_et_pb_enable_shortcode_tracking',''),(401,104,'_et_pb_custom_css',''),(402,104,'_et_pb_light_text_color','#ffffff'),(403,104,'_et_pb_dark_text_color','#666666'),(404,104,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(405,104,'_et_pb_section_background_color','#ffffff'),(408,109,'_edit_lock','1524368773:1'),(409,110,'_wp_attached_file','2017/03/KCL-8006-BONISSA-65K.jpg'),(410,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:32:\"2017/03/KCL-8006-BONISSA-65K.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"KCL-8006-BONISSA-65K-150x150.jpg\";s:5:\"width\";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:\"KCL-8006-BONISSA-65K-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"KCL-8006-BONISSA-65K-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"KCL-8006-BONISSA-65K-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"KCL-8006-BONISSA-65K-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"KCL-8006-BONISSA-65K-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(411,109,'_thumbnail_id','110'),(429,113,'_wp_attached_file','2017/03/KCL-2013-BONISSA-65K-75R.jpg'),(413,109,'_et_post_bg_color','#ffffff'),(414,109,'_et_post_bg_layout','light'),(415,109,'_et_pb_show_title','on'),(416,109,'_et_pb_post_hide_nav','default'),(417,109,'_et_pb_page_layout','et_right_sidebar'),(418,109,'_et_pb_side_nav','off'),(419,109,'_et_pb_use_builder','on'),(420,109,'_et_pb_ab_bounce_rate_limit','5'),(421,109,'_et_pb_ab_stats_refresh_interval','hourly'),(422,109,'_et_pb_old_content',''),(423,109,'_et_pb_enable_shortcode_tracking',''),(424,109,'_et_pb_custom_css',''),(425,109,'_et_pb_light_text_color','#ffffff'),(426,109,'_et_pb_dark_text_color','#666666'),(427,109,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(428,109,'_et_pb_section_background_color','#ffffff'),(430,113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:36:\"2017/03/KCL-2013-BONISSA-65K-75R.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"KCL-2013-BONISSA-65K-75R-150x150.jpg\";s:5:\"width\";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:\"KCL-2013-BONISSA-65K-75R-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"KCL-2013-BONISSA-65K-75R-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"KCL-2013-BONISSA-65K-75R-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"KCL-2013-BONISSA-65K-75R-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"KCL-2013-BONISSA-65K-75R-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(431,112,'_edit_last','1'),(432,112,'_thumbnail_id','113'),(451,116,'_edit_last','1'),(434,112,'_et_post_bg_color','#ffffff'),(435,112,'_et_post_bg_layout','light'),(436,112,'_et_pb_show_title','on'),(437,112,'_et_pb_post_hide_nav','default'),(438,112,'_et_pb_page_layout','et_right_sidebar'),(439,112,'_et_pb_side_nav','off'),(440,112,'_et_pb_use_builder','on'),(441,112,'_et_pb_ab_bounce_rate_limit','5'),(442,112,'_et_pb_ab_stats_refresh_interval','hourly'),(443,112,'_et_pb_old_content',''),(444,112,'_et_pb_enable_shortcode_tracking',''),(445,112,'_et_pb_custom_css',''),(446,112,'_et_pb_light_text_color','#ffffff'),(447,112,'_et_pb_dark_text_color','#666666'),(448,112,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(449,112,'_et_pb_section_background_color','#ffffff'),(450,112,'_edit_lock','1488835866:1'),(452,116,'_edit_lock','1524369073:1'),(453,117,'_wp_attached_file','2017/03/KCL-4002-BONISSA-65K-92S-ET.jpg'),(454,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1399;s:6:\"height\";i:750;s:4:\"file\";s:39:\"2017/03/KCL-4002-BONISSA-65K-92S-ET.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"KCL-4002-BONISSA-65K-92S-ET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"KCL-4002-BONISSA-65K-92S-ET-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"KCL-4002-BONISSA-65K-92S-ET-768x412.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"KCL-4002-BONISSA-65K-92S-ET-1024x549.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"KCL-4002-BONISSA-65K-92S-ET-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"KCL-4002-BONISSA-65K-92S-ET-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"KCL-4002-BONISSA-65K-92S-ET-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"KCL-4002-BONISSA-65K-92S-ET-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"KCL-4002-BONISSA-65K-92S-ET-1080x579.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"KCL-4002-BONISSA-65K-92S-ET-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(455,116,'_thumbnail_id','117'),(474,121,'_wp_attached_file','2017/03/KCL-3T-BONISSA-71S-114W-ET.jpg'),(457,116,'_et_post_bg_color','#ffffff'),(458,116,'_et_post_bg_layout','light'),(459,116,'_et_pb_show_title','on'),(460,116,'_et_pb_post_hide_nav','default'),(461,116,'_et_pb_page_layout','et_right_sidebar'),(462,116,'_et_pb_side_nav','off'),(463,116,'_et_pb_use_builder','on'),(464,116,'_et_pb_ab_bounce_rate_limit','5'),(465,116,'_et_pb_ab_stats_refresh_interval','hourly'),(466,116,'_et_pb_old_content',''),(467,116,'_et_pb_enable_shortcode_tracking',''),(468,116,'_et_pb_custom_css',''),(469,116,'_et_pb_light_text_color','#ffffff'),(470,116,'_et_pb_dark_text_color','#666666'),(471,116,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(472,116,'_et_pb_section_background_color','#ffffff'),(475,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:38:\"2017/03/KCL-3T-BONISSA-71S-114W-ET.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"KCL-3T-BONISSA-71S-114W-ET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"KCL-3T-BONISSA-71S-114W-ET-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"KCL-3T-BONISSA-71S-114W-ET-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"KCL-3T-BONISSA-71S-114W-ET-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"KCL-3T-BONISSA-71S-114W-ET-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"KCL-3T-BONISSA-71S-114W-ET-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(476,120,'_edit_last','1'),(477,120,'_thumbnail_id','121'),(496,124,'_wp_attached_file','2017/03/dam-110W.jpg'),(479,120,'_et_post_bg_color','#ffffff'),(480,120,'_et_post_bg_layout','light'),(481,120,'_et_pb_show_title','on'),(482,120,'_et_pb_post_hide_nav','default'),(483,120,'_et_pb_page_layout','et_right_sidebar'),(484,120,'_et_pb_side_nav','off'),(485,120,'_et_pb_use_builder','on'),(486,120,'_et_pb_ab_bounce_rate_limit','5'),(487,120,'_et_pb_ab_stats_refresh_interval','hourly'),(488,120,'_et_pb_old_content',''),(489,120,'_et_pb_enable_shortcode_tracking',''),(490,120,'_et_pb_custom_css',''),(491,120,'_et_pb_light_text_color','#ffffff'),(492,120,'_et_pb_dark_text_color','#666666'),(493,120,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(494,120,'_et_pb_section_background_color','#ffffff'),(495,120,'_edit_lock','1524368778:1'),(497,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:20:\"2017/03/dam-110W.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"dam-110W-150x150.jpg\";s:5:\"width\";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:\"dam-110W-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:{}}}'),(498,125,'_wp_attached_file','2017/03/KCL-S01-BONISSA-65K-110W-ET.jpg'),(499,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:39:\"2017/03/KCL-S01-BONISSA-65K-110W-ET.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"KCL-S01-BONISSA-65K-110W-ET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"KCL-S01-BONISSA-65K-110W-ET-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"KCL-S01-BONISSA-65K-110W-ET-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"KCL-S01-BONISSA-65K-110W-ET-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"KCL-S01-BONISSA-65K-110W-ET-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"KCL-S01-BONISSA-65K-110W-ET-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(500,123,'_edit_last','1'),(501,123,'_thumbnail_id','125'),(520,127,'_edit_last','1'),(503,123,'_et_post_bg_color','#ffffff'),(504,123,'_et_post_bg_layout','light'),(505,123,'_et_pb_show_title','on'),(506,123,'_et_pb_post_hide_nav','default'),(507,123,'_et_pb_page_layout','et_right_sidebar'),(508,123,'_et_pb_side_nav','off'),(509,123,'_et_pb_use_builder','on'),(510,123,'_et_pb_ab_bounce_rate_limit','5'),(511,123,'_et_pb_ab_stats_refresh_interval','hourly'),(512,123,'_et_pb_old_content',''),(513,123,'_et_pb_enable_shortcode_tracking',''),(514,123,'_et_pb_custom_css',''),(515,123,'_et_pb_light_text_color','#ffffff'),(516,123,'_et_pb_dark_text_color','#666666'),(517,123,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(518,123,'_et_pb_section_background_color','#ffffff'),(519,123,'_edit_lock','1524368775:1'),(539,129,'_edit_last','1'),(522,127,'_et_post_bg_color','#ffffff'),(523,127,'_et_post_bg_layout','light'),(524,127,'_et_pb_show_title','on'),(525,127,'_et_pb_post_hide_nav','default'),(526,127,'_et_pb_page_layout','et_right_sidebar'),(527,127,'_et_pb_side_nav','off'),(528,127,'_et_pb_use_builder','on'),(529,127,'_et_pb_ab_bounce_rate_limit','5'),(530,127,'_et_pb_ab_stats_refresh_interval','hourly'),(531,127,'_et_pb_old_content',''),(532,127,'_et_pb_enable_shortcode_tracking',''),(533,127,'_et_pb_custom_css',''),(534,127,'_et_pb_light_text_color','#ffffff'),(535,127,'_et_pb_dark_text_color','#666666'),(536,127,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(537,127,'_et_pb_section_background_color','#ffffff'),(538,127,'_edit_lock','1488557943:1'),(540,129,'_edit_lock','1524368774:1'),(541,130,'_wp_attached_file','2017/03/KCL-346R-BONISSA-50N-9U-ET.jpg'),(542,130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:38:\"2017/03/KCL-346R-BONISSA-50N-9U-ET.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"KCL-346R-BONISSA-50N-9U-ET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"KCL-346R-BONISSA-50N-9U-ET-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"KCL-346R-BONISSA-50N-9U-ET-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"KCL-346R-BONISSA-50N-9U-ET-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"KCL-346R-BONISSA-50N-9U-ET-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"KCL-346R-BONISSA-50N-9U-ET-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(543,129,'_thumbnail_id','130'),(561,132,'_edit_last','1'),(545,129,'_et_post_bg_color','#ffffff'),(546,129,'_et_post_bg_layout','light'),(547,129,'_et_pb_show_title','on'),(548,129,'_et_pb_post_hide_nav','default'),(549,129,'_et_pb_page_layout','et_right_sidebar'),(550,129,'_et_pb_side_nav','off'),(551,129,'_et_pb_use_builder','on'),(552,129,'_et_pb_ab_bounce_rate_limit','5'),(553,129,'_et_pb_ab_stats_refresh_interval','hourly'),(554,129,'_et_pb_old_content',''),(555,129,'_et_pb_enable_shortcode_tracking',''),(556,129,'_et_pb_custom_css',''),(557,129,'_et_pb_light_text_color','#ffffff'),(558,129,'_et_pb_dark_text_color','#666666'),(559,129,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(560,129,'_et_pb_section_background_color','#ffffff'),(562,132,'_edit_lock','1488835542:1'),(563,133,'_wp_attached_file','2017/03/KCL-533-FLYING-EXPECTATION-ET.jpg'),(564,133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:41:\"2017/03/KCL-533-FLYING-EXPECTATION-ET.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"KCL-533-FLYING-EXPECTATION-ET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"KCL-533-FLYING-EXPECTATION-ET-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"KCL-533-FLYING-EXPECTATION-ET-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"KCL-533-FLYING-EXPECTATION-ET-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"KCL-533-FLYING-EXPECTATION-ET-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"KCL-533-FLYING-EXPECTATION-ET-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(565,134,'_wp_attached_file','2017/03/dam2.jpg'),(566,134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:16:\"2017/03/dam2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dam2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"dam2-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:{}}}'),(567,132,'_thumbnail_id','133'),(585,137,'_wp_attached_file','2017/03/GHC-MISS-CARLA-35J.jpg'),(569,132,'_et_post_bg_color','#ffffff'),(570,132,'_et_post_bg_layout','light'),(571,132,'_et_pb_show_title','on'),(572,132,'_et_pb_post_hide_nav','default'),(573,132,'_et_pb_page_layout','et_right_sidebar'),(574,132,'_et_pb_side_nav','off'),(575,132,'_et_pb_use_builder','on'),(576,132,'_et_pb_ab_bounce_rate_limit','5'),(577,132,'_et_pb_ab_stats_refresh_interval','hourly'),(578,132,'_et_pb_old_content',''),(579,132,'_et_pb_enable_shortcode_tracking',''),(580,132,'_et_pb_custom_css',''),(581,132,'_et_pb_light_text_color','#ffffff'),(582,132,'_et_pb_dark_text_color','#666666'),(583,132,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(584,132,'_et_pb_section_background_color','#ffffff'),(586,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1399;s:6:\"height\";i:750;s:4:\"file\";s:30:\"2017/03/GHC-MISS-CARLA-35J.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"GHC-MISS-CARLA-35J-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"GHC-MISS-CARLA-35J-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"GHC-MISS-CARLA-35J-768x412.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"GHC-MISS-CARLA-35J-1024x549.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"GHC-MISS-CARLA-35J-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"GHC-MISS-CARLA-35J-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"GHC-MISS-CARLA-35J-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"GHC-MISS-CARLA-35J-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"GHC-MISS-CARLA-35J-1080x579.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"GHC-MISS-CARLA-35J-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(587,136,'_edit_last','1'),(588,136,'_thumbnail_id','137'),(607,140,'_wp_attached_file','2017/03/STAR-KCL-5L-CARLITA-28U.jpg'),(590,136,'_et_post_bg_color','#ffffff'),(591,136,'_et_post_bg_layout','light'),(592,136,'_et_pb_show_title','on'),(593,136,'_et_pb_post_hide_nav','default'),(594,136,'_et_pb_page_layout','et_right_sidebar'),(595,136,'_et_pb_side_nav','off'),(596,136,'_et_pb_use_builder','on'),(597,136,'_et_pb_ab_bounce_rate_limit','5'),(598,136,'_et_pb_ab_stats_refresh_interval','hourly'),(599,136,'_et_pb_old_content',''),(600,136,'_et_pb_enable_shortcode_tracking',''),(601,136,'_et_pb_custom_css',''),(602,136,'_et_pb_light_text_color','#ffffff'),(603,136,'_et_pb_dark_text_color','#666666'),(604,136,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(605,136,'_et_pb_section_background_color','#ffffff'),(606,136,'_edit_lock','1488835623:1'),(608,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:35:\"2017/03/STAR-KCL-5L-CARLITA-28U.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"STAR-KCL-5L-CARLITA-28U-150x150.jpg\";s:5:\"width\";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:\"STAR-KCL-5L-CARLITA-28U-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"STAR-KCL-5L-CARLITA-28U-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"STAR-KCL-5L-CARLITA-28U-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"STAR-KCL-5L-CARLITA-28U-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"STAR-KCL-5L-CARLITA-28U-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(609,139,'_edit_last','1'),(610,139,'_thumbnail_id','140'),(629,143,'_wp_attached_file','2017/03/KCL-122L-CARLITA-35J-115X.jpg'),(612,139,'_et_post_bg_color','#ffffff'),(613,139,'_et_post_bg_layout','light'),(614,139,'_et_pb_show_title','on'),(615,139,'_et_pb_post_hide_nav','default'),(616,139,'_et_pb_page_layout','et_right_sidebar'),(617,139,'_et_pb_side_nav','off'),(618,139,'_et_pb_use_builder','on'),(619,139,'_et_pb_ab_bounce_rate_limit','5'),(620,139,'_et_pb_ab_stats_refresh_interval','hourly'),(621,139,'_et_pb_old_content',''),(622,139,'_et_pb_enable_shortcode_tracking',''),(623,139,'_et_pb_custom_css',''),(624,139,'_et_pb_light_text_color','#ffffff'),(625,139,'_et_pb_dark_text_color','#666666'),(626,139,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(627,139,'_et_pb_section_background_color','#ffffff'),(628,139,'_edit_lock','1524368788:1'),(630,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:37:\"2017/03/KCL-122L-CARLITA-35J-115X.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"KCL-122L-CARLITA-35J-115X-150x150.jpg\";s:5:\"width\";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:\"KCL-122L-CARLITA-35J-115X-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"KCL-122L-CARLITA-35J-115X-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"KCL-122L-CARLITA-35J-115X-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"KCL-122L-CARLITA-35J-115X-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"KCL-122L-CARLITA-35J-115X-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(631,142,'_edit_last','1'),(632,142,'_edit_lock','1524368786:1'),(633,142,'_thumbnail_id','143'),(651,146,'_wp_attached_file','2017/03/GERBER-8020-ROSY-LANE-308N.jpg'),(635,142,'_et_post_bg_color','#ffffff'),(636,142,'_et_post_bg_layout','light'),(637,142,'_et_pb_show_title','on'),(638,142,'_et_pb_post_hide_nav','default'),(639,142,'_et_pb_page_layout','et_right_sidebar'),(640,142,'_et_pb_side_nav','off'),(641,142,'_et_pb_use_builder','on'),(642,142,'_et_pb_ab_bounce_rate_limit','5'),(643,142,'_et_pb_ab_stats_refresh_interval','hourly'),(644,142,'_et_pb_old_content',''),(645,142,'_et_pb_enable_shortcode_tracking',''),(646,142,'_et_pb_custom_css',''),(647,142,'_et_pb_light_text_color','#ffffff'),(648,142,'_et_pb_dark_text_color','#666666'),(649,142,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(650,142,'_et_pb_section_background_color','#ffffff'),(652,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:38:\"2017/03/GERBER-8020-ROSY-LANE-308N.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"GERBER-8020-ROSY-LANE-308N-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"GERBER-8020-ROSY-LANE-308N-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"GERBER-8020-ROSY-LANE-308N-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"GERBER-8020-ROSY-LANE-308N-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"GERBER-8020-ROSY-LANE-308N-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"GERBER-8020-ROSY-LANE-308N-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(653,145,'_edit_last','1'),(654,145,'_thumbnail_id','146'),(673,149,'_wp_attached_file','2017/03/KCL-11X-ROSIE-LANE-308N-4A.jpg'),(656,145,'_et_post_bg_color','#ffffff'),(657,145,'_et_post_bg_layout','light'),(658,145,'_et_pb_show_title','on'),(659,145,'_et_pb_post_hide_nav','default'),(660,145,'_et_pb_page_layout','et_right_sidebar'),(661,145,'_et_pb_side_nav','off'),(662,145,'_et_pb_use_builder','on'),(663,145,'_et_pb_ab_bounce_rate_limit','5'),(664,145,'_et_pb_ab_stats_refresh_interval','hourly'),(665,145,'_et_pb_old_content',''),(666,145,'_et_pb_enable_shortcode_tracking',''),(667,145,'_et_pb_custom_css',''),(668,145,'_et_pb_light_text_color','#ffffff'),(669,145,'_et_pb_dark_text_color','#666666'),(670,145,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(671,145,'_et_pb_section_background_color','#ffffff'),(672,145,'_edit_lock','1525214946:1'),(674,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:38:\"2017/03/KCL-11X-ROSIE-LANE-308N-4A.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"KCL-11X-ROSIE-LANE-308N-4A-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"KCL-11X-ROSIE-LANE-308N-4A-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"KCL-11X-ROSIE-LANE-308N-4A-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"KCL-11X-ROSIE-LANE-308N-4A-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"KCL-11X-ROSIE-LANE-308N-4A-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"KCL-11X-ROSIE-LANE-308N-4A-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(675,148,'_edit_last','1'),(676,148,'_thumbnail_id','149'),(695,152,'_wp_attached_file','2017/03/ZF-P606-MISS-VICKY-Z488.jpg'),(678,148,'_et_post_bg_color','#ffffff'),(679,148,'_et_post_bg_layout','light'),(680,148,'_et_pb_show_title','on'),(681,148,'_et_pb_post_hide_nav','default'),(682,148,'_et_pb_page_layout','et_right_sidebar'),(683,148,'_et_pb_side_nav','off'),(684,148,'_et_pb_use_builder','on'),(685,148,'_et_pb_ab_bounce_rate_limit','5'),(686,148,'_et_pb_ab_stats_refresh_interval','hourly'),(687,148,'_et_pb_old_content',''),(688,148,'_et_pb_enable_shortcode_tracking',''),(689,148,'_et_pb_custom_css',''),(690,148,'_et_pb_light_text_color','#ffffff'),(691,148,'_et_pb_dark_text_color','#666666'),(692,148,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(693,148,'_et_pb_section_background_color','#ffffff'),(694,148,'_edit_lock','1525219726:1'),(696,152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:35:\"2017/03/ZF-P606-MISS-VICKY-Z488.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"ZF-P606-MISS-VICKY-Z488-150x150.jpg\";s:5:\"width\";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:\"ZF-P606-MISS-VICKY-Z488-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"ZF-P606-MISS-VICKY-Z488-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"ZF-P606-MISS-VICKY-Z488-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"ZF-P606-MISS-VICKY-Z488-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"ZF-P606-MISS-VICKY-Z488-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(697,151,'_edit_last','1'),(698,151,'_edit_lock','1524349979:1'),(699,151,'_thumbnail_id','152'),(717,127,'_thumbnail_id','113'),(701,151,'_et_post_bg_color','#ffffff'),(702,151,'_et_post_bg_layout','light'),(703,151,'_et_pb_show_title','on'),(704,151,'_et_pb_post_hide_nav','default'),(705,151,'_et_pb_page_layout','et_right_sidebar'),(706,151,'_et_pb_side_nav','off'),(707,151,'_et_pb_use_builder','on'),(708,151,'_et_pb_ab_bounce_rate_limit','5'),(709,151,'_et_pb_ab_stats_refresh_interval','hourly'),(710,151,'_et_pb_old_content',''),(711,151,'_et_pb_enable_shortcode_tracking',''),(712,151,'_et_pb_custom_css',''),(713,151,'_et_pb_light_text_color','#ffffff'),(714,151,'_et_pb_dark_text_color','#666666'),(715,151,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(716,151,'_et_pb_section_background_color','#ffffff'),(719,159,'_wp_attached_file','2017/03/KCL-WPF-THE-PROFESSOR-7110ET.jpg'),(720,159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:40:\"2017/03/KCL-WPF-THE-PROFESSOR-7110ET.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"KCL-WPF-THE-PROFESSOR-7110ET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"KCL-WPF-THE-PROFESSOR-7110ET-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"KCL-WPF-THE-PROFESSOR-7110ET-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"KCL-WPF-THE-PROFESSOR-7110ET-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"KCL-WPF-THE-PROFESSOR-7110ET-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"KCL-WPF-THE-PROFESSOR-7110ET-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(721,158,'_edit_last','1'),(722,158,'_thumbnail_id','159'),(741,162,'_wp_attached_file','2017/03/TH-512X-145Y-EL-DORADO-49B.jpg'),(724,158,'_et_post_bg_color','#ffffff'),(725,158,'_et_post_bg_layout','light'),(726,158,'_et_pb_show_title','on'),(727,158,'_et_pb_post_hide_nav','default'),(728,158,'_et_pb_page_layout','et_right_sidebar'),(729,158,'_et_pb_side_nav','off'),(730,158,'_et_pb_use_builder','on'),(731,158,'_et_pb_ab_bounce_rate_limit','5'),(732,158,'_et_pb_ab_stats_refresh_interval','hourly'),(733,158,'_et_pb_old_content',''),(734,158,'_et_pb_enable_shortcode_tracking',''),(735,158,'_et_pb_custom_css',''),(736,158,'_et_pb_light_text_color','#ffffff'),(737,158,'_et_pb_dark_text_color','#666666'),(738,158,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(739,158,'_et_pb_section_background_color','#ffffff'),(740,158,'_edit_lock','1488834662:1'),(742,162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:38:\"2017/03/TH-512X-145Y-EL-DORADO-49B.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"TH-512X-145Y-EL-DORADO-49B-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"TH-512X-145Y-EL-DORADO-49B-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:{}}}'),(743,161,'_edit_last','1'),(744,161,'_thumbnail_id','162'),(763,164,'_edit_last','1'),(746,161,'_et_post_bg_color','#ffffff'),(747,161,'_et_post_bg_layout','light'),(748,161,'_et_pb_show_title','on'),(749,161,'_et_pb_post_hide_nav','default'),(750,161,'_et_pb_page_layout','et_right_sidebar'),(751,161,'_et_pb_side_nav','off'),(752,161,'_et_pb_use_builder','on'),(753,161,'_et_pb_ab_bounce_rate_limit','5'),(754,161,'_et_pb_ab_stats_refresh_interval','hourly'),(755,161,'_et_pb_old_content',''),(756,161,'_et_pb_enable_shortcode_tracking',''),(757,161,'_et_pb_custom_css',''),(758,161,'_et_pb_light_text_color','#ffffff'),(759,161,'_et_pb_dark_text_color','#666666'),(760,161,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(761,161,'_et_pb_section_background_color','#ffffff'),(762,161,'_edit_lock','1488834545:1'),(764,164,'_edit_lock','1488834504:1'),(765,165,'_wp_attached_file','2017/03/KCL-955W-DOMINO-92S-106Y.jpg'),(766,165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:36:\"2017/03/KCL-955W-DOMINO-92S-106Y.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"KCL-955W-DOMINO-92S-106Y-150x150.jpg\";s:5:\"width\";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:\"KCL-955W-DOMINO-92S-106Y-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"KCL-955W-DOMINO-92S-106Y-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"KCL-955W-DOMINO-92S-106Y-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"KCL-955W-DOMINO-92S-106Y-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"KCL-955W-DOMINO-92S-106Y-400x400.jpg\";s:5:\"width\";i:400;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:{}}}'),(767,164,'_thumbnail_id','165'),(785,168,'_wp_attached_file','2017/03/NJW-98S-R117-RIBEYE-88X-ET.jpg'),(769,164,'_et_post_bg_color','#ffffff'),(770,164,'_et_post_bg_layout','light'),(771,164,'_et_pb_show_title','on'),(772,164,'_et_pb_post_hide_nav','default'),(773,164,'_et_pb_page_layout','et_right_sidebar'),(774,164,'_et_pb_side_nav','off'),(775,164,'_et_pb_use_builder','on'),(776,164,'_et_pb_ab_bounce_rate_limit','5'),(777,164,'_et_pb_ab_stats_refresh_interval','hourly'),(778,164,'_et_pb_old_content',''),(779,164,'_et_pb_enable_shortcode_tracking',''),(780,164,'_et_pb_custom_css',''),(781,164,'_et_pb_light_text_color','#ffffff'),(782,164,'_et_pb_dark_text_color','#666666'),(783,164,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(784,164,'_et_pb_section_background_color','#ffffff'),(786,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:38:\"2017/03/NJW-98S-R117-RIBEYE-88X-ET.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"NJW-98S-R117-RIBEYE-88X-ET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"NJW-98S-R117-RIBEYE-88X-ET-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:{}}}'),(787,167,'_edit_last','1'),(788,167,'_thumbnail_id','168'),(807,170,'_edit_last','1'),(790,167,'_et_post_bg_color','#ffffff'),(791,167,'_et_post_bg_layout','light'),(792,167,'_et_pb_show_title','on'),(793,167,'_et_pb_post_hide_nav','default'),(794,167,'_et_pb_page_layout','et_right_sidebar'),(795,167,'_et_pb_side_nav','off'),(796,167,'_et_pb_use_builder','on'),(797,167,'_et_pb_ab_bounce_rate_limit','5'),(798,167,'_et_pb_ab_stats_refresh_interval','hourly'),(799,167,'_et_pb_old_content',''),(800,167,'_et_pb_enable_shortcode_tracking',''),(801,167,'_et_pb_custom_css',''),(802,167,'_et_pb_light_text_color','#ffffff'),(803,167,'_et_pb_dark_text_color','#666666'),(804,167,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(805,167,'_et_pb_section_background_color','#ffffff'),(806,167,'_edit_lock','1488834471:1'),(808,170,'_edit_lock','1488860623:1'),(809,171,'_wp_attached_file','2017/03/TH-71U-719T-MR-HEREFORD-11X.jpg'),(810,171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:39:\"2017/03/TH-71U-719T-MR-HEREFORD-11X.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"TH-71U-719T-MR-HEREFORD-11X-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"TH-71U-719T-MR-HEREFORD-11X-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:{}}}'),(811,170,'_thumbnail_id','171'),(829,174,'_wp_attached_file','2017/03/BOYD-WORLDWIDE-9050-ET.jpg'),(813,170,'_et_post_bg_color','#ffffff'),(814,170,'_et_post_bg_layout','light'),(815,170,'_et_pb_show_title','on'),(816,170,'_et_pb_post_hide_nav','default'),(817,170,'_et_pb_page_layout','et_right_sidebar'),(818,170,'_et_pb_side_nav','off'),(819,170,'_et_pb_use_builder','on'),(820,170,'_et_pb_ab_bounce_rate_limit','5'),(821,170,'_et_pb_ab_stats_refresh_interval','hourly'),(822,170,'_et_pb_old_content',''),(823,170,'_et_pb_enable_shortcode_tracking',''),(824,170,'_et_pb_custom_css',''),(825,170,'_et_pb_light_text_color','#ffffff'),(826,170,'_et_pb_dark_text_color','#666666'),(827,170,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(828,170,'_et_pb_section_background_color','#ffffff'),(830,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:34:\"2017/03/BOYD-WORLDWIDE-9050-ET.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"BOYD-WORLDWIDE-9050-ET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"BOYD-WORLDWIDE-9050-ET-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:{}}}'),(831,173,'_edit_last','1'),(832,173,'_thumbnail_id','174'),(851,177,'_wp_attached_file','2017/03/H-W4-Mariah-0103.jpg'),(834,173,'_et_post_bg_color','#ffffff'),(835,173,'_et_post_bg_layout','light'),(836,173,'_et_pb_show_title','on'),(837,173,'_et_pb_post_hide_nav','default'),(838,173,'_et_pb_page_layout','et_right_sidebar'),(839,173,'_et_pb_side_nav','off'),(840,173,'_et_pb_use_builder','on'),(841,173,'_et_pb_ab_bounce_rate_limit','5'),(842,173,'_et_pb_ab_stats_refresh_interval','hourly'),(843,173,'_et_pb_old_content',''),(844,173,'_et_pb_enable_shortcode_tracking',''),(845,173,'_et_pb_custom_css',''),(846,173,'_et_pb_light_text_color','#ffffff'),(847,173,'_et_pb_dark_text_color','#666666'),(848,173,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(849,173,'_et_pb_section_background_color','#ffffff'),(850,173,'_edit_lock','1488834413:1'),(852,177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:525;s:6:\"height\";i:350;s:4:\"file\";s:28:\"2017/03/H-W4-Mariah-0103.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"H-W4-Mariah-0103-150x150.jpg\";s:5:\"width\";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:\"H-W4-Mariah-0103-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"H-W4-Mariah-0103-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"H-W4-Mariah-0103-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"H-W4-Mariah-0103-510x350.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"H-W4-Mariah-0103-400x350.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:350;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:{}}}'),(853,178,'_wp_attached_file','2017/03/H-W4-PURE-COUNTRY-0109.jpg'),(854,178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:525;s:6:\"height\";i:350;s:4:\"file\";s:34:\"2017/03/H-W4-PURE-COUNTRY-0109.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"H-W4-PURE-COUNTRY-0109-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"H-W4-PURE-COUNTRY-0109-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"H-W4-PURE-COUNTRY-0109-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"H-W4-PURE-COUNTRY-0109-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"H-W4-PURE-COUNTRY-0109-510x350.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"H-W4-PURE-COUNTRY-0109-400x350.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:350;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:{}}}'),(855,176,'_edit_last','1'),(856,176,'_thumbnail_id','178'),(875,181,'_wp_attached_file','2017/03/TH-512X-719T-PLAYMAKER-14Z.jpg'),(858,176,'_et_post_bg_color','#ffffff'),(859,176,'_et_post_bg_layout','light'),(860,176,'_et_pb_show_title','on'),(861,176,'_et_pb_post_hide_nav','default'),(862,176,'_et_pb_page_layout','et_right_sidebar'),(863,176,'_et_pb_side_nav','off'),(864,176,'_et_pb_use_builder','on'),(865,176,'_et_pb_ab_bounce_rate_limit','5'),(866,176,'_et_pb_ab_stats_refresh_interval','hourly'),(867,176,'_et_pb_old_content',''),(868,176,'_et_pb_enable_shortcode_tracking',''),(869,176,'_et_pb_custom_css',''),(870,176,'_et_pb_light_text_color','#ffffff'),(871,176,'_et_pb_dark_text_color','#666666'),(872,176,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(873,176,'_et_pb_section_background_color','#ffffff'),(874,176,'_edit_lock','1488834381:1'),(876,181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:38:\"2017/03/TH-512X-719T-PLAYMAKER-14Z.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"TH-512X-719T-PLAYMAKER-14Z-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"TH-512X-719T-PLAYMAKER-14Z-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:{}}}'),(877,180,'_edit_last','1'),(878,180,'_thumbnail_id','181'),(897,184,'_wp_attached_file','2017/03/TH-22R-16S-LAMBEAU-17Y.jpg'),(880,180,'_et_post_bg_color','#ffffff'),(881,180,'_et_post_bg_layout','light'),(882,180,'_et_pb_show_title','on'),(883,180,'_et_pb_post_hide_nav','default'),(884,180,'_et_pb_page_layout','et_right_sidebar'),(885,180,'_et_pb_side_nav','off'),(886,180,'_et_pb_use_builder','on'),(887,180,'_et_pb_ab_bounce_rate_limit','5'),(888,180,'_et_pb_ab_stats_refresh_interval','hourly'),(889,180,'_et_pb_old_content',''),(890,180,'_et_pb_enable_shortcode_tracking',''),(891,180,'_et_pb_custom_css',''),(892,180,'_et_pb_light_text_color','#ffffff'),(893,180,'_et_pb_dark_text_color','#666666'),(894,180,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(895,180,'_et_pb_section_background_color','#ffffff'),(896,180,'_edit_lock','1488834287:1'),(898,184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:34:\"2017/03/TH-22R-16S-LAMBEAU-17Y.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"TH-22R-16S-LAMBEAU-17Y-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"TH-22R-16S-LAMBEAU-17Y-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:{}}}'),(899,183,'_edit_last','1'),(900,183,'_edit_lock','1488860581:1'),(901,183,'_thumbnail_id','184'),(919,187,'_wp_attached_file','2017/03/NJW-98S-R117-RIBEYE-88X-ET-1.jpg'),(903,183,'_et_post_bg_color','#ffffff'),(904,183,'_et_post_bg_layout','light'),(905,183,'_et_pb_show_title','on'),(906,183,'_et_pb_post_hide_nav','default'),(907,183,'_et_pb_page_layout','et_right_sidebar'),(908,183,'_et_pb_side_nav','off'),(909,183,'_et_pb_use_builder','on'),(910,183,'_et_pb_ab_bounce_rate_limit','5'),(911,183,'_et_pb_ab_stats_refresh_interval','hourly'),(912,183,'_et_pb_old_content',''),(913,183,'_et_pb_enable_shortcode_tracking',''),(914,183,'_et_pb_custom_css',''),(915,183,'_et_pb_light_text_color','#ffffff'),(916,183,'_et_pb_dark_text_color','#666666'),(917,183,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(918,183,'_et_pb_section_background_color','#ffffff'),(920,187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:40:\"2017/03/NJW-98S-R117-RIBEYE-88X-ET-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"NJW-98S-R117-RIBEYE-88X-ET-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:40:\"NJW-98S-R117-RIBEYE-88X-ET-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:{}}}'),(921,186,'_edit_last','1'),(922,186,'_edit_lock','1524353280:1'),(1884,556,'_menu_item_object_id','361'),(942,191,'_wp_attached_file','2017/03/H-WCCWB-668-WYARNO-9500-ET.jpg'),(925,186,'_et_post_bg_color','#ffffff'),(926,186,'_et_post_bg_layout','light'),(927,186,'_et_pb_show_title','on'),(928,186,'_et_pb_post_hide_nav','default'),(929,186,'_et_pb_page_layout','et_right_sidebar'),(930,186,'_et_pb_side_nav','off'),(931,186,'_et_pb_use_builder','on'),(932,186,'_et_pb_ab_bounce_rate_limit','5'),(933,186,'_et_pb_ab_stats_refresh_interval','hourly'),(934,186,'_et_pb_old_content',''),(935,186,'_et_pb_enable_shortcode_tracking',''),(936,186,'_et_pb_custom_css',''),(937,186,'_et_pb_light_text_color','#ffffff'),(938,186,'_et_pb_dark_text_color','#666666'),(939,186,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(940,186,'_et_pb_section_background_color','#ffffff'),(943,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:525;s:6:\"height\";i:390;s:4:\"file\";s:38:\"2017/03/H-WCCWB-668-WYARNO-9500-ET.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"H-WCCWB-668-WYARNO-9500-ET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"H-WCCWB-668-WYARNO-9500-ET-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"H-WCCWB-668-WYARNO-9500-ET-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"H-WCCWB-668-WYARNO-9500-ET-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"H-WCCWB-668-WYARNO-9500-ET-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"H-WCCWB-668-WYARNO-9500-ET-400x390.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:390;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:{}}}'),(944,190,'_edit_last','1'),(945,190,'_thumbnail_id','191'),(964,194,'_wp_attached_file','2017/03/CL-1-DOMINO-955W.jpg'),(947,190,'_et_post_bg_color','#ffffff'),(948,190,'_et_post_bg_layout','light'),(949,190,'_et_pb_show_title','on'),(950,190,'_et_pb_post_hide_nav','default'),(951,190,'_et_pb_page_layout','et_right_sidebar'),(952,190,'_et_pb_side_nav','off'),(953,190,'_et_pb_use_builder','on'),(954,190,'_et_pb_ab_bounce_rate_limit','5'),(955,190,'_et_pb_ab_stats_refresh_interval','hourly'),(956,190,'_et_pb_old_content',''),(957,190,'_et_pb_enable_shortcode_tracking',''),(958,190,'_et_pb_custom_css',''),(959,190,'_et_pb_light_text_color','#ffffff'),(960,190,'_et_pb_dark_text_color','#666666'),(961,190,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(962,190,'_et_pb_section_background_color','#ffffff'),(963,190,'_edit_lock','1488834197:1'),(965,194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:525;s:6:\"height\";i:350;s:4:\"file\";s:28:\"2017/03/CL-1-DOMINO-955W.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"CL-1-DOMINO-955W-150x150.jpg\";s:5:\"width\";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:\"CL-1-DOMINO-955W-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"CL-1-DOMINO-955W-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"CL-1-DOMINO-955W-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"CL-1-DOMINO-955W-510x350.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"CL-1-DOMINO-955W-400x350.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:350;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:{}}}'),(966,193,'_edit_last','1'),(967,193,'_thumbnail_id','194'),(969,193,'_et_post_bg_color','#ffffff'),(970,193,'_et_post_bg_layout','light'),(971,193,'_et_pb_show_title','on'),(972,193,'_et_pb_post_hide_nav','default'),(973,193,'_et_pb_page_layout','et_right_sidebar'),(974,193,'_et_pb_side_nav','off'),(975,193,'_et_pb_use_builder','on'),(976,193,'_et_pb_ab_bounce_rate_limit','5'),(977,193,'_et_pb_ab_stats_refresh_interval','hourly'),(978,193,'_et_pb_old_content',''),(979,193,'_et_pb_enable_shortcode_tracking',''),(980,193,'_et_pb_custom_css',''),(981,193,'_et_pb_light_text_color','#ffffff'),(982,193,'_et_pb_dark_text_color','#666666'),(983,193,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(984,193,'_et_pb_section_background_color','#ffffff'),(985,193,'_edit_lock','1524351025:1'),(988,197,'_wp_attached_file','2017/03/cover_groupbanner.png'),(989,197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:275;s:4:\"file\";s:29:\"2017/03/cover_groupbanner.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"cover_groupbanner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"cover_groupbanner-300x103.png\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"cover_groupbanner-768x264.png\";s:5:\"width\";i:768;s:6:\"height\";i:264;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"cover_groupbanner-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"cover_groupbanner-400x275.png\";s:5:\"width\";i:400;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"cover_groupbanner-510x275.png\";s:5:\"width\";i:510;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"cover_groupbanner-400x275.png\";s:5:\"width\";i:400;s:6:\"height\";i:275;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:{}}}'),(990,202,'_wp_attached_file','2017/03/banner.jpg'),(991,202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1153;s:6:\"height\";i:397;s:4:\"file\";s:18:\"2017/03/banner.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"banner-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"banner-768x264.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"banner-1024x353.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"banner-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"banner-1080x397.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"banner-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"banner-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"banner-1080x372.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"banner-400x397.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:397;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:{}}}'),(992,204,'_wp_attached_file','2017/03/herefords-sale.jpg'),(993,204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:26:\"2017/03/herefords-sale.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"herefords-sale-150x150.jpg\";s:5:\"width\";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:\"herefords-sale-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:{}}}'),(994,218,'_wp_attached_file','2017/03/9500.jpg'),(995,218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:525;s:6:\"height\";i:390;s:4:\"file\";s:16:\"2017/03/9500.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"9500-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"9500-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:16:\"9500-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:16:\"9500-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:16:\"9500-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:16:\"9500-400x390.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:390;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:{}}}'),(1003,238,'_wp_attached_file','2017/03/26u.jpg'),(1004,238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:525;s:6:\"height\";i:350;s:4:\"file\";s:15:\"2017/03/26u.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"26u-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"26u-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"26u-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"26u-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"26u-510x350.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"26u-400x350.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:350;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:{}}}'),(1005,242,'_wp_attached_file','2017/03/genetics-background.jpg'),(1006,242,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1350;s:4:\"file\";s:31:\"2017/03/genetics-background.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"genetics-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"genetics-background-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:31:\"genetics-background-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:32:\"genetics-background-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"genetics-background-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"genetics-background-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"genetics-background-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"genetics-background-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"genetics-background-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"genetics-background-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(1001,229,'_wp_attached_file','2017/03/hs.jpg'),(1002,229,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2150;s:6:\"height\";i:750;s:4:\"file\";s:14:\"2017/03/hs.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"hs-150x150.jpg\";s:5:\"width\";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:\"hs-300x105.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"hs-768x268.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"hs-1024x357.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:357;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:14:\"hs-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:15:\"hs-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:14:\"hs-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:14:\"hs-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:15:\"hs-1080x377.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:377;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:14:\"hs-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(1011,245,'_wp_attached_file','2017/03/genetics-background-compressed.jpg'),(1012,245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1500;s:4:\"file\";s:42:\"2017/03/genetics-background-compressed.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"genetics-background-compressed-150x150.jpg\";s:5:\"width\";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:\"genetics-background-compressed-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:42:\"genetics-background-compressed-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:43:\"genetics-background-compressed-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"genetics-background-compressed-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"genetics-background-compressed-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"genetics-background-compressed-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"genetics-background-compressed-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"genetics-background-compressed-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"genetics-background-compressed-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(1053,139,'_et_pb_use_ab_testing','off'),(1054,139,'_et_pb_ab_refresh_interval','hourly'),(1055,139,'_et_pb_ab_subjects',''),(1056,139,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"139\" /]'),(1133,305,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1132,305,'_menu_item_target',''),(1131,305,'_menu_item_object','page'),(1130,305,'_menu_item_object_id','303'),(1129,305,'_menu_item_menu_item_parent','0'),(1128,305,'_menu_item_type','post_type'),(1089,60,'_et_pb_use_ab_testing','off'),(1090,60,'_et_pb_ab_refresh_interval','hourly'),(1091,60,'_et_pb_ab_subjects',''),(1092,60,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"60\" /]'),(1093,294,'_edit_last','1'),(1094,294,'_edit_lock','1489093548:1'),(1112,303,'_edit_last','1'),(1096,294,'_et_post_bg_color','#ffffff'),(1097,294,'_et_post_bg_layout','light'),(1098,294,'_et_pb_show_title','on'),(1099,294,'_et_pb_post_hide_nav','default'),(1100,294,'_et_pb_page_layout','et_right_sidebar'),(1101,294,'_et_pb_side_nav','off'),(1102,294,'_et_pb_use_builder','on'),(1103,294,'_et_pb_ab_bounce_rate_limit','5'),(1104,294,'_et_pb_ab_stats_refresh_interval','hourly'),(1105,294,'_et_pb_old_content',''),(1106,294,'_et_pb_enable_shortcode_tracking',''),(1107,294,'_et_pb_custom_css',''),(1108,294,'_et_pb_light_text_color','#ffffff'),(1109,294,'_et_pb_dark_text_color','#666666'),(1110,294,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(1111,294,'_et_pb_section_background_color','#ffffff'),(1113,303,'_edit_lock','1559788301:1'),(1114,303,'_wp_page_template','default'),(1115,303,'_et_pb_post_hide_nav','default'),(1116,303,'_et_pb_page_layout','et_right_sidebar'),(1117,303,'_et_pb_side_nav','off'),(1118,303,'_et_pb_use_builder','on'),(1119,303,'_et_pb_ab_bounce_rate_limit','5'),(1120,303,'_et_pb_ab_stats_refresh_interval','hourly'),(1121,303,'_et_pb_old_content',''),(1122,303,'_et_pb_enable_shortcode_tracking',''),(1123,303,'_et_pb_custom_css',''),(1124,303,'_et_pb_light_text_color','#ffffff'),(1125,303,'_et_pb_dark_text_color','#666666'),(1126,303,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(1127,303,'_et_pb_section_background_color','#ffffff'),(1134,305,'_menu_item_xfn',''),(1135,305,'_menu_item_url',''),(1137,306,'_edit_last','1'),(1138,306,'_edit_lock','1557106692:1'),(1139,306,'_wp_page_template','default'),(1140,306,'_et_pb_post_hide_nav','default'),(1141,306,'_et_pb_page_layout','et_right_sidebar'),(1142,306,'_et_pb_side_nav','off'),(1143,306,'_et_pb_use_builder','on'),(1144,306,'_et_pb_ab_bounce_rate_limit','5'),(1145,306,'_et_pb_ab_stats_refresh_interval','hourly'),(1146,306,'_et_pb_old_content',''),(1147,306,'_et_pb_enable_shortcode_tracking',''),(1148,306,'_et_pb_custom_css',''),(1149,306,'_et_pb_light_text_color','#ffffff'),(1150,306,'_et_pb_dark_text_color','#666666'),(1151,306,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(1152,306,'_et_pb_section_background_color','#ffffff'),(1153,309,'_menu_item_type','post_type'),(1154,309,'_menu_item_menu_item_parent','0'),(1155,309,'_menu_item_object_id','306'),(1156,309,'_menu_item_object','page'),(1157,309,'_menu_item_target',''),(1158,309,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1159,309,'_menu_item_xfn',''),(1160,309,'_menu_item_url',''),(1162,54,'_et_pb_use_ab_testing','off'),(1376,54,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"54\" /]'),(1374,54,'_et_pb_ab_refresh_interval','hourly'),(1375,54,'_et_pb_ab_subjects',''),(1169,316,'_wp_attached_file','2017/03/Larson_logo-e1524187019875.jpg'),(1170,316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:160;s:4:\"file\";s:38:\"2017/03/Larson_logo-e1524187019875.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Larson_logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Larson_logo-281x300.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"Larson_logo-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"Larson_logo-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"Larson_logo-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"Larson_logo-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(1468,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:82;s:4:\"file\";s:39:\"2017/03/cropped-cover_groupbanner-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"cropped-cover_groupbanner-1-150x82.png\";s:5:\"width\";i:150;s:6:\"height\";i:82;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:{}}}'),(1467,446,'_wp_attachment_context','custom-logo'),(1466,446,'_wp_attached_file','2017/03/cropped-cover_groupbanner-1.png'),(1464,444,'_wp_attachment_is_custom_header','twentyseventeen'),(1463,444,'_wp_attachment_custom_header_last_used_twentyseventeen','1524182177'),(1462,444,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:36:\"2017/03/cropped-KB-SULTANA-8051U.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"cropped-KB-SULTANA-8051U-150x150.jpg\";s:5:\"width\";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:\"cropped-KB-SULTANA-8051U-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"cropped-KB-SULTANA-8051U-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"cropped-KB-SULTANA-8051U-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:36:\"cropped-KB-SULTANA-8051U-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:92;}'),(1461,444,'_wp_attachment_context','custom-header'),(1460,444,'_wp_attached_file','2017/03/cropped-KB-SULTANA-8051U.jpg'),(1459,443,'_wp_attachment_is_custom_header','twentyseventeen'),(1458,443,'_wp_attachment_custom_header_last_used_twentyseventeen','1524182136'),(1457,443,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:37:\"2017/03/cropped-cover_groupbanner.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"cropped-cover_groupbanner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"cropped-cover_groupbanner-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"cropped-cover_groupbanner-768x461.png\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"cropped-cover_groupbanner-1024x614.png\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:37:\"cropped-cover_groupbanner-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}s:17:\"attachment_parent\";i:197;}'),(1456,443,'_wp_attachment_context','custom-header'),(1455,443,'_wp_attached_file','2017/03/cropped-cover_groupbanner.png'),(1282,44,'_et_pb_use_ab_testing','off'),(1293,62,'_et_pb_ab_refresh_interval','hourly'),(1294,62,'_et_pb_ab_subjects',''),(1295,62,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"62\" /]'),(1292,62,'_et_pb_use_ab_testing','off'),(1298,360,'_wp_attached_file','2017/03/20170305_160750_1488807560105-e1488862488963.jpg'),(1299,360,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5312;s:6:\"height\";i:2988;s:4:\"file\";s:56:\"2017/03/20170305_160750_1488807560105-e1488862488963.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"20170305_160750_1488807560105-e1488862488963-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"20170305_160750_1488807560105-e1488862488963-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:56:\"20170305_160750_1488807560105-e1488862488963-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:57:\"20170305_160750_1488807560105-e1488862488963-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:56:\"20170305_160750_1488807560105-e1488862488963-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:57:\"20170305_160750_1488807560105-e1488862488963-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:56:\"20170305_160750_1488807560105-e1488862488963-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:56:\"20170305_160750_1488807560105-e1488862488963-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:57:\"20170305_160750_1488807560105-e1488862488963-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:56:\"20170305_160750_1488807560105-e1488862488963-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:16:\"SAMSUNG-SM-G925A\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1488730070\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:18:\"0.0024330900243309\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"3\";s:8:\"keywords\";a:0:{}}}'),(1300,361,'_edit_last','1'),(1301,361,'_et_post_bg_color','#ffffff'),(1302,361,'_et_post_bg_layout','light'),(1303,361,'_et_pb_show_title','on'),(1304,361,'_et_pb_post_hide_nav','default'),(1305,361,'_et_pb_page_layout','et_left_sidebar'),(1306,361,'_et_pb_side_nav','off'),(1307,361,'_et_pb_use_builder','on'),(1308,361,'_et_pb_ab_bounce_rate_limit','5'),(1309,361,'_et_pb_ab_stats_refresh_interval','hourly'),(1310,361,'_et_pb_old_content','<img src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/20170305_160750_1488807560105-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" class=\"alignnone size-medium wp-image-360\" />'),(1311,361,'_et_pb_enable_shortcode_tracking',''),(1312,361,'_et_pb_custom_css',''),(1313,361,'_et_pb_light_text_color','#ffffff'),(1314,361,'_et_pb_dark_text_color','#666666'),(1315,361,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(1316,361,'_et_pb_section_background_color','#ffffff'),(1317,361,'_edit_lock','1524354350:1'),(1318,360,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:5312;s:6:\"height\";i:2988;s:4:\"file\";s:33:\"20170305_160750_1488807560105.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:41:\"20170305_160750_1488807560105-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:41:\"20170305_160750_1488807560105-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:41:\"20170305_160750_1488807560105-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:42:\"20170305_160750_1488807560105-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"et-pb-post-main-image-orig\";a:4:{s:4:\"file\";s:41:\"20170305_160750_1488807560105-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:36:\"et-pb-post-main-image-fullwidth-orig\";a:4:{s:4:\"file\";s:42:\"20170305_160750_1488807560105-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"et-pb-portfolio-image-orig\";a:4:{s:4:\"file\";s:41:\"20170305_160750_1488807560105-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:33:\"et-pb-portfolio-module-image-orig\";a:4:{s:4:\"file\";s:41:\"20170305_160750_1488807560105-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:33:\"et-pb-portfolio-image-single-orig\";a:4:{s:4:\"file\";s:42:\"20170305_160750_1488807560105-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:40:\"et-pb-gallery-module-image-portrait-orig\";a:4:{s:4:\"file\";s:41:\"20170305_160750_1488807560105-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1328,303,'_et_pb_use_ab_testing','off'),(1320,361,'_et_pb_use_ab_testing','off'),(1335,361,'_wp_old_slug','361-2'),(1329,303,'_et_pb_ab_refresh_interval','hourly'),(1330,303,'_et_pb_ab_subjects',''),(1331,303,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"303\" /]'),(1332,380,'_wp_attached_file','2017/03/north-entrance.jpg'),(1333,380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:785;s:6:\"height\";i:320;s:4:\"file\";s:26:\"2017/03/north-entrance.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"north-entrance-150x150.jpg\";s:5:\"width\";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:\"north-entrance-300x122.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"north-entrance-768x313.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"north-entrance-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"north-entrance-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"north-entrance-510x320.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"north-entrance-400x320.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:320;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:47:\"Copyrighted image. Unauthorized use prohibited.\";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:{}}}'),(1347,361,'_thumbnail_id','360'),(1349,398,'_wp_attached_file','2017/03/website-update.jpg'),(1350,398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:101;s:6:\"height\";i:101;s:4:\"file\";s:26:\"2017/03/website-update.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1351,294,'_thumbnail_id','400'),(1353,400,'_wp_attached_file','2017/03/Update.jpg'),(1354,400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:447;s:6:\"height\";i:268;s:4:\"file\";s:18:\"2017/03/Update.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Update-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Update-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"Update-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"Update-400x268.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"Update-400x268.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:268;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:{}}}'),(1684,532,'_menu_item_menu_item_parent','0'),(1357,294,'_et_pb_use_ab_testing','off'),(1358,294,'_et_pb_ab_refresh_interval','hourly'),(1359,294,'_et_pb_ab_subjects',''),(1360,294,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"294\" /]'),(1364,407,'_wp_attached_file','2017/03/cropped-Larson_logo.jpg'),(1365,407,'_wp_attachment_context','site-icon'),(1366,407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:31:\"2017/03/cropped-Larson_logo.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-Larson_logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"cropped-Larson_logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"cropped-Larson_logo-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"cropped-Larson_logo-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"cropped-Larson_logo-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"cropped-Larson_logo-400x512.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:31:\"cropped-Larson_logo-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:31:\"cropped-Larson_logo-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:31:\"cropped-Larson_logo-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:29:\"cropped-Larson_logo-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1369,409,'_wp_attached_file','2017/03/cattleinmotion.jpg'),(1370,409,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:386;s:6:\"height\";i:226;s:4:\"file\";s:26:\"2017/03/cattleinmotion.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cattleinmotion-150x150.jpg\";s:5:\"width\";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:\"cattleinmotion-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1370853268\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"90\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1387,91,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1388,151,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1389,83,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1390,171,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1391,170,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1392,161,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1393,303,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1394,136,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1395,104,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1396,176,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1397,72,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1398,132,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1399,87,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1400,112,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1401,123,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1402,164,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1403,127,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1404,99,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1405,167,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1406,186,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1407,183,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1408,180,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1409,361,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1410,294,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1411,79,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1412,148,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1413,116,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1414,109,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1415,139,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1416,193,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1417,145,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1418,190,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1419,142,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1420,120,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1421,129,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1422,110,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1423,165,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1424,194,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1425,152,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-raleway\";s:134:\"Raleway:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(1426,202,'_wp_attachment_is_custom_background','avenue'),(1428,303,'avenue_sidebar_location','right'),(1429,54,'avenue_sidebar_location','right'),(1430,51,'avenue_sidebar_location','right'),(1431,44,'avenue_sidebar_location','right'),(1931,463,'_oembed_9d9f9e030cb9f571c74f2ef6584b74b1','{{unknown}}'),(1433,434,'_wp_attached_file','2017/03/cropped-Larson_logo-1.jpg'),(1434,434,'_wp_attachment_context','custom-logo'),(1435,434,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:528;s:6:\"height\";i:564;s:4:\"file\";s:33:\"2017/03/cropped-Larson_logo-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cropped-Larson_logo-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:33:\"cropped-Larson_logo-1-281x300.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1469,447,'_wp_attached_file','2017/03/cropped-banner.jpg'),(1470,447,'_wp_attachment_context','custom-header'),(1471,447,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:279;s:4:\"file\";s:26:\"2017/03/cropped-banner.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-banner-150x150.jpg\";s:5:\"width\";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:\"cropped-banner-300x70.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"cropped-banner-768x179.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"cropped-banner-1024x238.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-banner-1200x279.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:202;}'),(1472,447,'_wp_attachment_custom_header_last_used_twentysixteen','1524366898'),(1473,447,'_wp_attachment_is_custom_header','twentysixteen'),(1487,457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3277;s:6:\"height\";i:2354;s:4:\"file\";s:25:\"2018/04/A39-Spearhead.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"A39-Spearhead-150x150.jpg\";s:5:\"width\";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:\"A39-Spearhead-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"A39-Spearhead-768x552.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:552;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"A39-Spearhead-1024x736.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:736;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"A39-Spearhead-1200x862.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:862;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1429063317\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1486,457,'_wp_attached_file','2018/04/A39-Spearhead.jpg'),(1488,458,'_wp_attached_file','2018/04/Y40-Larson.jpg'),(1489,458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3529;s:6:\"height\";i:2399;s:4:\"file\";s:22:\"2018/04/Y40-Larson.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Y40-Larson-150x150.jpg\";s:5:\"width\";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:\"Y40-Larson-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Y40-Larson-768x522.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Y40-Larson-1024x696.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Y40-Larson-1200x816.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:816;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1397525368\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1490,459,'_wp_attached_file','2018/04/Y100-KCL.jpg'),(1491,459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3567;s:6:\"height\";i:2359;s:4:\"file\";s:20:\"2018/04/Y100-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Y100-KCL-150x150.jpg\";s:5:\"width\";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:\"Y100-KCL-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Y100-KCL-768x508.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Y100-KCL-1024x677.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:677;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Y100-KCL-1200x794.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:794;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1429060636\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1492,460,'_wp_attached_file','2017/03/cropped-Larson_logo-2.jpg'),(1493,460,'_wp_attachment_context','custom-logo'),(1494,460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:245;s:4:\"file\";s:33:\"2017/03/cropped-Larson_logo-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cropped-Larson_logo-2-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:{}}}'),(1495,242,'_wp_attachment_is_custom_background','twentysixteen'),(1496,316,'_edit_lock','1524187106:1'),(1497,316,'_wp_attachment_backup_sizes','a:3:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:528;s:6:\"height\";i:564;s:4:\"file\";s:15:\"Larson_logo.jpg\";}s:18:\"full-1524187012554\";a:3:{s:5:\"width\";i:150;s:6:\"height\";i:160;s:4:\"file\";s:30:\"Larson_logo-e1524186911942.jpg\";}s:18:\"full-1524187019875\";a:3:{s:5:\"width\";i:150;s:6:\"height\";i:160;s:4:\"file\";s:30:\"Larson_logo-e1524187012554.jpg\";}}'),(1498,316,'_edit_last','1'),(1499,461,'_wp_attached_file','2017/03/cropped-Larson_logo-e1524186911942.jpg'),(1500,461,'_wp_attachment_context','custom-logo'),(1501,461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:256;s:4:\"file\";s:46:\"2017/03/cropped-Larson_logo-e1524186911942.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"cropped-Larson_logo-e1524186911942-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:{}}}'),(1503,463,'_wp_attached_file','2017/03/cropped-Larson_logo-e1524187019875.jpg'),(1504,463,'_wp_attachment_context','custom-logo'),(1505,463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:256;s:4:\"file\";s:46:\"2017/03/cropped-Larson_logo-e1524187019875.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"cropped-Larson_logo-e1524187019875-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:{}}}'),(1930,460,'_oembed_99d32a76efa91a1beda3912ac36c66d7','{{unknown}}'),(1507,464,'_wp_attached_file','2017/03/cropped-genetics-background.jpg'),(1508,464,'_wp_attachment_context','custom-logo'),(1509,464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:240;s:4:\"file\";s:39:\"2017/03/cropped-genetics-background.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-genetics-background-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:{}}}'),(1510,465,'_wp_attached_file','2018/04/75C-KCL-TH-e1544295138537.jpg'),(1511,465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3250;s:6:\"height\";i:1904;s:4:\"file\";s:37:\"2018/04/75C-KCL-TH-e1544295138537.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"75C-KCL-TH-e1544295138537-150x150.jpg\";s:5:\"width\";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:\"75C-KCL-TH-e1544295138537-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"75C-KCL-TH-e1544295138537-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"75C-KCL-TH-e1544295138537-1024x600.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"75C-KCL-TH-1200x829.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:829;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"bizworx-large-thumb\";a:4:{s:4:\"file\";s:37:\"75C-KCL-TH-e1544295138537-830x486.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"bizworx-medium-thumb\";a:4:{s:4:\"file\";s:37:\"75C-KCL-TH-e1544295138537-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"bizworx-small-thumb\";a:4:{s:4:\"file\";s:37:\"75C-KCL-TH-e1544295138537-230x135.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492576281\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1512,466,'_wp_attached_file','2018/04/purina-checkerboard-logo.jpg'),(1513,466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:36:\"2018/04/purina-checkerboard-logo.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"purina-checkerboard-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:{}}}'),(1514,467,'_wp_attached_file','2018/04/CFSC-Logo.jpg'),(1515,467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:228;s:6:\"height\";i:87;s:4:\"file\";s:21:\"2018/04/CFSC-Logo.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"CFSC-Logo-150x87.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:87;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:{}}}'),(1518,472,'_wp_attached_file','2018/04/KCL-GENETICS-copy.jpg'),(1519,472,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180;s:6:\"height\";i:180;s:4:\"file\";s:29:\"2018/04/KCL-GENETICS-copy.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1331161403\";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:{}}}'),(1520,474,'_wp_attached_file','2018/04/cropped-KCL-GENETICS-copy.jpg'),(1521,474,'_wp_attachment_context','custom-logo'),(1522,474,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:240;s:4:\"file\";s:37:\"2018/04/cropped-KCL-GENETICS-copy.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"cropped-KCL-GENETICS-copy-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:{}}}'),(1537,487,'_wp_attached_file','2017/03/cropped-north-entrance.jpg'),(1538,487,'_wp_attachment_context','custom-header'),(1539,487,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:279;s:4:\"file\";s:34:\"2017/03/cropped-north-entrance.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cropped-north-entrance-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"cropped-north-entrance-300x70.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"cropped-north-entrance-768x179.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"cropped-north-entrance-1024x238.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"cropped-north-entrance-1200x279.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:380;}'),(1883,556,'_menu_item_menu_item_parent','309'),(1882,556,'_menu_item_type','post_type'),(1542,488,'_wp_attached_file','2018/04/cropped-KCL-GENETICS-copy-1.jpg'),(1543,488,'_wp_attachment_context','custom-header'),(1544,488,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:39:\"2018/04/cropped-KCL-GENETICS-copy-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-KCL-GENETICS-copy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"cropped-KCL-GENETICS-copy-1-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:39:\"cropped-KCL-GENETICS-copy-1-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:41:\"cropped-KCL-GENETICS-copy-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"cropped-KCL-GENETICS-copy-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:472;}'),(1929,464,'_oembed_f45ff8b222840a83e4ea01743eb60388','{{unknown}}'),(1553,491,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(1554,491,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:16:\"\"[your-subject]\"\";s:6:\"sender\";s:39:\"[your-name] <wordpress@kclgenetics.com>\";s:9:\"recipient\";s:17:\"runlranch@aol.com\";s:4:\"body\";s:161:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on  (http://kclgenetics.com)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1555,491,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:16:\"\"[your-subject]\"\";s:6:\"sender\";s:27:\"<wordpress@kclgenetics.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:103:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on  (http://kclgenetics.com)\";s:18:\"additional_headers\";s:30:\"Reply-To: support@maiahost.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1556,491,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(1557,491,'_additional_settings',''),(1558,491,'_locale','en_US'),(1559,472,'_edit_lock','1524265135:1'),(1560,502,'_wp_attached_file','2018/04/2450.pdf'),(1561,503,'_wp_attached_file','2018/04/102Z-KCL.jpg'),(1562,503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3696;s:6:\"height\";i:2448;s:4:\"file\";s:20:\"2018/04/102Z-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"102Z-KCL-150x150.jpg\";s:5:\"width\";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:\"102Z-KCL-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"102Z-KCL-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"102Z-KCL-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"102Z-KCL-1200x795.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:795;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492571315\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:9:\"0.0003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1563,504,'_wp_attached_file','2018/04/188A-KCL.jpg'),(1564,504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3310;s:6:\"height\";i:2448;s:4:\"file\";s:20:\"2018/04/188A-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"188A-KCL-150x150.jpg\";s:5:\"width\";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:\"188A-KCL-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"188A-KCL-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"188A-KCL-1024x757.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"188A-KCL-1200x887.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:887;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492647048\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"38\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1565,505,'_wp_attached_file','2018/04/415A-KCL.jpg'),(1566,505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3696;s:6:\"height\";i:2448;s:4:\"file\";s:20:\"2018/04/415A-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"415A-KCL-150x150.jpg\";s:5:\"width\";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:\"415A-KCL-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"415A-KCL-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"415A-KCL-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"415A-KCL-1200x795.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:795;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492058720\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"44\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1567,506,'_wp_attached_file','2018/04/561-Buck.jpg'),(1568,506,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4155;s:6:\"height\";i:2747;s:4:\"file\";s:20:\"2018/04/561-Buck.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"561-Buck-150x150.jpg\";s:5:\"width\";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:\"561-Buck-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"561-Buck-768x508.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"561-Buck-1024x677.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:677;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"561-Buck-1200x793.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:793;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:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492710325\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1569,507,'_wp_attached_file','2018/04/602D-KCL.jpg'),(1570,507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3696;s:6:\"height\";i:2448;s:4:\"file\";s:20:\"2018/04/602D-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"602D-KCL-150x150.jpg\";s:5:\"width\";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:\"602D-KCL-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"602D-KCL-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"602D-KCL-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"602D-KCL-1200x795.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:795;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492660076\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"52\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1571,508,'_wp_attached_file','2018/04/A18-KCL.jpg'),(1572,508,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3266;s:6:\"height\";i:2316;s:4:\"file\";s:19:\"2018/04/A18-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"A18-KCL-150x150.jpg\";s:5:\"width\";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:\"A18-KCL-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"A18-KCL-768x545.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"A18-KCL-1024x726.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:726;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"A18-KCL-1200x851.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:851;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492573622\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1573,509,'_wp_attached_file','2018/04/B224-KCL.jpg'),(1574,509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3696;s:6:\"height\";i:2448;s:4:\"file\";s:20:\"2018/04/B224-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"B224-KCL-150x150.jpg\";s:5:\"width\";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:\"B224-KCL-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"B224-KCL-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"B224-KCL-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"B224-KCL-1200x795.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:795;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492063064\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1575,510,'_wp_attached_file','2018/04/3B-KCL.jpg'),(1576,510,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3696;s:6:\"height\";i:2448;s:4:\"file\";s:18:\"2018/04/3B-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"3B-KCL-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"3B-KCL-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"3B-KCL-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"3B-KCL-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"3B-KCL-1200x795.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:795;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492576794\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"38\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1577,512,'_menu_item_type','post_type'),(1578,512,'_menu_item_menu_item_parent','0'),(1579,512,'_menu_item_object_id','145'),(1580,512,'_menu_item_object','post'),(1581,512,'_menu_item_target',''),(1582,512,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1583,512,'_menu_item_xfn',''),(1584,512,'_menu_item_url',''),(1692,533,'_menu_item_type','post_type'),(1586,513,'_menu_item_type','post_type'),(1587,513,'_menu_item_menu_item_parent','0'),(1588,513,'_menu_item_object_id','104'),(1589,513,'_menu_item_object','post'),(1590,513,'_menu_item_target',''),(1591,513,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1592,513,'_menu_item_xfn',''),(1593,513,'_menu_item_url',''),(1780,542,'_menu_item_url',''),(1595,514,'_menu_item_type','post_type'),(1596,514,'_menu_item_menu_item_parent','0'),(1597,514,'_menu_item_object_id','79'),(1598,514,'_menu_item_object','post'),(1599,514,'_menu_item_target',''),(1600,514,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1601,514,'_menu_item_xfn',''),(1602,514,'_menu_item_url',''),(1690,532,'_menu_item_url',''),(1604,515,'_menu_item_type','post_type'),(1605,515,'_menu_item_menu_item_parent','0'),(1606,515,'_menu_item_object_id','72'),(1607,515,'_menu_item_object','post'),(1608,515,'_menu_item_target',''),(1609,515,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1610,515,'_menu_item_xfn',''),(1611,515,'_menu_item_url',''),(1689,532,'_menu_item_xfn',''),(1613,516,'_menu_item_type','post_type'),(1614,516,'_menu_item_menu_item_parent','0'),(1615,516,'_menu_item_object_id','91'),(1616,516,'_menu_item_object','post'),(1617,516,'_menu_item_target',''),(1618,516,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1619,516,'_menu_item_xfn',''),(1620,516,'_menu_item_url',''),(1622,517,'_menu_item_type','post_type'),(1623,517,'_menu_item_menu_item_parent','0'),(1624,517,'_menu_item_object_id','148'),(1625,517,'_menu_item_object','post'),(1626,517,'_menu_item_target',''),(1627,517,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1628,517,'_menu_item_xfn',''),(1629,517,'_menu_item_url',''),(1688,532,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1631,518,'_menu_item_type','post_type'),(1632,518,'_menu_item_menu_item_parent','0'),(1633,518,'_menu_item_object_id','95'),(1634,518,'_menu_item_object','post'),(1635,518,'_menu_item_target',''),(1636,518,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1637,518,'_menu_item_xfn',''),(1638,518,'_menu_item_url',''),(1687,532,'_menu_item_target',''),(1686,532,'_menu_item_object','post'),(1649,520,'_menu_item_type','post_type'),(1650,520,'_menu_item_menu_item_parent','0'),(1651,520,'_menu_item_object_id','87'),(1652,520,'_menu_item_object','post'),(1653,520,'_menu_item_target',''),(1654,520,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1655,520,'_menu_item_xfn',''),(1656,520,'_menu_item_url',''),(1685,532,'_menu_item_object_id','142'),(1658,521,'_menu_item_type','post_type'),(1659,521,'_menu_item_menu_item_parent','0'),(1660,521,'_menu_item_object_id','129'),(1661,521,'_menu_item_object','post'),(1662,521,'_menu_item_target',''),(1663,521,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1664,521,'_menu_item_xfn',''),(1665,521,'_menu_item_url',''),(1667,522,'_menu_item_type','post_type'),(1668,522,'_menu_item_menu_item_parent','0'),(1669,522,'_menu_item_object_id','120'),(1670,522,'_menu_item_object','post'),(1671,522,'_menu_item_target',''),(1672,522,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1673,522,'_menu_item_xfn',''),(1674,522,'_menu_item_url',''),(1683,532,'_menu_item_type','post_type'),(1693,533,'_menu_item_menu_item_parent','0'),(1694,533,'_menu_item_object_id','116'),(1695,533,'_menu_item_object','post'),(1696,533,'_menu_item_target',''),(1697,533,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1698,533,'_menu_item_xfn',''),(1699,533,'_menu_item_url',''),(1775,542,'_menu_item_object_id','173'),(1774,542,'_menu_item_menu_item_parent','0'),(1710,535,'_menu_item_type','post_type'),(1711,535,'_menu_item_menu_item_parent','0'),(1712,535,'_menu_item_object_id','109'),(1713,535,'_menu_item_object','post'),(1714,535,'_menu_item_target',''),(1715,535,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1716,535,'_menu_item_xfn',''),(1717,535,'_menu_item_url',''),(1778,542,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1719,536,'_menu_item_type','post_type'),(1720,536,'_menu_item_menu_item_parent','0'),(1721,536,'_menu_item_object_id','123'),(1722,536,'_menu_item_object','post'),(1723,536,'_menu_item_target',''),(1724,536,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1725,536,'_menu_item_xfn',''),(1726,536,'_menu_item_url',''),(1777,542,'_menu_item_target',''),(1776,542,'_menu_item_object','post'),(1737,538,'_menu_item_type','post_type'),(1738,538,'_menu_item_menu_item_parent','0'),(1739,538,'_menu_item_object_id','139'),(1740,538,'_menu_item_object','post'),(1741,538,'_menu_item_target',''),(1742,538,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1743,538,'_menu_item_xfn',''),(1744,538,'_menu_item_url',''),(1779,542,'_menu_item_xfn',''),(1746,539,'_menu_item_type','post_type'),(1747,539,'_menu_item_menu_item_parent','0'),(1748,539,'_menu_item_object_id','99'),(1749,539,'_menu_item_object','post'),(1750,539,'_menu_item_target',''),(1751,539,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1752,539,'_menu_item_xfn',''),(1753,539,'_menu_item_url',''),(1888,556,'_menu_item_xfn',''),(1755,540,'_menu_item_type','post_type'),(1756,540,'_menu_item_menu_item_parent','0'),(1757,540,'_menu_item_object_id','83'),(1758,540,'_menu_item_object','post'),(1759,540,'_menu_item_target',''),(1760,540,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1761,540,'_menu_item_xfn',''),(1762,540,'_menu_item_url',''),(1935,616,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:28:\"2018/04/cropped-102Z-KCL.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-102Z-KCL-150x150.jpg\";s:5:\"width\";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:\"cropped-102Z-KCL-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:28:\"cropped-102Z-KCL-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:29:\"cropped-102Z-KCL-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:503;}'),(1934,616,'_wp_attachment_context','custom-header'),(1933,616,'_wp_attached_file','2018/04/cropped-102Z-KCL.jpg'),(2082,701,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:371;s:6:\"height\";i:275;s:4:\"file\";s:31:\"2018/05/product_videoonline.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"product_videoonline-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"product_videoonline-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:{}}}'),(1773,542,'_menu_item_type','post_type'),(1782,543,'_menu_item_type','post_type'),(1783,543,'_menu_item_menu_item_parent','0'),(1784,543,'_menu_item_object_id','193'),(1785,543,'_menu_item_object','post'),(1786,543,'_menu_item_target',''),(1787,543,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1788,543,'_menu_item_xfn',''),(1789,543,'_menu_item_url',''),(1791,544,'_menu_item_type','post_type'),(1792,544,'_menu_item_menu_item_parent','0'),(1793,544,'_menu_item_object_id','176'),(1794,544,'_menu_item_object','post'),(1795,544,'_menu_item_target',''),(1796,544,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1797,544,'_menu_item_xfn',''),(1798,544,'_menu_item_url',''),(1887,556,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1800,545,'_menu_item_type','post_type'),(1801,545,'_menu_item_menu_item_parent','0'),(1802,545,'_menu_item_object_id','190'),(1803,545,'_menu_item_object','post'),(1804,545,'_menu_item_target',''),(1805,545,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1806,545,'_menu_item_xfn',''),(1807,545,'_menu_item_url',''),(1886,556,'_menu_item_target',''),(1809,546,'_menu_item_type','post_type'),(1810,546,'_menu_item_menu_item_parent','0'),(1811,546,'_menu_item_object_id','164'),(1812,546,'_menu_item_object','post'),(1813,546,'_menu_item_target',''),(1814,546,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1815,546,'_menu_item_xfn',''),(1816,546,'_menu_item_url',''),(1885,556,'_menu_item_object','post'),(1818,547,'_menu_item_type','post_type'),(1819,547,'_menu_item_menu_item_parent','0'),(1820,547,'_menu_item_object_id','158'),(1821,547,'_menu_item_object','post'),(1822,547,'_menu_item_target',''),(1823,547,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1824,547,'_menu_item_xfn',''),(1825,547,'_menu_item_url',''),(1827,548,'_menu_item_type','post_type'),(1828,548,'_menu_item_menu_item_parent','0'),(1829,548,'_menu_item_object_id','167'),(1830,548,'_menu_item_object','post'),(1831,548,'_menu_item_target',''),(1832,548,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1833,548,'_menu_item_xfn',''),(1834,548,'_menu_item_url',''),(1889,556,'_menu_item_url',''),(1836,549,'_menu_item_type','post_type'),(1837,549,'_menu_item_menu_item_parent','0'),(1838,549,'_menu_item_object_id','186'),(1839,549,'_menu_item_object','post'),(1840,549,'_menu_item_target',''),(1841,549,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1842,549,'_menu_item_xfn',''),(1843,549,'_menu_item_url',''),(2098,662,'_oembed_cff3a682e67a021e0cc389de2ce7d974','{{unknown}}'),(1845,550,'_menu_item_type','post_type'),(1846,550,'_menu_item_menu_item_parent','0'),(1847,550,'_menu_item_object_id','183'),(1848,550,'_menu_item_object','post'),(1849,550,'_menu_item_target',''),(1850,550,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1851,550,'_menu_item_xfn',''),(1852,550,'_menu_item_url',''),(1893,303,'_thumbnail_id','92'),(1854,551,'_menu_item_type','post_type'),(1855,551,'_menu_item_menu_item_parent','0'),(1856,551,'_menu_item_object_id','161'),(1857,551,'_menu_item_object','post'),(1858,551,'_menu_item_target',''),(1859,551,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1860,551,'_menu_item_xfn',''),(1861,551,'_menu_item_url',''),(1863,552,'_menu_item_type','post_type'),(1864,552,'_menu_item_menu_item_parent','0'),(1865,552,'_menu_item_object_id','180'),(1866,552,'_menu_item_object','post'),(1867,552,'_menu_item_target',''),(1868,552,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1869,552,'_menu_item_xfn',''),(1870,552,'_menu_item_url',''),(1872,553,'_menu_item_type','post_type'),(1873,553,'_menu_item_menu_item_parent','0'),(1874,553,'_menu_item_object_id','170'),(1875,553,'_menu_item_object','post'),(1876,553,'_menu_item_target',''),(1877,553,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1878,553,'_menu_item_xfn',''),(1879,553,'_menu_item_url',''),(1892,171,'_wp_old_slug','th-71u-719t-mr-hereford-11x'),(2084,465,'_edit_lock','1544295008:1'),(1936,616,'_wp_attachment_custom_header_last_used_bg-photo-frame','1525052001'),(1937,616,'_wp_attachment_is_custom_header','bg-photo-frame'),(1939,617,'_wp_attached_file','2017/03/cropped-banner-1.jpg'),(1940,617,'_wp_attachment_context','custom-header'),(1941,617,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:624;s:4:\"file\";s:28:\"2017/03/cropped-banner-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-banner-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:27:\"cropped-banner-1-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"cropped-banner-1-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"cropped-banner-1-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-banner-1-840x560.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"poseidon-header-image\";a:4:{s:4:\"file\";s:29:\"cropped-banner-1-1920x480.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"poseidon-thumbnail-small\";a:4:{s:4:\"file\";s:27:\"cropped-banner-1-120x80.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"poseidon-thumbnail-medium\";a:4:{s:4:\"file\";s:28:\"cropped-banner-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"poseidon-thumbnail-large\";a:4:{s:4:\"file\";s:28:\"cropped-banner-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"poseidon-thumbnail-single\";a:4:{s:4:\"file\";s:28:\"cropped-banner-1-840x420.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:202;}'),(1942,617,'_wp_attachment_custom_header_last_used_poseidon','1525052498'),(1943,617,'_wp_attachment_is_custom_header','poseidon'),(1944,619,'_wp_attached_file','2018/05/B224-KCL.jpg'),(1945,619,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3696;s:6:\"height\";i:2448;s:4:\"file\";s:20:\"2018/05/B224-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"B224-KCL-150x150.jpg\";s:5:\"width\";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:\"B224-KCL-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"B224-KCL-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"B224-KCL-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"B224-KCL-1200x795.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:795;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492063064\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1946,618,'_edit_last','1'),(1947,618,'_edit_lock','1528479487:1'),(1949,618,'_thumbnail_id','619'),(1954,627,'_menu_item_type','post_type'),(1955,627,'_menu_item_menu_item_parent','0'),(1956,627,'_menu_item_object_id','618'),(1957,627,'_menu_item_object','post'),(1958,627,'_menu_item_target',''),(1959,627,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1960,627,'_menu_item_xfn',''),(1961,627,'_menu_item_url',''),(1963,629,'_wp_attached_file','2018/05/20C-KCL.jpg'),(1964,629,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3576;s:6:\"height\";i:2448;s:4:\"file\";s:19:\"2018/05/20C-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"20C-KCL-150x150.jpg\";s:5:\"width\";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:\"20C-KCL-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:19:\"20C-KCL-768x526.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:526;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"20C-KCL-1024x701.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:701;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"20C-KCL-1200x821.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:821;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492648515\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"52\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1965,628,'_edit_last','1'),(1966,628,'_edit_lock','1525219727:1'),(1967,628,'_thumbnail_id','629'),(1969,632,'_menu_item_type','post_type'),(1970,632,'_menu_item_menu_item_parent','0'),(1971,632,'_menu_item_object_id','628'),(1972,632,'_menu_item_object','post'),(1973,632,'_menu_item_target',''),(1974,632,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1975,632,'_menu_item_xfn',''),(1976,632,'_menu_item_url',''),(1979,636,'_wp_attached_file','2018/05/188A-KCL.jpg'),(1980,636,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3310;s:6:\"height\";i:2448;s:4:\"file\";s:20:\"2018/05/188A-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"188A-KCL-150x150.jpg\";s:5:\"width\";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:\"188A-KCL-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"188A-KCL-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"188A-KCL-1024x757.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"188A-KCL-1200x887.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:887;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492647048\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"38\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1981,637,'_wp_attached_file','2018/05/102Z-KCL.jpg'),(1982,637,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3696;s:6:\"height\";i:2448;s:4:\"file\";s:20:\"2018/05/102Z-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"102Z-KCL-150x150.jpg\";s:5:\"width\";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:\"102Z-KCL-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"102Z-KCL-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"102Z-KCL-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"102Z-KCL-1200x795.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:795;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492571315\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:9:\"0.0003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1983,638,'_wp_attached_file','2018/05/112W-KCL.jpg'),(1984,638,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3696;s:6:\"height\";i:2448;s:4:\"file\";s:20:\"2018/05/112W-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"112W-KCL-150x150.jpg\";s:5:\"width\";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:\"112W-KCL-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"112W-KCL-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"112W-KCL-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"112W-KCL-1200x795.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:795;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492565929\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"42\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1985,639,'_wp_attached_file','2018/05/A18-KCL.jpg'),(1986,639,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3266;s:6:\"height\";i:2316;s:4:\"file\";s:19:\"2018/05/A18-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"A18-KCL-150x150.jpg\";s:5:\"width\";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:\"A18-KCL-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"A18-KCL-768x545.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"A18-KCL-1024x726.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:726;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"A18-KCL-1200x851.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:851;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492573622\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1987,640,'_wp_attached_file','2018/05/A39-KCL.jpg'),(1988,640,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3696;s:6:\"height\";i:2448;s:4:\"file\";s:19:\"2018/05/A39-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"A39-KCL-150x150.jpg\";s:5:\"width\";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:\"A39-KCL-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"A39-KCL-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"A39-KCL-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"A39-KCL-1200x795.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:795;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492572209\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"42\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1989,635,'_edit_last','1'),(1990,635,'_edit_lock','1525216540:1'),(1992,642,'_wp_attached_file','2018/05/Z201-Redhills.jpg'),(1993,642,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3391;s:6:\"height\";i:2269;s:4:\"file\";s:25:\"2018/05/Z201-Redhills.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Z201-Redhills-150x150.jpg\";s:5:\"width\";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:\"Z201-Redhills-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Z201-Redhills-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Z201-Redhills-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Z201-Redhills-1200x803.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:803;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492571699\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"38\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1994,643,'_wp_attached_file','2018/05/03D-KCL.jpg'),(1995,643,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3461;s:6:\"height\";i:2345;s:4:\"file\";s:19:\"2018/05/03D-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"03D-KCL-150x150.jpg\";s:5:\"width\";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:\"03D-KCL-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"03D-KCL-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"03D-KCL-1024x694.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:694;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"03D-KCL-1200x813.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:813;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524104652\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1996,644,'_wp_attached_file','2018/05/53Y-Larson.jpg'),(1997,644,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3060;s:6:\"height\";i:1926;s:4:\"file\";s:22:\"2018/05/53Y-Larson.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"53Y-Larson-150x150.jpg\";s:5:\"width\";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:\"53Y-Larson-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"53Y-Larson-768x483.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"53Y-Larson-1024x645.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"53Y-Larson-1200x755.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:755;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1397520891\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1998,645,'_wp_attached_file','2018/05/60C-KCL.jpg'),(1999,645,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3509;s:6:\"height\";i:2381;s:4:\"file\";s:19:\"2018/05/60C-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"60C-KCL-150x150.jpg\";s:5:\"width\";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:\"60C-KCL-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"60C-KCL-768x521.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"60C-KCL-1024x695.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:695;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"60C-KCL-1200x814.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:814;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:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524023790\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2000,646,'_wp_attached_file','2018/05/102A-KCL.jpg'),(2001,646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3559;s:6:\"height\";i:2448;s:4:\"file\";s:20:\"2018/05/102A-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"102A-KCL-150x150.jpg\";s:5:\"width\";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:\"102A-KCL-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"102A-KCL-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"102A-KCL-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"102A-KCL-1200x825.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:825;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:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524005375\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"48\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2002,647,'_wp_attached_file','2018/05/602D-KCL-e1525224323307.jpg'),(2003,647,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2880;s:6:\"height\";i:1801;s:4:\"file\";s:35:\"2018/05/602D-KCL-e1525224323307.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"602D-KCL-e1525224046433-150x150.jpg\";s:5:\"width\";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:\"602D-KCL-e1525224046433-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"602D-KCL-e1525224046433-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"602D-KCL-e1525224046433-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"602D-KCL-e1525224046433-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;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:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524011726\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"48\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2004,648,'_wp_attached_file','2018/05/6000-KCL-Shaw.jpg'),(2005,648,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3696;s:6:\"height\";i:2448;s:4:\"file\";s:25:\"2018/05/6000-KCL-Shaw.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"6000-KCL-Shaw-150x150.jpg\";s:5:\"width\";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:\"6000-KCL-Shaw-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"6000-KCL-Shaw-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"6000-KCL-Shaw-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"6000-KCL-Shaw-1200x795.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:795;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524093767\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2006,649,'_wp_attached_file','2018/05/6003-KCL-Shaw.jpg'),(2007,649,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3402;s:6:\"height\";i:2366;s:4:\"file\";s:25:\"2018/05/6003-KCL-Shaw.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"6003-KCL-Shaw-150x150.jpg\";s:5:\"width\";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:\"6003-KCL-Shaw-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"6003-KCL-Shaw-768x534.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"6003-KCL-Shaw-1024x712.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"6003-KCL-Shaw-1200x835.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:835;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524095535\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:9:\"0.0003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2008,650,'_wp_attached_file','2018/05/6013-KCL-Shaw.jpg'),(2009,650,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3607;s:6:\"height\";i:2448;s:4:\"file\";s:25:\"2018/05/6013-KCL-Shaw.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"6013-KCL-Shaw-150x150.jpg\";s:5:\"width\";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:\"6013-KCL-Shaw-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"6013-KCL-Shaw-768x521.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"6013-KCL-Shaw-1024x695.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:695;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"6013-KCL-Shaw-1200x814.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:814;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:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524096406\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2010,651,'_wp_attached_file','2018/05/6050-KCL-Shaw.jpg'),(2011,651,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3389;s:6:\"height\";i:2351;s:4:\"file\";s:25:\"2018/05/6050-KCL-Shaw.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"6050-KCL-Shaw-150x150.jpg\";s:5:\"width\";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:\"6050-KCL-Shaw-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"6050-KCL-Shaw-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"6050-KCL-Shaw-1024x710.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:710;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"6050-KCL-Shaw-1200x832.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:832;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524093434\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"48\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2012,652,'_wp_attached_file','2018/05/C11-KCL.jpg'),(2013,652,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3383;s:6:\"height\";i:2342;s:4:\"file\";s:19:\"2018/05/C11-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"C11-KCL-150x150.jpg\";s:5:\"width\";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:\"C11-KCL-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"C11-KCL-768x532.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"C11-KCL-1024x709.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:709;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"C11-KCL-1200x831.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:831;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:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524101418\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2014,653,'_wp_attached_file','2018/05/C17-KCL.jpg'),(2015,653,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3617;s:6:\"height\";i:2448;s:4:\"file\";s:19:\"2018/05/C17-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"C17-KCL-150x150.jpg\";s:5:\"width\";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:\"C17-KCL-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"C17-KCL-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"C17-KCL-1024x693.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"C17-KCL-1200x812.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:812;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:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524104383\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2016,654,'_wp_attached_file','2018/05/D6-KCL.jpg'),(2017,654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3312;s:6:\"height\";i:2352;s:4:\"file\";s:18:\"2018/05/D6-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"D6-KCL-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"D6-KCL-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"D6-KCL-768x545.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"D6-KCL-1024x727.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:727;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"D6-KCL-1200x852.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:852;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:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524018333\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2018,655,'_wp_attached_file','2018/05/Y40-KCL.jpg'),(2019,655,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3230;s:6:\"height\";i:2308;s:4:\"file\";s:19:\"2018/05/Y40-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Y40-KCL-150x150.jpg\";s:5:\"width\";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:\"Y40-KCL-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"Y40-KCL-768x549.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Y40-KCL-1024x732.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:732;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"Y40-KCL-1200x857.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:857;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:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524006989\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"42\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2023,54,'_thumbnail_id','197'),(2024,51,'_thumbnail_id','380'),(2025,472,'_wp_attachment_is_custom_background','twentysixteen'),(2026,653,'_wp_attachment_is_custom_background','twentysixteen'),(2031,662,'_wp_attached_file','2018/04/cropped-KCL-GENETICS-copy-2.jpg'),(2032,662,'_wp_attachment_context','site-icon'),(2033,662,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:39:\"2018/04/cropped-KCL-GENETICS-copy-2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-KCL-GENETICS-copy-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:39:\"cropped-KCL-GENETICS-copy-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:39:\"cropped-KCL-GENETICS-copy-2-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:39:\"cropped-KCL-GENETICS-copy-2-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:39:\"cropped-KCL-GENETICS-copy-2-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:37:\"cropped-KCL-GENETICS-copy-2-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2044,667,'_wp_attached_file','2018/05/400dpiLogoCropped-e1556756960807.jpg'),(2045,667,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:228;s:4:\"file\";s:44:\"2018/05/400dpiLogoCropped-e1556756960807.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"400dpiLogoCropped-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"400dpiLogoCropped-300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"400dpiLogoCropped-768x583.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"400dpiLogoCropped-1024x777.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:777;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"400dpiLogoCropped-1200x910.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:910;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:{}}}'),(2081,701,'_wp_attached_file','2018/05/product_videoonline.png'),(2051,647,'_edit_lock','1525224341:1'),(2052,647,'_wp_attachment_backup_sizes','a:7:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:3246;s:6:\"height\";i:2304;s:4:\"file\";s:12:\"602D-KCL.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:20:\"602D-KCL-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:\"602D-KCL-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:20:\"602D-KCL-768x545.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:21:\"602D-KCL-1024x727.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:727;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"post-thumbnail-orig\";a:4:{s:4:\"file\";s:21:\"602D-KCL-1200x852.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:852;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1525224323307\";a:3:{s:5:\"width\";i:2880;s:6:\"height\";i:1801;s:4:\"file\";s:27:\"602D-KCL-e1525224046433.jpg\";}}'),(2053,647,'_edit_last','1'),(2096,731,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3129;s:6:\"height\";i:2276;s:4:\"file\";s:19:\"2018/06/D12-KCL.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"D12-KCL-150x150.jpg\";s:5:\"width\";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:\"D12-KCL-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"D12-KCL-768x559.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"D12-KCL-1024x745.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:745;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"D12-KCL-1200x873.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:873;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524095117\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2095,731,'_wp_attached_file','2018/06/D12-KCL.jpg'),(2094,474,'_oembed_1779aa6fabc78f290bd63119ec1d1826','{{unknown}}'),(2064,467,'_wp_attachment_image_alt','Big KCL Supporter'),(2065,677,'_wp_attached_file','2018/05/LarsonsHerefordAlliance051918.pdf'),(2066,679,'_wp_attached_file','2018/05/2018-Hereford-Alliance-Cover.jpg'),(2067,679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1275;s:6:\"height\";i:1650;s:4:\"file\";s:40:\"2018/05/2018-Hereford-Alliance-Cover.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"2018-Hereford-Alliance-Cover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"2018-Hereford-Alliance-Cover-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"2018-Hereford-Alliance-Cover-768x994.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"2018-Hereford-Alliance-Cover-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"2018-Hereford-Alliance-Cover-1200x1553.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1553;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:{}}}'),(2075,687,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:759;s:6:\"height\";i:422;s:4:\"file\";s:18:\"facebook-main4.jpg\";}}'),(2076,44,'_oembed_b8aaf0976072c757979d2c8ca8add3ea','{{unknown}}'),(2077,695,'_wp_attached_file','2018/05/icon_pdf.png'),(2078,695,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:338;s:6:\"height\";i:334;s:4:\"file\";s:20:\"2018/05/icon_pdf.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"icon_pdf-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:20:\"icon_pdf-300x296.png\";s:5:\"width\";i:300;s:6:\"height\";i:296;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:{}}}'),(2073,687,'_wp_attachment_image_alt','Follow Us onFB'),(2071,687,'_wp_attached_file','2018/05/facebook-main4-e1525367362166.jpg'),(2072,687,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:300;s:4:\"file\";s:41:\"2018/05/facebook-main4-e1525367362166.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"facebook-main4-150x150.jpg\";s:5:\"width\";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:\"facebook-main4-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;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:{}}}'),(2079,461,'_oembed_acf8f386f3e46ffe6047cb6a031def8e','{{unknown}}'),(2080,472,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:180;s:6:\"height\";i:180;s:4:\"file\";s:21:\"KCL-GENETICS-copy.jpg\";}s:18:\"full-1525369415272\";a:3:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:36:\"KCL-GENETICS-copy-e1525369397533.jpg\";}}'),(2099,446,'_oembed_fe5dc045f2672ef12537c18a0c8779fb','{{unknown}}'),(2100,434,'_oembed_6cfd7060d50d0a239b0688ca3f692cf8','{{unknown}}'),(2101,407,'_oembed_981d549f6f2af67f98cd98f6132e3b6d','{{unknown}}'),(2107,465,'_wp_attachment_backup_sizes','a:5:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:3543;s:6:\"height\";i:2448;s:4:\"file\";s:14:\"75C-KCL-TH.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:22:\"75C-KCL-TH-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:\"75C-KCL-TH-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:22:\"75C-KCL-TH-768x531.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:23:\"75C-KCL-TH-1024x708.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(2108,465,'_edit_last','1'),(2110,54,'_elementor_template_type','wp-post'),(2111,54,'_elementor_version','2.9.7'),(2120,54,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4bf1baf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7b09483\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.458},\"elements\":[{\"id\":\"e727e10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2020\\/04\\/covid-header.png.jpeg\",\"id\":917},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"381b55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.465},\"elements\":[{\"id\":\"17e3305\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2020\\/04\\/72048917_519360131958583_4843767720182808576_n-2.jpg\",\"id\":919}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ce0e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"2020 Hereford Alliance Sale Canceled <br>Due to Coronavirus Pandemic<br>We Look forward to seeing you in 2021.<br>Give Us a Call if we can be of any service.\",\"align\":\"center\",\"title_color\":\"#ED0808\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2021 Hereford Alliance Sale\",\"highlighted_text\":\"May 15, 2021\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 15, 2021 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/trac\\u2026\\/docs\\/larsonsherefordalliance051819\\/2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 15, 2021\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8caf5c0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8aeccdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"caption_source\":\"custom\",\"caption\":\"Look for a Daughter...\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5cdef\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2021 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption\":\"Coming Soon. Expect online May 08, 2019\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/playlist?list=PL3K3ghzeET2TxNcajo1xU76dSS31QL2sy\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2121,741,'_wp_page_template','default'),(2122,741,'_thumbnail_id','197'),(2123,741,'_elementor_edit_mode','builder'),(2124,741,'_elementor_template_type','post'),(2125,741,'_elementor_version','2.5.14'),(2126,741,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2f88380\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped.jpg\",\"id\":667},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"19bacd4\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Download Catalog\",\"highlighted_text\":\"Now!\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h1\",\"marker_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for Download\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2118,740,'_wp_attached_file','2019/05/Logo.png'),(2119,740,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:659;s:6:\"height\";i:500;s:4:\"file\";s:16:\"2019/05/Logo.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"Logo-300x228.png\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"bizworx-medium-thumb\";a:4:{s:4:\"file\";s:16:\"Logo-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"bizworx-small-thumb\";a:4:{s:4:\"file\";s:16:\"Logo-230x175.png\";s:5:\"width\";i:230;s:6:\"height\";i:175;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:{}}}'),(2127,742,'_wp_attached_file','2019/05/HrfdAllianceLogo2015-e1556757314259.jpg'),(2128,742,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2362;s:6:\"height\";i:1328;s:4:\"file\";s:47:\"2019/05/HrfdAllianceLogo2015-e1556757314259.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"HrfdAllianceLogo2015-e1556757314259-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"HrfdAllianceLogo2015-e1556757314259-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:47:\"HrfdAllianceLogo2015-e1556757314259-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:48:\"HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"bizworx-large-thumb\";a:4:{s:4:\"file\";s:47:\"HrfdAllianceLogo2015-e1556757314259-830x467.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"bizworx-medium-thumb\";a:4:{s:4:\"file\";s:47:\"HrfdAllianceLogo2015-e1556757314259-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"bizworx-small-thumb\";a:4:{s:4:\"file\";s:47:\"HrfdAllianceLogo2015-e1556757314259-230x129.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:129;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:14:\"vintage banner\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2129,667,'_edit_lock','1556757105:1'),(2130,667,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1944;s:6:\"height\";i:1475;s:4:\"file\";s:21:\"400dpiLogoCropped.jpg\";}}'),(2131,667,'_edit_last','1'),(2132,742,'_edit_lock','1556758130:1'),(2133,742,'_edit_last','1'),(2141,744,'_wp_page_template','default'),(2142,744,'_thumbnail_id','197'),(2143,744,'_elementor_edit_mode','builder'),(2144,744,'_elementor_template_type','post'),(2145,744,'_elementor_version','2.5.14'),(2146,744,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Download Catalog\",\"highlighted_text\":\"Now!\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h1\",\"marker_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Download\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2140,742,'_wp_attachment_backup_sizes','a:8:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2362;s:6:\"height\";i:1731;s:4:\"file\";s:24:\"HrfdAllianceLogo2015.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:32:\"HrfdAllianceLogo2015-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:32:\"HrfdAllianceLogo2015-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:32:\"HrfdAllianceLogo2015-768x563.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:33:\"HrfdAllianceLogo2015-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"bizworx-large-thumb-orig\";a:4:{s:4:\"file\";s:32:\"HrfdAllianceLogo2015-830x608.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"bizworx-medium-thumb-orig\";a:4:{s:4:\"file\";s:32:\"HrfdAllianceLogo2015-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"bizworx-small-thumb-orig\";a:4:{s:4:\"file\";s:32:\"HrfdAllianceLogo2015-230x169.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(2156,747,'_wp_page_template','default'),(2157,747,'_thumbnail_id','197'),(2158,747,'_elementor_edit_mode','builder'),(2159,747,'_elementor_template_type','post'),(2160,747,'_elementor_version','2.5.14'),(2161,747,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Download Catalog\",\"highlighted_text\":\"Now!\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h1\",\"marker_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Download\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Auction will be Live on the Internet\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2154,746,'_wp_attached_file','2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg'),(2155,746,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:160;s:4:\"file\";s:48:\"2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"714af614-5904-4135-a691-5b34f6df8bdc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"bizworx-medium-thumb\";a:4:{s:4:\"file\";s:48:\"714af614-5904-4135-a691-5b34f6df8bdc-550x160.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"bizworx-small-thumb\";a:4:{s:4:\"file\";s:47:\"714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:46;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:{}}}'),(2164,748,'_wp_page_template','default'),(2165,748,'_thumbnail_id','197'),(2166,748,'_elementor_edit_mode','builder'),(2167,748,'_elementor_template_type','post'),(2168,748,'_elementor_version','2.5.14'),(2169,748,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Download Catalog\",\"highlighted_text\":\"Now!\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h1\",\"marker_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Download\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Auction will be Live on the Internet\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2171,749,'_wp_page_template','default'),(2172,749,'_thumbnail_id','197'),(2173,749,'_elementor_edit_mode','builder'),(2174,749,'_elementor_template_type','post'),(2175,749,'_elementor_version','2.5.14'),(2176,749,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Download Catalog\",\"highlighted_text\":\"Now!\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h1\",\"marker_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Download\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Auction will be Live on the Internet\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2188,753,'_wp_page_template','default'),(2189,753,'_thumbnail_id','197'),(2190,753,'_elementor_edit_mode','builder'),(2191,753,'_elementor_template_type','post'),(2192,753,'_elementor_version','2.5.14'),(2193,753,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Download Catalog\",\"highlighted_text\":\"Now!\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h1\",\"marker_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Download\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Auction will be Live on the Internet\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2183,751,'_wp_attached_file','2019/05/MCS_2_02.gif'),(2184,751,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:254;s:6:\"height\";i:292;s:4:\"file\";s:20:\"2019/05/MCS_2_02.gif\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"MCS_2_02-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:19:\"bizworx-small-thumb\";a:4:{s:4:\"file\";s:20:\"MCS_2_02-230x264.gif\";s:5:\"width\";i:230;s:6:\"height\";i:264;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2186,752,'_wp_attached_file','2019/05/digital-catalog.png'),(2187,752,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:27:\"2019/05/digital-catalog.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"digital-catalog-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"digital-catalog-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"bizworx-medium-thumb\";a:4:{s:4:\"file\";s:27:\"digital-catalog-450x400.png\";s:5:\"width\";i:450;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"bizworx-small-thumb\";a:4:{s:4:\"file\";s:27:\"digital-catalog-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;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:{}}}'),(2201,755,'_wp_page_template','default'),(2202,755,'_thumbnail_id','197'),(2203,755,'_elementor_edit_mode','builder'),(2204,755,'_elementor_template_type','post'),(2205,755,'_elementor_version','2.5.14'),(2206,755,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Download Catalog\",\"highlighted_text\":\"Now!\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h1\",\"marker_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Download\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Auction will be Live on the Internet\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2215,757,'_wp_page_template','default'),(2208,756,'_wp_page_template','default'),(2209,756,'_thumbnail_id','197'),(2210,756,'_elementor_edit_mode','builder'),(2211,756,'_elementor_template_type','post'),(2212,756,'_elementor_version','2.5.14'),(2213,756,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Download Catalog\",\"highlighted_text\":\"Now!\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h1\",\"marker_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Download\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2216,757,'_thumbnail_id','197'),(2217,757,'_elementor_edit_mode','builder'),(2218,757,'_elementor_template_type','post'),(2219,757,'_elementor_version','2.5.14'),(2220,757,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Download Catalog\",\"highlighted_text\":\"Now!\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h1\",\"marker_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2463,808,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale Save the Date\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2221,758,'_wp_page_template','default'),(2222,758,'_thumbnail_id','197'),(2223,758,'_elementor_edit_mode','builder'),(2224,758,'_elementor_template_type','post'),(2225,758,'_elementor_version','2.5.14'),(2226,758,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale Save the Date\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2462,808,'_elementor_version','2.5.14'),(2241,761,'_wp_page_template','default'),(2242,761,'_thumbnail_id','197'),(2243,761,'_elementor_edit_mode','builder'),(2244,761,'_elementor_template_type','post'),(2245,761,'_elementor_version','2.5.14'),(2246,761,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale Save the Date\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2248,762,'_wp_page_template','default'),(2249,762,'_thumbnail_id','197'),(2234,760,'_wp_page_template','default'),(2235,760,'_thumbnail_id','197'),(2236,760,'_elementor_edit_mode','builder'),(2237,760,'_elementor_template_type','post'),(2238,760,'_elementor_version','2.5.14'),(2239,760,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale Save the Date\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2250,762,'_elementor_edit_mode','builder'),(2251,762,'_elementor_template_type','post'),(2252,762,'_elementor_version','2.5.14'),(2253,762,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale Save the Date\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2254,763,'_wp_page_template','default'),(2255,763,'_thumbnail_id','197'),(2256,763,'_elementor_edit_mode','builder'),(2257,763,'_elementor_template_type','post'),(2258,763,'_elementor_version','2.5.14'),(2259,763,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale Save the Date\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2261,766,'_wp_page_template','default'),(2262,766,'_thumbnail_id','197'),(2263,766,'_elementor_template_type','post'),(2264,766,'_elementor_version','2.5.14'),(2265,766,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale Save the Date\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2266,766,'_elementor_edit_mode','builder'),(2459,808,'_wp_page_template','default'),(2282,769,'_wp_page_template','default'),(2276,768,'_thumbnail_id','197'),(2277,768,'_elementor_template_type','post'),(2278,768,'_elementor_version','2.5.14'),(2279,768,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale Save the Date\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2275,768,'_wp_page_template','default'),(2460,808,'_thumbnail_id','197'),(2461,808,'_elementor_template_type','post'),(2280,768,'_elementor_edit_mode','builder'),(2283,769,'_thumbnail_id','197'),(2284,769,'_elementor_template_type','post'),(2285,769,'_elementor_version','2.5.14'),(2286,769,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale Save the Date\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-91\",\"right\":\"-91\",\"bottom\":\"-91\",\"left\":\"-91\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"857480d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2287,769,'_elementor_edit_mode','builder'),(2296,771,'_thumbnail_id','197'),(2297,771,'_elementor_template_type','post'),(2298,771,'_elementor_version','2.5.14'),(2299,771,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale Save the Date\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-91\",\"right\":\"-91\",\"bottom\":\"-91\",\"left\":\"-91\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2295,771,'_wp_page_template','default'),(2302,772,'_wp_page_template','default'),(2303,772,'_thumbnail_id','197'),(2300,771,'_elementor_edit_mode','builder'),(2304,772,'_elementor_template_type','post'),(2305,772,'_elementor_version','2.5.14'),(2306,772,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale Save the Date\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-91\",\"right\":\"-91\",\"bottom\":\"-91\",\"left\":\"-91\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"08d3b22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1921e87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"404e236\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2307,772,'_elementor_edit_mode','builder'),(2464,808,'_elementor_edit_mode','builder'),(2466,54,'_elementor_pro_version','2.5.8'),(2469,809,'_elementor_template_type','post'),(2470,809,'_elementor_version','2.5.14'),(2471,809,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2327,44,'_elementor_edit_mode','builder'),(2328,44,'_elementor_template_type','wp-post'),(2329,44,'_elementor_version','2.9.7'),(2330,44,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5dbdac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfe19ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69.681},\"elements\":[{\"id\":\"427e680\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2020\\/04\\/covid-header.png.jpeg\",\"id\":917},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e4246f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30.194},\"elements\":[{\"id\":\"f60bf89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2020\\/04\\/72048917_519360131958583_4843767720182808576_n-2.jpg\",\"id\":919}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bcf58d\",\"elType\":\"widget\",\"settings\":{\"title\":\"The 2020 Hereford Alliance Sale Has Been Cancelled Due to the Corona Virus Pandemic\",\"align\":\"center\",\"title_color\":\"#F00606\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"da7c34f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Join Us May 2020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2021 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255,255,255,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2021-05-15 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"}],\"isInner\":false}],\"isInner\":false}]'),(2331,780,'_wp_page_template','default'),(2332,780,'_elementor_edit_mode','builder'),(2333,780,'_elementor_template_type','post'),(2334,780,'_elementor_version','2.5.14'),(2335,780,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb36da8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2f97115\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b9d28be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2336,781,'_wp_page_template','default'),(2337,781,'_elementor_edit_mode','builder'),(2338,781,'_elementor_template_type','post'),(2339,781,'_elementor_version','2.5.14'),(2340,781,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb36da8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2f97115\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b9d28be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2341,782,'_wp_page_template','default'),(2342,782,'_elementor_edit_mode','builder'),(2343,782,'_elementor_template_type','post'),(2344,782,'_elementor_version','2.5.14'),(2345,782,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb36da8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2f97115\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b9d28be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2346,783,'_wp_page_template','default'),(2347,783,'_elementor_edit_mode','builder'),(2348,783,'_elementor_template_type','post'),(2349,783,'_elementor_version','2.5.14'),(2350,783,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb36da8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2f97115\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b9d28be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\"},\"elements\":[],\"widgetType\":\"countdown\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2351,784,'_wp_page_template','default'),(2352,784,'_elementor_edit_mode','builder'),(2353,784,'_elementor_template_type','post'),(2354,784,'_elementor_version','2.5.14'),(2355,784,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb36da8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2f97115\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b9d28be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"countdown\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2356,785,'_wp_page_template','default'),(2357,785,'_elementor_edit_mode','builder'),(2358,785,'_elementor_template_type','post'),(2359,785,'_elementor_version','2.5.14'),(2360,785,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb36da8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2f97115\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b9d28be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"countdown\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2361,786,'_wp_page_template','default'),(2362,786,'_elementor_edit_mode','builder'),(2363,786,'_elementor_template_type','post'),(2364,786,'_elementor_version','2.5.14'),(2365,786,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb36da8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2f97115\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b9d28be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"countdown\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2378,789,'_wp_page_template','default'),(2379,789,'_elementor_edit_mode','builder'),(2380,789,'_elementor_template_type','post'),(2381,789,'_elementor_version','2.5.14'),(2382,789,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb36da8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2f97115\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b9d28be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2415,796,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2372,788,'_wp_page_template','default'),(2373,788,'_elementor_edit_mode','builder'),(2374,788,'_elementor_template_type','post'),(2375,788,'_elementor_version','2.5.14'),(2376,788,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb36da8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2f97115\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b9d28be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"countdown\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2467,809,'_wp_page_template','default'),(2468,809,'_thumbnail_id','197'),(2414,796,'_elementor_version','2.5.14'),(2384,790,'_wp_page_template','default'),(2385,790,'_elementor_edit_mode','builder'),(2386,790,'_elementor_template_type','post'),(2387,790,'_elementor_version','2.5.14'),(2388,790,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb36da8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2f97115\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b9d28be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2411,796,'_wp_page_template','default'),(2412,796,'_elementor_edit_mode','builder'),(2413,796,'_elementor_template_type','post'),(2389,791,'_wp_page_template','default'),(2390,791,'_elementor_edit_mode','builder'),(2391,791,'_elementor_template_type','post'),(2392,791,'_elementor_version','2.5.14'),(2393,791,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb36da8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2f97115\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b9d28be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2394,792,'_wp_page_template','default'),(2395,792,'_elementor_edit_mode','builder'),(2396,792,'_elementor_template_type','post'),(2397,792,'_elementor_version','2.5.14'),(2398,792,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb36da8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2f97115\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b9d28be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2417,797,'_wp_page_template','default'),(2405,795,'_wp_page_template','default'),(2406,795,'_elementor_edit_mode','builder'),(2407,795,'_elementor_template_type','post'),(2408,795,'_elementor_version','2.5.14'),(2409,795,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb36da8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2f97115\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b9d28be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2418,797,'_elementor_edit_mode','builder'),(2419,797,'_elementor_template_type','post'),(2420,797,'_elementor_version','2.5.14'),(2421,797,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"caption_source\":\"custom\",\"caption\":\"Every 3rd Saturday of May\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2422,798,'_wp_page_template','default'),(2423,798,'_elementor_edit_mode','builder'),(2424,798,'_elementor_template_type','post'),(2425,798,'_elementor_version','2.5.14'),(2426,798,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Every 3rd Saturday of May\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2812,861,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Every 3rd Saturday of May\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2811,861,'_elementor_version','2.5.14'),(2810,861,'_elementor_template_type','post'),(2436,802,'_wp_page_template','default'),(2437,802,'_elementor_edit_mode','builder'),(2438,802,'_elementor_template_type','post'),(2439,802,'_elementor_version','2.5.14'),(2440,802,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Every 3rd Saturday of May\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2442,803,'_wp_page_template','default'),(2443,803,'_elementor_edit_mode','builder'),(2444,803,'_elementor_template_type','post'),(2445,803,'_elementor_version','2.5.14'),(2446,803,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Every 3rd Saturday of May\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2472,809,'_elementor_edit_mode','builder'),(2473,809,'_elementor_pro_version','2.5.6'),(3181,923,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2021 Hereford Alliance Sale\",\"highlighted_text\":\"May 15, 2021\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 15, 2021 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/trac\\u2026\\/docs\\/larsonsherefordalliance051819\\/2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 15, 2021\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8caf5c0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8aeccdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"caption_source\":\"custom\",\"caption\":\"Look for a Daughter...\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5cdef\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2021 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption\":\"Coming Soon. Expect online May 08, 2019\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/playlist?list=PL3K3ghzeET2TxNcajo1xU76dSS31QL2sy\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2474,810,'_wp_page_template','default'),(2475,810,'_thumbnail_id','197'),(2476,810,'_elementor_template_type','post'),(2477,810,'_elementor_version','2.5.14'),(2478,810,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8aeccdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"caption_source\":\"custom\",\"caption\":\"Look for a Daughter...\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5cdef\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2479,810,'_elementor_edit_mode','builder'),(2480,810,'_elementor_pro_version','2.5.6'),(3178,923,'_thumbnail_id','197'),(3179,923,'_elementor_template_type','wp-post'),(3180,923,'_elementor_version','2.9.7'),(2481,811,'_wp_page_template','default'),(2482,811,'_thumbnail_id','197'),(2483,811,'_elementor_template_type','post'),(2484,811,'_elementor_version','2.5.14'),(2485,811,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8caf5c0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8aeccdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"caption_source\":\"custom\",\"caption\":\"Look for a Daughter...\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5cdef\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2486,811,'_elementor_edit_mode','builder'),(2487,811,'_elementor_pro_version','2.5.6'),(2488,62,'_elementor_edit_mode','builder'),(2489,62,'_elementor_template_type','post'),(2490,62,'_elementor_version','2.5.16'),(2491,62,'_elementor_pro_version','2.5.8'),(2492,62,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Mandate 66589 ET\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"PCR X51 Bentley 454B\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Yosemite 77121\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1266186\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"\\/S Jetsetter 77130 ET\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c60e75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/H-FHF-Advance-628-ET.jpg\",\"id\":885},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"H FHF Advance 628 ET\",\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4797454\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/z311.jpg\",\"id\":892},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"KCF Bennett Encore Z311 ET\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Adrenaline 77026 ET\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b987634\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"KCL X51 Mastermind 1L 602D ET\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2493,813,'_wp_page_template','default'),(2494,813,'_elementor_edit_mode','builder'),(2495,813,'_elementor_template_type','post'),(2496,813,'_elementor_version','2.5.14'),(2497,813,'_elementor_pro_version','2.5.6'),(2498,813,'_elementor_data','[{\"id\":\"1c498a18\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"27d4524f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8df9fc\",\"elType\":\"widget\",\"settings\":{\"menu\":\"bull-influence\",\"layout\":\"vertical\",\"align_items\":\"left\",\"pointer\":\"overline\",\"indicator\":\"none\",\"dropdown\":\"mobile\",\"text_align\":\"center\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"1d8d7445\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Bull Influence<\\/h3>\\n[caption id=\\\"attachment_647\\\" align=\\\"alignleft\\\" width=\\\"300\\\"]<img class=\\\"wp-image-647 size-medium\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224046433-300x188.jpg\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"188\\\"> Mastermind 602D[\\/caption]\\n\\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2500,814,'_wp_page_template','default'),(2501,814,'_elementor_edit_mode','builder'),(2502,814,'_elementor_template_type','post'),(2503,814,'_elementor_version','2.5.14'),(2504,814,'_elementor_pro_version','2.5.6'),(2505,814,'_elementor_data','[{\"id\":\"1c498a18\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"27d4524f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d473c0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Bull Influence<\\/h3>\\n[caption id=\\\"attachment_647\\\" align=\\\"alignleft\\\" width=\\\"300\\\"]<img class=\\\"wp-image-647 size-medium\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224046433-300x188.jpg\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"188\\\"> Mastermind 602D[\\/caption]\\n\\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8df9fc\",\"elType\":\"widget\",\"settings\":{\"menu\":\"bull-influence\",\"layout\":\"vertical\",\"align_items\":\"left\",\"indicator\":\"none\",\"dropdown\":\"mobile\",\"text_align\":\"center\",\"toggle\":\"\",\"color_menu_item\":\"#23a455\",\"color_menu_item_hover\":\"#4054b2\",\"pointer_color_menu_item_active\":\"#000000\",\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2507,815,'_wp_page_template','default'),(2508,815,'_elementor_edit_mode','builder'),(2509,815,'_elementor_template_type','post'),(2510,815,'_elementor_version','2.5.14'),(2511,815,'_elementor_pro_version','2.5.6'),(2512,815,'_elementor_data','[{\"id\":\"1c498a18\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"27d4524f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d473c0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Bull Influence<\\/h3>\\n[caption id=\\\"attachment_647\\\" align=\\\"alignleft\\\" width=\\\"300\\\"]<img class=\\\"wp-image-647 size-medium\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224046433-300x188.jpg\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"188\\\"> Mastermind 602D[\\/caption]\\n\\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\",\"align\":\"left\",\"text_columns\":\"1\",\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8df9fc\",\"elType\":\"widget\",\"settings\":{\"menu\":\"bull-influence\",\"layout\":\"vertical\",\"align_items\":\"left\",\"indicator\":\"none\",\"dropdown\":\"mobile\",\"text_align\":\"center\",\"toggle\":\"\",\"color_menu_item\":\"#23a455\",\"color_menu_item_hover\":\"#4054b2\",\"pointer_color_menu_item_active\":\"#000000\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2550,821,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"903bb0f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"bull-influence\",\"layout\":\"vertical\",\"align_items\":\"left\",\"animation_line\":\"drop-in\",\"indicator\":\"plus\",\"dropdown\":\"mobile\",\"pointer_width\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"dropdown_border_border\":\"solid\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"submenu_icon\":{\"value\":\"fa e-plus-icon\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2513,816,'_wp_page_template','default'),(2514,816,'_elementor_edit_mode','builder'),(2515,816,'_elementor_template_type','post'),(2516,816,'_elementor_version','2.5.14'),(2517,816,'_elementor_pro_version','2.5.6'),(2518,816,'_elementor_data','[{\"id\":\"1c498a18\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"27d4524f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d473c0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Bull Influence<\\/h3>\\n[caption id=\\\"attachment_647\\\" align=\\\"alignleft\\\" width=\\\"300\\\"]<img class=\\\"wp-image-647 size-medium\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224046433-300x188.jpg\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"188\\\"> Mastermind 602D[\\/caption]\\n\\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\",\"align\":\"left\",\"text_columns\":\"1\",\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b4f9a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some of the Bulls Used\",\"title_color\":\"#476a53\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8df9fc\",\"elType\":\"widget\",\"settings\":{\"menu\":\"bull-influence\",\"layout\":\"vertical\",\"align_items\":\"left\",\"indicator\":\"none\",\"dropdown\":\"mobile\",\"text_align\":\"center\",\"toggle\":\"\",\"color_menu_item\":\"#23a455\",\"color_menu_item_hover\":\"#4054b2\",\"pointer_color_menu_item_active\":\"#000000\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2548,821,'_elementor_version','2.5.14'),(2549,821,'_elementor_pro_version','2.5.6'),(2519,817,'_wp_page_template','default'),(2520,817,'_elementor_edit_mode','builder'),(2521,817,'_elementor_template_type','post'),(2522,817,'_elementor_version','2.5.14'),(2523,817,'_elementor_pro_version','2.5.6'),(2524,817,'_elementor_data','[{\"id\":\"1c498a18\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"27d4524f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d473c0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Bull Influence<\\/h3>\\n[caption id=\\\"attachment_647\\\" align=\\\"alignleft\\\" width=\\\"300\\\"]<img class=\\\"wp-image-647 size-medium\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224046433-300x188.jpg\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"188\\\"> Mastermind 602D[\\/caption]\\n\\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\",\"align\":\"left\",\"text_columns\":\"1\",\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b4f9a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some of the Bulls Used\",\"title_color\":\"#476a53\",\"_border_border\":\"solid\",\"_border_color\":\"#476a53\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8df9fc\",\"elType\":\"widget\",\"settings\":{\"menu\":\"bull-influence\",\"layout\":\"vertical\",\"align_items\":\"left\",\"indicator\":\"none\",\"dropdown\":\"mobile\",\"text_align\":\"center\",\"toggle\":\"\",\"color_menu_item\":\"#23a455\",\"color_menu_item_hover\":\"#4054b2\",\"pointer_color_menu_item_active\":\"#000000\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2545,821,'_wp_page_template','default'),(2546,821,'_elementor_edit_mode','builder'),(2547,821,'_elementor_template_type','post'),(2525,818,'_wp_page_template','default'),(2526,818,'_elementor_edit_mode','builder'),(2527,818,'_elementor_template_type','post'),(2528,818,'_elementor_version','2.5.14'),(2529,818,'_elementor_pro_version','2.5.6'),(2530,818,'_elementor_data','[{\"id\":\"1c498a18\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"27d4524f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d473c0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Bull Influence<\\/h3>\\n[caption id=\\\"attachment_647\\\" align=\\\"alignleft\\\" width=\\\"300\\\"]<img class=\\\"wp-image-647 size-medium\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224046433-300x188.jpg\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"188\\\"> Mastermind 602D[\\/caption]\\n\\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\",\"align\":\"left\",\"text_columns\":\"1\",\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b4f9a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some of the Bulls Used\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_color\":\"#476a53\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8df9fc\",\"elType\":\"widget\",\"settings\":{\"menu\":\"bull-influence\",\"layout\":\"vertical\",\"align_items\":\"left\",\"indicator\":\"none\",\"dropdown\":\"mobile\",\"text_align\":\"center\",\"toggle\":\"\",\"color_menu_item\":\"#23a455\",\"color_menu_item_hover\":\"#4054b2\",\"pointer_color_menu_item_active\":\"#000000\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2531,819,'_wp_page_template','default'),(2532,819,'_elementor_edit_mode','builder'),(2533,819,'_elementor_template_type','post'),(2534,819,'_elementor_version','2.5.14'),(2535,819,'_elementor_pro_version','2.5.6'),(2536,819,'_elementor_data','[{\"id\":\"1c498a18\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"27d4524f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d473c0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Bull Influence<\\/h3>\\n[caption id=\\\"attachment_647\\\" align=\\\"alignleft\\\" width=\\\"300\\\"]<img class=\\\"wp-image-647 size-medium\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224046433-300x188.jpg\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"188\\\"> Mastermind 602D[\\/caption]\\n\\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\",\"align\":\"left\",\"text_columns\":\"1\",\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b4f9a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some of the Bulls Used\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_color\":\"#476a53\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8df9fc\",\"elType\":\"widget\",\"settings\":{\"menu\":\"bull-influence\",\"layout\":\"vertical\",\"align_items\":\"left\",\"indicator\":\"none\",\"dropdown\":\"mobile\",\"text_align\":\"center\",\"toggle\":\"\",\"color_menu_item\":\"#23a455\",\"color_menu_item_hover\":\"#4054b2\",\"pointer_color_menu_item_active\":\"#000000\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2551,822,'_wp_page_template','default'),(2552,822,'_elementor_edit_mode','builder'),(2553,822,'_elementor_template_type','post'),(2554,822,'_elementor_version','2.5.14'),(2555,822,'_elementor_pro_version','2.5.6'),(2556,822,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"903bb0f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"bull-influence\",\"layout\":\"vertical\",\"align_items\":\"left\",\"animation_line\":\"drop-in\",\"indicator\":\"plus\",\"dropdown\":\"mobile\",\"pointer_width\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"dropdown_border_border\":\"solid\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"submenu_icon\":{\"value\":\"fa e-plus-icon\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2557,823,'_wp_page_template','default'),(2558,823,'_elementor_edit_mode','builder'),(2559,823,'_elementor_template_type','post'),(2560,823,'_elementor_version','2.5.14'),(2561,823,'_elementor_pro_version','2.5.6'),(2562,823,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"-13\",\"bottom\":\"-13\",\"left\":\"-13\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"903bb0f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"bull-influence\",\"layout\":\"vertical\",\"align_items\":\"left\",\"animation_line\":\"drop-in\",\"indicator\":\"plus\",\"dropdown\":\"mobile\",\"pointer_width\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"dropdown_border_border\":\"solid\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"submenu_icon\":{\"value\":\"fa e-plus-icon\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2563,824,'_wp_page_template','default'),(2564,824,'_elementor_edit_mode','builder'),(2565,824,'_elementor_template_type','post'),(2566,824,'_elementor_version','2.5.14'),(2567,824,'_elementor_pro_version','2.5.6'),(2568,824,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"903bb0f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"bull-influence\",\"layout\":\"vertical\",\"align_items\":\"left\",\"animation_line\":\"drop-in\",\"indicator\":\"plus\",\"dropdown\":\"mobile\",\"pointer_width\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"dropdown_border_border\":\"solid\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"submenu_icon\":{\"value\":\"fa e-plus-icon\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2609,51,'_elementor_edit_mode','builder'),(2570,51,'_elementor_template_type','post'),(2571,51,'_elementor_version','2.5.16'),(2572,51,'_elementor_pro_version','2.5.8'),(2573,51,'_elementor_data','[{\"id\":\"06ad34c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ed09eb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f5e922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b971378\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"18b0e9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\",\"id\":316},\"caption_source\":\"custom\",\"caption\":\"A Tradition That Continues To Improve\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ccccbbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f9946b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ranch Office- 972-824-5869<\\/p><p>Owner- Ken Larson- 972-977-8251<\\/p><p>Lee Larson- Manager- 972-824-5869<\\/p><p>Josh Lowe-- 972-310-2421<\\/p><p>Ranch Address: 2793 FM 1991 - Clifton, TX 76634<\\/p><p>E-mail: runlranch@aol.com<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fa9897c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1b7fb7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Us a Note...\",\"title_color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d936cd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"491\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"2d7efd2\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"color\":\"#457a53\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98d8c79\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"71079a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4d0ca4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\",\"id\":619},\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2574,826,'_wp_page_template','default'),(2575,826,'_thumbnail_id','380'),(2576,826,'_elementor_edit_mode','builder'),(2577,826,'_elementor_template_type','post'),(2578,826,'_elementor_version','2.5.14'),(2579,826,'_elementor_pro_version','2.5.6'),(2580,826,'_elementor_data','[{\"id\":\"06ad34c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ed09eb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f5e922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b971378\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"18b0e9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\",\"id\":316},\"caption_source\":\"custom\",\"caption\":\"A Tradition That Continveues To Improve\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ccccbbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f9946b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ranch Office- 972-824-5869<\\/p><p>Owner- Ken Larson- 972-977-8251<\\/p><p>Lee Larson- Manager- 972-824-5869<\\/p><p>Josh Lowe-- 972-310-2421<\\/p><p>Ranch Address: 2793 FM 1991 - Clifton, TX 76634<\\/p><p>E-mail: runlranch@aol.com<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d936cd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"491\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(2581,827,'_wp_page_template','default'),(2582,827,'_thumbnail_id','380'),(2583,827,'_elementor_edit_mode','builder'),(2584,827,'_elementor_template_type','post'),(2585,827,'_elementor_version','2.5.14'),(2586,827,'_elementor_pro_version','2.5.6'),(2587,827,'_elementor_data','[{\"id\":\"06ad34c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ed09eb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f5e922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b971378\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"18b0e9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\",\"id\":316},\"caption_source\":\"custom\",\"caption\":\"A Tradition That Continveues To Improve\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ccccbbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f9946b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ranch Office- 972-824-5869<\\/p><p>Owner- Ken Larson- 972-977-8251<\\/p><p>Lee Larson- Manager- 972-824-5869<\\/p><p>Josh Lowe-- 972-310-2421<\\/p><p>Ranch Address: 2793 FM 1991 - Clifton, TX 76634<\\/p><p>E-mail: runlranch@aol.com<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fa9897c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1b7fb7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Us a Note...\",\"title_color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d936cd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"491\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(2588,828,'_wp_page_template','default'),(2589,828,'_thumbnail_id','380'),(2590,828,'_elementor_edit_mode','builder'),(2591,828,'_elementor_template_type','post'),(2592,828,'_elementor_version','2.5.14'),(2593,828,'_elementor_pro_version','2.5.6'),(2594,828,'_elementor_data','[{\"id\":\"06ad34c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ed09eb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f5e922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b971378\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"18b0e9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\",\"id\":316},\"caption_source\":\"custom\",\"caption\":\"A Tradition That Continveues To Improve\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ccccbbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f9946b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ranch Office- 972-824-5869<\\/p><p>Owner- Ken Larson- 972-977-8251<\\/p><p>Lee Larson- Manager- 972-824-5869<\\/p><p>Josh Lowe-- 972-310-2421<\\/p><p>Ranch Address: 2793 FM 1991 - Clifton, TX 76634<\\/p><p>E-mail: runlranch@aol.com<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fa9897c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1b7fb7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Us a Note...\",\"title_color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d936cd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"491\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"2d7efd2\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"color\":\"#457a53\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2595,829,'_wp_page_template','default'),(2596,829,'_thumbnail_id','380'),(2597,829,'_elementor_edit_mode','builder'),(2598,829,'_elementor_template_type','post'),(2599,829,'_elementor_version','2.5.14'),(2600,829,'_elementor_pro_version','2.5.6'),(2601,829,'_elementor_data','[{\"id\":\"06ad34c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ed09eb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f5e922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b971378\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"18b0e9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\",\"id\":316},\"caption_source\":\"custom\",\"caption\":\"A Tradition That Continveues To Improve\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ccccbbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f9946b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ranch Office- 972-824-5869<\\/p><p>Owner- Ken Larson- 972-977-8251<\\/p><p>Lee Larson- Manager- 972-824-5869<\\/p><p>Josh Lowe-- 972-310-2421<\\/p><p>Ranch Address: 2793 FM 1991 - Clifton, TX 76634<\\/p><p>E-mail: runlranch@aol.com<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fa9897c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1b7fb7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Us a Note...\",\"title_color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d936cd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"491\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"2d7efd2\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"color\":\"#457a53\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98d8c79\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"71079a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4d0ca4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\",\"id\":619},\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2602,830,'_wp_page_template','default'),(2603,830,'_thumbnail_id','380'),(2604,830,'_elementor_edit_mode','builder'),(2605,830,'_elementor_template_type','post'),(2606,830,'_elementor_version','2.5.14'),(2607,830,'_elementor_pro_version','2.5.6'),(2608,830,'_elementor_data','[{\"id\":\"06ad34c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ed09eb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f5e922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b971378\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"18b0e9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\",\"id\":316},\"caption_source\":\"custom\",\"caption\":\"A Tradition That Continveues To Improve\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ccccbbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f9946b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ranch Office- 972-824-5869<\\/p><p>Owner- Ken Larson- 972-977-8251<\\/p><p>Lee Larson- Manager- 972-824-5869<\\/p><p>Josh Lowe-- 972-310-2421<\\/p><p>Ranch Address: 2793 FM 1991 - Clifton, TX 76634<\\/p><p>E-mail: runlranch@aol.com<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fa9897c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1b7fb7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Us a Note...\",\"title_color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d936cd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"491\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"2d7efd2\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"color\":\"#457a53\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98d8c79\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"71079a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4d0ca4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\",\"id\":619},\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2610,60,'_elementor_edit_mode','builder'),(2611,60,'_elementor_template_type','post'),(2612,60,'_elementor_version','2.5.16'),(2613,60,'_elementor_pro_version','2.5.8'),(2614,60,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f7b1518\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b556d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f1fec5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ae6ea59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\",\"id\":648},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a2c3f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\",\"id\":643},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"260c93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/KB-SULTANA-8051U.jpg\",\"id\":92},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5468d87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c84b88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e490c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/B224-KCL.jpg\",\"id\":509},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea5439a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/TH-122-71I-DOMINETTE-511X-ET.jpg\",\"id\":101},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e33416c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/KCL-3T-BONISSA-71S-114W-ET.jpg\",\"id\":121},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true},\"image_stretch\":\"yes\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f0329\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4d99a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f4f605d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"caption_source\":\"custom\",\"caption\":\"3rd Saturday of May\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d9552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1637d69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a1283c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2644,836,'_elementor_template_type','post'),(2645,836,'_elementor_version','2.5.14'),(2615,832,'_wp_page_template','default'),(2616,832,'_thumbnail_id','465'),(2617,832,'_elementor_edit_mode','builder'),(2618,832,'_elementor_template_type','post'),(2619,832,'_elementor_version','2.5.14'),(2620,832,'_elementor_pro_version','2.5.6'),(2621,832,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"495e4d0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3ed422a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fbddb9c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"sample-of-donor-cows\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2641,836,'_wp_page_template','default'),(2642,836,'_thumbnail_id','465'),(2643,836,'_elementor_edit_mode','builder'),(2622,833,'_wp_page_template','default'),(2623,833,'_thumbnail_id','465'),(2624,833,'_elementor_edit_mode','builder'),(2625,833,'_elementor_template_type','post'),(2626,833,'_elementor_version','2.5.14'),(2627,833,'_elementor_pro_version','2.5.6'),(2628,833,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"495e4d0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3ed422a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"47dc5a7\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fbddb9c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"sample-of-donor-cows\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2809,861,'_elementor_edit_mode','builder'),(2808,861,'_wp_page_template','default'),(2633,835,'_wp_page_template','default'),(2634,835,'_thumbnail_id','465'),(2635,835,'_elementor_edit_mode','builder'),(2636,835,'_elementor_template_type','post'),(2637,835,'_elementor_version','2.5.14'),(2638,835,'_elementor_pro_version','2.5.6'),(2639,835,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"495e4d0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3ed422a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"47dc5a7\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fbddb9c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"sample-of-donor-cows\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2646,836,'_elementor_pro_version','2.5.6'),(2647,836,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2931,882,'_wp_page_template','default'),(2932,882,'_elementor_edit_mode','builder'),(3169,922,'_thumbnail_id','197'),(3170,922,'_elementor_template_type','post'),(3171,922,'_elementor_version','2.5.15'),(3177,923,'_wp_page_template','default'),(2652,837,'_wp_page_template','default'),(2653,837,'_thumbnail_id','465'),(2654,837,'_elementor_edit_mode','builder'),(2655,837,'_elementor_template_type','post'),(2656,837,'_elementor_version','2.5.14'),(2657,837,'_elementor_pro_version','2.5.6'),(2658,837,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(3168,922,'_wp_page_template','default'),(2782,857,'_wp_page_template','default'),(2660,838,'_wp_page_template','default'),(2661,838,'_elementor_edit_mode','builder'),(2662,838,'_elementor_template_type','post'),(2663,838,'_elementor_version','2.5.14'),(2664,838,'_elementor_pro_version','2.5.6'),(2665,838,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2783,857,'_thumbnail_id','197'),(2784,857,'_elementor_template_type','post'),(2667,839,'_wp_page_template','default'),(2668,839,'_elementor_edit_mode','builder'),(2669,839,'_elementor_template_type','post'),(2670,839,'_elementor_version','2.5.14'),(2671,839,'_elementor_pro_version','2.5.6'),(2672,839,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(2673,840,'_wp_page_template','default'),(2674,840,'_elementor_edit_mode','builder'),(2675,840,'_elementor_template_type','post'),(2676,840,'_elementor_version','2.5.14'),(2677,840,'_elementor_pro_version','2.5.6'),(2678,840,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"color\":\"#457a53\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2679,841,'_wp_page_template','default'),(2680,841,'_elementor_edit_mode','builder'),(2681,841,'_elementor_template_type','post'),(2682,841,'_elementor_version','2.5.14'),(2683,841,'_elementor_pro_version','2.5.6'),(2684,841,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2685,842,'_wp_page_template','default'),(2686,842,'_elementor_edit_mode','builder'),(2687,842,'_elementor_template_type','post'),(2688,842,'_elementor_version','2.5.14'),(2689,842,'_elementor_pro_version','2.5.6'),(2690,842,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"color\":\"#457a53\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2691,843,'_wp_page_template','default'),(2692,843,'_elementor_edit_mode','builder'),(2693,843,'_elementor_template_type','post'),(2694,843,'_elementor_version','2.5.14'),(2695,843,'_elementor_pro_version','2.5.6'),(2696,843,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2697,844,'_wp_page_template','default'),(2698,844,'_elementor_edit_mode','builder'),(2699,844,'_elementor_template_type','post'),(2700,844,'_elementor_version','2.5.14'),(2701,844,'_elementor_pro_version','2.5.6'),(2702,844,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2703,845,'_wp_page_template','default'),(2704,845,'_elementor_edit_mode','builder'),(2705,845,'_elementor_template_type','post'),(2706,845,'_elementor_version','2.5.14'),(2707,845,'_elementor_pro_version','2.5.6'),(2708,845,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f0329\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4d99a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f4f605d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2709,846,'_wp_page_template','default'),(2710,846,'_elementor_edit_mode','builder'),(2711,846,'_elementor_template_type','post'),(2712,846,'_elementor_version','2.5.14'),(2713,846,'_elementor_pro_version','2.5.6'),(2714,846,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f0329\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4d99a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f4f605d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d9552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1637d69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a1283c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2715,847,'_wp_page_template','default'),(2716,847,'_elementor_edit_mode','builder'),(2717,847,'_elementor_template_type','post'),(2718,847,'_elementor_version','2.5.14'),(2719,847,'_elementor_pro_version','2.5.6'),(2720,847,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f0329\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4d99a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f4f605d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d9552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1637d69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a1283c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2721,848,'_wp_page_template','default'),(2722,848,'_elementor_edit_mode','builder'),(2723,848,'_elementor_template_type','post'),(2724,848,'_elementor_version','2.5.14'),(2725,848,'_elementor_pro_version','2.5.6'),(2726,848,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f0329\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4d99a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f4f605d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d9552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1637d69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a1283c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(2727,849,'_wp_page_template','default'),(2728,849,'_elementor_edit_mode','builder'),(2729,849,'_elementor_template_type','post'),(2730,849,'_elementor_version','2.5.14'),(2731,849,'_elementor_pro_version','2.5.6'),(2732,849,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f0329\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4d99a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f4f605d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d9552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1637d69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a1283c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36fb616\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"138cb60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"01b8254\",\"elType\":\"widget\",\"settings\":{\"address\":\"larsons polled herefords\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2733,850,'_wp_page_template','default'),(2734,850,'_elementor_edit_mode','builder'),(2735,850,'_elementor_template_type','post'),(2736,850,'_elementor_version','2.5.14'),(2737,850,'_elementor_pro_version','2.5.6'),(2738,850,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f0329\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4d99a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f4f605d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d9552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1637d69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a1283c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36fb616\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"138cb60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"01b8254\",\"elType\":\"widget\",\"settings\":{\"address\":\"larsons polled herefords\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_border_color\":\"#457a53\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2739,851,'_wp_page_template','default'),(2740,851,'_elementor_edit_mode','builder'),(2741,851,'_elementor_template_type','post'),(2742,851,'_elementor_version','2.5.14'),(2743,851,'_elementor_pro_version','2.5.6'),(2744,851,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f0329\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4d99a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f4f605d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"caption_source\":\"custom\",\"caption\":\"3rd Saturday of May\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d9552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1637d69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a1283c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36fb616\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"138cb60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"01b8254\",\"elType\":\"widget\",\"settings\":{\"address\":\"larsons polled herefords\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_border_color\":\"#457a53\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2745,303,'_elementor_edit_mode','builder'),(2746,303,'_elementor_template_type','post'),(2747,303,'_elementor_version','2.5.16'),(2748,303,'_elementor_pro_version','2.5.8'),(2749,306,'_elementor_edit_mode','builder'),(2750,306,'_elementor_template_type','post'),(2751,306,'_elementor_version','2.5.14'),(2752,306,'_elementor_pro_version','2.5.6'),(2753,306,'_elementor_data','[{\"id\":\"29176d3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"94ab242\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d1d574\",\"elType\":\"widget\",\"settings\":{\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\",\"show_facepile\":\"\",\"show_cta\":\"\",\"height\":{\"unit\":\"px\",\"size\":776,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"-7\",\"bottom\":\"-7\",\"left\":\"-7\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#457a53\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"facebook-page\"}],\"isInner\":false}],\"isInner\":false}]'),(2754,853,'_wp_page_template','default'),(2755,853,'_elementor_edit_mode','builder'),(2756,853,'_elementor_template_type','post'),(2757,853,'_elementor_version','2.5.14'),(2758,853,'_elementor_pro_version','2.5.6'),(2759,853,'_elementor_data','[{\"id\":\"29176d3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"94ab242\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d1d574\",\"elType\":\"widget\",\"settings\":{\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\",\"height\":{\"unit\":\"px\",\"size\":633,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"facebook-page\"}],\"isInner\":false}],\"isInner\":false}]'),(2760,854,'_wp_page_template','default'),(2761,854,'_elementor_edit_mode','builder'),(2762,854,'_elementor_template_type','post'),(2763,854,'_elementor_version','2.5.14'),(2764,854,'_elementor_pro_version','2.5.6'),(2765,854,'_elementor_data','[{\"id\":\"29176d3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"94ab242\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d1d574\",\"elType\":\"widget\",\"settings\":{\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\",\"show_facepile\":\"\",\"show_cta\":\"\",\"height\":{\"unit\":\"px\",\"size\":776,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"-7\",\"bottom\":\"-7\",\"left\":\"-7\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#457a53\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"facebook-page\"}],\"isInner\":false}],\"isInner\":false}]'),(2766,855,'_wp_page_template','default'),(2767,855,'_elementor_edit_mode','builder'),(2768,855,'_elementor_template_type','post'),(2769,855,'_elementor_version','2.5.14'),(2770,855,'_elementor_pro_version','2.5.6'),(2771,855,'_elementor_data','[{\"id\":\"29176d3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"94ab242\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d1d574\",\"elType\":\"widget\",\"settings\":{\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\",\"show_facepile\":\"\",\"show_cta\":\"\",\"height\":{\"unit\":\"px\",\"size\":776,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"-7\",\"bottom\":\"-7\",\"left\":\"-7\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#457a53\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"facebook-page\"}],\"isInner\":false}],\"isInner\":false}]'),(2785,857,'_elementor_version','2.5.14'),(2786,857,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/trac\\u2026\\/docs\\/larsonsherefordalliance051819\\/2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8caf5c0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8aeccdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"caption_source\":\"custom\",\"caption\":\"Look for a Daughter...\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5cdef\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2787,857,'_elementor_edit_mode','builder'),(2788,857,'_elementor_pro_version','2.5.6'),(2933,882,'_elementor_template_type','post'),(2790,858,'_wp_page_template','default'),(2791,858,'_thumbnail_id','197'),(2792,858,'_elementor_template_type','post'),(2793,858,'_elementor_version','2.5.15'),(2794,858,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/trac\\u2026\\/docs\\/larsonsherefordalliance051819\\/2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8caf5c0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8aeccdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"caption_source\":\"custom\",\"caption\":\"Look for a Daughter...\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5cdef\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/playlist?list=PL3K3ghzeET2TxNcajo1xU76dSS31QL2sy\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2795,858,'_elementor_edit_mode','builder'),(2796,858,'_elementor_pro_version','2.5.8'),(2848,867,'_elementor_version','2.5.16'),(2849,867,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"da7c34f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Join Us May 2020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2821,863,'_wp_page_template','default'),(2822,863,'_elementor_edit_mode','builder'),(2823,863,'_elementor_template_type','post'),(2824,863,'_elementor_version','2.5.14'),(2825,863,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"da7c34f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Join Us May 2019\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2826,44,'_elementor_pro_version','2.5.8'),(2846,867,'_elementor_edit_mode','builder'),(2847,867,'_elementor_template_type','post'),(2827,864,'_wp_page_template','default'),(2828,864,'_elementor_edit_mode','builder'),(2829,864,'_elementor_template_type','post'),(2830,864,'_elementor_version','2.5.16'),(2831,864,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"da7c34f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Join Us May 2019\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2832,864,'_elementor_pro_version','2.5.8'),(2833,865,'_wp_page_template','default'),(2834,865,'_elementor_edit_mode','builder'),(2835,865,'_elementor_template_type','post'),(2836,865,'_elementor_version','2.5.16'),(2837,865,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"da7c34f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Join Us May 2020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2838,865,'_elementor_pro_version','2.5.8'),(2845,867,'_wp_page_template','default'),(2839,866,'_wp_page_template','default'),(2840,866,'_elementor_edit_mode','builder'),(2841,866,'_elementor_template_type','post'),(2842,866,'_elementor_version','2.5.16'),(2843,866,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b71f0ea\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"@ 12:00 CST\",\"_margin\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"-30\",\"bottom\":\"-30\",\"left\":\"-30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2019-05-18 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"da7c34f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Join Us May 2020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2844,866,'_elementor_pro_version','2.5.8'),(2850,867,'_elementor_pro_version','2.5.8'),(2851,868,'_wp_page_template','default'),(2852,868,'_elementor_edit_mode','builder'),(2853,868,'_elementor_template_type','post'),(2854,868,'_elementor_version','2.5.16'),(2855,868,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"da7c34f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Join Us May 2020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2020-05-16 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"}],\"isInner\":false}],\"isInner\":false}]'),(2856,868,'_elementor_pro_version','2.5.8'),(2857,869,'_wp_page_template','default'),(2858,869,'_elementor_edit_mode','builder'),(2859,869,'_elementor_template_type','post'),(2860,869,'_elementor_version','2.5.16'),(2861,869,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"da7c34f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Join Us May 2020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255,255,255,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2020-05-16 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"}],\"isInner\":false}],\"isInner\":false}]'),(2862,869,'_elementor_pro_version','2.5.8'),(2863,870,'_wp_page_template','default'),(2864,870,'_thumbnail_id','197'),(2865,870,'_elementor_template_type','post'),(2866,870,'_elementor_version','2.5.15'),(2867,870,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2019 Hereford Alliance Sale\",\"highlighted_text\":\"May 18, 2019\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/trac\\u2026\\/docs\\/larsonsherefordalliance051819\\/2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a3d2671\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/icon_pdf.png\",\"id\":695},\"image_size\":\"thumbnail\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Click Icon for 2019 Catalog PDF Download\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 18, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8caf5c0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8aeccdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"caption_source\":\"custom\",\"caption\":\"Look for a Daughter...\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5cdef\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/playlist?list=PL3K3ghzeET2TxNcajo1xU76dSS31QL2sy\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2868,870,'_elementor_edit_mode','builder'),(2869,870,'_elementor_pro_version','2.5.8'),(2871,871,'_wp_page_template','default'),(2872,871,'_elementor_edit_mode','builder'),(2873,871,'_elementor_template_type','post'),(2874,871,'_elementor_version','2.5.14'),(2875,871,'_elementor_pro_version','2.5.6'),(2876,871,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"903bb0f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"bull-influence\",\"layout\":\"vertical\",\"align_items\":\"left\",\"animation_line\":\"drop-in\",\"indicator\":\"plus\",\"dropdown\":\"mobile\",\"pointer_width\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"dropdown_border_border\":\"solid\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"submenu_icon\":{\"value\":\"fa e-plus-icon\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2878,872,'_wp_page_template','default'),(2879,872,'_elementor_edit_mode','builder'),(2880,872,'_elementor_template_type','post'),(2881,872,'_elementor_version','2.5.14'),(2882,872,'_elementor_pro_version','2.5.6'),(2883,872,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23e0784\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2885,873,'_wp_page_template','default'),(2886,873,'_elementor_edit_mode','builder'),(2887,873,'_elementor_template_type','post'),(2888,873,'_elementor_version','2.5.16'),(2889,873,'_elementor_pro_version','2.5.8'),(2890,873,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23e0784\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2891,874,'_wp_page_template','default'),(2892,874,'_elementor_edit_mode','builder'),(2893,874,'_elementor_template_type','post'),(2894,874,'_elementor_version','2.5.16'),(2895,874,'_elementor_pro_version','2.5.8'),(2896,874,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0a1665d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23e0784\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2897,875,'_wp_page_template','default'),(2898,875,'_elementor_edit_mode','builder'),(2899,875,'_elementor_template_type','post'),(2900,875,'_elementor_version','2.5.16'),(2901,875,'_elementor_pro_version','2.5.8'),(2902,875,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0a1665d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23e0784\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2903,876,'_wp_attached_file','2019/06/77121-Shaw-KCL.jpg'),(2904,876,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3414;s:6:\"height\";i:2286;s:4:\"file\";s:26:\"2019/06/77121-Shaw-KCL.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"77121-Shaw-KCL-150x150.jpg\";s:5:\"width\";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:\"77121-Shaw-KCL-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"77121-Shaw-KCL-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"77121-Shaw-KCL-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;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:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1555366192\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"48\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2905,877,'_wp_attached_file','2019/06/77026-Shaw-KCL.jpg'),(2906,877,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3471;s:6:\"height\";i:2332;s:4:\"file\";s:26:\"2019/06/77026-Shaw-KCL.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"77026-Shaw-KCL-150x150.jpg\";s:5:\"width\";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:\"77026-Shaw-KCL-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"77026-Shaw-KCL-768x516.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"77026-Shaw-KCL-1024x688.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:688;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:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1555291259\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2907,878,'_wp_attached_file','2019/06/77130-KCL-Shaw.jpg'),(2908,878,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3558;s:6:\"height\";i:2448;s:4:\"file\";s:26:\"2019/06/77130-KCL-Shaw.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"77130-KCL-Shaw-150x150.jpg\";s:5:\"width\";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:\"77130-KCL-Shaw-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"77130-KCL-Shaw-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"77130-KCL-Shaw-1024x705.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:705;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:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1555373475\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"48\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2909,879,'_wp_page_template','default'),(2910,879,'_elementor_edit_mode','builder'),(2911,879,'_elementor_template_type','post'),(2912,879,'_elementor_version','2.5.16'),(2913,879,'_elementor_pro_version','2.5.8'),(2914,879,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"840504a\",\"elType\":\"widget\",\"settings\":{\"skin\":\"coverflow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"_id\":\"86b2fe8\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"_id\":\"0c8115d\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"_id\":\"91a4440\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"_id\":\"456b651\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"effect\":\"cube\",\"slides_per_view\":\"3\",\"slideshow_slides_per_view\":\"3\",\"slides_to_scroll\":\"1\",\"show_arrows\":\"\",\"image_size_size\":\"large\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slide_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0a1665d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23e0784\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2915,880,'_wp_page_template','default'),(2916,880,'_elementor_edit_mode','builder'),(2917,880,'_elementor_template_type','post'),(2918,880,'_elementor_version','2.5.16'),(2919,880,'_elementor_pro_version','2.5.8'),(2920,880,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"840504a\",\"elType\":\"widget\",\"settings\":{\"skin\":\"coverflow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"_id\":\"86b2fe8\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"_id\":\"0c8115d\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"_id\":\"91a4440\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"_id\":\"456b651\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"slides_per_view\":\"3\",\"slideshow_slides_per_view\":\"3\",\"slides_to_scroll\":\"1\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"show_arrows\":\"\",\"image_size_size\":\"large\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slide_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0a1665d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23e0784\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2947,885,'_wp_attached_file','2019/06/H-FHF-Advance-628-ET.jpg'),(2948,885,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:672;s:4:\"file\";s:32:\"2019/06/H-FHF-Advance-628-ET.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"H-FHF-Advance-628-ET-150x150.jpg\";s:5:\"width\";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:\"H-FHF-Advance-628-ET-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"H-FHF-Advance-628-ET-768x549.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:549;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:{}}}'),(3069,906,'_wp_page_template','default'),(3070,906,'_elementor_edit_mode','builder'),(2923,881,'_wp_page_template','default'),(2924,881,'_thumbnail_id','380'),(2925,881,'_elementor_template_type','post'),(2926,881,'_elementor_version','2.5.14'),(2927,881,'_elementor_pro_version','2.5.6'),(2928,881,'_elementor_data','[{\"id\":\"06ad34c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ed09eb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f5e922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b971378\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"18b0e9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\",\"id\":316},\"caption_source\":\"custom\",\"caption\":\"A Tradition That Continues To Improve\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ccccbbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f9946b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ranch Office- 972-824-5869<\\/p><p>Owner- Ken Larson- 972-977-8251<\\/p><p>Lee Larson- Manager- 972-824-5869<\\/p><p>Josh Lowe-- 972-310-2421<\\/p><p>Ranch Address: 2793 FM 1991 - Clifton, TX 76634<\\/p><p>E-mail: runlranch@aol.com<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fa9897c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1b7fb7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Us a Note...\",\"title_color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d936cd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"491\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"2d7efd2\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"color\":\"#457a53\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98d8c79\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"71079a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4d0ca4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\",\"id\":619},\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2929,881,'_elementor_edit_mode','builder'),(3143,917,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1260;s:6:\"height\";i:350;s:4:\"file\";s:29:\"2020/04/covid-header.png.jpeg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"covid-header.png-300x83.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"covid-header.png-1024x284.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"covid-header.png-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"covid-header.png-768x213.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:213;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:{}}}'),(2934,882,'_elementor_version','2.5.16'),(2935,882,'_elementor_pro_version','2.5.8'),(2936,882,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"840504a\",\"elType\":\"widget\",\"settings\":{\"skin\":\"coverflow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"_id\":\"86b2fe8\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"_id\":\"0c8115d\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"_id\":\"91a4440\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"_id\":\"456b651\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"slides_per_view\":\"3\",\"slideshow_slides_per_view\":\"3\",\"slides_to_scroll\":\"1\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"show_arrows\":\"\",\"image_size_size\":\"large\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slide_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0a1665d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23e0784\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3142,917,'_wp_attached_file','2020/04/covid-header.png.jpeg'),(2938,883,'_wp_attached_file','2019/06/S-MANDATE-66589-ET.jpg'),(2939,883,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:659;s:4:\"file\";s:30:\"2019/06/S-MANDATE-66589-ET.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"S-MANDATE-66589-ET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"S-MANDATE-66589-ET-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"S-MANDATE-66589-ET-768x538.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:538;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:{}}}'),(2953,887,'_elementor_template_type','post'),(2954,887,'_elementor_version','2.5.16'),(2955,887,'_elementor_pro_version','2.5.8'),(2956,887,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"840504a\",\"elType\":\"widget\",\"settings\":{\"skin\":\"coverflow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"_id\":\"86b2fe8\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"_id\":\"0c8115d\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"_id\":\"91a4440\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"_id\":\"456b651\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"slides_per_view\":\"3\",\"slideshow_slides_per_view\":\"3\",\"slides_to_scroll\":\"1\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"show_arrows\":\"\",\"image_size_size\":\"large\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slide_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0a1665d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/H-FHF-Advance-628-ET.jpg\",\"id\":885},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23e0784\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2951,887,'_wp_page_template','default'),(2952,887,'_elementor_edit_mode','builder'),(2949,886,'_wp_attached_file','2019/06/IMG_08752.png'),(2950,886,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:563;s:4:\"file\";s:21:\"2019/06/IMG_08752.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_08752-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_08752-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"IMG_08752-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),(2963,889,'_wp_page_template','default'),(2964,889,'_elementor_edit_mode','builder'),(2965,889,'_elementor_template_type','post'),(2966,889,'_elementor_version','2.5.16'),(2967,889,'_elementor_pro_version','2.5.8'),(2968,889,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"840504a\",\"elType\":\"widget\",\"settings\":{\"skin\":\"coverflow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"_id\":\"86b2fe8\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"_id\":\"0c8115d\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"_id\":\"91a4440\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"_id\":\"456b651\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"slides_per_view\":\"3\",\"slideshow_slides_per_view\":\"3\",\"slides_to_scroll\":\"1\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"show_arrows\":\"\",\"image_size_size\":\"large\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slide_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Mandate 66589 ET\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"PCR X51 Bentley 454B\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0a1665d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/H-FHF-Advance-628-ET.jpg\",\"id\":885},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"H FHF Advance 628 ET\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23e0784\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2969,890,'_wp_attached_file','2019/06/955.jpg'),(2970,890,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:626;s:4:\"file\";s:15:\"2019/06/955.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"955-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"955-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:15:\"955-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;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:{}}}'),(2971,891,'_wp_page_template','default'),(2972,891,'_elementor_edit_mode','builder'),(2973,891,'_elementor_template_type','post'),(2974,891,'_elementor_version','2.5.16'),(2975,891,'_elementor_pro_version','2.5.8'),(2976,891,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"840504a\",\"elType\":\"widget\",\"settings\":{\"skin\":\"coverflow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"_id\":\"86b2fe8\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"_id\":\"0c8115d\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"_id\":\"91a4440\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"_id\":\"456b651\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"slides_per_view\":\"3\",\"slideshow_slides_per_view\":\"3\",\"slides_to_scroll\":\"1\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"show_arrows\":\"\",\"image_size_size\":\"large\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slide_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Mandate 66589 ET\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"PCR X51 Bentley 454B\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23e0784\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/955.jpg\",\"id\":890},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"KCF Bennett Encore Z311 ET\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3c60e75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/H-FHF-Advance-628-ET.jpg\",\"id\":885},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"H FHF Advance 628 ET\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2977,892,'_wp_attached_file','2019/06/z311.jpg'),(2978,892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:375;s:4:\"file\";s:16:\"2019/06/z311.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"z311-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"z311-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;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:{}}}'),(2979,893,'_wp_page_template','default'),(2980,893,'_elementor_edit_mode','builder'),(2981,893,'_elementor_template_type','post'),(2982,893,'_elementor_version','2.5.16'),(2983,893,'_elementor_pro_version','2.5.8'),(2984,893,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"840504a\",\"elType\":\"widget\",\"settings\":{\"skin\":\"coverflow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"_id\":\"86b2fe8\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"_id\":\"0c8115d\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"_id\":\"91a4440\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"_id\":\"456b651\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"slides_per_view\":\"3\",\"slideshow_slides_per_view\":\"3\",\"slides_to_scroll\":\"1\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"show_arrows\":\"\",\"image_size_size\":\"large\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slide_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Mandate 66589 ET\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"PCR X51 Bentley 454B\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c60e75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/H-FHF-Advance-628-ET.jpg\",\"id\":885},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"H FHF Advance 628 ET\",\"width\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4797454\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/z311.jpg\",\"id\":892},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"KCF Bennett Encore Z311 ET\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3017,898,'_wp_page_template','default'),(3018,898,'_elementor_edit_mode','builder'),(2986,894,'_wp_page_template','default'),(2987,894,'_elementor_edit_mode','builder'),(2988,894,'_elementor_template_type','post'),(2989,894,'_elementor_version','2.5.16'),(2990,894,'_elementor_pro_version','2.5.8'),(2991,894,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"840504a\",\"elType\":\"widget\",\"settings\":{\"skin\":\"coverflow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"_id\":\"86b2fe8\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"_id\":\"0c8115d\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"_id\":\"91a4440\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"_id\":\"456b651\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"slides_per_view\":\"3\",\"slideshow_slides_per_view\":\"3\",\"slides_to_scroll\":\"1\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"show_arrows\":\"\",\"image_size_size\":\"large\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slide_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Mandate 66589 ET\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"PCR X51 Bentley 454B\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c60e75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/H-FHF-Advance-628-ET.jpg\",\"id\":885},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"H FHF Advance 628 ET\",\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4797454\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/z311.jpg\",\"id\":892},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"KCF Bennett Encore Z311 ET\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3215,62,'_elementor_css','a:6:{s:4:\"time\";i:1629224321;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3025,899,'_elementor_edit_mode','builder'),(3026,899,'_elementor_template_type','post'),(3027,899,'_elementor_version','2.5.16'),(3028,899,'_elementor_pro_version','2.5.8'),(3029,899,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Mandate 66589 ET\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"PCR X51 Bentley 454B\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Yosemite 77121\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1266186\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"\\/S Jetsetter 77130 ET\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c60e75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/H-FHF-Advance-628-ET.jpg\",\"id\":885},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"H FHF Advance 628 ET\",\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4797454\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/z311.jpg\",\"id\":892},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"KCF Bennett Encore Z311 ET\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Adrenaline 77026 ET\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2994,895,'_wp_page_template','default'),(2995,895,'_elementor_edit_mode','builder'),(2996,895,'_elementor_template_type','post'),(2997,895,'_elementor_version','2.5.16'),(2998,895,'_elementor_pro_version','2.5.8'),(2999,895,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"840504a\",\"elType\":\"widget\",\"settings\":{\"skin\":\"coverflow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"_id\":\"86b2fe8\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"_id\":\"0c8115d\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"_id\":\"91a4440\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"_id\":\"456b651\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9e70cfd\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/z311.jpg\",\"id\":892},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0cee439\"}],\"slides_per_view\":\"3\",\"slideshow_slides_per_view\":\"3\",\"slides_to_scroll\":\"1\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"show_arrows\":\"\",\"image_size_size\":\"large\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slide_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Mandate 66589 ET\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"PCR X51 Bentley 454B\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c60e75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/H-FHF-Advance-628-ET.jpg\",\"id\":885},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"H FHF Advance 628 ET\",\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4797454\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/z311.jpg\",\"id\":892},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"KCF Bennett Encore Z311 ET\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3139,914,'_elementor_edit_mode','builder'),(3140,914,'_elementor_template_type','kit'),(3024,899,'_wp_page_template','default'),(3002,896,'_wp_page_template','default'),(3003,896,'_elementor_edit_mode','builder'),(3004,896,'_elementor_template_type','post'),(3005,896,'_elementor_version','2.5.16'),(3006,896,'_elementor_pro_version','2.5.8'),(3007,896,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"840504a\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"_id\":\"86b2fe8\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"_id\":\"0c8115d\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"_id\":\"91a4440\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"_id\":\"456b651\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9e70cfd\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/z311.jpg\",\"id\":892},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0cee439\"}],\"slides_per_view\":\"3\",\"slideshow_slides_per_view\":\"5\",\"slides_to_scroll\":\"1\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"show_arrows\":\"\",\"image_size_size\":\"large\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slide_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"slideshow_height\":{\"unit\":\"px\",\"size\":418,\"sizes\":[]},\"centered_slides\":\"yes\"},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Mandate 66589 ET\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"PCR X51 Bentley 454B\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c60e75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/H-FHF-Advance-628-ET.jpg\",\"id\":885},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"H FHF Advance 628 ET\",\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4797454\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/z311.jpg\",\"id\":892},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"KCF Bennett Encore Z311 ET\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3214,51,'_elementor_css','a:6:{s:4:\"time\";i:1628179620;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3137,913,'_elementor_controls_usage','a:0:{}'),(3031,900,'_wp_page_template','default'),(3032,900,'_elementor_edit_mode','builder'),(3033,900,'_elementor_template_type','post'),(3034,900,'_elementor_version','2.5.16'),(3035,900,'_elementor_pro_version','2.5.8'),(3036,900,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Mandate 66589 ET\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"PCR X51 Bentley 454B\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Yosemite 77121\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1266186\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"\\/S Jetsetter 77130 ET\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c60e75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/H-FHF-Advance-628-ET.jpg\",\"id\":885},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"H FHF Advance 628 ET\",\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4797454\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/z311.jpg\",\"id\":892},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"KCF Bennett Encore Z311 ET\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Adrenaline 77026 ET\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b987634\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"KCL X51 Mastermind 1L 602D ET\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3019,898,'_elementor_template_type','post'),(3020,898,'_elementor_version','2.5.16'),(3021,898,'_elementor_pro_version','2.5.8'),(3022,898,'_elementor_data','[{\"id\":\"6f5bf9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a573b3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"840504a\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77121-Shaw-KCL.jpg\",\"id\":876},\"_id\":\"86b2fe8\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"_id\":\"0c8115d\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77130-KCL-Shaw.jpg\",\"id\":878},\"_id\":\"91a4440\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"_id\":\"456b651\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9e70cfd\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/z311.jpg\",\"id\":892},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0cee439\"}],\"slides_per_view\":\"3\",\"slideshow_slides_per_view\":\"5\",\"slides_to_scroll\":\"1\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"show_arrows\":\"\",\"image_size_size\":\"large\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slide_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"slideshow_height\":{\"unit\":\"px\",\"size\":418,\"sizes\":[]},\"centered_slides\":\"yes\"},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"387f2b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a73bd9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c598f0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a4f590\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3eb47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6293c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bull Influence at Larson\",\"title_color\":\"#476a53\",\"_margin\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab9b5c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc2cbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bed3fc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/S-MANDATE-66589-ET.jpg\",\"id\":883},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"\\/S Mandate 66589 ET\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ecf411c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/IMG_08752.png\",\"id\":886},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"PCR X51 Bentley 454B\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b4b721\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5592782\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c60e75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/H-FHF-Advance-628-ET.jpg\",\"id\":885},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"H FHF Advance 628 ET\",\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4797454\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/z311.jpg\",\"id\":892},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"caption\":\"KCF Bennett Encore Z311 ET\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3aca9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3135,911,'_elementor_controls_usage','a:0:{}'),(3136,912,'_elementor_controls_usage','a:0:{}'),(3046,902,'_wp_page_template','default'),(3038,901,'_wp_page_template','default'),(3039,901,'_elementor_edit_mode','builder'),(3040,901,'_elementor_template_type','post'),(3041,901,'_elementor_version','2.5.14'),(3042,901,'_elementor_pro_version','2.5.6'),(3043,901,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f7b1518\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b556d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f1fec5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ae6ea59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\",\"id\":648},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a2c3f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\",\"id\":643},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5468d87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c84b88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e490c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/B224-KCL.jpg\",\"id\":509},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea5439a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/TH-122-71I-DOMINETTE-511X-ET.jpg\",\"id\":101},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":731,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/06\\/D12-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":646,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102A-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f0329\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4d99a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f4f605d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"caption_source\":\"custom\",\"caption\":\"3rd Saturday of May\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d9552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1637d69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a1283c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(3152,919,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:224;s:4:\"file\";s:60:\"2020/04/72048917_519360131958583_4843767720182808576_n-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"72048917_519360131958583_4843767720182808576_n-2-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:{}}}'),(3047,902,'_elementor_edit_mode','builder'),(3048,902,'_elementor_template_type','post'),(3049,902,'_elementor_version','2.5.16'),(3050,902,'_elementor_pro_version','2.5.8'),(3051,902,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f7b1518\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b556d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f1fec5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ae6ea59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\",\"id\":648},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a2c3f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\",\"id\":643},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5468d87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c84b88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e490c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/B224-KCL.jpg\",\"id\":509},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea5439a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/TH-122-71I-DOMINETTE-511X-ET.jpg\",\"id\":101},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f0329\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4d99a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f4f605d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"caption_source\":\"custom\",\"caption\":\"3rd Saturday of May\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d9552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1637d69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a1283c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(3151,919,'_wp_attached_file','2020/04/72048917_519360131958583_4843767720182808576_n-2.jpg'),(3077,907,'_wp_page_template','default'),(3078,907,'_elementor_edit_mode','builder'),(3079,907,'_elementor_template_type','post'),(3080,907,'_elementor_version','2.5.16'),(3081,907,'_elementor_pro_version','2.5.8'),(3082,907,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f7b1518\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b556d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f1fec5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ae6ea59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\",\"id\":648},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a2c3f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\",\"id\":643},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"260c93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/KB-SULTANA-8051U.jpg\",\"id\":92},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5468d87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c84b88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e490c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/B224-KCL.jpg\",\"id\":509},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea5439a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/TH-122-71I-DOMINETTE-511X-ET.jpg\",\"id\":101},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true},\"image_stretch\":\"yes\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f0329\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4d99a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f4f605d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"caption_source\":\"custom\",\"caption\":\"3rd Saturday of May\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d9552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1637d69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a1283c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(3062,905,'_wp_page_template','default'),(3063,905,'_elementor_edit_mode','builder'),(3064,905,'_elementor_template_type','post'),(3065,905,'_elementor_version','2.5.16'),(3066,905,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"da7c34f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/602D-KCL-e1525224323307.jpg\",\"id\":647},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Join Us May 2020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2020 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255,255,255,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2020-05-16 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"}],\"isInner\":false}],\"isInner\":false}]'),(3067,905,'_elementor_pro_version','2.5.8'),(3071,906,'_elementor_template_type','post'),(3072,906,'_elementor_version','2.5.16'),(3073,906,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"da7c34f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Join Us May 2020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2020 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255,255,255,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2020-05-16 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"}],\"isInner\":false}],\"isInner\":false}]'),(3074,906,'_elementor_pro_version','2.5.8'),(3212,914,'_elementor_css','a:6:{s:4:\"time\";i:1628033058;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3213,44,'_elementor_css','a:6:{s:4:\"time\";i:1628033059;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3084,908,'_wp_page_template','default'),(3085,908,'_elementor_edit_mode','builder'),(3086,908,'_elementor_template_type','post'),(3087,908,'_elementor_version','2.5.16'),(3088,908,'_elementor_pro_version','2.5.8'),(3089,908,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f7b1518\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b556d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f1fec5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ae6ea59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\",\"id\":648},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a2c3f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\",\"id\":643},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"260c93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/KB-SULTANA-8051U.jpg\",\"id\":92},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5468d87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c84b88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e490c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/B224-KCL.jpg\",\"id\":509},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea5439a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/TH-122-71I-DOMINETTE-511X-ET.jpg\",\"id\":101},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e33416c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/KCL-3T-BONISSA-71S-114W-ET.jpg\",\"id\":121},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":652,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C11-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true},\"image_stretch\":\"yes\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f0329\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4d99a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f4f605d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"caption_source\":\"custom\",\"caption\":\"3rd Saturday of May\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d9552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1637d69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a1283c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(3090,909,'_wp_page_template','default'),(3091,909,'_elementor_edit_mode','builder'),(3092,909,'_elementor_template_type','post'),(3093,909,'_elementor_version','2.5.16'),(3094,909,'_elementor_pro_version','2.5.8'),(3095,909,'_elementor_data','[{\"id\":\"20b7daa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e457994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da958f5\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bad5d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\",\"id\":465},\"image_size\":\"full\",\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Udder Quality\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df75d8e\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9014131\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>The <strong>KCL Genetics Donor Program<\\/strong> is an aggressive vision of the \\\"Next Generation\\\". Cattle in this program exhibit and produce traits that lend to real world beef production.\\u00a0The cows\\u00a0are assessed with a heavy eye on mothering ability\\u00a0with a focus on\\u00a0udder structure and milk flow.\\u00a0It is of extreme importance that females in this program be structurally sound in skeleton\\u00a0and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \\\"The Next Generation\\\". COW FAMILIES ARE THE KEY<\\/em><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6b30a3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa4de16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f4d9b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f7b1518\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b556d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f1fec5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ae6ea59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\",\"id\":648},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a2c3f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\",\"id\":643},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"260c93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/KB-SULTANA-8051U.jpg\",\"id\":92},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5468d87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c84b88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e490c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/B224-KCL.jpg\",\"id\":509},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea5439a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/TH-122-71I-DOMINETTE-511X-ET.jpg\",\"id\":101},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e33416c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/KCL-3T-BONISSA-71S-114W-ET.jpg\",\"id\":121},\"image_size\":\"medium\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c92b3ce\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":653,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\"},{\"id\":655,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/Y40-KCL.jpg\"},{\"id\":643,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/03D-KCL.jpg\"},{\"id\":648,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6000-KCL-Shaw.jpg\"},{\"id\":645,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/60C-KCL.jpg\"},{\"id\":651,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6050-KCL-Shaw.jpg\"},{\"id\":637,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/102Z-KCL.jpg\"},{\"id\":508,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/A18-KCL.jpg\"},{\"id\":619,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/B224-KCL.jpg\"},{\"id\":465,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/75C-KCL-TH-e1544295138537.jpg\"},{\"id\":458,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/04\\/Y40-Larson.jpg\"},{\"id\":649,\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"navigation\":\"none\",\"image_border_border\":\"solid\",\"image_border_color\":\"#457a53\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true},\"image_stretch\":\"yes\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"1c0d887\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\",\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f0329\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4d99a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f4f605d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"caption_source\":\"custom\",\"caption\":\"3rd Saturday of May\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d9552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1637d69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a1283c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"color\":\"#457a53\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false}]'),(3134,910,'_elementor_controls_usage','a:0:{}'),(3153,920,'_wp_page_template','default'),(3154,920,'_elementor_edit_mode','builder'),(3155,920,'_elementor_template_type','wp-post'),(3156,920,'_elementor_version','2.5.16'),(3157,920,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5dbdac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfe19ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69.681},\"elements\":[{\"id\":\"427e680\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2020\\/04\\/covid-header.png.jpeg\",\"id\":917},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e4246f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30.194},\"elements\":[{\"id\":\"f60bf89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2020\\/04\\/72048917_519360131958583_4843767720182808576_n-2.jpg\",\"id\":919}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bcf58d\",\"elType\":\"widget\",\"settings\":{\"title\":\"The 2020 Hereford Alliance Sale Has Been Cancelled Due to the Corona Virus Pandemic\",\"align\":\"center\",\"title_color\":\"#F00606\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"da7c34f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Join Us May 2020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2020 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255,255,255,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2020-05-16 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"}],\"isInner\":false}],\"isInner\":false}]'),(3158,920,'_elementor_pro_version','2.5.8'),(3160,921,'_wp_page_template','default'),(3161,921,'_elementor_edit_mode','builder'),(3162,921,'_elementor_template_type','wp-post'),(3163,921,'_elementor_version','2.9.7'),(3164,921,'_elementor_data','[{\"id\":\"12cba5ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b0c3f5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5dbdac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfe19ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69.681},\"elements\":[{\"id\":\"427e680\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2020\\/04\\/covid-header.png.jpeg\",\"id\":917},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e4246f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30.194},\"elements\":[{\"id\":\"f60bf89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2020\\/04\\/72048917_519360131958583_4843767720182808576_n-2.jpg\",\"id\":919}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bcf58d\",\"elType\":\"widget\",\"settings\":{\"title\":\"The 2020 Hereford Alliance Sale Has Been Cancelled Due to the Corona Virus Pandemic\",\"align\":\"center\",\"title_color\":\"#F00606\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c8451\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Larson Running L Ranch\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":23,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"-25\",\"bottom\":\"-25\",\"left\":\"-25\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75539b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<img class=\\\"alignleft wp-image-316 size-full\\\" src=\\\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/Larson_logo-e1524187019875.jpg\\\" alt=\\\"\\\" width=\\\"150\\\" height=\\\"160\\\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\\n\\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \\\"real world\\\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\\n\\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9204a8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4cdc68d\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1fa1f5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fca161c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37cdad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2126b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"865f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/C17-KCL.jpg\",\"id\":653},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"da7c34f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/06\\/77026-Shaw-KCL.jpg\",\"id\":877},\"image_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8d41481\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fa813\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/6003-KCL-Shaw.jpg\",\"id\":649},\"image_size\":\"medium_large\",\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"444c3f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"align\":\"center\",\"caption\":\"Join Us May 2020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"caption_source\":\"custom\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"128d5bd\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7a7590b\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"9353e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"2021 Hereford Alliance Sale Countdown\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":10,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255,255,255,0.3)\"},\"blend_mode\":\"multiply\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c614639\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2021-05-15 12:00\",\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#23a455\",\"box_border_border\":\"solid\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"countdown\"}],\"isInner\":false}],\"isInner\":false}]'),(3165,921,'_elementor_pro_version','2.5.8'),(3166,44,'_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:6;s:10:\"image_size\";i:5;s:5:\"align\";i:1;s:7:\"caption\";i:1;s:14:\"caption_source\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:2;s:13:\"_border_color\";i:2;s:14:\"_border_radius\";i:3;s:13:\"_border_width\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:1;s:19:\"image_border_radius\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:3;s:5:\"align\";i:3;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:28:\"text_shadow_text_shadow_type\";i:2;s:23:\"text_shadow_text_shadow\";i:2;s:10:\"blend_mode\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"align\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:7:\"address\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:14:\"_border_radius\";i:1;}}}}s:9:\"countdown\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"section_countdown\";a:2:{s:8:\"due_date\";i:1;s:13:\"custom_labels\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_box_style\";a:4:{s:20:\"box_background_color\";i:1;s:17:\"box_border_border\";i:1;s:17:\"box_border_radius\";i:1;s:11:\"box_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}}'),(3216,60,'_elementor_css','a:6:{s:4:\"time\";i:1629224321;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3172,922,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2021 Hereford Alliance Sale\",\"highlighted_text\":\"May 15, 2021\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 15, 2021 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/trac\\u2026\\/docs\\/larsonsherefordalliance051819\\/2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 15, 2021\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8caf5c0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8aeccdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"caption_source\":\"custom\",\"caption\":\"Look for a Daughter...\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5cdef\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"96aa020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/digital-catalog.png\",\"id\":752},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Click Here for Digital Catalog\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/tracyhm\\/docs\\/larsonsherefordalliance051819\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption_source\":\"custom\",\"caption\":\"Coming Soon. Expect online May 08, 2019\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/playlist?list=PL3K3ghzeET2TxNcajo1xU76dSS31QL2sy\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3173,922,'_elementor_edit_mode','builder'),(3174,922,'_elementor_pro_version','2.5.8'),(3182,923,'_elementor_edit_mode','builder'),(3183,923,'_elementor_pro_version','2.5.8'),(3185,924,'_wp_page_template','default'),(3186,924,'_thumbnail_id','197'),(3187,924,'_elementor_template_type','wp-post'),(3188,924,'_elementor_version','2.9.7'),(3189,924,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4bf1baf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7b09483\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.458},\"elements\":[{\"id\":\"e727e10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2020\\/04\\/covid-header.png.jpeg\",\"id\":917},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"381b55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.465},\"elements\":[{\"id\":\"17e3305\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2020\\/04\\/72048917_519360131958583_4843767720182808576_n-2.jpg\",\"id\":919}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ce0e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"2020 Hereford Alliance Sale Canceled <br>Due to Coronavirus Pandemic<br>We Look forward to seeing you in 2021.<br>Give Us a Call if we can be of any service.\",\"align\":\"center\",\"title_color\":\"#ED0808\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2021 Hereford Alliance Sale\",\"highlighted_text\":\"May 15, 2021\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 15, 2021 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/trac\\u2026\\/docs\\/larsonsherefordalliance051819\\/2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 15, 2021\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8caf5c0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8aeccdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"caption_source\":\"custom\",\"caption\":\"Look for a Daughter...\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5cdef\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2021 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption\":\"Coming Soon. Expect online May 08, 2019\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/playlist?list=PL3K3ghzeET2TxNcajo1xU76dSS31QL2sy\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3190,924,'_elementor_edit_mode','builder'),(3191,924,'_elementor_pro_version','2.5.8'),(3192,54,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:3;s:14:\"caption_source\";i:3;s:7:\"caption\";i:4;s:7:\"link_to\";i:1;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_border\";i:1;s:19:\"image_border_radius\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:5:\"align\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:3:\"tag\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:3:{s:11:\"title_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_line_height\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:14:\"_border_radius\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"style\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:7;s:3:\"gap\";i:7;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:2:{s:11:\"image_space\";i:1;s:10:\"image_size\";i:1;}s:21:\"section_style_content\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(3193,925,'_wp_page_template','default'),(3194,925,'_thumbnail_id','197'),(3195,925,'_elementor_template_type','wp-post'),(3196,925,'_elementor_version','2.9.7'),(3197,925,'_elementor_data','[{\"id\":\"77539364\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab72524\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4bf1baf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7b09483\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.458},\"elements\":[{\"id\":\"e727e10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2020\\/04\\/covid-header.png.jpeg\",\"id\":917},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"381b55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.465},\"elements\":[{\"id\":\"17e3305\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2020\\/04\\/72048917_519360131958583_4843767720182808576_n-2.jpg\",\"id\":919}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ce0e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"2020 Hereford Alliance Sale Canceled <br>Due to Coronavirus Pandemic<br>We Look forward to seeing you in 2021.<br>Give Us a Call if we can be of any service.\",\"align\":\"center\",\"title_color\":\"#ED0808\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f1fa259\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"2021 Hereford Alliance Sale\",\"highlighted_text\":\"May 15, 2021\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"tag\":\"h2\",\"marker_color\":\"#61ce70\",\"title_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_border_border\":\"double\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"-39\",\"bottom\":\"-39\",\"left\":\"-39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4c86203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"234a325\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"177b15b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/HrfdAllianceLogo2015-e1556757314259.jpg\",\"id\":742},\"image_size\":\"medium_large\",\"caption_source\":\"custom\",\"caption\":\"May 15, 2021 - 12:00 CST @ Running L Ranch in Clifton, Texas\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/issuu.com\\/trac\\u2026\\/docs\\/larsonsherefordalliance051819\\/2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b19714\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3039bef\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e95b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2019\\/05\\/714af614-5904-4135-a691-5b34f6df8bdc.jpg\",\"id\":746},\"caption_source\":\"custom\",\"caption\":\"Click here to enter Auction. Live May 15, 2021\",\"link\":{\"url\":\"http:\\/\\/www.liveauctions.tv\\/OnlineBidding\\/ViewVideo.aspx?AuctionID=7508\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8caf5c0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8aeccdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2017\\/03\\/GO-MS-7195-ADVANCE-W9.jpg\",\"id\":80},\"caption_source\":\"custom\",\"caption\":\"Look for a Daughter...\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5cdef\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f8566af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f198841\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/400dpiLogoCropped-e1556756960807.jpg\",\"id\":667},\"title_text\":\"Look For This Logo\",\"description_text\":\"Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"title_color\":\"#7a7a7a\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9fe0447\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3a34162\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0553f17\",\"elType\":\"widget\",\"settings\":{\"title\":\"2021 Hereford Alliance Videos\",\"header_size\":\"h5\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37490f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kclgenetics.com\\/wp-content\\/uploads\\/2018\\/05\\/product_videoonline.png\",\"id\":701},\"image_size\":\"medium\",\"caption\":\"Coming Soon. Expect online May 08, 2019\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/playlist?list=PL3K3ghzeET2TxNcajo1xU76dSS31QL2sy\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4253e82\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5632f00\",\"elType\":\"widget\",\"settings\":{\"address\":\"running l ranch\",\"zoom\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"23f0756a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3198,925,'_elementor_edit_mode','builder'),(3199,925,'_elementor_pro_version','2.5.8'),(3200,925,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:3;s:14:\"caption_source\";i:3;s:7:\"caption\";i:4;s:7:\"link_to\";i:1;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_border\";i:1;s:19:\"image_border_radius\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:5:\"align\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:3:\"tag\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:3:{s:11:\"title_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_line_height\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:14:\"_border_radius\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"style\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:7;s:3:\"gap\";i:7;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:2:{s:11:\"image_space\";i:1;s:10:\"image_size\";i:1;}s:21:\"section_style_content\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(3208,306,'_elementor_controls_usage','a:3:{s:13:\"facebook-page\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:4:{s:3:\"url\";i:1;s:13:\"show_facepile\";i:1;s:8:\"show_cta\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(3209,62,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:9;s:10:\"image_size\";i:8;s:14:\"caption_source\";i:8;s:7:\"caption\";i:8;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:19:\"image_border_border\";i:9;s:19:\"image_border_radius\";i:9;s:5:\"width\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:14:\"_border_radius\";i:1;}}}}}'),(3210,60,'_elementor_controls_usage','a:6:{s:7:\"divider\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:5;s:3:\"gap\";i:4;s:5:\"color\";i:2;}}s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"align\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:10;s:10:\"image_size\";i:9;s:5:\"align\";i:1;s:14:\"caption_source\";i:2;s:7:\"caption\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:19:\"image_border_border\";i:9;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:10;s:18:\"image_border_width\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:5:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:10:\"navigation\";i:1;s:13:\"image_stretch\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:19:\"image_border_border\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;s:18:\"image_border_width\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}'),(3211,51,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:14:\"caption_source\";i:1;s:7:\"caption\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:19:\"image_border_border\";i:2;s:18:\"image_border_color\";i:2;s:19:\"image_border_radius\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:2;s:3:\"gap\";i:2;s:5:\"color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}}'),(3217,303,'_elementor_css','a:7:{s:4:\"time\";i:1629224321;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}');
/*!40000 ALTER TABLE `wpjj_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_posts`
--

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

--
-- Dumping data for table `wpjj_posts`
--

LOCK TABLES `wpjj_posts` WRITE;
/*!40000 ALTER TABLE `wpjj_posts` DISABLE KEYS */;
INSERT INTO `wpjj_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (617,1,'2018-04-30 01:41:36','2018-04-30 01:41:36','','cropped-banner-1.jpg','','inherit','closed','closed','','cropped-banner-1-jpg','','','2018-04-30 01:41:36','2018-04-30 01:41:36','',0,'http://kclgenetics.com/wp-content/uploads/2017/03/cropped-banner-1.jpg',0,'attachment','image/jpeg',0),(618,1,'2018-05-01 22:45:02','2018-05-01 22:45:02','<p style=\"text-align: left;\">Owned w/ The Josh Knowles Family</p>','KCL 9050 HOLLY 1017 B224ET - P23781633','','publish','closed','closed','','kcl-9050-holly-1017-b224et-p23781633','','','2018-05-01 22:47:20','2018-05-01 22:47:20','',0,'http://kclgenetics.com/?p=618',0,'post','',0),(446,1,'2018-04-20 00:02:05','2018-04-20 00:02:05','http://kclgenetics.com/wp-content/uploads/2017/03/cropped-cover_groupbanner-1.png','cropped-cover_groupbanner-1.png','','inherit','closed','closed','','cropped-cover_groupbanner-1-png','','','2018-04-20 00:02:05','2018-04-20 00:02:05','',0,'http://kclgenetics.com/wp-content/uploads/2017/03/cropped-cover_groupbanner-1.png',0,'attachment','image/png',0),(447,1,'2018-04-20 00:02:55','2018-04-20 00:02:55','','cropped-banner.jpg','','inherit','closed','closed','','cropped-banner-jpg','','','2018-04-20 00:02:55','2018-04-20 00:02:55','',0,'http://kclgenetics.com/wp-content/uploads/2017/03/cropped-banner.jpg',0,'attachment','image/jpeg',0),(456,1,'2018-04-20 00:43:19','2018-04-20 00:43:19','&nbsp;\r\n<div class=\"rt-grid-6 rt-alpha\">\r\n<div class=\"rt-block box2\">\r\n<div class=\"module-surround\">\r\n<div class=\"module-title\">\r\n<h2 class=\"title\">Contact Numbers</h2>\r\n</div>\r\n<div class=\"module-content\">\r\n<div class=\"custombox2\">\r\n\r\n<img class=\"alignleft size-thumbnail wp-image-316\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Ranch Office- 254-435-6063\r\n\r\nOwner- Ken Larson- 972-977-8251\r\n\r\nLee Larson- Manager- 972-824-5869\r\n\r\nJosh Lowe-Herdman- 972-310-2421\r\n\r\nRanch Address: 2793 FM 1991 - Clifton, TX 76634\r\n\r\nE-mail: runlranch@aol.com\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2018-04-20 00:43:19','2018-04-20 00:43:19','',51,'http://kclgenetics.com/51-revision-v1/',0,'revision','',0),(457,1,'2018-04-20 00:48:24','2018-04-20 00:48:24','','A39 Spearhead','','inherit','closed','closed','','a39-spearhead','','','2018-04-20 00:48:24','2018-04-20 00:48:24','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/A39-Spearhead.jpg',0,'attachment','image/jpeg',0),(458,1,'2018-04-20 00:48:56','2018-04-20 00:48:56','','Y40 Larson','Italia Y40','inherit','closed','closed','','y40-larson','','','2018-05-02 01:10:41','2018-05-02 01:10:41','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson.jpg',0,'attachment','image/jpeg',0),(459,1,'2018-04-20 00:49:30','2018-04-20 00:49:30','','Y100 KCL','','inherit','closed','closed','','y100-kcl','','','2018-04-20 00:49:30','2018-04-20 00:49:30','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/Y100-KCL.jpg',0,'attachment','image/jpeg',0),(460,1,'2018-04-20 01:13:36','2018-04-20 01:13:36','http://kclgenetics.com/wp-content/uploads/2017/03/cropped-Larson_logo-2.jpg','cropped-Larson_logo-2.jpg','','inherit','closed','closed','','cropped-larson_logo-2-jpg','','','2018-04-20 01:13:36','2018-04-20 01:13:36','',0,'http://kclgenetics.com/wp-content/uploads/2017/03/cropped-Larson_logo-2.jpg',0,'attachment','image/jpeg',0),(461,1,'2018-04-20 01:16:15','2018-04-20 01:16:15','http://kclgenetics.com/wp-content/uploads/2017/03/cropped-Larson_logo-e1524186911942.jpg','cropped-Larson_logo-e1524186911942.jpg','','inherit','closed','closed','','cropped-larson_logo-e1524186911942-jpg','','','2018-04-20 01:16:15','2018-04-20 01:16:15','',0,'http://kclgenetics.com/wp-content/uploads/2017/03/cropped-Larson_logo-e1524186911942.jpg',0,'attachment','image/jpeg',0),(616,1,'2018-04-30 01:33:20','2018-04-30 01:33:20','','Advance W9 102Z','','inherit','closed','closed','','cropped-102z-kcl-jpg','','','2018-05-02 01:13:22','2018-05-02 01:13:22','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/cropped-102Z-KCL.jpg',0,'attachment','image/jpeg',0),(463,1,'2018-04-20 01:17:33','2018-04-20 01:17:33','http://kclgenetics.com/wp-content/uploads/2017/03/cropped-Larson_logo-e1524187019875.jpg','cropped-Larson_logo-e1524187019875.jpg','','inherit','closed','closed','','cropped-larson_logo-e1524187019875-jpg','','','2018-04-20 01:17:33','2018-04-20 01:17:33','',0,'http://kclgenetics.com/wp-content/uploads/2017/03/cropped-Larson_logo-e1524187019875.jpg',0,'attachment','image/jpeg',0),(464,1,'2018-04-20 01:18:07','2018-04-20 01:18:07','http://kclgenetics.com/wp-content/uploads/2017/03/cropped-genetics-background.jpg','cropped-genetics-background.jpg','','inherit','closed','closed','','cropped-genetics-background-jpg','','','2018-04-20 01:18:07','2018-04-20 01:18:07','',0,'http://kclgenetics.com/wp-content/uploads/2017/03/cropped-genetics-background.jpg',0,'attachment','image/jpeg',0),(465,1,'2018-04-20 01:19:19','2018-04-20 01:19:19','','Donor 75C','75C','inherit','closed','closed','','75c-kcl-th','','','2018-12-08 18:52:24','2018-12-08 18:52:24','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH.jpg',0,'attachment','image/jpeg',0),(466,1,'2018-04-20 01:20:02','2018-04-20 01:20:02','','purina-checkerboard-logo','','inherit','closed','closed','','purina-checkerboard-logo','','','2018-04-20 01:20:02','2018-04-20 01:20:02','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/purina-checkerboard-logo.jpg',0,'attachment','image/jpeg',0),(467,1,'2018-04-20 01:20:35','2018-04-20 01:20:35','','CFSC Logo','cliftonfeed.com','inherit','closed','closed','','cfsc-logo','','','2018-05-02 01:51:33','2018-05-02 01:51:33','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/CFSC-Logo.jpg',0,'attachment','image/jpeg',0),(469,1,'2018-04-20 01:43:13','2018-04-20 01:43:13','<img class=\"alignleft size-thumbnail wp-image-316\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 01:43:13','2018-04-20 01:43:13','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(468,1,'2018-04-20 01:41:45','2018-04-20 01:41:45','<img class=\"alignleft size-thumbnail wp-image-316\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\n<img class=\"aligncenter size-medium wp-image-204\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" />\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. We do our best to make it a must attend event. Contact us for more details, to be on our mailing list, or to just talk.','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 01:41:45','2018-04-20 01:41:45','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(471,1,'2018-04-20 02:03:20','2018-04-20 02:03:20','<img class=\"alignleft size-thumbnail wp-image-316\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 02:03:20','2018-04-20 02:03:20','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(472,1,'2018-04-20 02:05:43','2018-04-20 02:05:43','','KCL GENETICS','Stressing Excellence','inherit','closed','closed','','kcl-genetics-copy','','','2018-04-20 02:08:38','2018-04-20 02:08:38','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/KCL-GENETICS-copy.jpg',0,'attachment','image/jpeg',0),(473,1,'2018-04-20 02:06:58','2018-04-20 02:06:58','<img class=\"alignleft wp-image-472 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/KCL-GENETICS-copy-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 02:06:58','2018-04-20 02:06:58','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(474,1,'2018-04-20 02:08:46','2018-04-20 02:08:46','http://kclgenetics.com/wp-content/uploads/2018/04/cropped-KCL-GENETICS-copy.jpg','cropped-KCL-GENETICS-copy.jpg','','inherit','closed','closed','','cropped-kcl-genetics-copy-jpg','','','2018-04-20 02:08:46','2018-04-20 02:08:46','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/cropped-KCL-GENETICS-copy.jpg',0,'attachment','image/jpeg',0),(480,1,'2018-04-20 02:21:05','2018-04-20 02:21:05','<img class=\"alignleft wp-image-472 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/KCL-GENETICS-copy-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and was/is based in the ability to adapt and succeed in various Texas conditions.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 02:21:05','2018-04-20 02:21:05','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(481,1,'2018-04-20 02:23:29','2018-04-20 02:23:29','<img class=\"alignleft wp-image-472 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/KCL-GENETICS-copy-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and was/is based in the ability to adapt and succeed in various Texas conditions.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 02:23:29','2018-04-20 02:23:29','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(484,1,'2018-04-20 02:29:11','2018-04-20 02:29:11','<img class=\"alignleft wp-image-316 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and was/is based in the ability to adapt and succeed in various Texas conditions.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 02:29:11','2018-04-20 02:29:11','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(482,1,'2018-04-20 02:25:16','2018-04-20 02:25:16','<img class=\"alignleft wp-image-472 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/KCL-GENETICS-copy-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and was/is based in the ability to adapt and succeed in various Texas conditions.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Larson Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 02:25:16','2018-04-20 02:25:16','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(483,1,'2018-04-20 02:26:54','2018-04-20 02:26:54','<img class=\"alignleft wp-image-472 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/KCL-GENETICS-copy-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and was/is based in the ability to adapt and succeed in various Texas conditions.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 02:26:54','2018-04-20 02:26:54','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(488,1,'2018-04-20 02:53:23','2018-04-20 02:53:23','','cropped-KCL-GENETICS-copy-1.jpg','','inherit','closed','closed','','cropped-kcl-genetics-copy-1-jpg','','','2018-04-20 02:53:23','2018-04-20 02:53:23','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/cropped-KCL-GENETICS-copy-1.jpg',0,'attachment','image/jpeg',0),(491,1,'2018-04-20 17:28:19','2018-04-20 17:28:19','<label> Your Name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n    [email* your-email] </label>\r\n\r\n<label> Subject\r\n    [text your-subject] </label>\r\n\r\n<label> Your Message\r\n    [textarea your-message] </label>\r\n\r\n[submit \"Send\"]\n1\n\"[your-subject]\"\n[your-name] <wordpress@kclgenetics.com>\nrunlranch@aol.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on  (http://kclgenetics.com)\nReply-To: [your-email]\n\n\n\n\n\"[your-subject]\"\n<wordpress@kclgenetics.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on  (http://kclgenetics.com)\nReply-To: support@maiahost.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2018-04-20 17:31:57','2018-04-20 17:31:57','',0,'http://kclgenetics.com/?post_type=wpcf7_contact_form&#038;p=491',0,'wpcf7_contact_form','',0),(492,1,'2018-04-20 17:33:02','2018-04-20 17:33:02','<img class=\"aligncenter size-full wp-image-204\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" alt=\"\" width=\"300\" height=\"180\" />\r\n<h3 style=\"text-align: center;\">Please join us May 19, 2018 @ 12:00 pm at the ranch for the 8th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 18, 2016 and cattle will be available for viewing at any time.</strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n<img class=\"aligncenter size-full wp-image-380\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/north-entrance.jpg\" alt=\"\" width=\"785\" height=\"320\" />','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2018-04-20 17:33:02','2018-04-20 17:33:02','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(493,1,'2018-04-20 17:34:49','2018-04-20 17:34:49','<span style=\"font-size: 28px; font-weight: 900;\">Contact Numbers</span>\r\n<div class=\"rt-grid-6 rt-alpha\">\r\n<div class=\"rt-block box2\">\r\n<div class=\"module-surround\">\r\n<div class=\"module-content\">\r\n<div class=\"custombox2\">\r\n\r\n<img class=\"alignleft size-thumbnail wp-image-316\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Ranch Office- 254-435-6063\r\n\r\nOwner- Ken Larson- 972-977-8251\r\n\r\nLee Larson- Manager- 972-824-5869\r\n\r\nJosh Lowe-Herdman- 972-310-2421\r\n\r\nRanch Address: 2793 FM 1991 - Clifton, TX 76634\r\n\r\nE-mail: runlranch@aol.com\r\n\r\n[contact-form-7 id=\"491\" title=\"Contact form 1\"]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2018-04-20 17:34:49','2018-04-20 17:34:49','',51,'http://kclgenetics.com/51-revision-v1/',0,'revision','',0),(498,1,'2018-04-20 19:50:04','2018-04-20 19:50:04','<img class=\"alignleft wp-image-316 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and was/is based in the ability to adapt and succeed in various Texas conditions.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 19:50:04','2018-04-20 19:50:04','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(494,1,'2018-04-20 19:36:36','2018-04-20 19:36:36','<img class=\"alignleft wp-image-316 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and was/is based in the ability to adapt and succeed in various Texas conditions.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n[Rich_Web_Slider id=\"1\"]\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 19:36:36','2018-04-20 19:36:36','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(497,1,'2018-04-20 19:48:16','2018-04-20 19:48:16','<img class=\"alignleft wp-image-316 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and was/is based in the ability to adapt and succeed in various Texas conditions.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n[Rich_Web_Slider id=\"1\"]\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 19:48:16','2018-04-20 19:48:16','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(495,1,'2018-04-20 19:44:25','2018-04-20 19:44:25','<img class=\"alignleft wp-image-316 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and was/is based in the ability to adapt and succeed in various Texas conditions.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n<table class=\"rich_web_ShortTable\">\r\n<tbody>\r\n<tr>\r\n<td class=\"JMBSL\">&lt;?php echo do_shortcode(\'[Rich_Web_Slider id=\"1\"]\');?&gt;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 19:44:25','2018-04-20 19:44:25','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(542,1,'2018-04-21 23:20:37','2018-04-21 23:20:37',' ','','','publish','closed','closed','','542','','','2018-04-21 23:20:37','2018-04-21 23:20:37','',0,'http://kclgenetics.com/?p=542',7,'nav_menu_item','',0),(501,1,'2018-04-20 20:10:54','2018-04-20 20:10:54','<img class=\"alignleft wp-image-316 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and was/is based in the ability to adapt and succeed in various Texas conditions.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 20:10:54','2018-04-20 20:10:54','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(499,1,'2018-04-20 19:55:38','2018-04-20 19:55:38','<img class=\"alignleft wp-image-316 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n[Rich_Web_Slider id=\"2\"]\r\n\r\nEveryone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and was/is based in the ability to adapt and succeed in various Texas conditions.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 19:55:38','2018-04-20 19:55:38','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(502,1,'2018-04-20 23:00:15','2018-04-20 23:00:15','','2450','','inherit','closed','closed','','2450','','','2018-04-20 23:00:15','2018-04-20 23:00:15','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/2450.pdf',0,'attachment','application/pdf',0),(503,1,'2018-04-20 23:01:31','2018-04-20 23:01:31','','102Z KCL','Advance 102Z','inherit','closed','closed','','102z-kcl','','','2018-05-02 01:10:20','2018-05-02 01:10:20','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/102Z-KCL.jpg',0,'attachment','image/jpeg',0),(504,1,'2018-04-20 23:01:52','2018-04-20 23:01:52','','188A KCL','188A','inherit','closed','closed','','188a-kcl','','','2018-04-21 23:04:50','2018-04-21 23:04:50','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/188A-KCL.jpg',0,'attachment','image/jpeg',0),(505,1,'2018-04-20 23:02:17','2018-04-20 23:02:17','','415A KCL','415A','inherit','closed','closed','','415a-kcl','','','2018-04-21 23:04:46','2018-04-21 23:04:46','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/415A-KCL.jpg',0,'attachment','image/jpeg',0),(506,1,'2018-04-20 23:02:30','2018-04-20 23:02:30','','561 Buck','Lady Red 5061C','inherit','closed','closed','','561-buck','','','2018-05-02 01:10:10','2018-05-02 01:10:10','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/561-Buck.jpg',0,'attachment','image/jpeg',0),(507,1,'2018-04-20 23:02:59','2018-04-20 23:02:59','','602D KCL','','inherit','closed','closed','','602d-kcl','','','2018-04-20 23:02:59','2018-04-20 23:02:59','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/602D-KCL.jpg',0,'attachment','image/jpeg',0),(508,1,'2018-04-20 23:03:21','2018-04-20 23:03:21','','A18 KCL','A18','inherit','closed','closed','','a18-kcl','','','2018-04-21 23:04:37','2018-04-21 23:04:37','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL.jpg',0,'attachment','image/jpeg',0),(509,1,'2018-04-20 23:03:51','2018-04-20 23:03:51','','B224 KCL','Holy B224','inherit','closed','closed','','b224-kcl','','','2018-05-02 01:10:02','2018-05-02 01:10:02','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL.jpg',0,'attachment','image/jpeg',0),(510,1,'2018-04-20 23:06:30','2018-04-20 23:06:30','','3B KCL','Country Boy','inherit','closed','closed','','3b-kcl','','','2018-05-02 01:17:50','2018-05-02 01:17:50','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/3B-KCL.jpg',0,'attachment','image/jpeg',0),(513,1,'2018-04-21 22:23:15','2018-04-21 22:23:15',' ','','','publish','closed','closed','','513','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=513',8,'nav_menu_item','',0),(514,1,'2018-04-21 22:23:15','2018-04-21 22:23:15',' ','','','publish','closed','closed','','514','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=514',5,'nav_menu_item','',0),(515,1,'2018-04-21 22:23:15','2018-04-21 22:23:15',' ','','','publish','closed','closed','','515','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=515',11,'nav_menu_item','',0),(516,1,'2018-04-21 22:23:15','2018-04-21 22:23:15',' ','','','publish','closed','closed','','516','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=516',12,'nav_menu_item','',0),(517,1,'2018-04-21 22:23:15','2018-04-21 22:23:15',' ','','','publish','closed','closed','','517','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=517',3,'nav_menu_item','',0),(518,1,'2018-04-21 22:23:15','2018-04-21 22:23:15',' ','','','publish','closed','closed','','518','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=518',13,'nav_menu_item','',0),(680,1,'2018-05-03 16:45:01','2018-05-03 16:45:01','<img class=\"alignleft wp-image-316 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this <strong>resilient</strong> breed.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics---2018 Larson Hereford Alliance Catalog Online Now!!!!','','inherit','closed','closed','','44-revision-v1','','','2018-05-03 16:45:01','2018-05-03 16:45:01','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(520,1,'2018-04-21 22:23:15','2018-04-21 22:23:15',' ','','','publish','closed','closed','','520','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=520',14,'nav_menu_item','',0),(521,1,'2018-04-21 22:23:16','2018-04-21 22:23:16',' ','','','publish','closed','closed','','521','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=521',16,'nav_menu_item','',0),(522,1,'2018-04-21 22:23:16','2018-04-21 22:23:16',' ','','','publish','closed','closed','','522','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=522',18,'nav_menu_item','',0),(523,1,'2018-04-21 22:32:33','2018-04-21 22:32:33','<strong>Owned w/ Whipering Pine Farms, Kimball, MN</strong>\n\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 684px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5925275820262E\"&gt;REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5925262026232D\"&gt;REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5925262026252E\"&gt;RMTLL SALLYS LASS 120X (P23649228)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B585B585921242F\"&gt;PW VICTOR BOOMER P606 {SOD,CHB,DLF,HYF,IEF} (P24020737)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B222122232025\"&gt;RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59582758222121\"&gt;PW VICTORIA 964 8114 {DLF,HYF,IEF} (P23331665)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B5B2627242722\"&gt;HVF VICTORIA 1121 05 (P21042404)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C255A20232622\"&gt;ZF P606 MISS VICKY Z488 {DLF,HYF,IEF} (P42606181)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B232723272224\"&gt;KILMORLIE PROSPECTER ET 96X (P21836152)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59255822252E2F\"&gt;SCF S60 PROSTPCT 215 (P23627397)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5A232125272F2F\"&gt;FLF FORCETTE S60 (P22894187)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59242426222F24\"&gt;FHF D10 GLD PROSTPCT (P23763682)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B595A25252F2E21\"&gt;WML STICKLER 6252 (P23154995)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59275926582126\"&gt;MISS STICKLES GLD (P23413060)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5A255823202022\"&gt;RS MISS GILEAD 37B (P22626874)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&lt;br style=\"color: #000000; font-family: arial, sans-serif; font-size: medium; line-height: normal;\" /&gt;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"17\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2014 EPDS&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C255A20232622\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-2.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+38&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+54&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-2.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+55&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.059&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.44&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.39&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.42&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"17\" bgcolor=\"#99CC99\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','ZF P606 MISS VICKY Z488 {DLF,HYF,IEF} (P42606181)','description','inherit','closed','closed','','151-autosave-v1','','','2018-04-21 22:32:33','2018-04-21 22:32:33','',151,'http://kclgenetics.com/151-autosave-v1/',0,'revision','',0),(532,1,'2018-04-21 22:58:01','2018-04-21 22:58:01',' ','','','publish','closed','closed','','532','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=532',7,'nav_menu_item','',0),(533,1,'2018-04-21 22:58:01','2018-04-21 22:58:01',' ','','','publish','closed','closed','','533','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=533',19,'nav_menu_item','',0),(535,1,'2018-04-21 22:58:01','2018-04-21 22:58:01',' ','','','publish','closed','closed','','535','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=535',15,'nav_menu_item','',0),(536,1,'2018-04-21 22:58:01','2018-04-21 22:58:01',' ','','','publish','closed','closed','','536','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=536',17,'nav_menu_item','',0),(703,1,'2018-05-09 22:02:34','2018-05-09 22:02:34','<h3 style=\"text-align: center;\">Please join us May 19, 2018 @ 12:00 pm at the ranch for the\r\n8th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051918\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-679 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/2018-Hereford-Alliance-Cover-232x300.jpg\" alt=\"\" width=\"232\" height=\"300\" /></a></p>\r\n<p style=\"text-align: center;\"><strong>Cattle will be available for viewing at any time.</strong></p>\r\n\r\n\r\n[caption id=\"attachment_701\" align=\"aligncenter\" width=\"300\"]<a href=\"https://www.youtube.com/playlist?list=PL3K3ghzeET2SMAbUEJjNthd8-8m2n7gnM\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-701 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></a> Click Here for Online Videos[/caption]\r\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n<img class=\"aligncenter size-full wp-image-380\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/north-entrance.jpg\" alt=\"\" width=\"785\" height=\"320\" />','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2018-05-09 22:02:34','2018-05-09 22:02:34','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(538,1,'2018-04-21 22:58:01','2018-04-21 22:58:01',' ','','','publish','closed','closed','','538','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=538',9,'nav_menu_item','',0),(539,1,'2018-04-21 22:58:01','2018-04-21 22:58:01',' ','','','publish','closed','closed','','539','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=539',4,'nav_menu_item','',0),(540,1,'2018-04-21 22:58:01','2018-04-21 22:58:01',' ','','','publish','closed','closed','','540','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=540',10,'nav_menu_item','',0),(543,1,'2018-04-21 23:20:37','2018-04-21 23:20:37',' ','','','publish','closed','closed','','543','','','2018-04-21 23:20:37','2018-04-21 23:20:37','',0,'http://kclgenetics.com/?p=543',8,'nav_menu_item','',0),(544,1,'2018-04-21 23:20:37','2018-04-21 23:20:37',' ','','','publish','closed','closed','','544','','','2018-04-21 23:20:37','2018-04-21 23:20:37','',0,'http://kclgenetics.com/?p=544',9,'nav_menu_item','',0),(545,1,'2018-04-21 23:20:37','2018-04-21 23:20:37',' ','','','publish','closed','closed','','545','','','2018-04-21 23:20:37','2018-04-21 23:20:37','',0,'http://kclgenetics.com/?p=545',10,'nav_menu_item','',0),(546,1,'2018-04-21 23:20:37','2018-04-21 23:20:37',' ','','','publish','closed','closed','','546','','','2018-04-21 23:20:37','2018-04-21 23:20:37','',0,'http://kclgenetics.com/?p=546',11,'nav_menu_item','',0),(547,1,'2018-04-21 23:20:37','2018-04-21 23:20:37',' ','','','publish','closed','closed','','547','','','2018-04-21 23:20:37','2018-04-21 23:20:37','',0,'http://kclgenetics.com/?p=547',12,'nav_menu_item','',0),(548,1,'2018-04-21 23:20:37','2018-04-21 23:20:37',' ','','','publish','closed','closed','','548','','','2018-04-21 23:20:37','2018-04-21 23:20:37','',0,'http://kclgenetics.com/?p=548',6,'nav_menu_item','',0),(549,1,'2018-04-21 23:20:37','2018-04-21 23:20:37',' ','','','publish','closed','closed','','549','','','2018-04-21 23:20:37','2018-04-21 23:20:37','',0,'http://kclgenetics.com/?p=549',1,'nav_menu_item','',0),(550,1,'2018-04-21 23:20:37','2018-04-21 23:20:37',' ','','','publish','closed','closed','','550','','','2018-04-21 23:20:37','2018-04-21 23:20:37','',0,'http://kclgenetics.com/?p=550',3,'nav_menu_item','',0),(551,1,'2018-04-21 23:20:37','2018-04-21 23:20:37',' ','','','publish','closed','closed','','551','','','2018-04-21 23:20:37','2018-04-21 23:20:37','',0,'http://kclgenetics.com/?p=551',2,'nav_menu_item','',0),(552,1,'2018-04-21 23:20:37','2018-04-21 23:20:37',' ','','','publish','closed','closed','','552','','','2018-04-21 23:20:37','2018-04-21 23:20:37','',0,'http://kclgenetics.com/?p=552',4,'nav_menu_item','',0),(553,1,'2018-04-21 23:20:37','2018-04-21 23:20:37',' ','','','publish','closed','closed','','553','','','2018-04-21 23:20:37','2018-04-21 23:20:37','',0,'http://kclgenetics.com/?p=553',5,'nav_menu_item','',0),(554,1,'2018-04-21 23:26:58','2018-04-21 23:26:58','<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 780px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">BTF FORAGE FINDER 109W {CHB} (P23249538)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">TMF VINDY 451 (P22905013)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">RHF 964 VICTRA 4057 (P22857143)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">PAF VICTORIA 2J85 (P21643646)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW FROSTY 1Y (P23345979)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR 434V TRADER 535 (P23872357)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">KBCR DOMINETTE 9112 (P42008924)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR A58 DOMINETTE 523 {DOD} (P23872369)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C235A2427222E\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+7.8</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+0.3</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+63</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+89</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+31</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+62</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-3.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.31</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.37</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.4</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">-0.015</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 24</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 20</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 20</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 33</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.73</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.93</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.91</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.90</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.74</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.00</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.63</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.76</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.80</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.78</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.78</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.68</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.69</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.66</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,FAT,REA,IMF,<img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>517/3175,<strong>WW:</strong>413/2563,<strong>YW:</strong>190/1011,<strong>SC:</strong>60/245,<strong>Dgt:</strong>318,<strong>SCAN:</strong>599,<strong>HARVEST:</strong>3,<strong>MCW:</strong>83,<strong>UDDR:</strong>62/216</center>','TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)','description','inherit','closed','closed','','186-autosave-v1','','','2018-04-21 23:26:58','2018-04-21 23:26:58','',186,'http://kclgenetics.com/186-autosave-v1/',0,'revision','',0),(566,1,'2018-04-22 02:50:21','2018-04-22 02:50:21','&nbsp;\r\n<h1>About Larson Breeding Program</h1>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.   Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n<img class=\"aligncenter size-medium wp-image-204\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" />','About Us','','inherit','closed','closed','','303-revision-v1','','','2018-04-22 02:50:21','2018-04-22 02:50:21','',303,'http://kclgenetics.com/303-revision-v1/',0,'revision','',0),(568,1,'2018-04-22 02:54:13','2018-04-22 02:54:13','&nbsp;\r\n<h1>About Larson Breeding Program</h1>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.   Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothering ability and longevity.\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire feedstock Hereford genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n<img class=\"aligncenter size-medium wp-image-204\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" />','About Us','','inherit','closed','closed','','303-revision-v1','','','2018-04-22 02:54:13','2018-04-22 02:54:13','',303,'http://kclgenetics.com/303-revision-v1/',0,'revision','',0),(38,1,'2017-03-03 13:40:58','2017-03-03 13:40:58','','Divi','','publish','closed','closed','','divi','','','2017-03-04 01:08:20','2017-03-04 01:08:20','',0,'http://new.kclgenetics.com/2017/03/03/divi/',0,'custom_css','',0),(39,1,'2017-03-03 13:40:58','2017-03-03 13:40:58','','Divi','','inherit','closed','closed','','38-revision-v1','','','2017-03-03 13:40:58','2017-03-03 13:40:58','',38,'http://new.kclgenetics.com/2017/03/03/38-revision-v1/',0,'revision','',0),(40,1,'2017-03-03 13:42:29','2017-03-03 13:42:29','','logo','','inherit','open','closed','','logo','','','2017-03-03 13:42:29','2017-03-03 13:42:29','',0,'http://new.kclgenetics.com/wp-content/uploads/2017/03/logo.gif',0,'attachment','image/gif',0),(44,1,'2017-03-03 13:48:08','2017-03-03 13:48:08','<img width=\"768\" height=\"213\" src=\"http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-768x213.jpeg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-768x213.jpeg 768w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-300x83.jpeg 300w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-1024x284.jpeg 1024w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png.jpeg 1260w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"300\" height=\"224\" src=\"http://kclgenetics.com/wp-content/uploads/2020/04/72048917_519360131958583_4843767720182808576_n-2.jpg\" alt=\"\" />											\n			<h2>The 2020 Hereford Alliance Sale Has Been Cancelled Due to the Corona Virus Pandemic</h2>		\n			<h2>Welcome to Larson Running L Ranch</h2>		\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"516\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>Join Us May 2020</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			<h1>2021 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds','Home of KCL Genetics','','publish','closed','closed','','larsons-running-l-ranch','','','2020-04-15 13:25:57','2020-04-15 13:25:57','',0,'http://new.kclgenetics.com/?page_id=44',0,'page','',0),(433,1,'2018-04-17 00:22:02','2018-04-17 00:22:02','<img class=\"alignleft size-thumbnail wp-image-316\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\n<img class=\"aligncenter size-medium wp-image-204\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" />\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2018-04-17 00:22:02','2018-04-17 00:22:02','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(431,1,'2018-04-17 00:20:04','2018-04-17 00:20:04','<h1>Larsons\' Running L Ranch</h1>\r\n<img class=\"alignleft size-thumbnail wp-image-316\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\n<img class=\"alignleft size-thumbnail wp-image-204\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Our annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2018-04-17 00:20:04','2018-04-17 00:20:04','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(432,1,'2018-04-17 00:20:55','2018-04-17 00:20:55','<h1>Larsons\' Running L Ranch</h1>\r\n<img class=\"alignleft size-thumbnail wp-image-316\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\n<img class=\"aligncenter size-medium wp-image-204\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" />\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2018-04-17 00:20:55','2018-04-17 00:20:55','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(45,1,'2017-03-03 13:48:08','2017-03-03 13:48:08','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 13:48:08','2017-03-03 13:48:08','',44,'http://new.kclgenetics.com/2017/03/03/44-revision-v1/',0,'revision','',0),(51,1,'2017-03-03 14:35:58','2017-03-03 14:35:58','<figure>\n										<img width=\"150\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" />											<figcaption>A Tradition That Continues To Improve</figcaption>\n										</figure>\n		<p>Ranch Office- 972-824-5869</p><p>Owner- Ken Larson- 972-977-8251</p><p>Lee Larson- Manager- 972-824-5869</p><p>Josh Lowe-- 972-310-2421</p><p>Ranch Address: 2793 FM 1991 - Clifton, TX 76634</p><p>E-mail: runlranch@aol.com</p>		\n			<h2>Send Us a Note...</h2>		\n		[contact-form-7 id=\"491\" title=\"Contact form 1\"]		\n										<img width=\"900\" height=\"596\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1200x795.jpg 1200w\" sizes=\"(max-width: 900px) 100vw, 900px\" />','Contact Us','','publish','closed','closed','','contact-us','','','2019-06-05 22:42:51','2019-06-05 22:42:51','',0,'http://new.kclgenetics.com/?page_id=51',0,'page','',0),(826,1,'2019-05-05 04:53:24','2019-05-05 04:53:24','<figure>\n										<img width=\"150\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" />											<figcaption>A Tradition That Continveues To Improve</figcaption>\n										</figure>\n		<p>Ranch Office- 972-824-5869</p><p>Owner- Ken Larson- 972-977-8251</p><p>Lee Larson- Manager- 972-824-5869</p><p>Josh Lowe-- 972-310-2421</p><p>Ranch Address: 2793 FM 1991 - Clifton, TX 76634</p><p>E-mail: runlranch@aol.com</p>[contact-form-7 id=\"491\" title=\"Contact form 1\"]','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2019-05-05 04:53:24','2019-05-05 04:53:24','',51,'http://kclgenetics.com/51-revision-v1/',0,'revision','',0),(455,1,'2018-04-20 00:42:36','2018-04-20 00:42:36','<img class=\"alignleft wp-image-316 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-281x300.jpg\" alt=\"\" width=\"281\" height=\"300\" />\r\n<div class=\"rt-grid-6 rt-alpha\">\r\n<div class=\"rt-block box2\">\r\n<div class=\"module-surround\">\r\n<div class=\"module-title\">\r\n<h2 class=\"title\">Contact Numbers</h2>\r\n</div>\r\n<div class=\"module-content\">\r\n<div class=\"custombox2\">\r\n\r\nRanch Office- 254-435-6063\r\n\r\nOwner- Ken Larson- 972-977-8251\r\n\r\nLee Larson- Manager- 972-824-5869\r\n\r\nJosh Lowe-Herdman- 972-310-2421\r\n\r\nRanch Address: 2793 FM 1991 - Clifton, TX 76634\r\n\r\nE-mail: runlranch@aol.com\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2018-04-20 00:42:36','2018-04-20 00:42:36','',51,'http://kclgenetics.com/51-revision-v1/',0,'revision','',0),(430,1,'2018-04-17 00:15:48','2018-04-17 00:15:48','<img class=\"aligncenter size-full wp-image-316\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo.jpg\" alt=\"\" width=\"528\" height=\"564\" />\r\n<div class=\"rt-grid-6 rt-alpha\">\r\n<div class=\"rt-block box2\">\r\n<div class=\"module-surround\">\r\n<div class=\"module-title\">\r\n<h2 class=\"title\">Contact Numbers</h2>\r\n</div>\r\n<div class=\"module-content\">\r\n<div class=\"custombox2\">\r\n\r\nRanch Office- 254-435-6063\r\n\r\nOwner- Ken Larson- 972-977-8251\r\n\r\nLee Larson- Manager- 972-824-5869\r\n\r\nJosh Lowe-Herdman- 972-310-2421\r\n\r\nRanch Address: 2793 FM 1991 - Clifton, TX 76634\r\n\r\nE-mail: runlranch@aol.com\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2018-04-17 00:15:48','2018-04-17 00:15:48','',51,'http://kclgenetics.com/51-revision-v1/',0,'revision','',0),(52,1,'2017-03-03 14:35:36','2017-03-03 14:35:36','','Professor Denver 2104','','inherit','closed','closed','','professor-denver-2104','','','2017-03-03 14:35:36','2017-03-03 14:35:36','',51,'http://new.kclgenetics.com/wp-content/uploads/2017/03/Professor-Denver-2104.jpg',0,'attachment','image/jpeg',0),(53,1,'2017-03-03 14:35:58','2017-03-03 14:35:58','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<div class=\"rt-grid-6 rt-alpha\">\r\n<div class=\"rt-block box2\">\r\n<div class=\"module-surround\">\r\n<div class=\"module-title\">\r\n<h2 class=\"title\">Contact Numbers</h2>\r\n</div>\r\n<div class=\"module-content\">\r\n<div class=\"custombox2\">\r\n\r\nRanch Office- 254-435-6063\r\n\r\nOwner- Ken Larson- 972-977-8251\r\n\r\nLee Larson- Manager- 972-824-5869\r\n\r\nJosh Lowe-Herdman- 972-310-2421\r\n\r\nRanch Address: 2793 FM 1991 - Clifton, TX 76634\r\n\r\nE-mail: runlranch@aol.com\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/Professor-Denver-2104.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2017-03-03 14:35:58','2017-03-03 14:35:58','',51,'http://new.kclgenetics.com/2017/03/03/51-revision-v1/',0,'revision','',0),(54,1,'2017-03-03 14:38:32','2017-03-03 14:38:32','<img width=\"768\" height=\"213\" src=\"http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-768x213.jpeg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-768x213.jpeg 768w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-300x83.jpeg 300w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-1024x284.jpeg 1024w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png.jpeg 1260w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<img width=\"300\" height=\"224\" src=\"http://kclgenetics.com/wp-content/uploads/2020/04/72048917_519360131958583_4843767720182808576_n-2.jpg\" alt=\"\">\n<h2>2020 Hereford Alliance Sale Canceled\nDue to Coronavirus Pandemic\nWe Look forward to seeing you in 2021.\nGive Us a Call if we can be of any service.</h2>\n<h2>\n							2021 Hereford Alliance Sale</h2>\n<figure>\n											<a href=\"https://issuu.com/trac…/docs/larsonsherefordalliance051819/2\">\n<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\">								</a><figcaption>May 15, 2021 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption></figure>\n<figure>\n										<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\">\n\n<figcaption>Click here to enter Auction. Live May 15, 2021</figcaption></figure>\n<figure>\n										<img width=\"600\" height=\"400\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n\n<figcaption>Look for a Daughter...</figcaption></figure>\n<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\"></figure>\n<h3>Look For This Logo</h3>\nLots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\n<h5>2021 Hereford Alliance Videos</h5>\n<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2019 Hereford Alliance Sale','','publish','closed','closed','','2018-hereford-alliance-sale','','','2020-04-15 13:35:01','2020-04-15 13:35:01','',0,'http://new.kclgenetics.com/?page_id=54',0,'page','',0),(572,1,'2018-04-22 03:03:01','2018-04-22 03:03:01','<h3 style=\"text-align: center;\">Please join us May 19, 2018 @ 12:00 pm at the ranch for the\r\n8th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 18, 2016 and cattle will be available for viewing at any time.</strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n<img class=\"aligncenter size-full wp-image-380\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/north-entrance.jpg\" alt=\"\" width=\"785\" height=\"320\" />','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2018-04-22 03:03:01','2018-04-22 03:03:01','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(429,1,'2018-04-17 00:14:52','2018-04-17 00:14:52','<img class=\"aligncenter size-full wp-image-204\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" alt=\"\" width=\"300\" height=\"180\" />\r\n<h3 style=\"text-align: center;\">Please join us May 19, 2018 @ 12:00 pm at the ranch for the 8th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 18, 2016 and cattle will be available for viewing at any time.</strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n<img class=\"aligncenter size-full wp-image-380\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/north-entrance.jpg\" alt=\"\" width=\"785\" height=\"320\" />','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2018-04-17 00:14:52','2018-04-17 00:14:52','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(55,1,'2017-03-03 14:37:09','2017-03-03 14:37:09','','sale.logo','','inherit','closed','closed','','sale-logo','','','2017-03-03 14:37:09','2017-03-03 14:37:09','',54,'http://new.kclgenetics.com/wp-content/uploads/2017/03/sale.logo_.png',0,'attachment','image/png',0),(56,1,'2017-03-03 14:38:32','2017-03-03 14:38:32','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/sale.logo_.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/21/2017 10:00\" background_layout=\"light\" use_background_color=\"on\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-03 14:38:32','2017-03-03 14:38:32','',54,'http://new.kclgenetics.com/2017/03/03/54-revision-v1/',0,'revision','',0),(57,1,'2017-03-03 14:38:58','2017-03-03 14:38:58','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/sale.logo_.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/21/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-03 14:38:58','2017-03-03 14:38:58','',54,'http://new.kclgenetics.com/2017/03/03/54-revision-v1/',0,'revision','',0),(58,1,'2017-03-03 14:39:20','2017-03-03 14:39:20','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/sale.logo_.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/21/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-03 14:39:20','2017-03-03 14:39:20','',54,'http://new.kclgenetics.com/2017/03/03/54-revision-v1/',0,'revision','',0),(59,1,'2017-03-03 14:41:19','2017-03-03 14:41:19','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/sale.logo_.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/21/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease join us May 21, 2016 @ 12:oo pm at the ranch for the 6th Annual Hereford Alliance Sale.\r\n\r\nThe pre-sale social will be help May 20, 2016  and cattle will be available for viewing at any time.\r\n\r\nContact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.\r\n\r\nLet us know if you would like to be on our catalogue mailing list.\r\n\r\n<span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-03 14:41:19','2017-03-03 14:41:19','',54,'http://new.kclgenetics.com/2017/03/03/54-revision-v1/',0,'revision','',0),(60,1,'2017-03-03 14:46:55','2017-03-03 14:46:55','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n										<img width=\"300\" height=\"203\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"199\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-300x199.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1200x795.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"203\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-300x203.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1200x813.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"199\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-300x199.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-1200x795.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/KCL-3T-BONISSA-71S-114W-ET-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/KCL-3T-BONISSA-71S-114W-ET-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/KCL-3T-BONISSA-71S-114W-ET.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>			\n							<figure>\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											<figcaption>3rd Saturday of May</figcaption>\n										</figure>','KCL Genetics Donor Cows','','publish','closed','closed','','kcl-donor-cows','','','2019-06-06 02:35:28','2019-06-06 02:35:28','',0,'http://new.kclgenetics.com/?page_id=60',0,'page','',0),(831,1,'2019-05-05 04:58:48','2019-05-05 04:58:48','','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 04:58:48','2019-05-05 04:58:48','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(561,1,'2018-04-22 02:41:09','2018-04-22 02:41:09','<h3>KCL Genetics Donor Cow Program</h3>\r\n<blockquote><em>The <strong>KCL Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give great confidence in the production of \"The Next Generation\". COW FAMILIES ARE THE KEY</em></blockquote>','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2018-04-22 02:41:09','2018-04-22 02:41:09','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(448,1,'2018-04-20 00:06:18','2018-04-20 00:06:18','<h3>KCL Donor Cow Program</h3>\r\n<blockquote><em>The <strong>KCL Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. At times we do input young semi-proven females in this program based on the production of their mothers and siblings. All of these factors give great confidence in our production of \"The Next Generation\". COW FAMILIES ARE THE KEY</em></blockquote>','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2018-04-20 00:06:18','2018-04-20 00:06:18','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(61,1,'2017-03-03 14:46:55','2017-03-03 14:46:55','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"20\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section]','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2017-03-03 14:46:55','2017-03-03 14:46:55','',60,'http://new.kclgenetics.com/2017/03/03/60-revision-v1/',0,'revision','',0),(62,1,'2017-03-03 14:47:36','2017-03-03 14:47:36','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence at Larson</h2>		\n							<figure>\n										<img width=\"300\" height=\"210\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-768x538.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Mandate 66589 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"169\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png 300w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-768x432.png 768w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752.png 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>PCR X51 Bentley 454B</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"201\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77121-Shaw-KCL-300x201.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77121-Shaw-KCL-300x201.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77121-Shaw-KCL-768x514.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/77121-Shaw-KCL-1024x686.jpg 1024w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Yosemite 77121</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"206\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77130-KCL-Shaw-300x206.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77130-KCL-Shaw-300x206.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77130-KCL-Shaw-768x528.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/77130-KCL-Shaw-1024x705.jpg 1024w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Jetsetter 77130 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"768\" height=\"549\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-300x214.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET.jpg 940w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>H FHF Advance 628 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/z311.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>KCF Bennett Encore Z311 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"202\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Adrenaline 77026 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>KCL X51 Mastermind 1L 602D ET</figcaption>\n										</figure>','Carefully Selected Sire Influence','','publish','closed','closed','','currently-used-bulls','','','2019-06-06 01:48:37','2019-06-06 01:48:37','',0,'http://new.kclgenetics.com/?page_id=62',0,'page','',0),(450,1,'2018-04-20 00:15:46','2018-04-20 00:15:46','<h3>Bull Influence</h3>\r\n<img class=\"alignleft wp-image-159 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/KCL-WPF-THE-PROFESSOR-7110ET-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these important characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted in the most desolate of conditions. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally does not include all bulls being used, but is an accurate cross-section of our genetic philosophies.','Currently used Bulls','','inherit','closed','closed','','62-revision-v1','','','2018-04-20 00:15:46','2018-04-20 00:15:46','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(63,1,'2017-03-03 14:47:36','2017-03-03 14:47:36','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"20\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Currently used Bulls','','inherit','closed','closed','','62-revision-v1','','','2017-03-03 14:47:36','2017-03-03 14:47:36','',62,'http://new.kclgenetics.com/2017/03/03/62-revision-v1/',0,'revision','',0),(64,1,'2017-03-03 14:48:32','2017-03-03 14:48:32','','Home','','publish','closed','closed','','home','','','2018-06-08 05:29:39','2018-06-08 05:29:39','',0,'http://new.kclgenetics.com/?p=64',1,'nav_menu_item','',0),(65,1,'2017-03-03 14:48:32','2017-03-03 14:48:32','','Bull Influence','','publish','closed','closed','','65','','','2018-06-08 05:29:39','2018-06-08 05:29:39','',0,'http://new.kclgenetics.com/?p=65',3,'nav_menu_item','',0),(66,1,'2017-03-03 14:48:32','2017-03-03 14:48:32','','KCL Donor Cows','','publish','closed','closed','','66','','','2018-06-08 05:29:39','2018-06-08 05:29:39','',0,'http://new.kclgenetics.com/?p=66',2,'nav_menu_item','',0),(67,1,'2017-03-03 14:48:32','2017-03-03 14:48:32',' ','','','publish','closed','closed','','67','','','2018-06-08 05:29:39','2018-06-08 05:29:39','',0,'http://new.kclgenetics.com/?p=67',7,'nav_menu_item','',0),(68,1,'2017-03-03 14:48:32','2017-03-03 14:48:32',' ','','','publish','closed','closed','','68','','','2018-06-08 05:29:39','2018-06-08 05:29:39','',0,'http://new.kclgenetics.com/?p=68',8,'nav_menu_item','',0),(69,1,'2017-03-03 15:09:32','2017-03-03 15:09:32','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"20\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Bull Influence</h3>\r\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these important characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted in the most desolate of conditions. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally does not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Currently used Bulls','','inherit','closed','closed','','62-revision-v1','','','2017-03-03 15:09:32','2017-03-03 15:09:32','',62,'http://new.kclgenetics.com/2017/03/03/62-revision-v1/',0,'revision','',0),(70,1,'2017-03-03 15:09:39','2017-03-03 15:09:39','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Bull Influence</h3>\r\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these important characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted in the most desolate of conditions. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally does not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\r\n\r\n[/et_pb_text][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"20\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Currently used Bulls','','inherit','closed','closed','','62-revision-v1','','','2017-03-03 15:09:39','2017-03-03 15:09:39','',62,'http://new.kclgenetics.com/2017/03/03/62-revision-v1/',0,'revision','',0),(72,1,'2017-03-03 15:26:15','2017-03-03 15:26:15','','JSF 12 VIOLET 4R {DLF,HYF,IEF} (P43068899)','Reminded Us of 65K','publish','closed','closed','','jsf-12-violet-4r-dlfhyfief-p43068899','','','2018-04-22 03:36:59','2018-04-22 03:36:59','',0,'http://new.kclgenetics.com/?p=72',0,'post','',0),(591,1,'2018-04-22 03:36:53','2018-04-22 03:36:53','','JSF 12 VIOLET 4R {DLF,HYF,IEF} (P43068899)','Reminded Us of 65K','inherit','closed','closed','','72-revision-v1','','','2018-04-22 03:36:53','2018-04-22 03:36:53','',72,'http://kclgenetics.com/72-revision-v1/',0,'revision','',0),(853,1,'2019-05-05 05:21:44','2019-05-05 05:21:44','','News Updates','','inherit','closed','closed','','306-revision-v1','','','2019-05-05 05:21:44','2019-05-05 05:21:44','',306,'http://kclgenetics.com/306-revision-v1/',0,'revision','',0),(854,1,'2019-05-05 05:22:55','2019-05-05 05:22:55','','News Updates','','inherit','closed','closed','','306-revision-v1','','','2019-05-05 05:22:55','2019-05-05 05:22:55','',306,'http://kclgenetics.com/306-revision-v1/',0,'revision','',0),(855,1,'2019-05-05 05:23:09','2019-05-05 05:23:09','','News Updates','','inherit','closed','closed','','306-revision-v1','','','2019-05-05 05:23:09','2019-05-05 05:23:09','',306,'http://kclgenetics.com/306-revision-v1/',0,'revision','',0),(922,1,'2020-04-15 13:30:32','2020-04-15 13:30:32','<h2>\n							2021 Hereford Alliance Sale\n					</h2>\n							<figure>\n											<a href=\"https://issuu.com/trac…/docs/larsonsherefordalliance051819/2\">\n							<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n											<figcaption>May 15, 2021 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											<figcaption>Click here to enter Auction. Live May 15, 2021</figcaption>\n										</figure>\n							<figure>\n										<img width=\"600\" height=\"400\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											<figcaption>Look for a Daughter...</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n											<a href=\"https://www.youtube.com/playlist?list=PL3K3ghzeET2TxNcajo1xU76dSS31QL2sy\">\n							<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2019 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2020-04-15 13:30:32','2020-04-15 13:30:32','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(857,1,'2019-05-08 17:18:45','2019-05-08 17:18:45','<h2>\n							2019 Hereford Alliance Sale\n					</h2>\n							<figure>\n											<a href=\"https://issuu.com/trac…/docs/larsonsherefordalliance051819/2\" data-elementor-open-lightbox=\"\">\n							<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n							<figure>\n										<img width=\"600\" height=\"400\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											<figcaption>Look for a Daughter...</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2019 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-08 17:18:45','2019-05-08 17:18:45','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(713,1,'2018-05-09 22:15:01','2018-05-09 22:15:01','<h3>KCL Genetics Donor Cow Program</h3>\r\n<blockquote><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give great confidence in the production of \"The Next Generation\". COW FAMILIES ARE THE KEY</em></blockquote>','Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2018-05-09 22:15:01','2018-05-09 22:15:01','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(732,1,'2018-06-08 05:34:17','2018-06-08 05:34:17','<h3>KCL Genetics Donor Cow Program</h3>\r\n<blockquote><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></blockquote>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2018-06-08 05:34:17','2018-06-08 05:34:17','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(715,1,'2018-05-09 22:15:27','2018-05-09 22:15:27','<h3>KCL Genetics Donor Cow Program</h3>\r\n<blockquote><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give great confidence in the production of \"The Next Generation\". COW FAMILIES ARE THE KEY</em></blockquote>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2018-05-09 22:15:27','2018-05-09 22:15:27','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(73,1,'2017-03-03 15:24:29','2017-03-03 15:24:29','','JSF-12-Violet-4R','','inherit','closed','closed','','jsf-12-violet-4r','','','2017-03-03 15:24:29','2017-03-03 15:24:29','',72,'http://new.kclgenetics.com/wp-content/uploads/2017/03/JSF-12-Violet-4R.jpg',0,'attachment','image/jpeg',0),(76,1,'2017-03-03 15:26:15','2017-03-03 15:26:15','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 388px; width: 832px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WTK 75A CONTINENTAL 66F {CHB} (P42009650)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;GHC CHUNK 113L (P43065793)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GHC MS NANCY RENEE 48A (CAN2483336)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;GHC BEAR 12N (P43068831)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;HAROLDSON RAIDER P183 2Z {CHB,HYF} (P21837600)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;BAR-E-L SYBIL 7D (P43068830)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KAL MAJISTICK 28R 2W (CAN2321967)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RLOA R271 DYNASTY ET 37U (P21837682)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;JSF 37 271 DEVO 23C {SOD} (P23913360)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;JSF 183 VICTORIA 7A (CAN2539130)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;JSF 23 VIOLET 6M (P43068841)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;TEE-JAY 2F HABANERO ET 7H (P43068838)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;JSF 7H RADIANT LADY 50K (P43068840)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;JSF 23 RADIANT LADY 63F (P43068839)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5B2325232E25\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+67&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+39&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+84&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.95&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.96&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.014&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.09&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.38&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.09&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.10&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','JSF 12 VIOLET 4R {DLF,HYF,IEF} (P43068899)','','inherit','closed','closed','','72-revision-v1','','','2017-03-03 15:26:15','2017-03-03 15:26:15','',72,'http://new.kclgenetics.com/2017/03/03/72-revision-v1/',0,'revision','',0),(78,1,'2017-03-03 15:31:57','2017-03-03 15:31:57','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 388px; width: 832px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WTK 75A CONTINENTAL 66F {CHB} (P42009650)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;GHC CHUNK 113L (P43065793)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GHC MS NANCY RENEE 48A (CAN2483336)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;GHC BEAR 12N (P43068831)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;HAROLDSON RAIDER P183 2Z {CHB,HYF} (P21837600)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;BAR-E-L SYBIL 7D (P43068830)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KAL MAJISTICK 28R 2W (CAN2321967)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RLOA R271 DYNASTY ET 37U (P21837682)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;JSF 37 271 DEVO 23C {SOD} (P23913360)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;JSF 183 VICTORIA 7A (CAN2539130)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;JSF 23 VIOLET 6M (P43068841)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;TEE-JAY 2F HABANERO ET 7H (P43068838)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;JSF 7H RADIANT LADY 50K (P43068840)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;JSF 23 RADIANT LADY 63F (P43068839)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5B2325232E25\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+67&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+39&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+84&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.95&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.96&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.014&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.09&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.38&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.09&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.10&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','JSF 12 VIOLET 4R {DLF,HYF,IEF} (P43068899)','description','inherit','closed','closed','','72-revision-v1','','','2017-03-03 15:31:57','2017-03-03 15:31:57','',72,'http://new.kclgenetics.com/2017/03/03/72-revision-v1/',0,'revision','',0),(79,1,'2017-03-03 15:34:52','2017-03-03 15:34:52','','GO MS 7195 ADVANCE W9 {DLF,HYF,IEF} (42988635)','Daughter of 7`95','publish','closed','closed','','go-ms-7195-advance-w9-dlfhyfief-42988635','','','2018-04-22 03:30:16','2018-04-22 03:30:16','',0,'http://new.kclgenetics.com/?p=79',0,'post','',0),(582,1,'2018-04-22 03:30:16','2018-04-22 03:30:16','','GO MS 7195 ADVANCE W9 {DLF,HYF,IEF} (42988635)','Daughter of 7`95','inherit','closed','closed','','79-revision-v1','','','2018-04-22 03:30:16','2018-04-22 03:30:16','',79,'http://kclgenetics.com/79-revision-v1/',0,'revision','',0),(583,1,'2018-04-22 03:30:25','2018-04-22 03:30:25','','GO MS 7195 ADVANCE W9 {DLF,HYF,IEF} (42988635)','Daughter of 7`95','inherit','closed','closed','','79-autosave-v1','','','2018-04-22 03:30:25','2018-04-22 03:30:25','',79,'http://kclgenetics.com/79-autosave-v1/',0,'revision','',0),(80,1,'2017-03-03 15:34:41','2017-03-03 15:34:41','','GO MS 7195 ADVANCE W9','','inherit','closed','closed','','go-ms-7195-advance-w9','','','2017-03-03 15:34:41','2017-03-03 15:34:41','',79,'http://new.kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg',0,'attachment','image/jpeg',0),(81,1,'2017-03-03 15:34:52','2017-03-03 15:34:52','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 774px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;L1 DOMINO 01384 {CHB} (42190566)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;L1 DOMINO 03571 {CHB,DLF,HYF,IEF} (42401353)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;L1 DOMINETTE 00532 (42081732)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;HH ADVANCE 7195T {CHB,SOD,DLF,HYF,IEF} (42785425)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;HH ADVANCE 0024K {SOD,DLF,IEF} (42050495)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;HH MISS ADVANCE 3128N (42370161)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;HH MISS ADVANCE 1028L {DLF,HYF,IEF} (42151313)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;DD EXCEL DESIGN 40 {SOD} (19435710)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;GO EXCEL L18 {CHB,SOD,DLF,HYF,IEF} (42159106)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GO MS 124 ADVANCE 7005 (40018969)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;GO MS L18 EXCEL T63 (42792041)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GO MARK DOMINO 8293 {SOD} (41010093)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;GO MS 8293 MARK DOM N214 (42378784)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GO MS LUCKY DOMINO 8045 (41010025)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C222125242225\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.4&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+76&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+58&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.010&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.02&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','GO MS 7195 ADVANCE W9 {DLF,HYF,IEF} (42988635)','','inherit','closed','closed','','79-revision-v1','','','2017-03-03 15:34:52','2017-03-03 15:34:52','',79,'http://new.kclgenetics.com/79-revision-v1/',0,'revision','',0),(276,1,'2017-03-06 21:28:31','2017-03-06 21:28:31','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 774px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">L1 DOMINO 01384 {CHB} (42190566)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">L1 DOMINO 03571 {CHB,DLF,HYF,IEF} (42401353)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">L1 DOMINETTE 00532 (42081732)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire: HH ADVANCE 7195T {CHB,SOD,DLF,HYF,IEF} (42785425)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">HH ADVANCE 0024K {SOD,DLF,IEF} (42050495)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">HH MISS ADVANCE 3128N (42370161)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">HH MISS ADVANCE 1028L {DLF,HYF,IEF} (42151313)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">DD EXCEL DESIGN 40 {SOD} (19435710)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">GO EXCEL L18 {CHB,SOD,DLF,HYF,IEF} (42159106)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GO MS 124 ADVANCE 7005 (40018969)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam: GO MS L18 EXCEL T63 (42792041)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GO MARK DOMINO 8293 {SOD} (41010093)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">GO MS 8293 MARK DOM N214 (42378784)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GO MS LUCKY DOMINO 8045 (41010025)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS </th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=242D&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5C222125242225\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+76</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+58</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.010</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.02</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 21</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.35</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','GO MS 7195 ADVANCE W9 {DLF,HYF,IEF} (42988635)','description','inherit','closed','closed','','79-revision-v1','','','2017-03-06 21:28:31','2017-03-06 21:28:31','',79,'http://new.kclgenetics.com/79-revision-v1/',0,'revision','',0),(82,1,'2017-03-03 15:35:08','2017-03-03 15:35:08','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 774px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;L1 DOMINO 01384 {CHB} (42190566)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;L1 DOMINO 03571 {CHB,DLF,HYF,IEF} (42401353)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;L1 DOMINETTE 00532 (42081732)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;HH ADVANCE 7195T {CHB,SOD,DLF,HYF,IEF} (42785425)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;HH ADVANCE 0024K {SOD,DLF,IEF} (42050495)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;HH MISS ADVANCE 3128N (42370161)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;HH MISS ADVANCE 1028L {DLF,HYF,IEF} (42151313)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;DD EXCEL DESIGN 40 {SOD} (19435710)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;GO EXCEL L18 {CHB,SOD,DLF,HYF,IEF} (42159106)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GO MS 124 ADVANCE 7005 (40018969)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;GO MS L18 EXCEL T63 (42792041)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GO MARK DOMINO 8293 {SOD} (41010093)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;GO MS 8293 MARK DOM N214 (42378784)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GO MS LUCKY DOMINO 8045 (41010025)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C222125242225\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.4&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+76&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+58&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.010&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.02&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','GO MS 7195 ADVANCE W9 {DLF,HYF,IEF} (42988635)','description','inherit','closed','closed','','79-revision-v1','','','2017-03-03 15:35:08','2017-03-03 15:35:08','',79,'http://new.kclgenetics.com/79-revision-v1/',0,'revision','',0),(83,1,'2017-03-03 15:36:57','2017-03-03 15:36:57','&nbsp;\r\n\r\n&nbsp;','TH 805H 743 PRIMROSE 401W ET {DLF,HYF,IEF} (P42980179)','Primrose Cow Family','publish','closed','closed','','th-805h-743-primrose-401w-et-dlfhyfief-p42980179','','','2018-04-22 03:34:28','2018-04-22 03:34:28','',0,'http://new.kclgenetics.com/?p=83',0,'post','',0),(588,1,'2018-04-22 03:34:28','2018-04-22 03:34:28','&nbsp;\r\n\r\n&nbsp;','TH 805H 743 PRIMROSE 401W ET {DLF,HYF,IEF} (P42980179)','Primrose Cow Family','inherit','closed','closed','','83-revision-v1','','','2018-04-22 03:34:28','2018-04-22 03:34:28','',83,'http://kclgenetics.com/83-revision-v1/',0,'revision','',0),(589,1,'2018-04-22 03:34:34','2018-04-22 03:34:34','&nbsp;\r\n\r\n&nbsp;','TH 805H 743 PRIMROSE 401W ET {DLF,HYF,IEF} (P42980179)','Primrose Cow Family','inherit','closed','closed','','83-autosave-v1','','','2018-04-22 03:34:34','2018-04-22 03:34:34','',83,'http://kclgenetics.com/83-autosave-v1/',0,'revision','',0),(706,1,'2018-05-09 22:10:47','2018-05-09 22:10:47','[caption id=\"attachment_701\" align=\"alignleft\" width=\"300\"]<a href=\"https://www.youtube.com/playlist?list=PL3K3ghzeET2SMAbUEJjNthd8-8m2n7gnM\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-701 size-medium\" title=\"2018 Larson Hereford Alliance Catalog and Videos Online Now!!!!\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></a> Click Here for Sale Videos[/caption]\r\n\r\nEveryone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-05-09 22:10:47','2018-05-09 22:10:47','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(705,1,'2018-05-09 22:09:03','2018-05-09 22:09:03','<h3>\r\n<span style=\"color: #ff0000;\"><a href=\"https://www.youtube.com/playlist?list=PL3K3ghzeET2SMAbUEJjNthd8-8m2n7gnM\" target=\"_blank\" rel=\"noopener\"><img class=\"alignleft wp-image-701 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></a>2018 Larson Hereford Alliance Catalog and Videos Online Now!!!!</span></h3>\r\nEveryone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this <strong>resilient</strong> breed.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-05-09 22:09:03','2018-05-09 22:09:03','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(722,1,'2018-05-26 20:06:01','2018-05-26 20:06:01','<img class=\"alignleft wp-image-316 size-full\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\" />Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-05-26 20:06:01','2018-05-26 20:06:01','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(707,1,'2018-05-09 22:11:33','2018-05-09 22:11:33','<h3><span style=\"color: #ff0000;\">2018 Larson Hereford Alliance Catalog and Videos Online Now!!!!</span></h3>\r\n[caption id=\"attachment_701\" align=\"alignleft\" width=\"300\"]<a href=\"https://www.youtube.com/playlist?list=PL3K3ghzeET2SMAbUEJjNthd8-8m2n7gnM\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-701 size-medium\" title=\"2018 Larson Hereford Alliance Catalog and Videos Online Now!!!!\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></a> Click Here for Sale Videos[/caption]\r\n\r\n&nbsp;\r\n\r\nEveryone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-05-09 22:11:33','2018-05-09 22:11:33','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(727,1,'2018-06-08 05:07:05','2018-06-08 05:07:05','<h3>Bull Influence</h3>\r\n[caption id=\"attachment_647\" align=\"alignleft\" width=\"300\"]<img class=\"wp-image-647 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" width=\"300\" height=\"188\" /> Mastermind 602D[/caption]\r\n\r\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these important characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted in the most desolate of conditions. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally does not include all bulls being used, but is an accurate cross-section of our genetic philosophies.','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2018-06-08 05:07:05','2018-06-08 05:07:05','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(84,1,'2017-03-03 15:36:40','2017-03-03 15:36:40','','TH 805H 743 PRIMROSE 401W','','inherit','closed','closed','','th-805h-743-primrose-401w','','','2017-03-03 15:36:40','2017-03-03 15:36:40','',83,'http://new.kclgenetics.com/wp-content/uploads/2017/03/TH-805H-743-PRIMROSE-401W.jpg',0,'attachment','image/jpeg',0),(85,1,'2017-03-03 15:36:57','2017-03-03 15:36:57','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 331px; width: 884px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CS BOOMER 29F {SOD,DLF,HYF,IEF} (P23925982)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;THM DURANGO 4037 {CHB,SOD,DLF,HYF,IEF} (P42460503)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;THM 7085 VICTRA 9036 {DLF,HYF,IEF} (P41121097)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;CRR ABOUT TIME 743 {CHB,SOD,DLF,HYF,IEF} (P42797564)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;SHF INTERSTATE 20X D03 {SOD,CHB,DLF,HYF,IEF} (P23812935)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;CRR D03 CASSIE 206 {DLF,HYF,IEF} (P42330554)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CRR 475E CASSIE 838 (P41070802)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GLEN POUNDMAKER 28U {SOD} (P21834481)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;KLONDIKE 28U 707B {HYF} (P23628441)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KLONDIKE NORDINE 296X (P23269333)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;YY 707B PRIMROSE 805H (P41088383)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;DAVIS 81W TOP CAT ET 125Y (CAN2404647)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;YY 125Y PRIMROSE 605F (P41122711)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CFCW MS ENERGZR LECTRC 5B (CAN2510528)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&lt;br style=\"color: #000000; font-family: arial, sans-serif;\" /&gt;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;EPDS AS OF 4/15/16&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Carc&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+80&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+2.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+94&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.38&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+59&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.016&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.31&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.01&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','TH 805H 743 PRIMROSE 401W ET {DLF,HYF,IEF} (P42980179)','','inherit','closed','closed','','83-revision-v1','','','2017-03-03 15:36:57','2017-03-03 15:36:57','',83,'http://new.kclgenetics.com/83-revision-v1/',0,'revision','',0),(277,1,'2017-03-06 21:29:12','2017-03-06 21:29:12','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 331px; width: 884px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CS BOOMER 29F {SOD,DLF,HYF,IEF} (P23925982)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">THM DURANGO 4037 {CHB,SOD,DLF,HYF,IEF} (P42460503)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">THM 7085 VICTRA 9036 {DLF,HYF,IEF} (P41121097)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire: CRR ABOUT TIME 743 {CHB,SOD,DLF,HYF,IEF} (P42797564)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">SHF INTERSTATE 20X D03 {SOD,CHB,DLF,HYF,IEF} (P23812935)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">CRR D03 CASSIE 206 {DLF,HYF,IEF} (P42330554)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CRR 475E CASSIE 838 (P41070802)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GLEN POUNDMAKER 28U {SOD} (P21834481)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">KLONDIKE 28U 707B {HYF} (P23628441)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KLONDIKE NORDINE 296X (P23269333)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><span style=\"font-size: 12pt;\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></span></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam: YY 707B PRIMROSE 805H (P41088383)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">DAVIS 81W TOP CAT ET 125Y (CAN2404647)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">YY 125Y PRIMROSE 605F (P41122711)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CFCW MS ENERGZR LECTRC 5B (CAN2510528)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p><br style=\"color: #000000; font-family: arial, sans-serif;\" /></p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">EPDS AS OF 4/15/16</th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Carc<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+80</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+2.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+94</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.38</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+59</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.016</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.01</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 23</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TH 805H 743 PRIMROSE 401W ET {DLF,HYF,IEF} (P42980179)','description','inherit','closed','closed','','83-revision-v1','','','2017-03-06 21:29:12','2017-03-06 21:29:12','',83,'http://new.kclgenetics.com/83-revision-v1/',0,'revision','',0),(86,1,'2017-03-03 15:37:08','2017-03-03 15:37:08','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 331px; width: 884px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CS BOOMER 29F {SOD,DLF,HYF,IEF} (P23925982)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;THM DURANGO 4037 {CHB,SOD,DLF,HYF,IEF} (P42460503)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;THM 7085 VICTRA 9036 {DLF,HYF,IEF} (P41121097)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;CRR ABOUT TIME 743 {CHB,SOD,DLF,HYF,IEF} (P42797564)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;SHF INTERSTATE 20X D03 {SOD,CHB,DLF,HYF,IEF} (P23812935)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;CRR D03 CASSIE 206 {DLF,HYF,IEF} (P42330554)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CRR 475E CASSIE 838 (P41070802)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GLEN POUNDMAKER 28U {SOD} (P21834481)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;KLONDIKE 28U 707B {HYF} (P23628441)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KLONDIKE NORDINE 296X (P23269333)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;YY 707B PRIMROSE 805H (P41088383)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;DAVIS 81W TOP CAT ET 125Y (CAN2404647)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;YY 125Y PRIMROSE 605F (P41122711)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CFCW MS ENERGZR LECTRC 5B (CAN2510528)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&lt;br style=\"color: #000000; font-family: arial, sans-serif;\" /&gt;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;EPDS AS OF 4/15/16&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Carc&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+80&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+2.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+94&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.38&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+59&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.016&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.31&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.01&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','TH 805H 743 PRIMROSE 401W ET {DLF,HYF,IEF} (P42980179)','description','inherit','closed','closed','','83-revision-v1','','','2017-03-03 15:37:08','2017-03-03 15:37:08','',83,'http://new.kclgenetics.com/83-revision-v1/',0,'revision','',0),(87,1,'2017-03-03 15:38:56','2017-03-03 15:38:56','','KCL 29R MARY ANNE 23G 5R ET {DLF,IEF} (P42656151)','Dam of the Professor','publish','closed','closed','','kcl-29r-mary-anne-23g-5r-et-dlfief-p42656151','','','2018-04-22 03:49:09','2018-04-22 03:49:09','',0,'http://new.kclgenetics.com/?p=87',0,'post','',0),(596,1,'2018-04-22 03:40:17','2018-04-22 03:40:17','','KCL 29R MARY ANNE 23G 5R ET {DLF,IEF} (P42656151)','Dam of the Professor','inherit','closed','closed','','87-revision-v1','','','2018-04-22 03:40:17','2018-04-22 03:40:17','',87,'http://kclgenetics.com/87-revision-v1/',0,'revision','',0),(619,1,'2018-05-01 22:42:00','2018-05-01 22:42:00','','B224 KCL','','inherit','closed','closed','','b224-kcl-2','','','2018-05-01 22:42:00','2018-05-01 22:42:00','',618,'http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL.jpg',0,'attachment','image/jpeg',0),(622,1,'2018-05-01 22:46:27','2018-05-01 22:46:27','<p style=\"text-align: center;\">Owned w/ The Josh Knowles Family</p>','KCL 9050 HOLLY 1017 B224ET - P23781633','','inherit','closed','closed','','618-revision-v1','','','2018-05-01 22:46:27','2018-05-01 22:46:27','',618,'http://kclgenetics.com/618-revision-v1/',0,'revision','',0),(620,1,'2018-05-01 22:45:02','2018-05-01 22:45:02','<p style=\"text-align: center;\"><img class=\"alignleft size-large wp-image-619\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"\" width=\"840\" height=\"556\" />Owned w/ The Josh Knowles Family</p>','KCL 9050 HOLLY 1017 B224ET - P23781633','','inherit','closed','closed','','618-revision-v1','','','2018-05-01 22:45:02','2018-05-01 22:45:02','',618,'http://kclgenetics.com/618-revision-v1/',0,'revision','',0),(624,1,'2018-05-01 22:47:20','2018-05-01 22:47:20','<p style=\"text-align: left;\">Owned w/ The Josh Knowles Family</p>','KCL 9050 HOLLY 1017 B224ET - P23781633','','inherit','closed','closed','','618-revision-v1','','','2018-05-01 22:47:20','2018-05-01 22:47:20','',618,'http://kclgenetics.com/618-revision-v1/',0,'revision','',0),(627,1,'2018-05-01 22:49:58','2018-05-01 22:49:58','','KCL 9050 HOLLY 1017 B224ET – P23781633','','publish','closed','closed','','kcl-9050-holly-1017-b224et-p23781633','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=627',1,'nav_menu_item','',0),(628,1,'2018-05-01 23:00:08','2018-05-01 23:00:08','Owned w/ The Bennie Gasper Sr. Family','KCL WB 14Z Ms Advance 102Z 20C (P43570232)','','publish','closed','closed','','kcl-wb-14z-ms-advance-102z-20c-p43570232','','','2018-05-01 23:00:08','2018-05-01 23:00:08','',0,'http://kclgenetics.com/?p=628',0,'post','',0),(629,1,'2018-05-01 22:57:27','2018-05-01 22:57:27','','20C KCL','','inherit','closed','closed','','20c-kcl','','','2018-05-01 22:57:27','2018-05-01 22:57:27','',628,'http://kclgenetics.com/wp-content/uploads/2018/05/20C-KCL.jpg',0,'attachment','image/jpeg',0),(630,1,'2018-05-01 23:00:08','2018-05-01 23:00:08','Owned w/ The Bennie Gasper Sr. Family','KCL WB 14Z Ms Advance 102Z 20C (P43570232)','','inherit','closed','closed','','628-revision-v1','','','2018-05-01 23:00:08','2018-05-01 23:00:08','',628,'http://kclgenetics.com/628-revision-v1/',0,'revision','',0),(631,1,'2018-05-01 23:00:13','2018-05-01 23:00:13','Owned w/ The Bennie Gasper Sr. Family','KCL WB 14Z Ms Advance 102Z 20C (P43570232)','','inherit','closed','closed','','628-autosave-v1','','','2018-05-01 23:00:13','2018-05-01 23:00:13','',628,'http://kclgenetics.com/628-autosave-v1/',0,'revision','',0),(632,1,'2018-05-01 23:00:55','2018-05-01 23:00:55',' ','','','publish','closed','closed','','632','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=632',6,'nav_menu_item','',0),(633,1,'2018-05-01 23:02:16','2018-05-01 23:02:16','<strong>Owned w/ The Bennie Gasper Sr. Family</strong>','KCL 11X ROSIE LANE 308N 4A (P43368210)','','inherit','closed','closed','','148-revision-v1','','','2018-05-01 23:02:16','2018-05-01 23:02:16','',148,'http://kclgenetics.com/148-revision-v1/',0,'revision','',0),(634,1,'2018-05-01 23:02:21','2018-05-01 23:02:21','<strong>Owned w/ The Bennie Gasper Sr. Family</strong>','KCL 11X ROSIE LANE 308N 4A (P43368210)','','inherit','closed','closed','','148-autosave-v1','','','2018-05-01 23:02:21','2018-05-01 23:02:21','',148,'http://kclgenetics.com/148-autosave-v1/',0,'revision','',0),(635,1,'2018-05-01 23:15:39','2018-05-01 23:15:39','[gallery ids=\"640,639,638,637,636,508,509,619,629,506,505,504,503,459,465,458,457,146,149,140,143,137,124,125,130,134,133,121,117,113,110,105,101,96,92,88,84,80,73\"]','Donor Cows','','publish','closed','closed','','donor-cows','','','2018-05-01 23:15:39','2018-05-01 23:15:39','',0,'http://kclgenetics.com/?p=635',0,'post','',0),(636,1,'2018-05-01 23:08:57','2018-05-01 23:08:57','','188A KCL','','inherit','closed','closed','','188a-kcl-2','','','2018-05-01 23:08:57','2018-05-01 23:08:57','',635,'http://kclgenetics.com/wp-content/uploads/2018/05/188A-KCL.jpg',0,'attachment','image/jpeg',0),(637,1,'2018-05-01 23:09:48','2018-05-01 23:09:48','','102Z KCL','','inherit','closed','closed','','102z-kcl-2','','','2018-05-01 23:09:48','2018-05-01 23:09:48','',635,'http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL.jpg',0,'attachment','image/jpeg',0),(638,1,'2018-05-01 23:11:17','2018-05-01 23:11:17','','112W KCL','','inherit','closed','closed','','112w-kcl','','','2018-05-01 23:11:17','2018-05-01 23:11:17','',635,'http://kclgenetics.com/wp-content/uploads/2018/05/112W-KCL.jpg',0,'attachment','image/jpeg',0),(639,1,'2018-05-01 23:12:28','2018-05-01 23:12:28','','A18 KCL','','inherit','closed','closed','','a18-kcl-2','','','2018-05-01 23:12:28','2018-05-01 23:12:28','',635,'http://kclgenetics.com/wp-content/uploads/2018/05/A18-KCL.jpg',0,'attachment','image/jpeg',0),(640,1,'2018-05-01 23:13:23','2018-05-01 23:13:23','','A39 KCL','','inherit','closed','closed','','a39-kcl','','','2018-05-01 23:13:23','2018-05-01 23:13:23','',635,'http://kclgenetics.com/wp-content/uploads/2018/05/A39-KCL.jpg',0,'attachment','image/jpeg',0),(641,1,'2018-05-01 23:15:39','2018-05-01 23:15:39','[gallery ids=\"640,639,638,637,636,508,509,619,629,506,505,504,503,459,465,458,457,146,149,140,143,137,124,125,130,134,133,121,117,113,110,105,101,96,92,88,84,80,73\"]','Donor Cows','','inherit','closed','closed','','635-revision-v1','','','2018-05-01 23:15:39','2018-05-01 23:15:39','',635,'http://kclgenetics.com/635-revision-v1/',0,'revision','',0),(642,1,'2018-05-01 23:18:27','2018-05-01 23:18:27','','Z201 Redhills','','inherit','closed','closed','','z201-redhills','','','2018-05-01 23:18:27','2018-05-01 23:18:27','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/Z201-Redhills.jpg',0,'attachment','image/jpeg',0),(643,1,'2018-05-01 23:19:21','2018-05-01 23:19:21','','Beth 603D','Beth 603D','inherit','closed','closed','','03d-kcl','','','2018-05-02 01:15:34','2018-05-02 01:15:34','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL.jpg',0,'attachment','image/jpeg',0),(644,1,'2018-05-01 23:21:45','2018-05-01 23:21:45','','53Y Larson','','inherit','closed','closed','','53y-larson','','','2018-05-01 23:21:45','2018-05-01 23:21:45','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/53Y-Larson.jpg',0,'attachment','image/jpeg',0),(645,1,'2018-05-01 23:22:09','2018-05-01 23:22:09','','60C KCL','','inherit','closed','closed','','60c-kcl','','','2018-05-01 23:22:09','2018-05-01 23:22:09','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL.jpg',0,'attachment','image/jpeg',0),(646,1,'2018-05-01 23:22:32','2018-05-01 23:22:32','','Master 102A','Miss Master 102A','inherit','closed','closed','','102a-kcl','','','2018-05-02 01:17:04','2018-05-02 01:17:04','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL.jpg',0,'attachment','image/jpeg',0),(647,1,'2018-05-01 23:22:58','2018-05-01 23:22:58','','RingMaster 602D','Mastermind 602D','inherit','closed','closed','','602d-kcl-2','','','2018-06-08 05:06:40','2018-06-08 05:06:40','',62,'http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL.jpg',0,'attachment','image/jpeg',0),(648,1,'2018-05-01 23:23:31','2018-05-01 23:23:31','','Lady 6000','','inherit','closed','closed','','6000-kcl-shaw','','','2018-05-02 01:11:36','2018-05-02 01:11:36','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw.jpg',0,'attachment','image/jpeg',0),(649,1,'2018-05-01 23:23:59','2018-05-01 23:23:59','','6003 KCL Shaw','','inherit','closed','closed','','6003-kcl-shaw','','','2018-05-01 23:23:59','2018-05-01 23:23:59','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw.jpg',0,'attachment','image/jpeg',0),(650,1,'2018-05-01 23:24:35','2018-05-01 23:24:35','','6013 KCL Shaw','','inherit','closed','closed','','6013-kcl-shaw','','','2018-05-01 23:24:35','2018-05-01 23:24:35','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/6013-KCL-Shaw.jpg',0,'attachment','image/jpeg',0),(651,1,'2018-05-01 23:25:05','2018-05-01 23:25:05','','6050 KCL Shaw','Lady 6050','inherit','closed','closed','','6050-kcl-shaw','','','2018-06-08 05:18:21','2018-06-08 05:18:21','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw.jpg',0,'attachment','image/jpeg',0),(652,1,'2018-05-01 23:25:32','2018-05-01 23:25:32','','C11 KCL','','inherit','closed','closed','','c11-kcl','','','2018-05-01 23:25:32','2018-05-01 23:25:32','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL.jpg',0,'attachment','image/jpeg',0),(653,1,'2018-05-01 23:26:09','2018-05-01 23:26:09','','Italia D17','Italia D17','inherit','closed','closed','','c17-kcl','','','2018-05-02 01:13:43','2018-05-02 01:13:43','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL.jpg',0,'attachment','image/jpeg',0),(654,1,'2018-05-01 23:26:34','2018-05-01 23:26:34','','D6 KCL','','inherit','closed','closed','','d6-kcl','','','2018-05-01 23:26:34','2018-05-01 23:26:34','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/D6-KCL.jpg',0,'attachment','image/jpeg',0),(655,1,'2018-05-01 23:26:53','2018-05-01 23:26:53','','Y40 KCL','','inherit','closed','closed','','y40-kcl','','','2018-05-01 23:26:53','2018-05-01 23:26:53','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL.jpg',0,'attachment','image/jpeg',0),(679,1,'2018-05-03 16:30:28','2018-05-03 16:30:28','','2018 Hereford Alliance Cover','','inherit','closed','closed','','2018-hereford-alliance-cover','','','2018-05-03 16:30:28','2018-05-03 16:30:28','',44,'http://kclgenetics.com/wp-content/uploads/2018/05/2018-Hereford-Alliance-Cover.jpg',0,'attachment','image/jpeg',0),(681,1,'2018-05-03 16:45:59','2018-05-03 16:45:59','<h3><img class=\"alignleft wp-image-316 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /><span style=\"color: #ff0000;\">2018 Larson Hereford Alliance Catalog Online Now!!!!</span></h3>\r\nEveryone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this <strong>resilient</strong> breed.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-05-03 16:45:59','2018-05-03 16:45:59','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(88,1,'2017-03-03 15:38:51','2017-03-03 15:38:51','','KCL 29R Mary Anne 23G 5R ET','','inherit','closed','closed','','kcl-29r-mary-anne-23g-5r-et','','','2017-03-03 15:38:51','2017-03-03 15:38:51','',87,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-29R-Mary-Anne-23G-5R-ET.jpg',0,'attachment','image/jpeg',0),(89,1,'2017-03-03 15:38:56','2017-03-03 15:38:56','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 709px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RMTLL SALLYS LASS 120X (P23649228)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;CS BOOMER 29F {SOD,CHB,DLF,HYF,IEF} (P23925982)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GS CHECKERED FLAG (P23349463)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;CS MISS 1ST FLAG 21A {DOD,DLF,IEF} (P23559479)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;DS MS TOP PRIORITY 826 (P23325258)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;BAR H L1 CHANCE 55S (P21837589)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CRCLE D193 SILHOUET 335S (P21837585)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;REMITALL GINGER 23G {DLF,HYF,IEF} (P42217185)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;PLAIN LAKE BELLE 20X 117P 5B (P42362361)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;SRCL LEONARD BRIT 117P (P21835974)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C252520222024\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.7&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+46&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+80&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+84&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.05&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.00&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.036&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.44&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.11&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.38&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.31&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.41&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 29R MARY ANNE 23G 5R ET {DLF,IEF} (P42656151)','','inherit','closed','closed','','87-revision-v1','','','2017-03-03 15:38:56','2017-03-03 15:38:56','',87,'http://new.kclgenetics.com/87-revision-v1/',0,'revision','',0),(278,1,'2017-03-06 21:30:03','2017-03-06 21:30:03','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 709px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">RMTLL SALLYS LASS 120X (P23649228)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire: CS BOOMER 29F {SOD,CHB,DLF,HYF,IEF} (P23925982)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GS CHECKERED FLAG (P23349463)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">CS MISS 1ST FLAG 21A {DOD,DLF,IEF} (P23559479)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">DS MS TOP PRIORITY 826 (P23325258)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">BAR H L1 CHANCE 55S (P21837589)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CRCLE D193 SILHOUET 335S (P21837585)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam: REMITALL GINGER 23G {DLF,HYF,IEF} (P42217185)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">PLAIN LAKE BELLE 20X 117P 5B (P42362361)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">SRCL LEONARD BRIT 117P (P21835974)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS </th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=242D&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5C252520222024\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+80</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+84</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.05</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.00</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.036</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.44</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 26</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.38</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.41</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 29R MARY ANNE 23G 5R ET {DLF,IEF} (P42656151)','description','inherit','closed','closed','','87-revision-v1','','','2017-03-06 21:30:03','2017-03-06 21:30:03','',87,'http://new.kclgenetics.com/87-revision-v1/',0,'revision','',0),(90,1,'2017-03-03 15:39:06','2017-03-03 15:39:06','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 709px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RMTLL SALLYS LASS 120X (P23649228)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;CS BOOMER 29F {SOD,CHB,DLF,HYF,IEF} (P23925982)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GS CHECKERED FLAG (P23349463)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;CS MISS 1ST FLAG 21A {DOD,DLF,IEF} (P23559479)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;DS MS TOP PRIORITY 826 (P23325258)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;BAR H L1 CHANCE 55S (P21837589)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CRCLE D193 SILHOUET 335S (P21837585)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;REMITALL GINGER 23G {DLF,HYF,IEF} (P42217185)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;PLAIN LAKE BELLE 20X 117P 5B (P42362361)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;SRCL LEONARD BRIT 117P (P21835974)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C252520222024\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.7&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+46&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+80&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+84&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.05&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.00&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.036&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.44&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.11&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.38&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.31&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.41&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 29R MARY ANNE 23G 5R ET {DLF,IEF} (P42656151)','description','inherit','closed','closed','','87-revision-v1','','','2017-03-03 15:39:06','2017-03-03 15:39:06','',87,'http://new.kclgenetics.com/87-revision-v1/',0,'revision','',0),(91,1,'2017-03-03 15:41:13','2017-03-03 15:41:13','','K&B SULTANA 8051U {DLF,HYF,IEF} (P42904552)','A Future Cornerstone of this Program','publish','closed','closed','','kb-sultana-8051u-dlfhyfief-p42904552','','','2018-04-22 03:37:52','2018-04-22 03:37:52','',0,'http://new.kclgenetics.com/?p=91',0,'post','',0),(592,1,'2018-04-22 03:37:52','2018-04-22 03:37:52','','K&B SULTANA 8051U {DLF,HYF,IEF} (P42904552)','A Future Cornerstone of this Program','inherit','closed','closed','','91-revision-v1','','','2018-04-22 03:37:52','2018-04-22 03:37:52','',91,'http://kclgenetics.com/91-revision-v1/',0,'revision','',0),(742,1,'2019-05-02 00:26:30','2019-05-02 00:26:30','','vintage banner','','inherit','closed','closed','','vintage-banner','','','2019-05-02 00:35:25','2019-05-02 00:35:25','',54,'http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015.jpg',0,'attachment','image/jpeg',0),(744,1,'2019-05-02 00:48:55','2019-05-02 00:48:55','<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n					<h1>\n							Download Catalog\n					</h1>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Download</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 00:48:55','2019-05-02 00:48:55','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(684,1,'2018-05-03 16:55:33','2018-05-03 16:55:33','[WD_FB id=\"1\"]','Keep Up to Date with Larson News','','inherit','closed','closed','','306-revision-v1','','','2018-05-03 16:55:33','2018-05-03 16:55:33','',306,'http://kclgenetics.com/306-revision-v1/',0,'revision','',0),(687,1,'2018-05-03 17:05:12','2018-05-03 17:05:12','','facebook-main4','Follow Us for the Latest News','inherit','closed','closed','','facebook-main4','','','2018-05-03 17:08:22','2018-05-03 17:08:22','',306,'http://kclgenetics.com/wp-content/uploads/2018/05/facebook-main4.jpg',0,'attachment','image/jpeg',0),(689,1,'2018-05-03 17:07:44','2018-05-03 17:07:44','[WD_FB id=\"1\"]','News Updates','','inherit','closed','closed','','306-revision-v1','','','2018-05-03 17:07:44','2018-05-03 17:07:44','',306,'http://kclgenetics.com/306-revision-v1/',0,'revision','',0),(693,1,'2018-05-03 17:12:24','2018-05-03 17:12:24','{{unknown}}','','','publish','closed','closed','','c2027d26962709b4e8a9abd265ef8b8d','','','2018-05-03 17:12:24','2018-05-03 17:12:24','',0,'http://kclgenetics.com/c2027d26962709b4e8a9abd265ef8b8d/',0,'oembed_cache','',0),(694,1,'2018-05-03 17:13:09','2018-05-03 17:13:09','{{unknown}}','','','publish','closed','closed','','4ad80ad3e675e39f988de19a5522228e','','','2018-05-03 17:13:09','2018-05-03 17:13:09','',0,'http://kclgenetics.com/4ad80ad3e675e39f988de19a5522228e/',0,'oembed_cache','',0),(695,1,'2018-05-03 17:15:40','2018-05-03 17:15:40','','icon_pdf','','inherit','closed','closed','','icon_pdf','','','2018-05-03 17:15:40','2018-05-03 17:15:40','',0,'http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf.png',0,'attachment','image/png',0),(696,1,'2018-05-03 23:00:38','2018-05-03 23:00:38','<h3 style=\"text-align: center;\">Please join us May 19, 2018 @ 12:00 pm at the ranch for the\r\n8th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><img class=\"aligncenter size-medium wp-image-679\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/2018-Hereford-Alliance-Cover-232x300.jpg\" alt=\"\" width=\"232\" height=\"300\" /></p>\r\n<p style=\"text-align: center;\"><strong>Cattle will be available for viewing at any time.</strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n<img class=\"aligncenter size-full wp-image-380\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/north-entrance.jpg\" alt=\"\" width=\"785\" height=\"320\" />','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2018-05-03 23:00:38','2018-05-03 23:00:38','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(697,1,'2018-05-03 23:19:40','2018-05-03 23:19:40','<h3 style=\"text-align: center;\">Please join us May 19, 2018 @ 12:00 pm at the ranch for the\r\n8th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051918\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-679 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/2018-Hereford-Alliance-Cover-232x300.jpg\" alt=\"\" width=\"232\" height=\"300\" /></a></p>\r\n<p style=\"text-align: center;\"><strong>Cattle will be available for viewing at any time.</strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n<img class=\"aligncenter size-full wp-image-380\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/north-entrance.jpg\" alt=\"\" width=\"785\" height=\"320\" />','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2018-05-03 23:19:40','2018-05-03 23:19:40','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(701,1,'2018-05-09 21:59:42','2018-05-09 21:59:42','','product_videoonline','','inherit','closed','closed','','product_videoonline','','','2018-05-09 21:59:42','2018-05-09 21:59:42','',54,'http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png',0,'attachment','image/png',0),(702,1,'2018-05-09 22:01:27','2018-05-09 22:01:27','<h3 style=\"text-align: center;\">Please join us May 19, 2018 @ 12:00 pm at the ranch for the\r\n8th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051918\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-679 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/2018-Hereford-Alliance-Cover-232x300.jpg\" alt=\"\" width=\"232\" height=\"300\" /></a></p>\r\n<p style=\"text-align: center;\"><strong>Cattle will be available for viewing at any time.</strong></p>\r\n\r\n\r\n[caption id=\"attachment_701\" align=\"aligncenter\" width=\"300\"]<a href=\"https://www.youtube.com/playlist?list=PL3K3ghzeET2SMAbUEJjNthd8-8m2n7gnM\"><img class=\"wp-image-701 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></a> Click Here for Online Videos[/caption]\r\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n<img class=\"aligncenter size-full wp-image-380\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/north-entrance.jpg\" alt=\"\" width=\"785\" height=\"320\" />','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2018-05-09 22:01:27','2018-05-09 22:01:27','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(92,1,'2017-03-03 15:41:06','2017-03-03 15:41:06','','K&B SULTANA 8051U','Mothering Ability','inherit','closed','closed','','kb-sultana-8051u','','','2018-04-20 19:53:59','2018-04-20 19:53:59','',91,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U.jpg',0,'attachment','image/jpeg',0),(93,1,'2017-03-03 15:41:13','2017-03-03 15:41:13','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 814px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RRH MR FELT 3008 {CHB,SOD,DLF,HYF,IEF} (P23703420)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;KCF BENNETT 3008 M326 {CHB,SOD,DLF,HYF,IEF} (P42361822)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KCF MISS 459 F284 (P23938259)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;K&amp;amp;B RED FELTON 5162 {CHB,DLF,HYF,IEF} (P42600517)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CL 1 DOMINO 0140K 1ET {SOD} (42044482)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;K&amp;amp;B DOMINETTE 2318 {DLF,IEF} (42278179)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;K&amp;amp;B MS ADVANCE 7840 (40031977)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;PW VICTOR BOOMER P606 {SOD,CHB,DLF,HYF,IEF} (P24020737)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;PW VICTORIA 964 8114 {DLF,HYF,IEF} (P23331665)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;K&amp;amp;B SWEET SALLY 6064S {DLF,HYF,IEF} (P42706592)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CL1 DOMINO 1181L {SOD,DLF,IEF} (42150274)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;K&amp;amp;B LYNN DOM 4001 (42487798)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;K&amp;amp;B MISS DOMINO 018K (42073485)&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C225959252321\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-1.4&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.7&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+46&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+69&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+57&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-1.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+68&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.024&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.31&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','K&B SULTANA 8051U {DLF,HYF,IEF} (P42904552)','','inherit','closed','closed','','91-revision-v1','','','2017-03-03 15:41:13','2017-03-03 15:41:13','',91,'http://new.kclgenetics.com/91-revision-v1/',0,'revision','',0),(279,1,'2017-03-06 21:30:40','2017-03-06 21:30:40','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 814px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">RRH MR FELT 3008 {CHB,SOD,DLF,HYF,IEF} (P23703420)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">KCF BENNETT 3008 M326 {CHB,SOD,DLF,HYF,IEF} (P42361822)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KCF MISS 459 F284 (P23938259)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire: K&B RED FELTON 5162 {CHB,DLF,HYF,IEF} (P42600517)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CL 1 DOMINO 0140K 1ET {SOD} (42044482)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">K&B DOMINETTE 2318 {DLF,IEF} (42278179)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">K&B MS ADVANCE 7840 (40031977)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">PW VICTOR BOOMER P606 {SOD,CHB,DLF,HYF,IEF} (P24020737)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">PW VICTORIA 964 8114 {DLF,HYF,IEF} (P23331665)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam: K&B SWEET SALLY 6064S {DLF,HYF,IEF} (P42706592)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CL1 DOMINO 1181L {SOD,DLF,IEF} (42150274)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">K&B LYNN DOM 4001 (42487798)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">K&B MISS DOMINO 018K (42073485) </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS </th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=242D&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5C225959252321\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-1.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+4.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+69</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+57</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-1.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+68</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.024</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 23</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','K&B SULTANA 8051U {DLF,HYF,IEF} (P42904552)','description','inherit','closed','closed','','91-revision-v1','','','2017-03-06 21:30:40','2017-03-06 21:30:40','',91,'http://new.kclgenetics.com/91-revision-v1/',0,'revision','',0),(94,1,'2017-03-03 15:41:30','2017-03-03 15:41:30','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 814px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RRH MR FELT 3008 {CHB,SOD,DLF,HYF,IEF} (P23703420)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;KCF BENNETT 3008 M326 {CHB,SOD,DLF,HYF,IEF} (P42361822)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KCF MISS 459 F284 (P23938259)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;K&amp;amp;B RED FELTON 5162 {CHB,DLF,HYF,IEF} (P42600517)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CL 1 DOMINO 0140K 1ET {SOD} (42044482)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;K&amp;amp;B DOMINETTE 2318 {DLF,IEF} (42278179)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;K&amp;amp;B MS ADVANCE 7840 (40031977)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;PW VICTOR BOOMER P606 {SOD,CHB,DLF,HYF,IEF} (P24020737)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;PW VICTORIA 964 8114 {DLF,HYF,IEF} (P23331665)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;K&amp;amp;B SWEET SALLY 6064S {DLF,HYF,IEF} (P42706592)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CL1 DOMINO 1181L {SOD,DLF,IEF} (42150274)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;K&amp;amp;B LYNN DOM 4001 (42487798)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;K&amp;amp;B MISS DOMINO 018K (42073485)&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C225959252321\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-1.4&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.7&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+46&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+69&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+57&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-1.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+68&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.024&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.31&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','K&B SULTANA 8051U {DLF,HYF,IEF} (P42904552)','description','inherit','closed','closed','','91-revision-v1','','','2017-03-03 15:41:30','2017-03-03 15:41:30','',91,'http://new.kclgenetics.com/91-revision-v1/',0,'revision','',0),(95,1,'2017-03-03 15:43:33','2017-03-03 15:43:33','<strong>Owned with WBCC, Buffalo, WY</strong>\r\n\r\n&nbsp;','K&B SWEET SALLY 5109 {DLF,HYF,IEF} (42611192)','Produces Her Kind','publish','closed','closed','','kb-sweet-sally-5109-dlfhyfief-42611192','','','2018-04-22 03:39:31','2018-04-22 03:39:31','',0,'http://new.kclgenetics.com/?p=95',0,'post','',0),(593,1,'2018-04-22 03:38:52','2018-04-22 03:38:52','<strong>Owned with WBCC, Buffalo, WY</strong>\r\n\r\n&nbsp;','K&B SWEET SALLY 5109 {DLF,HYF,IEF} (42611192)','description','inherit','closed','closed','','95-revision-v1','','','2018-04-22 03:38:52','2018-04-22 03:38:52','',95,'http://kclgenetics.com/95-revision-v1/',0,'revision','',0),(595,1,'2018-04-22 03:39:31','2018-04-22 03:39:31','<strong>Owned with WBCC, Buffalo, WY</strong>\r\n\r\n&nbsp;','K&B SWEET SALLY 5109 {DLF,HYF,IEF} (42611192)','Produces Her Kind','inherit','closed','closed','','95-revision-v1','','','2018-04-22 03:39:31','2018-04-22 03:39:31','',95,'http://kclgenetics.com/95-revision-v1/',0,'revision','',0),(733,1,'2018-06-08 17:43:13','2018-06-08 17:43:13','<p style=\"text-align: left;\">Owned w/ The Josh Knowles Family</p>\n&nbsp;','KCL 9050 HOLLY 1017 B224ET - P23781633','','inherit','closed','closed','','618-autosave-v1','','','2018-06-08 17:43:13','2018-06-08 17:43:13','',618,'http://kclgenetics.com/618-autosave-v1/',0,'revision','',0),(731,1,'2018-06-08 05:20:04','2018-06-08 05:20:04','','Bonissa D12','Bonissa D12','inherit','closed','closed','','d12-kcl','','','2018-06-08 05:21:39','2018-06-08 05:21:39','',0,'http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL.jpg',0,'attachment','image/jpeg',0),(812,1,'2019-05-05 04:22:14','2019-05-05 04:22:14','<h3>Bull Influence</h3>\n[caption id=\"attachment_647\" align=\"alignleft\" width=\"300\"]<img class=\"wp-image-647 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" width=\"300\" height=\"188\"> Mastermind 602D[/caption]\n\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-05-05 04:22:14','2019-05-05 04:22:14','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(730,1,'2018-06-08 05:10:48','2018-06-08 05:10:48','<h3>Bull Influence</h3>\r\n[caption id=\"attachment_647\" align=\"alignleft\" width=\"300\"]<img class=\"wp-image-647 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" width=\"300\" height=\"188\" /> Mastermind 602D[/caption]\r\n\r\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2018-06-08 05:10:48','2018-06-08 05:10:48','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(676,1,'2018-05-02 01:57:43','2018-05-02 01:57:43','<img class=\"alignleft wp-image-316 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this <strong>resilient</strong> breed.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2018-05-02 01:57:43','2018-05-02 01:57:43','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(677,1,'2018-05-03 16:27:09','2018-05-03 16:27:09','','LarsonsHerefordAlliance051918','','inherit','closed','closed','','larsonsherefordalliance051918','','','2018-05-03 16:27:09','2018-05-03 16:27:09','',44,'http://kclgenetics.com/wp-content/uploads/2018/05/LarsonsHerefordAlliance051918.pdf',0,'attachment','application/pdf',0),(96,1,'2017-03-03 15:43:26','2017-03-03 15:43:26','','K&B SWEET SALLY 5109','','inherit','closed','closed','','kb-sweet-sally-5109','','','2017-03-03 15:43:26','2017-03-03 15:43:26','',95,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KB-SWEET-SALLY-5109.jpg',0,'attachment','image/jpeg',0),(97,1,'2017-03-03 15:43:33','2017-03-03 15:43:33','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 823px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RMTLL SALLYS LASS 120X (P23649228)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;PW VICTOR BOOMER P606 {SOD,CHB,DLF,HYF,IEF} (P24020737)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;PW VICTORIA 964 8114 {DLF,HYF,IEF} (P23331665)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;HVF VICTORIA 1121 05 (P21042404)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;STAR DOMINO 10H 1ET {SOD} (18838115)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;B STARFIRE 61 {SOD,CHB} (19571913)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;B LADY ELECTRIC 952 (19038419)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;K&amp;amp;B STARDUST 9725 (41148795)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;K&amp;amp;B HORIZON 9208 1ET {CHB,SOD} (19114832)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;K&amp;amp;B BONNIE LASS 2005 (19297742)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;K&amp;amp;B MS DOM 6202 1ET (18832528)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C255A58262526\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-4.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+37&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+56&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+59&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.031&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 11&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.39&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','K&B SWEET SALLY 5109 {DLF,HYF,IEF} (42611192)','','inherit','closed','closed','','95-revision-v1','','','2017-03-03 15:43:33','2017-03-03 15:43:33','',95,'http://new.kclgenetics.com/95-revision-v1/',0,'revision','',0),(98,1,'2017-03-03 15:43:47','2017-03-03 15:43:47','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 823px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RMTLL SALLYS LASS 120X (P23649228)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;PW VICTOR BOOMER P606 {SOD,CHB,DLF,HYF,IEF} (P24020737)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;PW VICTORIA 964 8114 {DLF,HYF,IEF} (P23331665)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;HVF VICTORIA 1121 05 (P21042404)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;STAR DOMINO 10H 1ET {SOD} (18838115)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;B STARFIRE 61 {SOD,CHB} (19571913)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;B LADY ELECTRIC 952 (19038419)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;K&amp;amp;B STARDUST 9725 (41148795)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;K&amp;amp;B HORIZON 9208 1ET {CHB,SOD} (19114832)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;K&amp;amp;B BONNIE LASS 2005 (19297742)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;K&amp;amp;B MS DOM 6202 1ET (18832528)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C255A58262526\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-4.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+37&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+56&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+59&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.031&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 11&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.39&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','K&B SWEET SALLY 5109 {DLF,HYF,IEF} (42611192)','description','inherit','closed','closed','','95-revision-v1','','','2017-03-03 15:43:47','2017-03-03 15:43:47','',95,'http://new.kclgenetics.com/95-revision-v1/',0,'revision','',0),(99,1,'2017-03-03 15:45:31','2017-03-03 15:45:31','<p style=\"text-align: center;\"><strong>Owned w/ Daryl Ruprecht, ND</strong></p>','TH 122 71I DOMINETTE 511X ET {DLF,HYF,IEF} (P43122876)','Full Sister to 719T','publish','closed','closed','','th-122-71i-dominette-511x-et-dlfhyfief-p43122876','','','2018-04-22 03:29:03','2018-04-22 03:29:03','',0,'http://new.kclgenetics.com/?p=99',0,'post','',0),(578,1,'2018-04-22 03:28:31','2018-04-22 03:28:31','<p style=\"text-align: center;\"><strong>Owned w/ Daryl Ruprecht, ND</strong></p>','TH 122 71I DOMINETTE 511X ET {DLF,HYF,IEF} (P43122876)','description','inherit','closed','closed','','99-revision-v1','','','2018-04-22 03:28:31','2018-04-22 03:28:31','',99,'http://kclgenetics.com/99-revision-v1/',0,'revision','',0),(579,1,'2018-04-22 03:28:42','2018-04-22 03:28:42','<p style=\"text-align: center;\"><strong>Owned w/ Daryl Ruprecht, ND</strong></p>','TH 122 71I DOMINETTE 511X ET {DLF,HYF,IEF} (P43122876)','','inherit','closed','closed','','99-revision-v1','','','2018-04-22 03:28:42','2018-04-22 03:28:42','',99,'http://kclgenetics.com/99-revision-v1/',0,'revision','',0),(580,1,'2018-04-22 03:29:03','2018-04-22 03:29:03','<p style=\"text-align: center;\"><strong>Owned w/ Daryl Ruprecht, ND</strong></p>','TH 122 71I DOMINETTE 511X ET {DLF,HYF,IEF} (P43122876)','Full Sister to 719T','inherit','closed','closed','','99-revision-v1','','','2018-04-22 03:29:03','2018-04-22 03:29:03','',99,'http://kclgenetics.com/99-revision-v1/',0,'revision','',0),(581,1,'2018-04-22 03:29:09','2018-04-22 03:29:09','<p style=\"text-align: center;\"><strong>Owned w/ Daryl Ruprecht, ND</strong></p>','TH 122 71I DOMINETTE 511X ET {DLF,HYF,IEF} (P43122876)','Full Sister to 719T','inherit','closed','closed','','99-autosave-v1','','','2018-04-22 03:29:09','2018-04-22 03:29:09','',99,'http://kclgenetics.com/99-autosave-v1/',0,'revision','',0),(100,1,'2017-03-03 15:45:31','2017-03-03 15:45:31','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\"><strong>Owned w/ Daryl Ruprecht, ND</strong></p>\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 794px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;BTF FORAGE FINDER 109W {CHB} (P23249538)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;TMF VINDY 451 (P22905013)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;RHF 964 VICTRA 4057 (P22857143)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;PAF VICTORIA 2J85 (P21643646)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;NJW FROSTY 1Y (P23345979)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KBCR 434V TRADER 535 (P23872357)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;KBCR DOMINETTE 9112 (P42008924)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KBCR A58 DOMINETTE 523 {DOD} (P23872369)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif; margin-left: auto; margin-right: auto;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5A5823212424\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+55&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+90&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+51&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+95&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.016&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.44&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.31&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','TH 122 71I DOMINETTE 511X ET {DLF,HYF,IEF} (P43122876)','','inherit','closed','closed','','99-revision-v1','','','2017-03-03 15:45:31','2017-03-03 15:45:31','',99,'http://new.kclgenetics.com/99-revision-v1/',0,'revision','',0),(101,1,'2017-03-03 15:45:53','2017-03-03 15:45:53','','TH 122 71I DOMINETTE 511X ET','','inherit','closed','closed','','th-122-71i-dominette-511x-et','','','2017-03-03 15:45:53','2017-03-03 15:45:53','',99,'http://new.kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET.jpg',0,'attachment','image/jpeg',0),(283,1,'2017-03-06 21:31:48','2017-03-06 21:31:48','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p style=\"text-align: center;\"><strong>Owned w/ Daryl Ruprecht, ND</strong></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 794px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">BTF FORAGE FINDER 109W {CHB} (P23249538)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">TMF VINDY 451 (P22905013)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire: DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">RHF 964 VICTRA 4057 (P22857143)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">PAF VICTORIA 2J85 (P21643646)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW FROSTY 1Y (P23345979)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam: KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR 434V TRADER 535 (P23872357)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">KBCR DOMINETTE 9112 (P42008924)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR A58 DOMINETTE 523 {DOD} (P23872369)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif; margin-left: auto; margin-right: auto;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS </th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=242D&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5B5A5823212424\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+4.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+55</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+90</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+51</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+95</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.016</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.44</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 30</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TH 122 71I DOMINETTE 511X ET {DLF,HYF,IEF} (P43122876)','description','inherit','closed','closed','','99-revision-v1','','','2017-03-06 21:31:48','2017-03-06 21:31:48','',99,'http://new.kclgenetics.com/99-revision-v1/',0,'revision','',0),(102,1,'2017-03-03 15:46:02','2017-03-03 15:46:02','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\"><strong>Owned w/ Daryl Ruprecht, ND</strong></p>\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 794px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;BTF FORAGE FINDER 109W {CHB} (P23249538)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;TMF VINDY 451 (P22905013)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;RHF 964 VICTRA 4057 (P22857143)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;PAF VICTORIA 2J85 (P21643646)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;NJW FROSTY 1Y (P23345979)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KBCR 434V TRADER 535 (P23872357)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;KBCR DOMINETTE 9112 (P42008924)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KBCR A58 DOMINETTE 523 {DOD} (P23872369)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif; margin-left: auto; margin-right: auto;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5A5823212424\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+55&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+90&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+51&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+95&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.016&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.44&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.31&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','TH 122 71I DOMINETTE 511X ET {DLF,HYF,IEF} (P43122876)','description','inherit','closed','closed','','99-revision-v1','','','2017-03-03 15:46:02','2017-03-03 15:46:02','',99,'http://new.kclgenetics.com/99-revision-v1/',0,'revision','',0),(282,1,'2017-03-06 21:31:11','2017-03-06 21:31:11','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned with WBCC, Buffalo, WY</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 823px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">RMTLL SALLYS LASS 120X (P23649228)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire: PW VICTOR BOOMER P606 {SOD,CHB,DLF,HYF,IEF} (P24020737)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">PW VICTORIA 964 8114 {DLF,HYF,IEF} (P23331665)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">HVF VICTORIA 1121 05 (P21042404)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">STAR DOMINO 10H 1ET {SOD} (18838115)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">B STARFIRE 61 {SOD,CHB} (19571913)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">B LADY ELECTRIC 952 (19038419)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam: K&B STARDUST 9725 (41148795)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">K&B HORIZON 9208 1ET {CHB,SOD} (19114832)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">K&B BONNIE LASS 2005 (19297742)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">K&B MS DOM 6202 1ET (18832528)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS </th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=242D&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5C255A58262526\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-4.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+37</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+56</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+59</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.031</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.35</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 16</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.39</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','K&B SWEET SALLY 5109 {DLF,HYF,IEF} (42611192)','description','inherit','closed','closed','','95-revision-v1','','','2017-03-06 21:31:11','2017-03-06 21:31:11','',95,'http://new.kclgenetics.com/95-revision-v1/',0,'revision','',0),(103,1,'2017-03-03 15:47:20','2017-03-03 15:47:20','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned with WBCC, Buffalo, WY</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 823px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RMTLL SALLYS LASS 120X (P23649228)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;PW VICTOR BOOMER P606 {SOD,CHB,DLF,HYF,IEF} (P24020737)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;PW VICTORIA 964 8114 {DLF,HYF,IEF} (P23331665)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;HVF VICTORIA 1121 05 (P21042404)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;STAR DOMINO 10H 1ET {SOD} (18838115)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;B STARFIRE 61 {SOD,CHB} (19571913)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;B LADY ELECTRIC 952 (19038419)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;K&amp;amp;B STARDUST 9725 (41148795)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;K&amp;amp;B HORIZON 9208 1ET {CHB,SOD} (19114832)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;K&amp;amp;B BONNIE LASS 2005 (19297742)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;K&amp;amp;B MS DOM 6202 1ET (18832528)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C255A58262526\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-4.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+37&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+56&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+59&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.031&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 11&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.39&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','K&B SWEET SALLY 5109 {DLF,HYF,IEF} (42611192)','description','inherit','closed','closed','','95-revision-v1','','','2017-03-03 15:47:20','2017-03-03 15:47:20','',95,'http://new.kclgenetics.com/95-revision-v1/',0,'revision','',0),(104,1,'2017-03-03 15:49:12','2017-03-03 15:49:12','','GHC MISS CARLA ET 52N {DLF,HYF,IEF} (P43078693)','Full Sister to Moose 59M','publish','closed','closed','','ghc-miss-carla-et-52n-dlfhyfief-p43078693','','','2018-04-22 03:32:18','2018-04-22 03:32:18','',0,'http://new.kclgenetics.com/?p=104',0,'post','',0),(585,1,'2018-04-22 03:32:18','2018-04-22 03:32:18','','GHC MISS CARLA ET 52N {DLF,HYF,IEF} (P43078693)','Full Sister to Moose 59M','inherit','closed','closed','','104-revision-v1','','','2018-04-22 03:32:18','2018-04-22 03:32:18','',104,'http://kclgenetics.com/104-revision-v1/',0,'revision','',0),(586,1,'2018-04-22 03:32:22','2018-04-22 03:32:22','','GHC MISS CARLA ET 52N {DLF,HYF,IEF} (P43078693)','Full Sister to Moose 59M','inherit','closed','closed','','104-autosave-v1','','','2018-04-22 03:32:22','2018-04-22 03:32:22','',104,'http://kclgenetics.com/104-autosave-v1/',0,'revision','',0),(105,1,'2017-03-03 15:49:05','2017-03-03 15:49:05','','GHC MISS CARLA ET 52N','','inherit','closed','closed','','ghc-miss-carla-et-52n','','','2017-03-03 15:49:05','2017-03-03 15:49:05','',104,'http://new.kclgenetics.com/wp-content/uploads/2017/03/GHC-MISS-CARLA-ET-52N.jpg',0,'attachment','image/jpeg',0),(106,1,'2017-03-03 15:49:12','2017-03-03 15:49:12','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned with WBCC, Buffalo, WY</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; height: 406px; width: 731px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WTK 80U PREMIUM 55Y (P21839423)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WTK 21N BLANCHE 28S (P21839535)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;WTK 75A CONTINENTAL 66F {CHB} (P42009650)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;HAROLDSON WTK OUTWEST 119A (P23715803)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;WTK 119A CARLOTTA 66C (P42009648)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;ANL 24W MISS 6U 42Y (P23651511)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GK FED EX 500Z {SOD} (P23485702)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;KLNDIKE 500Z FEDRTION 7C (P23712967)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GK SPIRIT QUEEN 42A (P23543441)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;WALPOLE PHILIS 13F (P42347231)&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5826212F2120\"&gt;&amp;nbsp;&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WALPOLE EXPRESSION 23B (CAN2521292)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;BAR AT MISS SUSAN 19D (P41015238)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;BAR AT CIRCLE SUSAN 15U (CAN2271982)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5B222523212D\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.4&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+51&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+83&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+41&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-2.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+107&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.99&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.10&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.017&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.68&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.03&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.41&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.42&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.38&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','GHC MISS CARLA ET 52N {DLF,HYF,IEF} (P43078693)','','inherit','closed','closed','','104-revision-v1','','','2017-03-03 15:49:12','2017-03-03 15:49:12','',104,'http://new.kclgenetics.com/104-revision-v1/',0,'revision','',0),(284,1,'2017-03-06 21:32:17','2017-03-06 21:32:17','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned with WBCC, Buffalo, WY</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; height: 406px; width: 731px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WTK 80U PREMIUM 55Y (P21839423)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WTK 21N BLANCHE 28S (P21839535)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire: WTK 75A CONTINENTAL 66F {CHB} (P42009650)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">HAROLDSON WTK OUTWEST 119A (P23715803)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">WTK 119A CARLOTTA 66C (P42009648)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">ANL 24W MISS 6U 42Y (P23651511)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GK FED EX 500Z {SOD} (P23485702)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">KLNDIKE 500Z FEDRTION 7C (P23712967)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GK SPIRIT QUEEN 42A (P23543441)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam: WALPOLE PHILIS 13F (P42347231)<a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5C5826212F2120\"> </a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WALPOLE EXPRESSION 23B (CAN2521292)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">BAR AT MISS SUSAN 19D (P41015238)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">BAR AT CIRCLE SUSAN 15U (CAN2271982)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS </th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=242D&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5B5B222523212D\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+4.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+51</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+83</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+41</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-2.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+107</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.99</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.10</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.017</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.68</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.03</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 22</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.41</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.42</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.35</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.38</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','GHC MISS CARLA ET 52N {DLF,HYF,IEF} (P43078693)','description','inherit','closed','closed','','104-revision-v1','','','2017-03-06 21:32:17','2017-03-06 21:32:17','',104,'http://new.kclgenetics.com/104-revision-v1/',0,'revision','',0),(108,1,'2017-03-03 15:50:05','2017-03-03 15:50:05','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned with WBCC, Buffalo, WY</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; height: 406px; width: 731px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WTK 80U PREMIUM 55Y (P21839423)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WTK 21N BLANCHE 28S (P21839535)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;WTK 75A CONTINENTAL 66F {CHB} (P42009650)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;HAROLDSON WTK OUTWEST 119A (P23715803)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;WTK 119A CARLOTTA 66C (P42009648)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;ANL 24W MISS 6U 42Y (P23651511)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GK FED EX 500Z {SOD} (P23485702)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;KLNDIKE 500Z FEDRTION 7C (P23712967)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GK SPIRIT QUEEN 42A (P23543441)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;WALPOLE PHILIS 13F (P42347231)&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5826212F2120\"&gt;&amp;nbsp;&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WALPOLE EXPRESSION 23B (CAN2521292)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;BAR AT MISS SUSAN 19D (P41015238)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;BAR AT CIRCLE SUSAN 15U (CAN2271982)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5B222523212D\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.4&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+51&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+83&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+41&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-2.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+107&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.99&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.10&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.017&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.68&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.03&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.41&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.42&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.38&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','GHC MISS CARLA ET 52N {DLF,HYF,IEF} (P43078693)','description','inherit','closed','closed','','104-revision-v1','','','2017-03-03 15:50:05','2017-03-03 15:50:05','',104,'http://new.kclgenetics.com/104-revision-v1/',0,'revision','',0),(109,1,'2017-03-03 15:51:34','2017-03-03 15:51:34','','KCL 8006 BONISSA 65K (P42118538)','The Cow that Changed the Game Here','publish','closed','closed','','kcl-8006-bonissa-65k-p42118538','','','2018-04-22 03:41:26','2018-04-22 03:41:26','',0,'http://new.kclgenetics.com/?p=109',0,'post','',0),(598,1,'2018-04-22 03:41:26','2018-04-22 03:41:26','','KCL 8006 BONISSA 65K (P42118538)','The Cow that Changed the Game Here','inherit','closed','closed','','109-revision-v1','','','2018-04-22 03:41:26','2018-04-22 03:41:26','',109,'http://kclgenetics.com/109-revision-v1/',0,'revision','',0),(599,1,'2018-04-22 03:41:31','2018-04-22 03:41:31','','KCL 8006 BONISSA 65K (P42118538)','The Cow that Changed the Game Here','inherit','closed','closed','','109-autosave-v1','','','2018-04-22 03:41:31','2018-04-22 03:41:31','',109,'http://kclgenetics.com/109-autosave-v1/',0,'revision','',0),(736,1,'2018-07-10 20:39:37','2018-07-10 20:39:37','<span style=\"font-size: 28px; font-weight: 900;\">Contact Numbers</span>\r\n<div class=\"rt-grid-6 rt-alpha\">\r\n<div class=\"rt-block box2\">\r\n<div class=\"module-surround\">\r\n<div class=\"module-content\">\r\n<div class=\"custombox2\">\r\n\r\n<img class=\"alignleft size-thumbnail wp-image-316\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Ranch Office- 972-824-5869\r\n\r\nOwner- Ken Larson- 972-977-8251\r\n\r\nLee Larson- Manager- 972-824-5869\r\n\r\nJosh Lowe-Herdman- 972-310-2421\r\n\r\nRanch Address: 2793 FM 1991 - Clifton, TX 76634\r\n\r\nE-mail: runlranch@aol.com\r\n\r\n[contact-form-7 id=\"491\" title=\"Contact form 1\"]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2018-07-10 20:39:37','2018-07-10 20:39:37','',51,'http://kclgenetics.com/51-revision-v1/',0,'revision','',0),(662,1,'2018-05-02 00:44:38','2018-05-02 00:44:38','http://kclgenetics.com/wp-content/uploads/2018/04/cropped-KCL-GENETICS-copy-2.jpg','cropped-KCL-GENETICS-copy-2.jpg','','inherit','closed','closed','','cropped-kcl-genetics-copy-2-jpg','','','2018-05-02 00:44:38','2018-05-02 00:44:38','',0,'http://kclgenetics.com/wp-content/uploads/2018/04/cropped-KCL-GENETICS-copy-2.jpg',0,'attachment','image/jpeg',0),(667,1,'2018-05-02 01:04:25','2018-05-02 01:04:25','','400dpiLogoCropped','','inherit','closed','closed','','400dpilogocropped','','','2019-05-02 00:29:29','2019-05-02 00:29:29','',44,'http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped.jpg',0,'attachment','image/jpeg',0),(699,1,'2018-05-09 21:50:03','2018-05-09 21:50:03','<h3 style=\"text-align: center;\">Please join us May 19, 2018 @ 12:00 pm at the ranch for the\r\n8th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051918\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-679 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/2018-Hereford-Alliance-Cover-232x300.jpg\" alt=\"\" width=\"232\" height=\"300\" /></a></p>\r\n<p style=\"text-align: center;\"><strong>Cattle will be available for viewing at any time.</strong></p>\r\n&lt;iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/videoseries?list=PL3K3ghzeET2SMAbUEJjNthd8-8m2n7gnM\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen&gt;&lt;/iframe&gt;\r\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\r\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n<img class=\"aligncenter size-full wp-image-380\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/north-entrance.jpg\" alt=\"\" width=\"785\" height=\"320\" />','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2018-05-09 21:50:03','2018-05-09 21:50:03','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(110,1,'2017-03-03 15:51:24','2017-03-03 15:51:24','','KCL 8006 BONISSA 65K','','inherit','closed','closed','','kcl-8006-bonissa-65k','','','2017-03-03 15:51:24','2017-03-03 15:51:24','',109,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-8006-BONISSA-65K.jpg',0,'attachment','image/jpeg',0),(285,1,'2017-03-06 21:32:49','2017-03-06 21:32:49','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_video admin_label=\"Video\" src=\"https://www.youtube.com/watch?v=9VzlayuuWbM\"]\r\n\r\n\r\n\r\n[/et_pb_video][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 391px; width: 595px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL ACME 10A {SOD} (P23631758)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">REMITALL EMBRACER 8E {CHB,SOD,HYF} (P23878988)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">PLAIN LAKE BELLE 20X 117P 5B (P42362361)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire: H 8E EMBRACER 8006 {CHB} (P41045158)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WS APPROVAL 621 (18796713)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">H MISS APPROVAL 9082 (19140589)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">H MS BLSTOFF 055 4ET (18847390)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WTK 80U PREMIUM 55Y (P21839423)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WTK 21N BLANCHE 28S (P21839535)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam: BIG T 75A BONISSA E45 (P23845591)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">BT BUTLER 452M {SOD,DLF,HYF,IEF} (P21830428)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">KILMORLIE 452M JEWEL 18W (P23817281)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KILMORLIE 26H JEWEL 09N (P19988284)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS </th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=242D&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5C5A59212F2725\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-2.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+4.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+85</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+39</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+107</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.055</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.90</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.05</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 26</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.45</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.35</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.34</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 8006 BONISSA 65K (P42118538)','description','inherit','closed','closed','','109-revision-v1','','','2017-03-06 21:32:49','2017-03-06 21:32:49','',109,'http://new.kclgenetics.com/109-revision-v1/',0,'revision','',0),(111,1,'2017-03-03 15:51:34','2017-03-03 15:51:34','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_video admin_label=\"Video\" src=\"https://www.youtube.com/watch?v=9VzlayuuWbM\" /][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 391px; width: 595px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL ACME 10A {SOD} (P23631758)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;REMITALL EMBRACER 8E {CHB,SOD,HYF} (P23878988)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;PLAIN LAKE BELLE 20X 117P 5B (P42362361)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;H 8E EMBRACER 8006 {CHB} (P41045158)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WS APPROVAL 621 (18796713)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;H MISS APPROVAL 9082 (19140589)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;H MS BLSTOFF 055 4ET (18847390)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WTK 80U PREMIUM 55Y (P21839423)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WTK 21N BLANCHE 28S (P21839535)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;BIG T 75A BONISSA E45 (P23845591)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;BT BUTLER 452M {SOD,DLF,HYF,IEF} (P21830428)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;KILMORLIE 452M JEWEL 18W (P23817281)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KILMORLIE 26H JEWEL 09N (P19988284)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A59212F2725\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-2.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+49&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+85&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+39&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+107&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.46&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.055&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.90&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.05&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.45&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.34&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 8006 BONISSA 65K (P42118538)','description','inherit','closed','closed','','109-revision-v1','','','2017-03-03 15:51:34','2017-03-03 15:51:34','',109,'http://new.kclgenetics.com/109-revision-v1/',0,'revision','',0),(112,1,'2017-03-03 15:54:42','2017-03-03 15:54:42','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>OWNED WITH RILEY STOCKDALE DAYTON, PA</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">C GOLD RUSH 1ET (19525330)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">C -S PURE GOLD 98170 {CHB,SOD,DLF,HYF,IEF} (41040609)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">C MS DOM 93218 1ET (19415950)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire: HB STAR BATTLE GROUND 2013 {DLF,HYF,IEF} (P42255652)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">MSU MISS WRANGLER 61J (P41148695)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">MSU VICTORIA 9F (P23906258)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL EMBRACER 8E {CHB,SOD,HYF} (P23878988)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">H 8E EMBRACER 8006 {CHB} (P41045158)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">H MISS APPROVAL 9082 (19140589)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam: KCL 8006 BONISSA 65K (P42118538)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">BIG T 75A BONISSA E45 (P23845591)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KILMORLIE 452M JEWEL 18W (P23817281)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS </th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=242D&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5C262158582024\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-3.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+5.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+81</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+39</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+101</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.029</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.69</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.01</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 24</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.35</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.35</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 2013 BONISSA 65K 75R {DLF,HYF,IEF} (P42669230)','description','publish','closed','closed','','kcl-2013-bonissa-65k-75r-dlfhyfief-p42669230','','','2017-03-06 21:33:25','2017-03-06 21:33:25','',0,'http://new.kclgenetics.com/?p=112',0,'post','',0),(113,1,'2017-03-03 15:53:39','2017-03-03 15:53:39','','KCL 2013 BONISSA 65K 75R','','inherit','closed','closed','','kcl-2013-bonissa-65k-75r','','','2017-03-03 15:53:39','2017-03-03 15:53:39','',112,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-2013-BONISSA-65K-75R.jpg',0,'attachment','image/jpeg',0),(286,1,'2017-03-06 21:33:25','2017-03-06 21:33:25','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>OWNED WITH RILEY STOCKDALE DAYTON, PA</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">C GOLD RUSH 1ET (19525330)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">C -S PURE GOLD 98170 {CHB,SOD,DLF,HYF,IEF} (41040609)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">C MS DOM 93218 1ET (19415950)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire: HB STAR BATTLE GROUND 2013 {DLF,HYF,IEF} (P42255652)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">MSU MISS WRANGLER 61J (P41148695)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">MSU VICTORIA 9F (P23906258)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL EMBRACER 8E {CHB,SOD,HYF} (P23878988)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">H 8E EMBRACER 8006 {CHB} (P41045158)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">H MISS APPROVAL 9082 (19140589)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam: KCL 8006 BONISSA 65K (P42118538)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">BIG T 75A BONISSA E45 (P23845591)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KILMORLIE 452M JEWEL 18W (P23817281)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS </th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=242D&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5C262158582024\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-3.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+5.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+81</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+39</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+101</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.029</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.69</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.01</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 24</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.35</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.35</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 2013 BONISSA 65K 75R {DLF,HYF,IEF} (P42669230)','description','inherit','closed','closed','','112-revision-v1','','','2017-03-06 21:33:25','2017-03-06 21:33:25','',112,'http://new.kclgenetics.com/112-revision-v1/',0,'revision','',0),(114,1,'2017-03-03 15:54:42','2017-03-03 15:54:42','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>OWNED WITH RILEY STOCKDALE DAYTON, PA</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;C GOLD RUSH 1ET (19525330)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;C -S PURE GOLD 98170 {CHB,SOD,DLF,HYF,IEF} (41040609)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;C MS DOM 93218 1ET (19415950)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;HB STAR BATTLE GROUND 2013 {DLF,HYF,IEF} (P42255652)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;MSU MISS WRANGLER 61J (P41148695)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;MSU VICTORIA 9F (P23906258)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL EMBRACER 8E {CHB,SOD,HYF} (P23878988)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;H 8E EMBRACER 8006 {CHB} (P41045158)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;H MISS APPROVAL 9082 (19140589)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;KCL 8006 BONISSA 65K (P42118538)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;BIG T 75A BONISSA E45 (P23845591)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KILMORLIE 452M JEWEL 18W (P23817281)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C262158582024\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-3.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+5.4&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+81&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+39&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+101&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.029&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.69&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.01&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 2013 BONISSA 65K 75R {DLF,HYF,IEF} (P42669230)','description','inherit','closed','closed','','112-revision-v1','','','2017-03-03 15:54:42','2017-03-03 15:54:42','',112,'http://new.kclgenetics.com/112-revision-v1/',0,'revision','',0),(287,1,'2017-03-06 21:33:59','2017-03-06 21:33:59','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_video admin_label=\"Video\" src=\"https://www.youtube.com/watch?v=b_7ShYajXlc\"]\r\n\r\n\r\n\r\n[/et_pb_video][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"AnimalDetails\" border=\"0\" cellspacing=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Regn. No.:</strong></td>\r\n<td>42805874</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Tattoo:</strong></td>\r\n<td>KCL92S</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Birth Date:</strong></td>\r\n<td>10/01/2006</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sire:</strong></td>\r\n<td>BR MOLER ET {CHB,DLF,IEF} (P42516026)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Dam:</strong></td>\r\n<td>KCL 8006 BONISSA 65K (P42118538)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>&nbsp;</strong></td>\r\n<td><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3E3F292A&amp;2=2420&amp;3=56&amp;5=2B3C2B3C3A&amp;6=5A5D5C242323272626&amp;9=5E5D5E\" target=\"_blank\"><strong>SEE PEDIGREE AND EPDS CLICK HERE</strong></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 4002 BONISSA 65K 92S ET {DLF,HYF,IEF} (P42805874)','description','inherit','closed','closed','','116-revision-v1','','','2017-03-06 21:33:59','2017-03-06 21:33:59','',116,'http://new.kclgenetics.com/116-revision-v1/',0,'revision','',0),(288,1,'2017-03-06 21:37:56','2017-03-06 21:37:56','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial,sans-serif; height: 616px; width: 793px;\" align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr style=\"height: 43px;\">\n<td style=\"height: 43px; width: 67.2833px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9667px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9333px;\" align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td style=\"height: 43px; width: 548.817px;\" align=\"left\" valign=\"middle\">REMITALL BOOMER 46B {SOD,DLF,HYF,IEF} (P23649249)</td>\n</tr>\n<tr style=\"height: 43px;\">\n<td style=\"height: 43px; width: 67.2833px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9667px;\" align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td style=\"height: 43px; width: 636.75px;\" colspan=\"2\" align=\"left\" valign=\"middle\">CS BOOMER 29F {SOD,DLF,HYF,IEF} (P23925982)</td>\n</tr>\n<tr style=\"height: 43px;\">\n<td style=\"height: 43px; width: 67.2833px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9667px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9333px;\" align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td style=\"height: 43px; width: 548.817px;\" align=\"left\" valign=\"middle\">CS MISS 1ST FLAG 21A {DOD,DLF,IEF} (P23559479)</td>\n</tr>\n<tr style=\"height: 45px;\">\n<td style=\"height: 45px; width: 67.2833px;\" align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td style=\"height: 45px; width: 724.717px;\" colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire:&nbsp;STAR OBF BOGART 5L {SOD,CHB,DLF,HYF,IEF} (P42142971)</strong></span></td>\n</tr>\n<tr style=\"height: 43px;\">\n<td style=\"height: 43px; width: 67.2833px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9667px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9333px;\" align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td style=\"height: 43px; width: 548.817px;\" align=\"left\" valign=\"middle\">CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)</td>\n</tr>\n<tr style=\"height: 43px;\">\n<td style=\"height: 43px; width: 67.2833px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9667px;\" align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td style=\"height: 43px; width: 636.75px;\" colspan=\"2\" align=\"left\" valign=\"middle\">NJW 1Y LARIAT 41E (P23839464)</td>\n</tr>\n<tr style=\"height: 43px;\">\n<td style=\"height: 43px; width: 67.2833px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9667px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9333px;\" align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td style=\"height: 43px; width: 548.817px;\" align=\"left\" valign=\"middle\">NJW FROSTY 1Y (P23345979)</td>\n</tr>\n<tr style=\"height: 43px;\">\n<td style=\"height: 43px; width: 67.2833px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9667px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9333px;\" align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td style=\"height: 43px; width: 548.817px;\" align=\"left\" valign=\"middle\">WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)</td>\n</tr>\n<tr style=\"height: 43px;\">\n<td style=\"height: 43px; width: 67.2833px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9667px;\" align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td style=\"height: 43px; width: 636.75px;\" colspan=\"2\" align=\"left\" valign=\"middle\">WTK 75A CONTINENTAL 66F (P42009650)</td>\n</tr>\n<tr style=\"height: 43px;\">\n<td style=\"height: 43px; width: 67.2833px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9667px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9333px;\" align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td style=\"height: 43px; width: 548.817px;\" align=\"left\" valign=\"middle\">WTK 119A CARLOTTA 66C (P42009648)</td>\n</tr>\n<tr style=\"height: 45px;\">\n<td style=\"height: 45px; width: 67.2833px;\" align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td style=\"height: 45px; width: 724.717px;\" colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam:&nbsp;GHC MISS CARLA 35J {DLF,HYF,IEF} (P42126403)</strong></span></td>\n</tr>\n<tr style=\"height: 43px;\">\n<td style=\"height: 43px; width: 67.2833px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9667px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9333px;\" align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td style=\"height: 43px; width: 548.817px;\" align=\"left\" valign=\"middle\">KLMRLE 452M REDEYE 127U (P21837130)</td>\n</tr>\n<tr style=\"height: 43.8px;\">\n<td style=\"height: 43.8px; width: 67.2833px;\">&nbsp;</td>\n<td style=\"height: 43.8px; width: 87.9667px;\" align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td style=\"height: 43.8px; width: 636.75px;\" colspan=\"2\" align=\"left\" valign=\"middle\">GL 127U KAREN 25Y (P42126402)</td>\n</tr>\n<tr style=\"height: 43px;\">\n<td style=\"height: 43px; width: 67.2833px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9667px;\">&nbsp;</td>\n<td style=\"height: 43px; width: 87.9333px;\" align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td style=\"height: 43px; width: 548.817px;\" align=\"left\" valign=\"middle\">KLONDIKE KAREN 895U (P23093993)</td>\n</tr>\n</tbody>\n</table>\n<p class=\"\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3E3F292A&amp;2=232F50&amp;3=56&amp;5=2B3C2B3C3A&amp;6=5A5D5C2323232F2E26&amp;9=515B5827\">CLICK FOR CURRENT EPDS</a></p>\n<p class=\"et-fb-mce-line-break-holder\" style=\"text-align: center;\"></p>\n<p><br/></p>\n<p><br/></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','STAR KCL 5L CARLITA 28U {DLF,HYF,IEF} (P42872275)','description','inherit','closed','closed','','139-revision-v1','','','2017-03-06 21:37:56','2017-03-06 21:37:56','',139,'http://new.kclgenetics.com/139-revision-v1/',0,'revision','',0),(305,1,'2017-03-06 23:05:34','2017-03-06 23:05:34',' ','','','publish','closed','closed','','305','','','2018-06-08 05:29:39','2018-06-08 05:29:39','',0,'http://new.kclgenetics.com/?p=305',6,'nav_menu_item','',0),(294,1,'2017-03-06 22:51:34','2017-03-06 22:51:34','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<blockquote>\n<h1>We are happy to announce that we have upgraded our website and will be updating our website more than before. Check back frequently for updates on the 2017 Hereford Alliance Sale.</h1>\n<h3></h3>\n</blockquote>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','We have upgraded our website','','publish','closed','closed','','we-have-upgraded-our-website','','','2017-03-09 21:11:42','2017-03-09 21:11:42','',0,'http://new.kclgenetics.com/?p=294',0,'post','',0),(295,1,'2017-03-06 22:51:34','2017-03-06 22:51:34','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe are happy to announce that we have upgraded our website and will be updating our website more than before.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','We have upgraded our website','','inherit','closed','closed','','294-revision-v1','','','2017-03-06 22:51:34','2017-03-06 22:51:34','',294,'http://new.kclgenetics.com/294-revision-v1/',0,'revision','',0),(293,1,'2017-03-06 21:55:09','2017-03-06 21:55:09','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\"][et_pb_column type=\"2_3\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>KCL Donor Cow Program</h3>\n<p><br/></p>\n<p>The KCL Donor Program is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production.&nbsp;The cows&nbsp;are assessed with a heavy eye on mothering ability&nbsp;with a focus on&nbsp;udder structure and milk flow.&nbsp;It is of extreme importance that females in this program be structurally sound in skeleton&nbsp;and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. At times we do input young semi-proven females in this program based on the production of their mothers and siblings. All of these factors give great confidence in our production of \"The Next Generation\". COW FAMILIES ARE THE KEY</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"100\" include_categories=\"3\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"Blog\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2017-03-06 21:55:09','2017-03-06 21:55:09','',60,'http://new.kclgenetics.com/60-revision-v1/',0,'revision','',0),(116,1,'2017-03-03 15:57:09','2017-03-03 15:57:09','','KCL 4002 BONISSA 65K 92S ET {DLF,HYF,IEF} (P42805874)','Power Bonissa Cow','publish','closed','closed','','kcl-4002-bonissa-65k-92s-et-dlfhyfief-p42805874','','','2018-04-22 03:48:30','2018-04-22 03:48:30','',0,'http://new.kclgenetics.com/?p=116',0,'post','',0),(609,1,'2018-04-22 03:47:55','2018-04-22 03:47:55','','KCL 4002 BONISSA 65K 92S ET {DLF,HYF,IEF} (P42805874)','description','inherit','closed','closed','','116-revision-v1','','','2018-04-22 03:47:55','2018-04-22 03:47:55','',116,'http://kclgenetics.com/116-revision-v1/',0,'revision','',0),(611,1,'2018-04-22 03:48:30','2018-04-22 03:48:30','','KCL 4002 BONISSA 65K 92S ET {DLF,HYF,IEF} (P42805874)','Power Bonissa Cow','inherit','closed','closed','','116-revision-v1','','','2018-04-22 03:48:30','2018-04-22 03:48:30','',116,'http://kclgenetics.com/116-revision-v1/',0,'revision','',0),(117,1,'2017-03-03 15:57:04','2017-03-03 15:57:04','','KCL 4002 BONISSA 65K 92S ET','','inherit','closed','closed','','kcl-4002-bonissa-65k-92s-et','','','2017-03-03 15:57:04','2017-03-03 15:57:04','',116,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-4002-BONISSA-65K-92S-ET.jpg',0,'attachment','image/jpeg',0),(118,1,'2017-03-03 15:57:09','2017-03-03 15:57:09','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_video admin_label=\"Video\" src=\"https://www.youtube.com/watch?v=b_7ShYajXlc\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"AnimalDetails\" border=\"0\" cellspacing=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Regn. No.:</strong></td>\r\n<td>42805874</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Tattoo:</strong></td>\r\n<td>KCL92S</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Birth Date:</strong></td>\r\n<td>10/01/2006</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sire:</strong></td>\r\n<td>BR MOLER ET {CHB,DLF,IEF} (P42516026)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Dam:</strong></td>\r\n<td>KCL 8006 BONISSA 65K (P42118538)</td>\r\n</tr>\r\n<tr>\r\n<td><strong> </strong></td>\r\n<td><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3E3F292A&amp;2=2420&amp;3=56&amp;5=2B3C2B3C3A&amp;6=5A5D5C242323272626&amp;9=5E5D5E\" target=\"_blank\"><strong>SEE PEDIGREE AND EPDS CLICK HERE</strong></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 4002 BONISSA 65K 92S ET {DLF,HYF,IEF} (P42805874)','','inherit','closed','closed','','116-revision-v1','','','2017-03-03 15:57:09','2017-03-03 15:57:09','',116,'http://new.kclgenetics.com/116-revision-v1/',0,'revision','',0),(119,1,'2017-03-03 15:57:25','2017-03-03 15:57:25','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_video admin_label=\"Video\" src=\"https://www.youtube.com/watch?v=b_7ShYajXlc\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"AnimalDetails\" border=\"0\" cellspacing=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Regn. No.:</strong></td>\r\n<td>42805874</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Tattoo:</strong></td>\r\n<td>KCL92S</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Birth Date:</strong></td>\r\n<td>10/01/2006</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sire:</strong></td>\r\n<td>BR MOLER ET {CHB,DLF,IEF} (P42516026)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Dam:</strong></td>\r\n<td>KCL 8006 BONISSA 65K (P42118538)</td>\r\n</tr>\r\n<tr>\r\n<td><strong> </strong></td>\r\n<td><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3E3F292A&amp;2=2420&amp;3=56&amp;5=2B3C2B3C3A&amp;6=5A5D5C242323272626&amp;9=5E5D5E\" target=\"_blank\"><strong>SEE PEDIGREE AND EPDS CLICK HERE</strong></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 4002 BONISSA 65K 92S ET {DLF,HYF,IEF} (P42805874)','description','inherit','closed','closed','','116-revision-v1','','','2017-03-03 15:57:25','2017-03-03 15:57:25','',116,'http://new.kclgenetics.com/116-revision-v1/',0,'revision','',0),(120,1,'2017-03-03 15:59:29','2017-03-03 15:59:29','','KCL 3T BONISSA 71S 114W ET (P43210927)','Top Member of Bonissa Family','publish','closed','closed','','kcl-3t-bonissa-71s-114w-et-p43210927','','','2018-04-22 03:46:56','2018-04-22 03:46:56','',0,'http://new.kclgenetics.com/?p=120',0,'post','',0),(605,1,'2018-04-22 03:46:20','2018-04-22 03:46:20','','KCL 3T BONISSA 71S 114W ET (P43210927)','description','inherit','closed','closed','','120-revision-v1','','','2018-04-22 03:46:20','2018-04-22 03:46:20','',120,'http://kclgenetics.com/120-revision-v1/',0,'revision','',0),(607,1,'2018-04-22 03:46:56','2018-04-22 03:46:56','','KCL 3T BONISSA 71S 114W ET (P43210927)','Top Member of Bonissa Family','inherit','closed','closed','','120-revision-v1','','','2018-04-22 03:46:56','2018-04-22 03:46:56','',120,'http://kclgenetics.com/120-revision-v1/',0,'revision','',0),(608,1,'2018-04-22 03:47:04','2018-04-22 03:47:04','','KCL 3T BONISSA 71S 114W ET (P43210927)','Top Member of Bonissa Family','inherit','closed','closed','','120-autosave-v1','','','2018-04-22 03:47:04','2018-04-22 03:47:04','',120,'http://kclgenetics.com/120-autosave-v1/',0,'revision','',0),(121,1,'2017-03-03 15:59:02','2017-03-03 15:59:02','','KCL 3T BONISSA 71S 114W ET','','inherit','closed','closed','','kcl-3t-bonissa-71s-114w-et','','','2017-03-03 15:59:02','2017-03-03 15:59:02','',120,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-3T-BONISSA-71S-114W-ET.jpg',0,'attachment','image/jpeg',0),(122,1,'2017-03-03 15:59:29','2017-03-03 15:59:29','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Owned with Daryl &amp; Elizabeth Reisch</p>\r\n\r\n<table class=\"AnimalDetails\" border=\"0\" cellspacing=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Regn. No.:</strong></td>\r\n<td>43210927</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Tattoo:</strong></td>\r\n<td>KCL114W</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Birth Date:</strong></td>\r\n<td>10/05/2009</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sire:</strong></td>\r\n<td>STAR KCL BREAKOUT 3T ET {DLF,HYF,IEF} (P42776878)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Dam:</strong></td>\r\n<td>KCL 26P BONISSA 71S ET (P42743466)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 3T BONISSA 71S 114W ET (P43210927)','description','inherit','closed','closed','','120-revision-v1','','','2017-03-03 15:59:29','2017-03-03 15:59:29','',120,'http://new.kclgenetics.com/120-revision-v1/',0,'revision','',0),(123,1,'2017-03-03 16:03:51','2017-03-03 16:03:51','','KCL S01 BONISSA 65K 110W ET {DLF,HYF,IEF} (P43120430)','Bonissa Family Leader','publish','closed','closed','','kcl-s01-bonissa-65k-110w-et-dlfhyfief-p43120430','','','2018-04-22 03:43:27','2018-04-22 03:43:27','',0,'http://new.kclgenetics.com/?p=123',0,'post','',0),(602,1,'2018-04-22 03:43:27','2018-04-22 03:43:27','','KCL S01 BONISSA 65K 110W ET {DLF,HYF,IEF} (P43120430)','Bonissa Family Leader','inherit','closed','closed','','123-revision-v1','','','2018-04-22 03:43:27','2018-04-22 03:43:27','',123,'http://kclgenetics.com/123-revision-v1/',0,'revision','',0),(603,1,'2018-04-22 03:43:31','2018-04-22 03:43:31','','KCL S01 BONISSA 65K 110W ET {DLF,HYF,IEF} (P43120430)','Bonissa Family Leader','inherit','closed','closed','','123-autosave-v1','','','2018-04-22 03:43:31','2018-04-22 03:43:31','',123,'http://kclgenetics.com/123-autosave-v1/',0,'revision','',0),(625,1,'2018-05-01 22:48:19','2018-05-01 22:48:19','Owned w/ Topp Herefords','GERBER 8020 ROSY LANE 308N {DLF,HYF,IEF} (42421532)','description','inherit','closed','closed','','145-revision-v1','','','2018-05-01 22:48:19','2018-05-01 22:48:19','',145,'http://kclgenetics.com/145-revision-v1/',0,'revision','',0),(626,1,'2018-05-01 22:49:04','2018-05-01 22:49:04','Owned w/ Topp Herefords','GERBER 8020 ROSY LANE 308N {DLF,HYF,IEF} (42421532)','A Legend in the Breed','inherit','closed','closed','','145-revision-v1','','','2018-05-01 22:49:04','2018-05-01 22:49:04','',145,'http://kclgenetics.com/145-revision-v1/',0,'revision','',0),(124,1,'2017-03-03 16:03:09','2017-03-03 16:03:09','','dam-110W','','inherit','closed','closed','','dam-110w','','','2017-03-03 16:03:09','2017-03-03 16:03:09','',123,'http://new.kclgenetics.com/wp-content/uploads/2017/03/dam-110W.jpg',0,'attachment','image/jpeg',0),(125,1,'2017-03-03 16:03:43','2017-03-03 16:03:43','','KCL S01 BONISSA 65K 110W ET','','inherit','closed','closed','','kcl-s01-bonissa-65k-110w-et','','','2017-03-03 16:03:43','2017-03-03 16:03:43','',123,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-S01-BONISSA-65K-110W-ET.jpg',0,'attachment','image/jpeg',0),(126,1,'2017-03-03 16:03:51','2017-03-03 16:03:51','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"AnimalDetails\" border=\"0\" cellspacing=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Regn. No.:</strong></td>\r\n<td>43120430</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Tattoo:</strong></td>\r\n<td>KCL110W</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Birth Date:</strong></td>\r\n<td>10/07/2009</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sire:</strong></td>\r\n<td>HCC LEGACY S01 ET {CHB,DLF,HYF,IEF} (P42697758)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Dam:</strong></td>\r\n<td>KCL 8006 BONISSA 65K (P42118538)</td>\r\n</tr>\r\n<tr>\r\n<td><strong> </strong></td>\r\n<td><img class=\"alignnone size-medium wp-image-124\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/dam-110W-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" />\r\n\r\nDAM OF 110W</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL S01 BONISSA 65K 110W ET {DLF,HYF,IEF} (P43120430)','description','inherit','closed','closed','','123-revision-v1','','','2017-03-03 16:03:51','2017-03-03 16:03:51','',123,'http://new.kclgenetics.com/123-revision-v1/',0,'revision','',0),(127,1,'2017-03-03 16:05:26','2017-03-03 16:05:26','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<table class=\"AnimalDetails\" border=\"0\" cellspacing=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Regn. No.:</strong></td>\r\n<td>42460091</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Tattoo:</strong></td>\r\n<td>KCL50N</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Birth Date:</strong></td>\r\n<td>09/25/2003</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sire:</strong></td>\r\n<td>REMITALL ONLINE 122L {CHB,SOD,DLF,HYF,IEF} (P42254372)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Dam:</strong></td>\r\n<td>KCL 8006 BONISSA 65K (P42118538)</td>\r\n</tr>\r\n<tr>\r\n<td><strong> </strong></td>\r\n<td><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3E3F292A&amp;2=2420&amp;3=56&amp;5=2B3C2B3C3A&amp;6=5A5D5C272522212624&amp;9=5D535C\">SEE PEDIGREE AND EPD INFO</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL65K MS WORLDWIDE 122L 50N ET (P42460091)','description','publish','closed','closed','','kcl65k-ms-worldwide-122l-50n-et-p42460091','','','2017-03-03 16:20:17','2017-03-03 16:20:17','',0,'http://new.kclgenetics.com/?p=127',0,'post','',0),(128,1,'2017-03-03 16:05:26','2017-03-03 16:05:26','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<table class=\"AnimalDetails\" border=\"0\" cellspacing=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Regn. No.:</strong></td>\r\n<td>42460091</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Tattoo:</strong></td>\r\n<td>KCL50N</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Birth Date:</strong></td>\r\n<td>09/25/2003</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sire:</strong></td>\r\n<td>REMITALL ONLINE 122L {CHB,SOD,DLF,HYF,IEF} (P42254372)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Dam:</strong></td>\r\n<td>KCL 8006 BONISSA 65K (P42118538)</td>\r\n</tr>\r\n<tr>\r\n<td><strong> </strong></td>\r\n<td><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3E3F292A&amp;2=2420&amp;3=56&amp;5=2B3C2B3C3A&amp;6=5A5D5C272522212624&amp;9=5D535C\">SEE PEDIGREE AND EPD INFO</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL65K MS WORLDWIDE 122L 50N ET (P42460091)','','inherit','closed','closed','','127-revision-v1','','','2017-03-03 16:05:26','2017-03-03 16:05:26','',127,'http://new.kclgenetics.com/127-revision-v1/',0,'revision','',0),(129,1,'2017-03-03 16:07:29','2017-03-03 16:07:29','','KCL 346R BONISSA 50N 9U ET {DLF,HYF,IEF} (P42964250)','Bonissa Cow Family','publish','closed','closed','','kcl-346r-bonissa-50n-9u-et-dlfhyfief-p42964250','','','2018-04-22 03:42:12','2018-04-22 03:42:12','',0,'http://new.kclgenetics.com/?p=129',0,'post','',0),(600,1,'2018-04-22 03:42:12','2018-04-22 03:42:12','','KCL 346R BONISSA 50N 9U ET {DLF,HYF,IEF} (P42964250)','Bonissa Cow Family','inherit','closed','closed','','129-revision-v1','','','2018-04-22 03:42:12','2018-04-22 03:42:12','',129,'http://kclgenetics.com/129-revision-v1/',0,'revision','',0),(601,1,'2018-04-22 03:42:18','2018-04-22 03:42:18','','KCL 346R BONISSA 50N 9U ET {DLF,HYF,IEF} (P42964250)','Bonissa Cow Family','inherit','closed','closed','','129-autosave-v1','','','2018-04-22 03:42:18','2018-04-22 03:42:18','',129,'http://kclgenetics.com/129-autosave-v1/',0,'revision','',0),(130,1,'2017-03-03 16:07:22','2017-03-03 16:07:22','','KCL 346R BONISSA 50N 9U ET','Bonissa 9U','inherit','closed','closed','','kcl-346r-bonissa-50n-9u-et','','','2018-05-02 01:10:58','2018-05-02 01:10:58','',129,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-346R-BONISSA-50N-9U-ET.jpg',0,'attachment','image/jpeg',0),(131,1,'2017-03-03 16:07:29','2017-03-03 16:07:29','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"AnimalDetails\" border=\"0\" cellspacing=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Regn. No.:</strong></td>\r\n<td>42964250</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Tattoo:</strong></td>\r\n<td>KCL9U</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Birth Date:</strong></td>\r\n<td>01/09/2008</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sire:</strong></td>\r\n<td>REMITALL ROUTE 66 ET 346R {CHB} (P42733186)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Dam:</strong></td>\r\n<td>KCL65K MS WORLDWIDE 122L 50N ET (P42460091)</td>\r\n</tr>\r\n<tr>\r\n<td><strong> </strong></td>\r\n<td>OWNED W/ Dylan Morish Port Lavaca, TX</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 346R BONISSA 50N 9U ET {DLF,HYF,IEF} (P42964250)','description','inherit','closed','closed','','129-revision-v1','','','2017-03-03 16:07:29','2017-03-03 16:07:29','',129,'http://new.kclgenetics.com/129-revision-v1/',0,'revision','',0),(132,1,'2017-03-03 16:09:33','2017-03-03 16:09:33','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"AnimalDetails\" border=\"0\" cellspacing=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Regn. No.:</strong></td>\r\n<td>43121296</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Tattoo:</strong></td>\r\n<td>KCL112W</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Birth Date:</strong></td>\r\n<td>10/06/2009</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sire:</strong></td>\r\n<td>STAR BRIGHT FUTURE 533P ET {CHB,DLF,HYF,IEF} (P42483846)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Dam:</strong></td>\r\n<td>BR MSU MS SHOWLINE 2042 ET (P42299352)</td>\r\n</tr>\r\n<tr>\r\n<td><strong> </strong></td>\r\n<td><img class=\"alignnone size-medium wp-image-134\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/dam2-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 533 FLYING EXPECTATION ET {DLF,HYF,IEF} (P43121296)','description','publish','closed','closed','','kcl-533-flying-expectation-et-dlfhyfief-p43121296','','','2017-03-03 16:09:33','2017-03-03 16:09:33','',0,'http://new.kclgenetics.com/?p=132',0,'post','',0),(133,1,'2017-03-03 16:08:45','2017-03-03 16:08:45','','KCL 533 FLYING EXPECTATION ET','','inherit','closed','closed','','kcl-533-flying-expectation-et','','','2017-03-03 16:08:45','2017-03-03 16:08:45','',132,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-533-FLYING-EXPECTATION-ET.jpg',0,'attachment','image/jpeg',0),(134,1,'2017-03-03 16:09:21','2017-03-03 16:09:21','','dam2','','inherit','closed','closed','','dam2','','','2017-03-03 16:09:21','2017-03-03 16:09:21','',132,'http://new.kclgenetics.com/wp-content/uploads/2017/03/dam2.jpg',0,'attachment','image/jpeg',0),(135,1,'2017-03-03 16:09:33','2017-03-03 16:09:33','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"AnimalDetails\" border=\"0\" cellspacing=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Regn. No.:</strong></td>\r\n<td>43121296</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Tattoo:</strong></td>\r\n<td>KCL112W</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Birth Date:</strong></td>\r\n<td>10/06/2009</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sire:</strong></td>\r\n<td>STAR BRIGHT FUTURE 533P ET {CHB,DLF,HYF,IEF} (P42483846)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Dam:</strong></td>\r\n<td>BR MSU MS SHOWLINE 2042 ET (P42299352)</td>\r\n</tr>\r\n<tr>\r\n<td><strong> </strong></td>\r\n<td><img class=\"alignnone size-medium wp-image-134\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/dam2-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 533 FLYING EXPECTATION ET {DLF,HYF,IEF} (P43121296)','description','inherit','closed','closed','','132-revision-v1','','','2017-03-03 16:09:33','2017-03-03 16:09:33','',132,'http://new.kclgenetics.com/132-revision-v1/',0,'revision','',0),(136,1,'2017-03-03 16:10:37','2017-03-03 16:10:37','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"AnimalDetails\" border=\"0\" cellspacing=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Regn. No.:</strong></td>\r\n<td>42126403</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Tattoo:</strong></td>\r\n<td>AKJA35J</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sire:</strong></td>\r\n<td>WTK 75A CONTINENTAL 66F {CHB} (P42009650)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Dam:</strong></td>\r\n<td>GL 127U KAREN 25Y (P42126402)</td>\r\n</tr>\r\n<tr>\r\n<td><strong> </strong></td>\r\n<td> ABSOLUTE FOUNDATION DONOR</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','GHC MISS CARLA 35J {DLF,HYF,IEF} (P42126403)','description','publish','closed','closed','','ghc-miss-carla-35j-dlfhyfief-p42126403','','','2017-03-03 16:10:37','2017-03-03 16:10:37','',0,'http://new.kclgenetics.com/?p=136',0,'post','',0),(137,1,'2017-03-03 16:10:28','2017-03-03 16:10:28','','GHC MISS CARLA 35J','','inherit','closed','closed','','ghc-miss-carla-35j','','','2017-03-03 16:10:28','2017-03-03 16:10:28','',136,'http://new.kclgenetics.com/wp-content/uploads/2017/03/GHC-MISS-CARLA-35J.jpg',0,'attachment','image/jpeg',0),(138,1,'2017-03-03 16:10:37','2017-03-03 16:10:37','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"AnimalDetails\" border=\"0\" cellspacing=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Regn. No.:</strong></td>\r\n<td>42126403</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Tattoo:</strong></td>\r\n<td>AKJA35J</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sire:</strong></td>\r\n<td>WTK 75A CONTINENTAL 66F {CHB} (P42009650)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Dam:</strong></td>\r\n<td>GL 127U KAREN 25Y (P42126402)</td>\r\n</tr>\r\n<tr>\r\n<td><strong> </strong></td>\r\n<td> ABSOLUTE FOUNDATION DONOR</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','GHC MISS CARLA 35J {DLF,HYF,IEF} (P42126403)','description','inherit','closed','closed','','136-revision-v1','','','2017-03-03 16:10:37','2017-03-03 16:10:37','',136,'http://new.kclgenetics.com/136-revision-v1/',0,'revision','',0),(139,1,'2017-03-03 16:12:08','2017-03-03 16:12:08','','STAR KCL 5L CARLITA 28U {DLF,HYF,IEF} (P42872275)','Own Daughter of 35J','publish','closed','closed','','star-kcl-5l-carlita-28u-dlfhyfief-p42872275','','','2018-04-22 03:33:24','2018-04-22 03:33:24','',0,'http://new.kclgenetics.com/?p=139',0,'post','',0),(587,1,'2018-04-22 03:33:24','2018-04-22 03:33:24','','STAR KCL 5L CARLITA 28U {DLF,HYF,IEF} (P42872275)','Own Daughter of 35J','inherit','closed','closed','','139-revision-v1','','','2018-04-22 03:33:24','2018-04-22 03:33:24','',139,'http://kclgenetics.com/139-revision-v1/',0,'revision','',0),(140,1,'2017-03-03 16:12:02','2017-03-03 16:12:02','','STAR KCL 5L CARLITA 28U','','inherit','closed','closed','','star-kcl-5l-carlita-28u','','','2017-03-03 16:12:02','2017-03-03 16:12:02','',139,'http://new.kclgenetics.com/wp-content/uploads/2017/03/STAR-KCL-5L-CARLITA-28U.jpg',0,'attachment','image/jpeg',0),(273,1,'2017-03-06 21:24:33','2017-03-06 21:24:33','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 343px; width: 854px;\" align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">REMITALL BOOMER 46B {SOD,DLF,HYF,IEF} (P23649249)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td colspan=\"2\" align=\"left\" valign=\"middle\">CS BOOMER 29F {SOD,DLF,HYF,IEF} (P23925982)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">CS MISS 1ST FLAG 21A {DOD,DLF,IEF} (P23559479)</td>\n</tr>\n<tr>\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire:&nbsp;STAR OBF BOGART 5L {SOD,CHB,DLF,HYF,IEF} (P42142971)</strong></span></td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td colspan=\"2\" align=\"left\" valign=\"middle\">NJW 1Y LARIAT 41E (P23839464)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">NJW FROSTY 1Y (P23345979)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td colspan=\"2\" align=\"left\" valign=\"middle\">WTK 75A CONTINENTAL 66F (P42009650)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">WTK 119A CARLOTTA 66C (P42009648)</td>\n</tr>\n<tr>\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam:&nbsp;GHC MISS CARLA 35J {DLF,HYF,IEF} (P42126403)</strong></span></td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">KLMRLE 452M REDEYE 127U (P21837130)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GL 127U KAREN 25Y (P42126402)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">KLONDIKE KAREN 895U (P23093993)</td>\n</tr>\n</tbody>\n</table>\n<p class=\"\">CLICK FOR CURRENT EPDS</p>\n<p class=\"et-fb-mce-line-break-holder\" style=\"text-align: center;\"></p>\n<p><br/></p>\n<p><br/></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','STAR KCL 5L CARLITA 28U {DLF,HYF,IEF} (P42872275)','description','inherit','closed','closed','','139-revision-v1','','','2017-03-06 21:24:33','2017-03-06 21:24:33','',139,'http://new.kclgenetics.com/139-revision-v1/',0,'revision','',0),(268,1,'2017-03-06 21:15:56','2017-03-06 21:15:56','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 343px; width: 854px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL BOOMER 46B {SOD,DLF,HYF,IEF} (P23649249)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">CS BOOMER 29F {SOD,DLF,HYF,IEF} (P23925982)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CS MISS 1ST FLAG 21A {DOD,DLF,IEF} (P23559479)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire: STAR OBF BOGART 5L {SOD,CHB,DLF,HYF,IEF} (P42142971)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">NJW 1Y LARIAT 41E (P23839464)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW FROSTY 1Y (P23345979)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">WTK 75A CONTINENTAL 66F (P42009650)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WTK 119A CARLOTTA 66C (P42009648)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam: GHC MISS CARLA 35J {DLF,HYF,IEF} (P42126403)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KLMRLE 452M REDEYE 127U (P21837130)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GL 127U KAREN 25Y (P42126402)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KLONDIKE KAREN 895U (P23093993)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: center;\"><br style=\"color: #000000; font-family: arial, sans-serif;\" /></p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">EPDS AS OF 4/15/16</th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Carc<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+4.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+81</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+111</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+66</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.024</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.60</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.06</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 24</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.42</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.35</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','STAR KCL 5L CARLITA 28U {DLF,HYF,IEF} (P42872275)','description','inherit','closed','closed','','139-revision-v1','','','2017-03-06 21:15:56','2017-03-06 21:15:56','',139,'http://new.kclgenetics.com/139-revision-v1/',0,'revision','',0),(141,1,'2017-03-03 16:12:08','2017-03-03 16:12:08','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 343px; width: 854px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL BOOMER 46B {SOD,DLF,HYF,IEF} (P23649249)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;CS BOOMER 29F {SOD,DLF,HYF,IEF} (P23925982)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CS MISS 1ST FLAG 21A {DOD,DLF,IEF} (P23559479)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;STAR OBF BOGART 5L {SOD,CHB,DLF,HYF,IEF} (P42142971)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;NJW 1Y LARIAT 41E (P23839464)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;NJW FROSTY 1Y (P23345979)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;WTK 75A CONTINENTAL 66F (P42009650)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WTK 119A CARLOTTA 66C (P42009648)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;GHC MISS CARLA 35J {DLF,HYF,IEF} (P42126403)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KLMRLE 452M REDEYE 127U (P21837130)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;GL 127U KAREN 25Y (P42126402)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KLONDIKE KAREN 895U (P23093993)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p style=\"text-align: center;\"&gt;&lt;br style=\"color: #000000; font-family: arial, sans-serif;\" /&gt;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;EPDS AS OF 4/15/16&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Carc&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+53&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+81&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+111&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+66&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.024&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.60&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.06&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.42&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.31&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','STAR KCL 5L CARLITA 28U {DLF,HYF,IEF} (P42872275)','description','inherit','closed','closed','','139-revision-v1','','','2017-03-03 16:12:08','2017-03-03 16:12:08','',139,'http://new.kclgenetics.com/139-revision-v1/',0,'revision','',0),(142,1,'2017-03-03 16:13:47','2017-03-03 16:13:47','<strong>owned with Wells Bekins</strong>','KCL 122L CARLITA 35J 115X (P43363687)','Dam of Country Boy','publish','closed','closed','','kcl-122l-carlita-35j-115x-p43363687','','','2018-04-22 03:31:12','2018-04-22 03:31:12','',0,'http://new.kclgenetics.com/?p=142',0,'post','',0),(584,1,'2018-04-22 03:31:12','2018-04-22 03:31:12','<strong>owned with Wells Bekins</strong>','KCL 122L CARLITA 35J 115X (P43363687)','Dam of Country Boy','inherit','closed','closed','','142-revision-v1','','','2018-04-22 03:31:12','2018-04-22 03:31:12','',142,'http://kclgenetics.com/142-revision-v1/',0,'revision','',0),(531,1,'2018-04-21 22:54:39','2018-04-21 22:54:39','<strong>owned with Wells Bekins</strong>\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 361px; width: 691px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL ACME 10A {SOD} (P23631758)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">REMITALL EMBRACER 8E {SOD,HYF} (P23878988)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">PLAIN LAKE BELLE 20X 117P 5B (P42362361)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire: REMITALL ONLINE 122L {CHB,SOD,DLF,HYF,IEF} (P42254372)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">MM RSM STOCKMASTER 512 {SOD,DLF,HYF,IEF} (P23839472)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">REMITALL CATALINA 24H (P42207113)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL CATALINA 139C (P42207112)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">WTK 75A CONTINENTAL 66F (P42009650)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WTK 119A CARLOTTA 66C (P42009648)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam: GHC MISS CARLA 35J {DLF,HYF,IEF} (P42126403)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KLMRLE 452M REDEYE 127U (P21837130)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GL 127U KAREN 25Y (P42126402)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KLONDIKE KAREN 895U (P23093993)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">EPDS AS OF 4/15/16</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Carc\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+4.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+89</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+4.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+117</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+67</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.002</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.34</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.05</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 25</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;','KCL 122L CARLITA 35J 115X (P43363687)','description','inherit','closed','closed','','142-revision-v1','','','2018-04-21 22:54:39','2018-04-21 22:54:39','',142,'http://kclgenetics.com/142-revision-v1/',0,'revision','',0),(143,1,'2017-03-03 16:12:56','2017-03-03 16:12:56','','KCL 122L CARLITA 35J 115X','','inherit','closed','closed','','kcl-122l-carlita-35j-115x','','','2017-03-03 16:12:56','2017-03-03 16:12:56','',142,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-122L-CARLITA-35J-115X.jpg',0,'attachment','image/jpeg',0),(267,1,'2017-03-06 21:15:20','2017-03-06 21:15:20','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>owned with Wells Bekins</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 361px; width: 691px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL ACME 10A {SOD} (P23631758)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">REMITALL EMBRACER 8E {SOD,HYF} (P23878988)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">PLAIN LAKE BELLE 20X 117P 5B (P42362361)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire: REMITALL ONLINE 122L {CHB,SOD,DLF,HYF,IEF} (P42254372)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">MM RSM STOCKMASTER 512 {SOD,DLF,HYF,IEF} (P23839472)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">REMITALL CATALINA 24H (P42207113)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL CATALINA 139C (P42207112)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">WTK 75A CONTINENTAL 66F (P42009650)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">WTK 119A CARLOTTA 66C (P42009648)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam: GHC MISS CARLA 35J {DLF,HYF,IEF} (P42126403)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KLMRLE 452M REDEYE 127U (P21837130)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GL 127U KAREN 25Y (P42126402)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KLONDIKE KAREN 895U (P23093993)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: center;\"><img style=\"display: block; margin-left: auto; margin-right: auto; border: 1px solid #000000;\" src=\"/media/rokgallery/b/ba8853d5-36ef-461a-eb18-2bdaa04d95ed/630326b5-2a87-413d-ae86-1bce8dbae160.jpg\" alt=\"\" width=\"300\" height=\"180\" />Daughter of 115X</p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">EPDS AS OF 4/15/16</th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Carc<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+4.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+89</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+4.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+117</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+67</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.002</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.34</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.05</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 25</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 122L CARLITA 35J 115X (P43363687)','description','inherit','closed','closed','','142-revision-v1','','','2017-03-06 21:15:20','2017-03-06 21:15:20','',142,'http://new.kclgenetics.com/142-revision-v1/',0,'revision','',0),(144,1,'2017-03-03 16:13:47','2017-03-03 16:13:47','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>owned with Wells Bekins</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 361px; width: 691px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL ACME 10A {SOD} (P23631758)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;REMITALL EMBRACER 8E {SOD,HYF} (P23878988)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;PLAIN LAKE BELLE 20X 117P 5B (P42362361)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;REMITALL ONLINE 122L {CHB,SOD,DLF,HYF,IEF} (P42254372)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;MM RSM STOCKMASTER 512 {SOD,DLF,HYF,IEF} (P23839472)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;REMITALL CATALINA 24H (P42207113)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL CATALINA 139C (P42207112)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;WTK 75A CONTINENTAL 66F (P42009650)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;WTK 119A CARLOTTA 66C (P42009648)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;GHC MISS CARLA 35J {DLF,HYF,IEF} (P42126403)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KLMRLE 452M REDEYE 127U (P21837130)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;GL 127U KAREN 25Y (P42126402)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KLONDIKE KAREN 895U (P23093993)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p style=\"text-align: center;\"&gt;&lt;img style=\"display: block; margin-left: auto; margin-right: auto; border: 1px solid #000000;\" src=\"/media/rokgallery/b/ba8853d5-36ef-461a-eb18-2bdaa04d95ed/630326b5-2a87-413d-ae86-1bce8dbae160.jpg\" alt=\"\" width=\"300\" height=\"180\" /&gt;Daughter of 115X&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;EPDS AS OF 4/15/16&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Carc&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+53&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+89&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+117&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.11&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+67&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.002&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.34&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.05&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.31&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.31&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 122L CARLITA 35J 115X (P43363687)','description','inherit','closed','closed','','142-revision-v1','','','2017-03-03 16:13:47','2017-03-03 16:13:47','',142,'http://new.kclgenetics.com/142-revision-v1/',0,'revision','',0),(145,1,'2017-03-03 16:15:25','2017-03-03 16:15:25','Owned w/ Topp Herefords','GERBER 8020 ROSY LANE 308N {DLF,HYF,IEF} (42421532)','A Legend in the Breed','publish','closed','closed','','gerber-8020-rosy-lane-308n-dlfhyfief-42421532','','','2018-05-01 22:49:04','2018-05-01 22:49:04','',0,'http://new.kclgenetics.com/?p=145',0,'post','',0),(576,1,'2018-04-22 03:26:30','2018-04-22 03:26:30','','GERBER 8020 ROSY LANE 308N {DLF,HYF,IEF} (42421532)','description','inherit','closed','closed','','145-revision-v1','','','2018-04-22 03:26:30','2018-04-22 03:26:30','',145,'http://kclgenetics.com/145-revision-v1/',0,'revision','',0),(526,1,'2018-04-21 22:38:37','2018-04-21 22:38:37','<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 397px; width: 823px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">C1 DOMINO 8015 (15018936)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">SR MARK I J215 {SOD} (16367794)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">SR MISS B MARK E549 (15784458)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire: OXH MARK DOMINO 8020 {SOD,DLF,IEF} (18950672)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CL 1 DOMINO 1046 {SOD} (18110145)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">OXH KATE 6047 1ET (18829235)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">OXH RITA 1028 (18195976)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">EXPLOSION {SOD,DLF,HYC,IEF} (17565668)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GK EXPLOSION 412T {SOD,DLF,HYF,IEF} (18702681)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GK QUEEN TEN 782R (18518510)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam: GERBER 412T ROSY LANE 065K {DLF,HYF,IEF} (P42068066)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">BRAXTON GIANT 1 {SOD} (P21834167)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GERBER BG1 ROSY LANE 24E (P23844625)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GK TRACY 100C {DOD} (P23677002)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif; height: 174px; width: 957px;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">EPDS AS OF 4/15/16</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em; text-align: center;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Carc\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+2.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+68</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.058</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 22</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.37</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.60</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.35</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.44</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2014 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">78</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">45</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">61</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.08</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">23</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,FAT,REA,IMF,</center>','GERBER 8020 ROSY LANE 308N {DLF,HYF,IEF} (42421532)','description','inherit','closed','closed','','145-revision-v1','','','2018-04-21 22:38:37','2018-04-21 22:38:37','',145,'http://kclgenetics.com/145-revision-v1/',0,'revision','',0),(146,1,'2017-03-03 16:14:49','2017-03-03 16:14:49','','GERBER 8020 ROSY LANE 308N','','inherit','closed','closed','','gerber-8020-rosy-lane-308n','','','2017-03-03 16:14:49','2017-03-03 16:14:49','',145,'http://new.kclgenetics.com/wp-content/uploads/2017/03/GERBER-8020-ROSY-LANE-308N.jpg',0,'attachment','image/jpeg',0),(365,1,'2017-03-07 05:06:26','2017-03-07 05:06:26','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 397px; width: 823px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">C1 DOMINO 8015 (15018936)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">SR MARK I J215 {SOD} (16367794)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">SR MISS B MARK E549 (15784458)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire: OXH MARK DOMINO 8020 {SOD,DLF,IEF} (18950672)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CL 1 DOMINO 1046 {SOD} (18110145)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">OXH KATE 6047 1ET (18829235)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">OXH RITA 1028 (18195976)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">EXPLOSION {SOD,DLF,HYC,IEF} (17565668)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GK EXPLOSION 412T {SOD,DLF,HYF,IEF} (18702681)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GK QUEEN TEN 782R (18518510)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam: GERBER 412T ROSY LANE 065K {DLF,HYF,IEF} (P42068066)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">BRAXTON GIANT 1 {SOD} (P21834167)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GERBER BG1 ROSY LANE 24E (P23844625)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GK TRACY 100C {DOD} (P23677002)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif; height: 174px; width: 957px;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">EPDS AS OF 4/15/16</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em; text-align: center;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Carc\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+2.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+68</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.058</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 22</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.37</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.60</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.35</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.44</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2014 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">78</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">45</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">61</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.08</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">23</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,FAT,REA,IMF,</center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','GERBER 8020 ROSY LANE 308N {DLF,HYF,IEF} (42421532)','description','inherit','closed','closed','','145-revision-v1','','','2017-03-07 05:06:26','2017-03-07 05:06:26','',145,'http://new.kclgenetics.com/145-revision-v1/',0,'revision','',0),(266,1,'2017-03-06 21:14:55','2017-03-06 21:14:55','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 397px; width: 823px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">C1 DOMINO 8015 (15018936)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">SR MARK I J215 {SOD} (16367794)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">SR MISS B MARK E549 (15784458)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire: OXH MARK DOMINO 8020 {SOD,DLF,IEF} (18950672)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CL 1 DOMINO 1046 {SOD} (18110145)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">OXH KATE 6047 1ET (18829235)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">OXH RITA 1028 (18195976)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">EXPLOSION {SOD,DLF,HYC,IEF} (17565668)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GK EXPLOSION 412T {SOD,DLF,HYF,IEF} (18702681)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GK QUEEN TEN 782R (18518510)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam: GERBER 412T ROSY LANE 065K {DLF,HYF,IEF} (P42068066)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">BRAXTON GIANT 1 {SOD} (P21834167)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GERBER BG1 ROSY LANE 24E (P23844625)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GK TRACY 100C {DOD} (P23677002)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p><br style=\"color: #000000; font-family: arial, sans-serif;\" /></p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif; height: 174px; width: 957px;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">EPDS AS OF 4/15/16</th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em; text-align: center;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Carc<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+2.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+68</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.058</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 22</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.37</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.60</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.35</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.44</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2014 Born Calves<span> <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2323&3=5B5D26272127262E2F&5=5A5B255B5A2223\">Click for Percentiles</a></span></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">78</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">45</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">61</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.08</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">23</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,FAT,REA,IMF,</center>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','GERBER 8020 ROSY LANE 308N {DLF,HYF,IEF} (42421532)','description','inherit','closed','closed','','145-revision-v1','','','2017-03-06 21:14:55','2017-03-06 21:14:55','',145,'http://new.kclgenetics.com/145-revision-v1/',0,'revision','',0),(147,1,'2017-03-03 16:15:25','2017-03-03 16:15:25','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 397px; width: 823px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;C1 DOMINO 8015 (15018936)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;SR MARK I J215 {SOD} (16367794)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;SR MISS B MARK E549 (15784458)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;OXH MARK DOMINO 8020 {SOD,DLF,IEF} (18950672)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CL 1 DOMINO 1046 {SOD} (18110145)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;OXH KATE 6047 1ET (18829235)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;OXH RITA 1028 (18195976)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;EXPLOSION {SOD,DLF,HYC,IEF} (17565668)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;GK EXPLOSION 412T {SOD,DLF,HYF,IEF} (18702681)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GK QUEEN TEN 782R (18518510)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;GERBER 412T ROSY LANE 065K {DLF,HYF,IEF} (P42068066)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;BRAXTON GIANT 1 {SOD} (P21834167)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;GERBER BG1 ROSY LANE 24E (P23844625)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GK TRACY 100C {DOD} (P23677002)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&lt;br style=\"color: #000000; font-family: arial, sans-serif;\" /&gt;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif; height: 174px; width: 957px;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;EPDS AS OF 4/15/16&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em; text-align: center;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Carc&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+2.4&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+49&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+46&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+68&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.46&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.7&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.058&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.37&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.60&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.53&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.54&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.46&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.35&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.49&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.49&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.46&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.44&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2014 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;78&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;45&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;61&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.31&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.08&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;center style=\"color: #000000; font-family: arial, sans-serif;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Traits Observed:&amp;nbsp;&lt;/strong&gt;BWT,WWT,YWT,FAT,REA,IMF,&lt;/center&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','GERBER 8020 ROSY LANE 308N {DLF,HYF,IEF} (42421532)','description','inherit','closed','closed','','145-revision-v1','','','2017-03-03 16:15:25','2017-03-03 16:15:25','',145,'http://new.kclgenetics.com/145-revision-v1/',0,'revision','',0),(148,1,'2017-03-03 16:17:39','2017-03-03 16:17:39','<strong>Owned w/ The Bennie Gasper Sr. Family</strong>','KCL 11X ROSIE LANE 308N 4A (P43368210)','','publish','closed','closed','','kcl-11x-rosie-lane-308n-4a-p43368210','','','2018-05-01 23:02:16','2018-05-01 23:02:16','',0,'http://new.kclgenetics.com/?p=148',0,'post','',0),(577,1,'2018-04-22 03:27:39','2018-04-22 03:27:39','<strong>Owned w/ The Gasper Family</strong>','KCL 11X ROSIE LANE 308N 4A (P43368210)','','inherit','closed','closed','','148-revision-v1','','','2018-04-22 03:27:39','2018-04-22 03:27:39','',148,'http://kclgenetics.com/148-revision-v1/',0,'revision','',0),(525,1,'2018-04-21 22:35:54','2018-04-21 22:35:54','<strong>Owned w/ The Gasper Family</strong>\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 584px; width: 664px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">TH 122 71I VICTOR 719T {SOD,CHB,DLF,HYF,IEF} (P42800895)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire: TH 71U 719T MR HEREFORD 11X {DLF,HYF,IEF} (P43101172)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW FHF 9710 TANK 45P {CHB,SOD,DLF,HYF,IEF} (P42491957)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">TH 7N 45P RITA 71U {DLF,HYF,IEF} (P42898638)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">TH 814H 3L RITA 7N {DOD,DLF,HYF,IEF} (P42387430)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">SR MARK I J215 {SOD} (16367794)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">OXH MARK DOMINO 8020 {SOD,DLF,IEF} (18950672)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">OXH KATE 6047 1ET (18829235)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam: GERBER 8020 ROSY LANE 308N {DLF,HYF,IEF} (42421532)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GK EXPLOSION 412T {SOD,DLF,HYF,IEF} (18702681)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GERBER 412T ROSY LANE 065K {DLF,HYF,IEF} (P42068066)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td style=\"text-align: left;\" align=\"left\" valign=\"middle\">GERBER BG1 ROSY LANE 24E (P23844625)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif; height: 248px;\" border=\"1\" width=\"850\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">EPDS AS OF 4/15/16</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Carc\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+64</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+56</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+78</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+52</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.039</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">0.00</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 23</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;','KCL 11X ROSIE LANE 308N 4A (P43368210)','description','inherit','closed','closed','','148-revision-v1','','','2018-04-21 22:35:54','2018-04-21 22:35:54','',148,'http://kclgenetics.com/148-revision-v1/',0,'revision','',0),(149,1,'2017-03-03 16:16:19','2017-03-03 16:16:19','','KCL 11X ROSIE LANE 308N 4A','','inherit','closed','closed','','kcl-11x-rosie-lane-308n-4a','','','2017-03-03 16:16:19','2017-03-03 16:16:19','',148,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-11X-ROSIE-LANE-308N-4A.jpg',0,'attachment','image/jpeg',0),(366,1,'2017-03-07 05:07:44','2017-03-07 05:07:44','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned w/ The Gasper Family</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 361px; width: 792px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">TH 122 71I VICTOR 719T {SOD,CHB,DLF,HYF,IEF} (P42800895)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire: TH 71U 719T MR HEREFORD 11X {DLF,HYF,IEF} (P43101172)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW FHF 9710 TANK 45P {CHB,SOD,DLF,HYF,IEF} (P42491957)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">TH 7N 45P RITA 71U {DLF,HYF,IEF} (P42898638)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">TH 814H 3L RITA 7N {DOD,DLF,HYF,IEF} (P42387430)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">SR MARK I J215 {SOD} (16367794)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">OXH MARK DOMINO 8020 {SOD,DLF,IEF} (18950672)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">OXH KATE 6047 1ET (18829235)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam: GERBER 8020 ROSY LANE 308N {DLF,HYF,IEF} (42421532)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GK EXPLOSION 412T {SOD,DLF,HYF,IEF} (18702681)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GERBER 412T ROSY LANE 065K {DLF,HYF,IEF} (P42068066)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GERBER BG1 ROSY LANE 24E (P23844625)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">EPDS AS OF 4/15/16</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Carc\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+64</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+56</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+78</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+52</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.039</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">0.00</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 23</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 11X ROSIE LANE 308N 4A (P43368210)','description','inherit','closed','closed','','148-revision-v1','','','2017-03-07 05:07:44','2017-03-07 05:07:44','',148,'http://new.kclgenetics.com/148-revision-v1/',0,'revision','',0),(265,1,'2017-03-06 21:14:28','2017-03-06 21:14:28','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned w/ The Gasper Family</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 361px; width: 792px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">TH 122 71I VICTOR 719T {SOD,CHB,DLF,HYF,IEF} (P42800895)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire: TH 71U 719T MR HEREFORD 11X {DLF,HYF,IEF} (P43101172)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW FHF 9710 TANK 45P {CHB,SOD,DLF,HYF,IEF} (P42491957)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">TH 7N 45P RITA 71U {DLF,HYF,IEF} (P42898638)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">TH 814H 3L RITA 7N {DOD,DLF,HYF,IEF} (P42387430)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">SR MARK I J215 {SOD} (16367794)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">OXH MARK DOMINO 8020 {SOD,DLF,IEF} (18950672)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">OXH KATE 6047 1ET (18829235)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam: GERBER 8020 ROSY LANE 308N {DLF,HYF,IEF} (42421532)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GK EXPLOSION 412T {SOD,DLF,HYF,IEF} (18702681)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GERBER 412T ROSY LANE 065K {DLF,HYF,IEF} (P42068066)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GERBER BG1 ROSY LANE 24E (P23844625)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p><br style=\"color: #000000; font-family: arial, sans-serif;\" /></p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">EPDS AS OF 4/15/16</th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Carc<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+64</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+56</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+78</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+52</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.039</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">0.00</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 23</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 11X ROSIE LANE 308N 4A (P43368210)','description','inherit','closed','closed','','148-revision-v1','','','2017-03-06 21:14:28','2017-03-06 21:14:28','',148,'http://new.kclgenetics.com/148-revision-v1/',0,'revision','',0),(150,1,'2017-03-03 16:17:39','2017-03-03 16:17:39','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned w/ The Gasper Family</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 361px; width: 792px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;TH 122 71I VICTOR 719T {SOD,CHB,DLF,HYF,IEF} (P42800895)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;TH 71U 719T MR HEREFORD 11X {DLF,HYF,IEF} (P43101172)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;NJW FHF 9710 TANK 45P {CHB,SOD,DLF,HYF,IEF} (P42491957)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;TH 7N 45P RITA 71U {DLF,HYF,IEF} (P42898638)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;TH 814H 3L RITA 7N {DOD,DLF,HYF,IEF} (P42387430)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;SR MARK I J215 {SOD} (16367794)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;OXH MARK DOMINO 8020 {SOD,DLF,IEF} (18950672)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;OXH KATE 6047 1ET (18829235)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 12pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;GERBER 8020 ROSY LANE 308N {DLF,HYF,IEF} (42421532)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GK EXPLOSION 412T {SOD,DLF,HYF,IEF} (18702681)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;GERBER 412T ROSY LANE 065K {DLF,HYF,IEF} (P42068066)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;GERBER BG1 ROSY LANE 24E (P23844625)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&lt;br style=\"color: #000000; font-family: arial, sans-serif;\" /&gt;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;EPDS AS OF 4/15/16&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Carc&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+46&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+64&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+56&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+78&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+52&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.039&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;0.00&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 11&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 11X ROSIE LANE 308N 4A (P43368210)','description','inherit','closed','closed','','148-revision-v1','','','2017-03-03 16:17:39','2017-03-03 16:17:39','',148,'http://new.kclgenetics.com/148-revision-v1/',0,'revision','',0),(151,1,'2017-03-03 16:19:08','2017-03-03 16:19:08','','ZF P606 MISS VICKY Z488 {DLF,HYF,IEF} (P42606181)','description','publish','closed','closed','','zf-p606-miss-vicky-z488-dlfhyfief-p42606181','','','2018-04-21 22:32:57','2018-04-21 22:32:57','',0,'http://new.kclgenetics.com/?p=151',0,'post','',0),(524,1,'2018-04-21 22:32:57','2018-04-21 22:32:57','','ZF P606 MISS VICKY Z488 {DLF,HYF,IEF} (P42606181)','description','inherit','closed','closed','','151-revision-v1','','','2018-04-21 22:32:57','2018-04-21 22:32:57','',151,'http://kclgenetics.com/151-revision-v1/',0,'revision','',0),(527,1,'2018-04-21 22:39:25','2018-04-21 22:39:25','<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 592px; width: 616px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">C1 DOMINO 8015 (15018936)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">SR MARK I J215 {SOD} (16367794)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">SR MISS B MARK E549 (15784458)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire: OXH MARK DOMINO 8020 {SOD,DLF,IEF} (18950672)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CL 1 DOMINO 1046 {SOD} (18110145)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">OXH KATE 6047 1ET (18829235)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">OXH RITA 1028 (18195976)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">EXPLOSION {SOD,DLF,HYC,IEF} (17565668)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GK EXPLOSION 412T {SOD,DLF,HYF,IEF} (18702681)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GK QUEEN TEN 782R (18518510)</td>\r\n</tr>\r\n<tr>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam: GERBER 412T ROSY LANE 065K {DLF,HYF,IEF} (P42068066)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">BRAXTON GIANT 1 {SOD} (P21834167)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GERBER BG1 ROSY LANE 24E (P23844625)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">GK TRACY 100C {DOD} (P23677002)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif; height: 174px; width: 957px;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">EPDS AS OF 4/15/16</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em; text-align: center;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Carc\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+2.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+68</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.058</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 22</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.37</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.60</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.35</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.44</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2014 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">78</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">45</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">61</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.08</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">23</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,FAT,REA,IMF,</center>','GERBER 8020 ROSY LANE 308N {DLF,HYF,IEF} (42421532)','description','inherit','closed','closed','','145-revision-v1','','','2018-04-21 22:39:25','2018-04-21 22:39:25','',145,'http://kclgenetics.com/145-revision-v1/',0,'revision','',0),(152,1,'2017-03-03 16:18:20','2017-03-03 16:18:20','','ZF P606 MISS VICKY Z488','','inherit','closed','closed','','zf-p606-miss-vicky-z488','','','2017-03-03 16:18:20','2017-03-03 16:18:20','',151,'http://new.kclgenetics.com/wp-content/uploads/2017/03/ZF-P606-MISS-VICKY-Z488.jpg',0,'attachment','image/jpeg',0),(263,1,'2017-03-06 21:13:56','2017-03-06 21:13:56','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned w/ Whipering Pine Farms, Kimball, MN</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 684px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B5925275820262E\">REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)</a></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B5925262026232D\">REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B5925262026252E\">RMTLL SALLYS LASS 120X (P23649228)</a></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B585B585921242F\">PW VICTOR BOOMER P606 {SOD,CHB,DLF,HYF,IEF} (P24020737)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B5B222122232025\">RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)</a></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B59582758222121\">PW VICTORIA 964 8114 {DLF,HYF,IEF} (P23331665)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B5B5B2627242722\">HVF VICTORIA 1121 05 (P21042404)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5C255A20232622\">ZF P606 MISS VICKY Z488 {DLF,HYF,IEF} (P42606181)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B5B232723272224\">KILMORLIE PROSPECTER ET 96X (P21836152)</a></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B59255822252E2F\">SCF S60 PROSTPCT 215 (P23627397)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B5A232125272F2F\">FLF FORCETTE S60 (P22894187)</a></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B59242426222F24\">FHF D10 GLD PROSTPCT (P23763682)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B595A25252F2E21\">WML STICKLER 6252 (P23154995)</a></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B59275926582126\">MISS STICKLES GLD (P23413060)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2420&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5B5B5A255823202022\">RS MISS GILEAD 37B (P22626874)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p><br style=\"color: #000000; font-family: arial, sans-serif; font-size: medium; line-height: normal;\" /></p>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"17\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2014 EPDS</th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=242D&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5C255A20232622\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-2.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+4.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+38</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-2.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+55</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.059</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.44</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 16</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.39</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.42</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"17\" bgcolor=\"#99CC99\"> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ZF P606 MISS VICKY Z488 {DLF,HYF,IEF} (P42606181)','description','inherit','closed','closed','','151-revision-v1','','','2017-03-06 21:13:56','2017-03-06 21:13:56','',151,'http://new.kclgenetics.com/151-revision-v1/',0,'revision','',0),(153,1,'2017-03-03 16:19:08','2017-03-03 16:19:08','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned w/ Whipering Pine Farms, Kimball, MN</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 684px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5925275820262E\"&gt;REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5925262026232D\"&gt;REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5925262026252E\"&gt;RMTLL SALLYS LASS 120X (P23649228)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B585B585921242F\"&gt;PW VICTOR BOOMER P606 {SOD,CHB,DLF,HYF,IEF} (P24020737)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B222122232025\"&gt;RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59582758222121\"&gt;PW VICTORIA 964 8114 {DLF,HYF,IEF} (P23331665)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B5B2627242722\"&gt;HVF VICTORIA 1121 05 (P21042404)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C255A20232622\"&gt;ZF P606 MISS VICKY Z488 {DLF,HYF,IEF} (P42606181)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B232723272224\"&gt;KILMORLIE PROSPECTER ET 96X (P21836152)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59255822252E2F\"&gt;SCF S60 PROSTPCT 215 (P23627397)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5A232125272F2F\"&gt;FLF FORCETTE S60 (P22894187)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59242426222F24\"&gt;FHF D10 GLD PROSTPCT (P23763682)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B595A25252F2E21\"&gt;WML STICKLER 6252 (P23154995)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59275926582126\"&gt;MISS STICKLES GLD (P23413060)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5A255823202022\"&gt;RS MISS GILEAD 37B (P22626874)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&lt;br style=\"color: #000000; font-family: arial, sans-serif; font-size: medium; line-height: normal;\" /&gt;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"17\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2014 EPDS&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C255A20232622\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-2.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+38&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+54&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-2.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+55&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.059&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.44&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.39&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.42&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"17\" bgcolor=\"#99CC99\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','ZF P606 MISS VICKY Z488 {DLF,HYF,IEF} (P42606181)','description','inherit','closed','closed','','151-revision-v1','','','2017-03-03 16:19:08','2017-03-03 16:19:08','',151,'http://new.kclgenetics.com/151-revision-v1/',0,'revision','',0),(154,1,'2017-03-03 16:19:43','2017-03-03 16:19:43','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"100\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2017-03-03 16:19:43','2017-03-03 16:19:43','',60,'http://new.kclgenetics.com/60-revision-v1/',0,'revision','',0),(155,1,'2017-03-03 16:20:17','2017-03-03 16:20:17','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<table class=\"AnimalDetails\" border=\"0\" cellspacing=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Regn. No.:</strong></td>\r\n<td>42460091</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Tattoo:</strong></td>\r\n<td>KCL50N</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Birth Date:</strong></td>\r\n<td>09/25/2003</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sire:</strong></td>\r\n<td>REMITALL ONLINE 122L {CHB,SOD,DLF,HYF,IEF} (P42254372)</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Dam:</strong></td>\r\n<td>KCL 8006 BONISSA 65K (P42118538)</td>\r\n</tr>\r\n<tr>\r\n<td><strong> </strong></td>\r\n<td><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3E3F292A&amp;2=2420&amp;3=56&amp;5=2B3C2B3C3A&amp;6=5A5D5C272522212624&amp;9=5D535C\">SEE PEDIGREE AND EPD INFO</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL65K MS WORLDWIDE 122L 50N ET (P42460091)','description','inherit','closed','closed','','127-revision-v1','','','2017-03-03 16:20:17','2017-03-03 16:20:17','',127,'http://new.kclgenetics.com/127-revision-v1/',0,'revision','',0),(156,1,'2017-03-03 16:21:41','2017-03-03 16:21:41','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"100\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" include_categories=\"3\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2017-03-03 16:21:41','2017-03-03 16:21:41','',60,'http://new.kclgenetics.com/60-revision-v1/',0,'revision','',0),(157,1,'2017-03-03 16:22:02','2017-03-03 16:22:02','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Bull Influence</h3>\r\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these important characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted in the most desolate of conditions. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally does not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\r\n\r\n[/et_pb_text][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"100\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" include_categories=\"4\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Currently used Bulls','','inherit','closed','closed','','62-revision-v1','','','2017-03-03 16:22:02','2017-03-03 16:22:02','',62,'http://new.kclgenetics.com/62-revision-v1/',0,'revision','',0),(158,1,'2017-03-03 16:23:56','2017-03-03 16:23:56','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned w/ Whispering Pine Farms, Kimbal MN &amp; The Professor Syndicate</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 385px; width: 683px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire: TH 71U 719T MR HEREFORD 11X {CHB,DLF,HYF,IEF} (P43101172)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW FHF 9710 TANK 45P {CHB,DLF,HYF,IEF} (P42491957)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">TH 7N 45P RITA 71U {DLF,HYF,IEF} (P42898638)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">TH 814H 3L RITA 7N {DOD,DLF,HYF,IEF} (P42387430)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">CS BOOMER 29F {SOD,CHB,DLF,HYF,IEF} (P23925982)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CS MISS 1ST FLAG 21A {DOD,DLF,IEF} (P23559479)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><span style=\"font-size: 10pt;\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></span></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam: KCL 29R MARY ANNE 23G 5R ET {DLF,IEF} (P42656151)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">REMITALL GINGER 23G {DLF,HYF,IEF} (P42217185)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">PLAIN LAKE BELLE 20X 117P 5B (P42362361)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS </th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=242D&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5B265824242E23\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+51</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+81</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+72</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.032</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.03</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 26</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves<span> <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2323&3=5B5D26272127262E2F&5=5A5B255B5A2223\">Click for Percentiles</a></span></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL WPF THE PROFESSOR 7110ET {DLF,HYF,IEF} (P43368207)','description','publish','closed','closed','','kcl-wpf-the-professor-7110et-dlfhyfief-p43368207','','','2017-03-06 21:13:18','2017-03-06 21:13:18','',0,'http://new.kclgenetics.com/?p=158',0,'post','',0),(159,1,'2017-03-03 16:23:14','2017-03-03 16:23:14','','KCL WPF THE PROFESSOR 7110ET','Professor','inherit','closed','closed','','kcl-wpf-the-professor-7110et','','','2018-05-02 01:17:40','2018-05-02 01:17:40','',158,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-WPF-THE-PROFESSOR-7110ET.jpg',0,'attachment','image/jpeg',0),(262,1,'2017-03-06 21:13:18','2017-03-06 21:13:18','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned w/ Whispering Pine Farms, Kimbal MN &amp; The Professor Syndicate</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 385px; width: 683px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire: TH 71U 719T MR HEREFORD 11X {CHB,DLF,HYF,IEF} (P43101172)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW FHF 9710 TANK 45P {CHB,DLF,HYF,IEF} (P42491957)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">TH 7N 45P RITA 71U {DLF,HYF,IEF} (P42898638)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">TH 814H 3L RITA 7N {DOD,DLF,HYF,IEF} (P42387430)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">CS BOOMER 29F {SOD,CHB,DLF,HYF,IEF} (P23925982)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CS MISS 1ST FLAG 21A {DOD,DLF,IEF} (P23559479)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td align=\"right\"><span style=\"font-size: 10pt;\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></span></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam: KCL 29R MARY ANNE 23G 5R ET {DLF,IEF} (P42656151)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">REMITALL GINGER 23G {DLF,HYF,IEF} (P42217185)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"> </td>\r\n<td> </td>\r\n<td> </td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">PLAIN LAKE BELLE 20X 117P 5B (P42362361)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr><th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS </th></tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=242D&3=5B5D26272127262E2F&5=5A5B255B5A2223&6=5A5D5B265824242E23\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Direct<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling<br />Wt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk<br />&<br />Growth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.<br />Ease<br />Mat.<br />(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature<br />Cow<br />Weight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder<br />Suspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat<br />Size</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal<br />Circ.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib<br />Eye<br />Area</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII<br />Index<br />($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB<br />Index<br />($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+51</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+81</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+72</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.5</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.032</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.03</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 26</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves<span> <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&2=2323&3=5B5D26272127262E2F&5=5A5B255B5A2223\">Click for Percentiles</a></span></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL WPF THE PROFESSOR 7110ET {DLF,HYF,IEF} (P43368207)','description','inherit','closed','closed','','158-revision-v1','','','2017-03-06 21:13:18','2017-03-06 21:13:18','',158,'http://new.kclgenetics.com/158-revision-v1/',0,'revision','',0),(160,1,'2017-03-03 16:23:56','2017-03-03 16:23:56','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned w/ Whispering Pine Farms, Kimbal MN &amp; The Professor Syndicate</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 385px; width: 683px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;TH 71U 719T MR HEREFORD 11X {CHB,DLF,HYF,IEF} (P43101172)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;NJW FHF 9710 TANK 45P {CHB,DLF,HYF,IEF} (P42491957)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;TH 7N 45P RITA 71U {DLF,HYF,IEF} (P42898638)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;TH 814H 3L RITA 7N {DOD,DLF,HYF,IEF} (P42387430)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;CS BOOMER 29F {SOD,CHB,DLF,HYF,IEF} (P23925982)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CS MISS 1ST FLAG 21A {DOD,DLF,IEF} (P23559479)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;KCL 29R MARY ANNE 23G 5R ET {DLF,IEF} (P42656151)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;REMITALL GINGER 23G {DLF,HYF,IEF} (P42217185)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;PLAIN LAKE BELLE 20X 117P 5B (P42362361)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B265824242E23\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+51&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+81&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+54&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+72&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.032&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.03&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 11&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','KCL WPF THE PROFESSOR 7110ET {DLF,HYF,IEF} (P43368207)','description','inherit','closed','closed','','158-revision-v1','','','2017-03-03 16:23:56','2017-03-03 16:23:56','',158,'http://new.kclgenetics.com/158-revision-v1/',0,'revision','',0),(161,1,'2017-03-03 16:26:00','2017-03-03 16:26:00','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; margin-left: auto; margin-right: auto;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\"><span style=\"background-color: #ffffff;\"><span style=\"background-color: #ffffff;\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A26242526\"><img style=\"color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; line-height: normal; text-align: -webkit-right;\" src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></a>RRH MR FELT 3008 {CHB,SOD,DLF,HYF,IEF} (P23703420)</span><span style=\"background-color: #ffffff;\"> </span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">HUTH PROSPECTOR K085 {SOD,CHB,DLF,HYF,IEF} (P42122873)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">HUTH 34A PAULA 68F {DOD} (P23944117)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire: FTF PROSPECTOR 145Y {DLF,HYF,IEF} (P43182570)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">FTF BOMBARDIER 309N {SOD,CHB} (P42371319)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">FTF CHICK A BOOM 7227T {DLF,HYF,IEF} (P42808579)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">FTF LEANNA 480P (P42479524)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">RHF 964 VICTRA 4057 (P22857143)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam: TH 122 71I DOMINETTE 512X ET {DLF,HYF,IEF} (P43122877)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR DOMINETTE 9112 (P42008924)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B25222620262D\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+4.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+62</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+101</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+57</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+99</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.027</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 32</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.34</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong><img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" /></center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TH 512X 145Y EL DORADO 49B {DLF,HYF,IEF} (P43465395)','description','publish','closed','closed','','th-512x-145y-el-dorado-49b-dlfhyfief-p43465395','','','2017-03-06 21:11:12','2017-03-06 21:11:12','',0,'http://new.kclgenetics.com/?p=161',0,'post','',0),(162,1,'2017-03-03 16:25:16','2017-03-03 16:25:16','','TH 512X 145Y EL DORADO 49B','','inherit','closed','closed','','th-512x-145y-el-dorado-49b','','','2017-03-03 16:25:16','2017-03-03 16:25:16','',161,'http://new.kclgenetics.com/wp-content/uploads/2017/03/TH-512X-145Y-EL-DORADO-49B.jpg',0,'attachment','image/jpeg',0),(261,1,'2017-03-06 21:11:12','2017-03-06 21:11:12','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; margin-left: auto; margin-right: auto;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\"><span style=\"background-color: #ffffff;\"><span style=\"background-color: #ffffff;\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A26242526\"><img style=\"color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; line-height: normal; text-align: -webkit-right;\" src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></a>RRH MR FELT 3008 {CHB,SOD,DLF,HYF,IEF} (P23703420)</span><span style=\"background-color: #ffffff;\"> </span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">HUTH PROSPECTOR K085 {SOD,CHB,DLF,HYF,IEF} (P42122873)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">HUTH 34A PAULA 68F {DOD} (P23944117)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Sire: FTF PROSPECTOR 145Y {DLF,HYF,IEF} (P43182570)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">FTF BOMBARDIER 309N {SOD,CHB} (P42371319)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">FTF CHICK A BOOM 7227T {DLF,HYF,IEF} (P42808579)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">FTF LEANNA 480P (P42479524)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">RHF 964 VICTRA 4057 (P22857143)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 10pt;\"><strong>Dam: TH 122 71I DOMINETTE 512X ET {DLF,HYF,IEF} (P43122877)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" align=\"left\" valign=\"middle\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR DOMINETTE 9112 (P42008924)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B25222620262D\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+4.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+62</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+101</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+57</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+99</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.027</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 32</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.21</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.34</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong><img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" /></center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TH 512X 145Y EL DORADO 49B {DLF,HYF,IEF} (P43465395)','description','inherit','closed','closed','','161-revision-v1','','','2017-03-06 21:11:12','2017-03-06 21:11:12','',161,'http://new.kclgenetics.com/161-revision-v1/',0,'revision','',0),(163,1,'2017-03-03 16:26:00','2017-03-03 16:26:00','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; margin-left: auto; margin-right: auto;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"background-color: #ffffff;\"&gt;&lt;span style=\"background-color: #ffffff;\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59245A26242526\"&gt;&lt;img style=\"color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; line-height: normal; text-align: -webkit-right;\" src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/a&gt;RRH MR FELT 3008 {CHB,SOD,DLF,HYF,IEF} (P23703420)&lt;/span&gt;&lt;span style=\"background-color: #ffffff;\"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;HUTH PROSPECTOR K085 {SOD,CHB,DLF,HYF,IEF} (P42122873)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;HUTH 34A PAULA 68F {DOD} (P23944117)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;FTF PROSPECTOR 145Y {DLF,HYF,IEF} (P43182570)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;FTF BOMBARDIER 309N {SOD,CHB} (P42371319)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;FTF CHICK A BOOM 7227T {DLF,HYF,IEF} (P42808579)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;FTF LEANNA 480P (P42479524)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;RHF 964 VICTRA 4057 (P22857143)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" align=\"left\" valign=\"middle\"&gt;&lt;span style=\"font-size: 10pt;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;TH 122 71I DOMINETTE 512X ET {DLF,HYF,IEF} (P43122877)&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" align=\"left\" valign=\"middle\"&gt;KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;KBCR DOMINETTE 9112 (P42008924)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&lt;br style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\" /&gt;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B25222620262D\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+62&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+101&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+57&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.7&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+99&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.027&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.21&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.34&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Traits Observed:&amp;nbsp;&lt;/strong&gt;&lt;img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" /&gt;&lt;/center&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','TH 512X 145Y EL DORADO 49B {DLF,HYF,IEF} (P43465395)','description','inherit','closed','closed','','161-revision-v1','','','2017-03-03 16:26:00','2017-03-03 16:26:00','',161,'http://new.kclgenetics.com/161-revision-v1/',0,'revision','',0),(164,1,'2017-03-03 16:27:42','2017-03-03 16:27:42','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 757px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C275A25262524\">L1 DOMINO 03396 {CHB,DLF,IEF} (42402161)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C25232225242D\">CL 1 DOMINO 637S 1ET {CHB} (42692477)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2558582122\">CL1 DOMINETTE 118L (42150309)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C22222221222F\">CL 1 DOMINO 955W {CHB,DLF,HYF,IEF} (42982422)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582222252723\">CL 1 DOMINO 3162N {CHB,DLF,IEF} (42385289)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C262325582722\">CL 1 DOMINETTE 5152R {DLF,HYF,IEF} (42571159)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582222252E2F\">CL 1 DOMINETTE 392N (42385376)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B582422262623\">KCL 955W DOMINO 92S 106Y (43259348)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C592524202523\">REMITALL ONLINE 122L {CHB,SOD,DLF,HYF,IEF} (P42254372)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C26592124252D\">BR MOLER ET {CHB,DLF,IEF} (P42516026)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B242426232D\">DM L1 DOMINETTE 820 (41065249)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C242323272626\">KCL 4002 BONISSA 65K 92S ET {DLF,HYF,IEF} (P42805874)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B262427222E\">H 8E EMBRACER 8006 {CHB} (P41045158)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A59212F2725\">KCL 8006 BONISSA 65K (P42118538)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59232624232E25\">BIG T 75A BONISSA E45 (P23845591)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B582422262623\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+5.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+63</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+105</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+59</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-1.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+118</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.036</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.73</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.02</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 33</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.34</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] <strong>Owned w/ Lapham Cattle Co., Houston, TX</strong> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 955W DOMINO 92S 106Y (43259348)','description','publish','closed','closed','','kcl-955w-domino-92s-106y-43259348','','','2017-03-06 21:10:41','2017-03-06 21:10:41','',0,'http://new.kclgenetics.com/?p=164',0,'post','',0),(165,1,'2017-03-03 16:26:46','2017-03-03 16:26:46','','KCL 955W DOMINO 92S 106Y','','inherit','closed','closed','','kcl-955w-domino-92s-106y','','','2017-03-03 16:26:46','2017-03-03 16:26:46','',164,'http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-955W-DOMINO-92S-106Y.jpg',0,'attachment','image/jpeg',0),(260,1,'2017-03-06 21:10:41','2017-03-06 21:10:41','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 757px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C275A25262524\">L1 DOMINO 03396 {CHB,DLF,IEF} (42402161)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C25232225242D\">CL 1 DOMINO 637S 1ET {CHB} (42692477)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2558582122\">CL1 DOMINETTE 118L (42150309)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C22222221222F\">CL 1 DOMINO 955W {CHB,DLF,HYF,IEF} (42982422)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582222252723\">CL 1 DOMINO 3162N {CHB,DLF,IEF} (42385289)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C262325582722\">CL 1 DOMINETTE 5152R {DLF,HYF,IEF} (42571159)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582222252E2F\">CL 1 DOMINETTE 392N (42385376)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B582422262623\">KCL 955W DOMINO 92S 106Y (43259348)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C592524202523\">REMITALL ONLINE 122L {CHB,SOD,DLF,HYF,IEF} (P42254372)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C26592124252D\">BR MOLER ET {CHB,DLF,IEF} (P42516026)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B242426232D\">DM L1 DOMINETTE 820 (41065249)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C242323272626\">KCL 4002 BONISSA 65K 92S ET {DLF,HYF,IEF} (P42805874)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B262427222E\">H 8E EMBRACER 8006 {CHB} (P41045158)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A59212F2725\">KCL 8006 BONISSA 65K (P42118538)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59232624232E25\">BIG T 75A BONISSA E45 (P23845591)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B582422262623\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+5.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+63</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+105</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+59</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-1.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+118</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.036</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.73</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.02</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 33</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.34</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.20</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] <strong>Owned w/ Lapham Cattle Co., Houston, TX</strong> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 955W DOMINO 92S 106Y (43259348)','description','inherit','closed','closed','','164-revision-v1','','','2017-03-06 21:10:41','2017-03-06 21:10:41','',164,'http://new.kclgenetics.com/164-revision-v1/',0,'revision','',0);
INSERT INTO `wpjj_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (166,1,'2017-03-03 16:27:42','2017-03-03 16:27:42','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 757px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C275A25262524\"&gt;L1 DOMINO 03396 {CHB,DLF,IEF} (42402161)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C25232225242D\"&gt;CL 1 DOMINO 637S 1ET {CHB} (42692477)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A2558582122\"&gt;CL1 DOMINETTE 118L (42150309)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C22222221222F\"&gt;CL 1 DOMINO 955W {CHB,DLF,HYF,IEF} (42982422)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C582222252723\"&gt;CL 1 DOMINO 3162N {CHB,DLF,IEF} (42385289)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C262325582722\"&gt;CL 1 DOMINETTE 5152R {DLF,HYF,IEF} (42571159)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C582222252E2F\"&gt;CL 1 DOMINETTE 392N (42385376)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B582422262623\"&gt;KCL 955W DOMINO 92S 106Y (43259348)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C592524202523\"&gt;REMITALL ONLINE 122L {CHB,SOD,DLF,HYF,IEF} (P42254372)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C26592124252D\"&gt;BR MOLER ET {CHB,DLF,IEF} (P42516026)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5B242426232D\"&gt;DM L1 DOMINETTE 820 (41065249)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C242323272626\"&gt;KCL 4002 BONISSA 65K 92S ET {DLF,HYF,IEF} (P42805874)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5B262427222E\"&gt;H 8E EMBRACER 8006 {CHB} (P41045158)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A59212F2725\"&gt;KCL 8006 BONISSA 65K (P42118538)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59232624232E25\"&gt;BIG T 75A BONISSA E45 (P23845591)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B582422262623\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+5.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+63&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+105&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+59&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-1.7&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+118&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.036&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.73&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.02&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.34&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.11&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned w/ Lapham Cattle Co., Houston, TX</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','KCL 955W DOMINO 92S 106Y (43259348)','description','inherit','closed','closed','','164-revision-v1','','','2017-03-03 16:27:42','2017-03-03 16:27:42','',164,'http://new.kclgenetics.com/164-revision-v1/',0,'revision','',0),(167,1,'2017-03-03 16:28:51','2017-03-03 16:28:51','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 720px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A26242526\">RRH MR FELT 3008 {CHB,SOD,DLF,HYF,IEF} (P23703420)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582559222E22\">KCF BENNETT 3008 M326 {CHB,SOD,DLF,HYF,IEF} (P42361822)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5922272126222D\">KCF MISS 459 F284 (P23938259)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C262222272225\">SHF RIB EYE M326 R117 {CHB,SOD,DLF,HYF,IEF} (P42584003)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5822232E2D\">MSU MF HUDSON 19H {SOD,CHB,HYF} (P41027599)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C59262023202F\">HVH MISS HUDSON 83K 8M (P42247970)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B2422252223\">SUN VINDY MISS 83K (P42067572)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5B2120242F26\">NJW 98S R117 RIBEYE 88X ET {CHB,DLF,HYF,IEF} (43094146)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595C5B5A22252F20\">HH ADVANCE 767G 1ET {SOD,CHB,DLF,IEF} (40007386)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A592626202D\">CL 1 DOMINO 9126J 1ET {SOD,CHB,DLF,IEF} (41113279)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5C23275822232E22\">CL 1 DOMINETTE 490 {DOD} (19427594)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C252122212024\">NJW 9126J DEW DOMINO 98S {DOD,DLF,HYF,IEF} (P42693893)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2624232621\">RU 20X BOULDER 57G {CHB} (P42144940)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C585A5925252D\">NJW 57G 74G DEW 5M {DLF,HYF,IEF} (P42298333)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B585B5824242422\">NJW 832W FAITHFUL 74G (P24025434)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5B2120242F26\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+4.6</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+58</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+81</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+33</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+62</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+7.0</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+68</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.48</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.48</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">-0.032</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+0.22</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 22</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 20</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 32</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.86</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.80</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.34</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.37</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.52</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','NJW 98S R117 RIBEYE 88X ET {CHB,DLF,HYF,IEF} (43094146)','description','publish','closed','closed','','njw-98s-r117-ribeye-88x-et-chbdlfhyfief-43094146','','','2017-03-06 21:10:08','2017-03-06 21:10:08','',0,'http://new.kclgenetics.com/?p=167',0,'post','',0),(168,1,'2017-03-03 16:28:42','2017-03-03 16:28:42','','NJW 98S R117 RIBEYE 88X ET','','inherit','closed','closed','','njw-98s-r117-ribeye-88x-et','','','2017-03-03 16:28:42','2017-03-03 16:28:42','',167,'http://new.kclgenetics.com/wp-content/uploads/2017/03/NJW-98S-R117-RIBEYE-88X-ET.jpg',0,'attachment','image/jpeg',0),(259,1,'2017-03-06 21:10:08','2017-03-06 21:10:08','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 720px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A26242526\">RRH MR FELT 3008 {CHB,SOD,DLF,HYF,IEF} (P23703420)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582559222E22\">KCF BENNETT 3008 M326 {CHB,SOD,DLF,HYF,IEF} (P42361822)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5922272126222D\">KCF MISS 459 F284 (P23938259)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C262222272225\">SHF RIB EYE M326 R117 {CHB,SOD,DLF,HYF,IEF} (P42584003)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5822232E2D\">MSU MF HUDSON 19H {SOD,CHB,HYF} (P41027599)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C59262023202F\">HVH MISS HUDSON 83K 8M (P42247970)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B2422252223\">SUN VINDY MISS 83K (P42067572)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5B2120242F26\">NJW 98S R117 RIBEYE 88X ET {CHB,DLF,HYF,IEF} (43094146)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595C5B5A22252F20\">HH ADVANCE 767G 1ET {SOD,CHB,DLF,IEF} (40007386)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A592626202D\">CL 1 DOMINO 9126J 1ET {SOD,CHB,DLF,IEF} (41113279)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5C23275822232E22\">CL 1 DOMINETTE 490 {DOD} (19427594)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C252122212024\">NJW 9126J DEW DOMINO 98S {DOD,DLF,HYF,IEF} (P42693893)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2624232621\">RU 20X BOULDER 57G {CHB} (P42144940)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C585A5925252D\">NJW 57G 74G DEW 5M {DLF,HYF,IEF} (P42298333)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B585B5824242422\">NJW 832W FAITHFUL 74G (P24025434)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5B2120242F26\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+4.6</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+58</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+81</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+33</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+62</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+7.0</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+68</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.48</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.48</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">-0.032</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+0.22</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 22</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 20</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 16</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 32</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.86</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.80</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.34</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.37</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.52</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','NJW 98S R117 RIBEYE 88X ET {CHB,DLF,HYF,IEF} (43094146)','description','inherit','closed','closed','','167-revision-v1','','','2017-03-06 21:10:08','2017-03-06 21:10:08','',167,'http://new.kclgenetics.com/167-revision-v1/',0,'revision','',0),(169,1,'2017-03-03 16:28:51','2017-03-03 16:28:51','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 720px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59245A26242526\"&gt;RRH MR FELT 3008 {CHB,SOD,DLF,HYF,IEF} (P23703420)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C582559222E22\"&gt;KCF BENNETT 3008 M326 {CHB,SOD,DLF,HYF,IEF} (P42361822)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5922272126222D\"&gt;KCF MISS 459 F284 (P23938259)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C262222272225\"&gt;SHF RIB EYE M326 R117 {CHB,SOD,DLF,HYF,IEF} (P42584003)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5B5822232E2D\"&gt;MSU MF HUDSON 19H {SOD,CHB,HYF} (P41027599)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C59262023202F\"&gt;HVH MISS HUDSON 83K 8M (P42247970)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5B2422252223\"&gt;SUN VINDY MISS 83K (P42067572)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5B2120242F26\"&gt;NJW 98S R117 RIBEYE 88X ET {CHB,DLF,HYF,IEF} (43094146)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595C5B5A22252F20\"&gt;HH ADVANCE 767G 1ET {SOD,CHB,DLF,IEF} (40007386)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5A592626202D\"&gt;CL 1 DOMINO 9126J 1ET {SOD,CHB,DLF,IEF} (41113279)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5C23275822232E22\"&gt;CL 1 DOMINETTE 490 {DOD} (19427594)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C252122212024\"&gt;NJW 9126J DEW DOMINO 98S {DOD,DLF,HYF,IEF} (P42693893)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A2624232621\"&gt;RU 20X BOULDER 57G {CHB} (P42144940)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C585A5925252D\"&gt;NJW 57G 74G DEW 5M {DLF,HYF,IEF} (P42298333)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B585B5824242422\"&gt;NJW 832W FAITHFUL 74G (P24025434)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5B2120242F26\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+4.6&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+58&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+81&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+33&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+62&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+7.0&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+68&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.48&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.48&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;-0.032&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+0.22&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 22&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 20&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 32&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.86&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.80&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.34&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.37&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.54&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.54&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.53&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.54&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.52&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','NJW 98S R117 RIBEYE 88X ET {CHB,DLF,HYF,IEF} (43094146)','description','inherit','closed','closed','','167-revision-v1','','','2017-03-03 16:28:51','2017-03-03 16:28:51','',167,'http://new.kclgenetics.com/167-revision-v1/',0,'revision','',0),(170,1,'2017-03-03 16:30:10','2017-03-03 16:30:10','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] <strong> Owned by: Topp Herefords, Genex, &amp; The Mr. Hereford Group</strong> [/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 733px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A24242523\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A265822262D\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5A232522272323\">RHF 964 VICTRA 4057 (P22857143)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C235A2427222E\">TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5924252127212D\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C595859232625\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B5A20252122\">KBCR DOMINETTE 9112 (P42008924)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5A5A22202526\">TH 71U 719T MR HEREFORD 11X {CHB,DLF,HYF,IEF} (P43101172)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B58202F272F\">FHF 8403 STARBUCK 19H {CHB,SOD} (P41029907)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C27212524222D\">NJW FHF 9710 TANK 45P {CHB,DLF,HYF,IEF} (P42491957)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5A59242525\">GV 579 VICTORIA 9710 {DLF,HYF,IEF} (P41000421)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C225A2524262D\">TH 7N 45P RITA 71U {DLF,HYF,IEF} (P42898638)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2225262326\">S&amp;S ROCK SOLID 3L {CHB} (P42183052)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582220242725\">TH 814H 3L RITA 7N {DOD,DLF,HYF,IEF} (P42387430)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B275826222D\">TALECO 832W RITA 14H (P42030319)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5A5A22202526\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+55</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+81</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+31</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+58</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+62</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">-0.026</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+0.54</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.03</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 26</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.86</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.80</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.39</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.34</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.62</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,FAT,REA,IMF,<img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>180/588,<strong>WW:</strong>136/477,<strong>YW:</strong>60/172,<strong>SC:</strong>20/70,<strong>Dgt:</strong>16,<strong>SCAN:</strong>168,<strong>MCW:</strong>10,<strong>UDDR:</strong>6/8</center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TH 71U 719T MR HEREFORD 11X {DLF,HYF,IEF}','decription','publish','closed','closed','','th-71u-719t-mr-hereford-11x','','','2017-03-07 04:23:41','2017-03-07 04:23:41','',0,'http://new.kclgenetics.com/?p=170',0,'post','',0),(171,1,'2017-03-03 16:30:01','2017-03-03 16:30:01','','TH 71U 719T MR HEREFORD 11X','Mr. Hereford 11X','inherit','closed','closed','','th-71u-719t-mr-hereford-11x-2','','','2018-05-02 01:31:33','2018-05-02 01:31:33','',170,'http://new.kclgenetics.com/wp-content/uploads/2017/03/TH-71U-719T-MR-HEREFORD-11X.jpg',0,'attachment','image/jpeg',0),(258,1,'2017-03-06 21:09:40','2017-03-06 21:09:40','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] <strong> Owned by: Topp Herefords, Genex, &amp; The Mr. Hereford Group</strong> [/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 733px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A24242523\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A265822262D\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5A232522272323\">RHF 964 VICTRA 4057 (P22857143)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C235A2427222E\">TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5924252127212D\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C595859232625\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B5A20252122\">KBCR DOMINETTE 9112 (P42008924)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5A5A22202526\">TH 71U 719T MR HEREFORD 11X {CHB,DLF,HYF,IEF} (P43101172)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B58202F272F\">FHF 8403 STARBUCK 19H {CHB,SOD} (P41029907)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C27212524222D\">NJW FHF 9710 TANK 45P {CHB,DLF,HYF,IEF} (P42491957)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5A59242525\">GV 579 VICTORIA 9710 {DLF,HYF,IEF} (P41000421)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C225A2524262D\">TH 7N 45P RITA 71U {DLF,HYF,IEF} (P42898638)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2225262326\">S&amp;S ROCK SOLID 3L {CHB} (P42183052)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582220242725\">TH 814H 3L RITA 7N {DOD,DLF,HYF,IEF} (P42387430)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B275826222D\">TALECO 832W RITA 14H (P42030319)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5A5A22202526\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+55</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+81</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+31</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+58</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+62</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">-0.026</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+0.54</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.03</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 26</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.86</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.80</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.39</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.34</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.62</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,FAT,REA,IMF,<img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>180/588,<strong>WW:</strong>136/477,<strong>YW:</strong>60/172,<strong>SC:</strong>20/70,<strong>Dgt:</strong>16,<strong>SCAN:</strong>168,<strong>MCW:</strong>10,<strong>UDDR:</strong>6/8</center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TH 71U 719T MR HEREFORD 11X','decription','inherit','closed','closed','','170-revision-v1','','','2017-03-06 21:09:40','2017-03-06 21:09:40','',170,'http://new.kclgenetics.com/170-revision-v1/',0,'revision','',0),(172,1,'2017-03-03 16:30:10','2017-03-03 16:30:10','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong> Owned by: Topp Herefords, Genex, &amp; The Mr. Hereford Group</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 733px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59245A24242523\"&gt;HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5A265822262D\"&gt;DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5A232522272323\"&gt;RHF 964 VICTRA 4057 (P22857143)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C235A2427222E\"&gt;TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5924252127212D\"&gt;NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C595859232625\"&gt;KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5B5A20252122\"&gt;KBCR DOMINETTE 9112 (P42008924)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5A5A22202526\"&gt;TH 71U 719T MR HEREFORD 11X {CHB,DLF,HYF,IEF} (P43101172)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5B58202F272F\"&gt;FHF 8403 STARBUCK 19H {CHB,SOD} (P41029907)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C27212524222D\"&gt;NJW FHF 9710 TANK 45P {CHB,DLF,HYF,IEF} (P42491957)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5B5A59242525\"&gt;GV 579 VICTORIA 9710 {DLF,HYF,IEF} (P41000421)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C225A2524262D\"&gt;TH 7N 45P RITA 71U {DLF,HYF,IEF} (P42898638)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A2225262326\"&gt;S&amp;amp;S ROCK SOLID 3L {CHB} (P42183052)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C582220242725\"&gt;TH 814H 3L RITA 7N {DOD,DLF,HYF,IEF} (P42387430)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5B275826222D\"&gt;TALECO 832W RITA 14H (P42030319)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5A5A22202526\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+55&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+81&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+31&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+58&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+62&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.24&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;-0.026&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+0.54&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.03&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 11&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 7&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 26&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.86&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.80&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.39&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.53&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.34&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.62&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.53&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.53&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Traits Observed:&amp;nbsp;&lt;/strong&gt;BWT,WWT,YWT,FAT,REA,IMF,&lt;img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" /&gt;&amp;nbsp;&lt;br /&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Statistics:&lt;/strong&gt;&amp;nbsp;&lt;br /&gt;&lt;strong&gt;Statistics:BW:&lt;/strong&gt;180/588,&lt;strong&gt;WW:&lt;/strong&gt;136/477,&lt;strong&gt;YW:&lt;/strong&gt;60/172,&lt;strong&gt;SC:&lt;/strong&gt;20/70,&lt;strong&gt;Dgt:&lt;/strong&gt;16,&lt;strong&gt;SCAN:&lt;/strong&gt;168,&lt;strong&gt;MCW:&lt;/strong&gt;10,&lt;strong&gt;UDDR:&lt;/strong&gt;6/8&lt;/center&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','TH 71U 719T MR HEREFORD 11X','decription','inherit','closed','closed','','170-revision-v1','','','2017-03-03 16:30:10','2017-03-03 16:30:10','',170,'http://new.kclgenetics.com/170-revision-v1/',0,'revision','',0),(173,1,'2017-03-03 16:31:37','2017-03-03 16:31:37','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] <strong>Owned y Boyd Beef Cattle &amp; Genex</strong> [/et_pb_text][et_pb_code admin_label=\"Code\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A26242526\">RRH MR FELT 3008 {CHB,SOD,DLF,HYF,IEF} (P23703420)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582559222E22\">KCF BENNETT 3008 M326 {CHB,SOD,DLF,HYF,IEF} (P42361822)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5922272126222D\">KCF MISS 459 F284 (P23938259)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C262222272225\">SHF RIB EYE M326 R117 {CHB,SOD,DLF,HYF,IEF} (P42584003)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5822232E2D\">MSU MF HUDSON 19H {SOD,CHB,HYF} (P41027599)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C59262023202F\">HVH MISS HUDSON 83K 8M (P42247970)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B2422252223\">SUN VINDY MISS 83K (P42067572)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C222222252025\">BOYD WORLDWIDE 9050 ET {CHB,DLF,HYF,IEF} (P42982024)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59232425582221\">FELTONS DOMINO 774 {CHB,SOD,DLF,HYF,IEF} (P23864055)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B5922582620\">FELTONS LEGEND 242 {CHB,SOD,HYF} (P42016383)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5924212221252D\">FELTONS G15 (P23797729)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C245926232122\">MSU TCF RACHAEL 22S ET (P42709823)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C592524202523\">REMITALL ONLINE 122L {CHB,SOD,DLF,HYF,IEF} (P42254372)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582125232520\">MSU TCF RACHAEL ET 54N {DLF,HYF,IEF} (P42392509)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595C5B5A22252F2D\">HH MISS ADV 786G 1ET (40007389)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C222222252025\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+8.6</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">-1.2</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+44</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+60</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+31</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+53</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+6.2</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+43</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.54</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.66</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">-0.022</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.06</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+0.21</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 25</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 25</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 20</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 26</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.55</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.89</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.84</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.81</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.00</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.42</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.59</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.62</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong><img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>161/976,<strong>WW:</strong>128/805,<strong>YW:</strong>49/309,<strong>SC:</strong>19/79,<strong>Dgt:</strong>46,<strong>SCAN:</strong>117,<strong>MCW:</strong>18,<strong>UDDR:</strong>16/25</center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','BOYD WORLDWIDE 9050 ET {DLF,HYF,IEF} (P42982024)','description','publish','closed','closed','','boyd-worldwide-9050-et-dlfhyfief-p42982024','','','2017-03-06 21:09:08','2017-03-06 21:09:08','',0,'http://new.kclgenetics.com/?p=173',0,'post','',0),(174,1,'2017-03-03 16:31:28','2017-03-03 16:31:28','','BOYD WORLDWIDE 9050 ET','','inherit','closed','closed','','boyd-worldwide-9050-et','','','2017-03-03 16:31:28','2017-03-03 16:31:28','',173,'http://new.kclgenetics.com/wp-content/uploads/2017/03/BOYD-WORLDWIDE-9050-ET.jpg',0,'attachment','image/jpeg',0),(257,1,'2017-03-06 21:09:08','2017-03-06 21:09:08','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] <strong>Owned y Boyd Beef Cattle &amp; Genex</strong> [/et_pb_text][et_pb_code admin_label=\"Code\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A26242526\">RRH MR FELT 3008 {CHB,SOD,DLF,HYF,IEF} (P23703420)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582559222E22\">KCF BENNETT 3008 M326 {CHB,SOD,DLF,HYF,IEF} (P42361822)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5922272126222D\">KCF MISS 459 F284 (P23938259)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C262222272225\">SHF RIB EYE M326 R117 {CHB,SOD,DLF,HYF,IEF} (P42584003)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5822232E2D\">MSU MF HUDSON 19H {SOD,CHB,HYF} (P41027599)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C59262023202F\">HVH MISS HUDSON 83K 8M (P42247970)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B2422252223\">SUN VINDY MISS 83K (P42067572)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C222222252025\">BOYD WORLDWIDE 9050 ET {CHB,DLF,HYF,IEF} (P42982024)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59232425582221\">FELTONS DOMINO 774 {CHB,SOD,DLF,HYF,IEF} (P23864055)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B5922582620\">FELTONS LEGEND 242 {CHB,SOD,HYF} (P42016383)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5924212221252D\">FELTONS G15 (P23797729)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C245926232122\">MSU TCF RACHAEL 22S ET (P42709823)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C592524202523\">REMITALL ONLINE 122L {CHB,SOD,DLF,HYF,IEF} (P42254372)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582125232520\">MSU TCF RACHAEL ET 54N {DLF,HYF,IEF} (P42392509)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595C5B5A22252F2D\">HH MISS ADV 786G 1ET (40007389)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C222222252025\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+8.6</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">-1.2</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+44</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+60</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+31</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+53</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+6.2</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+43</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.54</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.66</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">-0.022</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.06</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+0.21</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 25</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 25</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 20</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 26</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.55</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.89</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.84</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.81</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.00</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.42</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.59</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.62</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.49</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.46</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong><img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>161/976,<strong>WW:</strong>128/805,<strong>YW:</strong>49/309,<strong>SC:</strong>19/79,<strong>Dgt:</strong>46,<strong>SCAN:</strong>117,<strong>MCW:</strong>18,<strong>UDDR:</strong>16/25</center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','BOYD WORLDWIDE 9050 ET {DLF,HYF,IEF} (P42982024)','description','inherit','closed','closed','','173-revision-v1','','','2017-03-06 21:09:08','2017-03-06 21:09:08','',173,'http://new.kclgenetics.com/173-revision-v1/',0,'revision','',0),(175,1,'2017-03-03 16:31:37','2017-03-03 16:31:37','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned y Boyd Beef Cattle &amp; Genex</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59245A26242526\"&gt;RRH MR FELT 3008 {CHB,SOD,DLF,HYF,IEF} (P23703420)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C582559222E22\"&gt;KCF BENNETT 3008 M326 {CHB,SOD,DLF,HYF,IEF} (P42361822)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5922272126222D\"&gt;KCF MISS 459 F284 (P23938259)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C262222272225\"&gt;SHF RIB EYE M326 R117 {CHB,SOD,DLF,HYF,IEF} (P42584003)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5B5822232E2D\"&gt;MSU MF HUDSON 19H {SOD,CHB,HYF} (P41027599)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C59262023202F\"&gt;HVH MISS HUDSON 83K 8M (P42247970)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5B2422252223\"&gt;SUN VINDY MISS 83K (P42067572)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C222222252025\"&gt;BOYD WORLDWIDE 9050 ET {CHB,DLF,HYF,IEF} (P42982024)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59232425582221\"&gt;FELTONS DOMINO 774 {CHB,SOD,DLF,HYF,IEF} (P23864055)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5B5922582620\"&gt;FELTONS LEGEND 242 {CHB,SOD,HYF} (P42016383)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5924212221252D\"&gt;FELTONS G15 (P23797729)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C245926232122\"&gt;MSU TCF RACHAEL 22S ET (P42709823)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C592524202523\"&gt;REMITALL ONLINE 122L {CHB,SOD,DLF,HYF,IEF} (P42254372)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C582125232520\"&gt;MSU TCF RACHAEL ET 54N {DLF,HYF,IEF} (P42392509)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595C5B5A22252F2D\"&gt;HH MISS ADV 786G 1ET (40007389)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C222222252025\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+8.6&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;-1.2&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+44&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+60&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+31&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+53&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+6.2&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+43&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.54&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.66&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;-0.022&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.06&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+0.21&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 25&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 25&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 20&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 26&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.55&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.89&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.84&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.81&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.46&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.00&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.42&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.59&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.49&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.62&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.49&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.46&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Traits Observed:&amp;nbsp;&lt;/strong&gt;&lt;img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" /&gt;&amp;nbsp;&lt;br /&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Statistics:&lt;/strong&gt;&amp;nbsp;&lt;br /&gt;&lt;strong&gt;Statistics:BW:&lt;/strong&gt;161/976,&lt;strong&gt;WW:&lt;/strong&gt;128/805,&lt;strong&gt;YW:&lt;/strong&gt;49/309,&lt;strong&gt;SC:&lt;/strong&gt;19/79,&lt;strong&gt;Dgt:&lt;/strong&gt;46,&lt;strong&gt;SCAN:&lt;/strong&gt;117,&lt;strong&gt;MCW:&lt;/strong&gt;18,&lt;strong&gt;UDDR:&lt;/strong&gt;16/25&lt;/center&gt;&lt;/center&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','BOYD WORLDWIDE 9050 ET {DLF,HYF,IEF} (P42982024)','description','inherit','closed','closed','','173-revision-v1','','','2017-03-03 16:31:37','2017-03-03 16:31:37','',173,'http://new.kclgenetics.com/173-revision-v1/',0,'revision','',0),(176,1,'2017-03-03 16:34:06','2017-03-03 16:34:06','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/H-W4-Mariah-0103.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\"><strong>H W4 Mariah 0103 - Full sister to Pure Country and Denver Grand Champion </strong></p>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 656px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C2426232F252E\">GOLDEN-OAK 4J MAXIUM 28M {CHB,DLF,HYF,IEF} (P42742991)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C222421252724\">GOLDEN-OAK FUSION 3S {DLF,HYF,IEF} (P42963122)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C222421262E2D\">NCX MISS JR NELLIE 528N (P42963119)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C22242125272E\">GOLDEN OAK OUTCROSS 18U {CHB,DLF,HYF,IEF} (P42963135)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C59252126232E\">RU DUSTER 60D {CHB,DLF,HYF,IEF} (P42256804)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C22242125272F\">GOLDEN-OAK 60D MALLORY 15M (P42963131)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C222421252720\">GOLDEN-OAK P183 GLORIA 25G (P42963127)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5B2122232224\">H W4 PURE COUNTRY 0109 {DLF,HYF,IEF} (P43091171)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5958582625\">CL 1 DOMINO 824H {SOD,DLF,IEF} (41011011)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B2558212122\">HH ADVANCE 0024K {SOD,DLF,IEF} (42050495)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5A20242F24\">HH MISS ADVANCE 894H (41009482)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582327262E23\">HH MISS ADVANCE 316N 1ET {DLF,HYF,IEF} (42370213)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5C24272724202720\">CL 1 DOMINO 386 {SOD,DLF,IEF} (18435806)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5C23275822222726\">CL 1 DOMINET 496 1ET (19427600)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5C24252325212226\">L1 DOMINETTE 850413 (18674750)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5B2122232224\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+61</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+101</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+59</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+109</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.031</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.82</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">0.00</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 27</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.71</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>31/148,<strong>WW:</strong>21/65,<strong>YW:</strong>7/9,<strong>Dgt:</strong>1,<strong>SCAN:</strong>9,<strong>MCW:</strong>1,<strong>UDDR:</strong>2/2</center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','H W4 PURE COUNTRY 0109 {DLF,HYF,IEF} (P43091171)','description','publish','closed','closed','','h-w4-pure-country-0109-dlfhyfief-p43091171','','','2017-03-06 21:08:38','2017-03-06 21:08:38','',0,'http://new.kclgenetics.com/?p=176',0,'post','',0),(177,1,'2017-03-03 16:32:54','2017-03-03 16:32:54','','H W4 Mariah 0103','','inherit','closed','closed','','h-w4-mariah-0103','','','2017-03-03 16:32:54','2017-03-03 16:32:54','',176,'http://new.kclgenetics.com/wp-content/uploads/2017/03/H-W4-Mariah-0103.jpg',0,'attachment','image/jpeg',0),(178,1,'2017-03-03 16:33:57','2017-03-03 16:33:57','','H W4 PURE COUNTRY 0109','','inherit','closed','closed','','h-w4-pure-country-0109','','','2017-03-03 16:33:57','2017-03-03 16:33:57','',176,'http://new.kclgenetics.com/wp-content/uploads/2017/03/H-W4-PURE-COUNTRY-0109.jpg',0,'attachment','image/jpeg',0),(256,1,'2017-03-06 21:08:38','2017-03-06 21:08:38','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/H-W4-Mariah-0103.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\"><strong>H W4 Mariah 0103 - Full sister to Pure Country and Denver Grand Champion </strong></p>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 656px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C2426232F252E\">GOLDEN-OAK 4J MAXIUM 28M {CHB,DLF,HYF,IEF} (P42742991)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C222421252724\">GOLDEN-OAK FUSION 3S {DLF,HYF,IEF} (P42963122)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C222421262E2D\">NCX MISS JR NELLIE 528N (P42963119)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C22242125272E\">GOLDEN OAK OUTCROSS 18U {CHB,DLF,HYF,IEF} (P42963135)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C59252126232E\">RU DUSTER 60D {CHB,DLF,HYF,IEF} (P42256804)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C22242125272F\">GOLDEN-OAK 60D MALLORY 15M (P42963131)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C222421252720\">GOLDEN-OAK P183 GLORIA 25G (P42963127)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5B2122232224\">H W4 PURE COUNTRY 0109 {DLF,HYF,IEF} (P43091171)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5958582625\">CL 1 DOMINO 824H {SOD,DLF,IEF} (41011011)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B2558212122\">HH ADVANCE 0024K {SOD,DLF,IEF} (42050495)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5A20242F24\">HH MISS ADVANCE 894H (41009482)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582327262E23\">HH MISS ADVANCE 316N 1ET {DLF,HYF,IEF} (42370213)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5C24272724202720\">CL 1 DOMINO 386 {SOD,DLF,IEF} (18435806)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5C23275822222726\">CL 1 DOMINET 496 1ET (19427600)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5C24252325212226\">L1 DOMINETTE 850413 (18674750)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5B2122232224\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+61</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+101</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+28</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+59</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+109</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.031</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.82</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">0.00</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 27</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.71</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.54</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.26</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>31/148,<strong>WW:</strong>21/65,<strong>YW:</strong>7/9,<strong>Dgt:</strong>1,<strong>SCAN:</strong>9,<strong>MCW:</strong>1,<strong>UDDR:</strong>2/2</center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','H W4 PURE COUNTRY 0109 {DLF,HYF,IEF} (P43091171)','description','inherit','closed','closed','','176-revision-v1','','','2017-03-06 21:08:38','2017-03-06 21:08:38','',176,'http://new.kclgenetics.com/176-revision-v1/',0,'revision','',0),(179,1,'2017-03-03 16:34:06','2017-03-03 16:34:06','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/H-W4-Mariah-0103.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\"><strong>H W4 Mariah 0103 - Full sister to Pure Country and Denver Grand Champion </strong></p>\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 656px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C2426232F252E\"&gt;GOLDEN-OAK 4J MAXIUM 28M {CHB,DLF,HYF,IEF} (P42742991)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C222421252724\"&gt;GOLDEN-OAK FUSION 3S {DLF,HYF,IEF} (P42963122)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C222421262E2D\"&gt;NCX MISS JR NELLIE 528N (P42963119)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C22242125272E\"&gt;GOLDEN OAK OUTCROSS 18U {CHB,DLF,HYF,IEF} (P42963135)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C59252126232E\"&gt;RU DUSTER 60D {CHB,DLF,HYF,IEF} (P42256804)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C22242125272F\"&gt;GOLDEN-OAK 60D MALLORY 15M (P42963131)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C222421252720\"&gt;GOLDEN-OAK P183 GLORIA 25G (P42963127)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5B2122232224\"&gt;H W4 PURE COUNTRY 0109 {DLF,HYF,IEF} (P43091171)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5B5958582625\"&gt;CL 1 DOMINO 824H {SOD,DLF,IEF} (41011011)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5B2558212122\"&gt;HH ADVANCE 0024K {SOD,DLF,IEF} (42050495)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5B5A20242F24\"&gt;HH MISS ADVANCE 894H (41009482)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C582327262E23\"&gt;HH MISS ADVANCE 316N 1ET {DLF,HYF,IEF} (42370213)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5C24272724202720\"&gt;CL 1 DOMINO 386 {SOD,DLF,IEF} (18435806)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5C23275822222726\"&gt;CL 1 DOMINET 496 1ET (19427600)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5C24252325212226\"&gt;L1 DOMINETTE 850413 (18674750)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5B2122232224\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.7&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+61&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+101&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+59&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.4&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+109&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.031&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.82&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;0.00&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 11&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.71&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.54&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.26&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Statistics:&lt;/strong&gt;&amp;nbsp;&lt;br /&gt;&lt;strong&gt;Statistics:BW:&lt;/strong&gt;31/148,&lt;strong&gt;WW:&lt;/strong&gt;21/65,&lt;strong&gt;YW:&lt;/strong&gt;7/9,&lt;strong&gt;Dgt:&lt;/strong&gt;1,&lt;strong&gt;SCAN:&lt;/strong&gt;9,&lt;strong&gt;MCW:&lt;/strong&gt;1,&lt;strong&gt;UDDR:&lt;/strong&gt;2/2&lt;/center&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','H W4 PURE COUNTRY 0109 {DLF,HYF,IEF} (P43091171)','description','inherit','closed','closed','','176-revision-v1','','','2017-03-03 16:34:06','2017-03-03 16:34:06','',176,'http://new.kclgenetics.com/176-revision-v1/',0,'revision','',0),(180,1,'2017-03-03 16:35:55','2017-03-03 16:35:55','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 742px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A24242523\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A265822262D\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5A232522272323\">RHF 964 VICTRA 4057 (P22857143)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C235A2427222E\">TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5924252127212D\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C595859232625\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B5A20252122\">KBCR DOMINETTE 9112 (P42008924)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B582227582E2F\">TH 512X 719T PLAYMAKER 14Z {DLF,HYF,IEF} (P43294102)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A24242523\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A265822262D\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5A232522272323\">RHF 964 VICTRA 4057 (P22857143)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5A5823212423\">TH 122 71I DOMINETTE 512X ET (P43122877)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5924252127212D\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C595859232625\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B5A20252122\">KBCR DOMINETTE 9112 (P42008924)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B582227582E2F\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+2.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+72</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+107</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+64</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+104</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.018</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.08</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 36</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.37</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.64</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.37</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,SC,FAT,REA,IMF,<img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>5/46,<strong>WW:</strong>3/13</center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TH 512X 719T PLAYMAKER 14Z {DLF,HYF,IEF} (P43294102)','description','publish','closed','closed','','th-512x-719t-playmaker-14z-dlfhyfief-p43294102','','','2017-03-06 21:07:04','2017-03-06 21:07:04','',0,'http://new.kclgenetics.com/?p=180',0,'post','',0),(181,1,'2017-03-03 16:35:18','2017-03-03 16:35:18','','TH 512X 719T PLAYMAKER 14Z','14Z','inherit','closed','closed','','th-512x-719t-playmaker-14z','','','2018-04-22 02:27:47','2018-04-22 02:27:47','',180,'http://new.kclgenetics.com/wp-content/uploads/2017/03/TH-512X-719T-PLAYMAKER-14Z.jpg',0,'attachment','image/jpeg',0),(249,1,'2017-03-06 20:48:30','2017-03-06 20:48:30','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 742px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A24242523\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A265822262D\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5A232522272323\">RHF 964 VICTRA 4057 (P22857143)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C235A2427222E\">TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5924252127212D\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C595859232625\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B5A20252122\">KBCR DOMINETTE 9112 (P42008924)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B582227582E2F\">TH 512X 719T PLAYMAKER 14Z {DLF,HYF,IEF} (P43294102)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A24242523\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A265822262D\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5A232522272323\">RHF 964 VICTRA 4057 (P22857143)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5A5823212423\">TH 122 71I DOMINETTE 512X ET (P43122877)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5924252127212D\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C595859232625\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B5A20252122\">KBCR DOMINETTE 9112 (P42008924)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B582227582E2F\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+2.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+72</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+107</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+64</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+104</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.018</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.08</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 36</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.37</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.64</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.37</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,SC,FAT,REA,IMF,<img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>5/46,<strong>WW:</strong>3/13</center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TH 512X 719T PLAYMAKER 14Z {DLF,HYF,IEF} (P43294102)','description','inherit','closed','closed','','180-revision-v1','','','2017-03-06 20:48:30','2017-03-06 20:48:30','',180,'http://new.kclgenetics.com/180-revision-v1/',0,'revision','',0),(182,1,'2017-03-03 16:35:55','2017-03-03 16:35:55','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 742px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59245A24242523\"&gt;HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5A265822262D\"&gt;DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5A232522272323\"&gt;RHF 964 VICTRA 4057 (P22857143)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C235A2427222E\"&gt;TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5924252127212D\"&gt;NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C595859232625\"&gt;KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5B5A20252122\"&gt;KBCR DOMINETTE 9112 (P42008924)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B582227582E2F\"&gt;TH 512X 719T PLAYMAKER 14Z {DLF,HYF,IEF} (P43294102)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59245A24242523\"&gt;HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5A265822262D\"&gt;DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5A232522272323\"&gt;RHF 964 VICTRA 4057 (P22857143)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5A5823212423\"&gt;TH 122 71I DOMINETTE 512X ET (P43122877)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5924252127212D\"&gt;NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C595859232625\"&gt;KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5B5A20252122\"&gt;KBCR DOMINETTE 9112 (P42008924)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B582227582E2F\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+2.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+72&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+107&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+64&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-1.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+104&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.31&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.4&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.018&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.50&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.08&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 23&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 18&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.37&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.64&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.40&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.37&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Traits Observed:&amp;nbsp;&lt;/strong&gt;BWT,WWT,YWT,SC,FAT,REA,IMF,&lt;img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" /&gt;&amp;nbsp;&lt;br /&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Statistics:&lt;/strong&gt;&amp;nbsp;&lt;br /&gt;&lt;strong&gt;Statistics:BW:&lt;/strong&gt;5/46,&lt;strong&gt;WW:&lt;/strong&gt;3/13&lt;/center&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','TH 512X 719T PLAYMAKER 14Z {DLF,HYF,IEF} (P43294102)','description','inherit','closed','closed','','180-revision-v1','','','2017-03-03 16:35:55','2017-03-03 16:35:55','',180,'http://new.kclgenetics.com/180-revision-v1/',0,'revision','',0),(183,1,'2017-03-03 16:37:31','2017-03-03 16:37:31','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned by:Topp Herefords &amp; Genex</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 663px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;\r\n&lt;tbody&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2624232621\"&gt;RU 20X BOULDER 57G {CHB} (P42144940)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C58222024262E\"&gt;TH JWR SOP 16G 57G TUNDRA 63N {SOD,CHB,DLF,HYF,IEF} (P42387444)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C59595823202E\"&gt;TEE-JAY 707B GEMINI 16G ET (P42210391)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire: &lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C252324212724\"&gt;TH 121L 63N TUNDRA 16S {CHB,DLF,HYF,IEF} (P42671979)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B2221252F22\"&gt;TEE-JAY 707B FALCON 17F (P41088384)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C595A262F2F25\"&gt;KB 17F CASSANDRA 121L {DLF,IEF} (P42202818)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59225A22582725\"&gt;HILLSIDE CASSANDRA 401D (P23907001)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal: &lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5A232220212D\"&gt;TH 22R 16S LAMBEAU 17Y {DLF,HYF,IEF} (P43171190)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B242226262D\"&gt;S&amp;S SCF FAF THE ROCK 10H (P41067219)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2225262326\"&gt;S&amp;S ROCK SOLID 3L {CHB} (P42183052)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59232321232724\"&gt;S&amp;S INAS MM 647E (P23878502)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam: &lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C252727242722\"&gt;TH 62N 3L KELSEY 22R {DLF,HYF,IEF} (P42631155)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2624232621\"&gt;RU 20X BOULDER 57G {CHB} (P42144940)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582220252E24\"&gt;TH 605F 57G KELSEY 62N (P42387427)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A5827212625\"&gt;YY 125Y PRIMROSE 605F (P41122711)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;/tbody&gt;\r\n&lt;/table&gt;\r\n&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;\r\n&lt;tbody&gt;\r\n&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS &lt;/th&gt;&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5A232220212D\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;&lt;br /&gt;Growth&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+7.8&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;-2.7&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+28&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+69&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+13&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+27&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+5.0&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+69&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.36&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.42&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.6&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.114&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.09&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+0.33&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 19&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 23&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.34&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.79&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.71&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.70&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.19&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.42&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.45&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.44&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.45&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.41&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt; &lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;/tbody&gt;\r\n&lt;/table&gt;\r\n&lt;center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Traits Observed: &lt;/strong&gt;BWT,WWT,&lt;img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" /&gt; &lt;br /&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Statistics:&lt;/strong&gt; &lt;br /&gt;&lt;strong&gt;Statistics:BW:&lt;/strong&gt;45/224,&lt;strong&gt;WW:&lt;/strong&gt;33/188,&lt;strong&gt;YW:&lt;/strong&gt;11/85,&lt;strong&gt;SC:&lt;/strong&gt;5/25,&lt;strong&gt;SCAN:&lt;/strong&gt;77&lt;/center&gt;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TH 22R 16S LAMBEAU 17Y {DLF,HYF,IEF} (P43171190)','description','publish','closed','closed','','th-22r-16s-lambeau-17y-dlfhyfief-p43171190','','','2017-03-06 21:06:40','2017-03-06 21:06:40','',0,'http://new.kclgenetics.com/?p=183',0,'post','',0),(184,1,'2017-03-03 16:36:38','2017-03-03 16:36:38','','TH 22R 16S LAMBEAU 17Y','Lambeau 17Y','inherit','closed','closed','','th-22r-16s-lambeau-17y','','','2018-05-02 01:31:39','2018-05-02 01:31:39','',183,'http://new.kclgenetics.com/wp-content/uploads/2017/03/TH-22R-16S-LAMBEAU-17Y.jpg',0,'attachment','image/jpeg',0),(254,1,'2017-03-06 21:06:40','2017-03-06 21:06:40','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned by:Topp Herefords &amp; Genex</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 663px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;\r\n&lt;tbody&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2624232621\"&gt;RU 20X BOULDER 57G {CHB} (P42144940)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C58222024262E\"&gt;TH JWR SOP 16G 57G TUNDRA 63N {SOD,CHB,DLF,HYF,IEF} (P42387444)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C59595823202E\"&gt;TEE-JAY 707B GEMINI 16G ET (P42210391)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire: &lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C252324212724\"&gt;TH 121L 63N TUNDRA 16S {CHB,DLF,HYF,IEF} (P42671979)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B2221252F22\"&gt;TEE-JAY 707B FALCON 17F (P41088384)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C595A262F2F25\"&gt;KB 17F CASSANDRA 121L {DLF,IEF} (P42202818)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59225A22582725\"&gt;HILLSIDE CASSANDRA 401D (P23907001)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal: &lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5A232220212D\"&gt;TH 22R 16S LAMBEAU 17Y {DLF,HYF,IEF} (P43171190)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B242226262D\"&gt;S&amp;S SCF FAF THE ROCK 10H (P41067219)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2225262326\"&gt;S&amp;S ROCK SOLID 3L {CHB} (P42183052)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59232321232724\"&gt;S&amp;S INAS MM 647E (P23878502)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam: &lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C252727242722\"&gt;TH 62N 3L KELSEY 22R {DLF,HYF,IEF} (P42631155)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2624232621\"&gt;RU 20X BOULDER 57G {CHB} (P42144940)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582220252E24\"&gt;TH 605F 57G KELSEY 62N (P42387427)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td width=\"%\"&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td&gt; &lt;/td&gt;\r\n&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;\r\n&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A5827212625\"&gt;YY 125Y PRIMROSE 605F (P41122711)&lt;/a&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;/tbody&gt;\r\n&lt;/table&gt;\r\n&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;\r\n&lt;tbody&gt;\r\n&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS &lt;/th&gt;&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5A232220212D\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;&lt;br /&gt;Growth&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+7.8&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;-2.7&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+28&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+69&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+13&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+27&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+5.0&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+69&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.36&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.42&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.6&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.114&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.09&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+0.33&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 19&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 23&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.34&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.79&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.71&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.70&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.19&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.42&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.45&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.44&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.45&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.41&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt; &lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;\r\n&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;\r\n&lt;/tr&gt;\r\n&lt;/tbody&gt;\r\n&lt;/table&gt;\r\n&lt;center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Traits Observed: &lt;/strong&gt;BWT,WWT,&lt;img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" /&gt; &lt;br /&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Statistics:&lt;/strong&gt; &lt;br /&gt;&lt;strong&gt;Statistics:BW:&lt;/strong&gt;45/224,&lt;strong&gt;WW:&lt;/strong&gt;33/188,&lt;strong&gt;YW:&lt;/strong&gt;11/85,&lt;strong&gt;SC:&lt;/strong&gt;5/25,&lt;strong&gt;SCAN:&lt;/strong&gt;77&lt;/center&gt;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TH 22R 16S LAMBEAU 17Y {DLF,HYF,IEF} (P43171190)','description','inherit','closed','closed','','183-revision-v1','','','2017-03-06 21:06:40','2017-03-06 21:06:40','',183,'http://new.kclgenetics.com/183-revision-v1/',0,'revision','',0),(185,1,'2017-03-03 16:37:31','2017-03-03 16:37:31','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned by:Topp Herefords &amp; Genex</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 663px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A2624232621\"&gt;RU 20X BOULDER 57G {CHB} (P42144940)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C58222024262E\"&gt;TH JWR SOP 16G 57G TUNDRA 63N {SOD,CHB,DLF,HYF,IEF} (P42387444)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C59595823202E\"&gt;TEE-JAY 707B GEMINI 16G ET (P42210391)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C252324212724\"&gt;TH 121L 63N TUNDRA 16S {CHB,DLF,HYF,IEF} (P42671979)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5B2221252F22\"&gt;TEE-JAY 707B FALCON 17F (P41088384)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C595A262F2F25\"&gt;KB 17F CASSANDRA 121L {DLF,IEF} (P42202818)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59225A22582725\"&gt;HILLSIDE CASSANDRA 401D (P23907001)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5A232220212D\"&gt;TH 22R 16S LAMBEAU 17Y {DLF,HYF,IEF} (P43171190)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5B242226262D\"&gt;S&amp;amp;S SCF FAF THE ROCK 10H (P41067219)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A2225262326\"&gt;S&amp;amp;S ROCK SOLID 3L {CHB} (P42183052)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59232321232724\"&gt;S&amp;amp;S INAS MM 647E (P23878502)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C252727242722\"&gt;TH 62N 3L KELSEY 22R {DLF,HYF,IEF} (P42631155)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A2624232621\"&gt;RU 20X BOULDER 57G {CHB} (P42144940)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C582220252E24\"&gt;TH 605F 57G KELSEY 62N (P42387427)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5A5827212625\"&gt;YY 125Y PRIMROSE 605F (P41122711)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5B5A232220212D\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+7.8&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;-2.7&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+69&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+5.0&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+69&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.36&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.42&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.114&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-0.09&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+0.33&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 23&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.34&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.79&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.71&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.70&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.27&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.42&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;P&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.45&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.44&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.45&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.41&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Traits Observed:&amp;nbsp;&lt;/strong&gt;BWT,WWT,&lt;img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" /&gt;&amp;nbsp;&lt;br /&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Statistics:&lt;/strong&gt;&amp;nbsp;&lt;br /&gt;&lt;strong&gt;Statistics:BW:&lt;/strong&gt;45/224,&lt;strong&gt;WW:&lt;/strong&gt;33/188,&lt;strong&gt;YW:&lt;/strong&gt;11/85,&lt;strong&gt;SC:&lt;/strong&gt;5/25,&lt;strong&gt;SCAN:&lt;/strong&gt;77&lt;/center&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','TH 22R 16S LAMBEAU 17Y {DLF,HYF,IEF} (P43171190)','description','inherit','closed','closed','','183-revision-v1','','','2017-03-03 16:37:31','2017-03-03 16:37:31','',183,'http://new.kclgenetics.com/183-revision-v1/',0,'revision','',0),(186,1,'2017-03-03 16:39:52','2017-03-03 16:39:52','<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 780px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">BTF FORAGE FINDER 109W {CHB} (P23249538)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">TMF VINDY 451 (P22905013)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">RHF 964 VICTRA 4057 (P22857143)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">PAF VICTORIA 2J85 (P21643646)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW FROSTY 1Y (P23345979)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR 434V TRADER 535 (P23872357)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">KBCR DOMINETTE 9112 (P42008924)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR A58 DOMINETTE 523 {DOD} (P23872369)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,FAT,REA,IMF,<img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>517/3175,<strong>WW:</strong>413/2563,<strong>YW:</strong>190/1011,<strong>SC:</strong>60/245,<strong>Dgt:</strong>318,<strong>SCAN:</strong>599,<strong>HARVEST:</strong>3,<strong>MCW:</strong>83,<strong>UDDR:</strong>62/216</center>','TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)','description','publish','closed','closed','','th-122-71i-victor-719t','','','2018-04-21 23:27:57','2018-04-21 23:27:57','',0,'http://new.kclgenetics.com/?p=186',0,'post','',0),(555,1,'2018-04-21 23:27:57','2018-04-21 23:27:57','<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 780px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">BTF FORAGE FINDER 109W {CHB} (P23249538)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">TMF VINDY 451 (P22905013)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">RHF 964 VICTRA 4057 (P22857143)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">PAF VICTORIA 2J85 (P21643646)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">NJW FROSTY 1Y (P23345979)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR 434V TRADER 535 (P23872357)</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\">KBCR DOMINETTE 9112 (P42008924)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\">KBCR A58 DOMINETTE 523 {DOD} (P23872369)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,FAT,REA,IMF,<img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>517/3175,<strong>WW:</strong>413/2563,<strong>YW:</strong>190/1011,<strong>SC:</strong>60/245,<strong>Dgt:</strong>318,<strong>SCAN:</strong>599,<strong>HARVEST:</strong>3,<strong>MCW:</strong>83,<strong>UDDR:</strong>62/216</center>','TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)','description','inherit','closed','closed','','186-revision-v1','','','2018-04-21 23:27:57','2018-04-21 23:27:57','',186,'http://kclgenetics.com/186-revision-v1/',0,'revision','',0),(556,1,'2018-04-21 23:45:18','2018-04-21 23:45:18',' ','','','publish','closed','closed','','556','','','2018-06-08 05:29:39','2018-06-08 05:29:39','',0,'http://kclgenetics.com/?p=556',5,'nav_menu_item','',0),(559,1,'2018-04-22 02:34:13','2018-04-22 02:34:13','<h3>Bull Influence</h3>\r\n<img class=\"alignleft wp-image-159 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/KCL-WPF-THE-PROFESSOR-7110ET-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these important characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted in the most desolate of conditions. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally does not include all bulls being used, but is an accurate cross-section of our genetic philosophies.','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2018-04-22 02:34:13','2018-04-22 02:34:13','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(562,1,'2018-04-22 02:41:24','2018-04-22 02:41:24','<h3>KCL Genetics Donor Cow Program</h3>\r\n<blockquote><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give great confidence in the production of \"The Next Generation\". COW FAMILIES ARE THE KEY</em></blockquote>','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2018-04-22 02:41:24','2018-04-22 02:41:24','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(711,1,'2018-05-09 22:14:22','2018-05-09 22:14:22','<h3>KCL Genetics Donor Cow Program</h3>\r\n<blockquote><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give great confidence in the production of \"The Next Generation\". COW FAMILIES ARE THE KEY</em></blockquote>','Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2018-05-09 22:14:22','2018-05-09 22:14:22','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(612,1,'2018-04-22 03:52:29','2018-04-22 03:52:29','<h3>KCL Genetics Donor Cow Program</h3>\r\n<blockquote><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give great confidence in the production of \"The Next Generation\". COW FAMILIES ARE THE KEY</em></blockquote>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2018-04-22 03:52:29','2018-04-22 03:52:29','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(565,1,'2018-04-22 02:49:57','2018-04-22 02:49:57','&nbsp;\r\n<h1>About Larson Breeding Purpose</h1>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.   Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n<img class=\"aligncenter size-medium wp-image-204\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" />','About Us','','inherit','closed','closed','','303-revision-v1','','','2018-04-22 02:49:57','2018-04-22 02:49:57','',303,'http://kclgenetics.com/303-revision-v1/',0,'revision','',0),(187,1,'2017-03-03 16:39:01','2017-03-03 16:39:01','','NJW 98S R117 RIBEYE 88X ET','Ribeye 88X','inherit','closed','closed','','njw-98s-r117-ribeye-88x-et-2','','','2018-05-02 01:31:45','2018-05-02 01:31:45','',186,'http://new.kclgenetics.com/wp-content/uploads/2017/03/NJW-98S-R117-RIBEYE-88X-ET-1.jpg',0,'attachment','image/jpeg',0),(188,1,'2017-03-03 16:39:52','2017-03-03 16:39:52','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_video admin_label=\"Video\" src=\"https://www.youtube.com/watch?v=diN4LX5rW0s\" /][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 780px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5959262023242E\"&gt;BTF FORAGE FINDER 109W {CHB} (P23249538)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59245A24242523\"&gt;HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5A225A24582623\"&gt;TMF VINDY 451 (P22905013)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5A265822262D\"&gt;DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B222122232025\"&gt;RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5A232522272323\"&gt;RHF 964 VICTRA 4057 (P22857143)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B252626222320\"&gt;PAF VICTORIA 2J85 (P21643646)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C235A2427222E\"&gt;TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B232722232F2E\"&gt;CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5924252127212D\"&gt;NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B595826242F202D\"&gt;NJW FROSTY 1Y (P23345979)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C595859232625\"&gt;KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5923232725222F\"&gt;KBCR 434V TRADER 535 (P23872357)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5B5A20252122\"&gt;KBCR DOMINETTE 9112 (P42008924)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5923232725212D\"&gt;KBCR A58 DOMINETTE 523 {DOD} (P23872369)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C235A2427222E\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+7.8&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+0.3&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+63&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+89&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+31&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+62&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-3.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.31&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.37&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.4&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;-0.015&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 24&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 20&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 20&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 33&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.73&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.93&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.91&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.90&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.74&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.00&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.63&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.76&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.80&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.78&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.78&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.68&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.69&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.66&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Traits Observed:&amp;nbsp;&lt;/strong&gt;BWT,WWT,YWT,FAT,REA,IMF,&lt;img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" /&gt;&amp;nbsp;&lt;br /&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Statistics:&lt;/strong&gt;&amp;nbsp;&lt;br /&gt;&lt;strong&gt;Statistics:BW:&lt;/strong&gt;517/3175,&lt;strong&gt;WW:&lt;/strong&gt;413/2563,&lt;strong&gt;YW:&lt;/strong&gt;190/1011,&lt;strong&gt;SC:&lt;/strong&gt;60/245,&lt;strong&gt;Dgt:&lt;/strong&gt;318,&lt;strong&gt;SCAN:&lt;/strong&gt;599,&lt;strong&gt;HARVEST:&lt;/strong&gt;3,&lt;strong&gt;MCW:&lt;/strong&gt;83,&lt;strong&gt;UDDR:&lt;/strong&gt;62/216&lt;/center&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','TH 122 71I VICTOR 719T','description','inherit','closed','closed','','186-revision-v1','','','2017-03-03 16:39:52','2017-03-03 16:39:52','',186,'http://new.kclgenetics.com/186-revision-v1/',0,'revision','',0),(253,1,'2017-03-06 21:06:10','2017-03-06 21:06:10','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_video admin_label=\"Video\" src=\"https://www.youtube.com/watch?v=diN4LX5rW0s\"] [/et_pb_video][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 780px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5959262023242E\">BTF FORAGE FINDER 109W {CHB} (P23249538)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A24242523\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5A225A24582623\">TMF VINDY 451 (P22905013)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A265822262D\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5B222122232025\">RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5A232522272323\">RHF 964 VICTRA 4057 (P22857143)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5B252626222320\">PAF VICTORIA 2J85 (P21643646)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C235A2427222E\">TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5B232722232F2E\">CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5924252127212D\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B595826242F202D\">NJW FROSTY 1Y (P23345979)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C595859232625\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5923232725222F\">KBCR 434V TRADER 535 (P23872357)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B5A20252122\">KBCR DOMINETTE 9112 (P42008924)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5923232725212D\">KBCR A58 DOMINETTE 523 {DOD} (P23872369)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C235A2427222E\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+7.8</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+0.3</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+63</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+89</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+31</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+62</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-3.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.31</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.37</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+1.4</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">-0.015</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.36</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 24</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 20</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 20</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 33</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.73</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.93</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.91</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.90</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.74</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.00</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.63</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.76</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.80</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.78</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.78</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.68</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.69</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.66</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,FAT,REA,IMF,<img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>517/3175,<strong>WW:</strong>413/2563,<strong>YW:</strong>190/1011,<strong>SC:</strong>60/245,<strong>Dgt:</strong>318,<strong>SCAN:</strong>599,<strong>HARVEST:</strong>3,<strong>MCW:</strong>83,<strong>UDDR:</strong>62/216</center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)','description','inherit','closed','closed','','186-revision-v1','','','2017-03-06 21:06:10','2017-03-06 21:06:10','',186,'http://new.kclgenetics.com/186-revision-v1/',0,'revision','',0),(189,1,'2017-03-03 16:40:03','2017-03-03 16:40:03','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_video admin_label=\"Video\" src=\"https://www.youtube.com/watch?v=diN4LX5rW0s\" /][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 780px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5959262023242E\"&gt;BTF FORAGE FINDER 109W {CHB} (P23249538)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59245A24242523\"&gt;HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5A225A24582623\"&gt;TMF VINDY 451 (P22905013)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5A265822262D\"&gt;DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B222122232025\"&gt;RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5A232522272323\"&gt;RHF 964 VICTRA 4057 (P22857143)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B252626222320\"&gt;PAF VICTORIA 2J85 (P21643646)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C235A2427222E\"&gt;TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B232722232F2E\"&gt;CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5924252127212D\"&gt;NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B595826242F202D\"&gt;NJW FROSTY 1Y (P23345979)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C595859232625\"&gt;KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5923232725222F\"&gt;KBCR 434V TRADER 535 (P23872357)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5B5A20252122\"&gt;KBCR DOMINETTE 9112 (P42008924)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5923232725212D\"&gt;KBCR A58 DOMINETTE 523 {DOD} (P23872369)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C235A2427222E\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+7.8&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+0.3&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+63&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+89&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+31&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+62&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-3.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.31&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.37&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+1.4&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;-0.015&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 24&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 20&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 20&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 33&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.73&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.93&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.91&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.90&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.74&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.00&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.63&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.76&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.80&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.78&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.78&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.68&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.69&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.66&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Traits Observed:&amp;nbsp;&lt;/strong&gt;BWT,WWT,YWT,FAT,REA,IMF,&lt;img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" /&gt;&amp;nbsp;&lt;br /&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Statistics:&lt;/strong&gt;&amp;nbsp;&lt;br /&gt;&lt;strong&gt;Statistics:BW:&lt;/strong&gt;517/3175,&lt;strong&gt;WW:&lt;/strong&gt;413/2563,&lt;strong&gt;YW:&lt;/strong&gt;190/1011,&lt;strong&gt;SC:&lt;/strong&gt;60/245,&lt;strong&gt;Dgt:&lt;/strong&gt;318,&lt;strong&gt;SCAN:&lt;/strong&gt;599,&lt;strong&gt;HARVEST:&lt;/strong&gt;3,&lt;strong&gt;MCW:&lt;/strong&gt;83,&lt;strong&gt;UDDR:&lt;/strong&gt;62/216&lt;/center&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)','description','inherit','closed','closed','','186-revision-v1','','','2017-03-03 16:40:03','2017-03-03 16:40:03','',186,'http://new.kclgenetics.com/186-revision-v1/',0,'revision','',0),(190,1,'2017-03-03 16:41:54','2017-03-03 16:41:54','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned by: Hoffman Ranch Thedford, NE</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','H WCC/WB 668 WYARNO 9500 ET {DLF,HYF,IEF} (P43026011)','description','publish','closed','closed','','h-wccwb-668-wyarno-9500-et-dlfhyfief-p43026011','','','2017-03-03 16:41:54','2017-03-03 16:41:54','',0,'http://new.kclgenetics.com/?p=190',0,'post','',0),(191,1,'2017-03-03 16:41:29','2017-03-03 16:41:29','','H WCCWB 668 WYARNO 9500 ET','','inherit','closed','closed','','h-wccwb-668-wyarno-9500-et','','','2017-03-03 16:41:29','2017-03-03 16:41:29','',190,'http://new.kclgenetics.com/wp-content/uploads/2017/03/H-WCCWB-668-WYARNO-9500-ET.jpg',0,'attachment','image/jpeg',0),(192,1,'2017-03-03 16:41:54','2017-03-03 16:41:54','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned by: Hoffman Ranch Thedford, NE</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','H WCC/WB 668 WYARNO 9500 ET {DLF,HYF,IEF} (P43026011)','description','inherit','closed','closed','','190-revision-v1','','','2017-03-03 16:41:54','2017-03-03 16:41:54','',190,'http://new.kclgenetics.com/190-revision-v1/',0,'revision','',0),(193,1,'2017-03-03 16:42:53','2017-03-03 16:42:53','&nbsp;\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 618px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td align=\"right\" valign=\"middle\"></td>\r\n<td align=\"left\" valign=\"middle\"></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C275A25262524\">L1 DOMINO 03396 {CHB,DLF,IEF} (42402161)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5C23262325262221\">L1 DOMINETTE 96893 {DOD} (19574255)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C25232225242D\">CL 1 DOMINO 637S 1ET {CHB} (42692477)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5958582025\">CL 1 DOMINO 888H 1ET (41011071)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2558582122\">CL1 DOMINETTE 118L (42150309)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A5926272221\">CL 1 DOMINETTE 903J (41113155)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C22222221222F\">CL 1 DOMINO 955W {CHB,DLF,HYF,IEF} (42982422)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A592626202D\">CL 1 DOMINO 9126J 1ET {SOD,CHB,DLF,IEF} (41113279)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582222252723\">CL 1 DOMINO 3162N {CHB,DLF,IEF} (42385289)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A5926252722\">CL 1 DOMINETTE 9151J (41113304)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C262325582722\">CL 1 DOMINETTE 5152R {DLF,HYF,IEF} (42571159)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2558262624\">CL1 DOMINO 182L 1ET {DLF,IEF} (42157801)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582222252E2F\">CL 1 DOMINETTE 392N (42385376)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2558272725\">CL1 DOMINETTTE 122L (42150347)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C22222221222F\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+68</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+109</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+41</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+75</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-2.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+113</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+0.48</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 35</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.88</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.83</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.82</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.56</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.60</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.57</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.55</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.68</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.58</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.59</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.55</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,SC,FAT,REA,IMF,<img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>76/619,<strong>WW:</strong>65/524,<strong>YW:</strong>41/283,<strong>SC:</strong>24/95,<strong>Dgt:</strong>84,<strong>SCAN:</strong>299,<strong>MCW:</strong>11,<strong>UDDR:</strong>29/40</center>','CL 1 DOMINO 955W {DLF,HYF,IEF} (42982422)','description','publish','closed','closed','','cl-1-domino-955w-dlfhyfief-42982422','','','2018-04-21 22:50:23','2018-04-21 22:50:23','',0,'http://new.kclgenetics.com/?p=193',0,'post','',0),(529,1,'2018-04-21 22:50:23','2018-04-21 22:50:23','&nbsp;\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 618px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td align=\"right\" valign=\"middle\"></td>\r\n<td align=\"left\" valign=\"middle\"></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C275A25262524\">L1 DOMINO 03396 {CHB,DLF,IEF} (42402161)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5C23262325262221\">L1 DOMINETTE 96893 {DOD} (19574255)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C25232225242D\">CL 1 DOMINO 637S 1ET {CHB} (42692477)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5958582025\">CL 1 DOMINO 888H 1ET (41011071)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2558582122\">CL1 DOMINETTE 118L (42150309)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A5926272221\">CL 1 DOMINETTE 903J (41113155)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C22222221222F\">CL 1 DOMINO 955W {CHB,DLF,HYF,IEF} (42982422)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A592626202D\">CL 1 DOMINO 9126J 1ET {SOD,CHB,DLF,IEF} (41113279)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582222252723\">CL 1 DOMINO 3162N {CHB,DLF,IEF} (42385289)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A5926252722\">CL 1 DOMINETTE 9151J (41113304)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C262325582722\">CL 1 DOMINETTE 5152R {DLF,HYF,IEF} (42571159)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2558262624\">CL1 DOMINO 182L 1ET {DLF,IEF} (42157801)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582222252E2F\">CL 1 DOMINETTE 392N (42385376)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2558272725\">CL1 DOMINETTTE 122L (42150347)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C22222221222F\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+68</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+109</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+41</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+75</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-2.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+113</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+0.48</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 35</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.88</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.83</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.82</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.56</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.60</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.57</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.55</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.68</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.58</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.59</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.55</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,SC,FAT,REA,IMF,<img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>76/619,<strong>WW:</strong>65/524,<strong>YW:</strong>41/283,<strong>SC:</strong>24/95,<strong>Dgt:</strong>84,<strong>SCAN:</strong>299,<strong>MCW:</strong>11,<strong>UDDR:</strong>29/40</center>','CL 1 DOMINO 955W {DLF,HYF,IEF} (42982422)','description','inherit','closed','closed','','193-revision-v1','','','2018-04-21 22:50:23','2018-04-21 22:50:23','',193,'http://kclgenetics.com/193-revision-v1/',0,'revision','',0),(194,1,'2017-03-03 16:42:25','2017-03-03 16:42:25','','CL 1 DOMINO 955W','','inherit','closed','closed','','cl-1-domino-955w','','','2017-03-03 16:42:25','2017-03-03 16:42:25','',193,'http://new.kclgenetics.com/wp-content/uploads/2017/03/CL-1-DOMINO-955W.jpg',0,'attachment','image/jpeg',0),(252,1,'2017-03-06 21:05:21','2017-03-06 21:05:21','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 618px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td align=\"right\" valign=\"middle\"></td>\r\n<td align=\"left\" valign=\"middle\"></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C275A25262524\">L1 DOMINO 03396 {CHB,DLF,IEF} (42402161)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5C23262325262221\">L1 DOMINETTE 96893 {DOD} (19574255)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C25232225242D\">CL 1 DOMINO 637S 1ET {CHB} (42692477)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5958582025\">CL 1 DOMINO 888H 1ET (41011071)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2558582122\">CL1 DOMINETTE 118L (42150309)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A5926272221\">CL 1 DOMINETTE 903J (41113155)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C22222221222F\">CL 1 DOMINO 955W {CHB,DLF,HYF,IEF} (42982422)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A592626202D\">CL 1 DOMINO 9126J 1ET {SOD,CHB,DLF,IEF} (41113279)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582222252723\">CL 1 DOMINO 3162N {CHB,DLF,IEF} (42385289)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A5926252722\">CL 1 DOMINETTE 9151J (41113304)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C262325582722\">CL 1 DOMINETTE 5152R {DLF,HYF,IEF} (42571159)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2558262624\">CL1 DOMINO 182L 1ET {DLF,IEF} (42157801)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582222252E2F\">CL 1 DOMINETTE 392N (42385376)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2558272725\">CL1 DOMINETTTE 122L (42150347)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C22222221222F\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+68</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+109</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+41</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+75</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-2.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+113</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.22</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+0.48</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 14</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 35</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.88</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.83</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.82</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.56</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.60</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.57</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.55</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.68</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.58</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.59</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.55</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,SC,FAT,REA,IMF,<img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>76/619,<strong>WW:</strong>65/524,<strong>YW:</strong>41/283,<strong>SC:</strong>24/95,<strong>Dgt:</strong>84,<strong>SCAN:</strong>299,<strong>MCW:</strong>11,<strong>UDDR:</strong>29/40</center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CL 1 DOMINO 955W {DLF,HYF,IEF} (42982422)','description','inherit','closed','closed','','193-revision-v1','','','2017-03-06 21:05:21','2017-03-06 21:05:21','',193,'http://new.kclgenetics.com/193-revision-v1/',0,'revision','',0),(195,1,'2017-03-03 16:42:53','2017-03-03 16:42:53','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 618px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C275A25262524\"&gt;L1 DOMINO 03396 {CHB,DLF,IEF} (42402161)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5C23262325262221\"&gt;L1 DOMINETTE 96893 {DOD} (19574255)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C25232225242D\"&gt;CL 1 DOMINO 637S 1ET {CHB} (42692477)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5B5958582025\"&gt;CL 1 DOMINO 888H 1ET (41011071)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A2558582122\"&gt;CL1 DOMINETTE 118L (42150309)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5A5926272221\"&gt;CL 1 DOMINETTE 903J (41113155)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C22222221222F\"&gt;CL 1 DOMINO 955W {CHB,DLF,HYF,IEF} (42982422)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5A592626202D\"&gt;CL 1 DOMINO 9126J 1ET {SOD,CHB,DLF,IEF} (41113279)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C582222252723\"&gt;CL 1 DOMINO 3162N {CHB,DLF,IEF} (42385289)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5A5926252722\"&gt;CL 1 DOMINETTE 9151J (41113304)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C262325582722\"&gt;CL 1 DOMINETTE 5152R {DLF,HYF,IEF} (42571159)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A2558262624\"&gt;CL1 DOMINO 182L 1ET {DLF,IEF} (42157801)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C582222252E2F\"&gt;CL 1 DOMINETTE 392N (42385376)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A2558272725\"&gt;CL1 DOMINETTTE 122L (42150347)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C22222221222F\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.7&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+68&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+109&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+41&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+75&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-2.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+113&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+0.48&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 35&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.88&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.83&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.82&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.56&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.60&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.57&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.55&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.68&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.58&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.59&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.55&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Traits Observed:&amp;nbsp;&lt;/strong&gt;BWT,WWT,YWT,SC,FAT,REA,IMF,&lt;img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" /&gt;&amp;nbsp;&lt;br /&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Statistics:&lt;/strong&gt;&amp;nbsp;&lt;br /&gt;&lt;strong&gt;Statistics:BW:&lt;/strong&gt;76/619,&lt;strong&gt;WW:&lt;/strong&gt;65/524,&lt;strong&gt;YW:&lt;/strong&gt;41/283,&lt;strong&gt;SC:&lt;/strong&gt;24/95,&lt;strong&gt;Dgt:&lt;/strong&gt;84,&lt;strong&gt;SCAN:&lt;/strong&gt;299,&lt;strong&gt;MCW:&lt;/strong&gt;11,&lt;strong&gt;UDDR:&lt;/strong&gt;29/40&lt;/center&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','CL 1 DOMINO 955W {DLF,HYF,IEF} (42982422)','description','inherit','closed','closed','','193-revision-v1','','','2017-03-03 16:42:53','2017-03-03 16:42:53','',193,'http://new.kclgenetics.com/193-revision-v1/',0,'revision','',0),(197,1,'2017-03-03 17:09:11','2017-03-03 17:09:11','','cover_groupbanner','','inherit','closed','closed','','cover_groupbanner','','','2017-03-03 17:09:11','2017-03-03 17:09:11','',44,'http://new.kclgenetics.com/wp-content/uploads/2017/03/cover_groupbanner.png',0,'attachment','image/png',0),(198,1,'2017-03-03 17:09:20','2017-03-03 17:09:20','[et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/cover_groupbanner.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 17:09:20','2017-03-03 17:09:20','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(199,1,'2017-03-03 17:09:54','2017-03-03 17:09:54','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/cover_groupbanner.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 17:09:54','2017-03-03 17:09:54','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(200,1,'2017-03-03 17:10:19','2017-03-03 17:10:19','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/cover_groupbanner.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 17:10:19','2017-03-03 17:10:19','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(201,1,'2017-03-03 17:10:44','2017-03-03 17:10:44','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/cover_groupbanner.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 17:10:44','2017-03-03 17:10:44','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(202,1,'2017-03-03 17:14:56','2017-03-03 17:14:56','','KCL Cattle in The Filed','Attention on Momma...','inherit','closed','closed','','banner','','','2018-05-02 01:48:33','2018-05-02 01:48:33','',44,'http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg',0,'attachment','image/jpeg',0),(203,1,'2017-03-03 17:15:04','2017-03-03 17:15:04','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 17:15:04','2017-03-03 17:15:04','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(204,1,'2017-03-03 17:16:30','2017-03-03 17:16:30','','herefords-sale','','inherit','closed','closed','','herefords-sale','','','2017-03-03 17:16:30','2017-03-03 17:16:30','',44,'http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg',0,'attachment','image/jpeg',0),(205,1,'2017-03-03 17:28:07','2017-03-03 17:28:07','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017 \" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 17:28:07','2017-03-03 17:28:07','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(207,1,'2017-03-03 17:29:28','2017-03-03 17:29:28','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 17:29:28','2017-03-03 17:29:28','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(206,1,'2017-03-03 17:28:43','2017-03-03 17:28:43','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 17:28:43','2017-03-03 17:28:43','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(208,1,'2017-03-03 17:30:22','2017-03-03 17:30:22','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/sale.logo_.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease join us May 21, 2016 @ 12:oo pm at the ranch for the 6th Annual Hereford Alliance Sale.\r\n\r\nThe pre-sale social will be help May 20, 2016  and cattle will be available for viewing at any time.\r\n\r\nContact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.\r\n\r\nLet us know if you would like to be on our catalogue mailing list.\r\n\r\n<span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-03 17:30:22','2017-03-03 17:30:22','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(210,1,'2017-03-03 17:33:44','2017-03-03 17:33:44','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/sale.logo_.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease join us May 21, 2016 @ 12:oo pm at the ranch for the 6th Annual Hereford Alliance Sale.\r\n\r\nThe pre-sale social will be help May 20, 2016  and cattle will be available for viewing at any time.\r\n\r\nContact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.\r\n\r\nLet us know if you would like to be on our catalogue mailing list.\r\n\r\n<span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-03 17:33:44','2017-03-03 17:33:44','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(209,1,'2017-03-03 17:33:23','2017-03-03 17:33:23','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/sale.logo_.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease join us May 21, 2016 @ 12:oo pm at the ranch for the 6th Annual Hereford Alliance Sale.\r\n\r\nThe pre-sale social will be help May 20, 2016  and cattle will be available for viewing at any time.\r\n\r\nContact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.\r\n\r\nLet us know if you would like to be on our catalogue mailing list.\r\n\r\n<span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"3\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"off\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"off\" auto_ignore_hover=\"off\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"4\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"off\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"off\" auto_ignore_hover=\"off\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-03 17:33:23','2017-03-03 17:33:23','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(343,1,'2017-03-07 04:01:42','2017-03-07 04:01:42','[et_pb_section bb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" animation=\"bottom\" sticky=\"on\" align=\"center\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h3>Larsons\' Running L Ranch</h3>\r\n<p>Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.</p>\r\n<p>Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.</p>\r\n<p>KCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.</p>\r\n<p>Our annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" alt=\"May 20, 2017\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\" animation=\"fade_in\" align=\"center\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" date_time=\"05/20/2017 12:00\"]\r\n\r\n\r\n\r\n[/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Section\" background_color=\"#efefef\"][et_pb_row admin_label=\"Row\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h1><strong>Latest News Posts<br />\r\n</strong></h1>\r\n\r\n[/et_pb_text][et_pb_blog admin_label=\"News\" posts_number=\"3\" include_categories=\"6\" show_author=\"off\" show_categories=\"off\" show_pagination=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h3>KCL Maternal Power</h3>\r\n\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Cows Slider\" include_categories=\"3\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h3>Bull Influence</h3>\r\n\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Bull Slider\" include_categories=\"4\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-07 04:01:42','2017-03-07 04:01:42','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(211,1,'2017-03-03 17:34:00','2017-03-03 17:34:00','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"3\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"off\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"off\" auto_ignore_hover=\"off\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"4\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"off\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"off\" auto_ignore_hover=\"off\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 17:34:00','2017-03-03 17:34:00','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(212,1,'2017-03-03 17:35:06','2017-03-03 17:35:06','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"3\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"off\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"3000\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"4\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"off\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"3000\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 17:35:06','2017-03-03 17:35:06','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(213,1,'2017-03-03 17:35:59','2017-03-03 17:35:59','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"3\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"off\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"4\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"off\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 17:35:59','2017-03-03 17:35:59','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(214,1,'2017-03-03 17:37:20','2017-03-03 17:37:20','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Cows</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"3\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"off\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Bulls</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"4\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"off\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 17:37:20','2017-03-03 17:37:20','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(215,1,'2017-03-03 17:38:18','2017-03-03 17:38:18','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Cows</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"3\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Bulls</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"4\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-03 17:38:18','2017-03-03 17:38:18','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(216,1,'2017-03-03 17:42:16','2017-03-03 17:42:16','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/Professor-Denver-2104.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" title=\"Contact Form\" custom_message=\"%%name%% %%email%% %%subject%%\" use_redirect=\"off\" success_message=\"Your message was successfully sent. We will contact you shortly.\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" /] [/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<div class=\"rt-grid-6 rt-alpha\">\r\n<div class=\"rt-block box2\">\r\n<div class=\"module-surround\">\r\n<div class=\"module-title\">\r\n<h2 class=\"title\">Contact Numbers</h2>\r\n</div>\r\n<div class=\"module-content\">\r\n<div class=\"custombox2\">\r\n\r\nRanch Office- 254-435-6063\r\n\r\nOwner- Ken Larson- 972-977-8251\r\n\r\nLee Larson- Manager- 972-824-5869\r\n\r\nJosh Lowe-Herdman- 972-310-2421\r\n\r\nRanch Address: 2793 FM 1991 - Clifton, TX 76634\r\n\r\nE-mail: runlranch@aol.com\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2017-03-03 17:42:16','2017-03-03 17:42:16','',51,'http://new.kclgenetics.com/51-revision-v1/',0,'revision','',0),(217,1,'2017-03-03 17:42:38','2017-03-03 17:42:38','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/Professor-Denver-2104.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" title=\"Contact Form\" custom_message=\"%%name%% %%email%% %%subject%%\" use_redirect=\"off\" success_message=\"Your message was successfully sent. We will contact you shortly.\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" /] [/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<div class=\"rt-grid-6 rt-alpha\">\r\n<div class=\"rt-block box2\">\r\n<div class=\"module-surround\">\r\n<div class=\"module-title\">\r\n<h2 class=\"title\">Contact Numbers</h2>\r\n</div>\r\n<div class=\"module-content\">\r\n<div class=\"custombox2\">\r\n\r\nRanch Office- 254-435-6063\r\n\r\nOwner- Ken Larson- 972-977-8251\r\n\r\nLee Larson- Manager- 972-824-5869\r\n\r\nJosh Lowe-Herdman- 972-310-2421\r\n\r\nRanch Address: 2793 FM 1991 - Clifton, TX 76634\r\n\r\nE-mail: runlranch@aol.com\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2017-03-03 17:42:38','2017-03-03 17:42:38','',51,'http://new.kclgenetics.com/51-revision-v1/',0,'revision','',0),(218,1,'2017-03-03 17:43:23','2017-03-03 17:43:23','','9500','','inherit','closed','closed','','9500','','','2017-03-03 17:43:23','2017-03-03 17:43:23','',51,'http://new.kclgenetics.com/wp-content/uploads/2017/03/9500.jpg',0,'attachment','image/jpeg',0),(219,1,'2017-03-03 17:43:34','2017-03-03 17:43:34','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/Professor-Denver-2104.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/9500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" title=\"Contact Form\" custom_message=\"%%name%% %%email%% %%subject%%\" use_redirect=\"off\" success_message=\"Your message was successfully sent. We will contact you shortly.\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" /] [/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<div class=\"rt-grid-6 rt-alpha\">\r\n<div class=\"rt-block box2\">\r\n<div class=\"module-surround\">\r\n<div class=\"module-title\">\r\n<h2 class=\"title\">Contact Numbers</h2>\r\n</div>\r\n<div class=\"module-content\">\r\n<div class=\"custombox2\">\r\n\r\nRanch Office- 254-435-6063\r\n\r\nOwner- Ken Larson- 972-977-8251\r\n\r\nLee Larson- Manager- 972-824-5869\r\n\r\nJosh Lowe-Herdman- 972-310-2421\r\n\r\nRanch Address: 2793 FM 1991 - Clifton, TX 76634\r\n\r\nE-mail: runlranch@aol.com\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2017-03-03 17:43:34','2017-03-03 17:43:34','',51,'http://new.kclgenetics.com/51-revision-v1/',0,'revision','',0),(220,1,'2017-03-04 00:32:31','2017-03-04 00:32:31','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/sale.logo_.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:oo pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p style=\"text-align: center;\">Contact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-04 00:32:31','2017-03-04 00:32:31','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(221,1,'2017-03-04 00:35:13','2017-03-04 00:35:13','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/sale.logo_.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:oo pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p style=\"text-align: center;\">Contact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"runlranch@aol.com\" title=\"Contact KLC Genetics at the 2017 Hereford Alliance Sale\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" use_redirect=\"off\" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" /] [/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-04 00:35:13','2017-03-04 00:35:13','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(222,1,'2017-03-04 00:39:59','2017-03-04 00:39:59','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/sale.logo_.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:oo pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p style=\"text-align: center;\">Contact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"runlranch@aol.com\" title=\"Contact KLC Genetics at the 2017 Hereford Alliance Sale\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" use_redirect=\"off\" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" /] [/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/9500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-04 00:39:59','2017-03-04 00:39:59','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(228,1,'2017-03-04 00:49:48','2017-03-04 00:49:48','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs-1.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:oo pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p style=\"text-align: center;\">Contact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"runlranch@aol.com\" title=\"Contact KLC Genetics at the 2017 Hereford Alliance Sale\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" use_redirect=\"off\" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" /] [/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/9500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-04 00:49:48','2017-03-04 00:49:48','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(225,1,'2017-03-04 00:47:54','2017-03-04 00:47:54','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/sale.logo_.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:oo pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p style=\"text-align: center;\">Contact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"runlranch@aol.com\" title=\"Contact KLC Genetics at the 2017 Hereford Alliance Sale\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" use_redirect=\"off\" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" /] [/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/9500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-04 00:47:54','2017-03-04 00:47:54','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(224,1,'2017-03-04 00:47:38','2017-03-04 00:47:38','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:oo pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p style=\"text-align: center;\">Contact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"runlranch@aol.com\" title=\"Contact KLC Genetics at the 2017 Hereford Alliance Sale\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" use_redirect=\"off\" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" /] [/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/9500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-04 00:47:38','2017-03-04 00:47:38','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(226,1,'2017-03-04 00:48:12','2017-03-04 00:48:12','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:oo pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p style=\"text-align: center;\">Contact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"runlranch@aol.com\" title=\"Contact KLC Genetics at the 2017 Hereford Alliance Sale\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" use_redirect=\"off\" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" /] [/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/9500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-04 00:48:12','2017-03-04 00:48:12','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(229,1,'2017-03-04 00:51:01','2017-03-04 00:51:01','','hs','','inherit','closed','closed','','hs','','','2017-03-04 00:51:01','2017-03-04 00:51:01','',54,'http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg',0,'attachment','image/jpeg',0),(230,1,'2017-03-04 00:51:07','2017-03-04 00:51:07','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:oo pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p style=\"text-align: center;\">Contact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"runlranch@aol.com\" title=\"Contact KLC Genetics at the 2017 Hereford Alliance Sale\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" use_redirect=\"off\" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" /] [/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/9500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-04 00:51:07','2017-03-04 00:51:07','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(231,1,'2017-03-04 00:52:20','2017-03-04 00:52:20','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\" header_font=\"Raleway|||on|\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:oo pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p style=\"text-align: center;\">Contact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"runlranch@aol.com\" title=\"Contact KLC Genetics at the 2017 Hereford Alliance Sale\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" use_redirect=\"off\" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" /] [/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/9500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-04 00:52:20','2017-03-04 00:52:20','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(311,1,'2017-03-07 03:21:56','2017-03-07 03:21:56','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" animation=\"off\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][et_pb_countdown_timer title=\"Count Down to Our 7th Annual Production Sale\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" admin_label=\"Countdown Timer\" header_font=\"Raleway|on||on|\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\"]<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:00 pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017&nbsp; and cattle will be available for viewing at any time.</strong></p>\n<p style=\"text-align: center;\" class=\"\"><strong>Sale will be broadcast online at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a></strong></p>\n<p style=\"text-align: center;\" class=\"\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a>&nbsp;</strong></p>\n<p style=\"text-align: center;\">Contact Us with&nbsp;any questions.</p>\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>&nbsp; &nbsp; &nbsp; 972-824-5869</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"runlranch@aol.com\" title=\"Contact Running L Ranch to get your 2017 Hereford Alliance Sale catalog.\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/9500.jpg\" animation=\"right\" admin_label=\"Image\" use_border_color=\"on\" border_color=\"#11770b\" border_width=\"3px\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-07 03:21:56','2017-03-07 03:21:56','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(232,1,'2017-03-04 00:53:38','2017-03-04 00:53:38','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"Time to biggest sale of the year\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#7EBEC5\" header_font=\"Raleway|on||on|\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:oo pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p style=\"text-align: center;\">Contact Us or one of the Alliance members McMullin Ranch, Hidden Oaks Ranch, Spear Head Ranch, Glaze Herefords, Buck Cattle Co., Hoffman Ranch, or  Topp Herefords for any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"runlranch@aol.com\" title=\"Contact KLC Genetics at the 2017 Hereford Alliance Sale\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" use_redirect=\"off\" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" /] [/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/9500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-04 00:53:38','2017-03-04 00:53:38','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(233,1,'2017-03-04 00:59:30','2017-03-04 00:59:30','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Bull Influence</h3>\r\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these important characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted in the most desolate of conditions. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally does not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"100\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" include_categories=\"4\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Currently used Bulls','','inherit','closed','closed','','62-revision-v1','','','2017-03-04 00:59:30','2017-03-04 00:59:30','',62,'http://new.kclgenetics.com/62-revision-v1/',0,'revision','',0),(234,1,'2017-03-04 01:04:33','2017-03-04 01:04:33','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>KCL Donor Cows</h3>\r\nSome text probably?\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"100\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" include_categories=\"3\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2017-03-04 01:04:33','2017-03-04 01:04:33','',60,'http://new.kclgenetics.com/60-revision-v1/',0,'revision','',0),(235,1,'2017-03-04 01:07:15','2017-03-04 01:07:15','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Cows</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"3\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Bulls</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Post Slider\" include_categories=\"4\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-04 01:07:15','2017-03-04 01:07:15','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(236,1,'2017-03-04 01:10:28','2017-03-04 01:10:28','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>KCL Donor Cows</h3>\r\nSome text probably?\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"100\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" include_categories=\"3\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2017-03-04 01:10:28','2017-03-04 01:10:28','',60,'http://new.kclgenetics.com/60-revision-v1/',0,'revision','',0),(237,1,'2017-03-04 01:10:53','2017-03-04 01:10:53','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Bull Influence</h3>\r\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these important characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted in the most desolate of conditions. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally does not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"100\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" include_categories=\"4\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Currently used Bulls','','inherit','closed','closed','','62-revision-v1','','','2017-03-04 01:10:53','2017-03-04 01:10:53','',62,'http://new.kclgenetics.com/62-revision-v1/',0,'revision','',0),(238,1,'2017-03-04 01:11:41','2017-03-04 01:11:41','','26u','','inherit','closed','closed','','26u','','','2017-03-04 01:11:41','2017-03-04 01:11:41','',62,'http://new.kclgenetics.com/wp-content/uploads/2017/03/26u.jpg',0,'attachment','image/jpeg',0),(239,1,'2017-03-04 01:11:50','2017-03-04 01:11:50','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Bull Influence</h3>\r\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these important characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted in the most desolate of conditions. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally does not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/26u.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"100\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" include_categories=\"4\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Currently used Bulls','','inherit','closed','closed','','62-revision-v1','','','2017-03-04 01:11:50','2017-03-04 01:11:50','',62,'http://new.kclgenetics.com/62-revision-v1/',0,'revision','',0),(349,1,'2017-03-07 04:12:03','2017-03-07 04:12:03','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>Bull Influence</h3>\n<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these important characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted in the most desolate of conditions. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally does not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-WPF-THE-PROFESSOR-7110ET.jpg\" animation=\"right\" admin_label=\"Image\" sticky=\"on\" alt=\"The Professor\" use_border_color=\"on\" border_color=\"#0a0a0a\" border_width=\"2px\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"100\" include_categories=\"4\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"Blog\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Currently used Bulls','','inherit','closed','closed','','62-revision-v1','','','2017-03-07 04:12:03','2017-03-07 04:12:03','',62,'http://new.kclgenetics.com/62-revision-v1/',0,'revision','',0),(240,1,'2017-03-04 01:12:01','2017-03-04 01:12:01','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Bull Influence</h3>\r\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these important characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted in the most desolate of conditions. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally does not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/26u.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"100\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" include_categories=\"4\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Currently used Bulls','','inherit','closed','closed','','62-revision-v1','','','2017-03-04 01:12:01','2017-03-04 01:12:01','',62,'http://new.kclgenetics.com/62-revision-v1/',0,'revision','',0),(241,1,'2017-03-04 01:12:39','2017-03-04 01:12:39','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Bull Influence</h3>\r\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these important characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted in the most desolate of conditions. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally does not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/26u.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"100\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" include_categories=\"4\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Currently used Bulls','','inherit','closed','closed','','62-revision-v1','','','2017-03-04 01:12:39','2017-03-04 01:12:39','',62,'http://new.kclgenetics.com/62-revision-v1/',0,'revision','',0),(242,1,'2017-03-04 01:23:19','2017-03-04 01:23:19','','genetics-background','','inherit','closed','closed','','genetics-background','','','2017-03-04 01:23:19','2017-03-04 01:23:19','',0,'http://new.kclgenetics.com/wp-content/uploads/2017/03/genetics-background.jpg',0,'attachment','image/jpeg',0),(245,1,'2017-03-04 01:29:10','2017-03-04 01:29:10','','genetics-background-compressed','','inherit','closed','closed','','genetics-background-compressed','','','2017-03-04 01:29:10','2017-03-04 01:29:10','',0,'http://new.kclgenetics.com/wp-content/uploads/2017/03/genetics-background-compressed.jpg',0,'attachment','image/jpeg',0),(251,1,'2017-03-06 21:05:06','2017-03-06 21:05:06','<p>[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 618px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C275A25262524\"&gt;L1 DOMINO 03396 {CHB,DLF,IEF} (42402161)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5C23262325262221\"&gt;L1 DOMINETTE 96893 {DOD} (19574255)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C25232225242D\"&gt;CL 1 DOMINO 637S 1ET {CHB} (42692477)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5B5958582025\"&gt;CL 1 DOMINO 888H 1ET (41011071)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A2558582122\"&gt;CL1 DOMINETTE 118L (42150309)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5A5926272221\"&gt;CL 1 DOMINETTE 903J (41113155)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C22222221222F\"&gt;CL 1 DOMINO 955W {CHB,DLF,HYF,IEF} (42982422)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5A592626202D\"&gt;CL 1 DOMINO 9126J 1ET {SOD,CHB,DLF,IEF} (41113279)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C582222252723\"&gt;CL 1 DOMINO 3162N {CHB,DLF,IEF} (42385289)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B595B5A5926252722\"&gt;CL 1 DOMINETTE 9151J (41113304)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C262325582722\"&gt;CL 1 DOMINETTE 5152R {DLF,HYF,IEF} (42571159)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A2558262624\"&gt;CL1 DOMINO 182L 1ET {DLF,IEF} (42157801)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C582222252E2F\"&gt;CL 1 DOMINETTE 392N (42385376)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C5A2558272725\"&gt;CL1 DOMINETTTE 122L (42150347)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2015 EPDS&amp;nbsp;&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C22222221222F\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Udder&lt;br /&gt;Suspension&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Teat&lt;br /&gt;Size&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+3.7&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+68&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+109&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+41&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+75&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-2.6&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+113&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+0.48&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;+$ 35&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.88&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.83&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.82&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.56&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.60&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.57&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.55&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.68&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.58&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.59&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.55&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"&gt;&lt;center&gt;Breed Avg. EPDs for 2013 Born Calves&lt;span&gt;&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2323&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223\"&gt;Click for Percentiles&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.9&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;3.3&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;47&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;77&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;43&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;87&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;1.13&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.8&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.003&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.30&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;0.07&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;22&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Traits Observed:&amp;nbsp;&lt;/strong&gt;BWT,WWT,YWT,SC,FAT,REA,IMF,&lt;img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" /&gt;&amp;nbsp;&lt;br /&gt;&lt;strong style=\"font-size: 14.4px;\"&gt;Statistics:&lt;/strong&gt;&amp;nbsp;&lt;br /&gt;&lt;strong&gt;Statistics:BW:&lt;/strong&gt;76/619,&lt;strong&gt;WW:&lt;/strong&gt;65/524,&lt;strong&gt;YW:&lt;/strong&gt;41/283,&lt;strong&gt;SC:&lt;/strong&gt;24/95,&lt;strong&gt;Dgt:&lt;/strong&gt;84,&lt;strong&gt;SCAN:&lt;/strong&gt;299,&lt;strong&gt;MCW:&lt;/strong&gt;11,&lt;strong&gt;UDDR:&lt;/strong&gt;29/40&lt;/center&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]</p>','CL 1 DOMINO 955W {DLF,HYF,IEF} (42982422)','description','inherit','closed','closed','','193-autosave-v1','','','2017-03-06 21:05:06','2017-03-06 21:05:06','',193,'http://new.kclgenetics.com/193-autosave-v1/',0,'revision','',0),(255,1,'2017-03-06 21:07:04','2017-03-06 21:07:04','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 742px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A24242523\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A265822262D\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5A232522272323\">RHF 964 VICTRA 4057 (P22857143)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C235A2427222E\">TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5924252127212D\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C595859232625\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B5A20252122\">KBCR DOMINETTE 9112 (P42008924)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B582227582E2F\">TH 512X 719T PLAYMAKER 14Z {DLF,HYF,IEF} (P43294102)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A24242523\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A265822262D\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5A232522272323\">RHF 964 VICTRA 4057 (P22857143)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5A5823212423\">TH 122 71I DOMINETTE 512X ET (P43122877)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5924252127212D\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C595859232625\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B5A20252122\">KBCR DOMINETTE 9112 (P42008924)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B582227582E2F\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+2.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+72</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+107</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+64</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-1.1</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+104</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.27</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.31</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.4</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.018</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.08</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 23</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 18</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 36</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.37</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.64</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.48</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.25</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.40</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">P</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.37</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.32</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.29</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,SC,FAT,REA,IMF,<img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>5/46,<strong>WW:</strong>3/13</center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TH 512X 719T PLAYMAKER 14Z {DLF,HYF,IEF} (P43294102)','description','inherit','closed','closed','','180-revision-v1','','','2017-03-06 21:07:04','2017-03-06 21:07:04','',180,'http://new.kclgenetics.com/180-revision-v1/',0,'revision','',0),(264,1,'2017-03-06 21:14:12','2017-03-06 21:14:12','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Owned w/ Whipering Pine Farms, Kimball, MN</strong>\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 684px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5925275820262E\"&gt;REMITALL KEYNOTE 20X {SOD,CHB} (P23631818)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5925262026232D\"&gt;REMITALL BOOMER 46B {CHB,SOD,DLF,HYF,IEF} (P23649249)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5925262026252E\"&gt;RMTLL SALLYS LASS 120X (P23649228)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Sire:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B585B585921242F\"&gt;PW VICTOR BOOMER P606 {SOD,CHB,DLF,HYF,IEF} (P24020737)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B222122232025\"&gt;RHF VICTOR 266 964 {DLF,HYF,IEF} (P21997571)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59582758222121\"&gt;PW VICTORIA 964 8114 {DLF,HYF,IEF} (P23331665)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B5B2627242722\"&gt;HVF VICTORIA 1121 05 (P21042404)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"5\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Animal:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C255A20232622\"&gt;ZF P606 MISS VICKY Z488 {DLF,HYF,IEF} (P42606181)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5B232723272224\"&gt;KILMORLIE PROSPECTER ET 96X (P21836152)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59255822252E2F\"&gt;SCF S60 PROSTPCT 215 (P23627397)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5A232125272F2F\"&gt;FLF FORCETTE S60 (P22894187)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"3\" valign=\"middle\"&gt;&lt;span style=\"font-size: xx-small;\"&gt;&lt;strong&gt;Dam:&amp;nbsp;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59242426222F24\"&gt;FHF D10 GLD PROSTPCT (P23763682)&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B595A25252F2E21\"&gt;WML STICKLER 6252 (P23154995)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td colspan=\"2\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B59275926582126\"&gt;MISS STICKLES GLD (P23413060)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td width=\"%\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"right\" valign=\"middle\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td align=\"left\" valign=\"middle\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=2420&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5B5B5A255823202022\"&gt;RS MISS GILEAD 37B (P22626874)&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;p&gt;&lt;br style=\"color: #000000; font-family: arial, sans-serif; font-size: medium; line-height: normal;\" /&gt;&lt;/p&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;th colspan=\"17\" align=\"center\" bgcolor=\"#99CC99\"&gt;SPRING 2014 EPDS&lt;/th&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"&gt;&lt;a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;amp;2=242D&amp;amp;3=5B5D26272127262E2F&amp;amp;5=5A5B255B5A2223&amp;amp;6=5A5D5C255A20232622\"&gt;&lt;img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Direct&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Birth&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Weaning&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Yearling&lt;br /&gt;Wt&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Milk&lt;br /&gt;&amp;amp;&lt;br /&gt;Growth&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Calv.&lt;br /&gt;Ease&lt;br /&gt;Mat.&lt;br /&gt;(%)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Mature&lt;br /&gt;Cow&lt;br /&gt;Weight&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Scrotal&lt;br /&gt;Circ.&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Fat&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Rib&lt;br /&gt;Eye&lt;br /&gt;Area&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;Marbling&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BMI&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CEZ&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;BII&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\"&gt;CHB&lt;br /&gt;Index&lt;br /&gt;($)&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;EPD&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-2.2&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+4.1&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+38&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+54&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+14&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+33&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-2.0&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+55&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.5&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.059&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.44&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+0.19&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 15&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 12&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 17&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;+$ 16&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\"&gt;Acc&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.48&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.39&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.42&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.32&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.28&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.36&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.20&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.29&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;.25&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\"&gt;-&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;td style=\"font-size: 0.9em;\" colspan=\"17\" bgcolor=\"#99CC99\"&gt;&amp;nbsp;&lt;/td&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tr&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/tbody&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/table&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','ZF P606 MISS VICKY Z488 {DLF,HYF,IEF} (P42606181)','description','inherit','closed','closed','','151-revision-v1','','','2017-03-06 21:14:12','2017-03-06 21:14:12','',151,'http://new.kclgenetics.com/151-revision-v1/',0,'revision','',0),(280,1,'2017-03-06 21:30:53','2017-03-06 21:30:53','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 343px; width: 854px;\" align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">REMITALL BOOMER 46B {SOD,DLF,HYF,IEF} (P23649249)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td colspan=\"2\" align=\"left\" valign=\"middle\">CS BOOMER 29F {SOD,DLF,HYF,IEF} (P23925982)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">CS MISS 1ST FLAG 21A {DOD,DLF,IEF} (P23559479)</td>\n</tr>\n<tr>\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Sire:&nbsp;STAR OBF BOGART 5L {SOD,CHB,DLF,HYF,IEF} (P42142971)</strong></span></td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">CIRCLE-D WRANGLER 832W {CHB,SOD,HYF} (P21837588)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td colspan=\"2\" align=\"left\" valign=\"middle\">NJW 1Y LARIAT 41E (P23839464)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">NJW FROSTY 1Y (P23345979)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">WTK 55Y BOND 75A {SOD,DLF,HYF,IEF} (P21839536)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td colspan=\"2\" align=\"left\" valign=\"middle\">WTK 75A CONTINENTAL 66F (P42009650)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">WTK 119A CARLOTTA 66C (P42009648)</td>\n</tr>\n<tr>\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td colspan=\"3\" align=\"left\" valign=\"middle\"><span style=\"font-size: 12pt;\"><strong>Dam:&nbsp;GHC MISS CARLA 35J {DLF,HYF,IEF} (P42126403)</strong></span></td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">KLMRLE 452M REDEYE 127U (P21837130)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td colspan=\"2\" align=\"left\" valign=\"middle\">GL 127U KAREN 25Y (P42126402)</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\n<td align=\"left\" valign=\"middle\">KLONDIKE KAREN 895U (P23093993)</td>\n</tr>\n</tbody>\n</table>\n<p class=\"\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3E3F292A&amp;2=232F50&amp;3=56&amp;5=2B3C2B3C3A&amp;6=5A5D5C2323232F2E26&amp;9=515B5827\">CLICK FOR CURRENT EPDS</a></p>\n<p class=\"et-fb-mce-line-break-holder\" style=\"text-align: center;\"></p>\n<p><br/></p>\n<p><br/></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','STAR KCL 5L CARLITA 28U {DLF,HYF,IEF} (P42872275)','description','inherit','closed','closed','','139-revision-v1','','','2017-03-06 21:30:53','2017-03-06 21:30:53','',139,'http://new.kclgenetics.com/139-revision-v1/',0,'revision','',0),(336,1,'2017-03-07 03:52:55','2017-03-07 03:52:55','[et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" animation=\"bottom\" sticky=\"on\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\" animation=\"fade_in\" align=\"center\" admin_label=\"Image\" alt=\"May 20, 2017\"] [/et_pb_image][et_pb_countdown_timer title=\"May 20 2017\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" admin_label=\"Section\"][et_pb_row parallax_method_1=\"off\" admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"off\"][et_pb_text admin_label=\"Text\"]\r\n<h1><strong>Latest News Posts\r\n</strong></h1>\r\n[/et_pb_text][et_pb_blog posts_number=\"3\" include_categories=\"6\" show_author=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"News\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n<h3>Featured Cows</h3>\r\n[/et_pb_text][et_pb_post_slider include_categories=\"3\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Cows Slider\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n<h3>Featured Bulls</h3>\r\n[/et_pb_text][et_pb_post_slider include_categories=\"4\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Bull Slider\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-07 03:52:55','2017-03-07 03:52:55','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(297,1,'2017-03-06 22:53:46','2017-03-06 22:53:46','[et_pb_section bb_built=\"1\" admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"News\" fullwidth=\"on\" posts_number=\"3\" include_categories=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Cows</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Cows Slider\" include_categories=\"3\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Bulls</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Bull Slider\" include_categories=\"4\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-06 22:53:46','2017-03-06 22:53:46','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(298,1,'2017-03-06 22:54:22','2017-03-06 22:54:22','[et_pb_section bb_built=\"1\" admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"News\" fullwidth=\"on\" posts_number=\"3\" include_categories=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Latest News</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Cows</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Cows Slider\" include_categories=\"3\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Bulls</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Bull Slider\" include_categories=\"4\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-06 22:54:22','2017-03-06 22:54:22','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(299,1,'2017-03-06 22:54:47','2017-03-06 22:54:47','[et_pb_section bb_built=\"1\" admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Latest News</h1>\r\n[/et_pb_text][et_pb_blog admin_label=\"News\" fullwidth=\"on\" posts_number=\"3\" include_categories=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"on\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Cows</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Cows Slider\" include_categories=\"3\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Bulls</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Bull Slider\" include_categories=\"4\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-06 22:54:47','2017-03-06 22:54:47','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(300,1,'2017-03-06 22:55:20','2017-03-06 22:55:20','[et_pb_section bb_built=\"1\" admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" background_color=\"#f2f2f2\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Latest News</h1>\r\n[/et_pb_text][et_pb_blog admin_label=\"News\" fullwidth=\"on\" posts_number=\"3\" include_categories=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"on\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Cows</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Cows Slider\" include_categories=\"3\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Bulls</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Bull Slider\" include_categories=\"4\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-06 22:55:20','2017-03-06 22:55:20','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(301,1,'2017-03-06 22:56:11','2017-03-06 22:56:11','[et_pb_section bb_built=\"1\" admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\" transparent_background=\"off\" background_color=\"#efefef\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Latest News</h1>\r\n[/et_pb_text][et_pb_blog admin_label=\"News\" fullwidth=\"on\" posts_number=\"3\" include_categories=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"on\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Cows</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Cows Slider\" include_categories=\"3\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Bulls</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Bull Slider\" include_categories=\"4\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-06 22:56:11','2017-03-06 22:56:11','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(335,1,'2017-03-07 03:51:41','2017-03-07 03:51:41','[et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" animation=\"bottom\" sticky=\"on\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>Larsons\' Running L Ranch</h3>\n<p>Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.</p>\n<p>Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.</p>\n<p>KCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.</p>\n<p>Our annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\" animation=\"fade_in\" align=\"center\" admin_label=\"Image\" alt=\"May 20, 2017\"] [/et_pb_image][et_pb_countdown_timer title=\"May 20 2017\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" admin_label=\"Section\"][et_pb_row parallax_method_1=\"off\" admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"off\"][et_pb_text admin_label=\"Text\"]<h1><strong>Latest News Posts<br />\n</strong></h1>\n[/et_pb_text][et_pb_blog posts_number=\"3\" include_categories=\"6\" show_author=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"News\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n<h3>Featured Cows</h3>\r\n[/et_pb_text][et_pb_post_slider include_categories=\"3\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Cows Slider\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n<h3>Featured Bulls</h3>\r\n[/et_pb_text][et_pb_post_slider include_categories=\"4\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Bull Slider\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-07 03:51:41','2017-03-07 03:51:41','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(302,1,'2017-03-06 22:56:50','2017-03-06 22:56:50','[et_pb_section bb_built=\"1\" admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" background_layout=\"light\" use_background_color=\"off\" background_color=\"#013a13\" date_time=\"05/20/2017 10:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#efefef\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1><strong>Latest News Posts\r\n</strong></h1>\r\n[/et_pb_text][et_pb_blog admin_label=\"News\" fullwidth=\"on\" posts_number=\"3\" include_categories=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"on\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Cows</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Cows Slider\" include_categories=\"3\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Featured Bulls</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Bull Slider\" include_categories=\"4\" orderby=\"date_asc\" show_arrows=\"on\" show_pagination=\"on\" show_more_button=\"on\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" background_layout=\"dark\" show_image=\"on\" image_placement=\"background\" parallax=\"off\" parallax_method=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" auto=\"on\" auto_ignore_hover=\"on\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" meta_letter_spacing=\"0\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"7000\" more_text=\"View\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-06 22:56:50','2017-03-06 22:56:50','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(303,1,'2017-03-06 23:04:05','2017-03-06 23:04:05','','Our Approach','','publish','closed','closed','','about-us','','','2019-05-05 05:17:44','2019-05-05 05:17:44','',0,'http://new.kclgenetics.com/?page_id=303',0,'page','',0),(852,1,'2019-05-05 05:17:44','2019-05-05 05:17:44','','Our Approach','','inherit','closed','closed','','303-revision-v1','','','2019-05-05 05:17:44','2019-05-05 05:17:44','',303,'http://kclgenetics.com/303-revision-v1/',0,'revision','',0),(564,1,'2018-04-22 02:49:26','2018-04-22 02:49:26','&nbsp;\r\n<h1>About Larson Breeding Aproach</h1>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.   Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n<img class=\"aligncenter size-medium wp-image-204\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" />','About Us','','inherit','closed','closed','','303-revision-v1','','','2018-04-22 02:49:26','2018-04-22 02:49:26','',303,'http://kclgenetics.com/303-revision-v1/',0,'revision','',0),(428,1,'2018-04-17 00:11:34','2018-04-17 00:11:34','<img class=\"aligncenter size-medium wp-image-92\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n<h1>About Larsons\' Herefords Breeding Program</h1>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.   Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n<img class=\"aligncenter size-medium wp-image-204\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" />','About Us','','inherit','closed','closed','','303-revision-v1','','','2018-04-17 00:11:34','2018-04-17 00:11:34','',303,'http://kclgenetics.com/303-revision-v1/',0,'revision','',0),(372,1,'2017-03-07 05:26:20','2017-03-07 05:26:20','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h1>About Larsons\' Herefords Breeding Program</h1>\n<p>Established in XXX we have been genetically selecting highest quality herefords for our premium selection of animals.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_countdown_timer title=\"Hereford Alliance Sale Countdown\" date_time=\"05/20/2017 00:00\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','About Us','','inherit','closed','closed','','303-revision-v1','','','2017-03-07 05:26:20','2017-03-07 05:26:20','',303,'http://new.kclgenetics.com/303-revision-v1/',0,'revision','',0),(304,1,'2017-03-06 23:04:05','2017-03-06 23:04:05','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>About Larsons\' Herefords Breeding Program</h1>\r\nEstablished in XXX we have been genetically selecting highest quality herefords for our premium selection of animals.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"/wp-content/uploads/2017/03/9500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"/wp-content/uploads/2017/03/Professor-Denver-2104.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section]','About Us','','inherit','closed','closed','','303-revision-v1','','','2017-03-06 23:04:05','2017-03-06 23:04:05','',303,'http://new.kclgenetics.com/303-revision-v1/',0,'revision','',0),(306,1,'2017-03-06 23:07:32','2017-03-06 23:07:32','','News Updates','','publish','closed','closed','','news','','','2019-05-05 05:23:09','2019-05-05 05:23:09','',0,'http://new.kclgenetics.com/?page_id=306',0,'page','',0),(451,1,'2018-04-20 00:17:38','2018-04-20 00:17:38','','News','','inherit','closed','closed','','306-revision-v1','','','2018-04-20 00:17:38','2018-04-20 00:17:38','',306,'http://kclgenetics.com/306-revision-v1/',0,'revision','',0),(452,1,'2018-04-20 00:19:11','2018-04-20 00:19:11','Check Back for Current News Releases','News','','inherit','closed','closed','','306-revision-v1','','','2018-04-20 00:19:11','2018-04-20 00:19:11','',306,'http://kclgenetics.com/306-revision-v1/',0,'revision','',0),(307,1,'2017-03-06 23:07:32','2017-03-06 23:07:32','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>KCL Genetics News Releases</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"20\" include_categories=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section]','News','','inherit','closed','closed','','306-revision-v1','','','2017-03-06 23:07:32','2017-03-06 23:07:32','',306,'http://new.kclgenetics.com/306-revision-v1/',0,'revision','',0),(308,1,'2017-03-06 23:07:46','2017-03-06 23:07:46','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>KCL Genetics News Releases</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"News\" fullwidth=\"on\" posts_number=\"20\" include_categories=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"off\" show_comments=\"off\" show_pagination=\"off\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','News','','inherit','closed','closed','','306-revision-v1','','','2017-03-06 23:07:46','2017-03-06 23:07:46','',306,'http://new.kclgenetics.com/306-revision-v1/',0,'revision','',0),(309,1,'2017-03-06 23:08:06','2017-03-06 23:08:06',' ','','','publish','closed','closed','','309','','','2018-06-08 05:29:39','2018-06-08 05:29:39','',0,'http://new.kclgenetics.com/?p=309',4,'nav_menu_item','',0),(316,1,'2017-03-07 03:34:00','2017-03-07 03:34:00','','Larson_logo','','inherit','closed','closed','','larson_logo','','','2018-04-20 01:17:02','2018-04-20 01:17:02','',51,'http://new.kclgenetics.com/wp-content/uploads/2017/03/Larson_logo.jpg',0,'attachment','image/jpeg',0),(317,1,'2017-03-07 03:34:13','2017-03-07 03:34:13','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" animation=\"off\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][et_pb_countdown_timer title=\"Count Down to Our 7th Annual Production Sale\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" admin_label=\"Countdown Timer\" header_font=\"Raleway|on||on|\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:00 pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a></strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a> </strong></p>\r\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"runlranch@aol.com\" title=\"Contact Running L Ranch to get your 2017 Hereford Alliance Sale catalog.\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U.jpg\" animation=\"right\" admin_label=\"Image\" use_border_color=\"on\" border_color=\"#11770b\" border_width=\"3px\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-07 03:34:13','2017-03-07 03:34:13','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(313,1,'2017-03-07 03:22:54','2017-03-07 03:22:54','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" animation=\"off\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][et_pb_countdown_timer title=\"Count Down to Our 7th Annual Production Sale\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" admin_label=\"Countdown Timer\" header_font=\"Raleway|on||on|\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:00 pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a></strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a> </strong></p>\r\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"runlranch@aol.com\" title=\"Contact Running L Ranch to get your 2017 Hereford Alliance Sale catalog.\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/9500.jpg\" animation=\"right\" admin_label=\"Image\" use_border_color=\"on\" border_color=\"#11770b\" border_width=\"3px\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-07 03:22:54','2017-03-07 03:22:54','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(315,1,'2017-03-07 03:23:35','2017-03-07 03:23:35','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" animation=\"off\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][et_pb_countdown_timer title=\"Count Down to Our 7th Annual Production Sale\" date_time=\"05/20/2017 10:00\" background_layout=\"light\" use_background_color=\"off\" admin_label=\"Countdown Timer\" header_font=\"Raleway|on||on|\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\"]<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:00 pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a></strong></p>\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a> </strong></p>\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"runlranch@aol.com\" title=\"Contact Running L Ranch to get your 2017 Hereford Alliance Sale catalog.\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U.jpg\" animation=\"right\" admin_label=\"Image\" use_border_color=\"on\" border_color=\"#11770b\" border_width=\"3px\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-07 03:23:35','2017-03-07 03:23:35','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(320,1,'2017-03-07 03:38:55','2017-03-07 03:38:55','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" animation=\"off\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][et_pb_countdown_timer title=\"Count Down to Our 7th Annual Production Sale\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\" header_font=\"Raleway|on||on|\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\"]<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:00 pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a></strong></p>\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a> </strong></p>\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"runlranch@aol.com\" title=\"Contact Running L Ranch to get your 2017 Hereford Alliance Sale catalog.\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U.jpg\" animation=\"right\" admin_label=\"Image\" use_border_color=\"on\" border_color=\"#11770b\" border_width=\"3px\" alt=\"Example of last year\'s flush opportunity\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-07 03:38:55','2017-03-07 03:38:55','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(339,1,'2017-03-07 04:00:11','2017-03-07 04:00:11','[et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" animation=\"bottom\" sticky=\"on\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>Larsons\' Running L Ranch</h3>\n<p>Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.</p>\n<p>Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.</p>\n<p>KCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.</p>\n<p>Our annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" alt=\"May 20, 2017\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\" animation=\"fade_in\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][et_pb_countdown_timer title=\"May 20 2017\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" admin_label=\"Section\"][et_pb_row parallax_method_1=\"off\" admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"off\"][et_pb_text admin_label=\"Text\"]<h1><strong>Latest News Posts<br />\n</strong></h1>\n[/et_pb_text][et_pb_blog posts_number=\"3\" include_categories=\"6\" show_author=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"News\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n<h3>Featured Cows</h3>\r\n[/et_pb_text][et_pb_post_slider include_categories=\"3\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Cows Slider\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>Bull Influence</h3>[/et_pb_text][et_pb_post_slider include_categories=\"4\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Bull Slider\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-07 04:00:11','2017-03-07 04:00:11','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(341,1,'2017-03-07 04:00:37','2017-03-07 04:00:37','[et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" animation=\"bottom\" sticky=\"on\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>Larsons\' Running L Ranch</h3>\n<p>Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.</p>\n<p>Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.</p>\n<p>KCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.</p>\n<p>Our annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" alt=\"May 20, 2017\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\" animation=\"fade_in\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][et_pb_countdown_timer title=\"May 20 2017\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" admin_label=\"Section\"][et_pb_row parallax_method_1=\"off\" admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"off\"][et_pb_text admin_label=\"Text\"]<h1><strong>Latest News Posts<br />\n</strong></h1>\n[/et_pb_text][et_pb_blog posts_number=\"3\" include_categories=\"6\" show_author=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"News\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>KCL Maternal Power</h3>[/et_pb_text][et_pb_post_slider include_categories=\"3\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Cows Slider\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>Bull Influence</h3>[/et_pb_text][et_pb_post_slider include_categories=\"4\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Bull Slider\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-07 04:00:37','2017-03-07 04:00:37','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(355,1,'2017-03-07 04:22:22','2017-03-07 04:22:22','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>Bull Influence</h3>\n<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these important characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted in the most desolate of conditions. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally does not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/KCL-WPF-THE-PROFESSOR-7110ET.jpg\" alt=\"The Professor\" animation=\"right\" sticky=\"on\" admin_label=\"Image\" use_border_color=\"on\" border_color=\"#0a0a0a\" border_width=\"2px\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"100\" include_categories=\"4\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"Blog\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Currently used Bulls','','inherit','closed','closed','','62-revision-v1','','','2017-03-07 04:22:22','2017-03-07 04:22:22','',62,'http://new.kclgenetics.com/62-revision-v1/',0,'revision','',0),(345,1,'2017-03-07 04:03:26','2017-03-07 04:03:26','[et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" animation=\"bottom\" sticky=\"on\" align=\"center\" admin_label=\"Image\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>Larsons\' Running L Ranch</h3>\n<p>Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.</p>\n<p>Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.</p>\n<p>KCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.</p>\n<p>Our annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" alt=\"May 20, 2017\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\" animation=\"fade_in\" align=\"center\" admin_label=\"Image\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_countdown_timer title=\"May 20 2017\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\"]\r\n\r\n\r\n\r\n[/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" admin_label=\"Section\"][et_pb_row parallax_method_1=\"off\" admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"off\"][et_pb_text admin_label=\"Text\"]<h1><strong>Latest News Posts<br />\n</strong></h1>\n[/et_pb_text][et_pb_blog posts_number=\"3\" include_categories=\"6\" show_author=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"News\"]\r\n\r\n\r\n\r\n[/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h3>KCL Maternal Power</h3>\r\n\r\n[/et_pb_text][et_pb_post_slider include_categories=\"3\" orderby=\"rand\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Cows Slider\"]\r\n\r\n\r\n\r\n[/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h3>Bull Influence</h3>\r\n\r\n[/et_pb_text][et_pb_post_slider include_categories=\"4\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Bull Slider\"]\r\n\r\n\r\n\r\n[/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-07 04:03:26','2017-03-07 04:03:26','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(347,1,'2017-03-07 04:07:28','2017-03-07 04:07:28','[et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" animation=\"bottom\" sticky=\"on\" align=\"center\" admin_label=\"Image\" alt=\"Home of KCL Genetics\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>Larsons\' Running L Ranch</h3>\n<p>Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.</p>\n<p>Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.</p>\n<p>KCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.</p>\n<p>Our annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" alt=\"May 20, 2017\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\" animation=\"fade_in\" align=\"center\" admin_label=\"Image\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_countdown_timer title=\"May 20 2017\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\"]\r\n\r\n\r\n\r\n[/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" admin_label=\"Section\"][et_pb_row parallax_method_1=\"off\" admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"off\"][et_pb_text admin_label=\"Text\"]<h1><strong>Latest News Posts<br />\n</strong></h1>\n[/et_pb_text][et_pb_blog posts_number=\"3\" include_categories=\"6\" show_author=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"News\"]\r\n\r\n\r\n\r\n[/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h3>KCL Maternal Power</h3>\r\n\r\n[/et_pb_text][et_pb_post_slider include_categories=\"3\" orderby=\"rand\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Cows Slider\"]\r\n\r\n\r\n\r\n[/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h3>Bull Influence</h3>\r\n\r\n[/et_pb_text][et_pb_post_slider include_categories=\"4\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Bull Slider\"]\r\n\r\n\r\n\r\n[/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-07 04:07:28','2017-03-07 04:07:28','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(352,1,'2017-03-07 04:17:21','2017-03-07 04:17:21','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row make_fullwidth=\"on\" admin_label=\"Row\"][et_pb_column type=\"2_3\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>KCL Donor Cow Program</h3>\n<p><br/></p>\n<p>The KCL Donor Program is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. At times we do input young semi-proven females in this program based on the production of their mothers and siblings. All of these factors give great confidence in our production of \"The Next Generation\". COW FAMILIES ARE THE KEY</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U.jpg\" alt=\"KCL Cow Power\" use_border_color=\"on\" border_color=\"#013d08\" border_width=\"3px\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"100\" include_categories=\"3\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"Blog\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2017-03-07 04:17:21','2017-03-07 04:17:21','',60,'http://new.kclgenetics.com/60-revision-v1/',0,'revision','',0),(356,1,'2017-03-07 04:23:41','2017-03-07 04:23:41','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] <strong> Owned by: Topp Herefords, Genex, &amp; The Mr. Hereford Group</strong> [/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table class=\"PedTree\" style=\"font-size: smaller; color: #000000; font-family: arial, sans-serif; height: 389px; width: 733px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B59245A24242523\">HRP THM VICTOR 109W 9329 {SOD,CHB} (P23705423)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5A265822262D\">DRF JWR PRINCE VICTOR 71I {CHB,SOD} (P41141619)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5A232522272323\">RHF 964 VICTRA 4057 (P22857143)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Sire: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C235A2427222E\">TH 122 71I VICTOR 719T {CHB,DLF,HYF,IEF} (P42800895)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B5B5924252127212D\">NJW 1Y WRANGLER 19D {CHB,SOD,DLF,HYF,IEF} (P23758169)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C595859232625\">KBCR 19D DOMINETTE 122 {DLF,IEF} (P42220359)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B5A20252122\">KBCR DOMINETTE 9112 (P42008924)</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\"><span style=\"font-size: xx-small;\"><strong>Animal: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5A5A22202526\">TH 71U 719T MR HEREFORD 11X {CHB,DLF,HYF,IEF} (P43101172)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B58202F272F\">FHF 8403 STARBUCK 19H {CHB,SOD} (P41029907)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C27212524222D\">NJW FHF 9710 TANK 45P {CHB,DLF,HYF,IEF} (P42491957)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5B595B5B5A59242525\">GV 579 VICTORIA 9710 {DLF,HYF,IEF} (P41000421)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td align=\"right\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"3\" valign=\"middle\"><span style=\"font-size: xx-small;\"><strong>Dam: <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C225A2524262D\">TH 7N 45P RITA 71U {DLF,HYF,IEF} (P42898638)</a></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/topline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5A2225262326\">S&amp;S ROCK SOLID 3L {CHB} (P42183052)</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td colspan=\"2\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C582220242725\">TH 814H 3L RITA 7N {DOD,DLF,HYF,IEF} (P42387430)</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"%\"></td>\r\n<td></td>\r\n<td></td>\r\n<td align=\"right\" valign=\"middle\"><img src=\"http://www.herfnet.com/online/images/botline.gif\" alt=\"\" /></td>\r\n<td align=\"left\" valign=\"middle\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2420&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5C5B275826222D\">TALECO 832W RITA 14H (P42030319)</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"TablesEBVBox\" style=\"color: #000000; font-family: arial, sans-serif;\" border=\"1\" cellspacing=\"0\" align=\"center\" bgcolor=\"FFFFFF\">\r\n<tbody>\r\n<tr>\r\n<th colspan=\"19\" align=\"center\" bgcolor=\"#99CC99\">SPRING 2015 EPDS</th>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\"><a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=242D&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223&amp;6=5A5D5B5A5A22202526\"><img src=\"http://www.herfnet.com/online/images/ebv_graph.gif\" alt=\"\" border=\"0\" /></a></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nDirect\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Birth\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Weaning\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Yearling\r\nWt</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Milk\r\n&amp;\r\nGrowth</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Calv.\r\nEase\r\nMat.\r\n(%)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Mature\r\nCow\r\nWeight</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Udder\r\nSuspension</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Teat\r\nSize</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Scrotal\r\nCirc.</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Fat</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Rib\r\nEye\r\nArea</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">Marbling</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BMI\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CEZ\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">BII\r\nIndex\r\n($)</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"bottom\" bgcolor=\"#99CC99\">CHB\r\nIndex\r\n($)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+3.0</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+55</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+81</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+31</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+58</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.6</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+62</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+1.24</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+0.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">-0.026</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+0.54</strong></span></td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-0.03</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 11</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 12</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">+$ 7</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\" bgcolor=\"#6699FF\"><span style=\"font-size: xx-small;\"><strong style=\"font-size: 14.4px;\">+$ 26</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">Acc</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.86</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.80</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.39</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.34</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.33</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.62</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.53</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">.50</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" valign=\"top\">-</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" colspan=\"19\" bgcolor=\"#99CC99\"><center>Breed Avg. EPDs for 2013 Born Calves <a href=\"http://www.herfnet.com/online/cgi-bin/i4.dll?1=3D3E282929&amp;2=2323&amp;3=5B5D26272127262E2F&amp;5=5A5B255B5A2223\">Click for Percentiles</a></center></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 0.9em;\" bgcolor=\"#99CC99\">EPD</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.9</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">3.3</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">47</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">77</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">19</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">43</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.2</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">87</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">1.13</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.8</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.003</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.30</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">0.07</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">17</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">15</td>\r\n<td style=\"font-size: 0.9em;\" align=\"center\" bgcolor=\"#99CC99\">22</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<center style=\"color: #000000; font-family: arial, sans-serif; line-height: normal;\"><strong style=\"font-size: 14.4px;\">Traits Observed: </strong>BWT,WWT,YWT,FAT,REA,IMF,<img src=\"http://www.herfnet.com/online/images/geepdlogo.jpg\" alt=\"\" />\r\n<strong style=\"font-size: 14.4px;\">Statistics:</strong>\r\n<strong>Statistics:BW:</strong>180/588,<strong>WW:</strong>136/477,<strong>YW:</strong>60/172,<strong>SC:</strong>20/70,<strong>Dgt:</strong>16,<strong>SCAN:</strong>168,<strong>MCW:</strong>10,<strong>UDDR:</strong>6/8</center>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','TH 71U 719T MR HEREFORD 11X {DLF,HYF,IEF}','decription','inherit','closed','closed','','170-revision-v1','','','2017-03-07 04:23:41','2017-03-07 04:23:41','',170,'http://new.kclgenetics.com/170-revision-v1/',0,'revision','',0),(354,1,'2017-03-07 04:21:10','2017-03-07 04:21:10','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row make_fullwidth=\"on\" admin_label=\"Row\"][et_pb_column type=\"2_3\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>KCL Donor Cow Program</h3>\n<p><br/></p>\n<blockquote>\n<p>The KCL Donor Program is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production.&nbsp;The cows&nbsp;are assessed with a heavy eye on mothering ability&nbsp;with a focus on&nbsp;udder structure and milk flow.&nbsp;It is of extreme importance that females in this program be structurally sound in skeleton&nbsp;and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. At times we do input young semi-proven females in this program based on the production of their mothers and siblings. All of these factors give great confidence in our production of \"The Next Generation\". COW FAMILIES ARE THE KEY</p>\n</blockquote>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U.jpg\" alt=\"KCL Cow Power\" use_border_color=\"on\" border_color=\"#013d08\" border_width=\"3px\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"100\" include_categories=\"3\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"Blog\" use_border_color=\"on\" border_color=\"#161616\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2017-03-07 04:21:10','2017-03-07 04:21:10','',60,'http://new.kclgenetics.com/60-revision-v1/',0,'revision','',0),(358,1,'2017-03-07 04:26:09','2017-03-07 04:26:09','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" animation=\"off\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][et_pb_countdown_timer title=\"Count Down to Our 7th Annual Production Sale\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\" header_font=\"Raleway|on||on|\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\"]<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:00 pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a></strong></p>\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a> </strong></p>\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"runlranch@aol.com\" title=\"Contact Running L Ranch to get your 2017 Hereford Alliance Sale catalog.\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/GHC-MISS-CARLA-ET-52N.jpg\" alt=\"Full Sister yo Moose Sells this year\" animation=\"right\" admin_label=\"Image\" use_border_color=\"on\" border_color=\"#11770b\" border_width=\"3px\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-07 04:26:09','2017-03-07 04:26:09','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(413,1,'2017-03-09 21:25:23','2017-03-09 21:25:23','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" animation=\"off\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][et_pb_countdown_timer title=\"Count Down to Our 7th Annual Production Sale\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\" header_font=\"Raleway|on||on|\"] [/et_pb_countdown_timer][et_pb_image][/et_pb_image][et_pb_text admin_label=\"Text\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:00 pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a></strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a> </strong></p>\r\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"runlranch@aol.com\" title=\"Contact Running L Ranch to get your 2017 Hereford Alliance Sale catalog.\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/GHC-MISS-CARLA-ET-52N.jpg\" alt=\"Full Sister yo Moose Sells this year\" animation=\"right\" admin_label=\"Image\" use_border_color=\"on\" border_color=\"#11770b\" border_width=\"3px\" show_in_lightbox=\"on\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-09 21:25:23','2017-03-09 21:25:23','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(360,1,'2017-03-07 04:49:41','2017-03-07 04:49:41','','Kazakhstan Hereford Visit','','inherit','closed','closed','','20170305_160750_1488807560105','','','2017-03-07 04:52:06','2017-03-07 04:52:06','',361,'http://new.kclgenetics.com/wp-content/uploads/2017/03/20170305_160750_1488807560105.jpg',0,'attachment','image/jpeg',0),(361,1,'2017-03-07 05:04:13','2017-03-07 05:04:13','We would like to thank breeders visiting the US from Kazakhstan for stopping by the ranch for a tour and to learn about our breeding philosophy. Kazakhstan has committed to the Hereford breed and look forward to helping them continually build their numbers and genetics.','Visitors From Kazakhstan Spend Time at the Ranch','','publish','closed','closed','','visiting-kazakhstan','','','2018-04-21 23:45:49','2018-04-21 23:45:49','',0,'http://new.kclgenetics.com/?p=361',0,'post','',0),(557,1,'2018-04-21 23:45:49','2018-04-21 23:45:49','We would like to thank breeders visiting the US from Kazakhstan for stopping by the ranch for a tour and to learn about our breeding philosophy. Kazakhstan has committed to the Hereford breed and look forward to helping them continually build their numbers and genetics.','Visitors From Kazakhstan Spend Time at the Ranch','','inherit','closed','closed','','361-revision-v1','','','2018-04-21 23:45:49','2018-04-21 23:45:49','',361,'http://kclgenetics.com/361-revision-v1/',0,'revision','',0),(362,1,'2017-03-07 04:52:14','2017-03-07 04:52:14','[et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<img src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/20170305_160750_1488807560105-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" class=\"alignnone size-medium wp-image-360\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','361-revision-v1','','','2017-03-07 04:52:14','2017-03-07 04:52:14','',361,'http://new.kclgenetics.com/361-revision-v1/',0,'revision','',0),(363,1,'2017-03-07 05:04:13','2017-03-07 05:04:13','[et_pb_section fb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/20170305_160750_1488807560105-e1488862488963.jpg\" show_in_lightbox=\"on\" align=\"center\" admin_label=\"Kazakhstan\" use_border_color=\"on\" border_color=\"#000000\" border_width=\"2px\" border_style=\"outset\" custom_margin=\"0px|0px|0px|0px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','361-revision-v1','','','2017-03-07 05:04:13','2017-03-07 05:04:13','',361,'http://new.kclgenetics.com/361-revision-v1/',0,'revision','',0),(560,1,'2018-04-22 02:38:20','2018-04-22 02:38:20','<h3>KCL Genetics Donor Cow Program</h3>\r\n<blockquote><em>The <strong>KCL Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. At times we do input young semi-proven females in this program based on the production of their mothers and siblings. All of these factors give great confidence in our production of \"The Next Generation\". COW FAMILIES ARE THE KEY</em></blockquote>','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2018-04-22 02:38:20','2018-04-22 02:38:20','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(512,1,'2018-04-21 22:23:15','2018-04-21 22:23:15',' ','','','publish','closed','closed','','512','','','2018-05-01 23:00:55','2018-05-01 23:00:55','',0,'http://kclgenetics.com/?p=512',2,'nav_menu_item','',0),(453,1,'2018-04-20 00:20:37','2018-04-20 00:20:37','<h3>KCL Donor Cow Program</h3>\r\n<blockquote><em>The <strong>KCL Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. At times we do input young semi-proven females in this program based on the production of their mothers and siblings. All of these factors give great confidence in our production of \"The Next Generation\". COW FAMILIES ARE THE KEY</em></blockquote>','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2018-04-20 00:20:37','2018-04-20 00:20:37','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(449,1,'2018-04-20 00:07:24','2018-04-20 00:07:24','<h3>KCL Donor Cow Program</h3>\r\n<img class=\"aligncenter wp-image-92 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n<blockquote><em>The <strong>KCL Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. At times we do input young semi-proven females in this program based on the production of their mothers and siblings. All of these factors give great confidence in our production of \"The Next Generation\". COW FAMILIES ARE THE KEY</em></blockquote>','KCL Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2018-04-20 00:07:24','2018-04-20 00:07:24','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(384,1,'2017-03-08 19:49:34','2017-03-08 19:49:34','[et_pb_section fb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/20170305_160750_1488807560105-e1488862488963.jpg\" show_in_lightbox=\"on\" align=\"center\" admin_label=\"Kazakhstan\" use_border_color=\"on\" border_color=\"#000000\" border_width=\"2px\" border_style=\"outset\" custom_margin=\"0px|0px|0px|0px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Visiting Kazakhstan','','inherit','closed','closed','','361-revision-v1','','','2017-03-08 19:49:34','2017-03-08 19:49:34','',361,'http://new.kclgenetics.com/361-revision-v1/',0,'revision','',0),(380,1,'2017-03-07 05:51:43','2017-03-07 05:51:43','','north-entrance','','inherit','closed','closed','','north-entrance','','','2018-04-17 00:14:45','2018-04-17 00:14:45','',54,'http://new.kclgenetics.com/wp-content/uploads/2017/03/north-entrance.jpg',0,'attachment','image/jpeg',0),(409,1,'2017-03-09 21:22:38','2017-03-09 21:22:38','','cattleinmotion','','inherit','closed','closed','','cattleinmotion','','','2017-03-09 21:22:38','2017-03-09 21:22:38','',0,'http://new.kclgenetics.com/wp-content/uploads/2017/03/cattleinmotion.jpg',0,'attachment','image/jpeg',0),(388,1,'2017-03-09 20:37:32','2017-03-09 20:37:32','[et_pb_section fb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/20170305_160750_1488807560105-e1488862488963.jpg\" show_in_lightbox=\"on\" align=\"center\" admin_label=\"Kazakhstan\" use_border_color=\"on\" border_color=\"#000000\" border_width=\"2px\" border_style=\"outset\" custom_margin=\"0px|0px|0px|0px\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_text]<p>We would like to thank breeders visiting the US from Kazakhstan for stopping by the ranch for a tour and to learn about our breeding philosophy. Kazakhstan has committed to the Hereford breed and look forward to helping them continually build their numbers and genetics.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Visiting Kazakhstan','','inherit','closed','closed','','361-revision-v1','','','2017-03-09 20:37:32','2017-03-09 20:37:32','',361,'http://new.kclgenetics.com/361-revision-v1/',0,'revision','',0),(374,1,'2017-03-07 05:29:21','2017-03-07 05:29:21','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h1>About Larsons\' Herefords Breeding Program</h1>\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12.15999984741211px; background-color: #ffffff;\">Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.</p>\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12.15999984741211px; background-color: #ffffff;\">Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.</p>\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12.15999984741211px; background-color: #ffffff;\">KCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.</p>\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12.15999984741211px; background-color: #ffffff;\">Our annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form title=\"Contact Us Today\" success_message=\"Thank you for contacting us. We\'ll get back to you ASAP\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_countdown_timer title=\"Hereford Alliance Sale Countdown\" date_time=\"05/20/2017 00:00\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','About Us','','inherit','closed','closed','','303-revision-v1','','','2017-03-07 05:29:21','2017-03-07 05:29:21','',303,'http://new.kclgenetics.com/303-revision-v1/',0,'revision','',0),(382,1,'2017-03-07 05:58:37','2017-03-07 05:58:37','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h1>About Larsons\' Herefords Breeding Program</h1>\n<p><br />Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards. &nbsp;&nbsp;Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.<br />KCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.<br />&nbsp; &nbsp;Our annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.</p>[/et_pb_text][et_pb_post_slider posts_number=\"20\" include_categories=\"3\" orderby=\"rand\" show_arrows=\"off\" show_pagination=\"off\" show_more_button=\"off\" show_meta=\"off\"][/et_pb_post_slider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form title=\"Contact Us Today\" success_message=\"Thank you for contacting us. We\'ll get back to you ASAP\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_countdown_timer title=\"Hereford Alliance Sale Countdown\" date_time=\"05/20/2017 00:00\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','About Us','','inherit','closed','closed','','303-revision-v1','','','2017-03-07 05:58:37','2017-03-07 05:58:37','',303,'http://new.kclgenetics.com/303-revision-v1/',0,'revision','',0),(376,1,'2017-03-07 05:31:15','2017-03-07 05:31:15','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\" background_color=\"#dddddd\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h1>About Larsons\' Herefords Breeding Program</h1>\n<p></p>\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12.15999984741211px; background-color: #ffffff;\">Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.</p>\n<p></p>\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12.15999984741211px; background-color: #ffffff;\">Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.</p>\n<p></p>\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12.15999984741211px; background-color: #ffffff;\">KCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.</p>\n<p></p>\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12.15999984741211px; background-color: #ffffff;\">Our annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form title=\"Contact Us Today\" success_message=\"Thank you for contacting us. We\'ll get back to you ASAP\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_countdown_timer title=\"Hereford Alliance Sale Countdown\" date_time=\"05/20/2017 00:00\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','About Us','','inherit','closed','closed','','303-revision-v1','','','2017-03-07 05:31:15','2017-03-07 05:31:15','',303,'http://new.kclgenetics.com/303-revision-v1/',0,'revision','',0),(709,1,'2018-05-09 22:13:29','2018-05-09 22:13:29','&nbsp;\r\n<h1>About Larson Breeding Program</h1>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.   Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothering ability and longevity.\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire feedstock Hereford genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n<img class=\"aligncenter size-medium wp-image-204\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" />','Our Approach','','inherit','closed','closed','','303-revision-v1','','','2018-05-09 22:13:29','2018-05-09 22:13:29','',303,'http://kclgenetics.com/303-revision-v1/',0,'revision','',0),(569,1,'2018-04-22 02:56:07','2018-04-22 02:56:07','&nbsp;\r\n<h1>About Larson Breeding Program</h1>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.   Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothering ability and longevity.\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire feedstock Hereford genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n<img class=\"aligncenter size-medium wp-image-204\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/herefords-sale-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" />','A Quick Look at Our Approach','','inherit','closed','closed','','303-revision-v1','','','2018-04-22 02:56:07','2018-04-22 02:56:07','',303,'http://kclgenetics.com/303-revision-v1/',0,'revision','',0),(390,1,'2017-03-09 20:38:49','2017-03-09 20:38:49','[et_pb_section fb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/20170305_160750_1488807560105-e1488862488963.jpg\" show_in_lightbox=\"on\" align=\"center\" admin_label=\"Kazakhstan\" use_border_color=\"on\" border_color=\"#000000\" border_width=\"2px\" border_style=\"outset\" custom_margin=\"0px|0px|0px|0px\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_text]\r\n\r\nWe would like to thank breeders visiting the US from Kazakhstan for stopping by the ranch for a tour and to learn about our breeding philosophy. Kazakhstan has committed to the Hereford breed and look forward to helping them continually build their numbers and genetics.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Visitors From Kazakhstan Spend Time at the Ranch','','inherit','closed','closed','','361-revision-v1','','','2017-03-09 20:38:49','2017-03-09 20:38:49','',361,'http://new.kclgenetics.com/361-revision-v1/',0,'revision','',0),(400,1,'2017-03-09 21:07:25','2017-03-09 21:07:25','','Update','','inherit','closed','closed','','update','','','2017-03-09 21:07:25','2017-03-09 21:07:25','',0,'http://new.kclgenetics.com/wp-content/uploads/2017/03/Update.jpg',0,'attachment','image/jpeg',0),(402,1,'2017-03-09 21:11:25','2017-03-09 21:11:25','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<blockquote>\n<h1>We are happy to announce that we have upgraded our website and will be updating our website more than before. Check back frequently for updates on the 2017 Hereford Alliance Sale.</h1>\n<h3></h3>\n</blockquote>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','We have upgraded our website','','inherit','closed','closed','','294-revision-v1','','','2017-03-09 21:11:25','2017-03-09 21:11:25','',294,'http://new.kclgenetics.com/294-revision-v1/',0,'revision','',0),(410,1,'2017-03-09 21:23:15','2017-03-09 21:23:15','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" animation=\"off\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][et_pb_countdown_timer title=\"Count Down to Our 7th Annual Production Sale\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\" header_font=\"Raleway|on||on|\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\"]\r\n<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:00 pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\r\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a></strong></p>\r\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a> </strong></p>\r\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\r\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\r\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"runlranch@aol.com\" title=\"Contact Running L Ranch to get your 2017 Hereford Alliance Sale catalog.\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/GHC-MISS-CARLA-ET-52N.jpg\" alt=\"Full Sister yo Moose Sells this year\" animation=\"right\" admin_label=\"Image\" use_border_color=\"on\" border_color=\"#11770b\" border_width=\"3px\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-09 21:23:15','2017-03-09 21:23:15','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(394,1,'2017-03-09 20:54:01','2017-03-09 20:54:01','[et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" alt=\"Home of KCL Genetics\" animation=\"bottom\" sticky=\"on\" align=\"center\" admin_label=\"Image\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>Larsons\' Running L Ranch</h3>\n<p>Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.</p>\n<p>Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.</p>\n<p>KCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.</p>\n<p>Our annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" alt=\"May 20, 2017\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\" animation=\"fade_in\" align=\"center\" admin_label=\"Image\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_countdown_timer title=\"May 20 2017\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\"]\r\n\r\n\r\n\r\n[/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" admin_label=\"Section\"][et_pb_row parallax_method_1=\"off\" admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"off\"][et_pb_text admin_label=\"Text\"]<h1><strong>Latest News Posts<br />\n</strong></h1>\n[/et_pb_text][et_pb_blog posts_number=\"3\" include_categories=\"6\" show_author=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"News\" fullwidth=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h3>KCL Maternal Power</h3>\r\n\r\n[/et_pb_text][et_pb_post_slider include_categories=\"3\" orderby=\"rand\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Cows Slider\"]\r\n\r\n\r\n\r\n[/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h3>Bull Influence</h3>\r\n\r\n[/et_pb_text][et_pb_post_slider include_categories=\"4\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Bull Slider\"]\r\n\r\n\r\n\r\n[/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-09 20:54:01','2017-03-09 20:54:01','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(398,1,'2017-03-09 21:04:59','2017-03-09 21:04:59','','website update','','inherit','closed','closed','','website-update','','','2017-03-09 21:04:59','2017-03-09 21:04:59','',0,'http://new.kclgenetics.com/wp-content/uploads/2017/03/website-update.jpg',0,'attachment','image/jpeg',0),(397,1,'2017-03-09 21:00:24','2017-03-09 21:00:24','[et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" alt=\"Home of KCL Genetics\" animation=\"bottom\" sticky=\"on\" align=\"center\" admin_label=\"Image\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>Larsons\' Running L Ranch</h3>\n<p>Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.</p>\n<p>Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.</p>\n<p>KCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.</p>\n<p>Our annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" alt=\"May 20, 2017\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\" animation=\"fade_in\" align=\"center\" admin_label=\"Image\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_countdown_timer title=\"May 20 2017\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\"]\r\n\r\n\r\n\r\n[/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" admin_label=\"Section\"][et_pb_row parallax_method_1=\"off\" admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"off\"][et_pb_text admin_label=\"Text\"]<h1><strong>Latest News Posts<br />\n</strong></h1>\n[/et_pb_text][et_pb_blog posts_number=\"3\" include_categories=\"6\" show_author=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"News\" fullwidth=\"off\" show_more=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h3>KCL Maternal Power</h3>\r\n\r\n[/et_pb_text][et_pb_post_slider include_categories=\"3\" orderby=\"rand\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Cows Slider\"]\r\n\r\n\r\n\r\n[/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h3>Bull Influence</h3>\r\n\r\n[/et_pb_text][et_pb_post_slider include_categories=\"4\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Bull Slider\"]\r\n\r\n\r\n\r\n[/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-09 21:00:24','2017-03-09 21:00:24','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(422,1,'2017-04-13 20:58:56','2017-04-13 20:58:56','[et_pb_section bb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Banner-Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" auto_speed=\"5000\" auto_ignore_hover=\"on\" parallax=\"on\" parallax_method=\"on\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" disabled=\"off\" disabled_on=\"on||\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" custom_css_main_element=\" color: #2c2c2c;|| letter-spacing: .05em;|| text-shadow: 2px 2px 0px #2e2e2e, 3px 3px 0px rgba(0, 0, 0, 0.2);\"] [et_pb_slide heading=\"KCL is proud to present Herefords herd of the future\" background_image=\"/wp-content/uploads/2017/03/banner.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nOur herefords embryo sires are the pinnacle of our Herefords breeding breeding program at KCL genetics.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Some other highlight\" background_image=\"/wp-content/uploads/2017/03/banner.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nThis is possible short description of the thing\r\n\r\n[/et_pb_slide] [/et_pb_slider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" alt=\"May 20, 2017\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\" animation=\"fade_in\" align=\"center\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" date_time=\"05/20/2017 12:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Section\" background_color=\"#efefef\" custom_padding=\"-5px|||\"][et_pb_row admin_label=\"Row\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"latest news label\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1><strong>Latest News Posts\r\n</strong></h1>\r\n[/et_pb_text][et_pb_blog admin_label=\"News\" fullwidth=\"off\" posts_number=\"3\" include_categories=\"6\" show_more=\"on\" show_author=\"off\" show_categories=\"off\" show_pagination=\"off\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\"]\r\n<h3>KCL Maternal Power</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Cows Slider\" include_categories=\"3\" orderby=\"rand\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\"]\r\n<h3>Bull Influence</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Bull Slider\" include_categories=\"4\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-04-13 20:58:56','2017-04-13 20:58:56','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(407,1,'2017-03-09 21:18:09','2017-03-09 21:18:09','http://new.kclgenetics.com/wp-content/uploads/2017/03/cropped-Larson_logo.jpg','cropped-Larson_logo.jpg','','inherit','closed','closed','','cropped-larson_logo-jpg','','','2017-03-09 21:18:09','2017-03-09 21:18:09','',0,'http://new.kclgenetics.com/wp-content/uploads/2017/03/cropped-Larson_logo.jpg',0,'attachment','image/jpeg',0),(404,1,'2017-03-09 21:13:38','2017-03-09 21:13:38','[et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/banner.jpg\" alt=\"Home of KCL Genetics\" animation=\"bottom\" sticky=\"on\" align=\"center\" admin_label=\"Image\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]<h3>Larsons\' Running L Ranch</h3>\n<p>Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.</p>\n<p>Our program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.</p>\n<p>KCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.</p>\n<p>Our annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" alt=\"May 20, 2017\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\" animation=\"fade_in\" align=\"center\" admin_label=\"Image\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_countdown_timer title=\"May 20 2017\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\"]\r\n\r\n\r\n\r\n[/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" admin_label=\"Section\" custom_padding=\"-5px|||\"][et_pb_row parallax_method_1=\"off\" admin_label=\"Row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"off\"][et_pb_text admin_label=\"Text\"]<h1><strong>Latest News Posts<br />\n</strong></h1>\n[/et_pb_text][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"6\" show_more=\"on\" show_author=\"off\" show_categories=\"off\" show_pagination=\"off\" admin_label=\"News\"]\r\n\r\n\r\n\r\n[/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h3>KCL Maternal Power</h3>\r\n\r\n[/et_pb_text][et_pb_post_slider include_categories=\"3\" orderby=\"rand\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Cows Slider\"]\r\n\r\n\r\n\r\n[/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\"]\r\n\r\n<h3>Bull Influence</h3>\r\n\r\n[/et_pb_text][et_pb_post_slider include_categories=\"4\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\" admin_label=\"Bull Slider\"]\r\n\r\n\r\n\r\n[/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-09 21:13:38','2017-03-09 21:13:38','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(416,1,'2017-03-09 21:31:54','2017-03-09 21:31:54','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" animation=\"off\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][et_pb_countdown_timer title=\"Count Down to Our 7th Annual Production Sale\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\" header_font=\"Raleway|on||on|\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\"]<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:00 pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\n<p></p>\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017&nbsp; and cattle will be available for viewing at any time.</strong></p>\n<p></p>\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a></strong></p>\n<p></p>\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a>&nbsp;</strong></p>\n<p></p>\n<p style=\"text-align: center;\">Contact Us with&nbsp;any questions.</p>\n<p></p>\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\n<p></p>\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>&nbsp; &nbsp; &nbsp; 972-824-5869</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"runlranch@aol.com\" title=\"Contact Running L Ranch to get your 2017 Hereford Alliance Sale catalog.\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/cattleinmotion.jpg\" show_in_lightbox=\"on\" animation=\"right\" admin_label=\"Image\" sticky=\"on\" align=\"center\" title_text=\"Sale Will Be Broadcast On\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-09 21:31:54','2017-03-09 21:31:54','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(412,1,'2017-03-09 21:24:29','2017-03-09 21:24:29','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" animation=\"off\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][et_pb_countdown_timer title=\"Count Down to Our 7th Annual Production Sale\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\" header_font=\"Raleway|on||on|\"] [/et_pb_countdown_timer][et_pb_image][/et_pb_image][et_pb_text admin_label=\"Text\"]<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:00 pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017  and cattle will be available for viewing at any time.</strong></p>\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a></strong></p>\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a> </strong></p>\n<p style=\"text-align: center;\">Contact Us with any questions.</p>\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>      972-824-5869</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"runlranch@aol.com\" title=\"Contact Running L Ranch to get your 2017 Hereford Alliance Sale catalog.\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/GHC-MISS-CARLA-ET-52N.jpg\" alt=\"Full Sister yo Moose Sells this year\" animation=\"right\" admin_label=\"Image\" use_border_color=\"on\" border_color=\"#11770b\" border_width=\"3px\" show_in_lightbox=\"on\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-09 21:24:29','2017-03-09 21:24:29','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(487,1,'2018-04-20 02:52:51','2018-04-20 02:52:51','','cropped-north-entrance.jpg','','inherit','closed','closed','','cropped-north-entrance-jpg','','','2018-04-20 02:52:51','2018-04-20 02:52:51','',0,'http://kclgenetics.com/wp-content/uploads/2017/03/cropped-north-entrance.jpg',0,'attachment','image/jpeg',0),(479,1,'2018-04-20 02:17:38','2018-04-20 02:17:38','<img class=\"alignleft wp-image-472 size-thumbnail\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/KCL-GENETICS-copy-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Larson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to adapt and succeed in various Texas conditions.\r\n\r\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothering ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','','','inherit','closed','closed','','44-revision-v1','','','2018-04-20 02:17:38','2018-04-20 02:17:38','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(434,1,'2018-04-17 00:23:35','2018-04-17 00:23:35','http://kclgenetics.com/wp-content/uploads/2017/03/cropped-Larson_logo-1.jpg','cropped-Larson_logo-1.jpg','','inherit','closed','closed','','cropped-larson_logo-1-jpg','','','2018-04-17 00:23:35','2018-04-17 00:23:35','',0,'http://kclgenetics.com/wp-content/uploads/2017/03/cropped-Larson_logo-1.jpg',0,'attachment','image/jpeg',0),(443,1,'2018-04-19 23:55:32','2018-04-19 23:55:32','','cropped-cover_groupbanner.png','','inherit','closed','closed','','cropped-cover_groupbanner-png','','','2018-04-19 23:55:32','2018-04-19 23:55:32','',0,'http://kclgenetics.com/wp-content/uploads/2017/03/cropped-cover_groupbanner.png',0,'attachment','image/png',0),(444,1,'2018-04-19 23:56:15','2018-04-19 23:56:15','','cropped-KB-SULTANA-8051U.jpg','','inherit','closed','closed','','cropped-kb-sultana-8051u-jpg','','','2018-04-19 23:56:15','2018-04-19 23:56:15','',0,'http://kclgenetics.com/wp-content/uploads/2017/03/cropped-KB-SULTANA-8051U.jpg',0,'attachment','image/jpeg',0),(418,1,'2017-03-09 21:39:04','2017-03-09 21:39:04','[et_pb_section fb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/hs.jpg\" animation=\"off\" align=\"center\" admin_label=\"Image\"] [/et_pb_image][et_pb_countdown_timer title=\"Count Down to Our 7th Annual Production Sale\" date_time=\"05/20/2017 12:00\" admin_label=\"Countdown Timer\" header_font=\"Raleway|on||on|\"] [/et_pb_countdown_timer][et_pb_text admin_label=\"Text\"]<h3 style=\"text-align: center;\">Please join us May 20, 2017 @ 12:00 pm at the ranch for the 7th Annual Hereford Alliance Sale.</h3>\n<p></p>\n<p style=\"text-align: center;\"><strong>The pre-sale social will be help May 19, 2017&nbsp; and cattle will be available for viewing at any time.</strong></p>\n<p></p>\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a></strong></p>\n<p></p>\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.cattleinmotion.com\">www.cattleinmotion.com</a>&nbsp;</strong></p>\n<p></p>\n<p style=\"text-align: center;\">Contact Us with&nbsp;any questions.</p>\n<p></p>\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\n<p></p>\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>&nbsp; &nbsp; &nbsp; 972-824-5869</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"runlranch@aol.com\" title=\"Contact Running L Ranch to get your 2017 Hereford Alliance Sale catalog.\" custom_message=\"Your Name %%name%% Email: %%email%% Message: %%message%% \" success_message=\"Thank you for contacting KLC Genetics! Please stop by us and say Hi!\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" title_text_color=\"#23510d\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/cattleinmotion.jpg\" show_in_lightbox=\"on\" animation=\"right\" admin_label=\"Image\" sticky=\"on\" align=\"center\" title_text=\"Sale Will Be Broadcast On\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','2017 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2017-03-09 21:39:04','2017-03-09 21:39:04','',54,'http://new.kclgenetics.com/54-revision-v1/',0,'revision','',0),(420,1,'2017-03-10 16:25:14','2017-03-10 16:25:14','[et_pb_section bb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Banner-Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" auto_speed=\"5000\" auto_ignore_hover=\"on\" parallax=\"on\" parallax_method=\"on\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" disabled=\"off\" disabled_on=\"on||\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"KCL is proud to present Herefords herd of the future\" background_image=\"/wp-content/uploads/2017/03/banner.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nOur herefords embryo sires are the pinnacle of our Herefords breeding breeding program at KCL genetics.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"Some other highlight\" background_image=\"/wp-content/uploads/2017/03/banner.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nThis is possible short description of the thing\r\n\r\n[/et_pb_slide] [/et_pb_slider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Larsons\' Running L Ranch</h3>\r\nLarson Running L Ranch is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred cattle that have been designed to meet and excede the industry standards.\r\n\r\nOur program consists of an aggressive flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict parameters for cattle allowed to enter to ET program. One of the most important traits is mothring ability and longevity.\r\n\r\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\r\n\r\nOur annual production sale is every third Saturday of May here at the ranch. The Hereford Alliance Sale is a chance to acquire top KCL genetics. A must attend event. Contact us for more details or to be on our mailing list.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://new.kclgenetics.com/wp-content/uploads/2017/03/herefords-sale.jpg\" alt=\"May 20, 2017\" url=\"http://new.kclgenetics.com/2017-hereford-alliance-sale/\" animation=\"fade_in\" align=\"center\"] [/et_pb_image][et_pb_countdown_timer admin_label=\"Countdown Timer\" title=\"May 20 2017\" date_time=\"05/20/2017 12:00\"] [/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Section\" background_color=\"#efefef\" custom_padding=\"-5px|||\"][et_pb_row admin_label=\"Row\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"latest news label\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1><strong>Latest News Posts\r\n</strong></h1>\r\n[/et_pb_text][et_pb_blog admin_label=\"News\" fullwidth=\"off\" posts_number=\"3\" include_categories=\"6\" show_more=\"on\" show_author=\"off\" show_categories=\"off\" show_pagination=\"off\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\"]\r\n<h3>KCL Maternal Power</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Cows Slider\" include_categories=\"3\" orderby=\"rand\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\"] [/et_pb_post_slider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\"]\r\n<h3>Bull Influence</h3>\r\n[/et_pb_text][et_pb_post_slider admin_label=\"Bull Slider\" include_categories=\"4\" orderby=\"date_asc\" more_text=\"View\" content_source=\"off\" use_manual_excerpt=\"on\" show_meta=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" auto=\"on\" auto_ignore_hover=\"on\"] [/et_pb_post_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Larsons\' Running L Ranch','','inherit','closed','closed','','44-revision-v1','','','2017-03-10 16:25:14','2017-03-10 16:25:14','',44,'http://new.kclgenetics.com/44-revision-v1/',0,'revision','',0),(741,1,'2019-05-02 00:24:50','2019-05-02 00:24:50','<img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-300x228.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-300x228.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-768x583.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-1024x777.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-1200x910.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n					<h1>\n							Download Catalog\n					</h1>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for Download</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 00:24:50','2019-05-02 00:24:50','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(738,1,'2019-05-02 00:12:22','2019-05-02 00:12:22','<h3 style=\"text-align: center;\">Please join us May 19, 2018 @ 12:00 pm at the ranch for the\n8th Annual Hereford Alliance Sale.</h3>\n<p style=\"text-align: center;\"><a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051918\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"aligncenter wp-image-679 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/2018-Hereford-Alliance-Cover-232x300.jpg\" alt=\"\" width=\"232\" height=\"300\"></a></p>\n<p style=\"text-align: center;\"><strong>Cattle will be available for viewing at any time.</strong></p>\n\n\n[caption id=\"attachment_701\" align=\"aligncenter\" width=\"300\"]<a href=\"https://www.youtube.com/playlist?list=PL3K3ghzeET2SMAbUEJjNthd8-8m2n7gnM\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"wp-image-701 size-medium\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" width=\"300\" height=\"222\"></a> Click Here for Online Videos[/caption]\n<p class=\"\" style=\"text-align: center;\"><strong>Sale will be broadcast online at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\n<p class=\"\" style=\"text-align: center;\"><strong>Videos will be available 2 weeks before the sale at <a href=\"http://www.liveauctions.tv\">LiveAuctions.tv</a></strong></p>\n<p style=\"text-align: center;\">Contact Us with&nbsp;any questions.</p>\n<p style=\"text-align: center;\">Let us know if you would like to be on our catalogue mailing list.</p>\n<p style=\"text-align: center;\"><span id=\"cloak14880\"><a href=\"mailto:RunLRanch@aol.com\">RunLRanch@aol.com</a></span>&nbsp; &nbsp; &nbsp; 972-824-5869</p>\n<img class=\"aligncenter size-full wp-image-380\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/north-entrance.jpg\" alt=\"\" width=\"785\" height=\"320\">','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 00:12:22','2019-05-02 00:12:22','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(740,1,'2019-05-02 00:16:41','2019-05-02 00:16:41','','Logo','','inherit','closed','closed','','logo-2','','','2019-05-02 00:16:41','2019-05-02 00:16:41','',54,'http://kclgenetics.com/wp-content/uploads/2019/05/Logo.png',0,'attachment','image/png',0),(747,1,'2019-05-02 00:53:31','2019-05-02 00:53:31','<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n					<h1>\n							Download Catalog\n					</h1>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Download</figcaption>\n										</figure>\n							<figure>\n										<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											<figcaption>Auction will be Live on the Internet</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 00:53:31','2019-05-02 00:53:31','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(746,1,'2019-05-02 00:52:17','2019-05-02 00:52:17','','714af614-5904-4135-a691-5b34f6df8bdc','','inherit','closed','closed','','714af614-5904-4135-a691-5b34f6df8bdc','','','2019-05-02 00:52:17','2019-05-02 00:52:17','',54,'http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg',0,'attachment','image/jpeg',0),(748,1,'2019-05-02 00:56:36','2019-05-02 00:56:36','<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n					<h1>\n							Download Catalog\n					</h1>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Download</figcaption>\n										</figure>\n							<figure>\n										<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											<figcaption>Auction will be Live on the Internet</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 00:56:36','2019-05-02 00:56:36','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(749,1,'2019-05-02 00:57:10','2019-05-02 00:57:10','<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n					<h1>\n							Download Catalog\n					</h1>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Download</figcaption>\n										</figure>\n							<figure>\n										<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											<figcaption>Auction will be Live on the Internet</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 00:57:10','2019-05-02 00:57:10','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(753,1,'2019-05-02 01:01:01','2019-05-02 01:01:01','<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n					<h1>\n							Download Catalog\n					</h1>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Download</figcaption>\n										</figure>\n							<figure>\n										<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											<figcaption>Auction will be Live on the Internet</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\">\n							<img width=\"450\" height=\"450\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w\" sizes=\"(max-width: 450px) 100vw, 450px\" />								</a>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:01:01','2019-05-02 01:01:01','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(751,1,'2019-05-02 01:00:31','2019-05-02 01:00:31','','MCS_2_02','','inherit','closed','closed','','mcs_2_02','','','2019-05-02 01:00:31','2019-05-02 01:00:31','',54,'http://kclgenetics.com/wp-content/uploads/2019/05/MCS_2_02.gif',0,'attachment','image/gif',0),(752,1,'2019-05-02 01:00:40','2019-05-02 01:00:40','','digital-catalog','','inherit','closed','closed','','digital-catalog','','','2019-05-02 01:00:40','2019-05-02 01:00:40','',54,'http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png',0,'attachment','image/png',0),(755,1,'2019-05-02 01:04:26','2019-05-02 01:04:26','<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n					<h1>\n							Download Catalog\n					</h1>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Download</figcaption>\n										</figure>\n							<figure>\n										<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											<figcaption>Auction will be Live on the Internet</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:04:26','2019-05-02 01:04:26','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(756,1,'2019-05-02 01:07:18','2019-05-02 01:07:18','<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n					<h1>\n							Download Catalog\n					</h1>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:07:18','2019-05-02 01:07:18','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(757,1,'2019-05-02 01:09:35','2019-05-02 01:09:35','<h1>\n							Download Catalog\n					</h1>\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:09:35','2019-05-02 01:09:35','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(760,1,'2019-05-02 01:14:47','2019-05-02 01:14:47','<h2>\n							2019 Hereford Alliance Sale Save the Date</h2>\n<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\"><figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption></figure>\n<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\">\n\n<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption></figure>\n<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\">\n<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\">								</a>\n\n<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption></figure>\n<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\"></figure>\n<h3>Look For This Logo</h3>\nLots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\n<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\">\n<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\">								</a>\n\n<figcaption>Click Here for Digital Catalog</figcaption></figure>\n<h5>2019 Hereford Alliance Videos</h5>\n<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n\n<figcaption>Coming Soon. Expect online May 08, 2019</figcaption></figure>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:14:47','2019-05-02 01:14:47','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(758,1,'2019-05-02 01:12:38','2019-05-02 01:12:38','<h2>\n							2019 Hereford Alliance Sale Save the Date\n					</h2>\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:12:38','2019-05-02 01:12:38','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(761,1,'2019-05-02 01:15:08','2019-05-02 01:15:08','<h2>\n							2019 Hereford Alliance Sale Save the Date\n					</h2>\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:15:08','2019-05-02 01:15:08','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(763,1,'2019-05-02 01:15:49','2019-05-02 01:15:49','<h2>\n							2019 Hereford Alliance Sale Save the Date</h2>\n<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\"><figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption></figure>\n<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\">\n\n<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption></figure>\n<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\">								</a>\n\n<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption></figure>\n<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\"></figure>\n<h3>Look For This Logo</h3>\nLots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\n<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\">								</a>\n\n<figcaption>Click Here for Digital Catalog</figcaption></figure>\n<h5>2019 Hereford Alliance Videos</h5>\n<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n\n<figcaption>Coming Soon. Expect online May 08, 2019</figcaption></figure>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:15:49','2019-05-02 01:15:49','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(762,1,'2019-05-02 01:15:20','2019-05-02 01:15:20','<h2>\n							2019 Hereford Alliance Sale Save the Date\n					</h2>\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2018 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:15:20','2019-05-02 01:15:20','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(764,1,'2019-05-02 01:15:58','2019-05-02 01:15:58','<h2>\n							2019 Hereford Alliance Sale Save the Date</h2>\n<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\"><figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption></figure>\n<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\">\n\n<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption></figure>\n<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\">								</a>\n\n<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption></figure>\n<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\"></figure>\n<h3>Look For This Logo</h3>\nLots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\n<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\">								</a>\n\n<figcaption>Click Here for Digital Catalog</figcaption></figure>\n<h5>2019 Hereford Alliance Videos</h5>\n<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n\n<figcaption>Coming Soon. Expect online May 08, 2019</figcaption></figure>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:15:58','2019-05-02 01:15:58','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(765,1,'2019-05-02 01:17:18','2019-05-02 01:17:18','<h2>\n							2019 Hereford Alliance Sale Save the Date</h2>\n<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\"><figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption></figure>\n<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\">\n\n<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption></figure>\n<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\">								</a>\n\n<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption></figure>\n<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\"></figure>\n<h3>Look For This Logo</h3>\nLots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\n<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\">								</a>\n\n<figcaption>Click Here for Digital Catalog</figcaption></figure>\n<h5>2019 Hereford Alliance Videos</h5>\n<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n\n<figcaption>Coming Soon. Expect online May 08, 2019</figcaption></figure>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Elementor #54','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:17:18','2019-05-02 01:17:18','',54,'https://kclgenetics.com/54-revision-v1/',0,'revision','',0),(766,1,'2019-05-02 01:17:59','2019-05-02 01:17:59','<h2>\n							2019 Hereford Alliance Sale Save the Date</h2>\n<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\"><figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption></figure>\n<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\">\n\n<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption></figure>\n<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\">								</a>\n\n<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption></figure>\n<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\"></figure>\n<h3>Look For This Logo</h3>\nLots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\n<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\">								</a>\n\n<figcaption>Click Here for Digital Catalog</figcaption></figure>\n<h5>2019 Hereford Alliance Videos</h5>\n<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n\n<figcaption>Coming Soon. Expect online May 08, 2019</figcaption></figure>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:17:59','2019-05-02 01:17:59','',54,'https://kclgenetics.com/54-revision-v1/',0,'revision','',0),(772,1,'2019-05-02 01:20:48','2019-05-02 01:20:48','<h2>\n							2019 Hereford Alliance Sale Save the Date</h2>\n<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\"><figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption></figure>\n<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\">\n\n<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption></figure>\n<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\">								</a>\n\n<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption></figure>\n<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\"></figure>\n<h3>Look For This Logo</h3>\nLots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\n<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\">								</a>\n\n<figcaption>Click Here for Digital Catalog</figcaption></figure>\n<h5>2019 Hereford Alliance Videos</h5>\n<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, https://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n\n<figcaption>Coming Soon. Expect online May 08, 2019</figcaption></figure>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2019 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:20:48','2019-05-02 01:20:48','',54,'https://kclgenetics.com/54-revision-v1/',0,'revision','',0),(768,1,'2019-05-02 01:18:46','2019-05-02 01:18:46','<h2>\n							2019 Hereford Alliance Sale Save the Date\n					</h2>\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, https://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:18:46','2019-05-02 01:18:46','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(769,1,'2019-05-02 01:19:00','2019-05-02 01:19:00','<h2>\n							2019 Hereford Alliance Sale Save the Date\n					</h2>\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, https://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:19:00','2019-05-02 01:19:00','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(771,1,'2019-05-02 01:20:02','2019-05-02 01:20:02','<h2>\n							2019 Hereford Alliance Sale Save the Date\n					</h2>\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, https://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, https://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, https://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"https://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, https://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','','','inherit','closed','closed','','54-revision-v1','','','2019-05-02 01:20:02','2019-05-02 01:20:02','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(808,1,'2019-05-05 04:15:06','2019-05-05 04:15:06','<h2>\n							2019 Hereford Alliance Sale Save the Date\n					</h2>\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2019 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-05 04:15:06','2019-05-05 04:15:06','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(779,1,'2019-05-02 01:56:23','2019-05-02 01:56:23','<img class=\"alignleft wp-image-316 size-full\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\n\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\n\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-02 01:56:23','2019-05-02 01:56:23','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(780,1,'2019-05-02 01:57:48','2019-05-02 01:57:48','<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"1024\" height=\"576\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-02 01:57:48','2019-05-02 01:57:48','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(781,1,'2019-05-02 01:58:12','2019-05-02 01:58:12','<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"1024\" height=\"576\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-02 01:58:12','2019-05-02 01:58:12','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(782,1,'2019-05-02 01:59:40','2019-05-02 01:59:40','<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"1024\" height=\"576\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-02 01:59:40','2019-05-02 01:59:40','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(783,1,'2019-05-02 02:01:16','2019-05-02 02:01:16','<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"1024\" height=\"576\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			 Days Hours Minutes Seconds','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-02 02:01:16','2019-05-02 02:01:16','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(784,1,'2019-05-02 02:04:56','2019-05-02 02:04:56','<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"1024\" height=\"576\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-02 02:04:56','2019-05-02 02:04:56','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(785,1,'2019-05-02 02:06:00','2019-05-02 02:06:00','<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"1024\" height=\"576\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-02 02:06:00','2019-05-02 02:06:00','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(788,1,'2019-05-02 02:08:37','2019-05-02 02:08:37','<h2>Welcome to Larson Running L Ranch</h2>\n<h3>\n							Hereford Alliance Sale\n@ 12:00 CST</h3>\n<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\n<img width=\"1024\" height=\"576\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>\n<h1>2019 Hereford Alliance Sale Countdown</h1>\nDays Hours Minutes Seconds\n<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\">','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-02 02:08:37','2019-05-02 02:08:37','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(786,1,'2019-05-02 02:07:58','2019-05-02 02:07:58','<h2>Welcome to Larson Running L Ranch</h2>		\n					<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"1024\" height=\"576\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-02 02:07:58','2019-05-02 02:07:58','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(795,1,'2019-05-05 03:45:50','2019-05-05 03:45:50','<h2>Welcome to Larson Running L Ranch</h2>\n<h3>\n							Hereford Alliance Sale\n@ 12:00 CST</h3>\n<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\n<img width=\"1024\" height=\"576\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>\n<h1>2019 Hereford Alliance Sale Countdown</h1>\nDays Hours Minutes Seconds\n<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\">','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-05 03:45:50','2019-05-05 03:45:50','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(789,1,'2019-05-02 02:09:27','2019-05-02 02:09:27','<h2>Welcome to Larson Running L Ranch</h2>		\n					<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"1024\" height=\"576\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-02 02:09:27','2019-05-02 02:09:27','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(790,1,'2019-05-02 02:09:56','2019-05-02 02:09:56','<h2>Welcome to Larson Running L Ranch</h2>		\n					<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"1024\" height=\"576\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-02 02:09:56','2019-05-02 02:09:56','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(791,1,'2019-05-02 02:10:26','2019-05-02 02:10:26','<h2>Welcome to Larson Running L Ranch</h2>		\n					<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"1024\" height=\"576\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-02 02:10:26','2019-05-02 02:10:26','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(792,1,'2019-05-02 02:10:56','2019-05-02 02:10:56','<h2>Welcome to Larson Running L Ranch</h2>		\n					<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"1024\" height=\"576\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-02 02:10:56','2019-05-02 02:10:56','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(864,1,'2019-06-05 22:19:31','2019-06-05 22:19:31','<h2>Welcome to Larson Running L Ranch</h2>		\n					<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>Join Us May 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-06-05 22:19:31','2019-06-05 22:19:31','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(802,1,'2019-05-05 03:57:44','2019-05-05 03:57:44','<h2>Welcome to Larson Running L Ranch</h2>\n<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<h3>\n							Hereford Alliance Sale\n@ 12:00 CST</h3>\n<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\n<h1>2019 Hereford Alliance Sale Countdown</h1>\nDays Hours Minutes Seconds\n<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-05 03:57:44','2019-05-05 03:57:44','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(796,1,'2019-05-05 03:47:37','2019-05-05 03:47:37','<h2>Welcome to Larson Running L Ranch</h2>		\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n					<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-05 03:47:37','2019-05-05 03:47:37','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(798,1,'2019-05-05 03:49:23','2019-05-05 03:49:23','<h2>Welcome to Larson Running L Ranch</h2>		\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n					<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-05 03:49:23','2019-05-05 03:49:23','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(797,1,'2019-05-05 03:48:11','2019-05-05 03:48:11','<h2>Welcome to Larson Running L Ranch</h2>		\n							<figure>\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											<figcaption>Every 3rd Saturday of May</figcaption>\n										</figure>\n					<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-05 03:48:11','2019-05-05 03:48:11','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(861,1,'2019-06-05 22:00:07','2019-06-05 22:00:07','<h2>Welcome to Larson Running L Ranch</h2>\n<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<h3>\n							Hereford Alliance Sale\n@ 12:00 CST</h3>\n<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.\n<h1>2019 Hereford Alliance Sale Countdown</h1>\nDays Hours Minutes Seconds\n<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-06-05 22:00:07','2019-06-05 22:00:07','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(803,1,'2019-05-05 03:58:44','2019-05-05 03:58:44','<h2>Welcome to Larson Running L Ranch</h2>		\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n					<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-05-05 03:58:44','2019-05-05 03:58:44','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0);
INSERT INTO `wpjj_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (866,1,'2019-06-05 22:19:58','2019-06-05 22:19:58','<h2>Welcome to Larson Running L Ranch</h2>		\n					<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"480\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>Join Us May 2020</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-06-05 22:19:58','2019-06-05 22:19:58','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(865,1,'2019-06-05 22:19:41','2019-06-05 22:19:41','<h2>Welcome to Larson Running L Ranch</h2>		\n					<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>Join Us May 2020</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-06-05 22:19:41','2019-06-05 22:19:41','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(906,1,'2019-06-06 02:28:46','2019-06-06 02:28:46','<h2>Welcome to Larson Running L Ranch</h2>		\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"516\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>Join Us May 2020</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			<h1>2020 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-06-06 02:28:46','2019-06-06 02:28:46','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(867,1,'2019-06-05 22:20:18','2019-06-05 22:20:18','<h2>Welcome to Larson Running L Ranch</h2>		\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"480\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>Join Us May 2020</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-06-05 22:20:18','2019-06-05 22:20:18','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(863,1,'2019-06-05 22:18:30','2019-06-05 22:18:30','<h2>Welcome to Larson Running L Ranch</h2>		\n					<h3>\n							Hereford Alliance Sale\n							@ 12:00 CST\n					</h3>\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>Join Us May 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-06-05 22:18:30','2019-06-05 22:18:30','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(809,1,'2019-05-05 04:16:37','2019-05-05 04:16:37','<h2>\n							2019 Hereford Alliance Sale\n					</h2>\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2019 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-05 04:16:37','2019-05-05 04:16:37','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(923,1,'2020-04-15 13:31:04','2020-04-15 13:31:04','<h2>\n							2021 Hereford Alliance Sale\n					</h2>\n							<figure>\n											<a href=\"https://issuu.com/trac…/docs/larsonsherefordalliance051819/2\">\n							<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n											<figcaption>May 15, 2021 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											<figcaption>Click here to enter Auction. Live May 15, 2021</figcaption>\n										</figure>\n							<figure>\n										<img width=\"600\" height=\"400\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											<figcaption>Look for a Daughter...</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n			<h5>2021 Hereford Alliance Videos</h5>		\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2019 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2020-04-15 13:31:04','2020-04-15 13:31:04','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(810,1,'2019-05-05 04:19:34','2019-05-05 04:19:34','<h2>\n							2019 Hereford Alliance Sale\n					</h2>\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n							<figure>\n										<img width=\"600\" height=\"400\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											<figcaption>Look for a Daughter...</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2019 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-05 04:19:34','2019-05-05 04:19:34','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(811,1,'2019-05-05 04:20:04','2019-05-05 04:20:04','<h2>\n							2019 Hereford Alliance Sale\n					</h2>\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n							<figure>\n										<img width=\"600\" height=\"400\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											<figcaption>Look for a Daughter...</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2019 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-05 04:20:04','2019-05-05 04:20:04','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(813,1,'2019-05-05 04:23:51','2019-05-05 04:23:51','<h3>Bull Influence</h3>\n[caption id=\"attachment_647\" align=\"alignleft\" width=\"300\"]<img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" width=\"300\" height=\"188\"> Mastermind 602D[/caption]\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-05-05 04:23:51','2019-05-05 04:23:51','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(814,1,'2019-05-05 04:28:26','2019-05-05 04:28:26','<h3>Bull Influence</h3>\n[caption id=\"attachment_647\" align=\"alignleft\" width=\"300\"]<img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" width=\"300\" height=\"188\"> Mastermind 602D[/caption]\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-05-05 04:28:26','2019-05-05 04:28:26','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(815,1,'2019-05-05 04:30:15','2019-05-05 04:30:15','<h3>Bull Influence</h3>\n[caption id=\"attachment_647\" align=\"alignleft\" width=\"300\"]<img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" width=\"300\" height=\"188\"> Mastermind 602D[/caption]\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-05-05 04:30:15','2019-05-05 04:30:15','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(816,1,'2019-05-05 04:32:08','2019-05-05 04:32:08','<h3>Bull Influence</h3>\n[caption id=\"attachment_647\" align=\"alignleft\" width=\"300\"]<img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" width=\"300\" height=\"188\"> Mastermind 602D[/caption]\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.		\n			<h2>Some of the Bulls Used</h2>','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-05-05 04:32:08','2019-05-05 04:32:08','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(817,1,'2019-05-05 04:33:04','2019-05-05 04:33:04','<h3>Bull Influence</h3>\n[caption id=\"attachment_647\" align=\"alignleft\" width=\"300\"]<img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" width=\"300\" height=\"188\"> Mastermind 602D[/caption]\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.		\n			<h2>Some of the Bulls Used</h2>','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-05-05 04:33:04','2019-05-05 04:33:04','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(818,1,'2019-05-05 04:33:42','2019-05-05 04:33:42','<h3>Bull Influence</h3>\n[caption id=\"attachment_647\" align=\"alignleft\" width=\"300\"]<img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" width=\"300\" height=\"188\"> Mastermind 602D[/caption]\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.		\n			<h2>Some of the Bulls Used</h2>','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-05-05 04:33:42','2019-05-05 04:33:42','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(819,1,'2019-05-05 04:34:19','2019-05-05 04:34:19','<h3>Bull Influence</h3>\n[caption id=\"attachment_647\" align=\"alignleft\" width=\"300\"]<img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" width=\"300\" height=\"188\"> Mastermind 602D[/caption]\n\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\n<h2>Some of the Bulls Used</h2>','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-05-05 04:34:19','2019-05-05 04:34:19','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(821,1,'2019-05-05 04:44:22','2019-05-05 04:44:22','<img width=\"900\" height=\"563\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-05-05 04:44:22','2019-05-05 04:44:22','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(822,1,'2019-05-05 04:44:42','2019-05-05 04:44:42','<img width=\"900\" height=\"563\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-05-05 04:44:42','2019-05-05 04:44:42','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(823,1,'2019-05-05 04:46:34','2019-05-05 04:46:34','<img width=\"900\" height=\"563\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence</h2>','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-05-05 04:46:34','2019-05-05 04:46:34','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(824,1,'2019-05-05 04:46:58','2019-05-05 04:46:58','<img width=\"900\" height=\"563\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence</h2>','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-05-05 04:46:58','2019-05-05 04:46:58','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(825,1,'2019-05-05 04:47:34','2019-05-05 04:47:34','<span style=\"font-size: 28px; font-weight: 900;\">Contact Numbers</span>\n<div class=\"rt-grid-6 rt-alpha\">\n<div class=\"rt-block box2\">\n<div class=\"module-surround\">\n<div class=\"module-content\">\n<div class=\"custombox2\">\n\n<img class=\"alignleft size-thumbnail wp-image-316\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\">Ranch Office- 972-824-5869\n\nOwner- Ken Larson- 972-977-8251\n\nLee Larson- Manager- 972-824-5869\n\nJosh Lowe-Herdman- 972-310-2421\n\nRanch Address: 2793 FM 1991 - Clifton, TX 76634\n\nE-mail: runlranch@aol.com\n\n[contact-form-7 id=\"491\" title=\"Contact form 1\"]\n\n</div>\n</div>\n</div>\n</div>\n</div>','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2019-05-05 04:47:34','2019-05-05 04:47:34','',51,'http://kclgenetics.com/51-revision-v1/',0,'revision','',0),(827,1,'2019-05-05 04:54:17','2019-05-05 04:54:17','<figure>\n										<img width=\"150\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" />											<figcaption>A Tradition That Continveues To Improve</figcaption>\n										</figure>\n		<p>Ranch Office- 972-824-5869</p><p>Owner- Ken Larson- 972-977-8251</p><p>Lee Larson- Manager- 972-824-5869</p><p>Josh Lowe-- 972-310-2421</p><p>Ranch Address: 2793 FM 1991 - Clifton, TX 76634</p><p>E-mail: runlranch@aol.com</p>		\n			<h2>Send Us a Note...</h2>		\n		[contact-form-7 id=\"491\" title=\"Contact form 1\"]','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2019-05-05 04:54:17','2019-05-05 04:54:17','',51,'http://kclgenetics.com/51-revision-v1/',0,'revision','',0),(828,1,'2019-05-05 04:54:44','2019-05-05 04:54:44','<figure>\n										<img width=\"150\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" />											<figcaption>A Tradition That Continveues To Improve</figcaption>\n										</figure>\n		<p>Ranch Office- 972-824-5869</p><p>Owner- Ken Larson- 972-977-8251</p><p>Lee Larson- Manager- 972-824-5869</p><p>Josh Lowe-- 972-310-2421</p><p>Ranch Address: 2793 FM 1991 - Clifton, TX 76634</p><p>E-mail: runlranch@aol.com</p>		\n			<h2>Send Us a Note...</h2>		\n		[contact-form-7 id=\"491\" title=\"Contact form 1\"]','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2019-05-05 04:54:44','2019-05-05 04:54:44','',51,'http://kclgenetics.com/51-revision-v1/',0,'revision','',0),(830,1,'2019-05-05 04:57:00','2019-05-05 04:57:00','<figure>\n										<img width=\"150\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\"><figcaption>A Tradition That Continveues To Improve</figcaption></figure>\nRanch Office- 972-824-5869\n\nOwner- Ken Larson- 972-977-8251\n\nLee Larson- Manager- 972-824-5869\n\nJosh Lowe-- 972-310-2421\n\nRanch Address: 2793 FM 1991 - Clifton, TX 76634\n\nE-mail: runlranch@aol.com\n<h2>Send Us a Note...</h2>\n[contact-form-7 id=\"491\" title=\"Contact form 1\"]\n<img width=\"900\" height=\"596\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1200x795.jpg 1200w\" sizes=\"(max-width: 900px) 100vw, 900px\">','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2019-05-05 04:57:00','2019-05-05 04:57:00','',51,'http://kclgenetics.com/51-revision-v1/',0,'revision','',0),(829,1,'2019-05-05 04:56:01','2019-05-05 04:56:01','<figure>\n										<img width=\"150\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" />											<figcaption>A Tradition That Continveues To Improve</figcaption>\n										</figure>\n		<p>Ranch Office- 972-824-5869</p><p>Owner- Ken Larson- 972-977-8251</p><p>Lee Larson- Manager- 972-824-5869</p><p>Josh Lowe-- 972-310-2421</p><p>Ranch Address: 2793 FM 1991 - Clifton, TX 76634</p><p>E-mail: runlranch@aol.com</p>		\n			<h2>Send Us a Note...</h2>		\n		[contact-form-7 id=\"491\" title=\"Contact form 1\"]		\n										<img width=\"900\" height=\"596\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1200x795.jpg 1200w\" sizes=\"(max-width: 900px) 100vw, 900px\" />','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2019-05-05 04:56:01','2019-05-05 04:56:01','',51,'http://kclgenetics.com/51-revision-v1/',0,'revision','',0),(832,1,'2019-05-05 04:59:44','2019-05-05 04:59:44','<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 04:59:44','2019-05-05 04:59:44','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(833,1,'2019-05-05 05:00:43','2019-05-05 05:00:43','<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:00:43','2019-05-05 05:00:43','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(836,1,'2019-05-05 05:03:33','2019-05-05 05:03:33','<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:03:33','2019-05-05 05:03:33','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(835,1,'2019-05-05 05:02:53','2019-05-05 05:02:53','<em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production.&nbsp;The cows&nbsp;are assessed with a heavy eye on mothering ability&nbsp;with a focus on&nbsp;udder structure and milk flow.&nbsp;It is of extreme importance that females in this program be structurally sound in skeleton&nbsp;and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:02:53','2019-05-05 05:02:53','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(837,1,'2019-05-05 05:05:30','2019-05-05 05:05:30','<em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production.&nbsp;The cows&nbsp;are assessed with a heavy eye on mothering ability&nbsp;with a focus on&nbsp;udder structure and milk flow.&nbsp;It is of extreme importance that females in this program be structurally sound in skeleton&nbsp;and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:05:30','2019-05-05 05:05:30','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(838,1,'2019-05-05 05:07:08','2019-05-05 05:07:08','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:07:08','2019-05-05 05:07:08','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(839,1,'2019-05-05 05:09:37','2019-05-05 05:09:37','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:09:37','2019-05-05 05:09:37','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(840,1,'2019-05-05 05:10:17','2019-05-05 05:10:17','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:10:17','2019-05-05 05:10:17','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(841,1,'2019-05-05 05:10:56','2019-05-05 05:10:56','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:10:56','2019-05-05 05:10:56','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(842,1,'2019-05-05 05:11:32','2019-05-05 05:11:32','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:11:32','2019-05-05 05:11:32','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(843,1,'2019-05-05 05:11:48','2019-05-05 05:11:48','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:11:48','2019-05-05 05:11:48','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(844,1,'2019-05-05 05:12:25','2019-05-05 05:12:25','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:12:25','2019-05-05 05:12:25','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(845,1,'2019-05-05 05:13:33','2019-05-05 05:13:33','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>			\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:13:33','2019-05-05 05:13:33','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(846,1,'2019-05-05 05:14:18','2019-05-05 05:14:18','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>			\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:14:18','2019-05-05 05:14:18','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(847,1,'2019-05-05 05:14:38','2019-05-05 05:14:38','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>			\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:14:38','2019-05-05 05:14:38','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(848,1,'2019-05-05 05:14:46','2019-05-05 05:14:46','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>			\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:14:46','2019-05-05 05:14:46','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(849,1,'2019-05-05 05:15:28','2019-05-05 05:15:28','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>			\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=larsons%20polled%20herefords&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"larsons polled herefords\"></iframe>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:15:28','2019-05-05 05:15:28','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(850,1,'2019-05-05 05:16:05','2019-05-05 05:16:05','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>			\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=larsons%20polled%20herefords&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"larsons polled herefords\"></iframe>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:16:05','2019-05-05 05:16:05','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(851,1,'2019-05-05 05:16:45','2019-05-05 05:16:45','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>			\n							<figure>\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											<figcaption>3rd Saturday of May</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=larsons%20polled%20herefords&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"larsons polled herefords\"></iframe>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-05-05 05:16:45','2019-05-05 05:16:45','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(870,1,'2019-06-05 22:24:04','2019-06-05 22:24:04','<h2>\n							2019 Hereford Alliance Sale</h2>\n<figure>\n											<a href=\"https://issuu.com/trac…/docs/larsonsherefordalliance051819/2\" data-elementor-open-lightbox=\"\">\n<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\">								</a><figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption></figure>\n<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\">\n\n<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption></figure>\n<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\">								</a>\n\n<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption></figure>\n<figure>\n										<img width=\"600\" height=\"400\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n\n<figcaption>Look for a Daughter...</figcaption></figure>\n<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\"></figure>\n<h3>Look For This Logo</h3>\nLots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\n<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\">								</a>\n\n<figcaption>Click Here for Digital Catalog</figcaption></figure>\n<h5>2019 Hereford Alliance Videos</h5>\n<figure>\n											<a href=\"https://www.youtube.com/playlist?list=PL3K3ghzeET2TxNcajo1xU76dSS31QL2sy\" data-elementor-open-lightbox=\"\">\n<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\">								</a>\n\n<figcaption>Coming Soon. Expect online May 08, 2019</figcaption></figure>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2019 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-06-05 22:24:04','2019-06-05 22:24:04','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(858,1,'2019-05-08 17:19:56','2019-05-08 17:19:56','<h2>\n							2019 Hereford Alliance Sale\n					</h2>\n							<figure>\n											<a href=\"https://issuu.com/trac…/docs/larsonsherefordalliance051819/2\" data-elementor-open-lightbox=\"\">\n							<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n											<figcaption>May 18, 2019 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"150\" height=\"150\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/icon_pdf-150x150.png\" alt=\"\" />											<figcaption>Click Icon for 2019 Catalog PDF Download</figcaption>\n										</figure>\n							<figure>\n											<a href=\"http://www.liveauctions.tv/OnlineBidding/ViewVideo.aspx?AuctionID=7508\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Click here to enter Auction. Live May 18, 2019</figcaption>\n										</figure>\n							<figure>\n										<img width=\"600\" height=\"400\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											<figcaption>Look for a Daughter...</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n							<figure>\n											<a href=\"https://issuu.com/tracyhm/docs/larsonsherefordalliance051819\" data-elementor-open-lightbox=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"300\" height=\"300\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-300x300.png 300w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-150x150.png 150w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog-230x230.png 230w, http://kclgenetics.com/wp-content/uploads/2019/05/digital-catalog.png 450w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Click Here for Digital Catalog</figcaption>\n										</figure>\n			<h5>2019 Hereford Alliance Videos</h5>		\n							<figure>\n											<a href=\"https://www.youtube.com/playlist?list=PL3K3ghzeET2TxNcajo1xU76dSS31QL2sy\" data-elementor-open-lightbox=\"\">\n							<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n											<figcaption>Coming Soon. Expect online May 08, 2019</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2019 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2019-05-08 17:19:56','2019-05-08 17:19:56','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(868,1,'2019-06-05 22:22:01','2019-06-05 22:22:01','<h2>Welcome to Larson Running L Ranch</h2>		\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"480\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>Join Us May 2020</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-06-05 22:22:01','2019-06-05 22:22:01','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(869,1,'2019-06-05 22:23:04','2019-06-05 22:23:04','<h2>Welcome to Larson Running L Ranch</h2>		\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"480\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>Join Us May 2020</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			<h1>2019 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-06-05 22:23:04','2019-06-05 22:23:04','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(871,1,'2019-06-05 22:25:48','2019-06-05 22:25:48','<img width=\"900\" height=\"563\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 900px) 100vw, 900px\">\n\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\n<h2>Bull Influence</h2>','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-05 22:25:48','2019-06-05 22:25:48','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(872,1,'2019-06-05 22:27:35','2019-06-05 22:27:35','<img width=\"900\" height=\"563\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence</h2>		\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-05 22:27:35','2019-06-05 22:27:35','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(873,1,'2019-06-05 22:27:55','2019-06-05 22:27:55','<img width=\"900\" height=\"563\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence</h2>		\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-05 22:27:55','2019-06-05 22:27:55','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(887,1,'2019-06-06 01:13:24','2019-06-06 01:13:24','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence at Larson</h2>		\n										<img width=\"300\" height=\"210\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-768x538.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"169\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png 300w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-768x432.png 768w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752.png 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"214\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-300x214.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-300x214.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-06 01:13:24','2019-06-06 01:13:24','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(882,1,'2019-06-06 01:06:35','2019-06-06 01:06:35','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\">\n\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\n<h2>Bull Influence at Larson</h2>\n<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\">','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-06 01:06:35','2019-06-06 01:06:35','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(874,1,'2019-06-05 22:29:39','2019-06-05 22:29:39','<img width=\"900\" height=\"563\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence</h2>		\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-05 22:29:39','2019-06-05 22:29:39','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(879,1,'2019-06-05 22:38:14','2019-06-05 22:38:14','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence at Larson</h2>		\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-05 22:38:14','2019-06-05 22:38:14','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(875,1,'2019-06-05 22:30:32','2019-06-05 22:30:32','<img width=\"900\" height=\"563\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence at Larson</h2>		\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-05 22:30:32','2019-06-05 22:30:32','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(876,1,'2019-06-05 22:31:50','2019-06-05 22:31:50','','77121 Shaw KCL','','inherit','closed','closed','','77121-shaw-kcl','','','2019-06-05 22:31:50','2019-06-05 22:31:50','',62,'http://kclgenetics.com/wp-content/uploads/2019/06/77121-Shaw-KCL.jpg',0,'attachment','image/jpeg',0),(877,1,'2019-06-05 22:32:10','2019-06-05 22:32:10','','77026 Shaw KCL','','inherit','closed','closed','','77026-shaw-kcl','','','2019-06-05 22:32:10','2019-06-05 22:32:10','',62,'http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL.jpg',0,'attachment','image/jpeg',0),(878,1,'2019-06-05 22:32:33','2019-06-05 22:32:33','','77130 KCL Shaw','','inherit','closed','closed','','77130-kcl-shaw','','','2019-06-05 22:32:33','2019-06-05 22:32:33','',62,'http://kclgenetics.com/wp-content/uploads/2019/06/77130-KCL-Shaw.jpg',0,'attachment','image/jpeg',0),(880,1,'2019-06-05 22:39:11','2019-06-05 22:39:11','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence at Larson</h2>		\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-05 22:39:11','2019-06-05 22:39:11','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(881,1,'2019-06-05 22:42:51','2019-06-05 22:42:51','<figure>\n										<img width=\"150\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" />											<figcaption>A Tradition That Continues To Improve</figcaption>\n										</figure>\n		<p>Ranch Office- 972-824-5869</p><p>Owner- Ken Larson- 972-977-8251</p><p>Lee Larson- Manager- 972-824-5869</p><p>Josh Lowe-- 972-310-2421</p><p>Ranch Address: 2793 FM 1991 - Clifton, TX 76634</p><p>E-mail: runlranch@aol.com</p>		\n			<h2>Send Us a Note...</h2>		\n		[contact-form-7 id=\"491\" title=\"Contact form 1\"]		\n										<img width=\"900\" height=\"596\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1200x795.jpg 1200w\" sizes=\"(max-width: 900px) 100vw, 900px\" />','Contact Us','','inherit','closed','closed','','51-revision-v1','','','2019-06-05 22:42:51','2019-06-05 22:42:51','',51,'http://kclgenetics.com/51-revision-v1/',0,'revision','',0),(883,1,'2019-06-06 01:08:24','2019-06-06 01:08:24','','S MANDATE 66589 ET','','inherit','closed','closed','','s-mandate-66589-et','','','2019-06-06 01:08:24','2019-06-06 01:08:24','',62,'http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET.jpg',0,'attachment','image/jpeg',0),(886,1,'2019-06-06 01:13:05','2019-06-06 01:13:05','','IMG_0875+2','','inherit','closed','closed','','img_08752','','','2019-06-06 01:13:05','2019-06-06 01:13:05','',62,'http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752.png',0,'attachment','image/png',0),(885,1,'2019-06-06 01:11:23','2019-06-06 01:11:23','','H FHF Advance 628 ET','','inherit','closed','closed','','h-fhf-advance-628-et','','','2019-06-06 01:11:23','2019-06-06 01:11:23','',62,'http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET.jpg',0,'attachment','image/jpeg',0),(898,1,'2019-06-06 01:41:32','2019-06-06 01:41:32','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\">\n\nBulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.\n<h2>Bull Influence at Larson</h2>\n<figure>\n										<img width=\"300\" height=\"210\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-768x538.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\"><figcaption>/S Mandate 66589 ET</figcaption></figure>\n<figure>\n										<img width=\"300\" height=\"169\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png 300w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-768x432.png 768w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752.png 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n\n<figcaption>PCR X51 Bentley 454B</figcaption></figure>\n<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n<figure>\n										<img width=\"768\" height=\"549\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-300x214.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET.jpg 940w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n\n<figcaption>H FHF Advance 628 ET</figcaption></figure>\n<figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/z311.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n\n<figcaption>KCF Bennett Encore Z311 ET</figcaption></figure>\n<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\">','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-06 01:41:32','2019-06-06 01:41:32','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(893,1,'2019-06-06 01:24:33','2019-06-06 01:24:33','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence at Larson</h2>		\n							<figure>\n										<img width=\"300\" height=\"210\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-768x538.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Mandate 66589 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"169\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png 300w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-768x432.png 768w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752.png 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>PCR X51 Bentley 454B</figcaption>\n										</figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n							<figure>\n										<img width=\"768\" height=\"549\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-300x214.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET.jpg 940w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>H FHF Advance 628 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/z311.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>KCF Bennett Encore Z311 ET</figcaption>\n										</figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-06 01:24:33','2019-06-06 01:24:33','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(891,1,'2019-06-06 01:22:03','2019-06-06 01:22:03','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence at Larson</h2>		\n							<figure>\n										<img width=\"300\" height=\"210\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-768x538.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Mandate 66589 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"169\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png 300w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-768x432.png 768w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752.png 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>PCR X51 Bentley 454B</figcaption>\n										</figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n							<figure>\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/955-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/955-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/955-768x511.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/955.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>KCF Bennett Encore Z311 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"768\" height=\"549\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-300x214.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET.jpg 940w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>H FHF Advance 628 ET</figcaption>\n										</figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-06 01:22:03','2019-06-06 01:22:03','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(889,1,'2019-06-06 01:18:11','2019-06-06 01:18:11','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence at Larson</h2>		\n							<figure>\n										<img width=\"300\" height=\"210\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-768x538.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Mandate 66589 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"169\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png 300w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-768x432.png 768w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752.png 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>PCR X51 Bentley 454B</figcaption>\n										</figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n							<figure>\n										<img width=\"300\" height=\"214\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-300x214.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-300x214.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>H FHF Advance 628 ET</figcaption>\n										</figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-06 01:18:11','2019-06-06 01:18:11','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(890,1,'2019-06-06 01:20:57','2019-06-06 01:20:57','','955','','inherit','closed','closed','','955','','','2019-06-06 01:20:57','2019-06-06 01:20:57','',62,'http://kclgenetics.com/wp-content/uploads/2019/06/955.jpg',0,'attachment','image/jpeg',0),(892,1,'2019-06-06 01:22:41','2019-06-06 01:22:41','','z311','','inherit','closed','closed','','z311','','','2019-06-06 01:22:41','2019-06-06 01:22:41','',62,'http://kclgenetics.com/wp-content/uploads/2019/06/z311.jpg',0,'attachment','image/jpeg',0),(894,1,'2019-06-06 01:25:39','2019-06-06 01:25:39','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence at Larson</h2>		\n							<figure>\n										<img width=\"300\" height=\"210\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-768x538.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Mandate 66589 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"169\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png 300w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-768x432.png 768w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752.png 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>PCR X51 Bentley 454B</figcaption>\n										</figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n							<figure>\n										<img width=\"768\" height=\"549\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-300x214.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET.jpg 940w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>H FHF Advance 628 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/z311.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>KCF Bennett Encore Z311 ET</figcaption>\n										</figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-06 01:25:39','2019-06-06 01:25:39','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(895,1,'2019-06-06 01:28:08','2019-06-06 01:28:08','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence at Larson</h2>		\n							<figure>\n										<img width=\"300\" height=\"210\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-768x538.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Mandate 66589 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"169\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png 300w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-768x432.png 768w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752.png 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>PCR X51 Bentley 454B</figcaption>\n										</figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n							<figure>\n										<img width=\"768\" height=\"549\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-300x214.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET.jpg 940w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>H FHF Advance 628 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/z311.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>KCF Bennett Encore Z311 ET</figcaption>\n										</figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-06 01:28:08','2019-06-06 01:28:08','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(896,1,'2019-06-06 01:30:12','2019-06-06 01:30:12','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence at Larson</h2>		\n							<figure>\n										<img width=\"300\" height=\"210\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-768x538.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Mandate 66589 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"169\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png 300w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-768x432.png 768w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752.png 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>PCR X51 Bentley 454B</figcaption>\n										</figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n							<figure>\n										<img width=\"768\" height=\"549\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-300x214.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET.jpg 940w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>H FHF Advance 628 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/z311.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>KCF Bennett Encore Z311 ET</figcaption>\n										</figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-06 01:30:12','2019-06-06 01:30:12','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(899,1,'2019-06-06 01:47:31','2019-06-06 01:47:31','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence at Larson</h2>		\n							<figure>\n										<img width=\"300\" height=\"210\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-768x538.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Mandate 66589 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"169\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png 300w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-768x432.png 768w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752.png 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>PCR X51 Bentley 454B</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"201\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77121-Shaw-KCL-300x201.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77121-Shaw-KCL-300x201.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77121-Shaw-KCL-768x514.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/77121-Shaw-KCL-1024x686.jpg 1024w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Yosemite 77121</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"206\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77130-KCL-Shaw-300x206.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77130-KCL-Shaw-300x206.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77130-KCL-Shaw-768x528.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/77130-KCL-Shaw-1024x705.jpg 1024w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Jetsetter 77130 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"768\" height=\"549\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-300x214.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET.jpg 940w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>H FHF Advance 628 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/z311.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>KCF Bennett Encore Z311 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"202\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Adrenaline 77026 ET</figcaption>\n										</figure>','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-06 01:47:31','2019-06-06 01:47:31','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(900,1,'2019-06-06 01:48:37','2019-06-06 01:48:37','<img width=\"900\" height=\"605\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											\n		<p>Bulls selected for use in our program are done so under a strict set of parameters in accordance to what traits we think a cow family may need strengthened. The bulls selected must be maternal based and have the ability to pass along these maternal characteristics. In this day and age of rising input cost we need bulls that will produce cattle that will decrease the amount of input needed and ensure a live calf that is born unassisted and be raised by a momma cow. Over the past few years we have added an added focus on low actual birth weight. This has been a succcessful injection and the cow base here has ensured that the cattle produced still have practical grow and power. The bulls listed in this section generally do not include all bulls being used, but is an accurate cross-section of our genetic philosophies.</p>		\n			<h2>Bull Influence at Larson</h2>		\n							<figure>\n										<img width=\"300\" height=\"210\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-300x210.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET-768x538.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/S-MANDATE-66589-ET.jpg 940w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Mandate 66589 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"169\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-300x169.png 300w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752-768x432.png 768w, http://kclgenetics.com/wp-content/uploads/2019/06/IMG_08752.png 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>PCR X51 Bentley 454B</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"201\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77121-Shaw-KCL-300x201.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77121-Shaw-KCL-300x201.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77121-Shaw-KCL-768x514.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/77121-Shaw-KCL-1024x686.jpg 1024w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Yosemite 77121</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"206\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77130-KCL-Shaw-300x206.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77130-KCL-Shaw-300x206.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77130-KCL-Shaw-768x528.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/77130-KCL-Shaw-1024x705.jpg 1024w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Jetsetter 77130 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"768\" height=\"549\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-768x549.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET-300x214.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/H-FHF-Advance-628-ET.jpg 940w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>H FHF Advance 628 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/z311-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/z311.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>KCF Bennett Encore Z311 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"202\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>/S Adrenaline 77026 ET</figcaption>\n										</figure>\n							<figure>\n										<img width=\"300\" height=\"188\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											<figcaption>KCL X51 Mastermind 1L 602D ET</figcaption>\n										</figure>','Carefully Selected Sire Influence','','inherit','closed','closed','','62-revision-v1','','','2019-06-06 01:48:37','2019-06-06 01:48:37','',62,'http://kclgenetics.com/62-revision-v1/',0,'revision','',0),(902,1,'2019-06-06 02:04:51','2019-06-06 02:04:51','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n										<img width=\"300\" height=\"203\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"199\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-300x199.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1200x795.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"203\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-300x203.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1200x813.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"199\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-300x199.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-1200x795.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>			\n							<figure>\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											<figcaption>3rd Saturday of May</figcaption>\n										</figure>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-06-06 02:04:51','2019-06-06 02:04:51','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(901,1,'2019-06-06 02:01:12','2019-06-06 02:01:12','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n										<img width=\"300\" height=\"203\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"199\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-300x199.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1200x795.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"203\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-300x203.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1200x813.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"199\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-300x199.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-1200x795.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/06/D12-KCL-1024x745.jpg\" alt=\"Bonissa D12\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102A-KCL-1024x704.jpg\" alt=\"Miss Master 102A\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>			\n							<figure>\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											<figcaption>3rd Saturday of May</figcaption>\n										</figure>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-06-06 02:01:12','2019-06-06 02:01:12','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(907,1,'2019-06-06 02:33:36','2019-06-06 02:33:36','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n										<img width=\"300\" height=\"203\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"199\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-300x199.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1200x795.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"203\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-300x203.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1200x813.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"199\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-300x199.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-1200x795.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>			\n							<figure>\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											<figcaption>3rd Saturday of May</figcaption>\n										</figure>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-06-06 02:33:36','2019-06-06 02:33:36','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(910,0,'2019-10-04 17:32:57','2019-10-04 17:32:57','This is the demo skin created by Feed Them All plugin automatically with default values. You can edit it and change the look &amp; feel of your Feeds.','Instagram Skin','','publish','closed','closed','','instagram-skin','','','2019-10-04 17:32:57','2019-10-04 17:32:57','',0,'http://kclgenetics.com/instagram-skin/',0,'mif_skins','',0),(911,0,'2019-10-04 17:32:57','2019-10-04 17:32:57','[my-instagram-feed user_id=\'\' skin_id=\'910\'] <br> This is a mif demo page created by plugin automatically. Please don\'t delete to make the plugin work properly.','My Instagram Feed Demo','','publish','closed','closed','','my-instagram-feed-demo','','','2019-10-04 17:32:57','2019-10-04 17:32:57','',0,'http://kclgenetics.com/my-instagram-feed-demo/',0,'page','',0),(905,1,'2019-06-06 02:27:42','2019-06-06 02:27:42','<h2>Welcome to Larson Running L Ranch</h2>		\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"480\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-768x480.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-300x188.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1024x640.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/602D-KCL-e1525224046433-1200x750.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>Join Us May 2020</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			<h1>2020 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2019-06-06 02:27:42','2019-06-06 02:27:42','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(908,1,'2019-06-06 02:35:28','2019-06-06 02:35:28','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n										<img width=\"300\" height=\"203\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"199\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-300x199.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1200x795.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"203\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-300x203.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1200x813.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"199\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-300x199.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-1200x795.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/KCL-3T-BONISSA-71S-114W-ET-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/KCL-3T-BONISSA-71S-114W-ET-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/KCL-3T-BONISSA-71S-114W-ET.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C11-KCL-1024x709.jpg\" alt=\"C11 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure>			\n							<figure>\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											<figcaption>3rd Saturday of May</figcaption>\n										</figure>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-revision-v1','','','2019-06-06 02:35:28','2019-06-06 02:35:28','',60,'http://kclgenetics.com/60-revision-v1/',0,'revision','',0),(909,1,'2019-06-06 02:37:43','2019-06-06 02:37:43','<figure>\n										<img width=\"3250\" height=\"1904\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537.jpg 3250w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-300x176.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-768x450.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-830x486.jpg 830w, http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-230x135.jpg 230w\" sizes=\"(max-width: 3250px) 100vw, 3250px\" />											<figcaption>Udder Quality</figcaption>\n										</figure>\n		<p><em>The <strong>KCL Genetics Donor Program</strong> is an aggressive vision of the \"Next Generation\". Cattle in this program exhibit and produce traits that lend to real world beef production. The cows are assessed with a heavy eye on mothering ability with a focus on udder structure and milk flow. It is of extreme importance that females in this program be structurally sound in skeleton and motion. These females are combined with progressive sires that further progress their influence and push their cow family forward. All of these factors give us confidence in the \"The Next Generation\". COW FAMILIES ARE THE KEY</em></p>		\n										<img width=\"300\" height=\"203\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"199\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-300x199.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1200x795.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"203\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-300x203.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1200x813.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"199\" src=\"http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-300x199.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-300x199.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-768x509.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-1024x678.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/04/B224-KCL-1200x795.jpg 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/TH-122-71I-DOMINETTE-511X-ET.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"200\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/KCL-3T-BONISSA-71S-114W-ET-300x200.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/KCL-3T-BONISSA-71S-114W-ET-300x200.jpg 300w, http://kclgenetics.com/wp-content/uploads/2017/03/KCL-3T-BONISSA-71S-114W-ET.jpg 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n				<figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg\" alt=\"Italia D17\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/Y40-KCL-1024x732.jpg\" alt=\"Y40 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/03D-KCL-1024x694.jpg\" alt=\"Beth 603D\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6000-KCL-Shaw-1024x678.jpg\" alt=\"Lady 6000\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/60C-KCL-1024x695.jpg\" alt=\"60C KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6050-KCL-Shaw-1024x710.jpg\" alt=\"Lady 6050\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/102Z-KCL-1024x678.jpg\" alt=\"102Z KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/A18-KCL-1024x726.jpg\" alt=\"A18\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/B224-KCL-1024x678.jpg\" alt=\"B224 KCL\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-e1544295138537-1024x600.jpg\" alt=\"75C\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-1024x696.jpg\" alt=\"Italia Y40\" /></figure><figure><img src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg\" alt=\"6003 KCL Shaw\" /></figure>			\n							<figure>\n										<img width=\"900\" height=\"506\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 900px) 100vw, 900px\" />											<figcaption>3rd Saturday of May</figcaption>\n										</figure>','KCL Genetics Donor Cows','','inherit','closed','closed','','60-autosave-v1','','','2019-06-06 02:37:43','2019-06-06 02:37:43','',60,'http://kclgenetics.com/60-autosave-v1/',0,'revision','',0),(912,0,'2019-10-04 17:32:57','2019-10-04 17:32:57','This is the demo skin created by plugin automatically with default values. You can edit it and change the look &amp; feel of your Facebook Feeds.','Facebook Skin','','publish','closed','closed','','facebook-skin','','','2019-10-04 17:32:57','2019-10-04 17:32:57','',0,'http://kclgenetics.com/facebook-skin/',0,'efbl_skins','',0),(913,0,'2019-10-04 17:32:57','2019-10-04 17:32:57','[efb_feed fanpage_id=\"617177998743210\" show_like_box=\"1\" post_number=\"10\" cache_unit=\"5\" cache_duration=\"days\" skin_id=912 ]<br> This is a Facebook demo page created by plugin automatically. Please do not delete to make the plugin work properly.','Facebook Demo','','publish','closed','closed','','facebook-demo','','','2019-10-04 17:32:57','2019-10-04 17:32:57','',0,'http://kclgenetics.com/facebook-demo/',0,'page','',0),(914,0,'2020-02-16 18:34:13','2020-02-16 18:34:13','','Default Kit','','publish','closed','closed','','default-kit','','','2020-02-16 18:34:13','2020-02-16 18:34:13','',0,'http://kclgenetics.com/?elementor_library=default-kit',0,'elementor_library','',0),(917,1,'2020-04-15 13:17:56','2020-04-15 13:17:56','','covid-header.png','','inherit','closed','closed','','covid-header-png','','','2020-04-15 13:17:56','2020-04-15 13:17:56','',44,'http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png.jpeg',0,'attachment','image/jpeg',0),(920,1,'2020-04-15 13:25:15','2020-04-15 13:25:15','<img width=\"768\" height=\"213\" src=\"http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-768x213.jpeg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-768x213.jpeg 768w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-300x83.jpeg 300w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-1024x284.jpeg 1024w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png.jpeg 1260w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"300\" height=\"224\" src=\"http://kclgenetics.com/wp-content/uploads/2020/04/72048917_519360131958583_4843767720182808576_n-2.jpg\" alt=\"\" />											\n			<h2>The 2020 Hereford Alliance Sale Has Been Cancelled Due to the Corona Virus Pandemic</h2>		\n			<h2>Welcome to Larson Running L Ranch</h2>		\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"516\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>Join Us May 2020</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			<h1>2020 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2020-04-15 13:25:15','2020-04-15 13:25:15','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(919,1,'2020-04-15 13:23:58','2020-04-15 13:23:58','','72048917_519360131958583_4843767720182808576_n-2','','inherit','closed','closed','','72048917_519360131958583_4843767720182808576_n-2','','','2020-04-15 13:23:58','2020-04-15 13:23:58','',44,'http://kclgenetics.com/wp-content/uploads/2020/04/72048917_519360131958583_4843767720182808576_n-2.jpg',0,'attachment','image/jpeg',0),(921,1,'2020-04-15 13:25:57','2020-04-15 13:25:57','<img width=\"768\" height=\"213\" src=\"http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-768x213.jpeg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-768x213.jpeg 768w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-300x83.jpeg 300w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-1024x284.jpeg 1024w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png.jpeg 1260w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"300\" height=\"224\" src=\"http://kclgenetics.com/wp-content/uploads/2020/04/72048917_519360131958583_4843767720182808576_n-2.jpg\" alt=\"\" />											\n			<h2>The 2020 Hereford Alliance Sale Has Been Cancelled Due to the Corona Virus Pandemic</h2>		\n			<h2>Welcome to Larson Running L Ranch</h2>		\n		<img src=\"http://kclgenetics.com/wp-content/uploads/2017/03/Larson_logo-e1524187019875.jpg\" alt=\"\" width=\"150\" height=\"160\">Everyone here is dedicated to the advancement and development of the Hereford breed. Our breeding program spans over 30 years of pure bred Hereford cattle and our approach is focused on the maternal enhancement of this resilient breed.\nOur program consists of a flush program in which breed leading females are mated with progressive sires to create the next generation. We use very strict \"real world\" parameters for cattle allowed to enter the ET program. One of the most important traits is mothering ability and longevity.\nKCL Genetics is our breeder prefix and it has become a standard of excellence and reliability. Anytime you see the KCL prefix in a pedigree you can rest assured that the individual is a product of a planned and disciplined approach.		\n										<img width=\"768\" height=\"520\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-768x520.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-300x203.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1024x693.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/C17-KCL-1200x812.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"516\" src=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-768x516.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-300x202.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/06/77026-Shaw-KCL-1024x688.jpg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"534\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-768x534.jpg 768w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-300x209.jpg 300w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1024x712.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2018/05/6003-KCL-Shaw-1200x835.jpg 1200w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n							<figure>\n										<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											<figcaption>Join Us May 2020</figcaption>\n										</figure>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>		\n			<h1>2021 Hereford Alliance Sale Countdown</h1>		\n			 Days Hours Minutes Seconds','Home of KCL Genetics','','inherit','closed','closed','','44-revision-v1','','','2020-04-15 13:25:57','2020-04-15 13:25:57','',44,'http://kclgenetics.com/44-revision-v1/',0,'revision','',0),(925,1,'2020-04-15 13:35:01','2020-04-15 13:35:01','<img width=\"768\" height=\"213\" src=\"http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-768x213.jpeg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-768x213.jpeg 768w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-300x83.jpeg 300w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-1024x284.jpeg 1024w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png.jpeg 1260w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<img width=\"300\" height=\"224\" src=\"http://kclgenetics.com/wp-content/uploads/2020/04/72048917_519360131958583_4843767720182808576_n-2.jpg\" alt=\"\">\n<h2>2020 Hereford Alliance Sale Canceled\nDue to Coronavirus Pandemic\nWe Look forward to seeing you in 2021.\nGive Us a Call if we can be of any service.</h2>\n<h2>\n							2021 Hereford Alliance Sale</h2>\n<figure>\n											<a href=\"https://issuu.com/trac…/docs/larsonsherefordalliance051819/2\">\n<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\">								</a><figcaption>May 15, 2021 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption></figure>\n<figure>\n										<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\">\n\n<figcaption>Click here to enter Auction. Live May 15, 2021</figcaption></figure>\n<figure>\n										<img width=\"600\" height=\"400\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n\n<figcaption>Look for a Daughter...</figcaption></figure>\n<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\"></figure>\n<h3>Look For This Logo</h3>\nLots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.\n<h5>2021 Hereford Alliance Videos</h5>\n<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2019 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2020-04-15 13:35:01','2020-04-15 13:35:01','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0),(924,1,'2020-04-15 13:34:26','2020-04-15 13:34:26','<img width=\"768\" height=\"213\" src=\"http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-768x213.jpeg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-768x213.jpeg 768w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-300x83.jpeg 300w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png-1024x284.jpeg 1024w, http://kclgenetics.com/wp-content/uploads/2020/04/covid-header.png.jpeg 1260w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"300\" height=\"224\" src=\"http://kclgenetics.com/wp-content/uploads/2020/04/72048917_519360131958583_4843767720182808576_n-2.jpg\" alt=\"\" />											\n			<h2>2020 Hereford Alliance Sale Canceled <br>Due to Coronavirus Pandemic<br>We Look forward to seeing you in 2021.<br>Give Us a Call if we can be of any service.</h2>		\n					<h2>\n							2021 Hereford Alliance Sale\n					</h2>\n							<figure>\n											<a href=\"https://issuu.com/trac…/docs/larsonsherefordalliance051819/2\">\n							<img width=\"768\" height=\"432\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-768x432.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-300x169.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-1024x576.jpg 1024w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-830x467.jpg 830w, http://kclgenetics.com/wp-content/uploads/2019/05/HrfdAllianceLogo2015-e1556757314259-230x129.jpg 230w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n											<figcaption>May 15, 2021 - 12:00 CST @ Running L Ranch in Clifton, Texas</figcaption>\n										</figure>\n							<figure>\n										<img width=\"800\" height=\"160\" src=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc.jpg 800w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-300x60.jpg 300w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-768x154.jpg 768w, http://kclgenetics.com/wp-content/uploads/2019/05/714af614-5904-4135-a691-5b34f6df8bdc-230x46.jpg 230w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											<figcaption>Click here to enter Auction. Live May 15, 2021</figcaption>\n										</figure>\n							<figure>\n										<img width=\"600\" height=\"400\" src=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9.jpg 600w, http://kclgenetics.com/wp-content/uploads/2017/03/GO-MS-7195-ADVANCE-W9-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											<figcaption>Look for a Daughter...</figcaption>\n										</figure>\n			<figure><img width=\"300\" height=\"228\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/400dpiLogoCropped-e1556756960807.jpg\" alt=\"\" /></figure><h3>Look For This Logo</h3><p>Lots with this logo offer opportunities in the to put their offspring in future Hereford Alliance Sales. Call with any questions.</p>		\n			<h5>2021 Hereford Alliance Videos</h5>		\n										<img width=\"300\" height=\"222\" src=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png\" alt=\"\" srcset=\"http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline-300x222.png 300w, http://kclgenetics.com/wp-content/uploads/2018/05/product_videoonline.png 371w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=running%20l%20ranch&amp;t=m&amp;z=9&amp;output=embed&amp;iwloc=near\" aria-label=\"running l ranch\"></iframe>','2019 Hereford Alliance Sale','','inherit','closed','closed','','54-revision-v1','','','2020-04-15 13:34:26','2020-04-15 13:34:26','',54,'http://kclgenetics.com/54-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wpjj_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_photo_slider_instal`
--

DROP TABLE IF EXISTS `wpjj_rich_web_photo_slider_instal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_photo_slider_instal` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `SL_Img_Title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Sl_Img_Description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `Sl_Img_Url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Sl_Link_Url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Sl_Link_NewTab` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Sl_Number` int(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_photo_slider_instal`
--

LOCK TABLES `wpjj_rich_web_photo_slider_instal` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_photo_slider_instal` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_photo_slider_instal` (`id`, `SL_Img_Title`, `Sl_Img_Description`, `Sl_Img_Url`, `Sl_Link_Url`, `Sl_Link_NewTab`, `Sl_Number`) VALUES (8,'8051 Donor','','http://kclgenetics.com/wp-content/uploads/2017/03/KB-SULTANA-8051U-150x150.jpg','','undefined',2),(7,'Y40','','http://kclgenetics.com/wp-content/uploads/2018/04/Y40-Larson-150x150.jpg','','undefined',2),(6,'Donor 75C','','http://kclgenetics.com/wp-content/uploads/2018/04/75C-KCL-TH-150x150.jpg','','undefined',2);
/*!40000 ALTER TABLE `wpjj_rich_web_photo_slider_instal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_photo_slider_manager`
--

DROP TABLE IF EXISTS `wpjj_rich_web_photo_slider_manager`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_photo_slider_manager` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `Slider_Title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Slider_Type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Slider_IMGS_Quantity` int(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_photo_slider_manager`
--

LOCK TABLES `wpjj_rich_web_photo_slider_manager` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_photo_slider_manager` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_photo_slider_manager` (`id`, `Slider_Title`, `Slider_Type`, `Slider_IMGS_Quantity`) VALUES (2,'KCL Donor Cows','Slider Carousel 1',3);
/*!40000 ALTER TABLE `wpjj_rich_web_photo_slider_manager` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect1`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect1` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_SlS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_SlSS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_PoH` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_W` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_H` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_BoxS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_BoxSC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_IBW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_IBS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_IBC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_IBR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_TBgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_TC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_TTA` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_TFS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_TFF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_TUp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_ArBgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_ArOp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_ArType` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_ArHBgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_ArHOp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_ArHEff` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_ArBoxW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_NavW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_NavH` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_NavPB` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_NavBW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_NavBS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_NavBC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_NavBR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_NavCC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_NavHC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_ArPFT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_Sl1_NavPos` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect1`
--

LOCK TABLES `wpjj_rich_web_slider_effect1` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect1` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect1` (`id`, `rich_web_slider_ID`, `rich_web_slider_name`, `rich_web_slider_type`, `rich_web_Sl1_SlS`, `rich_web_Sl1_SlSS`, `rich_web_Sl1_PoH`, `rich_web_Sl1_W`, `rich_web_Sl1_H`, `rich_web_Sl1_BoxS`, `rich_web_Sl1_BoxSC`, `rich_web_Sl1_IBW`, `rich_web_Sl1_IBS`, `rich_web_Sl1_IBC`, `rich_web_Sl1_IBR`, `rich_web_Sl1_TBgC`, `rich_web_Sl1_TC`, `rich_web_Sl1_TTA`, `rich_web_Sl1_TFS`, `rich_web_Sl1_TFF`, `rich_web_Sl1_TUp`, `rich_web_Sl1_ArBgC`, `rich_web_Sl1_ArOp`, `rich_web_Sl1_ArType`, `rich_web_Sl1_ArHBgC`, `rich_web_Sl1_ArHOp`, `rich_web_Sl1_ArHEff`, `rich_web_Sl1_ArBoxW`, `rich_web_Sl1_NavW`, `rich_web_Sl1_NavH`, `rich_web_Sl1_NavPB`, `rich_web_Sl1_NavBW`, `rich_web_Sl1_NavBS`, `rich_web_Sl1_NavBC`, `rich_web_Sl1_NavBR`, `rich_web_Sl1_NavCC`, `rich_web_Sl1_NavHC`, `rich_web_Sl1_ArPFT`, `rich_web_Sl1_NavPos`) VALUES (1,'1','Slider Navigation 1','Slider Navigation','true','3','true','750','400','true','#0084aa','10','solid','#ffffff','0','#0084aa','#ffffff','center','10','Aldhabi','true','#1e73be','82','1','#1e73be','80','slide out','50','8','8','8','1','solid','#ffffff','20','#0084aa','#ffffff','35','bottom'),(2,'2','Slider Navigation 2','Slider Navigation','true','3','true','380','450','true','#0084aa','0','none','#ffffff','0','#0084aa','#ffffff','center','10','Aldhabi','true','rgba(30,115,190,0.6)','100','2','#1e73be','100','flip out','50','8','8','8','1','solid','#ffffff','20','#0084aa','#1967aa','40','bottom');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect10`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect10`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect10` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_W` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_H` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_BW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_BS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_BR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_BSh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_ShC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_ET` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_SSh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_SShChT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_T_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_T_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_T_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_T_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_T_TA` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_T_Sh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_T_ShC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_N_Sh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_N_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_N_BW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_N_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_N_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_N_BS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_N_HBgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_N_CC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_N_M` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_Ic_Sh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_Ic_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_Ic_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_Ic_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_L_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_L_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_L_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_L_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_L_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_L1_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_L2_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnSL_L3_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect10`
--

LOCK TABLES `wpjj_rich_web_slider_effect10` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect10` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect10` (`id`, `rich_web_slider_ID`, `rich_web_slider_name`, `rich_web_slider_type`, `Rich_Web_AnSL_W`, `Rich_Web_AnSL_H`, `Rich_Web_AnSL_BW`, `Rich_Web_AnSL_BS`, `Rich_Web_AnSL_BC`, `Rich_Web_AnSL_BR`, `Rich_Web_AnSL_BSh`, `Rich_Web_AnSL_ShC`, `Rich_Web_AnSL_ET`, `Rich_Web_AnSL_SSh`, `Rich_Web_AnSL_SShChT`, `Rich_Web_AnSL_T_FS`, `Rich_Web_AnSL_T_FF`, `Rich_Web_AnSL_T_C`, `Rich_Web_AnSL_T_BgC`, `Rich_Web_AnSL_T_TA`, `Rich_Web_AnSL_T_Sh`, `Rich_Web_AnSL_T_ShC`, `Rich_Web_AnSL_N_Sh`, `Rich_Web_AnSL_N_S`, `Rich_Web_AnSL_N_BW`, `Rich_Web_AnSL_N_BC`, `Rich_Web_AnSL_N_BgC`, `Rich_Web_AnSL_N_BS`, `Rich_Web_AnSL_N_HBgC`, `Rich_Web_AnSL_N_CC`, `Rich_Web_AnSL_N_M`, `Rich_Web_AnSL_Ic_Sh`, `Rich_Web_AnSL_Ic_T`, `Rich_Web_AnSL_Ic_S`, `Rich_Web_AnSL_Ic_C`, `Rich_Web_AnSL_L_BgC`, `Rich_Web_AnSL_L_T`, `Rich_Web_AnSL_L_FS`, `Rich_Web_AnSL_L_FF`, `Rich_Web_AnSL_L_C`, `Rich_Web_AnSL_L1_T`, `Rich_Web_AnSL_L2_T`, `Rich_Web_AnSL_L3_T`) VALUES (1,'19','Animation Slider 1','Animation Slider','700','536','0','none','#1e73be','0','10','#000000','4','true','5500','22','Abadi MT Condensed Light','#ffffff','rgba(0,0,0,0.3)','center','5','Image','true','13','1','rgba(0,0,0,0.15)','rgba(0,0,0,0.15)','Type 1','rgba(255,255,255,0.4)','rgba(0,0,0,0.3)','3','true','rich_web rich_web-angle-double','40','#ffffff','','','','','','','',''),(2,'20','Animation Slider 2','Animation Slider','700','536','0','none','#1e73be','0','0','rgba(0,0,0,0)','6','true','5500','22','Abadi MT Condensed Light','#ffffff','rgba(30,115,190,0.3)','center','5','Icon','false','13','1','#1e73be','#1e73be','Type 1','rgba(255,255,255,0.4)','rgba(0,0,0,0.3)','3','true','rich_web rich_web-caret','50','rgba(30,115,190,0.8)','','','','','','','','');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect10` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect10_loader`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect10_loader`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect10_loader` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_L_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_LT_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_LT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_L_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_L_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_LT_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_LT_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_LT_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_LT_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_L_T1_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_L_T2_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_L_T3_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_LT_T2_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_L_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_LT_T2_AnC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_LT_T3_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_L_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AnimSl_Loading_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect10_loader`
--

LOCK TABLES `wpjj_rich_web_slider_effect10_loader` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect10_loader` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect10_loader` (`id`, `rich_web_slider_ID`, `Rich_Web_AnimSl_L_Show`, `Rich_Web_AnimSl_LT_Show`, `Rich_Web_AnimSl_LT`, `Rich_Web_AnimSl_L_BgC`, `Rich_Web_AnimSl_L_T`, `Rich_Web_AnimSl_LT_T`, `Rich_Web_AnimSl_LT_FS`, `Rich_Web_AnimSl_LT_FF`, `Rich_Web_AnimSl_LT_C`, `Rich_Web_AnimSl_L_T1_C`, `Rich_Web_AnimSl_L_T2_C`, `Rich_Web_AnimSl_L_T3_C`, `Rich_Web_AnimSl_LT_T2_BC`, `Rich_Web_AnimSl_L_C`, `Rich_Web_AnimSl_LT_T2_AnC`, `Rich_Web_AnimSl_LT_T3_BgC`, `Rich_Web_AnimSl_L_S`, `Rich_Web_AnimSl_Loading_Show`) VALUES (1,'19','true','true','Loading','#ffffff','Type 1','Type 2','13','Abadi MT Condensed Light','#dd3333','#dd3333','#dd0000','#990700','rgba(30,115,190,0.54)','#dd0000','#dd3333','#dd3333','middle','true'),(2,'20','true','true','Loading','#ffffff','Type 2','Type 2','15','Abadi MT Condensed Light','#004da0','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#1e73be','#1e73be','#dd3333','middle','true');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect10_loader` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect1_loader`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect1_loader`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect1_loader` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_L_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_LT_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_LT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_L_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_L_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_LT_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_LT_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_LT_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_LT_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_L_T1_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_L_T2_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_L_T3_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_LT_T2_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_L_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_LT_T2_AnC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_LT_T3_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_L_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_NSL_Loading_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect1_loader`
--

LOCK TABLES `wpjj_rich_web_slider_effect1_loader` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect1_loader` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect1_loader` (`id`, `rich_web_slider_ID`, `Rich_Web_NSL_L_Show`, `Rich_Web_NSL_LT_Show`, `Rich_Web_NSL_LT`, `Rich_Web_NSL_L_BgC`, `Rich_Web_NSL_L_T`, `Rich_Web_NSL_LT_T`, `Rich_Web_NSL_LT_FS`, `Rich_Web_NSL_LT_FF`, `Rich_Web_NSL_LT_C`, `Rich_Web_NSL_L_T1_C`, `Rich_Web_NSL_L_T2_C`, `Rich_Web_NSL_L_T3_C`, `Rich_Web_NSL_LT_T2_BC`, `Rich_Web_NSL_L_C`, `Rich_Web_NSL_LT_T2_AnC`, `Rich_Web_NSL_LT_T3_BgC`, `Rich_Web_NSL_L_S`, `Rich_Web_NSL_Loading_Show`) VALUES (1,'1','true','true','Loading','#ffffff','Type 4','Type 4','13','Abadi MT Condensed Light','#dd3333','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#0084aa','#ffffff','#dd3333','small','true'),(2,'2','true','true','Loading','#ffffff','Type 2','Type 2','13','Abadi MT Condensed Light','#0066bf','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#0066bf','#ffffff','#dd3333','middle','true');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect1_loader` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect2`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect2`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect2` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `richideo_EN_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_BIB` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_P` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Loop` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_SD` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_AT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Cont_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Cont_BSC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Cont_W` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Cont_H` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Cont_Op` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Cont_BW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Cont_BS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Cont_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Cont_BR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_TShow` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_TC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_TSC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_TFS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_TFF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_TTA` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_DShow` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_DC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_DSC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_DFS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_DFF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_DTA` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_W` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_H` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_LFS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_LFF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_LC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_LT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_LBgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_LBC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_LBR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_LPos` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_LHBgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_LHC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Video_ArrShow` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_AFS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_AC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Icon` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Link_BW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_CS_Link_BS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect2`
--

LOCK TABLES `wpjj_rich_web_slider_effect2` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect2` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect2` (`id`, `richideo_EN_ID`, `rich_web_slider_name`, `rich_web_slider_type`, `rich_CS_BIB`, `rich_CS_P`, `rich_CS_Loop`, `rich_CS_SD`, `rich_CS_AT`, `rich_CS_Cont_BgC`, `rich_CS_Cont_BSC`, `rich_CS_Cont_W`, `rich_CS_Cont_H`, `rich_CS_Cont_Op`, `rich_CS_Cont_BW`, `rich_CS_Cont_BS`, `rich_CS_Cont_BC`, `rich_CS_Cont_BR`, `rich_CS_Video_TShow`, `rich_CS_Video_TC`, `rich_CS_Video_TSC`, `rich_CS_Video_TFS`, `rich_CS_Video_TFF`, `rich_CS_Video_TTA`, `rich_CS_Video_DShow`, `rich_CS_Video_DC`, `rich_CS_Video_DSC`, `rich_CS_Video_DFS`, `rich_CS_Video_DFF`, `rich_CS_Video_DTA`, `rich_CS_Video_Show`, `rich_CS_Video_W`, `rich_CS_Video_H`, `rich_CS_LFS`, `rich_CS_LFF`, `rich_CS_LC`, `rich_CS_LT`, `rich_CS_LBgC`, `rich_CS_LBC`, `rich_CS_LBR`, `rich_CS_LPos`, `rich_CS_LHBgC`, `rich_CS_LHC`, `rich_CS_Video_ArrShow`, `rich_CS_AFS`, `rich_CS_AC`, `rich_CS_Icon`, `rich_CS_Link_BW`, `rich_CS_Link_BS`) VALUES (1,'3','Content Slider','Content Slider','true','true','true','10','bounceUp','#0084aa','#0084aa','650','400','50','0','solid','#898989','0','true','#ffffff','#ffffff','20','Aldhabi','left','true','','','','','','true','36','on','16','Vijaya','#ffffff','View More','#007da0','#ffffff','0','left','#0084aa','#000000','true','30','#ffffff','3','1','solid'),(2,'4','Content-Slider','Content Slider','true','true','true','20','bounce3','#0084aa','#0084aa','800','400','100','0','solid','#898989','0','true','#ffffff','#ffffff','20','Aldhabi','left','true','','','','','','true','36','on','16','Vijaya','#ffffff','View More','#007893','#ffffff','10','left','#3190aa','#ffffff','true','30','#ffffff','3','1','solid');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect2` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect2_loader`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect2_loader`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect2_loader` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_L_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_LT_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_LT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_L_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_L_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_LT_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_LT_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_LT_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_LT_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_L_T1_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_L_T2_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_L_T3_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_LT_T2_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_L_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_LT_T2_AnC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_LT_T3_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_L_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ContSl_Loading_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect2_loader`
--

LOCK TABLES `wpjj_rich_web_slider_effect2_loader` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect2_loader` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect2_loader` (`id`, `rich_web_slider_ID`, `Rich_Web_ContSl_L_Show`, `Rich_Web_ContSl_LT_Show`, `Rich_Web_ContSl_LT`, `Rich_Web_ContSl_L_BgC`, `Rich_Web_ContSl_L_T`, `Rich_Web_ContSl_LT_T`, `Rich_Web_ContSl_LT_FS`, `Rich_Web_ContSl_LT_FF`, `Rich_Web_ContSl_LT_C`, `Rich_Web_ContSl_L_T1_C`, `Rich_Web_ContSl_L_T2_C`, `Rich_Web_ContSl_L_T3_C`, `Rich_Web_ContSl_LT_T2_BC`, `Rich_Web_ContSl_L_C`, `Rich_Web_ContSl_LT_T2_AnC`, `Rich_Web_ContSl_LT_T3_BgC`, `Rich_Web_ContSl_L_S`, `Rich_Web_ContSl_Loading_Show`) VALUES (1,'3','true','true','Loading','#ffffff','Type 1','Type 2','13','Abadi MT Condensed Light','#000000','#357ebf','#0066bf','#145b91','rgba(30,115,190,0.54)','#dd9933','#ffffff','#dd3333','middle','true'),(2,'4','true','false','Loading','#ffffff','Type 3','Type 2','13','Abadi MT Condensed Light','#dd3333','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#000000','#ffffff','#dd3333','middle','true');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect2_loader` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect3`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect3`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect3` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_animation` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_SShow` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_SShow_Speed` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Anim_Dur` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Ic_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_PPL_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Randomize` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Loop` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Width` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Height` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Border_Width` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Border_Style` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Border_Color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Box_Shadow` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Shadow_Color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Desc_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Desc_Size` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Desc_Color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Desc_Font_Family` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Desc_Text_Align` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Desc_Bg_Color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Desc_Transparency` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Title_Font_Size` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Title_Color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Title_Text_Shadow` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Title_Font_Family` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Title_Text_Align` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Link_Text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Link_Border_Width` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Link_Border_Style` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Link_Border_Color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Link_Font_Size` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Link_Color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Link_Font_Family` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Link_Bg_Color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Link_Transparency` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Link_Hover_Border_Color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Link_Hover_Bg_Color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Link_Hover_Color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Link_Hover_Transparency` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Icon_Size` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Icon_Type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_fsl_Hover_Icon_Type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect3`
--

LOCK TABLES `wpjj_rich_web_slider_effect3` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect3` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect3` (`id`, `rich_web_slider_ID`, `rich_web_slider_name`, `rich_web_slider_type`, `rich_fsl_animation`, `rich_fsl_SShow`, `rich_fsl_SShow_Speed`, `rich_fsl_Anim_Dur`, `rich_fsl_Ic_Show`, `rich_fsl_PPL_Show`, `rich_fsl_Randomize`, `rich_fsl_Loop`, `rich_fsl_Width`, `rich_fsl_Height`, `rich_fsl_Border_Width`, `rich_fsl_Border_Style`, `rich_fsl_Border_Color`, `rich_fsl_Box_Shadow`, `rich_fsl_Shadow_Color`, `rich_fsl_Desc_Show`, `rich_fsl_Desc_Size`, `rich_fsl_Desc_Color`, `rich_fsl_Desc_Font_Family`, `rich_fsl_Desc_Text_Align`, `rich_fsl_Desc_Bg_Color`, `rich_fsl_Desc_Transparency`, `rich_fsl_Title_Font_Size`, `rich_fsl_Title_Color`, `rich_fsl_Title_Text_Shadow`, `rich_fsl_Title_Font_Family`, `rich_fsl_Title_Text_Align`, `rich_fsl_Link_Text`, `rich_fsl_Link_Border_Width`, `rich_fsl_Link_Border_Style`, `rich_fsl_Link_Border_Color`, `rich_fsl_Link_Font_Size`, `rich_fsl_Link_Color`, `rich_fsl_Link_Font_Family`, `rich_fsl_Link_Bg_Color`, `rich_fsl_Link_Transparency`, `rich_fsl_Link_Hover_Border_Color`, `rich_fsl_Link_Hover_Bg_Color`, `rich_fsl_Link_Hover_Color`, `rich_fsl_Link_Hover_Transparency`, `rich_fsl_Icon_Size`, `rich_fsl_Icon_Type`, `rich_fsl_Hover_Icon_Type`) VALUES (1,'5','Fashion Slider 1','Fashion Slider','fade','1','3','3','1','false','false','1','750','390','0','solid','#ffffff','35','#606060','on','','','','','rgba(0,132,170,0.75)','','18','#ffffff','0','Aldhabi','center','View More','0','solid','#0084aa','19','#0084aa','Vijaya','rgba(255,255,255,0.65)','','#0084aa','#0084aa','rgba(255,255,255,0.65)','','30','1','12'),(2,'6','Fashion Slider 2','Fashion Slider','fade','1','3','3','1','false','false','1','600','300','4','solid','#ffffff','30','#0084aa','on','','','','','rgba(255,255,255,0.65)','','18','#0084aa','0','Aldhabi','center','View More','0','solid','#0084aa','19','#0084aa','Vijaya','rgba(255,255,255,0.65)','','#0084aa','#0084aa','rgba(255,255,255,0.65)','','30','1','12');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect3` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect3_loader`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect3_loader`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect3_loader` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_L_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_LT_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_LT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_L_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_L_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_LT_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_LT_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_LT_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_LT_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_L_T1_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_L_T2_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_L_T3_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_LT_T2_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_L_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_LT_T2_AnC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_LT_T3_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_L_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FSl_Loading_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect3_loader`
--

LOCK TABLES `wpjj_rich_web_slider_effect3_loader` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect3_loader` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect3_loader` (`id`, `rich_web_slider_ID`, `Rich_Web_FSl_L_Show`, `Rich_Web_FSl_LT_Show`, `Rich_Web_FSl_LT`, `Rich_Web_FSl_L_BgC`, `Rich_Web_FSl_L_T`, `Rich_Web_FSl_LT_T`, `Rich_Web_FSl_LT_FS`, `Rich_Web_FSl_LT_FF`, `Rich_Web_FSl_LT_C`, `Rich_Web_FSl_L_T1_C`, `Rich_Web_FSl_L_T2_C`, `Rich_Web_FSl_L_T3_C`, `Rich_Web_FSl_LT_T2_BC`, `Rich_Web_FSl_L_C`, `Rich_Web_FSl_LT_T2_AnC`, `Rich_Web_FSl_LT_T3_BgC`, `Rich_Web_FSl_L_S`, `Rich_Web_FSl_Loading_Show`) VALUES (1,'5','false','true','Loading','#ffffff','Type 4','Type 1','18','Vijaya','#0066bf','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#ffffff','#ffffff','#dd3333','large','true'),(2,'6','false','true','Loading','#ffffff','Type 2','Type 2','17','Aldhabi','#000000','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#ffffff','#ffffff','#dd3333','middle','true');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect3_loader` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect4`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect4`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect4` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_W` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_H` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_BW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_BS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_BxSShow` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_BxSType` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_BxS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_BxC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_TDABgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_TDAPos` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_LBgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_TFS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_TFF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_TCC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_TC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_ArBgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_ArBR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_ArType` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_ArHBC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_ArHBR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_ArText` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_ArLeft` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_ArRight` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_ArTextC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_ArTextFS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_CT_ArTextFF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect4`
--

LOCK TABLES `wpjj_rich_web_slider_effect4` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect4` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect4` (`id`, `rich_web_slider_ID`, `rich_web_slider_name`, `rich_web_slider_type`, `Rich_Web_Sl_CT_W`, `Rich_Web_Sl_CT_H`, `Rich_Web_Sl_CT_BW`, `Rich_Web_Sl_CT_BS`, `Rich_Web_Sl_CT_BC`, `Rich_Web_Sl_CT_BxSShow`, `Rich_Web_Sl_CT_BxSType`, `Rich_Web_Sl_CT_BxS`, `Rich_Web_Sl_CT_BxC`, `Rich_Web_Sl_CT_TDABgC`, `Rich_Web_Sl_CT_TDAPos`, `Rich_Web_Sl_CT_LBgC`, `Rich_Web_Sl_CT_TFS`, `Rich_Web_Sl_CT_TFF`, `Rich_Web_Sl_CT_TCC`, `Rich_Web_Sl_CT_TC`, `Rich_Web_Sl_CT_ArBgC`, `Rich_Web_Sl_CT_ArBR`, `Rich_Web_Sl_CT_ArType`, `Rich_Web_Sl_CT_ArHBC`, `Rich_Web_Sl_CT_ArHBR`, `Rich_Web_Sl_CT_ArText`, `Rich_Web_Sl_CT_ArLeft`, `Rich_Web_Sl_CT_ArRight`, `Rich_Web_Sl_CT_ArTextC`, `Rich_Web_Sl_CT_ArTextFS`, `Rich_Web_Sl_CT_ArTextFF`) VALUES (1,'7','Circle Thumbnails','Circle Thumbnails','750','410','7','solid','#ffffff','true','true','8','#009491','#009491','bottom','#009491','23','Vijaya','#ffffff','#cccccc','#007573','25','1','#009491','30','true','Prev','Next','#ffffff','20','Vijaya'),(2,'8','Circle Thumbnails 2','Circle Thumbnails','650','370','7','solid','#ffffff','true','false','20','#009491','rgba(0,148,145,0.6)','top','rgba(0,148,145,0.6)','23','Vijaya','#ffffff','#cccccc','#007573','25','1','#009491','30','true','Prev','Next','rgba(255,255,255,0.6)','20','Vijaya');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect4` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect4_loader`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect4_loader`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect4_loader` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_L_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_LT_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_LT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_L_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_L_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_LT_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_LT_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_LT_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_LT_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_L_T1_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_L_T2_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_L_T3_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_LT_T2_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_L_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_LT_T2_AnC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_LT_T3_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_L_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CircleSl_Loading_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect4_loader`
--

LOCK TABLES `wpjj_rich_web_slider_effect4_loader` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect4_loader` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect4_loader` (`id`, `rich_web_slider_ID`, `Rich_Web_CircleSl_L_Show`, `Rich_Web_CircleSl_LT_Show`, `Rich_Web_CircleSl_LT`, `Rich_Web_CircleSl_L_BgC`, `Rich_Web_CircleSl_L_T`, `Rich_Web_CircleSl_LT_T`, `Rich_Web_CircleSl_LT_FS`, `Rich_Web_CircleSl_LT_FF`, `Rich_Web_CircleSl_LT_C`, `Rich_Web_CircleSl_L_T1_C`, `Rich_Web_CircleSl_L_T2_C`, `Rich_Web_CircleSl_L_T3_C`, `Rich_Web_CircleSl_LT_T2_BC`, `Rich_Web_CircleSl_L_C`, `Rich_Web_CircleSl_LT_T2_AnC`, `Rich_Web_CircleSl_LT_T3_BgC`, `Rich_Web_CircleSl_L_S`, `Rich_Web_CircleSl_Loading_Show`) VALUES (1,'7','false','true','Loading','#ffffff','Type 1','Type 3','15','Abadi MT Condensed Light','#ffffff','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#dd9933','#ffffff','#009491','middle','true'),(2,'8','true','false','Loading','#ffffff','Type 4','Type 2','13','Abadi MT Condensed Light','#dd3333','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#009491','#1e73be','#dd3333','middle','true');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect4_loader` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect5_loader`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect5_loader`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect5_loader` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_L_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_LT_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_LT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_L_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_L_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_LT_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_LT_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_LT_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_LT_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_L_T1_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_L_T2_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_L_T3_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_LT_T2_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_L_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_LT_T2_AnC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_LT_T3_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_HT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_H_OvC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_L_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_CarSl_Loading_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect5_loader`
--

LOCK TABLES `wpjj_rich_web_slider_effect5_loader` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect5_loader` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect5_loader` (`id`, `rich_web_slider_ID`, `Rich_Web_CarSl_L_Show`, `Rich_Web_CarSl_LT_Show`, `Rich_Web_CarSl_LT`, `Rich_Web_CarSl_L_BgC`, `Rich_Web_CarSl_L_T`, `Rich_Web_CarSl_LT_T`, `Rich_Web_CarSl_LT_FS`, `Rich_Web_CarSl_LT_FF`, `Rich_Web_CarSl_LT_C`, `Rich_Web_CarSl_L_T1_C`, `Rich_Web_CarSl_L_T2_C`, `Rich_Web_CarSl_L_T3_C`, `Rich_Web_CarSl_LT_T2_BC`, `Rich_Web_CarSl_L_C`, `Rich_Web_CarSl_LT_T2_AnC`, `Rich_Web_CarSl_LT_T3_BgC`, `Rich_Web_CarSl_HT`, `Rich_Web_CarSl_H_OvC`, `Rich_Web_CarSl_L_S`, `Rich_Web_CarSl_Loading_Show`) VALUES (1,'9','true','true','Loading','#ffffff','Type 3','Type 4','18','Aharoni','#1e73be','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#1e73be','#ffffff','#1e73be','11','#dd3333','middle','true'),(2,'10','false','true','Loading','#ffffff','Type 2','Type 3','17','Aharoni','#ffffff','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#ffffff','#ffffff','#1e73be','11','#dd3333','middle','true');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect5_loader` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect6`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect6`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect6` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_AP` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_TS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_PT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_SS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_SVis` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_CS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_SLoop` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_SSc` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_SlPos` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_ShNavBut` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_I_W` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_I_H` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_I_BW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_I_BS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_I_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_I_BR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_I_BoxShShow` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_I_BoxShType` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_I_BoxSh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_I_BoxShC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_T_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_T_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Nav_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Nav_W` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Nav_H` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Nav_BW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Nav_BS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Nav_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Nav_BR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Nav_PB` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Nav_CC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Nav_HC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Nav_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Arr_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Arr_Type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Arr_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_FS_Arr_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect6`
--

LOCK TABLES `wpjj_rich_web_slider_effect6` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect6` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect6` (`id`, `rich_web_slider_ID`, `rich_web_slider_name`, `rich_web_slider_type`, `Rich_Web_Sl_FS_BgC`, `Rich_Web_Sl_FS_AP`, `Rich_Web_Sl_FS_TS`, `Rich_Web_Sl_FS_PT`, `Rich_Web_Sl_FS_SS`, `Rich_Web_Sl_FS_SVis`, `Rich_Web_Sl_FS_CS`, `Rich_Web_Sl_FS_SLoop`, `Rich_Web_Sl_FS_SSc`, `Rich_Web_Sl_FS_SlPos`, `Rich_Web_Sl_FS_ShNavBut`, `Rich_Web_Sl_FS_I_W`, `Rich_Web_Sl_FS_I_H`, `Rich_Web_Sl_FS_I_BW`, `Rich_Web_Sl_FS_I_BS`, `Rich_Web_Sl_FS_I_BC`, `Rich_Web_Sl_FS_I_BR`, `Rich_Web_Sl_FS_I_BoxShShow`, `Rich_Web_Sl_FS_I_BoxShType`, `Rich_Web_Sl_FS_I_BoxSh`, `Rich_Web_Sl_FS_I_BoxShC`, `Rich_Web_Sl_FS_T_C`, `Rich_Web_Sl_FS_T_FF`, `Rich_Web_Sl_FS_Nav_Show`, `Rich_Web_Sl_FS_Nav_W`, `Rich_Web_Sl_FS_Nav_H`, `Rich_Web_Sl_FS_Nav_BW`, `Rich_Web_Sl_FS_Nav_BS`, `Rich_Web_Sl_FS_Nav_BC`, `Rich_Web_Sl_FS_Nav_BR`, `Rich_Web_Sl_FS_Nav_PB`, `Rich_Web_Sl_FS_Nav_CC`, `Rich_Web_Sl_FS_Nav_HC`, `Rich_Web_Sl_FS_Nav_C`, `Rich_Web_Sl_FS_Arr_Show`, `Rich_Web_Sl_FS_Arr_Type`, `Rich_Web_Sl_FS_Arr_S`, `Rich_Web_Sl_FS_Arr_C`) VALUES (1,'11','Flexible Slider 1','Flexible Slider','#0084aa','true','400','4','1','true','6','true','200','center','true','225','225','5','solid','#ffffff','134','true','false','33','#0084aa','#0084aa','Aldhabi','true','15','10','1','solid','#0084aa','15','3','#0084aa','#0066bf','#ffffff','true','angle','40','#ffffff'),(2,'12','Flexible Slider 2','Flexible Slider','#0084aa','true','400','4','1','true','6','true','200','center','true','225','225','5','solid','#ffffff','0','true','true','33','#0084aa','#0084aa','Aldhabi','true','15','10','1','solid','#0084aa','15','3','#0084aa','#0066bf','#ffffff','true','angle','40','#ffffff');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect6` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect6_loader`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect6_loader`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect6_loader` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_L_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_LT_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_LT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_L_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_L_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_LT_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_LT_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_LT_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_LT_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_L_T1_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_L_T2_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_L_T3_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_LT_T2_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_L_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_LT_T2_AnC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_LT_T3_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_L_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_FlexibleSl_Loading_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect6_loader`
--

LOCK TABLES `wpjj_rich_web_slider_effect6_loader` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect6_loader` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect6_loader` (`id`, `rich_web_slider_ID`, `Rich_Web_FlexibleSl_L_Show`, `Rich_Web_FlexibleSl_LT_Show`, `Rich_Web_FlexibleSl_LT`, `Rich_Web_FlexibleSl_L_BgC`, `Rich_Web_FlexibleSl_L_T`, `Rich_Web_FlexibleSl_LT_T`, `Rich_Web_FlexibleSl_LT_FS`, `Rich_Web_FlexibleSl_LT_FF`, `Rich_Web_FlexibleSl_LT_C`, `Rich_Web_FlexibleSl_L_T1_C`, `Rich_Web_FlexibleSl_L_T2_C`, `Rich_Web_FlexibleSl_L_T3_C`, `Rich_Web_FlexibleSl_LT_T2_BC`, `Rich_Web_FlexibleSl_L_C`, `Rich_Web_FlexibleSl_LT_T2_AnC`, `Rich_Web_FlexibleSl_LT_T3_BgC`, `Rich_Web_FlexibleSl_L_S`, `Rich_Web_FlexibleSl_Loading_Show`) VALUES (1,'11','true','false','Loading','#ffffff','Type 1','Type 2','13','Abadi MT Condensed Light','#dd3333','#dd8282','#c9c9c9','#000000','rgba(30,115,190,0.54)','#ffffff','#ffffff','#dd3333','middle','true'),(2,'12','true','false','Loading','#ffffff','Type 3','Type 2','13','Abadi MT Condensed Light','#dd3333','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#0084aa','#ffffff','#dd3333','middle','true');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect6_loader` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect7`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect7` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_AP` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_PT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Tr` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_H` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_BW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_BS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_TFS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_TFF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_TC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_DFS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_DFF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_DC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_LFS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_LFF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_LC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_LBgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_LBW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_LBS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_LBC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_LBR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_LHC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_LHBgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_LT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Arr_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Arr_LT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Arr_RT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Arr_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Arr_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Arr_BW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Arr_BS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Arr_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Arr_BR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Arr_HC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Arr_HBgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Nav_W` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Nav_H` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Nav_PB` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Nav_BW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Nav_BS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Nav_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Nav_BR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Nav_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Nav_HC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_DS_Nav_CC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect7`
--

LOCK TABLES `wpjj_rich_web_slider_effect7` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect7` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect7` (`id`, `rich_web_slider_ID`, `rich_web_slider_name`, `rich_web_slider_type`, `Rich_Web_Sl_DS_AP`, `Rich_Web_Sl_DS_PT`, `Rich_Web_Sl_DS_Tr`, `Rich_Web_Sl_DS_H`, `Rich_Web_Sl_DS_BW`, `Rich_Web_Sl_DS_BS`, `Rich_Web_Sl_DS_BC`, `Rich_Web_Sl_DS_TFS`, `Rich_Web_Sl_DS_TFF`, `Rich_Web_Sl_DS_TC`, `Rich_Web_Sl_DS_DFS`, `Rich_Web_Sl_DS_DFF`, `Rich_Web_Sl_DS_DC`, `Rich_Web_Sl_DS_LFS`, `Rich_Web_Sl_DS_LFF`, `Rich_Web_Sl_DS_LC`, `Rich_Web_Sl_DS_LBgC`, `Rich_Web_Sl_DS_LBW`, `Rich_Web_Sl_DS_LBS`, `Rich_Web_Sl_DS_LBC`, `Rich_Web_Sl_DS_LBR`, `Rich_Web_Sl_DS_LHC`, `Rich_Web_Sl_DS_LHBgC`, `Rich_Web_Sl_DS_LT`, `Rich_Web_Sl_DS_Arr_Show`, `Rich_Web_Sl_DS_Arr_LT`, `Rich_Web_Sl_DS_Arr_RT`, `Rich_Web_Sl_DS_Arr_C`, `Rich_Web_Sl_DS_Arr_BgC`, `Rich_Web_Sl_DS_Arr_BW`, `Rich_Web_Sl_DS_Arr_BS`, `Rich_Web_Sl_DS_Arr_BC`, `Rich_Web_Sl_DS_Arr_BR`, `Rich_Web_Sl_DS_Arr_HC`, `Rich_Web_Sl_DS_Arr_HBgC`, `Rich_Web_Sl_DS_Nav_W`, `Rich_Web_Sl_DS_Nav_H`, `Rich_Web_Sl_DS_Nav_PB`, `Rich_Web_Sl_DS_Nav_BW`, `Rich_Web_Sl_DS_Nav_BS`, `Rich_Web_Sl_DS_Nav_BC`, `Rich_Web_Sl_DS_Nav_BR`, `Rich_Web_Sl_DS_Nav_C`, `Rich_Web_Sl_DS_Nav_HC`, `Rich_Web_Sl_DS_Nav_CC`) VALUES (1,'13','Dynamic Slider 1','Dynamic Slider','true','5','true','250','4','solid','#ffffff','15','Aldhabi','#ffffff','','','','16','Aldhabi','#ffffff','#dd3333','0','dotted','#4a1fc1','0','#dd3333','#ffffff','View','true','Prev','Next','#ffffff','#0084aa','0','solid','#16a309','46','#ffffff','#5598aa','11','12','5','1','solid','#ffffff','50','#0084aa','#dd3333','#ffffff'),(2,'14','Dynamic Slider 2','Dynamic Slider','true','5','true','400','4','solid','#ffffff','18','Aldhabi','#598fbf','','','','16','Aldhabi','#ffffff','rgba(221,51,51,0)','1','solid','#ffffff','0','#0084aa','rgba(255,255,255,0)','View More','true','Prev','Next','#0084aa','rgba(255,255,255,0.45)','0','solid','#000000','46','#0084aa','#ffffff','10','10','5','1','solid','#ffffff','50','#0084aa','#ffffff','#ffffff');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect7` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect7_loader`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect7_loader`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect7_loader` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_L_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_LT_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_LT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_L_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_L_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_LT_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_LT_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_LT_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_LT_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_L_T1_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_L_T2_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_L_T3_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_LT_T2_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_L_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_LT_T2_AnC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_LT_T3_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_ImgT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_L_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_DynamicSl_Loading_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect7_loader`
--

LOCK TABLES `wpjj_rich_web_slider_effect7_loader` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect7_loader` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect7_loader` (`id`, `rich_web_slider_ID`, `Rich_Web_DynamicSl_L_Show`, `Rich_Web_DynamicSl_LT_Show`, `Rich_Web_DynamicSl_LT`, `Rich_Web_DynamicSl_L_BgC`, `Rich_Web_DynamicSl_L_T`, `Rich_Web_DynamicSl_LT_T`, `Rich_Web_DynamicSl_LT_FS`, `Rich_Web_DynamicSl_LT_FF`, `Rich_Web_DynamicSl_LT_C`, `Rich_Web_DynamicSl_L_T1_C`, `Rich_Web_DynamicSl_L_T2_C`, `Rich_Web_DynamicSl_L_T3_C`, `Rich_Web_DynamicSl_LT_T2_BC`, `Rich_Web_DynamicSl_L_C`, `Rich_Web_DynamicSl_LT_T2_AnC`, `Rich_Web_DynamicSl_LT_T3_BgC`, `Rich_Web_DynamicSl_ImgT`, `Rich_Web_DynamicSl_L_S`, `Rich_Web_DynamicSl_Loading_Show`) VALUES (1,'13','true','true','Loading','#ffffff','Type 3','Type 2','21','Gabriola','#0084aa','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#007596','#0084aa','#dd3333','Type 2','middle','true'),(2,'14','true','true','LOADING','#ffffff','Type 2','Type 2','13','Abadi MT Condensed Light','#0084aa','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#0084aa','#0084aa','#dd3333','Type 1','middle','true');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect7_loader` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect8`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect8`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect8` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_W` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_H` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_BW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_BS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_BR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_BoxShShow` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_BoxShType` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_BoxSh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_BoxShC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_CM` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_TA` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_AP` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_PH` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Loop` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_PT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_CS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Nav_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Nav_W` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Nav_H` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Nav_PB` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Nav_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Nav_BR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Nav_CBC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Nav_HBC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Nav_Pos` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_SS_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_SS_W` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_SS_H` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_SS_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_SS_BR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_SS_StC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_SS_SpC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Arr_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Arr_Type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Arr_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Arr_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Pop_OvC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Pop_BW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Pop_BS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Pop_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Pop_BR` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Pop_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_TFS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_TFF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_TC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Pop_ArrType` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Pop_ArrS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_Pop_ArrC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_CIT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_CIS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_Sl_TSL_CIC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect8`
--

LOCK TABLES `wpjj_rich_web_slider_effect8` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect8` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect8` (`id`, `rich_web_slider_ID`, `rich_web_slider_name`, `rich_web_slider_type`, `Rich_Web_Sl_TSL_W`, `Rich_Web_Sl_TSL_H`, `Rich_Web_Sl_TSL_BW`, `Rich_Web_Sl_TSL_BS`, `Rich_Web_Sl_TSL_BC`, `Rich_Web_Sl_TSL_BR`, `Rich_Web_Sl_TSL_BoxShShow`, `Rich_Web_Sl_TSL_BoxShType`, `Rich_Web_Sl_TSL_BoxSh`, `Rich_Web_Sl_TSL_BoxShC`, `Rich_Web_Sl_TSL_CM`, `Rich_Web_Sl_TSL_TA`, `Rich_Web_Sl_TSL_AP`, `Rich_Web_Sl_TSL_PH`, `Rich_Web_Sl_TSL_Loop`, `Rich_Web_Sl_TSL_PT`, `Rich_Web_Sl_TSL_CS`, `Rich_Web_Sl_TSL_Nav_Show`, `Rich_Web_Sl_TSL_Nav_W`, `Rich_Web_Sl_TSL_Nav_H`, `Rich_Web_Sl_TSL_Nav_PB`, `Rich_Web_Sl_TSL_Nav_BC`, `Rich_Web_Sl_TSL_Nav_BR`, `Rich_Web_Sl_TSL_Nav_CBC`, `Rich_Web_Sl_TSL_Nav_HBC`, `Rich_Web_Sl_TSL_Nav_Pos`, `Rich_Web_Sl_TSL_SS_Show`, `Rich_Web_Sl_TSL_SS_W`, `Rich_Web_Sl_TSL_SS_H`, `Rich_Web_Sl_TSL_SS_BC`, `Rich_Web_Sl_TSL_SS_BR`, `Rich_Web_Sl_TSL_SS_StC`, `Rich_Web_Sl_TSL_SS_SpC`, `Rich_Web_Sl_TSL_Arr_Show`, `Rich_Web_Sl_TSL_Arr_Type`, `Rich_Web_Sl_TSL_Arr_S`, `Rich_Web_Sl_TSL_Arr_C`, `Rich_Web_Sl_TSL_Pop_OvC`, `Rich_Web_Sl_TSL_Pop_BW`, `Rich_Web_Sl_TSL_Pop_BS`, `Rich_Web_Sl_TSL_Pop_BC`, `Rich_Web_Sl_TSL_Pop_BR`, `Rich_Web_Sl_TSL_Pop_BgC`, `Rich_Web_Sl_TSL_TFS`, `Rich_Web_Sl_TSL_TFF`, `Rich_Web_Sl_TSL_TC`, `Rich_Web_Sl_TSL_Pop_ArrType`, `Rich_Web_Sl_TSL_Pop_ArrS`, `Rich_Web_Sl_TSL_Pop_ArrC`, `Rich_Web_Sl_TSL_CIT`, `Rich_Web_Sl_TSL_CIS`, `Rich_Web_Sl_TSL_CIC`) VALUES (1,'15','Thumbnails Slider & Lightbox 1','Thumbnails Slider & Lightbox','700','425','5','solid','#598fbf','0','true','false','32','#598fbf','vertical','true','true','true','true','5','500','true','50','50','4','#ffffff','0','#598fbf','#598fbf','bottom','true','10','10','#598fbf','8','#598fbf','#ffffff','true','9','39','#ffffff','rgba(89,143,191,0.85)','0','solid','#ffffff','0','rgba(89,143,191,0)','27','Gabriola','#ffffff','angle-double','27','#ffffff','times-circle','28','rgba(255,255,255,0.86)'),(2,'16','Thumbnails Slider & Lightbox 2','Thumbnails Slider & Lightbox','700','425','5','solid','#ffffff','0','true','true','15','#598fbf','fade','false','true','true','false','5','500','true','25','25','6','rgba(255,255,255,0.43)','20','rgba(89,143,191,0.46)','rgba(89,143,191,0.41)','top','false','10','10','#598fbf','8','#598fbf','#ffffff','true','9','39','#ffffff','rgba(89,143,191,0.85)','0','solid','#ffffff','0','rgba(89,143,191,0)','27','Gabriola','#ffffff','angle-double','27','#ffffff','times-circle','28','rgba(255,255,255,0.86');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect8` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect8_loader`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect8_loader`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect8_loader` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_L_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_LT_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_LT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_L_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_L_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_LT_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_LT_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_LT_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_LT_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_L_T1_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_L_T2_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_L_T3_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_LT_T2_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_L_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_LT_T2_AnC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_LT_T3_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_L_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_ThSl_Loading_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect8_loader`
--

LOCK TABLES `wpjj_rich_web_slider_effect8_loader` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect8_loader` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect8_loader` (`id`, `rich_web_slider_ID`, `Rich_Web_ThSl_L_Show`, `Rich_Web_ThSl_LT_Show`, `Rich_Web_ThSl_LT`, `Rich_Web_ThSl_L_BgC`, `Rich_Web_ThSl_L_T`, `Rich_Web_ThSl_LT_T`, `Rich_Web_ThSl_LT_FS`, `Rich_Web_ThSl_LT_FF`, `Rich_Web_ThSl_LT_C`, `Rich_Web_ThSl_L_T1_C`, `Rich_Web_ThSl_L_T2_C`, `Rich_Web_ThSl_L_T3_C`, `Rich_Web_ThSl_LT_T2_BC`, `Rich_Web_ThSl_L_C`, `Rich_Web_ThSl_LT_T2_AnC`, `Rich_Web_ThSl_LT_T3_BgC`, `Rich_Web_ThSl_L_S`, `Rich_Web_ThSl_Loading_Show`) VALUES (1,'15','false','true','Loading','#ffffff','Type 2','Type 1','15','Abadi MT Condensed Light','#828282','#dd9933','#dd9933','#dd3333','#000000','#dd3333','#ffffff','#dd3333','middle','true'),(2,'16','true','false','Loading','#ffffff','Type 1','Type 2','13','Abadi MT Condensed Light','#dd3333','#000000','#606060','#b7b7b7','#000000','#ffffff','#81d742','#dd3333','middle','true');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect8_loader` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect9`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect9`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect9` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rich_web_slider_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_W` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_H` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_BW` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_BS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_BSh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_BShC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Img_W` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Img_BSh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Img_BShC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Title_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Title_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Title_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Title_TSh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Title_TShC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Title_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Link_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Link_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Link_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Link_TSh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Link_TShC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Link_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AcSL_Link_Text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect9`
--

LOCK TABLES `wpjj_rich_web_slider_effect9` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect9` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect9` (`id`, `rich_web_slider_ID`, `rich_web_slider_name`, `rich_web_slider_type`, `Rich_Web_AcSL_W`, `Rich_Web_AcSL_H`, `Rich_Web_AcSL_BW`, `Rich_Web_AcSL_BS`, `Rich_Web_AcSL_BC`, `Rich_Web_AcSL_BSh`, `Rich_Web_AcSL_BShC`, `Rich_Web_AcSL_Img_W`, `Rich_Web_AcSL_Img_BSh`, `Rich_Web_AcSL_Img_BShC`, `Rich_Web_AcSL_Title_FS`, `Rich_Web_AcSL_Title_FF`, `Rich_Web_AcSL_Title_C`, `Rich_Web_AcSL_Title_TSh`, `Rich_Web_AcSL_Title_TShC`, `Rich_Web_AcSL_Title_BgC`, `Rich_Web_AcSL_Link_FS`, `Rich_Web_AcSL_Link_FF`, `Rich_Web_AcSL_Link_C`, `Rich_Web_AcSL_Link_TSh`, `Rich_Web_AcSL_Link_TShC`, `Rich_Web_AcSL_Link_BgC`, `Rich_Web_AcSL_Link_Text`) VALUES (1,'17','Accordion 1','Accordion Slider','720','350','7','solid','#eaeaea','14','#0084aa','596','2','#eaeaea','16','Aldhabi','#ffffff','3','#ffffff','rgba(0,132,170,0.65)','16','Vijaya','#0084aa','3','#0084aa','rgba(255,255,255,0.6)','View . . .'),(2,'18','Accordion 2','Accordion Slider','720','350','7','solid','#ffffff','14','#0084aa','572','3','#ffffff','16','Aldhabi','#0084aa','3','#ffffff','rgba(255,255,255,0.8)','16','Vijaya','#ffffff','3','rgba(0,132,170,0.5)','rgba(255,255,255,0.6)','View . . .');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect9` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effect9_loader`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effect9_loader`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effect9_loader` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rich_web_slider_ID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_L_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_LT_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_LT` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_L_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_L_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_LT_T` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_LT_FS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_LT_FF` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_LT_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_L_T1_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_L_T2_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_L_T3_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_LT_T2_BC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_L_C` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_LT_T2_AnC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_LT_T3_BgC` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_L_S` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `Rich_Web_AccSl_Loading_Show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effect9_loader`
--

LOCK TABLES `wpjj_rich_web_slider_effect9_loader` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect9_loader` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effect9_loader` (`id`, `rich_web_slider_ID`, `Rich_Web_AccSl_L_Show`, `Rich_Web_AccSl_LT_Show`, `Rich_Web_AccSl_LT`, `Rich_Web_AccSl_L_BgC`, `Rich_Web_AccSl_L_T`, `Rich_Web_AccSl_LT_T`, `Rich_Web_AccSl_LT_FS`, `Rich_Web_AccSl_LT_FF`, `Rich_Web_AccSl_LT_C`, `Rich_Web_AccSl_L_T1_C`, `Rich_Web_AccSl_L_T2_C`, `Rich_Web_AccSl_L_T3_C`, `Rich_Web_AccSl_LT_T2_BC`, `Rich_Web_AccSl_L_C`, `Rich_Web_AccSl_LT_T2_AnC`, `Rich_Web_AccSl_LT_T3_BgC`, `Rich_Web_AccSl_L_S`, `Rich_Web_AccSl_Loading_Show`) VALUES (1,'17','false','true','Loading','#ffffff','Type 2','Type 2','17','Abadi MT Condensed Light','#0084aa','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#ffffff','#00688e','#dd3333','middle','true'),(2,'18','false','true','Loading','#ffffff','Type 2','Type 2','13','Abadi MT Condensed Light','#0084aa','#dd9933','#dd9933','#dd3333','rgba(30,115,190,0.54)','#ffffff','#007087','#dd3333','middle','true');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effect9_loader` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_effects_data`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_effects_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_effects_data` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `slider_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slider_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_effects_data`
--

LOCK TABLES `wpjj_rich_web_slider_effects_data` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effects_data` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_effects_data` (`id`, `slider_name`, `slider_type`) VALUES (1,'Slider Navigation 1','Slider Navigation'),(2,'Slider Navigation 2','Slider Navigation'),(3,'Content Slider','Content Slider'),(4,'Content-Slider','Content Slider'),(5,'Fashion Slider 1','Fashion Slider'),(6,'Fashion Slider 2','Fashion Slider'),(7,'Circle Thumbnails','Circle Thumbnails'),(8,'Circle Thumbnails 2','Circle Thumbnails'),(9,'Slider Carousel 1','Slider Carousel'),(10,'Slider Carousel 2','Slider Carousel'),(11,'Flexible Slider 1','Flexible Slider'),(12,'Flexible Slider 2','Flexible Slider'),(13,'Dynamic Slider 1','Dynamic Slider'),(14,'Dynamic Slider 2','Dynamic Slider'),(15,'Thumbnails Slider & Lightbox 1','Thumbnails Slider & Lightbox'),(16,'Thumbnails Slider & Lightbox 2','Thumbnails Slider & Lightbox'),(17,'Accordion 1','Accordion Slider'),(18,'Accordion 2','Accordion Slider'),(19,'Animation Slider 1','Animation Slider'),(20,'Animation Slider 2','Animation Slider');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_effects_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_font_family`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_font_family`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_font_family` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `Font_family` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=126 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_font_family`
--

LOCK TABLES `wpjj_rich_web_slider_font_family` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_font_family` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_font_family` (`id`, `Font_family`) VALUES (1,'Abadi MT Condensed Light'),(2,'Aharoni'),(3,'Aldhabi'),(4,'Andalus'),(5,'Angsana New'),(6,'AngsanaUPC'),(7,'Aparajita'),(8,'Arabic Typesetting'),(9,'Arial'),(10,'Arial Black'),(11,'Batang'),(12,'BatangChe'),(13,'Browallia New'),(14,'BrowalliaUPC'),(15,'Calibri'),(16,'Calibri Light'),(17,'Calisto MT'),(18,'Cambria'),(19,'Candara'),(20,'Century Gothic'),(21,'Comic Sans MS'),(22,'Consolas'),(23,'Constantia'),(24,'Copperplate Gothic'),(25,'Copperplate Gothic Light'),(26,'Corbel'),(27,'Cordia New'),(28,'CordiaUPC'),(29,'Courier New'),(30,'DaunPenh'),(31,'David'),(32,'DFKai-SB'),(33,'DilleniaUPC'),(34,'DokChampa'),(35,'Dotum'),(36,'DotumChe'),(37,'Ebrima'),(38,'Estrangelo Edessa'),(39,'EucrosiaUPC'),(40,'Euphemia'),(41,'FangSong'),(42,'Franklin Gothic Medium'),(43,'FrankRuehl'),(44,'FreesiaUPC'),(45,'Gabriola'),(46,'Gadugi'),(47,'Gautami'),(48,'Georgia'),(49,'Gisha'),(50,'Gulim'),(51,'GulimChe'),(52,'Gungsuh'),(53,'GungsuhChe'),(54,'Impact'),(55,'IrisUPC'),(56,'Iskoola Pota'),(57,'JasmineUPC'),(58,'KaiTi'),(59,'Kalinga'),(60,'Kartika'),(61,'Khmer UI'),(62,'KodchiangUPC'),(63,'Kokila'),(64,'Lao UI'),(65,'Latha'),(66,'Leelawadee'),(67,'Levenim MT'),(68,'LilyUPC'),(69,'Lucida Console'),(70,'Lucida Handwriting Italic'),(71,'Lucida Sans Unicode'),(72,'Malgun Gothic'),(73,'Mangal'),(74,'Manny ITC'),(75,'Marlett'),(76,'Meiryo'),(77,'Meiryo UI'),(78,'Microsoft Himalaya'),(79,'Microsoft JhengHei'),(80,'Microsoft JhengHei UI'),(81,'Microsoft New Tai Lue'),(82,'Microsoft PhagsPa'),(83,'Microsoft Sans Serif'),(84,'Microsoft Tai Le'),(85,'Microsoft Uighur'),(86,'Microsoft YaHei'),(87,'Microsoft YaHei UI'),(88,'Microsoft Yi Baiti'),(89,'MingLiU_HKSCS'),(90,'MingLiU_HKSCS-ExtB'),(91,'Miriam'),(92,'Mongolian Baiti'),(93,'MoolBoran'),(94,'MS UI Gothic'),(95,'MV Boli'),(96,'Myanmar Text'),(97,'Narkisim'),(98,'Nirmala UI'),(99,'News Gothic MT'),(100,'NSimSun'),(101,'Nyala'),(102,'Palatino Linotype'),(103,'Plantagenet Cherokee'),(104,'Raavi'),(105,'Rod'),(106,'Sakkal Majalla'),(107,'Segoe Print'),(108,'Segoe Script'),(109,'Segoe UI Symbol'),(110,'Shonar Bangla'),(111,'Shruti'),(112,'SimHei'),(113,'SimKai'),(114,'Simplified Arabic'),(115,'SimSun'),(116,'SimSun-ExtB'),(117,'Sylfaen'),(118,'Tahoma'),(119,'Times New Roman'),(120,'Traditional Arabic'),(121,'Trebuchet MS'),(122,'Tunga'),(123,'Utsaah'),(124,'Vani'),(125,'Vijaya');
/*!40000 ALTER TABLE `wpjj_rich_web_slider_font_family` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_rich_web_slider_id`
--

DROP TABLE IF EXISTS `wpjj_rich_web_slider_id`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_rich_web_slider_id` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `Slider_ID` int(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_rich_web_slider_id`
--

LOCK TABLES `wpjj_rich_web_slider_id` WRITE;
/*!40000 ALTER TABLE `wpjj_rich_web_slider_id` DISABLE KEYS */;
INSERT INTO `wpjj_rich_web_slider_id` (`id`, `Slider_ID`) VALUES (1,1),(2,2);
/*!40000 ALTER TABLE `wpjj_rich_web_slider_id` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_term_relationships`
--

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

--
-- Dumping data for table `wpjj_term_relationships`
--

LOCK TABLES `wpjj_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpjj_term_relationships` DISABLE KEYS */;
INSERT INTO `wpjj_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (64,2,0),(66,2,0),(65,2,0),(67,2,0),(68,2,0),(83,3,0),(72,3,0),(79,3,0),(95,3,0),(87,3,0),(91,3,0),(99,3,0),(112,3,0),(104,3,0),(109,3,0),(120,3,0),(116,3,0),(123,3,0),(127,3,0),(129,3,0),(136,3,0),(132,3,0),(139,3,0),(142,3,0),(145,3,0),(148,3,0),(151,3,0),(158,4,0),(161,4,0),(167,4,0),(164,4,0),(173,4,0),(170,4,0),(176,4,0),(180,4,0),(183,4,0),(186,4,0),(190,4,0),(193,4,0),(512,9,0),(305,2,0),(309,2,0),(294,6,0),(361,6,0),(547,10,0),(546,10,0),(545,10,0),(544,10,0),(543,10,0),(542,10,0),(548,10,0),(553,10,0),(552,10,0),(550,10,0),(551,10,0),(549,10,0),(627,9,0),(632,9,0),(533,9,0),(618,3,0),(536,9,0),(535,9,0),(540,9,0),(538,9,0),(532,9,0),(539,9,0),(522,9,0),(521,9,0),(520,9,0),(628,3,0),(518,9,0),(517,9,0),(516,9,0),(515,9,0),(514,9,0),(513,9,0),(556,2,0),(635,1,0);
/*!40000 ALTER TABLE `wpjj_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_term_taxonomy`
--

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

--
-- Dumping data for table `wpjj_term_taxonomy`
--

LOCK TABLES `wpjj_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpjj_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpjj_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,8),(3,3,'category','',0,24),(4,4,'category','',0,12),(9,9,'nav_menu','',0,19),(6,6,'category','',0,2),(7,7,'layout_type','',0,0),(10,10,'nav_menu','',0,12);
/*!40000 ALTER TABLE `wpjj_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_termmeta`
--

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

--
-- Dumping data for table `wpjj_termmeta`
--

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

--
-- Table structure for table `wpjj_terms`
--

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

--
-- Dumping data for table `wpjj_terms`
--

LOCK TABLES `wpjj_terms` WRITE;
/*!40000 ALTER TABLE `wpjj_terms` DISABLE KEYS */;
INSERT INTO `wpjj_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0),(2,'main','main',0),(3,'Cows','cows',0),(4,'Bulls','bulls',0),(6,'News','news',0),(7,'layout','layout',0),(9,'Sample of Donor Cows','sample-of-donor-cows',0),(10,'Bull Influence','bull-influence',0);
/*!40000 ALTER TABLE `wpjj_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_usermeta`
--

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

--
-- Dumping data for table `wpjj_usermeta`
--

LOCK TABLES `wpjj_usermeta` WRITE;
/*!40000 ALTER TABLE `wpjj_usermeta` DISABLE KEYS */;
INSERT INTO `wpjj_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (1,1,'nickname','larsons'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'locale',''),(11,1,'wpjj_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(12,1,'wpjj_user_level','10'),(13,1,'dismissed_wp_pointers','theme_editor_notice,wp496_privacy,plugin_editor_notice'),(14,1,'show_welcome_panel','1'),(15,1,'session_tokens','a:1:{s:64:\"2972c0e42738e21cdd4bd5282778947c2bc02785282378d3b1f46b593c247032\";a:4:{s:10:\"expiration\";i:1628203800;s:2:\"ip\";s:13:\"70.119.250.89\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15\";s:5:\"login\";i:1628031000;}}'),(16,1,'wpjj_dashboard_quick_press_last_post_id','928'),(17,1,'jetpack_tracks_anon_id','jetpack:huw619u66dC3lOmA5twXN/lr'),(18,1,'wpjj_user-settings','libraryContent=browse&editor=tinymce&advImgDetails=show&align=left&imgsize=thumbnail&hidetb=1&post_dfw=on'),(19,1,'wpjj_user-settings-time','1556762880'),(20,1,'managenav-menuscolumnshidden','a:0:{}'),(21,1,'metaboxhidden_nav-menus','a:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}'),(22,1,'closedpostboxes_post','a:1:{i:0;s:10:\"postcustom\";}'),(23,1,'metaboxhidden_post','a:6:{i:0;s:9:\"formatdiv\";i:1;s:13:\"trackbacksdiv\";i:2;s:16:\"commentstatusdiv\";i:3;s:11:\"commentsdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'),(24,1,'nav_menu_recently_edited','2'),(25,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"70.119.250.0\";}'),(26,1,'syntax_highlighting','true'),(28,1,'wpjj_media_library_mode','grid'),(27,1,'wporg_favorites','larsons'),(29,1,'closedpostboxes_dashboard','a:0:{}'),(30,1,'metaboxhidden_dashboard','a:0:{}'),(31,1,'elementor_introduction','a:2:{s:10:\"rightClick\";b:1;s:19:\"colorPickerDropping\";b:1;}'),(34,1,'wfls-last-login','1559782710'),(33,1,'wfls-last-captcha-score','');
/*!40000 ALTER TABLE `wpjj_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_users`
--

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

--
-- Dumping data for table `wpjj_users`
--

LOCK TABLES `wpjj_users` WRITE;
/*!40000 ALTER TABLE `wpjj_users` DISABLE KEYS */;
INSERT INTO `wpjj_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES (1,'larsons','$P$BEW.n22ueXl2ymJn4BP/Z4Y2BB.ypT.','larsons','support@maiahost.com','','2017-03-03 13:36:30','',0,'larsons');
/*!40000 ALTER TABLE `wpjj_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wd_fb_data`
--

DROP TABLE IF EXISTS `wpjj_wd_fb_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_wd_fb_data` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `fb_id` int(11) NOT NULL,
  `from` varchar(32) NOT NULL,
  `object_id` varchar(64) NOT NULL,
  `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `type` varchar(32) NOT NULL,
  `message` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `story` mediumtext NOT NULL,
  `place` mediumtext NOT NULL,
  `message_tags` mediumtext NOT NULL,
  `with_tags` mediumtext NOT NULL,
  `story_tags` mediumtext NOT NULL,
  `status_type` mediumtext NOT NULL,
  `link` mediumtext NOT NULL,
  `source` mediumtext NOT NULL,
  `thumb_url` varchar(512) NOT NULL,
  `main_url` varchar(512) NOT NULL,
  `width` varchar(32) NOT NULL,
  `height` varchar(32) NOT NULL,
  `created_time` varchar(64) NOT NULL,
  `updated_time` varchar(64) NOT NULL,
  `created_time_number` bigint(255) NOT NULL,
  `reactions` text NOT NULL,
  `comments` text NOT NULL,
  `shares` text NOT NULL,
  `attachments` text NOT NULL,
  `who_post` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wd_fb_data`
--

LOCK TABLES `wpjj_wd_fb_data` WRITE;
/*!40000 ALTER TABLE `wpjj_wd_fb_data` DISABLE KEYS */;
INSERT INTO `wpjj_wd_fb_data` (`id`, `fb_id`, `from`, `object_id`, `name`, `description`, `type`, `message`, `story`, `place`, `message_tags`, `with_tags`, `story_tags`, `status_type`, `link`, `source`, `thumb_url`, `main_url`, `width`, `height`, `created_time`, `updated_time`, `created_time_number`, `reactions`, `comments`, `shares`, `attachments`, `who_post`) VALUES (1,1,'120237481406257','120237481406257_1654568914639765','2018 Hereford Alliance Sale','May 19, 2018 in Clifton, TX','link','ONLINE NOW!!! 2018 Hereford Alliance Sale Catalog\n\nhttps://issuu.com/tracyhm/docs/larsonsherefordalliance051918/2','','','[]','','','shared_story','https://issuu.com/tracyhm/docs/larsonsherefordalliance051918/2','','','','','','2018-05-03T16:12:51+0000','2018-05-03T18:35:38+0000',1525363971,'','{\"data\":[{\"created_time\":\"2018-05-03T18:35:38+0000\",\"like_count\":0,\"message\":\"Bill Tillett\",\"comment_count\":0,\"id\":\"1654568914639765_1654665241296799\"}],\"paging\":{\"cursors\":{\"before\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFkxTkRZAMk5USTBNVEk1TmpjNU9Ub3hOVEkxTXpjeU5UTTUZD\",\"after\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFkxTkRZAMk5USTBNVEk1TmpjNU9Ub3hOVEkxTXpjeU5UTTUZD\"}},\"summary\":{\"order\":\"chronological\",\"total_count\":1,\"can_comment\":false}}','{\"count\":15}','{\"data\":[{\"description\":\"May 19, 2018 in Clifton, TX\",\"media\":{\"image\":{\"height\":720,\"src\":\"https:\\/\\/external.xx.fbcdn.net\\/safe_image.php?d=AQAMOn1osjhC17te&w=720&h=720&url=https%3A%2F%2Fimage.isu.pub%2F180502185809-d300b48c093ebc5ff009357d527400c6%2Fjpg%2Fpage_2.jpg&cfs=1&_nc_hash=AQBh95JW1jMWk-Vo\",\"width\":720}},\"target\":{\"url\":\"https:\\/\\/l.facebook.com\\/l.php?u=https%3A%2F%2Fissuu.com%2Ftracyhm%2Fdocs%2Flarsonsherefordalliance051918%2F2&h=AT0tNmHQ6YlJ6md_6PgIsFCpt_JDCTirks9UAwIfiU567aWnHR2dLmUlSa_rq9APHa8FSEx2eAl0fmWWRK44nwPhjcP8hXQA4RPua-If3MoDZroguQdX&s=1\"},\"title\":\"2018 Hereford Alliance Sale\",\"type\":\"share\",\"url\":\"https:\\/\\/l.facebook.com\\/l.php?u=https%3A%2F%2Fissuu.com%2Ftracyhm%2Fdocs%2Flarsonsherefordalliance051918%2F2&h=AT0tNmHQ6YlJ6md_6PgIsFCpt_JDCTirks9UAwIfiU567aWnHR2dLmUlSa_rq9APHa8FSEx2eAl0fmWWRK44nwPhjcP8hXQA4RPua-If3MoDZroguQdX&s=1\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(2,1,'120237481406257','120237481406257_1652954551467868','Sample of the Bonissa 2 Year-Old','','video','Sample 2018 Bonissa Influence...','','','','','','added_video','https://www.facebook.com/polledherefords/videos/1652954551467868/','','','','','','2018-05-02T03:23:13+0000','2018-05-02T03:39:40+0000',1525231393,'','{\"data\":[],\"summary\":{\"order\":\"chronological\",\"total_count\":0,\"can_comment\":false}}','{\"count\":1}','{\"data\":[{\"media\":{\"image\":{\"height\":405,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t15.0-10\\/s720x720\\/29769766_1652967874799869_3110673623686316032_n.jpg?_nc_cat=0&oh=e97742dde9285c654bf2eda9881d6121&oe=5C1016BD\",\"width\":720}},\"target\":{\"id\":\"1652954551467868\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/videos\\/1652954551467868\\/\"},\"title\":\"Sample of the Bonissa 2 Year-Old\",\"type\":\"video_inline\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/videos\\/1652954551467868\\/\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(13,1,'120237481406257','120237481406257_1660543207375669','','','photo','2018 Sale Videos Videos Are Online Now!\nhttps://www.youtube.com/playlist?list=PL3K3ghzeET2SMAbUEJjNthd8-8m2n7gnM','','','[]','','','added_photos','https://www.facebook.com/polledherefords/photos/a.120607171369288.22544.120237481406257/1660542934042363/?type=3','','','','','','2018-05-09T22:04:59+0000','2018-05-09T22:04:59+0000',1525903499,'','{\"data\":[],\"summary\":{\"order\":\"chronological\",\"total_count\":0,\"can_comment\":false}}','{\"count\":10}','{\"data\":[{\"description\":\"2018 Sale Videos Videos Are Online Now!\\nhttps:\\/\\/www.youtube.com\\/playlist?list=PL3K3ghzeET2SMAbUEJjNthd8-8m2n7gnM\",\"media\":{\"image\":{\"height\":275,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-9\\/32152764_1660542937375696_326688810400219136_n.png?_nc_cat=0&oh=09d245baf1d9502c08f8a1c83d78a84b&oe=5BD0FA46\",\"width\":371}},\"target\":{\"id\":\"1660542934042363\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1660542934042363\\/?type=3\"},\"type\":\"photo\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1660542934042363\\/?type=3\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(3,1,'120237481406257','120237481406257_1652756871487636','','','photo','Hereford Alliance Sale Update: Donor Candidate: C11-Professor x 511X (Full Sib to 719T) She Sells May 19th.','','','','','','added_photos','https://www.facebook.com/polledherefords/photos/a.120607171369288.22544.120237481406257/1652756231487700/?type=3','','','','','','2018-05-01T22:35:41+0000','2018-05-02T02:08:38+0000',1525214141,'','{\"data\":[{\"created_time\":\"2018-05-02T02:08:38+0000\",\"from\":{\"name\":\"Larson Running L Ranch\",\"id\":\"120237481406257\"},\"like_count\":0,\"message\":\"511X\",\"comment_count\":0,\"id\":\"1652756871487636_1652893411473982\"}],\"paging\":{\"cursors\":{\"before\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFkxTWpnNU16UXhNVFEzTXprNE1qb3hOVEkxTWpJMk9URTQZD\",\"after\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFkxTWpnNU16UXhNVFEzTXprNE1qb3hOVEkxTWpJMk9URTQZD\"}},\"summary\":{\"order\":\"chronological\",\"total_count\":1,\"can_comment\":false}}','{\"count\":4}','{\"data\":[{\"description\":\"Hereford Alliance Sale Update: Donor Candidate: C11-Professor x 511X (Full Sib to 719T) She Sells May 19th.\",\"media\":{\"image\":{\"height\":498,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-9\\/q86\\/s720x720\\/31671379_1652756241487699_3071325332343619584_o.jpg?_nc_cat=0&oh=1679f52e26242b1d6571461b571bcb22&oe=5BD0138F\",\"width\":720}},\"target\":{\"id\":\"1652756231487700\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1652756231487700\\/?type=3\"},\"type\":\"photo\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1652756231487700\\/?type=3\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(4,1,'120237481406257','120237481406257_1650936131669710','','','photo','When Josh got frustrated with the cattle not posing for pics in picture pen he decided to show her how to do it..','','','','','','added_photos','https://www.facebook.com/polledherefords/photos/a.120607171369288.22544.120237481406257/1650936408336349/?type=3','','','','','','2018-04-30T00:39:30+0000','2018-04-30T02:40:24+0000',1525048770,'','{\"data\":[{\"created_time\":\"2018-04-30T01:04:01+0000\",\"like_count\":1,\"message\":\"The feeling is real!\",\"comment_count\":2,\"id\":\"1650936131669710_1650954428334547\"},{\"created_time\":\"2018-04-30T01:59:24+0000\",\"like_count\":1,\"message\":\"Tell Josh he has to get on all fours to show her. lol\",\"comment_count\":0,\"id\":\"1650936131669710_1650988124997844\"},{\"created_time\":\"2018-04-30T02:40:24+0000\",\"like_count\":0,\"message\":\"Classic!\",\"comment_count\":0,\"id\":\"1650936131669710_1651011531662170\"}],\"paging\":{\"cursors\":{\"before\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFkxTURrMU5EUXlPRE16TkRVME56b3hOVEkxTURVd01qUXgZD\",\"after\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFkxTVRBeE1UVXpNVFkyTWpFM01Eb3hOVEkxTURVMk1ESTAZD\"}},\"summary\":{\"order\":\"chronological\",\"total_count\":3,\"can_comment\":false}}','{\"count\":2}','{\"data\":[{\"description\":\"When Josh got frustrated with the cattle not posing for pics in picture pen he decided to show her how to do it..\",\"media\":{\"image\":{\"height\":476,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-9\\/q84\\/s720x720\\/31693036_1650936411669682_2193705785391841280_o.jpg?_nc_cat=0&oh=8d5c3baa8c88d610f2b90996b38cb528&oe=5BD45F34\",\"width\":720}},\"target\":{\"id\":\"1650936408336349\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1650936408336349\\/?type=3\"},\"type\":\"photo\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1650936408336349\\/?type=3\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(5,1,'120237481406257','120237481406257_1649565058473484','','','photo','AHA office legend and retiree Nancy Thomas visited the ranch. Thanks for decades of help Nancy!','','','','','','added_photos','https://www.facebook.com/polledherefords/photos/a.447642071999128.1073741830.120237481406257/1649565035140153/?type=3','','','','','','2018-04-28T14:04:47+0000','2018-04-28T14:14:06+0000',1524924287,'','{\"data\":[{\"created_time\":\"2018-04-28T14:14:06+0000\",\"like_count\":0,\"message\":\"How Special\\ud83d\\udc4d\",\"comment_count\":0,\"id\":\"1649565058473484_1649571838472806\"}],\"paging\":{\"cursors\":{\"before\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFkwT1RVM01UZA3pPRFEzTWpnd05qb3hOVEkwT1RJME9EUTIZD\",\"after\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFkwT1RVM01UZA3pPRFEzTWpnd05qb3hOVEkwT1RJME9EUTIZD\"}},\"summary\":{\"order\":\"chronological\",\"total_count\":1,\"can_comment\":false}}','{\"count\":1}','{\"data\":[{\"description\":\"AHA office legend and retiree Nancy Thomas visited the ranch. Thanks for decades of help Nancy!\",\"media\":{\"image\":{\"height\":720,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-9\\/q81\\/s720x720\\/31416753_1649565038473486_8159717866967400448_o.jpg?_nc_cat=0&oh=162353531cad3a41129f45bb6f602833&oe=5C107355\",\"width\":350}},\"target\":{\"id\":\"1649565035140153\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.447642071999128.1073741830.120237481406257\\/1649565035140153\\/?type=3\"},\"type\":\"photo\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.447642071999128.1073741830.120237481406257\\/1649565035140153\\/?type=3\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(6,1,'120237481406257','120237481406257_1608646409232016','','','photo','Plan to join us May 19, 2018 at the ranch!','','','','','','added_photos','https://www.facebook.com/polledherefords/photos/a.120607171369288.22544.120237481406257/1608645955898728/?type=3','','','','','','2018-03-19T01:50:43+0000','2018-05-16T18:05:20+0000',1521424243,'','{\"data\":[{\"created_time\":\"2018-05-16T18:05:20+0000\",\"like_count\":0,\"message\":\"Tolea Smith Williams.  Please come\",\"comment_count\":0,\"id\":\"1608646409232016_1666799920083331\"}],\"paging\":{\"cursors\":{\"before\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFkyTmpjNU9Ua3lNREE0TXpNek1Ub3hOVEkyTkRrek9USXcZD\",\"after\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFkyTmpjNU9Ua3lNREE0TXpNek1Ub3hOVEkyTkRrek9USXcZD\"}},\"summary\":{\"order\":\"chronological\",\"total_count\":1,\"can_comment\":false}}','{\"count\":11}','{\"data\":[{\"description\":\"Plan to join us May 19, 2018 at the ranch!\",\"media\":{\"image\":{\"height\":720,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-9\\/s720x720\\/29343167_1608645962565394_7081256316290727936_o.jpg?_nc_cat=0&oh=3dab1554ad03f27822dfaa425929c6ed&oe=5C03E3CA\",\"width\":544}},\"target\":{\"id\":\"1608645955898728\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1608645955898728\\/?type=3\"},\"type\":\"photo\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1608645955898728\\/?type=3\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(7,1,'120237481406257','120237481406257_1608569049239752','\'s cover photo','','photo','','Larson Running L Ranch updated their cover photo.','','','','[{\"id\":\"120237481406257\",\"name\":\"Larson Running L Ranch\",\"type\":\"page\",\"offset\":0,\"length\":22}]','added_photos','https://www.facebook.com/polledherefords/photos/a.229716510458353.51129.120237481406257/1608568995906424/?type=3','','','','','','2018-03-19T00:41:49+0000','2018-03-19T05:24:29+0000',1521420109,'','{\"data\":[{\"created_time\":\"2018-03-19T05:24:29+0000\",\"like_count\":0,\"message\":\"Great picture .\",\"comment_count\":0,\"id\":\"1608568995906424_1608799645883359\"}],\"paging\":{\"cursors\":{\"before\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFl3T0RjNU9UWTBOVGc0TXpNMU9Ub3hOVEl4TkRNM01EWTUZD\",\"after\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFl3T0RjNU9UWTBOVGc0TXpNMU9Ub3hOVEl4TkRNM01EWTUZD\"}},\"summary\":{\"order\":\"chronological\",\"total_count\":2,\"can_comment\":false}}','{\"count\":1}','{\"data\":[{\"media\":{\"image\":{\"height\":478,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-9\\/s720x720\\/29389294_1608568999239757_8274355083878072320_o.jpg?_nc_cat=0&oh=93ae313aed2c11d4df366efd3da3b49d&oe=5BFCE903\",\"width\":720}},\"target\":{\"id\":\"120237481406257\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\"},\"title\":\"\'s cover photo\",\"type\":\"cover_photo\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(8,1,'120237481406257','120237481406257_1487477321348926','','','photo','Without You there is no US!','','','','','','added_photos','https://www.facebook.com/polledherefords/photos/a.447642071999128.1073741830.120237481406257/1487477291348929/?type=3','','','','','','2017-11-11T15:03:00+0000','2017-11-11T15:03:00+0000',1510412580,'','{\"data\":[],\"summary\":{\"order\":\"chronological\",\"total_count\":0,\"can_comment\":false}}','','{\"data\":[{\"description\":\"Without You there is no US!\",\"media\":{\"image\":{\"height\":423,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-9\\/s720x720\\/23376159_1487477291348929_9095102356353410848_n.jpg?_nc_cat=0&oh=136a3cc7c3e8bc8c1b566e8d7d248b0b&oe=5C0FB499\",\"width\":720}},\"target\":{\"id\":\"1487477291348929\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.447642071999128.1073741830.120237481406257\\/1487477291348929\\/?type=3\"},\"type\":\"photo\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.447642071999128.1073741830.120237481406257\\/1487477291348929\\/?type=3\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(9,1,'120237481406257','120237481406257_1333540823409244','Timeline Photos','','photo','Sale day! Please join us. Online bidding available at CattleinMotion.com','','','[]','','','added_photos','https://www.facebook.com/polledherefords/photos/a.120607171369288.22544.120237481406257/1333540823409244/?type=3','','','','','','2017-05-20T11:52:34+0000','2017-05-20T11:52:34+0000',1495281154,'','{\"data\":[],\"summary\":{\"order\":\"chronological\",\"total_count\":0,\"can_comment\":false}}','{\"count\":1}','{\"data\":[{\"description\":\"Sale day! Please join us. Online bidding available at CattleinMotion.com\",\"media\":{\"image\":{\"height\":720,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t31.0-8\\/s720x720\\/18595210_1333540823409244_6467811516397290705_o.jpg?_nc_cat=0&oh=a7ca6ca6adf8f530df32e2dfc591b0e6&oe=5C07172E\",\"width\":556}},\"target\":{\"id\":\"1333540823409244\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1333540823409244\\/?type=3\"},\"title\":\"Timeline Photos\",\"type\":\"photo\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1333540823409244\\/?type=3\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(10,1,'120237481406257','120237481406257_1316737355089591','Timeline Photos','','photo','Catalog is Online Now\nhttp://www.cattleinmotion.com/issuu/hereford-alliance-sale-larson-polled-herefords-0','Larson Running L Ranch is at Larson Running L Ranch.','{\"name\":\"Larson Running L Ranch\",\"location\":{\"city\":\"Clifton\",\"country\":\"United States\",\"latitude\":31.82179615,\"longitude\":-97.58073082,\"state\":\"TX\",\"street\":\"2793 FM-1991\",\"zip\":\"76634\"},\"id\":\"120237481406257\"}','[]','','[{\"id\":\"120237481406257\",\"name\":\"Larson Running L Ranch\",\"type\":\"page\",\"offset\":0,\"length\":22},{\"id\":\"120237481406257\",\"name\":\"Larson Running L Ranch\",\"type\":\"page\",\"offset\":29,\"length\":22}]','added_photos','https://www.facebook.com/polledherefords/photos/a.120607171369288.22544.120237481406257/1316737355089591/?type=3','','','','','','2017-05-04T21:41:41+0000','2017-05-05T03:05:15+0000',1493934101,'','{\"data\":[{\"created_time\":\"2017-05-05T03:05:15+0000\",\"like_count\":0,\"message\":\"Ruth Thornton\",\"comment_count\":0,\"id\":\"1316737355089591_1317039875059339\"}],\"paging\":{\"cursors\":{\"before\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVE14TnpBek9UZAzNOVEExT1RNek9Ub3hORGt6T1RVek5URTEZD\",\"after\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVE14TnpBek9UZAzNOVEExT1RNek9Ub3hORGt6T1RVek5URTEZD\"}},\"summary\":{\"order\":\"chronological\",\"total_count\":1,\"can_comment\":false}}','{\"count\":2}','{\"data\":[{\"description\":\"Catalog is Online Now\\nhttp:\\/\\/www.cattleinmotion.com\\/issuu\\/hereford-alliance-sale-larson-polled-herefords-0\",\"media\":{\"image\":{\"height\":720,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t31.0-8\\/s720x720\\/18319282_1316737355089591_4868111281600692692_o.jpg?_nc_cat=0&oh=e3ba2cdcb20b565730af76e2c481e3c1&oe=5C037946\",\"width\":556}},\"target\":{\"id\":\"1316737355089591\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1316737355089591\\/?type=3\"},\"title\":\"Timeline Photos\",\"type\":\"photo\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1316737355089591\\/?type=3\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(11,1,'120237481406257','120237481406257_1656928704403786','','','photo','Filming of videos will begin Sunday May 6. Look for them to be published a day or two after that.','','','','','','added_photos','https://www.facebook.com/polledherefords/photos/a.120607171369288.22544.120237481406257/1656928087737181/?type=3','','','','','','2018-05-06T02:44:15+0000','2018-05-06T02:44:15+0000',1525574655,'','{\"data\":[],\"summary\":{\"order\":\"chronological\",\"total_count\":0,\"can_comment\":false}}','','{\"data\":[{\"description\":\"Filming of videos will begin Sunday May 6. Look for them to be published a day or two after that.\",\"media\":{\"image\":{\"height\":329,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-9\\/31949762_1656928091070514_4212164999457538048_n.png?_nc_cat=0&oh=64bea155ff0de3db910573cf575bdd44&oe=5BCA9A3E\",\"width\":360}},\"target\":{\"id\":\"1656928087737181\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1656928087737181\\/?type=3\"},\"type\":\"photo\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1656928087737181\\/?type=3\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(12,1,'120237481406257','120237481406257_1657773384319318','','','photo','Big thanks to this Bad A$$ crew. They dedicated their Sunday to videoing sale cattle. Thank you to Michael from Superior, Latham Kidd and Roger Kidd , ranch boss Brooke Larson, JB, Tessa Millsap Wheeler, and Makayla the cowgirl. We couldn\'t have got it done without you.','','','[{\"id\":\"1776959275705272\",\"name\":\"Latham Kidd\",\"type\":\"user\",\"offset\":122,\"length\":11},{\"id\":\"1734292953329064\",\"name\":\"Tessa Millsap\",\"type\":\"user\",\"offset\":181,\"length\":13}]','','','added_photos','https://www.facebook.com/polledherefords/photos/a.447642071999128.1073741830.120237481406257/1657773347652655/?type=3','','','','','','2018-05-06T23:22:30+0000','2018-05-06T23:43:42+0000',1525648950,'','{\"data\":[{\"created_time\":\"2018-05-06T23:33:05+0000\",\"from\":{\"name\":\"Larson Running L Ranch\",\"id\":\"120237481406257\"},\"like_count\":0,\"message\":\"This Crew never complained once with all the high humidity after 3 inches of rain and the cattle didn\'t complain either although they weren\'t quite as full due to the last two days of rain.\",\"comment_count\":0,\"id\":\"1657773384319318_1657778544318802\"}],\"paging\":{\"cursors\":{\"before\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFkxTnpjM09EVTBORE14T0Rnd01qb3hOVEkxTmpRNU5UZAzEZD\",\"after\":\"WTI5dGJXVnVkRjlqZAFhKemIzSTZANVFkxTnpjM09EVTBORE14T0Rnd01qb3hOVEkxTmpRNU5UZAzEZD\"}},\"summary\":{\"order\":\"chronological\",\"total_count\":1,\"can_comment\":false}}','','{\"data\":[{\"description\":\"Big thanks to this Bad A$$ crew. They dedicated their Sunday to videoing sale cattle. Thank you to Michael from Superior, Latham Kidd and Roger Kidd , ranch boss Brooke Larson, JB, Tessa Millsap Wheeler, and Makayla the cowgirl. We couldn\'t have got it done without you.\",\"description_tags\":[{\"id\":\"1776959275705272\",\"length\":11,\"name\":\"Latham Kidd\",\"offset\":122,\"type\":\"user\"},{\"id\":\"1734292953329064\",\"length\":13,\"name\":\"Tessa Millsap\",\"offset\":181,\"type\":\"user\"}],\"media\":{\"image\":{\"height\":422,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-9\\/s720x720\\/31959330_1657773354319321_866839595650646016_o.jpg?_nc_cat=0&oh=d4d620025b0e3efc4723996839a20304&oe=5C031074\",\"width\":720}},\"target\":{\"id\":\"1657773347652655\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.447642071999128.1073741830.120237481406257\\/1657773347652655\\/?type=3\"},\"type\":\"photo\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.447642071999128.1073741830.120237481406257\\/1657773347652655\\/?type=3\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(14,1,'120237481406257','120237481406257_1667056816724308','','','video','Taste of Italy!\nLots 1-4 the Italia family. Cornerstone Genetics.\nSell saturday','','','','','','added_video','https://www.facebook.com/polledherefords/videos/1667056816724308/','','','','','','2018-05-17T01:16:14+0000','2018-05-17T01:16:14+0000',1526519774,'','{\"data\":[],\"summary\":{\"order\":\"chronological\",\"total_count\":0,\"can_comment\":false}}','{\"count\":2}','{\"data\":[{\"media\":{\"image\":{\"height\":514,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t15.0-10\\/s720x720\\/29784289_1667057070057616_6874318010216087552_n.jpg?_nc_cat=0&oh=5970600f19e1e21bd07821bfda7b9ca2&oe=5BCB922E\",\"width\":720}},\"target\":{\"id\":\"1667056816724308\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/videos\\/1667056816724308\\/\"},\"type\":\"video_inline\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/videos\\/1667056816724308\\/\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}'),(15,1,'120237481406257','120237481406257_1667098820053441','','','photo','Direct daughter of Beth 1L by X51. She sells Saturday May 18, 2018. Call or message for details.','','','','','','added_photos','https://www.facebook.com/polledherefords/photos/a.120607171369288.22544.120237481406257/1667098236720166/?type=3','','','','','','2018-05-17T02:25:39+0000','2018-05-17T02:25:39+0000',1526523939,'','{\"data\":[],\"summary\":{\"order\":\"chronological\",\"total_count\":0,\"can_comment\":false}}','{\"count\":1}','{\"data\":[{\"description\":\"Direct daughter of Beth 1L by X51. She sells Saturday May 18, 2018. Call or message for details.\",\"media\":{\"image\":{\"height\":487,\"src\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-9\\/s720x720\\/32720253_1667098243386832_3527438786025750528_o.jpg?_nc_cat=0&oh=492fb2546ebb9245af2e369d5217f59f&oe=5C08FA3D\",\"width\":720}},\"target\":{\"id\":\"1667098236720166\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1667098236720166\\/?type=3\"},\"type\":\"photo\",\"url\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/photos\\/a.120607171369288.22544.120237481406257\\/1667098236720166\\/?type=3\"}]}','{\"picture\":{\"data\":{\"height\":50,\"is_silhouette\":false,\"url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p50x50\\/29356900_1608635022566488_6040262393857048576_n.png?_nc_cat=0&oh=098a7c42f255dc114f993f61499cd575&oe=5C015957\",\"width\":50}},\"name\":\"Larson Running L Ranch\",\"link\":\"https:\\/\\/www.facebook.com\\/polledherefords\\/\",\"id\":\"120237481406257\"}');
/*!40000 ALTER TABLE `wpjj_wd_fb_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wd_fb_info`
--

DROP TABLE IF EXISTS `wpjj_wd_fb_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_wd_fb_info` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `type` varchar(10) NOT NULL,
  `content_type` varchar(15) NOT NULL,
  `content` varchar(256) NOT NULL,
  `content_url` varchar(512) NOT NULL,
  `timeline_type` varchar(16) NOT NULL,
  `from` varchar(32) NOT NULL,
  `limit` int(11) NOT NULL,
  `app_id` varchar(128) NOT NULL,
  `app_secret` varchar(256) NOT NULL,
  `exist_access` tinyint(1) NOT NULL,
  `access_token` varchar(256) NOT NULL,
  `order` bigint(20) DEFAULT NULL,
  `published` tinyint(1) NOT NULL,
  `update_mode` varchar(16) NOT NULL,
  `fb_view_type` varchar(25) NOT NULL,
  `theme` int(11) DEFAULT NULL,
  `masonry_hor_ver` varchar(255) DEFAULT NULL,
  `image_max_columns` int(11) DEFAULT NULL,
  `thumb_width` int(11) DEFAULT NULL,
  `thumb_height` int(11) DEFAULT NULL,
  `thumb_comments` int(11) DEFAULT NULL,
  `thumb_likes` int(11) DEFAULT NULL,
  `thumb_name` int(11) DEFAULT NULL,
  `blog_style_width` int(11) DEFAULT NULL,
  `blog_style_height` varchar(15) DEFAULT NULL,
  `blog_style_view_type` int(11) DEFAULT NULL,
  `blog_style_comments` int(11) DEFAULT NULL,
  `blog_style_likes` int(11) DEFAULT NULL,
  `blog_style_message_desc` int(11) DEFAULT NULL,
  `blog_style_shares` int(11) DEFAULT NULL,
  `blog_style_shares_butt` int(11) DEFAULT NULL,
  `blog_style_facebook` int(11) DEFAULT NULL,
  `blog_style_twitter` int(11) DEFAULT NULL,
  `blog_style_google` int(11) DEFAULT NULL,
  `blog_style_author` int(11) DEFAULT NULL,
  `blog_style_name` int(11) DEFAULT NULL,
  `blog_style_place_name` int(11) DEFAULT NULL,
  `fb_name` int(11) DEFAULT NULL,
  `fb_plugin` int(11) DEFAULT NULL,
  `album_max_columns` int(11) DEFAULT NULL,
  `album_title` varchar(15) DEFAULT NULL,
  `album_thumb_width` int(11) DEFAULT NULL,
  `album_thumb_height` int(11) DEFAULT NULL,
  `album_image_max_columns` int(11) DEFAULT NULL,
  `album_image_thumb_width` int(11) DEFAULT NULL,
  `album_image_thumb_height` int(11) DEFAULT NULL,
  `pagination_type` int(11) DEFAULT NULL,
  `objects_per_page` int(11) DEFAULT NULL,
  `popup_fullscreen` int(11) DEFAULT NULL,
  `popup_width` int(11) NOT NULL,
  `popup_height` int(11) DEFAULT NULL,
  `popup_effect` varchar(255) DEFAULT NULL,
  `popup_autoplay` int(11) DEFAULT NULL,
  `open_commentbox` int(11) DEFAULT NULL,
  `popup_interval` int(11) DEFAULT NULL,
  `popup_enable_filmstrip` int(11) DEFAULT NULL,
  `popup_filmstrip_height` int(11) DEFAULT NULL,
  `popup_comments` int(11) DEFAULT NULL,
  `popup_likes` int(11) DEFAULT NULL,
  `popup_shares` int(11) DEFAULT NULL,
  `popup_author` int(11) DEFAULT NULL,
  `popup_name` int(11) DEFAULT NULL,
  `popup_place_name` int(11) DEFAULT NULL,
  `popup_enable_ctrl_btn` int(11) DEFAULT NULL,
  `popup_enable_fullscreen` int(11) DEFAULT NULL,
  `popup_enable_info_btn` int(11) DEFAULT NULL,
  `popup_message_desc` int(11) DEFAULT NULL,
  `popup_enable_facebook` int(11) DEFAULT NULL,
  `popup_enable_twitter` int(11) DEFAULT NULL,
  `popup_enable_google` int(11) DEFAULT NULL,
  `view_on_fb` tinyint(1) NOT NULL,
  `post_text_length` bigint(20) NOT NULL,
  `event_street` tinyint(1) NOT NULL,
  `event_city` tinyint(1) NOT NULL,
  `event_country` tinyint(1) NOT NULL,
  `event_zip` tinyint(1) NOT NULL,
  `event_map` tinyint(1) NOT NULL,
  `event_date` tinyint(1) NOT NULL,
  `event_desp_length` bigint(20) NOT NULL,
  `comments_replies` tinyint(1) NOT NULL,
  `comments_filter` varchar(32) NOT NULL,
  `comments_order` varchar(32) NOT NULL,
  `page_plugin_pos` varchar(8) NOT NULL,
  `page_plugin_fans` tinyint(1) NOT NULL,
  `page_plugin_cover` tinyint(1) NOT NULL,
  `page_plugin_header` tinyint(1) NOT NULL,
  `page_plugin_width` int(4) NOT NULL,
  `image_onclick_action` varchar(32) NOT NULL,
  `event_order` tinyint(4) NOT NULL,
  `upcoming_events` tinyint(4) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wd_fb_info`
--

LOCK TABLES `wpjj_wd_fb_info` WRITE;
/*!40000 ALTER TABLE `wpjj_wd_fb_info` DISABLE KEYS */;
INSERT INTO `wpjj_wd_fb_info` (`id`, `name`, `type`, `content_type`, `content`, `content_url`, `timeline_type`, `from`, `limit`, `app_id`, `app_secret`, `exist_access`, `access_token`, `order`, `published`, `update_mode`, `fb_view_type`, `theme`, `masonry_hor_ver`, `image_max_columns`, `thumb_width`, `thumb_height`, `thumb_comments`, `thumb_likes`, `thumb_name`, `blog_style_width`, `blog_style_height`, `blog_style_view_type`, `blog_style_comments`, `blog_style_likes`, `blog_style_message_desc`, `blog_style_shares`, `blog_style_shares_butt`, `blog_style_facebook`, `blog_style_twitter`, `blog_style_google`, `blog_style_author`, `blog_style_name`, `blog_style_place_name`, `fb_name`, `fb_plugin`, `album_max_columns`, `album_title`, `album_thumb_width`, `album_thumb_height`, `album_image_max_columns`, `album_image_thumb_width`, `album_image_thumb_height`, `pagination_type`, `objects_per_page`, `popup_fullscreen`, `popup_width`, `popup_height`, `popup_effect`, `popup_autoplay`, `open_commentbox`, `popup_interval`, `popup_enable_filmstrip`, `popup_filmstrip_height`, `popup_comments`, `popup_likes`, `popup_shares`, `popup_author`, `popup_name`, `popup_place_name`, `popup_enable_ctrl_btn`, `popup_enable_fullscreen`, `popup_enable_info_btn`, `popup_message_desc`, `popup_enable_facebook`, `popup_enable_twitter`, `popup_enable_google`, `view_on_fb`, `post_text_length`, `event_street`, `event_city`, `event_country`, `event_zip`, `event_map`, `event_date`, `event_desp_length`, `comments_replies`, `comments_filter`, `comments_order`, `page_plugin_pos`, `page_plugin_fans`, `page_plugin_cover`, `page_plugin_header`, `page_plugin_width`, `image_onclick_action`, `event_order`, `upcoming_events`) VALUES (1,'KCL Genetics','page','timeline','statuses,photos,videos,links,events','https://www.facebook.com/polledherefords/','posts','120237481406257',10,'','',1,'209804229584368|3a2d59f876e0df3d42d829f8a1569636',1,1,'keep_old','blog_style',0,'vertical',5,200,150,1,1,1,900,'2000',1,1,1,1,1,0,0,0,0,0,1,1,0,0,5,'show',200,150,5,200,150,3,20,0,800,600,'fade',0,1,5,0,70,1,1,1,1,1,1,1,1,0,1,0,0,0,1,200,1,1,1,1,1,1,200,1,'toplevel','chronological','bottom',1,1,0,380,'lightbox',0,0);
/*!40000 ALTER TABLE `wpjj_wd_fb_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wd_fb_option`
--

DROP TABLE IF EXISTS `wpjj_wd_fb_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_wd_fb_option` (
  `id` bigint(20) NOT NULL,
  `autoupdate_interval` int(4) NOT NULL,
  `app_id` varchar(255) NOT NULL,
  `app_secret` varchar(255) NOT NULL,
  `access_token` varchar(255) NOT NULL,
  `date_timezone` varchar(64) NOT NULL,
  `post_date_format` varchar(64) NOT NULL,
  `event_date_format` varchar(64) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wd_fb_option`
--

LOCK TABLES `wpjj_wd_fb_option` WRITE;
/*!40000 ALTER TABLE `wpjj_wd_fb_option` DISABLE KEYS */;
INSERT INTO `wpjj_wd_fb_option` (`id`, `autoupdate_interval`, `app_id`, `app_secret`, `access_token`, `date_timezone`, `post_date_format`, `event_date_format`) VALUES (1,90,'','','','','ago','F j, Y, g:i a');
/*!40000 ALTER TABLE `wpjj_wd_fb_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wd_fb_shortcode`
--

DROP TABLE IF EXISTS `wpjj_wd_fb_shortcode`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_wd_fb_shortcode` (
  `id` bigint(20) NOT NULL,
  `tagtext` mediumtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wd_fb_shortcode`
--

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

--
-- Table structure for table `wpjj_wd_fb_theme`
--

DROP TABLE IF EXISTS `wpjj_wd_fb_theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_wd_fb_theme` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `params` longtext,
  `default_theme` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wd_fb_theme`
--

LOCK TABLES `wpjj_wd_fb_theme` WRITE;
/*!40000 ALTER TABLE `wpjj_wd_fb_theme` DISABLE KEYS */;
INSERT INTO `wpjj_wd_fb_theme` (`id`, `name`, `params`, `default_theme`) VALUES (1,'Theme 1','{\"thumb_margin\":\"10\",\"thumb_padding\":\"2\",\"thumb_border_radius\":\"2px\",\"thumb_border_width\":\"1\",\"thumb_border_style\":\"none\",\"thumb_border_color\":\"000000\",\"thumb_bg_color\":\"FFFFFF\",\"thumbs_bg_color\":\"FFFFFF\",\"thumb_bg_transparent\":\"100\",\"thumb_box_shadow\":\"0px 0px 1px #000000\",\"thumb_transparent\":\"100\",\"thumb_align\":\"center\",\"thumb_hover_effect\":\"rotate\",\"thumb_hover_effect_value\":\"2deg\",\"thumb_transition\":\"1\",\"thumb_title_font_color\":\"797979\",\"thumb_title_font_style\":\"inherit\",\"thumb_title_pos\":\"bottom\",\"thumb_title_font_size\":\"14\",\"thumb_title_font_weight\":\"normal\",\"thumb_title_margin\":\"10\",\"thumb_title_shadow\":\"\",\"thumb_like_comm_pos\":\"bottom\",\"thumb_like_comm_font_size\":\"14\",\"thumb_like_comm_font_color\":\"FFFFFF\",\"thumb_like_comm_font_style\":\"inherit\",\"thumb_like_comm_font_weight\":\"normal\",\"thumb_like_comm_shadow\":\"0px 0px 1px #000000\",\"masonry_thumb_padding\":\"4\",\"masonry_thumb_border_radius\":\"2px\",\"masonry_thumb_border_width\":\"1\",\"masonry_thumb_border_style\":\"solid\",\"masonry_thumb_border_color\":\"FFFFFF\",\"masonry_thumbs_bg_color\":\"FFFFFF\",\"masonry_thumb_bg_transparent\":\"100\",\"masonry_thumb_transparent\":\"100\",\"masonry_thumb_align\":\"center\",\"masonry_thumb_hover_effect\":\"scale\",\"masonry_thumb_hover_effect_value\":\"1.1\",\"masonry_thumb_transition\":\"1\",\"masonry_description_font_size\":\"14\",\"masonry_description_color\":\"A3A3A3\",\"masonry_description_font_style\":\"inherit\",\"masonry_like_comm_pos\":\"bottom\",\"masonry_like_comm_font_size\":\"14\",\"masonry_like_comm_font_color\":\"FFFFFF\",\"masonry_like_comm_font_style\":\"inherit\",\"masonry_like_comm_font_weight\":\"normal\",\"masonry_like_comm_shadow\":\"0px 0px 1px #000000\",\"blog_style_align\":\"left\",\"blog_style_bg_color\":\"FFFFFF\",\"blog_style_fd_name_bg_color\":\"000000\",\"blog_style_fd_name_align\":\"center\",\"blog_style_fd_name_padding\":\"10\",\"blog_style_fd_name_color\":\"FFFFFF\",\"blog_style_fd_name_size\":\"15\",\"blog_style_fd_name_font_weight\":\"normal\",\"blog_style_fd_icon\":\"\",\"blog_style_fd_icon_color\":\"\",\"blog_style_fd_icon_size\":\"\",\"blog_style_transparent\":\"100\",\"blog_style_obj_img_align\":\"center\",\"blog_style_margin\":\"10\",\"blog_style_box_shadow\":\"\",\"blog_style_border_width\":\"1\",\"blog_style_border_style\":\"solid\",\"blog_style_border_color\":\"C9C9C9\",\"blog_style_border_type\":\"top\",\"blog_style_border_radius\":\"\",\"blog_style_obj_icons_color\":\"gray\",\"blog_style_obj_date_pos\":\"after\",\"blog_style_obj_font_family\":\"inherit\",\"blog_style_obj_info_bg_color\":\"FFFFFF\",\"blog_style_page_name_color\":\"000000\",\"blog_style_obj_page_name_size\":\"13\",\"blog_style_obj_page_name_font_weight\":\"bold\",\"blog_style_obj_story_color\":\"000000\",\"blog_style_obj_story_size\":\"14\",\"blog_style_obj_story_font_weight\":\"normal\",\"blog_style_obj_place_color\":\"000000\",\"blog_style_obj_place_size\":\"13\",\"blog_style_obj_place_font_weight\":\"normal\",\"blog_style_obj_name_color\":\"000000\",\"blog_style_obj_name_size\":\"13\",\"blog_style_obj_name_font_weight\":\"bold\",\"blog_style_obj_message_color\":\"000000\",\"blog_style_obj_message_size\":\"14\",\"blog_style_obj_message_font_weight\":\"normal\",\"blog_style_obj_hashtags_color\":\"000000\",\"blog_style_obj_hashtags_size\":\"12\",\"blog_style_obj_hashtags_font_weight\":\"normal\",\"blog_style_obj_likes_social_bg_color\":\"EAEAEA\",\"blog_style_obj_likes_social_color\":\"656565\",\"blog_style_obj_likes_social_size\":\"14\",\"blog_style_obj_likes_social_font_weight\":\"normal\",\"blog_style_obj_comments_bg_color\":\"FFFFFF\",\"blog_style_obj_comments_color\":\"000000\",\"blog_style_obj_comments_font_family\":\"inherit\",\"blog_style_obj_comments_font_size\":\"14\",\"blog_style_obj_users_font_color\":\"000000\",\"blog_style_obj_comments_social_font_weight\":\"normal\",\"blog_style_obj_comment_border_width\":\"1\",\"blog_style_obj_comment_border_style\":\"solid\",\"blog_style_obj_comment_border_color\":\"C9C9C9\",\"blog_style_obj_comment_border_type\":\"top\",\"blog_style_evt_str_color\":\"000000\",\"blog_style_evt_str_size\":\"14\",\"blog_style_evt_str_font_weight\":\"normal\",\"blog_style_evt_ctzpcn_color\":\"000000\",\"blog_style_evt_ctzpcn_size\":\"14\",\"blog_style_evt_ctzpcn_font_weight\":\"normal\",\"blog_style_evt_map_color\":\"000000\",\"blog_style_evt_map_size\":\"14\",\"blog_style_evt_map_font_weight\":\"normal\",\"blog_style_evt_date_color\":\"000000\",\"blog_style_evt_date_size\":\"14\",\"blog_style_evt_date_font_weight\":\"normal\",\"blog_style_evt_info_font_family\":\"inherit\",\"album_compact_back_font_color\":\"000000\",\"album_compact_back_font_style\":\"inherit\",\"album_compact_back_font_size\":\"16\",\"album_compact_back_font_weight\":\"bold\",\"album_compact_back_padding\":\"0\",\"album_compact_title_font_color\":\"797979\",\"album_compact_title_font_style\":\"inherit\",\"album_compact_thumb_title_pos\":\"bottom\",\"album_compact_title_font_size\":\"13\",\"album_compact_title_font_weight\":\"normal\",\"album_compact_title_margin\":\"2px\",\"album_compact_title_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_margin\":\"4\",\"album_compact_thumb_padding\":\"0\",\"album_compact_thumb_border_radius\":\"0\",\"album_compact_thumb_border_width\":\"0\",\"album_compact_thumb_border_style\":\"none\",\"album_compact_thumb_border_color\":\"CCCCCC\",\"album_compact_thumb_bg_color\":\"FFFFFF\",\"album_compact_thumbs_bg_color\":\"FFFFFF\",\"album_compact_thumb_bg_transparent\":\"0\",\"album_compact_thumb_box_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_transparent\":\"100\",\"album_compact_thumb_align\":\"center\",\"album_compact_thumb_hover_effect\":\"scale\",\"album_compact_thumb_hover_effect_value\":\"1.1\",\"album_compact_thumb_transition\":\"0\",\"lightbox_overlay_bg_color\":\"000000\",\"lightbox_overlay_bg_transparent\":\"70\",\"lightbox_bg_color\":\"000000\",\"lightbox_ctrl_btn_pos\":\"bottom\",\"lightbox_ctrl_btn_align\":\"center\",\"lightbox_ctrl_btn_height\":\"20\",\"lightbox_ctrl_btn_margin_top\":\"10\",\"lightbox_ctrl_btn_margin_left\":\"7\",\"lightbox_ctrl_btn_transparent\":\"100\",\"lightbox_ctrl_btn_color\":\"\",\"lightbox_toggle_btn_height\":\"14\",\"lightbox_toggle_btn_width\":\"100\",\"lightbox_ctrl_cont_bg_color\":\"000000\",\"lightbox_ctrl_cont_transparent\":\"65\",\"lightbox_ctrl_cont_border_radius\":\"4\",\"lightbox_close_btn_transparent\":\"100\",\"lightbox_close_btn_bg_color\":\"000000\",\"lightbox_close_btn_border_width\":\"2\",\"lightbox_close_btn_border_radius\":\"16px\",\"lightbox_close_btn_border_style\":\"none\",\"lightbox_close_btn_border_color\":\"FFFFFF\",\"lightbox_close_btn_box_shadow\":\"0\",\"lightbox_close_btn_color\":\"\",\"lightbox_close_btn_size\":\"10\",\"lightbox_close_btn_width\":\"20\",\"lightbox_close_btn_height\":\"20\",\"lightbox_close_btn_top\":\"-10\",\"lightbox_close_btn_right\":\"-10\",\"lightbox_close_btn_full_color\":\"\",\"lightbox_rl_btn_bg_color\":\"000000\",\"lightbox_rl_btn_transparent\":\"80\",\"lightbox_rl_btn_border_radius\":\"20px\",\"lightbox_rl_btn_border_width\":\"0\",\"lightbox_rl_btn_border_style\":\"none\",\"lightbox_rl_btn_border_color\":\"FFFFFF\",\"lightbox_rl_btn_box_shadow\":\"\",\"lightbox_rl_btn_color\":\"\",\"lightbox_rl_btn_height\":\"40\",\"lightbox_rl_btn_width\":\"40\",\"lightbox_rl_btn_size\":\"20\",\"lightbox_close_rl_btn_hover_color\":\"\",\"lightbox_obj_pos\":\"left\",\"lightbox_obj_width\":\"350\",\"lightbox_obj_icons_color\":\"gray\",\"lightbox_obj_date_pos\":\"after\",\"lightbox_obj_font_family\":\"inherit\",\"lightbox_obj_info_bg_color\":\"E2E2E2\",\"lightbox_page_name_color\":\"4B4B4B\",\"lightbox_obj_page_name_size\":\"14\",\"lightbox_obj_page_name_font_weight\":\"bold\",\"lightbox_obj_story_color\":\"4B4B4B\",\"lightbox_obj_story_size\":\"14\",\"lightbox_obj_story_font_weight\":\"normal\",\"lightbox_obj_place_color\":\"000000\",\"lightbox_obj_place_size\":\"13\",\"lightbox_obj_place_font_weight\":\"normal\",\"lightbox_obj_name_color\":\"4B4B4B\",\"lightbox_obj_name_size\":\"14\",\"lightbox_obj_name_font_weight\":\"bold\",\"lightbox_obj_message_color\":\"000000\",\"lightbox_obj_message_size\":\"14\",\"lightbox_obj_message_font_weight\":\"normal\",\"lightbox_obj_hashtags_color\":\"000000\",\"lightbox_obj_hashtags_size\":\"12\",\"lightbox_obj_hashtags_font_weight\":\"normal\",\"lightbox_obj_likes_social_bg_color\":\"878787\",\"lightbox_obj_likes_social_color\":\"FFFFFF\",\"lightbox_obj_likes_social_size\":\"14\",\"lightbox_obj_likes_social_font_weight\":\"normal\",\"lightbox_obj_comments_bg_color\":\"EAEAEA\",\"lightbox_obj_comments_color\":\"4A4A4A\",\"lightbox_obj_comments_font_family\":\"inherit\",\"lightbox_obj_comments_font_size\":\"14\",\"lightbox_obj_users_font_color\":\"4B4B4B\",\"lightbox_obj_comments_social_font_weight\":\"normal\",\"lightbox_obj_comment_border_width\":\"1\",\"lightbox_obj_comment_border_style\":\"solid\",\"lightbox_obj_comment_border_color\":\"C9C9C9\",\"lightbox_obj_comment_border_type\":\"top\",\"lightbox_filmstrip_pos\":\"top\",\"lightbox_filmstrip_rl_bg_color\":\"3B3B3B\",\"lightbox_filmstrip_rl_btn_size\":\"20\",\"lightbox_filmstrip_rl_btn_color\":\"\",\"lightbox_filmstrip_thumb_margin\":\"0 1px\",\"lightbox_filmstrip_thumb_border_width\":\"1\",\"lightbox_filmstrip_thumb_border_style\":\"solid\",\"lightbox_filmstrip_thumb_border_color\":\"000000\",\"lightbox_filmstrip_thumb_border_radius\":\"0\",\"lightbox_filmstrip_thumb_deactive_transparent\":\"80\",\"lightbox_filmstrip_thumb_active_border_width\":\"0\",\"lightbox_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"lightbox_rl_btn_style\":\"\",\"lightbox_evt_str_color\":\"000000\",\"lightbox_evt_str_size\":\"14\",\"lightbox_evt_str_font_weight\":\"normal\",\"lightbox_evt_ctzpcn_color\":\"000000\",\"lightbox_evt_ctzpcn_size\":\"14\",\"lightbox_evt_ctzpcn_font_weight\":\"normal\",\"lightbox_evt_map_color\":\"000000\",\"lightbox_evt_map_size\":\"14\",\"lightbox_evt_map_font_weight\":\"normal\",\"lightbox_evt_date_color\":\"000000\",\"lightbox_evt_date_size\":\"14\",\"lightbox_evt_date_font_weight\":\"normal\",\"lightbox_evt_info_font_family\":\"inherit\",\"page_nav_position\":\"bottom\",\"page_nav_align\":\"center\",\"page_nav_number\":\"0\",\"page_nav_font_size\":\"12\",\"page_nav_font_style\":\"inherit\",\"page_nav_font_color\":\"666666\",\"page_nav_font_weight\":\"bold\",\"page_nav_border_width\":\"1\",\"page_nav_border_style\":\"solid\",\"page_nav_border_color\":\"E3E3E3\",\"page_nav_border_radius\":\"0\",\"page_nav_margin\":\"0\",\"page_nav_padding\":\"3px 6px\",\"page_nav_button_bg_color\":\"FFFFFF\",\"page_nav_button_bg_transparent\":\"100\",\"page_nav_box_shadow\":\"0\",\"page_nav_button_transition\":\"1\",\"page_nav_button_text\":\"0\",\"lightbox_obj_icons_color_likes_comments_count\":\"white\"}',1);
/*!40000 ALTER TABLE `wpjj_wd_fb_theme` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wfBlockedIPLog`
--

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

LOCK TABLES `wpjj_wfBlockedIPLog` WRITE;
/*!40000 ALTER TABLE `wpjj_wfBlockedIPLog` DISABLE KEYS */;
INSERT INTO `wpjj_wfBlockedIPLog` (`IP`, `countryCode`, `blockCount`, `unixday`, `blockType`) VALUES (_binary '\0\0\0\0\0\0\0\0\0\0O X','FR',1,19052,'waf'),(_binary '\0\0\0\0\0\0\0\0\0\0\r','US',4,19060,'waf'),(_binary '\0\0\0\0\0\0\0\0\0\0\\\>c','DE',8,19068,'waf'),(_binary '\0\0\0\0\0\0\0\0\0\0:?','HK',1,19071,'waf');
/*!40000 ALTER TABLE `wpjj_wfBlockedIPLog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wfBlocks7`
--

DROP TABLE IF EXISTS `wpjj_wfBlocks7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_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 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wfBlocks7`
--

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

--
-- Table structure for table `wpjj_wfConfig`
--

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

LOCK TABLES `wpjj_wfConfig` WRITE;
/*!40000 ALTER TABLE `wpjj_wfConfig` DISABLE KEYS */;
INSERT INTO `wpjj_wfConfig` (`name`, `val`, `autoload`) VALUES ('alertOn_critical',_binary '1','yes'),('alertOn_update',_binary '0','yes'),('alertOn_warnings',_binary '1','yes'),('alertOn_throttle',_binary '0','yes'),('alertOn_block',_binary '1','yes'),('alertOn_loginLockout',_binary '1','yes'),('alertOn_breachLogin',_binary '1','yes'),('alertOn_lostPasswdForm',_binary '1','yes'),('alertOn_adminLogin',_binary '1','yes'),('alertOn_firstAdminLoginOnly',_binary '0','yes'),('alertOn_nonAdminLogin',_binary '0','yes'),('alertOn_firstNonAdminLoginOnly',_binary '0','yes'),('alertOn_wordfenceDeactivated',_binary '1','yes'),('liveTrafficEnabled',_binary '1','yes'),('advancedCommentScanning',_binary '1','yes'),('checkSpamIP',_binary '1','yes'),('spamvertizeCheck',_binary '1','yes'),('liveTraf_ignorePublishers',_binary '1','yes'),('liveTraf_displayExpandedRecords',_binary '0','no'),('scheduledScansEnabled',_binary '1','yes'),('lowResourceScansEnabled',_binary '0','yes'),('scansEnabled_checkGSB',_binary '1','yes'),('scansEnabled_checkHowGetIPs',_binary '1','yes'),('scansEnabled_core',_binary '1','yes'),('scansEnabled_themes',_binary '0','yes'),('scansEnabled_plugins',_binary '0','yes'),('scansEnabled_coreUnknown',_binary '1','yes'),('scansEnabled_malware',_binary '1','yes'),('scansEnabled_fileContents',_binary '1','yes'),('scansEnabled_fileContentsGSB',_binary '1','yes'),('scansEnabled_checkReadableConfig',_binary '1','yes'),('scansEnabled_suspectedFiles',_binary '1','yes'),('scansEnabled_posts',_binary '1','yes'),('scansEnabled_comments',_binary '1','yes'),('scansEnabled_suspiciousOptions',_binary '1','yes'),('scansEnabled_passwds',_binary '1','yes'),('scansEnabled_diskSpace',_binary '1','yes'),('scansEnabled_options',_binary '1','yes'),('scansEnabled_wpscan_fullPathDisclosure',_binary '1','yes'),('scansEnabled_wpscan_directoryListingEnabled',_binary '1','yes'),('scansEnabled_dns',_binary '1','yes'),('scansEnabled_scanImages',_binary '0','yes'),('scansEnabled_highSense',_binary '0','yes'),('scansEnabled_oldVersions',_binary '1','yes'),('scansEnabled_suspiciousAdminUsers',_binary '1','yes'),('liveActivityPauseEnabled',_binary '1','yes'),('firewallEnabled',_binary '1','yes'),('blockFakeBots',_binary '0','yes'),('autoBlockScanners',_binary '1','yes'),('loginSecurityEnabled',_binary '1','yes'),('loginSec_strongPasswds_enabled',_binary '1','yes'),('loginSec_breachPasswds_enabled',_binary '1','yes'),('loginSec_lockInvalidUsers',_binary '1','yes'),('loginSec_maskLoginErrors',_binary '1','yes'),('loginSec_blockAdminReg',_binary '1','yes'),('loginSec_disableAuthorScan',_binary '1','yes'),('loginSec_disableOEmbedAuthor',_binary '0','yes'),('loginSec_requireAdminTwoFactor',_binary '0','yes'),('notification_updatesNeeded',_binary '1','yes'),('notification_securityAlerts',_binary '1','yes'),('notification_promotions',_binary '1','yes'),('notification_blogHighlights',_binary '1','yes'),('notification_productUpdates',_binary '1','yes'),('notification_scanStatus',_binary '1','yes'),('other_hideWPVersion',_binary '0','yes'),('other_noAnonMemberComments',_binary '1','yes'),('other_blockBadPOST',_binary '0','yes'),('other_scanComments',_binary '1','yes'),('other_pwStrengthOnUpdate',_binary '1','yes'),('other_WFNet',_binary '1','yes'),('other_scanOutside',_binary '0','yes'),('other_bypassLitespeedNoabort',_binary '0','yes'),('deleteTablesOnDeact',_binary '0','yes'),('autoUpdate',_binary '1','yes'),('disableCookies',_binary '0','yes'),('startScansRemotely',_binary '0','yes'),('disableConfigCaching',_binary '0','yes'),('addCacheComment',_binary '0','yes'),('disableCodeExecutionUploads',_binary '0','yes'),('allowHTTPSCaching',_binary '0','yes'),('debugOn',_binary '0','yes'),('email_summary_enabled',_binary '1','yes'),('email_summary_dashboard_widget_enabled',_binary '1','yes'),('ssl_verify',_binary '1','yes'),('ajaxWatcherDisabled_front',_binary '0','yes'),('ajaxWatcherDisabled_admin',_binary '0','yes'),('wafAlertOnAttacks',_binary '1','yes'),('disableWAFIPBlocking',_binary '0','yes'),('showAdminBarMenu',_binary '1','yes'),('displayTopLevelOptions',_binary '1','yes'),('displayTopLevelBlocking',_binary '0','yes'),('displayTopLevelLiveTraffic',_binary '0','yes'),('displayAutomaticBlocks',_binary '1','yes'),('scan_include_extra','','yes'),('alertEmails',_binary 'Leedoggydude@gmail.com','yes'),('liveTraf_ignoreUsers','','yes'),('liveTraf_ignoreIPs','','yes'),('liveTraf_ignoreUA','','yes'),('maxMem',_binary '256','yes'),('scan_exclude',_binary 'wp-content/plugins/contact-form-7/modules/recaptcha.php\nwp-content/plugins/easy-facebook-likebox/admin/admin.php\nwp-content/plugins/easy-facebook-likebox/admin/easy-facebook-likebox-admin.php\nwp-content/plugins/easy-facebook-likebox/assets/fonts/fontawesome-webfont.svg','yes'),('scan_maxIssues',_binary '1000','yes'),('scan_maxDuration','','yes'),('whitelisted','','yes'),('bannedURLs','','yes'),('maxExecutionTime',_binary '0','yes'),('howGetIPs','','yes'),('actUpdateInterval',_binary '2','yes'),('alert_maxHourly',_binary '0','yes'),('loginSec_userBlacklist','','yes'),('liveTraf_maxRows',_binary '2000','yes'),('neverBlockBG',_binary 'neverBlockVerified','yes'),('loginSec_countFailMins',_binary '720','yes'),('loginSec_lockoutMins',_binary '1440','yes'),('loginSec_strongPasswds',_binary 'pubs','yes'),('loginSec_breachPasswds',_binary 'admins','yes'),('loginSec_maxFailures',_binary '3','yes'),('loginSec_maxForgotPasswd',_binary '2','yes'),('maxGlobalRequests',_binary 'DISABLED','yes'),('maxGlobalRequests_action',_binary 'throttle','yes'),('maxRequestsCrawlers',_binary 'DISABLED','yes'),('maxRequestsCrawlers_action',_binary 'throttle','yes'),('maxRequestsHumans',_binary 'DISABLED','yes'),('maxRequestsHumans_action',_binary 'throttle','yes'),('max404Crawlers',_binary 'DISABLED','yes'),('max404Crawlers_action',_binary 'throttle','yes'),('max404Humans',_binary 'DISABLED','yes'),('max404Humans_action',_binary 'throttle','yes'),('maxScanHits',_binary 'DISABLED','yes'),('maxScanHits_action',_binary 'throttle','yes'),('blockedTime',_binary '300','yes'),('email_summary_interval',_binary 'weekly','yes'),('email_summary_excluded_directories',_binary 'wp-content/cache,wp-content/wflogs','yes'),('allowed404s',_binary '/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml','yes'),('wafAlertWhitelist','','yes'),('wafAlertInterval',_binary '600','yes'),('wafAlertThreshold',_binary '100','yes'),('howGetIPs_trusted_proxies','','yes'),('scanType',_binary 'standard','yes'),('manualScanType',_binary 'onceDaily','yes'),('schedStartHour',_binary '17','yes'),('schedMode',_binary 'auto','yes'),('cbl_loggedInBlocked','','yes'),('cbl_action',_binary 'block','yes'),('cbl_redirURL','','yes'),('cbl_bypassRedirURL','','yes'),('cbl_bypassRedirDest','','yes'),('cbl_bypassViewURL','','yes'),('loginSec_enableSeparateTwoFactor','','yes'),('apiKey',_binary 'b24c7834772e96315c8184f10690f771f128335bd1b0b9b3e92f473af3878ffc47d858bc474093067e35fcb69ca0967961b7bd0a4766d81e694bcef1c29e6363558fd40fd305c601067e7a84dfdafa1a','yes'),('keyType',_binary 'free','yes'),('isPaid','','yes'),('betaThreatDefenseFeed',_binary '0','yes'),('timeoffset_wf_updated',_binary '1648203372','yes'),('cacheType',_binary 'disabled','yes'),('detectProxyRecommendation',_binary 'REMOTE_ADDR','no'),('dismissAutoPrependNotice',_binary '0','yes'),('onboardingAttempt1',_binary 'license','yes'),('onboardingAttempt2','','no'),('onboardingAttempt3','','no'),('onboardingAttempt3Initial',_binary '0','yes'),('needsNewTour_dashboard',_binary '1','yes'),('needsNewTour_firewall',_binary '0','yes'),('needsNewTour_scan',_binary '1','yes'),('needsNewTour_blocking',_binary '0','yes'),('needsNewTour_livetraffic',_binary '1','yes'),('needsUpgradeTour_dashboard',_binary '0','yes'),('needsUpgradeTour_firewall',_binary '0','yes'),('needsUpgradeTour_scan',_binary '0','yes'),('needsUpgradeTour_blocking',_binary '0','yes'),('needsUpgradeTour_livetraffic',_binary '0','yes'),('supportContent',_binary '{\"top\":[{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":0},{\"title\":\"Optimizing The Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"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\":\"Wordfence and LiteSpeed\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/litespeed\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5},{\"title\":\"Firewall Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":6},{\"title\":\"Scan Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":7},{\"title\":\"I am locked out of my site\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/#i-am-locked-out-of-my-site\",\"order\":8},{\"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\":9}],\"all\":[{\"title\":\"Wordfence Free\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-free\\/\",\"excerpt\":\"Wordfence Free is an all-in-one security solution for WordPress websites that includes an endpoint firewall, security scanner, login security, alerts, centralized management, and more.\",\"order\":0},{\"title\":\"Wordfence Premium\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-premium\\/\",\"excerpt\":\"Wordfence Premium comes with real-time firewall protection, real-time scan signatures, an IP address blocklist, country blocking, and Premium support.\",\"order\":1},{\"title\":\"Wordfence Care\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-care\\/\",\"excerpt\":\"Initial Setup After you have purchased Wordfence Care, you will receive a welcome email from our team with instructions on what to do next. You will use our encrypted form to send us credentials to access your site so that our Customer Service Engineers can set up and configure the Wordfence plugin and connect your&hellip;\",\"order\":2},{\"title\":\"Wordfence Response\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-response\\/\",\"excerpt\":\"Initial Setup After you’ve purchased Wordfence Response, you’ll receive a welcome email from our team with instructions on what to do next. If you’ve purchased Wordfence Response because you need immediate Security Incident Response services, you can login to wordfence.com and visit the Licenses page, then click Get Help next to your Response License and&hellip;\",\"order\":3},{\"title\":\"Incident Response Services\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/incident-response-services\\/\",\"excerpt\":\"Let one of our Security Analysts help you clean your infected site or inspect it for vulnerabilities.\",\"order\":4},{\"title\":\"License Key\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/api-key\\/\",\"excerpt\":\"All Wordfence installations need a license key, also known as an API-key. The key can be a free key or a Premium key. \",\"order\":5},{\"title\":\"Account and Billing History\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/account\\/\",\"excerpt\":\"How to navigate and use your Wordfence account.\",\"order\":6},{\"title\":\"Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/\",\"excerpt\":\"Wordfence Central provides a powerful and efficient way to manage the security of many WordPress sites via a single interface.\",\"children\":[{\"title\":\"Connecting your sites to Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/connect\\/\",\"order\":0},{\"title\":\"Setting up two-factor authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/2fa\\/\",\"order\":1},{\"title\":\"Using the Dashboard page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/central\\/\",\"order\":2},{\"title\":\"Using the Configuration page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/configuration\\/\",\"order\":3},{\"title\":\"Using Wordfence plugin options Templates\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/templates\\/\",\"order\":4},{\"title\":\"Using the Settings page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/settings\\/\",\"order\":5},{\"title\":\"Using Wordfence Central Teams\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/teams\\/\",\"order\":6},{\"title\":\"Viewing scan Findings\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/findings\\/\",\"order\":7}],\"order\":7},{\"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\":8},{\"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\":\"MySQLi storage engine\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/mysqli-storage-engine\\/\",\"order\":4},{\"title\":\"Brute Force Protection\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/brute-force\\/\",\"order\":5},{\"title\":\"Rate Limiting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/\",\"order\":6},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/troubleshooting\\/\",\"order\":7}],\"order\":9},{\"title\":\"Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/\",\"excerpt\":\"Aside from the firewall rules that protect against various attacks, Wordfence also has custom features for additional blocking. \",\"children\":[{\"title\":\"Country Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/country-blocking\\/\",\"order\":0},{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":1}],\"order\":10},{\"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, and shells that hackers have installed. It also scans for 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\":11},{\"title\":\"Tools\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/\",\"excerpt\":\"Wordfence Tools include Live Traffic analysis, WHOIS Lookup, Import\\/Export Options, and Diagnostics.\",\"children\":[{\"title\":\"Live Traffic\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/live-traffic\\/\",\"order\":0},{\"title\":\"WHOIS Lookup\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/whois-lookup\\/\",\"order\":1},{\"title\":\"Import\\/Export\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/import-export\\/\",\"order\":2},{\"title\":\"Diagnostics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/diagnostics\\/\",\"order\":3},{\"title\":\"Legacy Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/legacy-two-factor-authentication\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5}],\"order\":12},{\"title\":\"Login Security\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security\\/\",\"excerpt\":\"The Login Security page currently contains settings for two-factor authentication (2FA) and reCAPTCHA. In a future Wordfence version, existing login-related features will also move to the same page.\",\"order\":13},{\"title\":\"Advanced\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/\",\"excerpt\":\"If you want to know more about the technical details of Wordfence, you will find the answers in this section.\",\"children\":[{\"title\":\"System requirements\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/\",\"order\":0},{\"title\":\"Changelog\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/changelog\\/\",\"order\":1},{\"title\":\"Remove or Reset\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/remove-or-reset\\/\",\"order\":2},{\"title\":\"Technical Details\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/technical-details\\/\",\"order\":3},{\"title\":\"Constants\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/constants\\/\",\"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},{\"title\":\"Plugin \\/ Theme Conflicts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/plugin-theme-conflicts\\/\",\"order\":7}],\"order\":14},{\"title\":\"Wordfence and GDPR - General Data Protection Regulation\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/\",\"excerpt\":\"Defiant, the company behind Wordfence, has updated its terms of use, privacy policies and software, as well as made available standard contractual clauses to meet GDPR compliance. Customers must review and agree to updated terms in order to continue using our products and services.\",\"children\":[{\"title\":\"Sub-Processors List\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/sub-processors-list\\/\",\"order\":0}],\"order\":15},{\"title\":\"Login Security Plugin\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security-plugin\\/\",\"excerpt\":\"The Wordfence Login Security plugin contains a subset of the features found in the full Wordfence plugin: Two-factor Authentication, XML-RPC Protection and Login Page CAPTCHA. It is ideal for sites that need login security functionality but either can’t or don’t want to run the full Wordfence plugin.\",\"order\":16}]}','yes'),('supportHash',_binary 'fe842760326ad5a20e40c778b5070567be2aec1df1a61f07a48a031c050f90c6','yes'),('encKey',_binary '3b85c9cd77a8654d','yes'),('cbl_restOfSiteBlocked',_binary '1','yes'),('timeoffset_wf',_binary '0','yes'),('geoIPVersionHash',_binary 'a1214acac1b3109ae51eae6349fb045cef4b53346ee65840edbf84fa0fad9677','yes'),('lastBlockAggregation',_binary '1648203372','yes'),('allowed404s6116Migration',_binary '1','yes'),('migration636_email_summary_excluded_directories',_binary '1','no'),('fileContentsGSB6315Migration',_binary '1','yes'),('config701Migration',_binary '1','yes'),('blocks702Migration',_binary '1','yes'),('detectProxyNextCheck',_binary '1648244612','no'),('detectProxyNonce','','no'),('serverIP',_binary '1644528502;173.236.79.234','yes'),('allScansScheduled',_binary 'a:2:{i:0;a:2:{s:9:\"timestamp\";i:1648414800;s:4:\"args\";a:1:{i:0;i:1648414800;}}i:1;a:2:{s:9:\"timestamp\";i:1648674000;s:4:\"args\";a:1:{i:0;i:1648674000;}}}','yes'),('cbl_cookieVal',_binary '5ab45ffcef2c1','yes'),('wp_home_url',_binary 'http://kclgenetics.com','yes'),('wp_site_url',_binary 'http://kclgenetics.com','yes'),('lastDashboardCheck',_binary '1648203372','yes'),('dashboardData',_binary 'a:4:{s:9:\"generated\";i:1648200331;s:3:\"tdf\";a:3:{s:9:\"community\";i:4973;s:7:\"premium\";i:5085;s:9:\"blacklist\";i:28089;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1648112400;s:1:\"c\";i:10298216;}i:1;a:2:{s:1:\"t\";i:1648116000;s:1:\"c\";i:10533007;}i:2;a:2:{s:1:\"t\";i:1648119600;s:1:\"c\";i:10045379;}i:3;a:2:{s:1:\"t\";i:1648123200;s:1:\"c\";i:10175988;}i:4;a:2:{s:1:\"t\";i:1648126800;s:1:\"c\";i:10075828;}i:5;a:2:{s:1:\"t\";i:1648130400;s:1:\"c\";i:10494045;}i:6;a:2:{s:1:\"t\";i:1648134000;s:1:\"c\";i:10366905;}i:7;a:2:{s:1:\"t\";i:1648137600;s:1:\"c\";i:10368006;}i:8;a:2:{s:1:\"t\";i:1648141200;s:1:\"c\";i:10288595;}i:9;a:2:{s:1:\"t\";i:1648144800;s:1:\"c\";i:10687571;}i:10;a:2:{s:1:\"t\";i:1648148400;s:1:\"c\";i:10215208;}i:11;a:2:{s:1:\"t\";i:1648152000;s:1:\"c\";i:9919722;}i:12;a:2:{s:1:\"t\";i:1648155600;s:1:\"c\";i:10049042;}i:13;a:2:{s:1:\"t\";i:1648159200;s:1:\"c\";i:10039070;}i:14;a:2:{s:1:\"t\";i:1648162800;s:1:\"c\";i:9774608;}i:15;a:2:{s:1:\"t\";i:1648166400;s:1:\"c\";i:9104151;}i:16;a:2:{s:1:\"t\";i:1648170000;s:1:\"c\";i:9063579;}i:17;a:2:{s:1:\"t\";i:1648173600;s:1:\"c\";i:9045022;}i:18;a:2:{s:1:\"t\";i:1648177200;s:1:\"c\";i:9708928;}i:19;a:2:{s:1:\"t\";i:1648180800;s:1:\"c\";i:9570125;}i:20;a:2:{s:1:\"t\";i:1648184400;s:1:\"c\";i:10037494;}i:21;a:2:{s:1:\"t\";i:1648188000;s:1:\"c\";i:10053136;}i:22;a:2:{s:1:\"t\";i:1648191600;s:1:\"c\";i:10448535;}i:23;a:2:{s:1:\"t\";i:1648195200;s:1:\"c\";i:10068444;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1647561600;s:1:\"c\";i:368468719;}i:1;a:2:{s:1:\"t\";i:1647648000;s:1:\"c\";i:362576914;}i:2;a:2:{s:1:\"t\";i:1647734400;s:1:\"c\";i:400491849;}i:3;a:2:{s:1:\"t\";i:1647820800;s:1:\"c\";i:396369433;}i:4;a:2:{s:1:\"t\";i:1647907200;s:1:\"c\";i:377125347;}i:5;a:2:{s:1:\"t\";i:1647993600;s:1:\"c\";i:271482007;}i:6;a:2:{s:1:\"t\";i:1648080000;s:1:\"c\";i:241991931;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1645574400;s:1:\"c\";i:369038772;}i:1;a:2:{s:1:\"t\";i:1645660800;s:1:\"c\";i:356800042;}i:2;a:2:{s:1:\"t\";i:1645747200;s:1:\"c\";i:342140181;}i:3;a:2:{s:1:\"t\";i:1645833600;s:1:\"c\";i:333245598;}i:4;a:2:{s:1:\"t\";i:1645920000;s:1:\"c\";i:338590672;}i:5;a:2:{s:1:\"t\";i:1646006400;s:1:\"c\";i:349157424;}i:6;a:2:{s:1:\"t\";i:1646092800;s:1:\"c\";i:353668561;}i:7;a:2:{s:1:\"t\";i:1646179200;s:1:\"c\";i:344035826;}i:8;a:2:{s:1:\"t\";i:1646265600;s:1:\"c\";i:346960543;}i:9;a:2:{s:1:\"t\";i:1646352000;s:1:\"c\";i:344785846;}i:10;a:2:{s:1:\"t\";i:1646438400;s:1:\"c\";i:314132824;}i:11;a:2:{s:1:\"t\";i:1646524800;s:1:\"c\";i:342909708;}i:12;a:2:{s:1:\"t\";i:1646611200;s:1:\"c\";i:376625114;}i:13;a:2:{s:1:\"t\";i:1646697600;s:1:\"c\";i:365044530;}i:14;a:2:{s:1:\"t\";i:1646784000;s:1:\"c\";i:364792021;}i:15;a:2:{s:1:\"t\";i:1646870400;s:1:\"c\";i:355134687;}i:16;a:2:{s:1:\"t\";i:1646956800;s:1:\"c\";i:337349026;}i:17;a:2:{s:1:\"t\";i:1647043200;s:1:\"c\";i:338405793;}i:18;a:2:{s:1:\"t\";i:1647129600;s:1:\"c\";i:358332010;}i:19;a:2:{s:1:\"t\";i:1647216000;s:1:\"c\";i:366178141;}i:20;a:2:{s:1:\"t\";i:1647302400;s:1:\"c\";i:362324893;}i:21;a:2:{s:1:\"t\";i:1647388800;s:1:\"c\";i:368316396;}i:22;a:2:{s:1:\"t\";i:1647475200;s:1:\"c\";i:368445573;}i:23;a:2:{s:1:\"t\";i:1647561600;s:1:\"c\";i:368468719;}i:24;a:2:{s:1:\"t\";i:1647648000;s:1:\"c\";i:362576914;}i:25;a:2:{s:1:\"t\";i:1647734400;s:1:\"c\";i:400491849;}i:26;a:2:{s:1:\"t\";i:1647820800;s:1:\"c\";i:396369433;}i:27;a:2:{s:1:\"t\";i:1647907200;s:1:\"c\";i:377125347;}i:28;a:2:{s:1:\"t\";i:1647993600;s:1:\"c\";i:271482007;}i:29;a:2:{s:1:\"t\";i:1648080000;s:1:\"c\";i:241991931;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:1356757910;}i:1;a:2:{s:2:\"cd\";s:2:\"SG\";s:2:\"ct\";i:259279665;}i:2;a:2:{s:2:\"cd\";s:2:\"IN\";s:2:\"ct\";i:215901540;}i:3;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:202387485;}i:4;a:2:{s:2:\"cd\";s:2:\"ZA\";s:2:\"ct\";i:201593142;}i:5;a:2:{s:2:\"cd\";s:2:\"DE\";s:2:\"ct\";i:186392978;}i:6;a:2:{s:2:\"cd\";s:2:\"RU\";s:2:\"ct\";i:169589055;}i:7;a:2:{s:2:\"cd\";s:2:\"CN\";s:2:\"ct\";i:166923555;}i:8;a:2:{s:2:\"cd\";s:2:\"BR\";s:2:\"ct\";i:151021608;}i:9;a:2:{s:2:\"cd\";s:2:\"TH\";s:2:\"ct\";i:138403552;}}}}','yes'),('noc1ScanSchedule',_binary 'a:2:{i:0;i:1648414800;i:1;i:1648674000;}','yes'),('vulnRegex',_binary '/(?: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'),('vulnerabilities_plugin',_binary 'a:26:{i:0;a:5:{s:4:\"slug\";s:13:\"slider-images\";s:9:\"toVersion\";s:5:\"1.5.0\";s:11:\"fromVersion\";s:5:\"1.4.9\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:1;a:4:{s:4:\"slug\";s:16:\"wd-facebook-feed\";s:11:\"fromVersion\";s:5:\"1.2.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:2;a:4:{s:4:\"slug\";s:7:\"akismet\";s:11:\"fromVersion\";s:5:\"4.2.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:3;a:4:{s:4:\"slug\";s:14:\"contact-form-7\";s:11:\"fromVersion\";s:5:\"5.5.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:4;a:4:{s:4:\"slug\";s:21:\"easy-facebook-likebox\";s:11:\"fromVersion\";s:5:\"6.3.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:5;a:4:{s:4:\"slug\";s:24:\"easy-twitter-feed-widget\";s:11:\"fromVersion\";s:3:\"0.9\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:6;a:4:{s:4:\"slug\";s:19:\"easy-weather-widget\";s:11:\"fromVersion\";s:5:\"3.2.5\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:7;a:4:{s:4:\"slug\";s:12:\"easy-wp-smtp\";s:11:\"fromVersion\";s:5:\"1.4.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:8;a:4:{s:4:\"slug\";s:9:\"elementor\";s:11:\"fromVersion\";s:5:\"3.6.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:9;a:4:{s:4:\"slug\";s:11:\"hello-dolly\";s:11:\"fromVersion\";s:5:\"1.7.2\";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:5:\"1.7.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:11;a:4:{s:4:\"slug\";s:11:\"issuu-panel\";s:11:\"fromVersion\";s:5:\"1.6.8\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:12;a:4:{s:4:\"slug\";s:7:\"jetpack\";s:11:\"fromVersion\";s:4:\"10.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:13;a:4:{s:4:\"slug\";s:15:\"responsive-menu\";s:11:\"fromVersion\";s:5:\"4.1.9\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:14;a:4:{s:4:\"slug\";s:32:\"ultimate-responsive-image-slider\";s:11:\"fromVersion\";s:5:\"3.5.5\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:15;a:4:{s:4:\"slug\";s:11:\"updraftplus\";s:11:\"fromVersion\";s:7:\"1.22.11\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:16;a:4:{s:4:\"slug\";s:14:\"widget-context\";s:11:\"fromVersion\";s:5:\"1.3.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:17;a:4:{s:4:\"slug\";s:24:\"facebook-pagelike-widget\";s:11:\"fromVersion\";s:3:\"6.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:18;a:4:{s:4:\"slug\";s:12:\"widget-logic\";s:11:\"fromVersion\";s:6:\"5.10.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:19;a:4:{s:4:\"slug\";s:14:\"widget-options\";s:11:\"fromVersion\";s:6:\"3.7.14\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:20;a:4:{s:4:\"slug\";s:9:\"wordfence\";s:11:\"fromVersion\";s:5:\"7.5.9\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:21;a:4:{s:4:\"slug\";s:31:\"wp-author-date-and-meta-remover\";s:11:\"fromVersion\";s:5:\"1.0.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:22;a:4:{s:4:\"slug\";s:9:\"wp-editor\";s:11:\"fromVersion\";s:5:\"1.2.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:23;a:4:{s:4:\"slug\";s:13:\"bizworx-tools\";s:11:\"fromVersion\";s:3:\"1.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:24;a:4:{s:4:\"slug\";s:13:\"elementor-pro\";s:11:\"fromVersion\";s:5:\"3.3.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:25;a:4:{s:4:\"slug\";s:17:\"our-team-enhanced\";s:11:\"fromVersion\";s:5:\"4.4.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','yes'),('totalScansRun',_binary '1932','yes'),('wfKillRequested',_binary '0','no'),('currentCronKey','','yes'),('wf_scanRunning','','yes'),('wf_scanLastStatusTime',_binary '0','yes'),('wfPeakMemory',_binary '115867648','no'),('wfScanStartVersion',_binary '5.9.2','yes'),('lowResourceScanWaitStep','','yes'),('wfStatusStartMsgs',_binary 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}','yes'),('wf_summaryItems',_binary '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:1648203376;}','yes'),('scanStageStatuses',_binary '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:5;s:8:\"finished\";i:5;s:8:\"expected\";i:5;}s:7:\"changes\";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: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-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}}','no'),('lastScanCompleted',_binary 'ok','yes'),('lastScanFailureType','','yes'),('scanTime',_binary '1648203377.0079','yes'),('wafStatusCallbackNonce','','yes'),('autoUpdateChoice',_binary '1','yes'),('disclosureStates',_binary 'a:1:{s:22:\"waf-options-bruteforce\";b:1;}','yes'),('adminNoticeQueue',_binary 'a:1:{s:36:\"08f2081e-0fdf-4b67-a438-ff2ffcebd7b2\";a:3:{s:8:\"severity\";s:8:\"critical\";s:11:\"messageHTML\";s:484:\"The last rules update for the Wordfence Web Application Firewall was unsuccessful. The last successful update check was July 22, 2021 10:02 am, so this site may be missing new rules added since then. You may wait for the next automatic attempt at August 5, 2021 10:09 am or try to <a href=\"http://kclgenetics.com/wp-admin/admin.php?page=WordfenceWAF&#038;subpage=waf_options#wf-option-wafRules\">Manually Update</a> by clicking the \"Manually Refresh Rules\" button below the Rules list.\";s:8:\"category\";s:16:\"waf-rules-failed\";}}','yes'),('totalLoginHits',_binary '11695','yes'),('originalScheduledScanStart',_binary '1648155600','yes'),('lastScheduledScanStart',_binary '1648161525','yes'),('wf_dnsCNAME','','yes'),('wf_dnsA',_binary 'kclgenetics.com points to 173.236.79.234','yes'),('wf_dnsMX',_binary 'kclgenetics.com','yes'),('wf_dnsLogged',_binary '1','yes'),('malwarePrefixes',_binary 'a:2:{s:4:\"hash\";s:32:\"\)ϕK\\hk\\\?DiPC\C\>\";s:8:\"prefixes\";s:233844:\"\0\08\0\\\0\F\0\'\\0\\0\|\0\0\0z\\0ؘ\0iw\0\\0\-\0\r]\0M\0\\0\Z\0P\\0\\\\0\06\0\r\0\\0%\0\0\R\0=\0iu\0@\0_\0\0V\\0̛\0\\0E\0\\r\0\\\0\ZO\0\ZS`\0\Z\B\0\\0S\0\2\0K\\0[\0\0\'\09\0/\0:\\0A\\0m\\\0!\@\0\"$\0\"A\0\"m\0\"ݓ\0#%\0#\\0%d>\0%\\0\'R\0\'P>\0(s\0(\0(ð\0)n\0)\\0*9n\0*W\0*ک\0,<\0,w#\0,\0,\U\0-\\0-\^\0.>\0.\\0/\\00\03\04J\04g\\05\05A\06|\07P|\07S\07\\\07\\\07\\\08:4\09`\09\	\09\0:\0;\0;6\0<\0<\\0<c\0=	\0>\\0@\0A\\0A\t\0C!\0EF\0E\|\0Fؗ\0H\0I>\0Iw,\0K-\0K9q\0L\0Mq\0M}\\0Nt\\0N]\0N\\0N\L\0OL\0P\0P\0Q:T\0Q\0R\0SlM\0S\\0UH\\0U\\\0VF\\0V\\\0W5\0Xf\0X\\0Xa\0X\0XX\0X\\0Y^\0Y\0Z6\0Z9\0Z\\0[B>\0[M*\0]\0]/\0_4\0_h\\0_\0`\\n\0a\\0ab\0a|\\0b\0b\0cZ$\0d<\\0dv\\0d7\0d\X\0d\}\0e\\0eS\0ea\0e\r\0f\0hpQ\0i~\0i\0iA\0jA\0k\0k\+\0mLI\0n}\0n\0n\S\0o\\0oA\0p\0pހ\0q\0sm\0sm\0s\0t-\0u\0ucp\0u\0w$\0w\J\0xh\\0yr\0z\0z\\0{!\0{\0}{\0~\^\0ޅ\08t\0l\0\"\0m{\06\0\0\p\0\\\0\"\0\\0\0\\\0To\0\0	\0̵\0v\0F\00\0;\0\2\0^\0qw\0J\0K\\0h\0+\\0\{\0\H\0`\0i\\0\\0\0\0\\\0\\0+\\0\\0\Y\0\0&\0YV\0m|\0\07\0\\r\0\"\\0%/\0X\0:\0J@\0Y?\0\05.\0\0I{\0)\0e?\0\\0\J\0\\\0\\0\\0\\\0\0x4\0\,\0Q\0M\0(\0-\0b\0\E\0\\0\0-\0W\\0\p\0\q\0\N\0\\0, \0cn\0Yl\0f_\0/\0aD\0\\0.\\0O\0D\0\05\05\0D\0\0}\0\0\A\0\\0A\0Qx\0jr\0\0L\\0|5\0\0\0\\\\0\\@\0\\\'\0\(/\0ƫ\\0\ɳ\0Ƞ\0\K\0\q\0\;\0\\z\0\O\\0\b\0\z\0\h7\0\$\\0ω\0\R\0Ш\0\1\0һ\0Ӱ\\0\O\0\\\0\6s\0\{\\0\\S\0\a\\0ڀ]\0۹\\0܂\0\U\0\1,\0ݑ\\0\8C\0\C\0߈\\0\\\0ࣘ\0\cQ\0\\0\_B\0\qs\0\T\0\+~\0\1\0\9\0\j0\0\;\\0\\\0\H4\0\ya\0\\"\0\>P\0\\\}\0\G\0\d\0\\0\\0\#S\0\#\0\[k\0\a\0\a\0\\B\0\\\0\0B\\0\0\\0\\\0N?\0T\0$c\»I$\\\n]<M>-cHV\H\'{!\!	O\n<K\n]\nv^{\p)C5\rt\\r\@}\L}\\Z\٧w\u5i\[\͓\Z0\Z\\\Zw)P\#\'Vb\~$]\\\\\R#~ā k\ 1!!#\"<H\"\\\$%YM%Z%\\&&`\'c\'(U\r((\5)y)e)#*q*,\-K-R-g..\.q/\,/\0v16\1<\3t\44\\6a\\6m7%7g27\86W8\8R9?\9:$;n<<x\<1<\y=+\=\==>\?\7@J@\\A\\BrC^C܇D\HkHIJ<[JCLMu\NFONLzO\OP\\Q?kR\\SE\S6T\UUK<V$V|W\W;WhXJuXzyXY\Y)Y\\Y\8Ze[[b[َ\\v\\p]v]Aj]^B^\_\z`bcZccd<e\e0gKg\Ag\\h~\jώkk\k\l8,ll\jmomsnn\@q6s)\s\[s\t+\u4u\>vxqv~\wg\wx\4{a\{B||\%}lA}}\~\#d\	\؛\N\xL_Ld\\H?\_8u^\`\=rŢ\r\\jG\\h\\U)V\\\\`Y\\\θ\=~o?\\FKS\t0ߒC\\3`\\?԰η\xR\y\3\\aL\\~94h\npQ%.kneg\'Na3\UftR`qQZl-U]+/z\6:\S\\u\\W\"ħrĨrī\\}\\-\\\dkɕ\"\\\\\k\\"U\&\2M\@@\\\cω?\\\`\$Z\m\ӝ5\\Mԏ\\z\\B\\$\'\Y\u\\ϗڋ\\+N\vݷ\\\.߶\\h\\\\\i\O\E9\\\\L\v\=\苡\}\)i\/n\Q\=\H<\R\J\ɫ\\\\Y\\\\\\\n^\L)\\\\\-\r\\\{\\\\]dbiK\Rp,ж(xs\\\\\0Z\0~n\\\J,EɔB;@>ʻ	|5f`\\E4\:\0+	\	r	\\\nVr\rJ\r\r\\>k\G\>!\S%ہ	X\53\\\e\Z1\Z9\Z%\Zb\\mIb2  ZS q\ \\!\#V#\$S\$g\$|$\.&6\\'Q\\'b\'i\'\(*\p+P+ˡ,C\,-\	.\0/^0%0\1\\22*g3a4667-8G89y\:A$;5>N	>}3@;wBBpBD@\\EEFUGHEIlJS\J\KihK~;K\\L LL\MZ\MoDM\M\\P/qR0V\Z\WXY!Y*	Z]ZUM[\ZI[;[_3[\\\)x\\\M\\\]ƌ_H_<`Z7``oa!wa<bSCbS_c\e\\e\\ff\Ogwjj[j\)j\j_kBk\l2lI_l\nS\n=ooS1oropUpMgq2rLr\`s*\t\uEhuH\u\x/xczڇr1\&\B\\8YzO\G9\ \1CS\)\\n\D\}QK\\\5\?\\+&Q3;q\DZ\!,a$c\ײ,@\\t8`\\\\8z*| \x5\KP\\\\\k\\KZ:N\\rN\M\W2~_G\nil3]Ld\Kv\ru­\\Z\-\\YsǏ\\%O\\\\,\1m\w\\#\u5\y\\"\b\:\q \\?Ԅ_\\\h\\\\\d\w\\\,\`\\\D\\x䍿怟\E\u\\]\\\,\G\]\녷\\\\e\\ĥ\\\,\\\\Sz\\\\\\v\#\\l\.lY\\\	1G\=e\\#\,\HÜ=zF4f6t\\\	\0P	\n+\n\\n\\C\r\r\5!r\\\{k,\{k\.\n^\Z`\ZJ\Z\o\Z\Bl\L\naA\ ~ \!W\"w\#\#$4Z&&\'\'\J(J)\+%;+qA,ʭ,\\0,\-\8.\e.91]Z44J\4\59=p9\\::\<\=\=\\=\>|\?@??\@~B (Ct\E\E1F(GÃI3I\I\J/J;\JK\MNN\O\0O?\OY3OPiQyQR\STnYU(VbWFPXY\"[9[\\&]^K\^\_`\Sa*aAaE\a\brcɏc\&ddod\e#we{e%f\h$hیh\j(%jk6Zk=4kvlҷnn|co/\p\mqq\brP|r\sFs\tuW>uw\\y\z-@zz\z\{OM{\{m|\|\|\8|\\~3A\\\\u/K\*X\\)E\I}\0\tGQ\n\\A\yӲ+Dk>Xp!Ǳ>ve\Ųف\%4Qj\QOp\gt\a\e=wJE\\\W\{\$\Z/\Q+F@\\\-z\'Ě\8̘l\Cjg\VDz\\[q>\ĠU\\\\ƆƓ\\W^\,%\U\>(\Q\\@\̶,\\4\SͿ(\aJЪ\в0\=\}a\i҆\ʧӅo\/\֫p\P.ُ#\\\b\\Zݾ7ޝ\ZH\j$\\\lF\<z\6\\\\\\\\\\\\6E\c\\S\\c\!\nG\\\\J\\Zs\\YQ\=\\\\1\Ԓ\\U\f\\\z\l)uAH4]V_;\y\\>\0\0\6G\!\OGjf\\	SCiɉ?\\\rQH\\\Ɖ\\M+\\\R\\<n1\\\[\\ZD\Zګ@\}\\O\\w\k\n:\\ G ^\#_#\T$%\$%e\%\C&Ӻ\'(g(!{)\+w\,nu,v1,-*@-|N0\11B1\d2g\2\3.4;4]\5\57	7c17{D7͆808ް9\9}s=#=Y=hH>?\@UKAv\'AjBBD[#EE\EUE_F\\'HIJy\JGJJdJ\KLJ!L\L\\N\\O{\O\P\ZPUQr_S\mT0\TKYUl?UU\1U\\V\V,8W\WdXYqeYsZz\ZZO[\\@]__r_\`\\b;c$(cWlceveze4e\\f\g\hikj\dkX\k2k_k\=lZ\lm:mi\nnoo\\'p?p@qYq`rIxrĘtcu\vv\"wU\xxsxy<}4}i\}JhtD^)WM\\\vo\\ŴP=6\r|\J\tCgE\\\\\.\\6b-\UV\\u\2C:7:9\\\\E\BY\\#;\'y@\\nC\E9\,\P\QI@\"\\5PS&ƤT\Ήұ7~\H:0Vm\ʅ(\k\;/\|\)xą\\\\x\ߨ\5\\\\\rq˕/̸-͟\\\k\P\>ӣ\\\\>Xէ\Y\R\ؑ\r\\[\\xڞ8\!A\J\\h\\\\\e\O\-7\\p\\*\$\=\\v_\4\\Y\\r\汓\\\\0\s糦\\\#\\\ݴ\g\\\5\\\dd\9\\\\R\\\\\\O\\\\Wi\i\=\W\3\\ZE`\r\5\!~X\\\\\\aj\k\\H(\	q\n)v\n\1\\\?N\#s\Ҧ*]_)e9N \!\\\"\n\"7\"\b\"\W#\#w##\$G$k&R(%(}\n)a*)-\0..H2\R3\Z3\3\\55\5\5\\6\7EB7O8\\09M\9s\:;j<<ڒ>6S>6?\ZBCDE\FO&F\G\Hl:IKItK{K\LLxM\lN\nOQZQ\R;RGS\TUcV\CWk\X.\Z]\"\]Ӹ^Iaa\b\b\cK3e`e\zg\6h\hhلjjY\jmj\$l~l\n,$o0\oFq6wr_sHtt\v4\x\yn;yazJ|)\|C|n\0|\ٮK\\ԸM(\D\H\b\Gt\O-\K\\B\7\<#(5~5I\\EJ,K\n\#\\=b+s\2\ȭ\*!6u\r\+}\" ?gdN\"h}\\by2wRx_\\h#\\\'\"\H\P\\$x\\M\\$\'H\\J \\²\\\\\\\\\\\\Źm\<E\pH\\Ǽ]\\\z/\p͊\͒\\M\i\d\o\\Z\.\\(\\x\>\ոi\\\\Y&\ڲ=ی\r\܎\ܯ\l\\b\ߍ\\m\6\\<\x\\\\:\\P\\\r\.\A\\\=\M\ś\2\=%\F]\\\	\e\\\\'\r\\<\C\$\R\30\y\\\ʺ\\\\\\/H\\o\\\E\K\n\\mUx\1/\3\{NL\\)E\uΗK\\	F\n4asd%@j\y\\\0*\-j\\H0\=\s\\'#Kk\\Ç\4!\"\\"#i#o\#\#\A%z%\&\'p\'\(r)h)U*9+\'+-C0\r0\11ć2.264^6\6}67.\7պ8k8t$8Ơ:.O:\>;+.=7=P\>\>B\>{\>f?)bAA\A\BjD[iD\Em3F\FG\'\Gr!I9I\SK?K\M\nN NP\QqQR\SKTUjU(UZV\V\\WWִX\X\\"Y:YU\Z^\ZZcZ\#Z\([]^ ^c_\`\\aF`d\dAe(cg\i!iijJj\ k\\k\lDVm+\m\mmnMn\	q\q_?q\rKr߇s\t,u)RuBwwϝwy\\y\\y\Jz-}*}x}~	~~\/+i\Y(hW#\A\\x}\$\\ɇ\\\@tk\r{Dpر\Av	=\Xn)s0ǔnp\\"\ah1\\>k\"-\\\Dd\J*\rL\%[\\&t\\}X\"\M\\	\"nwfF\qG\|:<ELSEۚ\H(2\\'e\#\"\%{\<\\\\©|\%\cM\\`\\&ĂĐĦ\\Ql\]\\\\\W\I\\\ǧȄH\!\{\\8\\f\`\0\\&T\8\\׬\\{8\0\\t\¿\4\j\J\e1ގL\g(߻{\\f\\i\\H\\\\u\/\K\\&\\L\C\\u\K\\\)\w\{fu\Hw5Ho+\	[\\\\\0F\0%YS$	1C\n\%Ȅ\r\r\G>\\\}\m|\Z\"w-<\=m\;Wey Q3!0<!g\\"\"\e#\#\$=$\%%\[\'\r\'9b\'*\&-\--\.x//0\\1\1?2m2\3\\4!\4=4Y4\(5\6t6\789G9\4:\"!:d\:\H;l;==\=>#=\=\>=\\>R?M@\@\\C>Dn<D\EhEsjEDF_F1F\GG\H\\I9\J\nK\KL(L1OaO1OwPPiZP\Rn\R_S@dVdW<XBXY\\Z\Z\c[5[\l\\Y]\r]\i]_(t_nJ_ana\nbdcH\c\\dffXg@Dg\g\ph\]jqk)ll\m\\n\1oXo[0rs\dtxt}\t\\u\Ou\\wwyly|;zWwz\zuz8{|(D|\\}\}~hp#\\\o\U)\ζj}\\7\&`B\9h\\<N\\M\TbKg\\\\\\nZ~$njDd}\҆E	X[>\\v_\\\6\\	\mT:L{pèT<:A\\\\\qf<$8\T\ss\\hS\\\?\'Sanc\\mjNPl\\]\\g\'µ-\&\\r\\/\%F\\\T\\\W\%.\\5\\&H\&ˎ\\)<\S(\\\Wr\\A\\7\{\K\m\r\nԒ\vbՀaՐQղ\\D\֊\\0w\>:\?\\Pۈ\ۥ3\\T\`K\t,\i\ߚ>\Y\\m\\0\7\\/䅔\\\\\\\^\\\\\\m\bi\ݞ\C\#\\>O\ն\~\\8\L\\\pw\\\\9\\E\\1\w\\|\0\\	>}\\ \\\.H-1_f\BwWi.\\%@k\\n\>\'5\}(4\T$\@2\\D\" [aFu\\ZV\&\P\\ \ ? y!\n^!=#s\#(%%\&&`\'Ŀ(m) u)*\\"+	6+>++,,\\-V..3\0R0l\01{+292{\3hH5\5\7}\7\7\\8a8%\848V\"8ק8\j8\\9:8o;\o<)\=b?ۜ@}\@\*@\B#BJB\\D\\D\@E\8FhGG!Gj\H=HۡH\/IO[J\JBMJkK)tK/KM\\NkxO\0\OPP	EPQQAQ\fQ\SH%S}HSSTRVU7UVW\2X\Y8\Z#nZMfZO\\\n]:\]M]b^L}^q5^\o_*`La\aWbT\c\cNcrcc\\e\"\gJh%ui\}j!IkwkԹnvp)p{3p\\q;rc,s9s׉s\Bt\v5wxvyZ\\{t{\\|\~tku<RgWw\4\t\\!\r\\o\'.G\n0u\\=\\\#QgS\\\E\F\g\\,\\NH\\'0eW\\\V\\\04@kS\<\CX;\&g\\A\t2\^G$\A\{IoYk\s\F`\\Ƭ\\\\\r;%HgSj\\\\\1&\`\i3\n\\)Ƽ]\L\=\>9ȼqə\\\74\g\u\\\g\\\^\1\\_Β4Υ\\\r\yg\\\\=>\Xх\\ђP\ԍ\\\\\ӍS\\<\߱\g\\\y\rآ\\53\&ڳ<\dۗ\	$\\߈\\\k\\\x\\\a\Q\v\,<\\\"\\[&\3\(\\I\R\\n\x\\a\L\\\\m\y\\ș\\Y\\\\\$_\\L\MG$\\\\r	|\	Y	,}		&\	\i		QV	9	^	o	س		%		T	.	\rb\	h	ve	\\	\Zt	\	\	WD	ԅ	&	\!	\	Ex	X<	\		\	\Z5	\ZГ	d\			M\	V	!j	\"(		#j	$	$	$\l	%	%<	%	\'[\	\'\	(}	(}	(	)I	*T\	*\	+\'	+\!	,MK	,QK	,\\	-o	-\L	-ȏ	.	.H/	.\	3H	4P	5\	6C	7	80/	91	:l	:r	::\	:z\	=x	> -	>I\	>Oe	>\\	@p\	Cs	CM	E\	E\\"	F	F	Ga\\	Gur	G	I5\	I\	Ji	J]	K	\	L	M	N	Q\\	Sh	S\\	S\\	T\	TD\	TL	U\	V	V\	X\(	ZI%	Z	[	[K	\\>H	\\t	]{Y	]	]\	]\\	]\	^b	_]\	a+v	b	b	b	b\	cv	c	c\5	dc	eY	fs4	f\\	g*\	gi\	gޘ	hK\	i\	j\m	k\[	l\Y	l\	l\'	nZ	o,4	p\	q6i	qu	q\	s4	t	t	uHu	urk	u\	v\r	v\_	w	w	x*	y.O	y\I	z+u	zQ>	z\	{G	{Z	|ww	|\	}T	}0	~\	~/	~_	~\	~,	x 	\f	7	x	3\	w|		|	\\	pW		_	z	J		\		a		\q	=\	À	%	j	H	\3	W\	$\	3		\	w		j		\Z	5	i\	\	\		յ		H	M	|	\	\+	>			&\	\	5+	,	<a	I	\\	a	b	s	C)	\	=	+	]	tv	\\		o		G\	Q\	@B	X	\	I\	Z		\	î	\\6	\OM	ĴM	\Q	\,	\t\	\	\}	\\	\V\	\H	ϹE	\	\-h	\X	д	\\	\_^	\I$	դ	\\,	\\\	\K	ֻ	\\\	\p\	\Y_	\	\4	\G	\o	ً\	\(P	\h\	\\\n	\\	ܴ@	\܌	\=	\Y<	\e\	\	\\	\\	\s\	\\	\\	\ x	\	\	\\	\\#	\O\	\8\	\)	욮	\4	\\	\\	\r	\`	\U	\|	\\\	\_	\\J	\	\Q			\\0	\\	\0	8	9	C	\	/	\n\0!\n\0Ɛ\n`\n۸\n\\n\\\n\nA=\n	\a\n	\\n=4\nP\\n]p\n\\nx7\n\F\nop\n\	\na\nI\nbQ\n\\n,\nu\nI:\n[\\n\\n!\n!\q\n\"z\n#\\n#ڱ\n#\F\n\'\(\n)+\n+J\n-E\n-W\n-\h\n0\\n6v{\n7\'0\n7\\n:\n:)\n<%\\n>CD\n@\Zd\n@\nC\\nCJ\nF\nFaU\nFێ\nGW\0\nI\\nJ?\nK\\nL\\nNd\nN\}\nO\nR\\nSޣ\nT\nUO\nV\\nV&\nVk\nV\\nY?\nY\\n[9\n\\\\n\\\n](\\n^\n_\}\na\nah\na\\na\\\nd\\neO1\ne]\\neB\ngU4\ng\nh5\nig\\njQ=\nj\\nkn\nm&\np\ns\\\nt\[\nt\l\nv\nv>\nv\B\nym\ny\ny	\n|\n~\F\n\nn\n\ \n\\n5\n\\\n\nZ\n\n\\n\x\n\\n+\\nq\n\6\nV\n:\nf\nN\nֵ\n4v\n\n\Q\nV\n\n\n\r\n\Z\n\r=\n1(\n\\n\\n\\n\5\np\nͽ\n@\n{\n\n^\nCv\nd\n\\n&\nX\nn;\np\n\\\n)\nE*\n\ni\n\r\n\\nlo\nn\n\nq\nhO\n\\nO\n$\n9\n9\n\\\n\\\\n\@X\n\\n\C\n\\\n\\9\n\%\n\\0\\n\z,\n\5\\n\r\nγ\n\	`\n\\\\n\{\n\W\\n\\n\\n\n-\nժ;\n֞\r\n\K\n\\\n\\	\n݂B\n\\n\;f\n\Ҽ\nߵ\Z\n\\\n\OZ\n\:\n\}\\n\g\n\I\n\ \n\\n\n\n\d[\n\g\\n\v\n\h\n\+\n\$\n\W\0\n\b\\n\\\n\\\n\ev\n\n\n\\n~\n\\\n\\\09AFF	\\n\b\r6ez\:J\\|h\\j\| 6 \g#S/#\%&?\&Z;(\Z\)fF*U+C+\,\--33.9DF9\\;;l<\0(<_c<qH>C\?eB\D%D%\D\EG]HX=HyI\UI\IKoRL\"\LnM\(PlmP\\Q%QvQSTh\U\vW׿Z\ZY^c^R^\^\\_|<c\\Cc\wf\nGgU\g\yhi\ZQikgl\rlċnn\q\urNsFs\uXBv3z\\n|\~@~\\0%\"U\1\H\Zb\#\(iXY\\\\\{\E\ƭӍ*n\\\xD\\"\^q09k6\\~My\Z\w6	\![Q\_%\~<7\\\ť\M5ȇ\\\!\\$ʢ~ʰ\!H\\\v\PЊ2ѹ0\8\hM҅D\\\\Z0ԃ\S\`ןnٓX۴\\Ǜݓ1\\F\\\\#ޒ޺<\8\\M\-\\\9\\\\nB\\1\J:\Ng\\n\S\\\\\	\0\n\f\9\\\\`\\\\\k\\D5C`-\l\\0˸t:\\\\y	\rm	\\n\\ny\n\L#mImH?S\Z5M\Z\\\\dy\{\|\">\"#zZ$&%\&^M&\:\'`(4)+Zr+-.j\.\/F/\0Bu02Ô4`5\\6n\63:0H;\r=\=u==\R@i\B]DhEBF\G,G<3H)H˰H\PIk=JJ\KM\NNOPQAKUVVXx]XYYYY\[`e^.\^V^N_\\`\\`{`O`fn`r_aa{ldNh*h\\iLi\Hjn7jx\k\kl>m\kn&\pjp\p\-qSs-<ss\s\?tuϺvJw}y~\Z~7\\M\\\_I@hB_YlR\\[TM.a\Ln\N\[mGB\\\7d^\Bdi^\0\$Q\{V\\\OP\#Qa.lrjs\(\K\\yT\|]\\\\1˶x\\(p̎E̀͌\\\^\b+ӱ\\`\@}\\\ږ_\z\\\\ \K\p݂ߢ߫\\&\\5\\\\J\\8\%\\\w\h\ҳ\\\Q\\m\+\\4~\\0\1\]\\1\O\/\\>ػ\r@g\rD=\r\\rb3\r\r\r\n\r\r&\\r)M\rj\\\re\r\z\r\rs\rAk\rl\\r>\\r*&\r*\\r+GC\r+Ss\r,t\r.r\r/\r/\r/P\\r2y\r2p\r3\\m\r3z\r4>\\r4}\r5G\\r5K\r5ʙ\r6+}\r60\\r6(\r6\\\r</\r=\r=\@\r>Ow\r>\\\r@i\r@\r@\m\rA*\rAr\rB/T\rCs\rC\rED\n\rG5q\rG\6\rHN\\rH\\rI\Z\rI\rLy\rN\\rPl\rQF\rQ\rR\+\rSu/\rTQ\rV\rXEJ\rZh@\rZ!\r[5*\r]94\r^\r_\r_\raFZ\rb\ \rdk\re\Zl\re+\reP\\re\re\rg\n\\rg(\rh$\\rlw\rme\\rn~\rn\"\rn&\\rn\rn\\rq\\rq \rr\\rr\"d\rru\\rs߃\rs\\rs\\rz,\\rzE\r{\\r\\rQ\rD\r\\r\\rC\rf\\r\r\n\r$\rzJ\r\u\r>V\rכ\r= \r\rĴ\rg$\r\'N\ra\r\0\r\=\rK\\r\\r\\r\\r\"\r\\rM\rI\\r\\r\\r\\rw0\r\\r\r\r_\r\\r\rY\r\u\r\\\r\\\\r\ό\r\3\r\ca\r\t\r\\\\r\\\rͻt\r\\'\\rϨ\r\3h\r\gu\r\\{\r\\o\r\;\r\T\r\\\rؽ|\r\\\\r\ѻ\rټ+\r\8z\r\\N\r\ZQ\r\M\r\<\'\r\R\r\(\0\r\\\\r\j\r\r{\r\Ti\rꏄ\r\u\r\\r\\"\\r\\n\r\[{\r\\r\\r\\r\0\r\N\n\r\d&\r\[\r0\\r:\rr\r0u\r\r\rzv\0\\a\u\4\n\:\ri1\t\\KSzv1\0\%	7\ Lǅ X \\\"\$9%3T&n%(}.*\,\\-\.\/L06\0]\11\n3\3Д56a6J7<8;F>4)>eWB0C\rD\\F\nI =L.MhOdO\\PQ}[VV\VHW:sW\Yu\ZZ_\[m\_^_a^bsb\\0e\e\fUhb\hqƒq\r\\ttt\\vw`yz>\|-|H}\}b~\\\xg\F\S<n	+\\Y_#\D`i\8Ux\'9bʲn\L\ZK\!\\'S9eMh\\T\tUD\\\nI-\\X\';uJs\'\;88\\\kZ	\q\\3\_\΋\m\̰9̿\XqͱBαO\\;\T\\\\\\8Sڔ`\M\ܴc\\\\-Q\k\\\4u\\R\\\}F\\\\\\\\4\\\\\\\w\U`\p\\\\1\n\\"\-\\-\0\R/_s\d\\\\n\+7u\2	b\r>S\V\5	Q\Z<qѾ\e\\: ܠ\"ͫ$x\0%\F(\*ǁ+\+\\,D-W.\\/1f\1\13\%3\~4A6\08\9\9;Z<\S=\\@\D\\0EF2FHH\IIxILMN\nTSxpTTuT\V\X9&XYj\Y\Y\mZg Z\\$\\]B]\<^t_`\2d0k\nn\vo\p?q\\ss@\tSZus\x*\z\"r||/|}$}i~UGC\фG \Fz\ZX]yt1\3\#\\\S9^ \\Y,Ni3a?1\.\j\+%(޸JI#&KA\!Q^\6-\,\\Ҿ\\ț\\\\\!\\aХ\\,\\\1\\0\Սr\Ě\3\\\\J\d\\\\\\\\\\n\&\\끗\\fH\\\\\f \\\}\a\\\0\$\_\\\\\\\"Lƨ\0rU\&Kt\\	0#	\\	\\\n\\P^i:#_c>}\3&\n\ozz{\\\rv1\|\q\n\vuq^<\s_\8!@\!!\\\"N#\$^$n%\%e%\\&@\'\'\\'<(R)]*T*\k+7+\\,A,N-.e./1\/\\0\Q2,i334U5x6\7(~7g7~79p=9T;\\=d>={=\\0>ڊ?\\?\#@4U@stA\BQDR\DVDnEp[EE\xF\GnH8\HJȞKbKK\K\\L,L\\4LtNL\\MCMY=NܹOP\\Q\ZQ]\QS\S7S\.T!VtvWeWnX{\Y\nYZ[@]x]\za\bbc\d\eNe\f\h{ii\jW:k&kyVl\\opo\r-Rst.t:vSw:x\yy\\zz^|)}J}{}\E~\~\~\>?*KhTe1Yf\m~\3F\E\B\\K\\u?\n|dbOP\%:du\\FV-\n\\#s$q\\r4/5`!\nQ\s\\[ȱQP\\Z,Z\'\dgL\*Z#\|\\.5!\\]\\L\p\`\3\\\\%\H@\\!e\#c\F\"\R\\\\Z\\\8\\9\\Vպ\T֗\q\ז\F\#bژۗ\~	܏\n\A\1~\MB\]\ᆻ\\ s\\5\`\8\纸\\\m\e\\e\zs\r\\\\\c\\\3\\k\\\G\\\D\MW9\"}\-\\/\\w\0]\\j \rl?\P`/R\n\,\\@\xv\MT%\\:\\uB/\\Z*t	Kw((Z\"\7##$(۱(\\)Wc*Rp**Q+), \-\-\v.. m.n2.e1H{22if2qY2\I33]3p\3ß5E5g}6\72-7E7f8UJ8r\:%z;\;\\>.>\@\AwAA\^B-\D\E\GtHITIɋJMg7M}N\O>\O\PIqQ1Q\VQ\R$\R4RqS\?V@gV\W\\YtY\ZZmZ%	[oz[\'\\22\\q]U^\_\\\`c\`\\b\Ad\"\dFdre.\'f\Wg%Vhh3h2h\fiF!i\Si\QjU\kl[lJ\m\n1\näp\fq\\rrs=tɀt\tu,\u78u(v[vwvyl{c~\_\\Z\f~~\n[d; \"h\r/M\l~C\K\a\2ay9HF\. \\03mA\\\rs\Z(`=}XE\\z^*2\@_a	\\r\$\FfoJ\\\r\W\0;\\\]\òg\0Z\:!ǥ\\\\Mɇ\\\\\Vˎc\-\\_\O\m\r\(\!9\+\\\\$\\ޮ\9\\(\\س\4z\Ht\\ڦ\۸\\K\݄\\y\[H\\\6碾\ؓ\\\D\\kF\\Y\ŏ\\\\K\BM\[\"z\b\ZW\\\\\4\0I\0\,mR\\Z\\\\Ux{	\n#}Ɛ.ň\L\P>{E\0Ħ\\be\qS\Zw\\Z\Z&\Z\@\b.õ\\T =\ s!>\Z\"Q#!%\\& &m&+\Q,\,,\/%#1}12J2\3-\\3r]55i8-8[99$9\\;;\G=MV>j>>,>s>\B/BD*GGTGxGG\VHaIJIk\K+KG\'KK\K\\L\M6MM{N4\OR5R\\SS&\SS\Ti#TwVTXvYaP^\d_\\`AambdO\eSAf\\f\gggiQkml\\rm]opo\np\qq0\rFsvtM%ts{t.tv\v\w\0yKy\{\|}m-}\\~\$![e5<P{8(v:3<\x@[1AN\f\\R\\\Tr\\Z]nO2*8j\GF\ ͤ_(]0sH\\F8\jXW\^Sm\t\\\IMa\r\01\5\Z@\)\l\_\0\Z\n{\\P\%\Jd\_\4\;z\\y\{\̓<͹8\\Z\\\r\?\kѫ&҈d\\n\3\\ԃ\]A\\\\V\\~\\\N\\'4\_\\Wݲ޳\"\\,\\F߀\\\\\(@\Z\\6&\h\nh牋\A\\Z\\>,\9\\}\t\yU\\\\;\\f묣\\.\eu\n\o\r\\\-\\\\\c\\uP\2\S\\\bJf258nE\<!y[*Q\n\n5\~\rVR\/\r\p\0\O?g=D{m7\\rD\Z42Rjz7\Z3\Zא\Z\+\ \o!A\"Z#]\#$1*\Z+\+T\+\,ݣ-\0-@B. /4\0P234 3_4.\67D:7t\09b}:\<<=<^=\>\?;?s?\@%@@B@\HC\DQD0E؛H\0HH\HI^I\3L<LGMMM\\N(ON\\P\4QS\pTrATU\\V\Yn5^y^Y^_]ga#aGba\bb-b(bc\d֞d\\eTf\f0fśg/`j m	n\\oAoxo\hp\rpqJq\arrvwwEwOHy\{\~i\~l~\\\\3I\\	\\0c+\U\u\r>\0g\AAg\\\([\n\\-?8(2Fx\[m{#K@^92B=\\_\\rm\2~Jk;\W\x\n!,[E\zUO\am\n\c\3	\<\\\5\"6\#\l}\ݹ\\8\B\\\\2ª\\{\S	\EZȎȖ\\7\|sɞɨ3\\ʤ	\\\fc\=\o\ط\(#\\f\\5\0\\\ڣK\6\ݦ\\g\\,\\\\4\\Ts\\䩜忬\r\\p\\\0\\ﾣ\\V\D\\\M\\}\\C\߇\{ bO\\\r%\0\RTj\\\\rc\\r\~>\.@KI\!0\H+\Zt\YC\h_\\H 0\`\ |!JA\",Z\"3I#\#}#\\0$$%K\\'j(Fl(**\,c-\.D\.\/x\0p\0ru1\22\\582\9*:]:f\:<i=t@AbBAqAy@A\Bs=BC\}DE4GHliH\H\\H\\I\I\J9JFK\SM*OwTP-\R\VXRLXdX^Y/Z{AZ]7^a#,ab-bB<c$c\icdj\d\\d\Mii̴j\l\n\'l\am\0nU=n\nn\\qDWqm\q_qq\"q\8s,es9{s\s\t3\u\xw\\w\ew\px%\znzqz{o{\|!|i||\\"}~Bu\\[\\!\F9n\$\.gt\\"\\\\w2)d\\B\\\0r0m\6IɄu*a.o*\`=\\\\"\\\Z\IZ\?\|\#\&,91`F\Z\\LqC\\\h{\^\\\n;o\TL[fbo\w\@\j\\)Çù\AĎ\\\\\s\S\}\\\\zG\\\U̟K\!cͰ\Η\\\s\\\\$\z\\ҡ	\\L\\\!\Oب٢\\\\\\\(%\vݹj\cfߔ\\\Z\\Ξ\\\\K\\3\T.\Ҥ\c\蜛\1\\Kꑓ\ڙ\\,\W\n\\\"\E\\\\\\ݧ\3\\\\\\\;\\0\\0\ԙ\Js\\\\\]\as\`F0\\S\$d]\n7\\re$z\\d-\.x!9yd\l\.\R7=,r\\Z{B\,i&\. Z \!S!\\\"\".e\"\"\#\'4$@$M#%6%%\\(<\)\0\")@))/*	*8S*E*\4+3+^/\'/Ǣ2\C3\"3\\4*i40\Z4=4E5<6.\637\\7߶9+q:I\r<5<]x<j=#E=1=?Z@TAdA\AՙA\BwD)E_HxH\CJ\JTKrXLeN\ZQ\Q\R\TxPT\Vg6XqY\\\]4^]c^E]^]_L_x`\'``\\ZbGb*bUdd\_e\j5\jV,mnL<o%o\oѲp\pq\qE\Zr6\r\\s\s+hs0t.u\nv\\w\{z\z|B}>h}ZK}q\\Y]\\\\v\\\"\>\cAs_CDp\ƬX~\Ay\\O4\b*\;fU\ckg\.c\:\n2+]_03\0\0\o\F\\\\^>ӭjO{i\zf!\\Zj¶\\a\D\\}\Q\q\ǰoǶ\0\#t\d\9\\΃Ϋ\%\4K\v\\ts\\\\M3\{aӆ\\\\\\\\n\ٔپg\V\[Y\ʱ\\(\%A\X\ߒ2ߩ:\L\5\4=\\\\,\BS\DI\\J\\\\\Y\8\\\\0W\C\X\\\\S\K\\J\\O\\6\\8\Y\G\IR9 uiBZayąĘ\\\5(}W\\5ʓ\0]\\00	w\ն-\:\0@\!*G.	\\o13\rG\rJ\\B\K\հ\94\by\\i\pП\/\Z\Z\Ip\͝@\ \\"\#\$D\%\G%\&\'\)re)\H*\'B*.6+.+\+\+\g,-\d.}/n\/\0q\"0ϔ0\\0\P1\1n2\v426i7\\8\'84[8F,8q9::;\5<&E=u=z>\\?\\@A\!B5C+\CZ\C\EGuGGHKH\II\\JPbJ\\K8N\0CN\zNӥP\U%`U7?U>VaVW\ZX\\\XYrY\Z\rZ2[[o^\_2\`Ya\a\bHbb\_cn\Zd\>e#f!f\5hih?Aikg\kl8kk\l4~n\nqqCrrrԬw_xx\z;\{}~_5Y?#g?\\\\}s	6h\d7H\`I\W\0Ã$]u[\\\^\@qUsuJ\$\i\\\\RvUy&T\@\>\B\0\*	P|{^Q\xE\\Z7\\J\'L8\e\V\P\(\\p |\\֍ķ\\\\6}\ơʟK\\3\\}\,\C\Xy\\\Z\+\\T\{\ZѪ\\\|ӭ\\f\\\ڸj\\Xi\ݵ\\\.\߇\\-\Ǳ\\r\\6\R\L\>\\Q\Sh\zl\o\	\S\V\\\8C\\Z\\\\\\\\\\\n\AQ1\JWT\.\0\\0B\\0qM\\rG\#\\r(.\Q	\	/\	B\n!\\n~5\n#\n\w\r_\r\rϸm(0z\\U\\>\\Z\xw\\n2Wl(\T \ ǧ!\'4(D((=)v*K*m+\-f..\/,W0>1\1\1Ę1\~2?`22\3>4\14\)5L5b-5\8\"\89969\\:\:\;B<\|=\1>m\>p\>\Z?}R?@T\BPCt\DOD\E\FGNG\TIFJzK6\K7,Ku\LQ\M4N\n^NN\&O2wPP\KP\QM*Q\R\^S5V\QW]WƻX\\[\{[\\]r^0^C_H`LZ`\ebh/.hIi\i5k<*lnYoip\tqxqqqq\\r\\rsútz\tGu$u\ev\w\x\z\zxzz{\|\}t\~~\E~\Cz\\a[\\)4msvmJ:M\\urr1O>	\|+S\]a\}EDQv`hM\lE9\\\#8\\*a\\tۤ|s\D`\}\̾\\0\`\\;\\\z2\{\\?.I\0ҟ\9*\G\\W\\\\KÞk\{\۷\\r \\\\)s\~\т΋ΝS\jR\dЪ:\wѣ\\N\\\\jW\\F\\ \\8O\5\H)\M\\R\\?\W\\B\\L\\Š\\w\\*ߏ\7\?\-\\Ӻ\\䤰\$\\\\:\\=\\Y\\\\\\\-\a\Y\]V\}\s\\\\\?_Z\-0(\%\\˪\=+\V\0C\0k\\By!HSSHeͥ \F3\\)J/Bqۖ4s]H/X\\\a\)\Z\Z\n\SG\AXy ] !L\"SU#3#\\$z\$.(s*h,) -5.g/X//ު0\r0]0{#1§2u44?=4n\4\6`67\r88\k8W:%:\u<=?BB!CeCE|Em>EF>BF\\F\GZaH\H\\HXIJ6J:J\JPK(#LdLrL\\L\N[WO)LO/(R\\SoSOS[ST-T-\TbT\(TMU\V VeWUBX\Y\\Z\[U\[\\\[ĭ\\](\^y^^\^\Y_q`Vfa\Nb\rb\=duwd#evvf*hiki|j\\kEkl\\m!nlop\q~dqrr~s\ZsEtnv\lxy:{_:~B\\]\\u7\c\2`R4\z out\\0h\\mb\0]Т\S\\d@\]QT\Nr\81h\V\7\0\\\T\Q%G\'\9\"\12Dk?ash\\\!\\?pØ0\Ȱ\\\e\ܪ\Ϯ\\\'\n\Ϟ\\|ў\\`\h\,՟\\\\\\nى\\\\\\޻A\\\\r1ߟ\b\\\\\\\\M\\\\W`\[\\\M\H\\n\$B\S_\O	\\.\X\\ҫ\7\\*\\O\1\\\\O\Wz\(\ϣ,U\\0N/\0Z\0_\0@k\\3F\ DFݿ\n.F\a7\\W	\\Z\\rhH+E\ZE\ZP\\Z>`\$\\ $\o%n[())`\)m*(*)*\*+4+ׯ,u,\n-\rG-i$.\.\.0\1c234\75\"\'6\7#_7(7\\8; :SV;Da<<R$=X\=\>?_?@0\@0\@t{@YA\C\DqD\ZEG-GPjGgH?VH\I2\J\\KtO+\O|KO\rR)SLS`TTOU*UU^UwU\>UV\X\yZ\\[b[\\B_\\\n\\\\]~1]^M^_J_~`Baךbcc@e\rhh\i)jGkln\"<nFo\qo\\Zp^\qt<qKrKr\s\0vCwz(w	xu\yE\{`{\|c3~O~V&~Y\\'%i\׃V\fө\[!\b[JiYC1k\\Lq,\\+W\gr#l=$%\\fq3IQڣ\z\\}\<\lg!Q{eF}Z\$\\na|ۉen\i$z}P\\3\\\\<5\\LqŅc\\\\l\f\[\\6˓͍\\\\\\%\(\F>ϻ*\\q\\#\\\\`\w\\\\]\\\G\\\#\\\\\LW\؞\\\"\\iߏ\m\x\\,\\\\\\_\\\\\Xp\!\q=\\m\u\Z\\$\\\\\?\x\Ja\W\s\\H\FN\`bGD3[c\\4+R\\Z\0?\Z\E\ZV/\Zv\Z\Z=\Z\w\Z\\Z:\'\Z:\ZD\Z\\Z	d\Z\n\Z\K\Z~a\Z\r\ZL\\ZP\\ZN\ZJ\Z\Z)\Z\\Z\Z\h\Z\Z6\Z\Z\n\Zө\Zgs\ZA\Zt\Z9\Z_\Z!N\Z!\\Z!,\\Z!\Z!\\Z#A\Z#ά\Z$\\Z$\v\Z%)\Z&\Z\'\\\Z(Q\Z)$\Z)\\\Z)\\Z,8P\Z,r\\Z-\Z/\f\Z3\Z5\Z6\Z6S\Z6\h\Z:2\\Z:hn\Z:3\Z<g\Z=$,\Z?)\Z?\ZA}#\ZA\\ZB\Zb\ZBF\ZBP\ZB\\ZC\\ZE\0\\ZGtc\ZH\nU\ZJ\n\ZL\"7\ZN$\ZP?\ZQ\\ZQ\q\ZR\ZT]\ZV9e\ZV\\ZV\ZXIZ\ZX\\"\ZY7\ZZL\Z\\\\\Z]4w\Z]\\\Z`	\\ZbL\Zdr\Zh	x\Zh#\ZkX\\ZkfN\Zkx\Zk\\Zl\\ZmN\\Zm\\Zm\\Zn\Zn\b\ZoA*\Zo\Zp\\Zq\Z{\Zr\Zry0\Zr\\Zr\\Zs\Zu{\Zu9\Zu\\Zv|\\ZvH\Zy(\Zz\Z{\Z|i\Z~;\Z\Zm\Z͘\Z4k\Z\ \Z7(\Zϛ\Zu\ZA\Z\'t\ZW\Z7\Z\\Z?W\Z\\Z\\n\Z	\Z\ZP\Z\\Z\Z\\ZF\\ZRQ\Zq\\Z)\Z\Zxo\Z[\ZF,\Z\r\Z*\Z\Z(,\ZK#\Zd\\Z\Z\\Z\@\ZO)\Z\\\ZPQ\Z}\Z\Zc\ZK\Z$]\Z\ZrA\Zx\Zg\\Z>\\Z\\ZH\Z/\Z\\ZU\\Z/f\Zp\ZU6\Z~\\Z\Z\Z)v\Zp\Z\ZJ\Z\Z\\ZQ\Z34\Z.D\Z/\Z7\Z4~\Z\f\Z׳\Z%\Z\\Zr\Z\Z\W\Z3P\Zo\Z\Zg\Z[\Z.3\Z\\Z\v\Zð\Z\C\Z\\\Z\O\\Z\u9\Z\/5\Z\\v\Z\\Z\\f\Z\\n\Z\`\Zʠk\Z\\Z\aK\Z\\')\Z\|\ZͭS\ZΥb\Z\ʐ\Z\\\Z\`\\Z\;\\Z\k\ZѤ\\ZѸZ\Z\D\Z\r\\Z\\\Z\ j\Z\25\Z\@!\Z\gf\Zؐ\\ZڟM\Z\[\\Z\\,\Z܏M\Z\\b\Z\#\Z\1\Z\\\Z\B\Z\H\\Z\\\\Z\NU\Z\\Z\\\Z\h\\Z\f\\Z\\;\Z\s\Z\a\Z\d\\Z\\%\Z\z\Z\\\Z\4s\Z\B\Z\X\Z\O\Z\#\Z\Au\Z\]l\Z\?\Z\\m\Z\2\\Z\\Z\nl\Z\\\Z\\\\Z\\\Z\\n\ZM\ZǸ\Z\Z?\0/\\0{\0ƌ\0\.4(\1tl\\\s\\	\n|\r*\\r\K\\\Rv<ĜG\0\\\R\.\v\%\Z}7ߩ\\ \$#z}#L#\n$k%\&H\'\'2\\(\2)g,N,o\-\/D/J//\1/\0&1952tN2xd3m\4u\4~5\6\7f79\9V;!<\=\?@Q@\Z@\vD&DQ`DwE8Gs\G.H\J\J\KL\n<L\ZMWcMZ\OmP8P\QQ*Q~Q\6R>U\UA\WXYܗY\]Z\m[N[\]] ^9^{`Ra\beyfxg}ghhh\iiHoi\\j<jF\jc\j\j\\\lOlVm\0n\\o$ooC\o^pqp\tvwxxy?z\\zӢ|\e|\}}\\}]\\\\\\e/F\)fo)\)$߰IONn\\yir\\\\ HՉ+*\txh65\\,\Mn\0\\DRTi\\"\2}\Pe5i\nqv\@\\x J+F\\E[\~\Zf\\=2<\Y\c\Ę\\H\N\}\\\)Ɔ\Ƣ\8l\\\\pwʒ\\c}̰\͡ͻ\\\jϕ1\6\:\\[ж\e\m\\S\\`\\\բ\֋\\\בJרR\\\5:ۡX\?`ܸ\\r\=\ޚ\ޯjߠ\'\\\w\\@\rS\}\/u\5\m\\\\f\R\\\W\\\5\o\\\\t\\\\b\p\y\)\y@\f\.\=\m=*\\\+Iy`\$\0n\0\\\0\\j\&qI\	`		ݦW\r%\\_X\!7o\\s-\	\k\\ZT\Z\7=>iy` 6 \j!h!$#`%W\%&\(!()\0e)u\*],N,,\D,\.\.D0V1\2\r2\4\4f5w?61\"6i(7[\80o8\>9z<7<=5>c?&?\Z?<\@\ACR\C\\D5AD~\E\F\F4F\wHHI\\J\Km2K\\K\LHFM\rMqNf\NOE\OQR{(RnV\NYG\ZLZ\\[X[\[\\\]\Z]d]^/0^l`aJaMa\&dPddeDf\cg=\h\r~i3\j\0lV@l\op1qntq\<q\)r\\r\\\ru\\yvHw\xxMz {~~\fU_\\\M\r|Y[t)\\\\\\4&k\e\./\ZW{vhg?{\ĒHQnxEd}\M\\\q\bbˁ\\iHʞm\Bn%\K>_o\?KfGf\"5\nD=G}y>S\(N(\\"(\&.E1<v%\[\J\u\)w\/1\\o\~\\\ˉ\\&\L\\V\H\΂\p\SИ\f\ҍ\\j\\-\\\\\\\\^ڟ\\ۋ\\=ܙN\}:\\ߍDߏ2\r\\\|\⯂\Z<\\1\+\\\\<\nG\/\\.|訁\ys\\'\\W꛻\?5\5\O\\\R\\\0\\\\\\Z\:_\q\V\2\4\\\\R\Y!;6Ikl@\\v\"5F$\0XXlҭF^\\\\\GRv:q	Y\n*\a\\r\n\\r)\rL\ruG)@dqBb\\9!\\\"#D\#t3$:q$p\$\\%\&}&\B\'xS\'$(\'*H*͚*\0+P\+j,,/,q2/\p0y11-123\33\3?474k\5-5\%79e\09\;:<<\= f=c|?@\\AY\CCZDwHb_HIL*\ZL2pM~\NH\'OP\KQufR/R0\S\T^\Un3W\X\Xb\YBZ[\\\4][^^\e_\_h-a\bi\dfd6eg\\iPJl5(l\n,\ntpY6q\rziteIwx)lxry|z\P|\\~6d\n\\ 4\\\nɋ\L\^\I\\\IP\\e@\{\0Y\\yq\Z\q\\֡\\ʑ\\\\\"y\\6|K\\\\]\Y\:qRxb~y>-!\Zg\Z8b\dt\OjO\=E\Î\_k67e\y\Z!2b\X\\A\\ǥ\\K\\\\\#\LT\\\\p\͂\\o\AI\L\\ЅJЌ\\\Y\:\\\\\\n9\\\3\(\oZܴ\\\N\(\\\\\\\\\0\x\\\\\\\	\+\z\\떜\n\\\\\\\\\\3y\o\\6\]\\\Z\V\\(\\ۆ\H\\q\4\|\a\z\FO\+\0(\0W}a3\0\n\\\\\rR\>d^&\a<s(*\Z\()\02[bT\\!\y\"$$xI%aN\'\'(L**O\- -.L-j\"/q\/0\2Y5/X5\ 6\'\6a67@m7d7\\8*:\;:,;\)>@w>\@9@M\@anA\AB:ZB\DCTxE2\F\GSkHQ\HasHHN\P?PLPrIP{dPPIRS(SnT3>Ts\Vo\XYu^YJ\\\]\^2^7_jb:c\c\c\9c\+c\\dded\d\\dke%f\glgh)hUlx\l\phLpq\rr=s3sosǴs\u:u!w=wMaxxyy\\\z+z|\z\{+|\~G-}\j\E:&?g\\#\`W]kK\4IΣ\\t\\\ڞ\\RG\G	\\H]\\	${\\{y8[=[\aǁۃj\\\t\`:>h\,{\v/Kfx\\\\7N\\\\n\04/XiY0HP\	\\WRO_\K(M{j\\r&>wCb,\\qD>MHQ\S\\	\\\x\Z\{F\H%\?a\\e\r\y\ܴ\\\Ī\\J\\s\\\\\U:\kŒOŞ\\\\/\\v\F\\I\\U\Ʒ1\\U\\)\\^\\\\\t\\J\\\iS\tͿ>\+ϋϙW\\%\\/\ё\ؙ\\\\3\֤w\a\\G\_rڙ\\\By\\G\\\\\\xN\~\\#>\\\\O\\+\kE\\\\Ͻ\\\\w\`\f\\K\I\\M\v\\}\%\=a\@\q\3\\o5\\u\r\w\\\\]\\C%\\\\-K;\x\0\0T457\\3\\n?K\0~S\r}3\\17\F\i\h%xHj\\v@\0*Z^`u90\D!\ 8\##\'%%\\'*N+\{,\,Ћ,ڳ-\e.\n\..0)03\4R5v6U77\\7\8\B9m\<?<Q==>-@%\Bb\C\TDhDjE|VE^EWF9gFGG׌HI&rIwKL^MN(\NIU\Uo\V1X1XZ$\\ձ] ]}W]^\r^\^Ѻ_3V_ҋaVcvdhhUi<+i\\j9EjUjkll͒m<s\v6vEvs\v,w\?xlxrIy\z{@\{x{~x{/\$\>\s\?Rvmo\j\nN7pg6N\\H\Y\<8iRb\\"`\n6$\%4Kr\d\Z\02\5\N\nS5Ek5av\h9\rMiƐ6Ȍ1R@ \\n\pC\g\?\T\\ }\t\Ƃ\B\ǣQ\\\ȮVɲ\\\\\\\w~\ś\\\\\\\<c\6\͐\&\\a\"\)\Ԍ=\(\NV\1\R\bۈr\\\\\\c\-0ᶙ\\`\⍆\h\\\n\\9\\璶\\\_\l\\\\\\\\p\\\\\\.r\}\%z\N\\\\d\\\\a\ۗ\\,\\,5^}a!q.\oV# \08 \0 \0>v H  u \ \> >) ! P` I\ L 	h\Z 	þ \n\\ \  ) j } \^ 	\ B  \\  } E1 <U  \Z$ Ù ؾ * ] \ Կ    \ !` ! \"}e #&I #AY %# &j &\7 \'L (sN )\, *( +M\ ,yW - . 08\ 0>` 0v 1 1 1\ 2=\ 2pU 2\ 2( 2ك 4pq 5V 6D 8̢ ;T\ ; ;\ <Q <\O = >LD >\\ >\ @ A A AB/ A\\r BC8 C!P F\ G\ G\j H\z H\ I.\ KH6 K* N O\ O\? PIC Q\[ S3 S S T\\ T\ U Ud V  W<j Z Zb^ ^y `1 `zB ` b\0\ b% fV ha\ i\Z i k# lJ nQ\ oVA onY o\; p~ q\r\ q\ q sD s6 u\ vc\ w w$ wM w x4 x\ y- ya yE z=h {D\ {\5 |w- |* |\\ . d \ Ky 3} O X& \\ \ = ~D  \ !z \ 8 1 u  χ S+  = \\  2  \\ \\ - \r Z \ 3\ 4V \\ I\ l ( \ \ \\ \ \\   / ds k n 9\  \\ ^ \ \ . g % 0 1 Z #  L - \\n x Ӧ z\   \ #N [ !\ r$  9  ²\r \% \\? ƴk \4 \U ɸt \Y \6| ϻ| \E ы\n \sK \\ \\@ \\r Մ! \e\ ֥ \\ \% \\ \\ \T` ܽl \ \b \ \+ \?9 \\ \u \q \\; \\ \\ \ \&H \\z \՞ \; \o\n \\ \\f \z\ \ \d \\\r \\r \\ \ \h \\4 \ Pn \n \ \$ \\ Ѽ v^!\0\!\!r!0!\z!|!!\\!T(!j! !!!!	\y!+!y!\\!)\!D\!R\!=\!\\!\!!Y!E!\!\r:!\!\1!\ri!J!\;!\! \!\"\!$\!%C!%!+7!,)!,\!-}!.=0!/Q\!/\!/!1\ !1\!2^\!2!3\g!3\!3\!4M!5U5!6#H!7P!8Lj!8!8!9\z!9\!:p!:!;\!<!k!<,\!= \'!=!Aq?!A!Cl!FqQ!FI!JJ\!L)!M6!Mw!N\\n!O\!S!S\\!T4!U\\!U\ !W!X!Y:!Y<!Z![r3!]\nn!]\w!^q\!_\!a$!a\L!b!cl!d!e u!ea!e_!fs!gs!g\!hS+!ik7!jd\!jr!jJ!j\!k)\!l\!l!n$\!oR/!r!s\n!s\!t\3!u;y!uˊ!w#\!w\!xf!zԵ!{`!|L!|!\!L!I!!!P\!\!\!\!!!\t!\0!1!k\!\!\\!\!S!\8!\!9\!W\!!>!!4!O!\!\ny!i]!ޟ!K!`!I\!}!$!i!\)!V!:!\]!!\\!E!l4!\3!!!\!!\,!\rG!\r!\!&H!\!F!\\!(!\!\\!\!!!N!#(!!8!0z!t!!!\!\p!\N9!¢(!\!\\O!\\\!\\!\Q!\&!ƥV!\\!\!\\2!\!\\q!\I!\\\!υ\!Ш0!\!\\0!\P!Ѭ!\.!\f!ӴY!\\!\]!\\!\#k!\K!ַa!\ҁ!ۜ]!\\!\QY!\*!\\!\I!\\!\\!\!\f!\ !钉!\3\!\>T!\\?!\&\!쁘!\	!\v.!\PW!\\z!\0!\\\!\Ʃ!\1*!\N9!\!\7!\Yw!\?M!\v!\W!\׉!\\k!\!Zy!\!d!^!\!\G!\!Y!\!^\!\!\!\\r\"\0\\\"\"Sz\"o\\"3\"\\\"{\\\"Z\"\r\"p\"\"|\"\\"\"C\"<N\"oC\"\"	\"\\"	<@\"\rX\"_\"ܕ\"~x\"\T\"X9\"\1\"\"PK\"X\"\"Ot\"H\"\n\\">S\"V\"+\"\\"\\\"\ZO|\"\\"\\"\"s\"R\\"\"\\"%\\"&5\"&G\"&B\"&\K\"&\\\"\'8Z\"*^\"*\/\"+u\",t\",\\"-Uq\"-\".^f\".\\"/(\"2\"2ű\"3%\"4L\"5\\"58\"5\"5O\"5\\\"6K\"7R\"7.i\"7y_\"8%\"8\\(\":i\r\";F\"<;\">OO\"?a\"@X	\"@s\"A,\"A\"A\\"D]\"E\\"H\\"H\n\"H\"I.\"K\\"L3\"LQ\"L\\"L\\"NB\\"Pur\"Pއ\"Q\\\"S\\"S \"U\\"X\1\"X\"Y/l\"Y\"Z(\\"Z\"[n>\"^3P\"^d>\"^\"^\\\"^7\"a	\"aX\\"a\\"c;\n\"c\@\"d\\"e.\\"e\\"fZ\"g+\"h\\"i*\Z\"m<\\"n	/\"rn\"s \"x\0\"\"xԐ\"yP\"y\\\"{I3\"}v\"~\"~6\"~\a\"\"f\"4\"\"ǋ\"\"\"y\"u\"\"\"+\"[H\"\\"\\\"}+\"\\"\|\"V\"x\"\l\"\|\"\"r\"\t\"t\"<.\";;\"+\"\"\"\"\"\\\"T\"84\"\"\"\"\\\"\"Q\"\"\'7\"w\":\":\"<\"\\"y%\"\\"\\\"\"V\\";\"]\"bk\"o\"3\"<N\"<\"Y\"\q\"E\"S\"X\\"\\"|\"\"؝\"ݣ\"\	\"ȓ\"\}\"x\\"=\"~\"\#\"\\"\p\\"\t\"\\\\"\\\"\q\"\\\"\\'\\"\q%\"\u\"˹{\"\\"\4\"\Z \"\fj\"\g.\"ϲ\"\͝\"\\\\"\i\\"ё,\"\\z\"\\r\"\\\n\"\\)\"\8\"\=\"Վ\\"\t\"\\"\C*\"\\W\"نG\"\\Z\\"\`\"ܥ\"\e\"\o\"݇<\"\\"\\"\Z\"\\\"\\\\"\U\"\\\"\k\"\\=\"\\\"\6q\"\d\"\j\"\g\"\\"\\r\"\\8\"\T\"\q\\"\\'\"\HW\"\\\"\\\\"\h\"\l\"\\\"e\"\\"\x\"+~#\0\#\0H3#\0k&#\0G#O`#xa#+#,#1\#f\n#ׇ#5#\#\#2\#H\#]#R##\\#	6\#	>#	\#\n*X#\n\#f##@#\(#j#q\#X#v#A\#.@##\#.t#7#\ZK#\\#\#\#a*#\\# #!\\#\"\###$\#$\#&zD#&\Y#\'\G#)\#+#-lA#-p#-p#-\0#/\[#0`#2#2;#3Y#3\"#55#5P\#5\N#8V#8#9#:Y\#:t:#;\Z-#;0#<\#<̲#=A_#>6\#?$\#?J#?U\#?n#@@#BH#CT+#D\E#F#F\`#G[I#J#J\\#J>#K>/#M\#Nԅ#O#O\#Oͫ#P#P#P\=#Sj\#V:#V#Z{#Zɀ#[1#\\z#\\g#^u#^;#_#_\\#`U#`\^#c#e(#fE>#fȖ#h\\#i#k#k\\#no\#p#p0\#pf&#po#p|t#pJ#q#ql\#s1b#t2#u&#uO#v\#vKS#vX*#vp\#v5#x5U#z#z!#z?#|̴#}\#~:#~\#;\#\#,Z#U#5##u#\\#t\#ǯ#?#\#0\#\a#(\#\#\#2#\#^#\\#ό#0#G\###L#\S#)#\#\#\\0#.#DZ#\\#X\#\\n#|#a#\#\\#&#A#\\#\#-###\\#e##]J#8#+$#C###\T#\#7##\##>#+#xw#R)##&##d#\#\hb#\(\#\G8#Ų\#\/#\q#\E#\Z#\Q#ȉB#\\n#\\#\?#\]#\\#\%Q#\Z#ͮ\#Ѝ[#п}#\\r#\5G#\P\#\©#\\#\9#֋(#ֶ#\QJ#؃\#\\u#\##\]\#ޮh#߀#߭\#\\}#\29#\K{#\4\#\\;#\#\\#\#\S#\_#\Z#ꊊ#\> #뷡#\U#\3\#\r#\\\#\#\g#\#\#B#H\#Il#\,#\6# #\;$\0$\0{\0$)$$$Ky$,x$	$\n7\$\n$%\$ou$\r\8$Mi$T?$$aX$ы$P$|B$Mv$y$\7$t$xG$\$\$8$s$$,$e$\"ϡ$\"\\$$\$$$%x:$%\$&\"k$\'$\'$(\$*m$*Բ$*A$+H$,H$-_\$/&$/-\$1$1$2\w$3\r?$4$5{4$7\$8^$:\\$;$;\$<$<T$>)$>m?$@:[$@U\$@$C\Z$C3$Cߧ$C\Q$D:$DgM$Dq$E^$Ff$J:$J~\$Ki$Kf7$Kv$L$M.$N$O$Q\$Q\!$R\$Sj:$T\\$U.\$Wy\$W\\$XF$XB$Yw$Z)e$ZQV$Zz\$[\\$\\\Z$\\\$a:$c/m$cK\$c\$ey$g\$h$mc\$m\$n$oO$o\$p\nM$p3$q$q$rAz$rH\$rė$sj$s^R$s_\$tc$u7$v\0B$v>n$v}$vބ$wS$xe$x\6$y\y${\\"$|\\$|$}\7$r$hs$\$3S$k$$$\$\X$\$?$h$#$U$DX$	$\\$y$o\n$\\$$\$$p\$\\Z$S>$S$X[$l\$\\$m$\$$\$O$+\$a$\$\\$\Z$j$\\$|$$\e$\\$\Q$\$4$\$0/$$\$\Z\$\\$)$3h$$\\$}$\($\$\$\$1\$\$&\$h\$i\$j$\$$k$+$h\$\\r$$$$$\\$\$<$*$\\$\x\$\\"$\G$\K.$þk$\$$\wd$ƭ/$\t$\$\$ɤ\$˽V$̅$ξ~$\e$т\$\Su$\\\$Ԋ.$\Ÿ$\%\$\8<$\h\$\&$\$\g$\ƺ$ܬ$\\9$\(\$\cm$\\l$\R\r$߻$\\\$\$\$\\$\{$\(n$\\p$\I$\$\\r$\\x$\$\($\	$\|$\\$\$\*\$\\$\1\$\=\$\\'$\\$\0$\֧$ϫ$%g$\\$$$3d$$\$_f$o\$Q%\0IF%1%nt%%E%%ɐ%%%\%\\%\%%Ya%\%	q\%\nٯ%%7t%\rE\%L\%\\\%^)%%%v\%\%D%\\%\>%\\%%\%\\%\%^%\Z%\Z~%y%\n% %!\'\%!(_%!mB%\"\"\%\"$%\"\%$\1%&\\%&\*%\'l%(\f%*{%*\\%,\%-N\%/:s%0\\%28%3#\%3*%3\%4\\%5H%5\\0%63o%69%7T%:\%;3\%;\w%<|%>wj%?%@\r%A~K%BK\%BY%B7%B\\%C]%D\%E;X%FwH%F\%FȔ%G#%I\%I\\%J1*%K\%Lt%L\%M\%Ng%Oy%RN%Si\%S%U>\%V+%W%Z\%\\%\\\b%]^%]ó%]\E%]\%_z%`>\%`%`E%ap%aØ%c;`%c[I%c4%d%f%g\\%h&<%hc%j%nJ%n\%n1%sN%uh%u\i%weS%wuR%w\%xb\%z8\%{p%|F%|%|%Z%R%\%^%R%\%%Ȕ%\S%9%\%%/\%G%0%\%w\%\{%	%N%,%a%\%z%%0\%C\%@%V%%\W%e%n\%-d%M+%\\%f(%\n%eW%PV%^M%B?%\3%\%_%,w%\\%T\%\%%0\%i%6h%ٸ%\\r%i%\%\%@%\\%¦%\%2%ơ%\)%\Z%W\%^%>%j%\%\\%B\%%%Q%\;%\%\%\"%\\%)%\\O%Ŷ%\͝%\\%\$t%\\\%\M&%\Ñ%ˡb%̊%\=%ϐ%\\e%\p%\\%\\%\j%ҫ\%ՠ%ո\%\n%֒\%\\nH%\FP%گ\%\)%\	%ܡ%ܭ%\\\"%\=%\VU%\+g%\\`%\%%\%\x%\\%⸡%\.%\\*%\@O%\\N%\A%\9\%\U%\%\%\f%\%\%\\%\*%\%\\%\%\F\%\N%\R%$%%%\%%;\%=%Y%\% <%!%\&\0,&%\&r&\\Z&&Ư&	\&@&C&\r:&1&(\&C&?&&\&\O&\Z&\Z\h&&\&,\&\&t\n&n&!g&\"Uu&\"l&\"&#&#\&$`U&$&&AZ&&\\&&\O&\'\Y&\'\0&(F\&)=\&+\&+&,X&,m@&,\\&-/&-\&.\&.C&/%&/\i&/\\&1&2qT&3,&4x&6c&6=y&7\"&8\&9\"\n&;\'&<{<&<&>f\&?s&?en&?\&@\&@\&A\&Am<&C+&Do&EC&I&K	\&L\&M[\r&M\\&NaM&Nв&N\&QP&Rg&R6&S&T܉&U&U\&Wp^&X\&Y\K&Y\\&Z\&[#&\\|&]	\&_&`	&aB\&a\\&bW\n&e&iM\&i&jN#&j&j\&m	T&nͣ&nm&p=&pt&p\8&q?&qsV&r&s\&t2&t&u\&v\A&w\r&wo\&wrb&wX&x/\&x\&x\b&yC&y&z&{\'&{Ř&|ް&}]\&n&&֕&bc&\N&3\&\/&&&& &]\&\0e&& &p;&|&\\r&	\&\(&\&\&~\&&\&&U&&l&\&56&&\e&$&S\&f&L&:>&a&an&}&\&I\&/&&E&\&\&T&\&i&C&E&7&&z&\&&0&٥&B&j&\&^&xn&&|&&g\&]\&\&\=&\.&Ƿ&ǿn&\<>&ȷ\&ɵ\&̺\&\&Κ&\z&\\L&\D&\_\&\\\&ӃJ&\\\&\C\&բD&\,&֊;&٨1&\\=&\\&\\Z\&\&\JL&\BE&\\\&\H&\g&\\C&\Ee&\\&\\l&\\&&\\\&\\&\o&\/b&\\\s&\R\&\k\&\*&\܍&\\O&\z&\\0&\&\i&\v&\;&&\\&F&\\&s&\#&j&m&Ve&b\\'\0~\\'\0\'\\'\\'\B\'(\'\'o\\'q\\'k\\'\\'\/\'\V\'\s\'%S\'	\'\nL\'\n`\'\n\\'VQ\'\rB\\'\rI/\'\r\\'t\'}P\'\'\\'0\\'\\'\'K\'\'\'S\'Ǭ\'Dm\'\Z\'\\'\'\'\\'\\\'!Ad\'#L\'$\'%U\'&\'&\'(<\\'(j\')DN\')\\\'*CT\'*[\'+	:\'+z\\',\'.\\'.f\\'.\\'/\\'/\\'0\'0\'0\'1\'2`\'3(\'3\\'4Hu\'5b\'5\\\'9\\\';\'>:\'>Ta\'?C\'?\\'? \'A<\\'Bj\'BM\'F@9\'Fl^\'F\0\'H$\\'H+\\'HE\'H`K\'I \'Is\'J\\'L\'L-\'L\0\'Mf\\'M\'N`\'\'O	\'O\3\'Q\Z\'Qb\'T\'V\Z\'V$\\'V\'W\\\'W\\\'Y\'Z\\'Z6\'[\'[\\'\\<\'\\Z\\'\\c\\']\'_zp\'a2\\'b\'c*\'dp\'f\'h\@\'i+\\'i\'j|N\'j\'m\\\'n!\\'p\\'q\'^\'v\'x;\n\'x^\'y,\\'yd\'yr\'z\\'{/\'}C8\'w\'L\'3\'B\'\\\'X\'kl\'\\'P\'\'\Z\'\'\'\'Y\\'\9\',\'\\'޷\'\\'S\'O\'\\'\\\'}^\'װ\'k%\'\'\n\'К\'z\'\'ʥ\'\\\'\'\\'\\\'%J\'zo\'*\'gr\'\\'?\'g\'7\'=\'\'\O\'{4\'\'\':7\'\'\\\'\\'/\'\'\'yI\'*p\'H\'(\'\;\'Or\'\\'\\'A\'\\\'D \'k\'\\'8\'Sp\'\\r\'x\'\'\\'\\\'\'B\'l\\'!\'\'©\'\G\'\C\\'\\r\'\g^\'\>D\'\A\'\\\'̿{\'\C\'\\\\'\\\'\3a\'\\0h\'\R\\'\\|\'\q\'գ\'\(I\'י\'\\u\'ؚz\'؟\'ؤ]\'\\\'\\-\'\u\'\\\\'\TW\'\\%\'\,\'\.\\'\7\'\\\'\\'\\\'\\\'狤\'\ō\'\\rj\'\S\\'\(\'\\>\'\-^\'\X\\'\h\'\z\\'\\_\'\\\'\z\\'\\'\\"\'\\'\\D\'\{\'\\'5\'p\'/\'}\'\\'\\'%\'f(((1(Y( \(^(\ ((\\(OX(}(j\(1((Lz(0(\\(R\(t(:\(!(B(!(;\(\Zr\n(\Z(\Zӯ(w(\'((\"Ԡ($g(%\(&L(&\(&\\((()()(*\(+\r(,V(,ۨ(-ԡ(/5(/(0\(0W\(0	(1C(4b(4ī(6\(8Md(9(:\Z(>u`(@(@\%(@\c(A8(Bi(B7(B˽(C\(Cd(D\(DZ(Eg(F:(F?(G_\Z(I\(I\(LhY(M\(N(P/(Q(Q\\(Q\.(T\e(U7V(UW^(V\(Z\(Z\n([([\`(\\(](^N\(`\r(`W(`yh(aۦ(dU(f\0(f[h(g{(g\\(h,(i`\(j4\(j\W(l۔(l\\(m\M(o|<(p\(q#(qɝ(t((v4(w{\(x4(yv(yï(z\-({Y({9h({^(O(\n$(\r(^e(zg(\](b(a((zU(,(:(E(5(\(~(h(<(\\(\:(cw((({j(=((\(d(\#(\(\<(H\(\\(ݞ(,\(a@(գ(:((\X(\"O(A\(\(\(S(\(\(\	(\n(4(?(s((u(\(.(\(}(@(\(w((\n(\h(\K(\\(\%x(\i(\(\i(\5(\Xh(\N#(\\(ȃ(\~y(\\\(\\"(\\\(ҧh(\\\r(\E(\\-(\?(\w(ח(\(\a\(\c(ހP(މ(߭\(\\\(Ꮨ(\(\T\(\h(\L(\K(\o(\\A(\º(\d(\`\(\\(\C\(\F\(\{(\{(\(\p(\(\\(\܃(\\(\.(\xT(	(](:h(`w($(s(_(a0)\0]\)y\)\))W)	\0){d)8)\r\">)\rTZ)\r\).)\\)p)\6)Q)l\)N@))?n)ʔ))%\)\)\ZC)\Z\),\)_0))\u))\"D)#ܡ)$M\)$\\)&\)\'j)\'i)(\0)(%))fp)*)*|p)-9).j\)0X)2\!)2\A)4)5i )5d)7S\)7\\)8z\)8\n):i/);b\);)<T)<\)=b\)=&)=)>G)?)@\)Aû)B\\)E\)E\)HP\0)I/)Iv\)J\)J)J)J[)KM\)K\`)MN\)MO)O_)O^)Pr:)Sew)U\>)V\r )V)W[\)X\)Y7\)Y\\)[\n)]X)^\.)_e)_)bP)b\)cWS)c\v)e3)e\)g+)g@)g\n)g)iG)i\)lt)mW)m)oF])p&)p\\)sTs)sU)s)v\r)vn)w\0\0)wK\)xw*)yS-)z){)|)}J)~)~o)c)@))\\)f)^\)R\)\h))`6))\\)IB)7)))\1))\\)/)\)W)f\)%)@m)\T)\)B)b)\))\)rl)@\)\))\:) \))9\)\\))(i)-))\)	)))س)7)0A)Α)\Z\)\n)C\)J)5)<L)N)).)W)%E)\%)#8)V)\\)0k)\)A)~!)1)5)E)\\))Κ))G)\B)))³)\Ԅ)\K)Ƒ)\,<)ȳj)\\)\)\CG)\q\)\6W)\?H)ә)\y\)ղ[)ֻo)ذ|)\)\/)ې4)\)\]x)ݽ\)\Ј)\\0\)\a)\2)\\\)\3)\\)\)\ۣ)\ )\\)\\)\\a)\ާ)\\o)\>%)\Q2)\wq)\)%)\\)\+\)\9)\\)\U)\43)\})\{\)\k)\\\	)\+)\\)\s)\~*)\\)\\\)\)/)3))ײ)a3)j)ڥ)i:)\!))i*\0\\*`*$*l8*\*E*\7*\w*5;*\n.*\n*<*\\*\r`L*;y**\\*\*9*k*\\*v*{**&z*+\*\Z*L\*l*\Z*?\\*d\**!s^*\"\\*\"*$*%C*%ӻ**\0t*****+.**,\*-		*-u*-	*.a\*1n\*2&*2B\*4*4*4*5\*5\\*7F*7*:\*;*;*;\N*<`*<*>*>x*>pj*?*@M*@#*D|\*E\*E*E\o*Fz*G*IrD*J>*Kn*M*M/\*M{ *M\D*Og*O\*O\J*Of*Qy3*Qg*UGN*V*W4*W\h*X-U*X8?*Z*Z\A*[K*[^Y*\\b*\\\*^<)*^r*^\*_Z*_\Z*`5*`n*b\*b\B*cn\*d\*eN	*e*g*g\H*g\*i*j	}*j*j\$*k*k\\*k*k\*nI*n!*n\\*pE|*qR\*r+\*tb*xx?*x~l*{V*{u*|o*|\*}j\*~}l*~\**0\*\*\*\*g>*֘*\|*H@**6*ǎ*Ɏ**;*ʝ*\O*X*[*El***d\**\*ں*ª*-0*a*\#*\\*0**\*f*#\*Sl*W1*n\*t*׶*/b*\*@*\{*p*\n*X***c**?*߱**\*\&*\\*\6*\*34*\[*F*\\l*\*\*\d*\y*\3\'*ơ_*\ެ*ǖ2*\\*ȾZ*\Φ*\q*\\\*\-*\\*\v*\\\*\KP*\\'p*ג*\Nk*ۀ*\*\W*\l*\j*㮖*\4_*\\*\V\*\R*\\*\f*\\*\&*\\*\\*\1=*\3*\*\*\ *\A*\\\*\;*\0***\\*\\*\*]*\*\[+8\+\0+&++D+ּ+z++Hl+	 +	\ +\n+	+\q+\r\\+\"\+%+o++\+\+o%+\+6+gZ+\\+\Z\G+>\+d>+\++ fp+%A.+&Dz+\'r+\'\+\'\P+\'\K+)v+*\\+*\`++++++\\+,+-Q+.!c+.6+0+1N,+1\0+1\\+2\+3@U+4I\+4Z+5X>+7+7+75\+79+8lr+97\+9d+9\+:\+<\+=(Y+=\+?\\+Ak\+A\Z+C\+C\d+D|+I+LQ+N+Or+Po\+Q\+R(+T%+T9p+Tp\+Vg5+V\$+Wz+[$T+\\ +\\o\+eR\+eq+e+fAd+m :+oT+qq\Z+uv+xS+y\h+z\0\+zZ+z+z`+\\++\(+\\+\\++~+ٱ+7+x+\++v\++\+N+Z3++M\+ߕ++P +VS+\+\n\+b/++!+C+\+U=+ø+\++ +]+g+ +ǅ++\+\+:+^[+F+$++u\+\o++5\+\++k4+\+\t++\+F,+\+xb+8+\+\}+J+g+g\+l+\+\`+\w+Ú7+Č+Ň)+\\(+\~+\\\+\1\+\>+\I\r+\i+\q}+\Z+\+\+ο+\+A+\\+\B+\+\\'+\.+\#N+\\+ކ\+\\W+\C	+\S\+\q+\\\+韬+\++\\\+\\+\3\+\+\\,+\\\+\f+\<+\+\\+\\\+\w+\K\+\\+\4+\%|+\\+\D\"+\+\+ʗ+5v++\"++A\+Y+\,\0E,\0\,<B,p,\\,E,4,,#,N2,	Z,	,\n~K,\n\,!,)#,\\7,\z,,\,6+,,\,B,dM,\,\,, .,\\,X,@,n\,\,G\,Zw,\Z,\Z݆,/,,,,,\J, , ,!R/,\"w<,\"\,$\\S,$\\,&,\'e\,\'>,(a,*\,*\,+PM,-Oc,.B,.YL,.\S,/\,/,/r,2Y,2,3,3\,5\\,5\,7\,8)n,8\,9bV,;	\,;\Z,</%,=,>],?,?#(,?y,?\\r,@/,@8.,@\c,A\,A,Aϼ,D,Ed,Gz\,HS,I\|,LV=,L\,L,Pl\,R\,R-,SFE,S,U\,U&,V3z,W\.,X\,[D,[R,\\,,]n\,]\,^?,_\,_\J,a8$,a;,b\W,b\k,c,d,ef,f/,f<\,g D,hK\,j,\,j20,j,j\,o\,q\,r`\,rX,tZ4,u\\,wD\,xpr,z\,{\,{B@,~M,~m,,~\\,e\",,B,\p,,\',ki,\D,ڂ,y,=,,P,_),(e,R,,\,,ܑ,\\,\,M,h\,,P,P,\,&\,,,\l,-:,p ,*,\,7,e\,\,\,3G,G,],f6,,9{,\2,Ke,e,Q,\L,._,,@,\\,6,(\,\L,\"w,a,\,\,\,\\,\,\GD,\,\7D,Ĩ,\c,ƃ,Ʒ,\d,\,\,ș7,\8,\\(,\\\,\Z,\,\+,\\,\,\f,\o,\\,\(,\\,\R,\؎,ٲT,\g,\D\,\~,\!\\,\+\,ݗs,޿,\\,\R,\Hq,\d%,\r\r,\\j,\?,\$,\:\,\2,\#b,\N,\a,\\Z\,\,\\\,\\\,\ ,\yo,\,\,\,\\>,\\,\nV,ҳ,(,\\,\n,,\w,p,,-\0P\\-s-P-p-\-.i-Z-pT-\-\\--\-=5-\n\rh-\0%-Vd-\rq-H-b-z- M-\-]-i-v-\-\V-S-\-+--Ġ-%--ъ-\\-zY-)I-G-!3\-!M-#4-$a-$4-$\\-$\z-%E-&f-\'ni-\'\b-(\-*-*\\n-+-,\---0\y-0\-2ο-4%-4-5\\-6fr-6\-8F-8-9,-9\\\-9\-:x\-:\-:\\-;\-?U\-?\-@\-C|,-D{,-E-E\-I!-I,n-JN\-J--KDc-N^-OQ-R\"-R<d-RN?-SL5-S3-T\-U\z-V-V\\n-Yi-ZE-\\;-]%-^yf-_\0B-`-b\r-b\\-cs-c6-dB-eB-ei7-f\-f-k\rM-m\-n\\-o\\-r-s-s6Y-tF?-t\-t܋-uC-va-x*-x-zO-{/-|-}u-~-~\----G-d\-,-vU-1\-\9-\"\---\\r-\\-I-I:--4\-p-\-mG-|-\-\-\-\\-nR-L-h-=3-\Z-$-UM-Ǘ--]\-\--\-#-Z-<\-\-3\---\'-՜-\M-\--><-(y--%6-\	-\\%-\J-\l4-ʪ-\77-\jo-\,-\$-ю-\-\-\%\-\+-\@-Ӆ-\\-֕-\,-\n-\\-\-\T-\-\v-ߙQ-\$+-\\-\\-\p>-\7-\>\-\\n-\o-꽹-\--뾉-\=Y-\-\-\-\\----M--\-v-3l-N.\0L\.\00.i.).i\.Ҷ.{#.\\.;.x .f .n.\..\q.	\}.\n3l.\d.\r[.G.K.\.$.^..\W...kD.c\..j.\ZՔ.\Z\).\,.l.T.J. $. \n.!!&.!1.\"\.$!\'.$\.%Q..&J.&\.(d\0.)_.*.*\.*#.+].,\.-./\[.0.1.2&x.2\.4.4\.4KN.6\.9I.9K.9w.;\t.=\P.@\.@-.@\.AC.C&.E`.HY.HFL.HiN.I\.I\\.J2.QR.UPp.UV.V,.V\.X.Z:\.Zpp.Z.\\(.`\.`\.b)\.c.c\.f~\.h8.i¤.lI=.n;.oK\.q0.q\l.r7\'.s\.u^o.v\n.w\.xR(.zg\.z~.{7.|k}.|.~5.~j..~.G\.\".R1.gG.\\...\-. .\..I.Ї.&{.3M.P.4.\.O.\"\Z.R.\.hX...\\Z.\~.	.bI.\\r.}.\...\e.N.S.\\0.\.\07.>.\.m\.v.?.\\.q\.\.\\.{.\\..?.#.oQ.\\..F.\.{.@S.!I.¡.\\G.\\.\[.\Z.\\.\7\.\\C.\\c.\n.\T.\.\p.ʧ.ʾ.\_3.\\.Ϸa.Ѧ<.\\{.ӥ\".\/.\F .\c.\\\.ֹ\.\\.\T\.\08.\F\.\H.\X.\\\.\\"\r.\(.\	i.\\.\!A.\\.\v.\b.伩.\\.\q.\y\.\\.\+\.\1l.\\0H.\N.\\ .\@t.\	.\q\.\M.\.\\.\\.\.\4.\.\B.\rV.\ .\\\..Ɇ///S/\}/\'/\/\n/\rI\/\r/\/\\/Q3/e/\\/_/:/(h/Ω//\\/\Z\\/Q[/\\/\\/t/>-/\0/U-/p/\\0/Ӱ/ j/ /!\/#/#\/%?X/*/+Y/-\Z//\\/0Ô/1x/2v\/3<T/3\=/4@/44/7c/7./9\/:X/:\/<\/=ng/=\/=\/=\/>$\"/>\\/@\/B\\/E\O/FTT/F/Gx\/I!\/Kj\/K>/L/M./OG/QW3/RX/V./W\/[\_/\\\p/]\/]\q/^/^\h/^/_;\/_/`+3/a/a\/e\/gO\/gć/h/i\/jM/k\/l/l-/pd/p\/qyD/r/rJ_/rӤ/u\\/wy/yT/{-/}\/}L/~I\/~[E/\/\/\ /j\///\\//\-/S/-/\D/\0/m\/\/uG/\`/4\'//\/\///yZ/\/\/]\/0/5/R/\/o///uh///c/X//:\///\/rG/!/\a/$// //D/N\/z6/\.//3o///B /]//&/\-/\/\/\R//v\/d//\\n/%E/df/S/4b/=y/[h/>E/X_/@/\\/v/	/\\/\3/\/\d\/ƃS/ǳ\/ȴ2/Ɇ/\Mv/˙\/\\./\\/̪9/\%U/\m/Р/\V\/Ճ\/\E/֖/\\O/\\0\r/ۖA/\/ߩ\/\t/\/\5/\\/\\"/\A/◝/\\/\\/\\S/\]/\h/\\/\m/\\/\vV/\\\/\\\/\\	/\}/\Ą/\)/혥/\\\/\\\/\\\/\/\/\\/\\Y/\5/\\\/\9%/\!/\\s/\/D/@F/\/\S/#/\0Q\0ڼ0I\0?000\\08K0R\0	ċ0\n?0\r00\r0\r\0i0\0Rm0np00*\0\0\Z\0\00%200 wB0!|,0\"|\0$\0%W\0)\0.0.\0/101Z\03T\r03\07ү09+09609\W0=u	0=0> 0>\0?0?\U0@V\0@m0B0C 0Ee0F0GT`0G̋0H40HP0H`0N[0Od?0Ov0O\\0P0Q/0Q\J0R0T*\0V0W0W\0X@t0XY0Xe0ZO0Zu0^Ы0_\0`כ0`0ad0d+0d\0g9W0ge0h0\0ii0j/\0m\\0o\r0o\W0q0tF0u;\0uj0u0v0x:0y\0zF\0| h0}Ha0k`0]0q0d0\0\0է000qh000<d0-;0s/000\>0A00\q0Z0q0qp0s00rg0U0t0#\0%~0X0\d060\'0d0t^0\\0x70g0D\0c\0\0a_0v00M0\0MD00}k000\0\0\00Q\0\\0ڤ0V0tb005{0%00\0^v0\0\00R\00(0<0 0\\0\0\B\0č\0\M0\D70\e0\&\0Ɗ\0\\0\`M0ϗ\0\\",0\c\0\V0\n\0ۆ\0۬w0\Q!0܈[0\70\\]0\̂0\D0\+0\Am0\ݣ0\\t0\o0\\0\s^0\\0\|80\\t0\0\\s0\0\$Z0\f0\0\\Z00\\\0\)0\\0\o10\A\"0\r\0\F0\&,0\L0\M0ߚ0*0d00\O0060\B0R1e&11\1	161U11?N11\!11	ry1	\1\n/16=1C1q#1\1\E10I1w1\/1W1\[1?1\1\1S1^12b1+I1Tm1\11Z1 uO1\"\r?1#\1$1%\1%\'\1&	!1&\1\'j1\'1)1)1*\Z1+s1+ܱ1-\1.p1/10!10D12q14\14O14n[15V\16~S17(18I\18`18q1:\\1;1<Q\1<\L1<\1<\1@\;1AVR1Ah1B;1C\1C\Za1DD\1F\1G\r\1I\1I61I\51I\\1J\\1Ll@1M\1N71N<F1Q\01Qx1R-1S}F1S\1Tm1Wn1XY*1X1Y1\1Y\1Y1[g1[\1\\\11\\1^<1b1b21dGA1dQ\1fk;1g1i/y1iS1jX\1jo1m\&1nUi1n1o\q1pm1q\1rU1s1s1t\r1u\1w\r1w1yP1z8Z1zWS1zgU1{\1{d\1|\J1h1\1\1\1\@1e1\'1\1`1u1=)11x1ܪ1ˀ1s11\\Z1q1l1e1\"1\1/1\1|1D11\1\1 1)1\1q1\1\1Vu1o\1}X11߾11\R11=1y1Ԓ1Ob1f511\E1\1]1zY1S 1\1\=\1\+\1\D)1\\71ư=1\\r1\И1\P1\ۦ1\[\r1\\1\\\1\Q1\\r\1\bl1\e1\߁1\1\\01\\1\\1\\1\׾1\\1ᑅ1\C\1\c1\\1\-\1\\o1\%1\n\1\+1\.1\o1\-1\\D1\P1\\\1\\\1\\Ze1\/1\.\1\1\1i1\a1\x1\1\Z1\1\1\\"\1\qd1\1\*1\H\1\\B1\\1Vm11\y1d$11=1?P162\2\2\2\12\52\2-\2N2?22	^2	p2\n}O2z2v(2\o22h\2W2A2222\2\922,2Y2s-2H\2u\2B2\i2!\2#ve2#2$\\\2%^+2%{O2&\r2\'\2\'\2*J2*ƫ2+^2,YF2,2-8D2-\2.\20\Z20x21I22sK22\22\L23\%2526\\27272;\'2;2=}2>O2@<42B\r2Bq2C2DF2D`\2E42ECv2EM}2G2Gg\02Gt2H2IL\2I\2J2L\2Nd2P\Z2QȦ2RZ2R2Sʀ2Sʓ2T\2VY2VE2X\22Y\'\2YPE2Z\2Z\p2]\\2]2_`2_2bO2c2dd2e\2eM2f22g82h82h\\2i6\2jt2j2l2l\62mYN2m~2obF2o2q\n2qqg2qx*2r2s\2tIP2u52vo2w2w2w\2x#2x\K2y\'Y2zQ2{\'s2\\2m2\2\022\"|2!22w\2N2\\2-c22#2\2\2:2r;2$O2ʷ2D2`2Յ2\(2\",2i 2}I2\2{#2g\2292e2\2\22\22\62g22.\'2$22I2\62\2y\2[2\\22\\"2w\2222/2̔2V2\r22\ 2%Z2\v2H2(2\n2ϝ2\a2âN2\\2\72\Q\2ǳ2\O\2\	:2˘B2\\s2̮\2\2У\2\&2ҭ\2\02\	\n2\\\2\n^2ׅ\2\\\2\@2ن2ٟ\2\\\2\]2\\2۠\2\.2\<2\on2ޒ<2ުZ2\\\\2\\n2\2\l$2\\" 2\WN2\t2\\2\y2\o2瞂2\`}2鴴2\\Z2\\"<2\\\2\1r2\2\\\2\O\2\\\"2\i2\\m2\\2\\2\Ul2\f2\2\#2E2c2\2o2(2\)2 22\\"3\0i3\0<3\0g3\0\3a3Y73?3|\33\-3O\03\n\33>~3\r\3333N#3\\33\\\3\3^\33i33kt3r3	3\'\3\\3:\3  3\n3!>>3\"M3\"?3#\3$8}3&\03\'\3)]f3+\|3,	3-3.\"3.&3.-3/35d38#39^3:3<03=X3>\3?3?0@3?V\3@yZ3B\0,3B\3Db3Fk\3F\3F\3G\&3H\3H\3J3L>3LO3L\z3N3N\C3O\\3PV	3P\\3Q\Z3S3S3T3U?3V3V;3XN3Ye\3[3\\3\\3\\3\\3_\"K3c\3em3fM\3f\3jI3j\\3k\\M3l\\\n3le3l\3mB3n3nN\3n\3pB3rR3r]3t\\3uRG3v@3wk3z\3z\\3}3}\;323}3\3OP33m3333\\3IM3\3\3\3N3\83k353ߚ3\3 3C3&3p33\\383Z33Y3ٞ3<3x_3\33ش3\0f3:`3\\3,\3h3\3\3b33Q373O\33\T3Tz3\333o,3G333r3D\3\\3>c3q3\35\33\\"3C33b3\V\3\NE3\\3\\3\R3\l\3\3\c3τ`3\\\3ѷ3\\'3ԁ=3\I\3Ս3\;\3\A3\c3\3\ӣ3\׿3ܦv3\Pg3\[:3\z3\\X3\3\zT3\{\3\3\\3\g3\Jx3\t3\<3\>3\_l3\<3\3\;3{3I03s\3#3	3}3z3|34\0]4\'-4E4~l4Ү4\r4\J4\4	%\4\nB4\4\?4\4\r4\4c4\4\\4-R4\\41f444\4[4*\4\Z7M4\ZJ14\Z\4g44V4 ֈ4\"1\4$l4%54&\'4&\4\'cf4\'\4(\4)\4)84)˃4+>4+\4,f4.\Z4/\\40}\40\K41Q[41142v42՜42@44=4546*h46`46\48&\r4849!492\49L_49\\4;4=^\4?k4?)Z4?k>4@9_4AD\4Ai\4A\4B\\4B\4D8v4E\\\4E\\4Fx4GV4HF4Hj^4Hm4ITN4Ig4I4J 4K\\4L4N\4N+4OL\4OV04Qd4Q\Z4R\Z84RX34S&4T~14V4V\14Wv\4X4X\j4X\4Y4Yd4[\\4]=4]\Z4]!\4]L\4]4^4^4_4_[4`&_4a4a\4b\4ce4d`4di4d.4f=>4gQ4h\4i	4i\q4kGX4lx4lk4n5W4n\\4p4p\4pt4q#4s\4tg4t!4v4xa4y(\r4yD\"4zS4{\4~#h4~\3454\"b4\4W4\4\4\0\4!4Z$4?4v\4L4\4\"444o@44\\44\44U4\4%49\4\414>44\4c4m\4\\44L44E\4444\4.b4\\4fl4z4\42\4:44\r\04q4\74Y4]%4W\4G4}m4M4\4ͬ4>4,\4t\4\y444\44{#4\04\>4\Z\4\o\4\@G4\(a4\_:4ɪt4˦4\\4\yS4Αa4\P4Ϫ4\14\64\/|4\64\R4տG4\\4\K4\4\y4شL4\\4ٴ+4\D4\\\4\\4\4ݮ\4\g)4\\\4\\4⮱4\Ų4\N\4\a\4\\4\։4\\4\4\\\4\%4\R`4\\Z&4\a\4\uW4\\4\+[4\\4\w4\#q4\\4\\\'4\g4\\4I4T4vz44A4\5\0*T5d75\555v5Ȥ5	$5	{\5	-5\nDx5\nH5?5}5\=5\250R5m55\5\585;>5595\5Z5_5dz5X5\5/5c\5\Z*5\Z\A5\c5e5&I5U5 \,5!vr5\"5#$&5$s5$\5%\5\'!5)5*5,l5.\5.\5/5/)\5/̸5050*\5050\\51+515152\Z\525252\54Z55\^59\\5:\\5<\5<\5>Tb5>]5>׆5AU`5Af5C%E5D75Ds\5DƮ5Fp5Fr95F5F\5G/5GC\5Go5G5H\\5H	5I\5IU\5JD5J5M;\5M\5N>5N\n5N5P5P=5Q_\5R^\5SUy5T\(5X5Yh5Z\05[5][5^t\5^5_B5`\'C5`[\5`r5`\F5bܢ5c75d\;5h\5n5nvA5n5r\G5tP-5t5u#5uZh5u\5uƁ5v\0R5v\5z\5|5|ϗ5|\5}T,5\\5155Y\5p35555{5\5\f5E\55c5\:5CS5ӿ5\5\545[55X5(95-5J\55p555Eq5(5/^5*5ם515q55 5_\5^5	5\'5f>5@\5	~5x55\N5T5\J5y5\555\5\5!\5A5\5\5\\\5h]55\5p5q5(5\\5\\5\55\5\9\5\-5\15Ȣ05ɦL5\b55\\n5ˬ95\kz5\pa5\oj5\ә5\4n5զH5ց(5\\\5\0\5\\5\\.5\~15\\U5\\v5\#5\\\5\5\:d5\\\5\Y5\5\\5\d5덎5\\A5\1s5\P5\E5\85\L\5\P65\!5\\5\1D55\5E5\~5\A5|5p\6\0>6\0x66\6&\6yg6\\"6\nb06\ngV6O66.6\r\\6*j66oX6\Z6E6\\66 6N6P\6\56S66h\6b6\	6 gV6 \6\"36\"\N6\"\i6#e\6#s6%\'6&_6\'w\6)&,6):(6))6*[6*\6+v6,AT6,w6-5k6-\\6.G60&60 .6161\262\\63ʫ63\\64<64Fk65u\Z676768$}69\J6:`6:6\\6<s6<f6<\:6=f6>MB6>k6>\6?6@3t6B6C%6D6D6Dǜ6D\Y6F\P6G\6GsG6G\6I\&6I\\06I\\6L	6LL6Nr\6N\v6O-6O8\6O<6R\6S\96Tւ6U\&6WPB6W\\6XB\6YZ6Zq6[R6\\P6]Y6^e6^N6^h\6by6bV6c 6c4U6dr6e6fy\r6g.6h26i%h6i\{6k8b6l\\\6m_y6n6q\6sk6t6uE6u6v[6v%6w)#6wK6x6{#6{\y6{\P6|N6|6\6\'616 6\'616\6\6-S6\6\'M6E:6\P6M6-6/?66k666666OU6S\6e6]6N6Ç6%6Nb6b6(6n6\\6\6R6\6o6Ʀ66766!666m\6N6*6\6E\6\'6\6\r\69(6\6)l6y\"666&$6.\6e\Z6d686^6\6\\66m6\66\y66\U66z6ÖF6\X6\\\6\\0X6\36\\46ˣ\6\6\6\6\I6\\\6\ܳ6\.\6ϡ\6\-6\\6\\\r6\\w6\]6\\z6\[!6֦\6\\nA6\6\_6\\6\6\_.6\t\6޷6ߙ\6߬6\#\n6\v6\~s6\\f6\\i6\R6\\6\\6\\"D6\|6\I\6\\6\C\6\\6\6\޽6\\r6\96\\D66{g6666;Q6\6&6We7\0\\7\7VY74!777\7H757J\7	G\7x&7xh7Y7:7\r~\7\rU7\r\W77\\7\7d7r7\r7_i7\7\73\767:7T7a:7\7 7!f7\"\7\"$7\"(\7&[\7&]7(Rs7([7)NU7+7,/7.\\7/K7/]@70376Jx78q78K7;\7<%7<u\7>[\7?\\7@F7@\*7A9\7Aՠ7Dǖ7EJ7Eo7E\7FQ7F\,7H\7J7K 7L6B7O`7Q}N7R7S2\7Sa,7T7UD\7U7V-7V\\7XBX7X\7Y\7Yt\7Y|7Y7Zr\7[n7\\{\7\\\u7]I7^\7^7`fp7ct7d\7eR\7f|27ga7g\\7g\\7h\7jZ7k?S7lG7l\\7n7n17o\7pt7q+7t>7u?\7u\E7vz7v^7w\7x)7x\7ze17z7{\7{\\7|7|\\7} 7}l7}\67~7ec77\'7J\7\\\7\7077\	7\77\7(7-\76\7777L7c67Ow7{\7\7&79\7\79\7f7\77CO7\7k77\7c\7/7\:7 \7j\7m7777s77q777\#7D7727\\7δ7xL77E77a7\707\"7v7\7\077u7\g7^7>7\\O7\\07\;7\h7\\7\$7\\u7\~7ȵ|7ɬ37\\47̼w7\\\7\7\\rX7϶\7\ږ7ӕ7\\ZG7մ:7\o7\9\7\fv7ڽ7\\>7\͵7\\n7\\\7\47\7P7\_\7\\\7\:7\\7\07\5\7\b\7\w\7\מ7\\Z7\G7\O\7\\7\Ip7\>\7뷞7\s7\C7\\7\L7\7\(7\57\[7\7\7\7\,77g7wL7׊7J7\7\\7g\8\0 E8Q8u8	KR8	78\n8\n$\r8\ncT8\8V\8\X8j\8RV8\8.$8l8l88\\\88\8׏8@8\\'8#8\\8\8ug8 8\Za\8d\8\8H8׈8\\\8j8\8\p8<\8]\8aH8 p+8!\\8\"\"8\"Q8\"8#Ϣ8#\8%%8&l8&\8\'8(P8*]-8,j8,\8,\80i81]82>82p84\r84\_868687;Z88\08989θ8:\#8<(T8={P8=8@l8A8C\8C8Dm8G48G\\8HK8H8IL\8I8J\"T8J\L8L(\8L2D8M<[8Mx08O\8O8Pz\8QiK8Rp\r8Sa8T,8T\8T\]8U8Ut 8U8V8Y^8Z8\\)8\\\#8]-8^LY8^Q8d,G8dNa8dh\8e2\8f\8f8g}48g\a8h\\8iQ\8iw8i\8j\'\8j18kO8k8nL8q\\08r?\8u,8u\8w48y?8zd8z\08z\8z\28z\|8}\Q8~88\j8&88J8J\8Na8c888) 8S\"88j8\81;89%858^v888\8\8\8M\8;\88y(8_n8\888k808!\8\)8888\i8Y8?\8\898\8}8\8s=8t)8\8Y8%\8[8,88k88\"\8x8,8\8Q8y8l8\|78\8\E8\\\8\\Z8\F8\T\8Ƞ<8\X\8\=%8\ze8\~C8Ў@8ӿQ8\\8\8\f\8\w8\\8\\\8\\j8\x8\8ۓ8ܭ\8\ɠ8\B8\Ȼ8\\8\8\\8\a-8\J\8\S8\0[8\gr8\8\-8\ة8\#8\^d8\\8쉀8\\x8\8\A8\e\"8\Y8\8\8\\c8\{88\\86(8\88A88O8M89\_9\rb9\09e9\999,X9K`9\T9	39\nhK9\r*9\rE:9\9\\9\9999&D9}C99~9 9UF9\Z>99\9o\9\9 \9 9 _9!\t9#1[9#\P9%\\9&J	9(#9(?9(\e9)\9*u9+?\9+Z9+p/9+\\9,\d9-9.90Ȳ9293\94\96T96a96.98\\99\999;o#9=4.9>vZ9C9C/\n9D9EZ\9H\9Iڿ9LY9LS9N9O\\9Oe9Qm9Q9R\9S%9S<9SQ\9Sӹ9\\l\9],x9]9]9^U9^9d\|9h4U9hc9hei9i@69k9k|U9m\9n19n\'9n9on\9oq9p9pz9q59s89s9t\09w9x\9x\v9yq9z5/9z=9{9{\i9}\9L9B\9\l9\9\999k1999\9lb9h\9(9X99[99\29̤9}\9!990U9\9 9q9M9K9_9&9rN9a9w9\'\90\93969?9.9|9*\9Jg9\L9(9	9\x9\\"9)9$99\9:79X\9\\'9\9V99\\99Ŝ9=9a/979\9\$9m9\9i9\\9\z9\\9\rJ9Q9e9W\9\999,9\\9\j9\{;9\\\09\9\/}9\ݠ9\79˝9˹\9͍\9ͱy9\T9\\9Ҳ\9\.9\\9\ah9\l9ڔ9\~\9ۮ9\\Z9\\9\*J9\8w9\\9\!G9\)\9\59\!9\{9\9\\9䯱9\\09\9\D%9\9遬9\\9딊9\9\\U9\s9쫰9\9\O\9\Y9\M~9\v\r9\9\v	9\\d9\\69\\f9a9L9\9k9/Z90\9m\9e99\99\:\0K:\:\:\:*:E:::	8::\:):+:4:5:F\:ϖ::\b:\Z:X:qj:\:`::D:r: $\: :: ܺ:!\:\"#p:\"tS:#0*:#p:(}:,\:-\r:.\:0f:2ގ:3:3\:4u:6/\:7{|:7\]:8PR:8&:9::\n\n::B::A\:;:<\P:=lJ:>h\:?|:C%\:Cd\:D$:Ex:E:F:\:F:H:H!:I-0:K\\:LG\:M%:M:N\:Nԗ:OEi:P\\:QR:R[q:R:SI:TX{:T:W:X:Y1{:Y\\:Z\:Z\):[\\:\\:],:_P:`bs:a:am:g\:gE:gx:h]-:h\:j :lB:lA:nl:n&\:n\+:o::p!:pj:qu:q\\:q\:sXz:t-T:uC:u+:x\:yk:z\:|:}?:\\:\:\\\:\:\6:/:Ch:\Z0:K:9::5:\/:_\:&:)J::M:)::\W::4/:0:\:@:L\:\:r:u\:̝:T:p:@9:W:::y:\::%:\:\n::e::\-::9:\:KC:5:k::\M:\\:\:\{::R::Ft:\:	::::\\::?:\D:\::;:h:ˢ:i\:\0:\n:\::¾^:\m\:\hf:Ɠ5:\\\:\\:ȱ:\Q:\Z:\V:τ/:\s]:ь!:ќ\:\\m:\\\:\(:\e4:\0:\r):ձ*:\\\':ֵ\:\M_:\X\\:\\:\\7:\\:\\\":܌[:\\:\\:\v:\Z\0:ࠒ:\o:\\:\5:\:\\0:\;Z:\~ :\:\\\:\ :\*\:\\:\EX:\:]::-\:D:\\:\:o::\\n;\06,;\;4~;;\P;\;\O; ;F;?;5;R2;\\;e\;m5;\v;\naw;4;P;Ud;\re;\;;;`\0;7;f;r;M8;{;\\;\U;;\ZZ;;t;ry;`;)\;YY; lz;!02;!\;$G;;&;&k;\'\;(;)\n\;)@;)H9;-~;/k;/\\;0;0\D;1O5;4$;5\;7 ;8,m;8\\;8\;:!;;;<<;<|;?\w;A);A;B2\;C7J;Ec;GS;I;L\;N\;Nw;O\;P8\';PZA;P~$;P;P\;Q@\;Q\p;RH\;S<\;T;U:;VCk;V\^;W\;X;X\E;Z[o;Z\;Z;[<(;[\\;\\gM;\\\;_R.;c\';cC\;e\E;j3$;k\;m\n;q\\;r\x;t;u\;u;v\;w/;yk;y\;y\;{N;{\4;};~;l;\;\i; ;0;\\;\;W;\;+);T;5;@(;;\;ڎ;\r\\;\;ϑ;\\;\;\^;\;;3;`\;;BO;R;\;H;; \';\\;x;;U;Ǚ;ވ;\0,;G;9y;G;\\;;\;\;g;#;\;N;=;a;;j\;\;\";=;;;7};\;9;}\;\;\\;\;\\n;;+;A;\;;P;;];Y;T?;\;Yg;;\n:;;;\.t;ã;\);\,};\\\;\\%;\z0;\V;\׮;\\0;\\7;\Q\;ҹ;\b\;\\z;\\;\t;܌);ܨQ;\8\;\i-;\\;䱬;\\-;\;\!\;\\;\\;\ח;\]\;\w;\;\*;\c;\\\;\?=;\a;\\;\\;\BI;\%	;\\\;\^\;\?#;\%;-~;\;\Z;c;5;\\;;l;\x<<\<s\<	~)<	\\<	\<\n5\<?W<\\<\r\\<\<<\<\<\<<\<\<\<>\<Gi<<L<m<\}<]<\<\Z;<\ZY</<9y<G\<\\"<hn<\<(<!\(<!\<\"<#<#\\\<$<%K\<\'\<(\\<-.\<.\<.(_<.B<.F<.\</\/<0\\<2=j<2\[<5,<7p<8\A<<\#<=	B<=_<>\<>\<@\r<A5<AQj<B\<En<F\<F\<P\<Q%<Q1p<T\<U&D<VS<W<X<Yo<Z<[;<\\C<]\'\<_<`\<a\\<a\<cB<e1<f\Z\<fS<f<g\\<h\U<kNW<lta<m	<o<q<r\<r%\<r\<r(<r\r<s\}<tJI<u<v.F<v\!<v3<yB\<y\<yh<z\	<z<}BB<}\<}<\\"<ω<\\<\<r<<@<b<k<\<F&<}a<\\<1|<75<\b<\\<K<\<\3<`<\<2\<\ <\0i<\<\<\\<4*<WS<\<d\<<]<<\\<<<\<j<<a9<<P\<`<\<\<&<7<}<\{<\\?<\\/<\9<Ŝ<\\<\\"J<\:o<țS<\\;<\ר<\Nu<\W\<\\\<͜9<\\<\s<\\c<\<ӡ\<\\\<֗<\<ؘP<ثs<\\<ڈ!<ژ<\E<\u<\[\<\rR<\\\<ᴟ<\\\<\<\K\<\\u<\\c<\ll<\n\<\\\<\\<\\\i<\4<\\2<\F<\:\<\r3<\~}<\5<\<\J<\X<\$<\\<\<\><\\Z<\9<km<e\<]t<\<\=1\=&=E==<=\=\=\nr=\n\\Z=\n\=o]=R=9=̀=\=}=\=\\=$5=	\=\\=*(=\=\F=\=\\=\B=\]=\=\ZH=\Z(=ļ=\=г=\=\Y=!z=\"\=#\\\=%\'=&8=&\=\'x=)\\=*-\=+_=+=,/\=,\=-tA=-=.\b=1\=1=3=5q=6M\=6f\=6Z=7!=7=8%\=8=9^=9u\=;\=<n=<\=<=>=?\L=@=@\g=Bă=Ctn=C\=E*&=E?p=E=F==G\\=H`\=H\=Ib=I6=I\=J2>=Jx\=K=Lp=M\nw=NUN=O\(=P\\=Sb=U4}=U\=XLE=X\\\=[=\\\=\\=]=`\=a=bdd=c_=c=d=ei\=ft=g\=ixZ=i\=kdJ=lB=lJ=mA=n,=n\1=r\\=s\\=s\=t\=x+\=xG`=z]={Z=|g8=~K\=~=~=y=\1==lE=\=\\=\=R\0=\H=Y==d=F\=\==^=\=\\=\==0=گ=|=\=\=j=\K=N[=Q\=\?=v==\C=m=T=\s=\"\'=̘=\=>\=#=\L==x=\=(==rX=\}=\=\w=\=\\=c=\\=\r==u\=\==L=\N=\=\=m=rU=\6=$=4=F:=\\nW=\`\=\=\\9=\!=\=Ɏ\=ɭ=ϐ(=Ϡ2=И\=\\=\)=\=\\3=\d=\=\\\=\n=\-=\d\=؇?=ڈ|=ܻ^=ݤ2=\\=\=\߇=\U}=ߖ=\\\=\{=\y=\cV=\	=\Mt=\P=\1=\\H=\\rT=\,=\`\=\&=\\5=\\\=\\=\0\=\\"\=\a=\=\s=\\\=\[=\;\=\=\\N=\J=!=z=\=(=O=I:=Qd=I=*F>\0M>\0.>\0\> \>\>(\>r>$>\n>\n>\r\>\rɉ>\">x>`>+>#>=>\>U>\>\>+\>\Z(>\Z\\>>,>>V> 3>!>\"ih>#\nS>#>#>%g}>&>&>\'&\>)m>+L\>+q4>+]>+>,4>- M>-ދ>.E>/>/\i>1\>3x>3w>4->4J>4\[>57\>5fZ>6g\>6|>8{p>8\>9&>:><\\>=1!>=:>=>?EM>@>@\\>A>A\I>B~>C>CW>D_\>G>I\>J\Z\>Ju>K!>K\!>L#>M$4>M\s>N\\>Oy>Q\"k>RA>R\>S>S\+>Wʘ>W\>X&X>Xo>Z>\\Jq>]yb>_F\>_>_ٿ>`Y\>a\'>a>a>bP>bB>b\>c3>c\>d>d8>e\"2>eI\\>i^>k>m\Z>nJ\>n\\>qܙ>r\\>st>tJ\>uȏ>v\>v{>w\>w\>w\>xN>x\0>y>y\>y\>zS>}3>}>}0>~:>~d>~\>!>.>/\'>=>u\>\\>><>>\\>>*>9,>>\r>\\>\\>>2>\5>\v>E>m\>\07>7>>\\>\>]\>o1>>\>\j>~>>|>\>\w>/f>>\0>\3>>!>>\P>2>\>F\>>\\>>/v>cA>]>y>S#>Bm>08>(>\\>T\>#>\>U,>\'>\\>\=;>Ďj>\\R>\Y\'>ƈg>ơ>ǆ\>\\>\D>\\5>\b5>\id>ɼ$>\\\X>\rq>;>\\>\\l>\\>\\>\\'\>ѣX>\a>\E>Ә>\\>\H\>\x>ּX>\a\>\\H>ܴZ>\>\WY>\2v>\\m>\>\>\\G>\{>\\n>\\>\\>\\>\W>\\>\c>\Z>\w>\<\>\\n>\x>\\>\>\\">\c>\Ą>^>\>s>\>3W>1>^0>>>+>\w?\0v\?\\?\N?*=????	;?\nY?\no\??pE?\rS\?\S?X?$?|@?Y?j?|??v:?\\?1?\?d?\.?j?\?-?? +\?!\?#:?%2\?%\?\'?;?\'\?\'?(\"&?(?)I\?,?-\?2p?3 ?4\?5-?52?8<?8x?9?9y\?:?:\z?<\?<S}?=Q\?=\?>\\?A\?D+?Dg`?D?He?Id?JQ?J\?K\\?L!\?M#?N!<?O?P\(?R?RJ?R\K?S>\Z?S?S\\?VO?VH/?W\?W\\?Xe\?Y#\?Z\?ZK?\\si?`?`A?a\r\?b^1?c|?e?e?e^?e?f;?guP?h}?mH\?m?n?n\\?o?p\?qd?q\?rݩ?s?u9\n?v\p?x\?x	 ?x?y-?zE?z\#?{,\?|\\\?|=?|Q?\?H?\?u?0?s\???\?\rx?gC?\?P??\\?E?N\?\?\\?Q?\m?\?$?%?5-?\?\\?\?\?c\?v?j?\u?\??X?*?3\??sU?\Z?x??R?^[?\?>??\?4?:\?\r?h?\??B?\'A?=t?C??\?c??m\?\?$\?\'+?t\?\?&%?\_\?\\?\tO?ƉW?\$\?\}*?ʑ?˶?͍\n?\`?\>?\L?\\\?\\\?\8?\uo?\\'q?Іu?\\\?ыn?҄?ҜN?\jU?\Ģ?\\?\>?\}?գ?֋?\?\?\A?\\c?\\?\\?\6c?\u?ޒ?\?\\'?\%\?\\?\\?\S?\\'?\5\?\<?\\??\?\I?\G?\d?\5?\\n?\u$?\\??\?P9?*?\\@\0@@-b@g@@\1@@\\@J@~@@`@\?@[@	7@\r1\@\rg\@\r@pO@\0@\\\@s\@S;@Z@\<@I>@L\@f$@@@n\@@n%@\\@\@fd@ \\@!*@!@!B@!(@\")7@\"^@\"\r@\"\@$@&@\'\@\'@(a@)#\\@+\Z@,7@-$)@-L@.\@/jc@0@0\@0\!@1@1\@2d@3@5{\@5@5@62B@6@7V@7Y,@8>\@;@<\@=\@=@>/@>\S@@\@@\\@@\@A\@B@D@D3@E@E@Gni@G@I@I\@KY-@M@N3@O@Q(@S@Ty@W\@X\@Y.@Z\s@[@\\@^e@^B@^Ms@^\@a]@b6\@c<\@d\:@e\)@f@f<@g	@j\@k@l@ms\@n6@nM$@nX!@nP@n\@o\Z@pj6@qU@r3\@u=@w@y@y{@y@zP@z\\@z\\@{ti@}\@}z@}\@}\n@\g@@*@@t@@g@g@o@ǃ@d\@\\@@J7@\\@C@@ڞ@l@\2@\(@5@\%@\@ )@\@	\@@\@\:@\@\O@_@Rp@@\@H@P@6@\@@\@̣@y@@Y\@@\@N@nu@\H@@@\@\@@o@5@ȧ@@ \@B@\\@\?@e@\@,\\@G@\+@\q@\\@\oX@Ó@ó\@\\@\@\Qw@\\}@\O@\5@\T@\@\\@ӕT@\@\+@ֳ@\ʦ@\~@\2@\n7@\\\0@\\@\Y\@\pH@ߑ\@\l@\@\Ȧ@\1\@\7@\m\@\Ke@\_@\\@\@\K@\d@\Ok@\[<@\O_@\\@\c@\s\@\T@\.t@\#E@\\@(G@U\@ZB@\@\@ib@3pA\0\A\AAA.AS\AAЎAA\\AxA	OfA	A\n\A\\\A;A\\A\\A\r\fAA\AoA=A\~Aw\A\A\AAĮA\zA80AA\n7AAQ\AyAh(A\\AaIA-A\rA8\A\!A 2A >A!!\A\"\A%%A\'!A,\A-iA0uGA0\OA1Z\A5U+A8\A9A9A:\"A;%A;Q\0A<[5A=hA=&A>A?A@r\A@\AB_\AB\AC\gAEAG\AG[\AH4\AIAIAIALT\ALLAMpANs\AN\rARG?AT\AVcAWJ`AW\AY\AYݶAZqA[\KA\\7\A\\\A]\5A^O^A^wA`H\AaAa\AbMAbYAb\\'Ad\\Ae\^AgsAiJ\AjX)AjzAj&Ak\Ak%\AkY_Al\/Am\AnAo\\AqAsi\At\At(kAthAu\dAxb\Az\|A{HA{A}&A}cA~\A~1A\\?A,PA\AaqABA\AAA\^A\\AKLA\nAYA\'pANA9AաA~MA\AgA;A(\A*uAMAAA5ASA2A\A\AA\AFAn\AA|AA\A~\AA<\AASA1pAJ\AXA\1AmAWA\!A\A]A\\AL}AbBA\A:AAABAOAQA\AA(AT8A\`A\A\A5*A6A\CA\YA\IAYA\z\A\\AŻWAǌ\\AǴA\\A\6yA\\~A\>oA\>A\\A\\Z2A͐ZA͟A\\A\\ZAϳ-A\\)A\(.AӢA\X\nA\rA\HbAքQA\Z\A\\A\KA\\A\\IA\\\A\\5A\6VA\\\A\A\A\~A\qA\#\A\\A\\\A\,A\3qA\;A\/A\\ZA\*A\\A\\A\aA\YA\F\A\7A\7A\p;A\~xA\ARAEAA>uA@B\0,BB\\B]\BBWB&sB	B\n\"SB\n\BxB\eB\r\B.\'B\\B\7BBaB\\BCB\B\B\ZB\ZmBB\B:BoB\\B\"9oB#B#|B$2\B$W]B%\AB&LOB&5B&\B\'CB(	B(rMB(B+lB,,B,gB.S\B/\\rB0_nB0\B0\\B3/QB3\^B4UtB4sjB5\eB7B8B9\0\B9B:D\B<B?lB?\B@|B@QB@ZB@B@BD,BDBD\6BD\BE:BE\\BF^4BH\;BI\BKOBMIBM>BP-BP`BQJqBR\ BS\(BU7BVp\BWIzBWBX2\BY\{B\\hB]\B^ܟB_oSBa;Bb\'\BdBe\Be\Bh\BkfBk5BkyBm۸Bo\\BsBsBs\Bt7\BvI Bv\Bw\\"Bx\aByǜBy\Bz\B{+B{g\B{\B|B}BS8BB\bB\ BDoB~B[BΫBhBBB\BD\BIuBޗBdB\B(\nB>LB\BB6B\B(mBfB\\B\sBrBB\B(BUBIB\B\|B\1BSB0\BBdB\\B\B;\\B<B\BXB\Z|B\B\\BZBB\B-,BOBxCB]BB\\BTB}~B֑B\\B\B\B\YB\kBƃABƐB\\B\ B\ئB\{\B̄B\KB\\B\TB\BР\Bь/B׵B\y\BٗeB\\B\0BܕBܵB\t\B\\B\\B\\zB\+EB\sB\\B\eB\OPB\{,B\҄B\c\B\!7B\\B\TUB\kVB\\\rB\\B\\B\\nB\s\B\QB\!B\B\\B\hB\{\B\\[B5oB\\B`9BB\\BUuB\\B.BBzC&CO\Cl4Cv.C\nU,C\ndC\\C\r\C\r\C\r\C\n`C]`C\\CѿC3yCoHC|C\\CWNCCJCCC\ZC.C6\nC|xC%\C\"\C#\C#\C$7\C$C$\1C%\0\C%:C(ÐC)9C*6C+vC+#lC,1iC,C-ޙC-\C-C.C/\C0a^C0eC1C1ssC4zC;\C<C<ßC=\C>-\C>hnC>C>\lC@oCBm(CC>CC\+CFq\CF\7CF\\CF\UCJ\CLyCM\CM/CM\CR\r}CR6CS*CS20CT+6CT_\CU=\CU\'CV\VCXCX\\CY\CYmC[\XC\\ C\\\\C]C^wC_C_*\C`Ca\7Cc\Cc\CeCfq\CglCgnCiPClJClWCm\Cm\CoCugCu\\Cw|Cx+Cx\GCy\\C}<\C}H\C}\C}C~ҧC	\CVC\C\C\ZC[CCsSC2C&C\oCCQ]C\C\rCCCZ`C\\C\CC\CCrCCDC\\C\$C\0C3-C\\C\C}C\GCyCzHC\\CCR\C\CC;BCCC\C	C%CJCC6CJjC̜C>	C\(C$\CD\CC\QCwC>C\6C\CCCC\C\C\C5C:Cª\C\]FC\\\C\\=C\CŅ\C\u\C\\\C\ECȿ6C\/C\G\C\dC\C\C\&C\UC\r\C˻C\\)C\C͞C\\lC\\0:C\PCҴ\C\uGC\^\'Cׄ\C\\3C\,5C\cC\!\C\mC߿3C\KC੏C\(\C\w|C\C\\0C\ɸC\\\C\\C\>C픟C\hC\}\C\{C\CC\C\\\C\ C\C\<C\WCuDQD\~DD$D\D\\D\Do)D\D\/DDD\nlD\rD\rl\D\r\DY*D\dDJDE4D0\Dt\D\;D&D\D\ZD\hDD\ZDD\Z2DcD!\DBsDD!\\D\"D\"$@D\"\]D#DD#\4D#\;D+6D+/D+AD+~\D+\OD,CD-LD.mtD/FD0\<D1N\D2\ZD4/=D7җD9\qD;D;\D<\)D<\D=+aD@\\DBODDTDDDE6DF3JDGlDG\dDH\DI^\DJ\DK6DK}DL+\DMsDNCDODQ/DQDQ\qDRlDR\\DT\!DUІDWDXP`DX\\DY\DZD\\\PD]߳D^I\D^D_gD_D`/iD`D`\\Da	Db0DcաDcܷDec\Dg%DgFDgDhFDk1DkG\Dk\\Dl;\DlżDl\Dss\DsDs\Ds\VDt|Dv DwDyD{ZBD{\5D|\'DzD\\DS\DD[\D\\0DtDD܊DD4\D3DXD\\DADD\0\D,D\DDQDx\DqDNDb\D\\D\PDp\DOD^D\\0DtbD:TDzDD\sDDuD&D\\DD\3D_cD8D:D=>Dd\D\\D\DmD\6D\D#oD\DxD\DDD\"DD\QD\P\D\܊D\~MD\\]D\CED\g<Dύ[D\\D\@D\\>D\3ZD\J\D\\D\h\DՌD\\D\KDD؆D\nD\IkDڊD\{D\\PD\QaD\D\BD\eD\\\D\D\\wD\\zD\6\D\D\t\D\,D\\D\KYD\nD\\D\\D\D\D\?D\KQD\\D\\9D\\D\\rD\<D\)D\8mDD\\PD\=D\H\D\WD\VD\\\D\(\D\@D\\DN:DHdD\DDDQDHDgsD\D\Dc\D\D\\ErE.EE^\E׃ECEjKE\E!E\HEE\\EE	%E\nEE\r\,E\r\ZEE\\\E\E\\EXE\E\E\WE}\E@?E]E*E\ZbE\ER#E\nE)E\"AXE$zE%[IE%aE%\E&\\E\'E\'2\E\'D\E({E*:AE*`!E*jvE*E+E,2WE,\\E,\IE/*#E0oE2|E2E3A2E7PKE8\r;E8\E:5\E:\E:gE;\^E<jE<:E=\E@\EAEI\ZCEIEI\\EJf\EKk EL~\EM\ENt\EN\EQ\\ER[EVDEVdEX)E[E\\\@E\\EE^diE_JE`ZEaEc\Ee\EiEjEkcEkl\rEk\7El/:EmkEnEq\\EsNEs{EsQEt\"EtEu\EwSEwEx+`ExT\Ex\ExEy![E|kE}/RE}E~1E~EE>E\0E\EϸEEWE\EwEE\.E&\E+E?UE(\E\E\+E3E\EkE2EBeEE\nE.E\"E\\EEE:\0Ed\Es\"EE@\EqEB9EHE\/E.\E\\E\fEDE\Z\EK9EVE&E3#EEF\E3EInE$E\\E\]E!,E\_E|EŞEsE\EEE\oEE\EVE\\EŘEŚEǯ\E\E\IE\4E\aE\\fEʹ\'E\\tE\\9E\vEї;E\DE\\ E\\OE\o>E\^EڲEڷE\\\E\\:E\>\E߳E\ҜE\O\E\\E\ƤE\!E\E\\\E\\&E\\E\\E\JUE\aE\E\g0E\\E\=E\QE\PE\^E\E\ZSE\[E\v\E\KEFNE\]E\EEE\6E\	E\\yE\F\xFs^F\\Fn/FT#F	\xF\F\oF\rF\r\YFWF\\F\\F89FDF=F\FF\fF\\FNF]FxF\FSFF\\F	F F!\\F\"c F\"\F#p\F#F#\F$\F%F%F%̓F\'\F(\n^F(S~F(pF)ͨF)\F*\F+\F.F2`F3÷F4WF:3iF;TF=\F?#\F?F?\F@\FB3BFBH\FCMFCFDoFEFE^FEt\FE>FF#FG\FG[\FK\FLFMM2FMyFQ\FRFS\FS\FTFT/FV=FZ\"FZZFZxF[eF\\F\\4F\\\oF^F_CF_\F`Fa\rFao.Fa\Fa\TFd-FfGFg,\FgFg\Fi\FjRFjhFk\FlXFmu\Fn\9Fo\{FrO@Ft)FuhFuFwbvFy=F{wF{\F}\\F~h\F~F~\UFp\F\F\{F/Fa*F\F?IF+F\<F\F`FF\ZF\F\F`JF\FxFF\F\F\nF\ZFG\F\mF\F\"FF\FƟFQ\F\F1qFFF@F\\FFFHF!FFF~F\F,F\\ZF\raF+\FF\lFIFF\\FQF\FAFa\FFĳFj.F\,F\SF\ڛF\\6F\\Fʀ\F\gF\0F̿TF\oF\\YF\cF\\'EF\UF\pF\RFӟF\\CF\ F\BFَFۂF\NF\+F\T\F\arF\|Fކ\FޠcF\\F\@,F\\*F\VF\y=F\oF\ϟF\!F\3F\ɭF\]\F\\TF\fF\	F\\{F\\aF\F\{\F\\F\9F\PF\WxF\\F\<F\\wFF\F\\F\n6FXF\8F:F\\G\0lGBvG\\>G]GGXnG\"G\G2G\n\GeGgGgG\GqG*\GG8GWGlGbyGoG\\G\G\\'G\"VG#ܪG&FG(>G)PG)gG*\G+G0G0\CG1\\G2\G4QVG4\G6/G8HG<IeG?G?\G@\GA\GB>GBi\GBn\GBo\GF-GF\GGY\GGbGG\!GIGKYGMCGMGP4tGQ?lGQBGS(GS.GSGS\GTkGT*=GUGU\GVGV*\GX>\G\\G] MG^=\G^G^\%G_G_OG_G`ZG`IG`\\GaGb,GbN_GcGd!GeĸGg.sGhOGi.hGmHGm\ZGn\\GoRGo\Gq<Gs/GtLGtOkGt\Gt\@GuGwLiGxZfGx\G{p[G{G|\\G}\0^G(GN\GlGG[\G\ZG\\G\GtGG4\G=G\\G\G\LGGPGmG\'?G\G\G`G(GJBG9mGTG\oG\G\G%0GG,GP\GG\JGOG[!G\\G\.G(\nGGGvG\G(G\Z$G}GG\\\G\,G\GEGkGG`G`GsrGbGG\rG\5G\]WG\dIG\\#G\ʬG\q\G\\Z\G\G\G\\GΕ)G\cG\G\\G\0cG\\nG\\\G\G\;G\\G\\UG\BG\b~G\tG\Gܳ\G\hsG\E\G\\\G\EG\XG\}G\\\G\C5G\`G\$G\G\>G\BG\)\G\fG\9G\RG\U\G\\\G\:G\\G\7G\XG\\G\mG\\G\\yG\xG\~G\\\&G\\GgG\\G\7G!;GG{HHx\HH@PHIHH}H\\HH \H\H\bH\\H=H\1H^Ho.H!\H+rHdHH:HFHwHMGHQKH\H\H\Zr+HZMHSHaHH pH AH#nH$H%^\H%sXH%\\H%\_H&չH\'\H(aRH(H)UH*GH*\H+H+\H,1H-\H.H/\"H1H3I/H5mH6irH7H9H:H;@\H;UH;H;	H=+H=jH>YH?N\H@)rH@A\HC{HC@HC\HEHFE\HG<\HG*HH\HH\HI^HI^\HLHL2\HL}HM1{HM\HN	HN4HHN\\HP/VHP=HQi\HQ\3HSIHTW2HT9HV|HV\zHW^}HWkHX*dHY|\nHY\ HZH[\\KH_3kHa%oHaHb*Hb5Hc(HcwvHcOHc\ZHdZHddHfNHfS\Hf\Hf\|Hg\\Hj3\HjbHlCHmP\Hn\-HpEHq\'HqHrHrHrlHu}HuHu&Hv{\HwBHy\HycHyf+Hy4Hy٥H{H|EH|ّH~A\H~HH~\3H\"\HH!bH|H\HJkH\vH\HH\THAH\HԄH1H5H8H\\H!H37HvH\HdH5$Hn\HHH$H7HH\H\niH!\HGHgH\9H\H\\H\"HNH\\ZH\H\6H^H:H&\HHHڌH4H/HH\H\H6*HJxH\H\bH\H,hH]H\0eHw6HH\HFH\HPHH)HեH\HH\ZCH\lH\H\H£JH\Hã\H\8&HŃH\\HƔHƝ8H\VH\\:HʀH\\iH\K\HήHϠHH\\9H\/HѴH\\H\@Hԋ\H\\\nH֜HָH\ҽHَ\H٤H\\H\oHݎEHݛpHݴHފUHޯsH\l<H\̆H\\rH\\H\H\\NH\RH\&H\#H\\\H\\H\\H\:H\h\H\\QH\\.H\\\H\\H\H\\H\\HH(I\0I!II\bImI\nITGI\YIII\SI\rILCI\II[ILI\I\Z\IIb\II\"AI\'Iw\0I?I =I \I\"\\I$I$I&N\"I&I&\I(dI*I,\\I.ТI/fI0o{I0\-I0\mI0\I2g\I3vJI4@I4EI4\I4\*I59|I5L\I5\^I6\nI6\I8h\I8ľI:+\rI<I<@I=I>kI?<I?(I?XI?\I@E\I@\#IB\fIDID\QIFnIG\II7_IJ	IL%ILH(IM,\IO3IR\IR*oIR\ISdISpIUl\IUIX=&IX\IYV\IY[\I[I[\I[\I]ҘI]\HI]\SI^	UI^\ I`I`IabQIax\IgIj6\"Ij\Ij\,Il)Il\IoIpIq&IyIz\Z\I{\\\I}\QICI\0I\I2KI\I\I\bI\I\Id-I\I?I\I*\'I\I\ II\IpIyIcIBI\IJ\I\I\9IrID(I^TI*I\IϠI3I\^I\\nI\\I\\IIYI7ZIoFIII<I +I%I\\III\\IFI\In\I#\0I4IKIt\II(\I\;I3\I\ITIvI\\I\\\Iƣ\0I\UI\I\`\I\u(I\CI\_\I\֠I\!I\_dI\UI\\-I\Iϧ:IϫIѰI\-I\`IԲIզ\I\:\I\DI\\I\\I܂IܕI\iIފI\\\I\YI\6I\I\\\I\I\pI\\PI\\I\1I\\\I\_I\\"\ZI\\I\e6I\I\)I\I\\I\]I\6I\6I\EJI\)I\\IDRIII\II	\Iq\I\IuItI5J\0ߊJ\=JnJj&JJ\KJ\J\JSJ\nHJ\nL\JJ\JXJ+mJ\J\aJ\J7JJJGJ\J\_Jc1JeJJ\ZJdJ\Z(PJ9\JPJ\J;gJ?J<\J\J ފJ!/J#+J#\J\';J\'rJ)X\J*1J+\J+\J+\J-eJ-\JJ/aJ1\\J2|J3J4J4\\J4\J8J8\2J9|J9\\J9\J;\J;\\J>cJ?HJ?\J@\nJA|JAջJBJD%JEKpJJ\TJJ\JK;JKJNIJOJS\SJS\JTlJV JVJVJW{JXzJX\zJY\JZ\J[0hJ[0J[ãJ\\*J]F6J_lAJaVJa\rJa\0Jb\")JcQJfoMJf\GJiEJjJk]JlJl#\JmJm\\Jn\\}Jn\Jo0JoTJo\NJoJp=JpJq\Jq\\Jv\Jv\oJwJx@\'Jy;JzaBJ{J|sJ~JH\J\9JEJ\Jn`JqJoJJ*\ZJۜJ\`J:iJLJ\J\Jv\Jy\J\JJ\eJuJJHfJr~J4J1JQJlJuJ+J*-JDJJ:J%uJ&)J6\JJJJ\JJ%J\cJzJVJ\JTJ\Jm\JSJ\J(TJ&JiNJlJЕJ@J\J\xJ(Jf!J(JsJJ\02JJ#JJBJuJ\}J\B\J\\'J\ݝJ\nJȾJ\\\Jɖ\J\J˫J\J\)&J\\9J͊\J\\JτJ\\OJ\$J\TJւJ\2J\\\J\/J\U\J\`+J\\ZJ\e\J\\J\J\][J\cJ\\CJ\\<J\\<J\J\	J脹J\ǆJ\\J\%J\6UJ\Y\J\9`J훑J\f_J\ݮJ\WJ\	J\\J\\J\ԼJ\/3J\9DJ\XJ\.Jz\JJJ\cJsJ\\K\0hRK\FKHKwK\\\KlKs\KKx7KK~mK	\Kh\KK~K\KLKKK\KK\ZGK\ZoKgK\\K\K#K&T\K&V\rK&<K(5K(K)>JK)\\K)\KK+7YK,K,\K-GXK/K/TK0\K2*\K3}\K5K6N%K6\,K8\K8K9p\K=\<K=\VK>K>\K@d\KB2KE\kKF][KJfKJ[KJKJ\pKMJKN\KO	\KP\GKQMDKQO\KRlKR&KT>KT\'dKTݥKW\3KXKYtK`\K`\\Ka\Kdq\ZKelKe<KfsKfJ_Kf\\\0KfKh\Kht|KiKj]kKjdKk,^Kk4gKl).KnoKnhKoKod4Ko\KqFzKrKu\Ku\KuVKv0KviKvKw\Kx,Ky\uK{\reK|\nlK|9PK|WoK||VK}\3KKK\kK5KKZK\K\ KK\K&\KhKT$K)K IK`KrKTKKK\+K?Kl~K\IK(KQK0K\KEK K\KKK+\KѽK\PKpFK\KK\KH\K!KTKvUK.KKVOK\\0KCK\\KSKK&KnKrK>\K\zKKFKLKͧKK.[KIK\uK+K \K\Z\KMKo\KKצK\\"K\OK\\\K\_K\\K\06K\ٺK\\K\+K\gKʭKˀ\K\\0K\@K\\KΝK\\0K\\$K\fK\\\K\k\K\\\K\K\K\YK\X\K\u\K\F\K\IKܺK\\"-K\y@Kޒ@K\\5K\>\K\SK\Z%K\]\K\ԱK\XK\\tK\\K\\rK\mK\rK\|K\|K\\K\CsK\FK\eDK\\\K\~K\_K\K\3K\uK\yKK\H,K\\K\l2K\veK\ɬK\r\KeKK\KnKS\KoKNqKGL\0L\0qLdL̍L\0L\0L\LLܙL\r\\L\PLݰL#LL\LsLwLLCL\L(L\L	L\_L\Z\LJkL@LfL\L\7L!K\L!q9L\"\L\"\FL%\L%\mL&\\L\'	\L\'9HL+iL,\r|L,L-7L-\L.zL/<L0\L1 L1+PL1usL2)L3`L3\vL3\<L4L6L\L6_\L9\\L:JL;L=}LAFHLA|fLD\LD.LF\LH:MLI\LJ\'LK\ZLK4LL$LMT\LNAjLPI\LP\&LQ\LS.LLSH\LU.LV\&LW\LWLW\LY۷LZL\\)L\\/LamLaZLb6LdLe[\LeoLeLfLg;\Lh\\Li)LjLj\Lj\Lk\\Lk\\Ll/LlKLqJ.Ls3Lsq	LsϥLt$Lu#Lu)~LuLw!LwLx\'Lx\LyrLzL{zL6LLƁL\!L{LZ\0LL\LDLLgL\ILL\L˰LZ\\LنLwPL\LLYLLԟLL8L!LL\$Lm\L\wL*LZ\L>KLL\\LakL%L1\L7L}LwLQLLɎL\L\L]L\L\"L\nLLNL\Z#L\\LXZLN\L6L LAL LLHL\VQL\NL\Y\"LňfLž*L\\\L\jFL\yLʞL\\\L̒L\\L̀L\?L\\L\]L\J\'L\TTLӒ\LӛL\\%L\pLԯAL\LբL\\L\(aL\.L\gL\9L\\0_LߵaL\L\,\L\\rL\\L\^L\nXL\^L\w#L\ΞL\\L\pL\\L\L\ǝL\\rL\AL\lL\*+L\MRL\f#L\LߐLHxL_L\LFLzLLLyLC0L\LцL\LaL\\M\0B`Mt}MD1M\0\M\M\MBM\\ M@M	^M	M\nځM	MܳM\roM\MMpM\;MPMM\M\EM*\MIbMNMMM\M\\M=BMxMKM9MM\\M@\M}Mx\M (M\"M#WM#a]M%\M%\M&M\'\\M(M)M*\vM+IM+M,\0M-M-\EM.B\M/|M1M2M3M5\'NM5\FM6\M7,\M9LM<=M=8M?\\\M?\jMFMGMHHMJ+\MJdMJ\MKbMKBMMMN\MN1MOV\MPR\MR!MRMRzMSNHMULMVh7MVuMW\MXՕMYAMYRM[M[\\M]f\M^wM`\MbsMd\_Md\\MeMfw\Mg<\'MhMjA\MjAMjMjʃMk3\MlE]Ml֚Mm\Mq\Mt\Z6Mv^MwAmMw\MxdMy$Mz8Mz\	M{\M|@M~wM\\Me\M6bM\\MM\,MM\NM\M\MMƐM\\MKMM:MM@Mi\Mw\MRM\QM4M\M/XMMjM<M\"MYMMM=M\\M)\M<MMcM-TM/MM1MMLM\\M.$M|MMM\M\M\\M\fM¼M\SMãeM\\M\ےM\K=M\XM\_3Mȹ>M\M\MM\M\9M\v\MτM\bHMфM\\\M\#MҚMӝMӲMԑtM\;\M֩M\iM\mhM٫MڲM\\ZMܶM\\]M\!wM\m\M\?M\mM\=\M\\M\M\PjM\m\M\\MM\=M\oM\\\M\(\M\^\M\̘M\`dM\JM\p\M\dvM\lNM\PM\\M)MMM\xM\JMN\M\\M1uMyMCN\0NAdN\N	LFN\n$\NuN]N\rNn\NN%	Nq\NFXN\N+{NN+NN4NN\\N&z\N(tN(\N)\r\N*eN*RN+׷N,\SN-j#N-\"N.u\N/\n\N/pN0EN2\"N3SN3e\N6D\\N6\N6\N:\lN:\N<?gN=UN?\\N@֋NB\vNC(}NCyNCNC\tNDN*ND\@ND\NE\NE\aNG^:NH۪NIO-NI\NJ-NJ\NN\vNO_\NO\NQNR\NRNS9xNSM{NS\rNT?NUjNUp\NUxNV\>NW\NXNYNZ`NZNZNZ2N[N^N^\ N^tNa\\"Nd\gNeNi\'\Ni\qNl\Nm}Nn\NoWNs<uNt\NvNxTN{x	N{\N|1N}rNPN N\LN\"yNN?NmN\NцN\0\N}\rNF\Ng@N\\N\{NN_NONR\N\N\NtN\NGuN_N\No\Nx}NNXNaNuN\mNN%N\\NMNX\N\\ZN\N1N}NN-N\NCN|NN)NlN\\\NµN\zTNˉ_N\\N\oN\\hNկjN\\N\\bN\W[NؔmNؙN\\vN\a\NܜN\?Nޖ\NޚN\<WN⺌N\\=N\lN\t\N\yN\N\hN\\N\~\'N\n\N\\\0N\]wN\lN\=N\bN\zYN\:N\\"N\pN\}bN\\rN\gN\-8N\/~N\g9N\N\\\N?NдN\N(^NNX6N\O\0z\O\OdO^ODO\O;OOMO\O(O\nOMO\rYOoO\dOO_OfMOOO\*O*O;OZO\\nOO\ZO(,OWO3OdIO\\OdpO^\O\?O 7OO yO!O\"\'\nO\"\HO#K\O$IMO\'O\'O)\O)O*\yO.CKO1XO2XO4\RO6\"O6\O7\O7YO8\$O:\r\O:O<O=~\O?{O@{)OB\nOBQ\OBZODcOGOHOJOLOP,OP\OT\OX\r\OXjOZ\O\\O]JO]\ZO]\\nO`<BO`|OaOc(OdOd;\Od\Og\\OiYOi\UOi\uOiOj\OOk\\OkҽOk\TOl^OnOoOpOqI/Oq\Oq\:Os~OtOt9Ot\\OuJOv(OzkO{\}O~\hO\GOOL\OOO\MOO\OOO*O\OWO\OOOO5\OwOO;O\ZO\O\Ox\O\\O\%OzO\'O\OOEOUOOqO~O\O\,O,\OE)Oi\O_O\Oe\O\\OOTGO\OO\O6!OO!O=OOջO-gOO\\0O\!OD\O=OU?O|O\oOO\\O\UO\dEO\\\O\\5O\؛O\hO\|PO\\\Oƭ\O\WO\\ZOɣ\O\\O\c\O\3O\{VO\-\O\йO\O\5=O\PsOЧOў6O\\(O\T\O\\\O\kGOՌ\O\\1O\J6OאOר\O\\ZO٥O\\KO\a\O\\0O\oO\KFO\\0O\\O⡯O\MO\YFO\1O\\O\c\O\kaO\)\O\=OO\\O\!\O\0O\pO\O\O\f\O\5\O\0\OZnOOcO\OoOOe\O\nOOcMOJP\0!P8P2PҨPAPDP\PP\P\\"P	P\nB\P\nu\PwP\PqPn\P\r\P4\P:nP,P\"PqP؊P=\PuPPp~PvPP\Z\P\Z\PA\Pw\P\P\PaPPP\P\"o:P#9[P$#P%P\'MP(xP)kP)\P*1BP+\P+SP+\P,[6P-P.0\P.\~P/\"P0זP0\\'P1MP3P3bP4UP4P4\P5(P6	P6P6\OP7\P:\#P<P<P<\P=UP=eP>-P?\PB\PD%PDPDBPE4PG\\PI\<PJ\PL@PLϜPNVPN]PRfPR\ PS\nPS\tPT}PX\0SPX~vPYyMPZP^<\P_!P`HPaN\Pb.RPb\\PcaPd=Pd{PdhPg2PhZPjȝPkAPl,-PlėPm͑PniPpIPqAPr\PspPs\\Pt^Pv\IPv\PwPwގPx8\P{dP{\\rP|FuP|P}P}\~ParPP#DP1\P{P#\POrPU\PiUP@PP	PZP\P\\P-{P\\P\nP\/PPP\uPCPPQPPVP0!P\PNPܼPn PsPK\P\\PlPo\PrPbP\P:\P\PP\PtFPk\"P\Pb)PP\\P^PPwPMPC}P\eP\\P\gP\2PGPp\P\P\0\"PlPP\5PJP\P\P\P,P\P\PP\P`PP\2P/P\PP\P\'P\)iPųzP\GP\KUPˆ\P\\\P\4P\LP\yP֥\P\$PסSP\kZPۏ\P\\|P\\P\m\P\\P\,P\#YP\\zP\۩P\\P\RP\bP\MP\:P\PP\ٷP\d\P\P\\P\\0P\P\dP\RP\\P\P\HP\[|P\)P\P\\PVP\\ZP2P\cP\PaPP^=P\"Q\0\QQMQ\\Q&\QQ0Q{xQQ$\Qs\QgQ\nQ\n\\QT\Qw\Q\rQ\rQ\rQQ\rQ\\QQȺQ\\'Q?QfQMQ%\Q\QBQ\QXQ\ZQQ\ Q^Q!w/Q!<Q#\Q#܌Q$hQ%z@Q\'=vQ\'\\Q\'\2Q\'\\"Q\'\Q(ҷQ)\\Q*9AQ*rQ+OQ-\"AQ.jQ.\9Q/}\Q/Q0\\Q2k\Q3Q4W\Q4\\Q6\Q7ǥQ7\FQ8\\Q8\MQ;Q;\MQ<Q>.Q>WeQ>Q>Q?8QAܩQB(QHQH\QH\\QJ+QK\QL QMY\QOҡQO\[QQQU(QUQVƛQWTQXa\QX\QXɺQZQ\\\Q]\pQ]\FQ^y\Q^~Q^7Q_z#Q`+Qai\QciQf\\QgxBQkbrQnHQn\+Qp]ZQrcQsQt5QuLQuQv\\Qx0QxDQxpQ{;Q{rQ|\Q~9QQ\QIQ-Q2QQQEQi\Q\\Q\Q=\ZQ\Q\nQ&\QQ2Q͝Q-aQC\Q\-Q\Q\Q\\QtQQi:Q~RQQ\QQIQQ\XQfQQ\QbaQQ9QإQQ\\Qs\Q\Q;Q\Q\QWQdQ\Q\Q0QQ\QF%Q\\QD!Q1JQ6QQzQd\Q\\QQ\Q\`5Q\^tQ\SQ\$Q\3\Q\?OQήIQЬQ\QљQ҄Q\CQ\\Q\ڀQ\L\Q\RlQ\QׁQ\HQً\Q\\0Q\9\nQ\$Q\u>Q\\\Q\VeQ߻\Q\~Q\;kQ\cQ\\\Q\\Q垃Q\jbQ\(\Q\\vQ\WQ댬Q\[Q\\\Q\$Q\LQ\/TQ\\5Q\Q\\\Q\\-Q\EQ\\\Q\aQ\NQAQQ\cQ\\Q\QR\0 R\01zR\R\RV\RVR8RRRMR_tRRȉR	>\R	R\n\Z\RbRqR\9RaRR\\'R@=RURxR\RRURR/R\\0R8RR\RjRR \R LR!YZR\"|5R\"|R$îR\'\R\'bR+HR.\R0ۥR23R2\\R3\R7\R7R9R:b\R;jR<\\R?VQR@RA\XRBRRD\"RDbDRD\~RE>RE\RE&RG\0RH\RH\wRI\RI\\RKRKh\RLvkRLRMYRNEgRN\RP%RP&RP6RR$RS&<RSSRSsRTzRTRV$RVzRV\RV\RW\RX\\RYERY\kR\\v\\R_\R`SRa/Ra\qRbRb\Rb\Rb\$RcWRcRd<\RdhRdMRe7\ReRgRhIRk1Rk\SRlPRl\ZRnLRo\QRp\.Rq\"5RqXRql#Rq\RrRr\Z,Rr]Rv\bRvRw\'Rx\'ORzl\R{)NR{F	R{R{\R}\rR~\ZR~tR~\gR\RnWR~R\n\R\n;R\RR\\RRR_QR)R\RRe\RIR\+RԴRإRRR\YRtR\\RDRNRf\Rx\R{\R\\R\\xRz\RdR\ZR\riRR8R\\R\R\'UR\%RiR\R\R_\RRLRF`R\\RVRpR\R8R3R\\R\RzoR~[R&RA\RNRCR\\RlR\\R\\bR\R6	RŌRǘvR\G<R\CRӅRՎ\R\\lR\6Rڔ\R\ڱR\x\R۔R\?fR\c\R\kDR\t\R\\qRߪ R\(\R\÷R\\R\@R\RkR\X\R\p\RꥸR\0R\lR\|R\gR\i\R\R\OR\S1R\[R\	R\%\R\1IRvRk\RRCR\"\R_RS\R\0nRPR:\nR5\nReRKS\0~SBSS\;S\SL5SS\S\nS\\SSAS.\S	\S\[SR(S\`S\SB-SpS5S m\S\"w/S#pS#\S$bjS$tS%fS%vTS&S\'cS\'ɃS*\\S-\S-\S.dS.lS/3US/]\S0sS2pS2vS4OS5HhS5HS8!S:S:&S<S<\S=\nGS=S=\\S>)bS@3$SAcSASBUSEN{SESE۱SF\'SG.SGe{SGSHtSHSH\tSIXSI\^SJѯSJՌSK6PSK\)SM4YSN\\SO<SO\\SSSTQSTTQSTdSUg\SVSW=ASW\SZ0SZWS[gS\\2\S\\KS\\\S]4S`\^SboqScSdTSdxcSe|SfSg2BSg3ShSjSjISkSlwSl\nSmrSnaLSnSoASp?\Sq\\Sq\\StW\Su\\\SuSz5BS|S|LS|h\S|\gS~\cSy\SzS\S\SfGS\\SxS\S\<SS{S\SSUSS\TS޺SnPS\n=S\SES\;S7\S{=S7S\"{Sf\SS\ZS67S\\SS\\SSJOS\Sn4S\3S\S\_SjSSsOSv\Sf;S SSS\\%SS\S]gS\S\,SS^2SGtSSS\ES&@SS\rSM\S!;SI{S\sS\\rS\wSÔS\\|S\\>SƋSƪS\LjS\kS˩XS˩\S\S\D%SͯS\\SβtS\\XS\\Sϙ\ZS\S\$S\ںS\?zS\\TS\OS\T.SևS\BSכwS\\S\A\Sؕ0S\\2S٪)SگS\\aS۶ S\\S\\S\\S\Y\S\\S\ iS\3S\ZS\\S\k\S\AS\ƞS\S\\\S\OS굣S븙S\nS\\$S\S\FS\~\S\\S\S\ZS\S\gS\iS\OS\S\S&ET\T\T\'T\'TT\\T\uTXT\ndT\n\\Tb\T_T\ZT\T\}THTq`TT\TYT)4T7TTT\\"T \(T!DT#,\T%%\T&zT(XT(\\T(\\T){T)?T*:_T*\T+eT+]T+\DT,3HT/\0T/\RT1\r_T3bT4\"3T5\T5\T62T6\^T7;T7\@T>\T>d\T>T?yTBTBFTBfNTBuTB-TB\TCxbTH\TJ\\TJ\gTL\TMfTPTQ2TQ\TR\TS\TTTT2+TTmQTT\5TXTXpYTY8TZrmT\\T^WT_T`}Ta-iTbTbLTbjTdJTdcTfj\Tf~]ThK\"Th}Th\TkTl`TnSToToTp$uTpTr\TtYTuTu\\Tv	Tv\\TxR\\TxT|OT}4iTXT_gTT2T\TTT2TT˘TT\iTTpT|\rTPNTT\@TZLT_|T+TL\TɌT\T?T4T0\T{^TcqT\TTT\\TńT͍TwT\TT)TAT\T\TTTlT\ZtT9\TTT\KTTQGTT\&T\yT\Tq&TTT\TrTsyT[T{TTTQT\T\\~T\\\T\\T\l\T\٫T\0T\8TǊrT\nTȾ\T\+\T\bT\b\Tɵ\T\FT\#sT\\\T\\qTدTٯ\T\\KT\T\T\T\[\TܶT\\\ZT\3T\\T\9T߸zT\ST\\\T\T\eT\OT\/\T\őT\8\T\YT\&T\hT\~T\?T\ԋT\$\T\\\T\3T\\T\\T\ЍT\4?T\T\&TIT\VTkTLT;T\TS\T2\TIdT\nU\0P~U\U*U6U\\U\\U5U\\U.UTULBUtU\\UU\UԭU\}UtUU\FUGU\PU\Z\U\ZU\Z\yU<eUdUf)UvU\\UzU\Uz\UsU \rU QsU \QU!U\"\XU$\U%\\U&\U\'CHU\'\U(%>U*CgU*LnU*\U*\@U,>U,UU-\\U0c\U0\U1i%U1CU3ZU6\0fU6VU7\U7X8U7hU<\\U>CRU>~U@{UAfUAUB\UB\\UB\\UCLUEUI\\UJ=\UL\+UL\UNqUNUP\0pUR	UT5\UT\zUX\rUZ\U[U[\aU[U]/U^\U^BBU^>U`\.UaH\UaUbEUc\Udr\UfEiUf\UgUgFwUgUhDUhƚUh\2Uk^6UknUlRUn;\UoUp~Up;UqUqȸUr\'\Uv\Uy\&UzFU{*\U|I*U}FU}U~nCUUU|cUU\UhUnU\rUH UԮU\*U\UAU>TU\U\0UD\UI\UU\U\U^\U\ZeUU\0U\\0U\UU\vU\UmU/sU\UncU\\UU\U&UWUUU-sU\+UNUYUU,\U\'^U%U\U*\U+,U5Ux\U\U\U7U\U\\UUaUwUsU+LU\TUYUU\\\\U\:U\U=U\\U\2[U\@yU\\DU\\=Uȅ U\\nU\3UʇU\1U\\U\8U\h}U\\U\t\U\s\U\o\ZU\n\U\HUٷ^UڈZU\\\U\[U\[\U\fU\4\rU\\\U\\ZU\K~U\d`U\ХU\a\U\>U\\rvU\\U쭱U\F\U\U\\U\^\'U\[U\U\yU\\CU\\U\C\UE\UVUԔU\"U*LU?UE\UVxV\\V\V\GVA\VOV	\V\n\V+|V	V\\V{VVV{SVV\V{V\1V\VHV\VqQV}VɢV\ZUV\\nV5VeVVMVVV lV!\V\"V#IV$.pV$AV%l\V&OmV&˷V)\V*\IV+9\V+JV+YV-~\V/s\rV1V2^\V3V4	V4:V67V6V8[V=V>rJV>\4V@>$VB7VB\>VC	VEgVE\/VF\VGt5VH*VJVKVK9VM\VN\VNؚVP\\"VT.\ZVTU\VVVW+\VWe\VXAVXO\VX\TVY\V\\\VaVb\!Vb\Vj\VkSVn\\Vo\<Vr}VspVtW/VyVy\Vz2\V{yV{XV{\\V|\0V|@\V|EgV}V}\8V}ɎV~B\VVV\V5V0@VJVY\V(Vi\Vu\V=VəVQ\V\\VVʾV9V;\"VTV\\'VPV-RVV\\VBVk\V\"VV\nV$<VwAV\CV\{V\(V\V\\9VV8VE$VTwV\V\VnV	V\VbmVV\\VPV\\VVDVǤV\"\VŭVEV\V*\V_V\V\4ViV\VVVӃVV/V5mV\V\2V \VcV\nV\V\\\V\=V\U\V\\\V\\'V\=V\\V\ҌV\V\GkV\GV\<|V\\V\\,V\WZV\b\Vմ\rV\\V\(VڠV\wHV\\V\(TVވ@V\VV\VV\FTV\\V\\"AV\!\"V\V\\V\[MV\ktV\VꍺV\\V\\V\\HV\\V\\=V\ÐV\\\V\˞V\\\V\3\V\ݟVV53V-WB	W@W\\WMW\\W\\W	\W\n3W\\W\W\\Wb\W=Wy\WIWWfW\W+\WUW1WW\Ww_W\W>W\W\\W]PW\n@WW UW 8\W \W(ŋW)W)ޘW*\W+I4W-!W-UW-}>W/-\ZW04W0JW0W.W2l\W4\W9^W:AwW;\W<@W=WB\UWC\\WEsWGvWG)WHWHbWJ\0WKmWLd\WMNWNO{WOwWOޅWP\DWQ\WS\WTWVbWW(WX6\WX\VWYM\W[kW\\-W\\4W\\\\W]XW_WajMWdcTWd\BWd\$We\r\WfDWgaWiWjbWj\WkZWk!JWm\'Wo\\Wp\\Wq/\Wr\Wr\Wt[~WttcWtIWvWy\\W{MW{QW|LW\"IW\=WW5\W`\WwHWW{\W\,W\W]WuW\\"W)W=W\WW-WDWv\nW$WrW\"W܆WtW\*W\vW\\W\WW\nWAuW\nW9gWpTW\PW\W7HW W!W*\WW\\WtWW\,WW\LW\WWӧW\YW\\BW\W W$2W\ɑW\W\qWģW\s>W\\W\\\W\\\W\E\W\3W\]LW\\W\_W\\\W\\\W\W\\WՀWؤ{W\$6W\hpW\\\W\UFW\(W\c\W\\W\\\W\\\W\\#W\\\W\AW\XW\Y}W\\QW\$W\rW\\0`W\\@W\{W\W\6W\\W\\"\W\\\W\`W\W\W|\WW\\W^\W\\WvYX\0\FX$rXpdX3XX\X\\X\XhzXx;X\XX\n]X\n-nX\n\?XXlX<KXtX\XhX\X@X\\XXMXjX\0yX\Z8:X \	X\"\X)sX)X*X*nX+\"\X2\"\X5lX6<X7:oX9=\X:+X;kX;8X;X<\X>/X?|X@N]X@WzX@r\XBXB\/XE XJ\XKc\0XM\@XN\XPMYXQrXRYaXS\'XY\X\\	X\\\X]-X^&X_XbeRXc{Xc\Xe\\Xf4Xf\uXg&FXgZXhW8Xh\\Xi1LXi_XkXrXrN\XsXs\Xu͈XwRXx\yXz\rX{\@X}[\X}]gX~ZX~pX\;X\X\rSXXA9XX,X\JX\\Xe\XX\XXMX\IX\\XN)XX\XȐXIXbX\0XX\X\X<\Xs\XQ?XqX7XpX\XX7\X\X@\ZX\XO\X\oXX\X/\XmX\@X\Xe&XyXy\X^XѹXXĪX\\XdXݯX\X\\\X\,EX\SX\XX\\NX\(X\\\X\-wX\8\nX\0X\+LX\~X\\GX\\EX\ \X̀)X\\X\ܷX\\'[XζdXν\X\gX\|Xϯ\X\)X\E\XѡRX\bX\Y_X\I\X\\X\2XܢX\_NX\Xߐ\Xߤ+X\pX\X\\X\8jX\HX\$X\X\X\\\rX\\\X\/X癷X\3X\\\X\=AX\E X\\X\\X\WX\8X\7X@XcXX}RXh\Y\0;\Y\0jYYYY\\YѕYa4Y\nMY>@Y\Y\Y\SY{lYY\YGY\YYkY}\YY\YoPY\\Y\Z?yYMY\`YXY\JY\"0Y%tY%\\Y&@Y(}Y)PY+\ZbY+\\Y,=\Y,mY-kY.\n\Y/\rY0dY0\.Y1}Y3\eY4;.Y4?Y8RY87Y9Y9\Y<[Y<Y<\@Y?Y@1Y@\1YAWYAq9YBYC$\YC\\YE\YHQ\YHYH\\YI\YK)\YLGYMDYN\YOYO\/YQ\YS\YV?\YVXYW\\Y\\c0Y\\iY\\\Y]dY^\Y`\Yc\\YgYhEYisYjPYjYmvYo\YomYq\Yq=YrNYsÂYtDYv1Yw\Yz΀Y{JY}NjY}Y}\Y~uLYYY\\YYY!,Y@ Y~Y,YmcY#YYGUY5Y9YYY\Y\(YnYpYĢYmvYY9YD-Y\ZjY)=YHY\Y YYFKYoYY\Y\FYYa#YxYUYpY)Y\Y\Y\\YUpYġYrYY\YFMYYyY\Y{Y\\-Y\-.YǟIY\߁YɛYʭY\y\Y\`Y\hY\&VY\f\Y\[\Y\mY\NoY\oY\\\Y\\\Y\?YކY\*Y\\jY\\Y\\r/Y\SY\Y\Y\PY\EY\`KY\<MY\\ZbY\/zY\bY\\Y\\Y\Y\\\Y\\Y\\YY\XY\H\'Y\\UY\blYQ\Y\ZaPZZZ{ZZZ	RZ	wdZ\nDZZ}ZZz%ZZ7Z&5Z3\ZweZ_ZDgZUZ?;Z5\Z\Z,Z/\ZEZ\Z6@ZvZ\BZ\qZ@Z hXZ \Z!\\Z\"\n\rZ\"\Z#	\Z#TZ#ffZ&zZ\'dZ)\Z*]Z*ftZ+\Z-Z-\JZ.Z/\dZ1zZ2\\Z3j8Z4؀Z6}Z7\r\Z7oZ:7Z: Z:\`Z<Z=$Z>!Z?hZD\\ZE(ZEF\ZEc\ZF7ZG+lZGS\ZJZKE\0ZLU}ZNZPrZWZZ\ZZ4Z[]Z[\=Z\\nZ]=\Z^߼Z_mZ`\Za/\ZaU\ZZamZb\Zb\lZccZc}Zc\NZd|=Zd\ZgS\Zh\Zi\Zi\Zj<Zj\Zj\\ZmG7ZpZrZr\\Zt=Zt\\ZvNZv0ZvP(Zv\1Zv:ZwvZwZyvNZzZ{\\Z|\'Z|)Z}(*Z}=Z}Z}Z~e+Zx\Z\\ZZ\]Z\uZ\Zk}Z]Z	ZHZOZZ;Z\\Z\	Z\ZyZB}ZaFZ\Z\oZ\Z\^ZnZɮZlZ3!ZL+ZoPZ\Z\ZO\ZZ\ZИZ\ZZh\ZZAZ\tZV\Z}Z\hZjZ\Z1Z\\Z@Z\HZ\Zp/Z	Z\Z\Z\ZZRZ?+Z\\Z\PZ3^ZZɽZ\ZZƞZ\߳Z\=\0ZɯtZ\Z\R-ZηZ\* Z\c\nZ\͖Z\Z\t@Z\b.Z\\lZ\\Z\\\Z\=.Z\/aZ\\Z\BZ\\Z\\Zې3Z\\)Z\z\Z\zZޯOZ\i~Z\Z\\\Z\[Z\Z\\yZ\\Z\C	Z\a,Z\3Z\\Z\Z\gZ\U\Z\\Z\#DZ\-\Z\ymZ\Z\RZ\Z\.\Z?ZcZ\5ZM\Z\\Z8Z\Z\\Z>kZZ5\Z<[@][dx[|[\[[\[,[Ġ[[[%[	P\[	X[&[\ni[%u[\r[\rl[3[[[\0[GK[\\[\\[\\Z[M[[ .[\"/[\'\\[(|[( R[(3Q[(u[*[*\\'[,\\[/!f[0[0\[0we[1w\[3\8[43\[5-\[6[6Ɂ[8NF[93\[9\l[9\[:\[:\[<`[=/M[>[?\Z\[?\Q[@b%[A[C\\[C\O[D\[D\5[Eu^[E\[GJx[H\$[Ij[J.[Jv\[L}\[N[O-\[On[P\\[QV[R,[S1[T;\[T\ [T\[U\[V\[WM[W\G[Y\[Z\~[\\C2[\\\-[_)[_4q[_[a[a\[ct[dm[d\[e$`[f\[ge[hB\0[h[i=\[i\4[j[j[k\V[m\[oٙ[o\[p[p&[p\[p\[rW\[s\o[u([uA\[uP9[v;[vz\[x+~[y\\[z#\[z=[~RE[~\[-[\[\[[\\[\\[<[\H[\\[I[H\[}L[D[x[[[\[8[[_i[\[BH[8[5\[\[EI[i[[g[\[[a[R[\n[\[A[Cv[z[s[[\[\[k\[[fO[[T[[\\[7[\[\[OE[L[[[[,r[D\[[\[&x[Yp[c[q[\[[[\\[\y0[\\Zd[\+[ȩ[\`[\\n}[ʢ\[\Ҥ[\s[\9[\\M[ц[\ϱ[\$\[ґ:[\\\[\[բ-[֝b[\3[\\\[\#[\&[\\[\9[\\G[\x\[\\,[\F[\8[\\[\\[\	[\!	[蟥[곇[\\[\%[\\\[\$[\i[쐽[\\[\[\[\c\[\7[\?[\\\[\[\\[\[\Gb[\p[\%T[\p[\\\[ǖ[UR[\;\\\0t\\\\\\\	,\\	~\\	\\\\	\ \\\\}\\8\\\\!\\\U\\\\\2\\\\\\q\\U\"\\B\\\\\\\\\E\\e\\\Z\"\\B\\\\\\!P\\!`\\!Ю\\\"z\\\#s\\$c\\\%`2\\&;\\\&e`\\\'Bl\\) \\)\\)\y\\)\\\* +\\*0\\1\\1!\\1\i\\2\\\49`\\4y\\54\\\5e\\7\\\7$\\9\\9A\\;\\\\\=U\\>\\@\\\\AG\\\A@\\B[7\\Bߢ\\C	\\C\\\FP\\G\\G\/\\H\}\\I\\\\L{\\M_-\\M\\\O\\R+\\R:p\\T}r\\U\_\\VKf\\Vtg\\V6\\W~\\\X\\[\\^l.\\_Q\\_\\\\`~\\b\\b\+\\b\k\\cl\\ez\\\f\q\\hu)\\h\\\i\\\i\\\\j|\\kJ\\k\\n-\\n06\\nRi\\o0\\\op\\o\\\piE\\r}\\s&\\t\\u$\\vS\\\w\\y3\\y\(\\{>\\~\\5-\\6\\\\\\\\:\\s\\\\\\\\\\~\\\cX\\Y\\\\\\\\\\\c\\\\a\\\\\\\\\\x\\V\\\\l\\h7\\9\\\\\\\\\\\\\eV\\y\\\"\\\\\\\\\\\\\\\\\\\\Q\\B\\H~\\A\\%\\\7\\(@\\,6\\\\\\\(/\\^\\l\\\\?\\0E\\]\\\\\\Jb\\\\\[\\F=\\\N\\J\\\f\\\\\x\\C\\\\\ñ\\ĻV\\\\I\\\9\\ƐK\\\os\\ǜW\\\{v\\\\\\\\{\\\\\\\\(\'\\\>&\\Ρ&\\\\\\\H\\\\\\Д\\\ҹu\\\!\\\\	\\\\\\\\\\֙\\\P\\أ\\\\\\ٶ\\ڞ\\\(\\\ݟ\\\&\\\\\\\8\\\m\\\?\\\F\\\,\\\\\\\/\\\c\\\\\\\\\\9\\\Z{\\\\\\\+\\\\pl\\\b]\\\\s\\\$\\L\\`\\\-\\\\\1\\}\\\\\\\=\\\\]\0=A]l\0]]7u]]&\"]^]ʯ]^]]\"]	|]5\]hI]}]\rP\]\r7]\r]L\]0]\]]_}]\]4]\.];\]W]]0]K]]\\]Ѝ]]]]x,]]\Z]\Z/\]\Z@]\Z\/]\]f]\T]t]\]!b2]!ڷ]\"o]#ڿ]$]$\\]%](Y\])\],].\(]/\\]/\]0u\]0\/]1eI]3\0]3\]7}]7\]8,\]8\]8B]97\]:]<+]<sM]=\]>\]?\"]AT]B|i]CfL]D%]D(]ES]F\"]FV\]FR]F\l]G]H\]HP]I/]I\)]Jr]J\\]L:]M]N\]Rc\']R]S\\]VC\]V]V\]X2]Yq]]]^=]^\w]_b\]`Qm]`ƍ]b0]bk7]d\]e_]f\*]iP\]i]iʈ]j]k%[]m]p\!]q-\]q\l]r\]sn]sv]u\?]v\]v\]xC\]y	]z\\]}I\]}ޭ]/]\b]\]\w]\C]]j]\J]\]\]] ]\\]\n]]]#]G]}]]D]y\]\]hp]C]]\]\]\]J\]]]]\]\]]K]\],\]]?]^]f]y\]\re]NB]n]t]*M]9L]t]Ǐ]]%])@],P],]	]c]X]3]\]\]D\]Q]rr]%]K\]Ψ]|]g#]\]C]U]k\]E]\\]\\]\]\]\R\]Ƒ-]\\q]ǘ]\\]\6]\%q]\]\M\]\j\]\\\]\ڠ]\@a]\t]ѧ\]\\]\P]\\"s]ծ\]\G\]غ]\#]ܳz]\\]\=,]\r]߯]߸]\Q]\b\']\\6]\\\]\wo]\]\Z\r]\u\]\X]\h\]\S]\2]\]\]\y]\\']]t]v]\^}b^Y^TW^\\^^\^^\nu\^\n^\n\^D{^4^\^\^\Q^#^h^^\^\0\^^w^^f^l^k&^\e^\^@^\\3^\^U^\9^\^q^\^5^ы^^ n^ \^ ډ^!2^\"1^##k^#n\^$Ey^(\^)\^*Q^-^-W^.&\^.#^.\"^/\\^/\^0^1\^2xe^2\^65p^7\4^7\C^7\\^8}g^9\^<uQ^>j^@q^@J^AP@^C\^D\^Dc^D^DG^D\^^F\^G\^HD^H:^I\:^J*^L^LS^M+\^N)^N(^P^Q^T\r+^U^V^Wl\^]I^]\0^`f^`^^`\s^a\\n^e@\^eX^f\^f=^fD^h\r\Z^i~n^i^j5^l\T^m\^n\h^qvR^s\^sZ^s^ue^u^vO2^z^|^H7^2^\n^^^\>^^\'a^\^6\^P4^\d^\}^\U^4^\^\^^\0o^l^\^l^\0F^^\^{^k\^e^*^^[^\\^m\^p\^X^^M^-y^T5^#^Ku^Y^\^~^,^J^^^y2^?(^s^Q^u7^.^-^^[^5^:C^y^p	^\^\a^\^^\^\\\^\^\^\\p^\5N^˲\^\\^Љ^Вf^\#\^\ 7^ҁ)^\ ^\%h^\|\^\~^ن%^\?^\f^ݲ^\\\^߿G^\w\^\p^\S^\p^\wF^\Je^\^\\\^\^휞^\n^\\D^\i^\W\^\A\^\z^\z}^\W^\\\^^\B^^}V^\^;\^U^%0^^^vy^N)^^\^Y__\_1_\_\n_\\_\0_\_}\__\d__	\Z_\n\g__m_9_W\_|_\_H_^_\r\_\R_Z:_x\\_|_\_@A_\H_\Z_ _6_R\_֙_!#_#\_%-_&99_(p_*0\_*}_,1_,z_1e_1\_2QB_37_4\_5V\'_5\\_6\_7\_8e_:J_:4_: _;p\_;\=_<x_?_Ak_A=_B_C\_D;_E_F\'_F_Gx{_Gl_G\3_HH0_IM_I͔_J\\_Lb_Ln_QH_Q\_U_YW\_Z_^x]_`_a_bl_c_cs_d!q_da\_fٽ_g_hۮ_i_jv_j\\\_l._lR_nr\_p_s\_v\Z\_wZ2_{__}B_}_~	_+_z _,_C_Y\_9_\6_\a_\Z_\\'__,_ɿ_أ_i_\_\_bM_H_\\_PY_*w_\_[_|__3b_c_i\_H_S_?__qh_q\__\r_CD__d0_]_`_N_LS_\_b\_\I_P&_N_o7_n>_D_\__FN_p\_o__\2_\_P-_\\_5_T_\__\>_B_U\_X_\m_\Ȅ_\:_Ǵ\_\\o_\!_\\+_\R_ʗ%_̙_̼_\S_\_\^_\_\s\_΀_\\_\\\_\\!_\\E_\M_\;_\\\_\sS_\2_ݔ\_\\r_\R\_\b3_\d_\_\NV_\\\_䅘_\\_䠄_\K\n_\j_淑_軻_\YJ_\ǯ_\`_\cq_\b\_\_\_\_\7_\_\\"}_\\_\iD_RQ__\_\e__+x_k_\`\0{`l`\+`%>`Ϭ`\\```\n`\`g`\r2:`\rb`k`_`$`^\`T``\}`Z`K````\` _`+`R` ]t`!2`\"`\"\H`#G`$`\'\_`\'\@`(\\`/n`0\`0\h`1MN`3\\`4mU`5\\`9`;\!`<[\n`=<`?\0`?*\`E;\n`F\\`G,`H\"`I`J\`L`L\`NvP`O`O\`O\\`Qq`T&\0`V`ZS\`ZhK`Z`Z`[)X``\`b=`c|`c`db`eR\`g`g\\r`j\`nm`oJ`o`p`s3`w`wr`w\%`{F\`{\$`|\`|`}K`}u*`d`3`&	`\Z`:\`J\`e`\#`Q\`n`\`ݶ`W	`\`>`9#``qg`0<`c`\`m`jQ`<:`\`\>`A`>`z`\``/`U`މ`Y\```\O`\r\`/`{w```Â`\`\0`1`c`a\`\``m``c\`mq`\l`\j``\\'`\P\`\\^`\\\`\\f`ȍ`\yo`ɔ`\\6`\v`\\0`\\/`ӆ`Խt`\H`\\]`\\>`\\e`\@`\`\j`\\`ݏ\`\G`\ܡ`\>`\\`\-`\*\`\!\`\`\\n`\	`\ ^`\t`\\D`\\]`\%`\8`\`\\`\X\`\\`\G`p\`kk`x`\aSaxa%a@akTa\naF\aaaDa\^a\\a^a\Iapa\%a\'aȠa\|a\Za\0Pa8aaaaa \a a!a!9a!mBa!ډa\" Ja\"\,a#\a#\a$\a&\}a(\a)^a*\a*\\\a+\a-hga/a/-\a0yha6@a6nra6#a7fa7~[a7\a8\?a9:a9ua:v9a:\2a=#a?7)a?\a@aAoaCqaFNaHaI-\aI]\aL\aT\aVaV[\aV\\aV\\aX\\aY\aZR\a^ea`9!ac\\"ad\-afaiaj\ak\al\alwapar\ar\au\\ax\aya|\]a}ioa}u\a~\aaKa\\aQaVa2\axa\ZaE|a0Eaa\\"a\aYia?a7$a\aa~;a<a\\na5Xa6aaza2aa\2a.\aˀa\aa,\ama}a\aa\Qa}bah\a[a\aaNa\\a>aIDa\\a/aana!dag\a\a~7a\aba\a~Ua\׮a\3\a\\\a\\aźa\\va\ ^a\.a\xa\Ada\=a\\a\a\%6aυa\\da\}a\9\a\a\{a\\a\W=aەa\\(a\7a\a\a\\a\сa\ma\\aa\\\\a\\a\5Oa\a\\a\FDa\\a\_a\i\a\a\\Ha\Z\a7aka\aW\alb\0r\bKb\0bb8b\Zb\bXb\Fb	\nb	ېb\b\r\b!-b_bBbs3b\b%?bBb͠b\b?1b\ZBbb,bb b(b\b\|b A b\"b#:b#nb#b&Ǉb\'\Yb)cb*\b+<b,\0wb,\Jb.b0\b0Mb0b1\b2yNb5b5>b8@b9	Gb;_b;kb<)b>b>\b?b@\bC\"bC\bEc\nbE9bE\\bI(\bI\wbJ\\bLԆbMkxbUebVrbVZXbW\nbWbZ=b[kb[\Nba>jbaQbe1bfbg\Ebhabi\bjSHbn7\bntbn\obp\-br)bs\[btbvzbv\bw+bw\by+tb|^b|(b~\b?7bqb\brb#b1\bUbbb\b\\b\b>\bνb\bI3bbtb<b\Sbbtb*bMbNb\bVbg\b(bb\\blbb\"bZb\bl\b\b\b\\bdFb\b\\bb*~b\"b\bbT.b\Eb\bbFbba<bb\b-b\xb\\Zb\;~b\S!b\^b\|b\\Wb\Ab\\b\1bϸb\\8b\`b\\b\V?b\\b\kDb\\Pb\w}bټ%b\H(b\\b\Fbߵb\b\%b\2pb\ϻb\^b\\\b\\b\J`b\\b\\b\9	b\\b\b\Gb\yb&fbS\b|hb\b\)bb{b+b\b&c\0Yc\0c-cKc\vc	\ncc\\cqc\c\r\=cPwc(c*cwc\\c\c\cMc\c c)Ic\Zyc\cc\c!c:c_cyc O\c \c\"@}c\"\c%\rc%c&ڽc(c)&c)cic*Vc*t\c+c,Ac1)c3}c6\Zc6c7c8Gc;\"c;\c=\Zc=\\c>y\nc?(cCmcD7\cEcEcEcF\\cH/\cI}cIcJ+VcJ0icK\cM3\cMIcN]\0cN[cOrScPYcQ+1cR BcR>cRz_cT |cV{\cWc[Bc[Zc\\`c\\}c]gc]9Pc]Pc]sc^\\c_\Zc_X\"c`j\c`r\cccc>chA\ci6cmco0co\co\ cpcqv{crJ\cr.cr\cx\cxcy\]cz5Wc{Mc|\nc}c~%\c~\5cccFc\\c\cgc\\cPxcWc\nc\c\c+ccgcc\cU{c\FcA[ccvsc,c\'c\\cO\0c~c-\c\ZcfcVc\3cdczc5|c\\:c\n\c+cAc\lccc>\cTzc)1cc\1cmc\c\c\rbcqc@ccP\c\&c\\Rcû\c\c\8c\pc\~\cƥ>c\\'\c\mc\@c\`.c\\c\Yc\|c\=c\AZcӝ\c\cԀSc\c\Fc֩c\\c\\c\\Ycݎc\Kc\Ƒcߓ\\c\\c\Ogc\T(cậc\rc\äc\z\c\rc\Xc\c\\Fc\\\c\-}c\`gc\_\c\`\c\u\c\*gc\^vc\c\nc\c\\\c;Ac\\\cVc\c1GcVd\0d\0\\rdm,d~\nd\\d	yd\nd\n%d\nddd\d\rd\rd]did\dd\d9d\Ddd#$diZdddd\\d #d!N(d$d\'@d(d)d)\nd*\d+<d+\d1\"4d4	\d4D-d52d8.vd9\\d;Dd<dAk\\dA\dB\dB\%dB\\dD\\dE\\dF|dF\0dG7^dGqdHZ[dOdQb\dSBdTLAdU\dW\\dW\\dXXdX\Sd]d^\d_d`d`\\dfvdffdh\\di)Rdi\WdlIdm\@dn\doudpLdp\dqsds\nd}D\d}\d~\d~\d\d]d\rd,d)d\4d>+dKd¨dZ\dd\d?d^@dd\d_Wd~\dd\zd\ddd\d_dbd\\d.\d5dTd\"d\r\d?d\+dd-dddKd*ddΞdI\rd=d6\d^ddYhd\\d\dded\'d\nd ;dadxtdd\qd\\d\1dġ\d\d\\d\hd\d˅\d\zd\\Z6d\F=d\}d\dϥ\d\d\f\d\Wdԩpd\\?d\\d\k\dօFd֩dצ	d\:\d\M1dۡBd\ \d\\"?dޘ9dީ\d\Wd\d\\'d\h\d\n\d\Td\6d\ҙd\\d\%d\ײd\d\;d\ԅd\Xd\d\ڀd\d\d\\\d0\d\d\dd\\d%e\e\\eM\eb-e\e\eqeQre\\e\n\ke\r\e7e˩e\\\re?e@e\2e\eBe\e\~e\Ze\Z|e\0epe\e\Bee\he\"C\e\"z;e#;e#Ce%Fe%e%1e&C\e&SHe&g<e\'Ue+\e+\\\e/B\e/Le2-qe2ve3%ke3\Ce4R>e49e:\0e;,e=\\e?Me?Ae?\\e@?\e@eFeAeB\\eE?eEHeGeH2eH_\eIKeJeJneM/eNQeO+\eTG-eTqeT\\eUweU)\eUeVreW\eWzueZ\*e[ve\\1e\\\7e\\8e]\"e]He^\Re`eaea)ea\eb?ec.veeCyehzQeh\\eiekvek\ek?yeo\rep<eq+\eq\nes5\resEces1es\etheetn\eu\.evkjewexZ\"exnez7ezӅe{0\e}4eMe\\e/e\e\ete\venebeJ\re`ee\nde\eʅeAele.et\e|eee\ne{Se(eXzexe\e\e\e\e \e\\ef9e\\ee\xee\e2eeve)eje6+eH\e/Zee¼ee\\e\e\\ge\e̻e\ke\*<e\\WeϹ\e\0\e\vqeђle\Hue\y\e\\)e\\\e\%eհue\e\e\V{e\h\"eݟ\e\\"e\Vxe\eee\\"be\\\e\\0ke\me\e\\e\\3e\e\Vre\\Le\,e\ge\^ePe\he#\'e\e~ee\Qe\{f\0?f\0\f\0\\f\0\f\0\f%f@\f:f:\fSwf\\f\fO\f,f\n\fGff@fWf[TffҙfWfnAf<fFgf#f\^f\\f\ZEf\Zf\f\\f,ffgwf!~cf!\wf$\f&.f&f(|f*d,f+\rf,\f-b5f.\0Qf1g{f2f3of4\\f5)\nf6f7\\0f8W\f;f<5Yf<Kf<\.f=\fD\fFofGPyfGљfJ\fKfK\MfL-fLfN\$fOfR.fRCfSU\fUafVFMfV~\fW\fYJ\fZ|yf\\gf]\f]˟f^ff`Q\f`\fd@fdfd\^fe\fe֨ff3Efhfifl>flmLflfn\fqnfqCfs\fu<fukfw\fw\:fx;3fy\f{8f{~qf|2f}hf~FHffwf\fbf1Wf^fdf\\f#\fmfhf	ffNf,\fDf\f\fofۡff\afhff\"ff\8f^f\Ffhff8Sfv\f\df\vffkffcf(]fyfdf-f`f\f\\f\r	f\~f\ lf\\\Zf\vf\=f\\f\|f\\ef\\f\\f\4Vf\Bjf\`f\Ѩf\\f\sdf\P\f\pHf\zf\IJf\(fӴ<f\\\f\;f\]\f\$6f\=\f\\fٷf\\0fڪfڱ\f\[nf\N\f\\]f\\f\\\f\<\f\Sf\f\\\f\f\PHf\\f\df\Nf\Lf\:hf\\f\f\Lf\0f\	rf\Cf\f\f\2\f\\f\\\f\\f\\f\\f\Ofz~f?f7f f`f7f^Xf/f/dfb4f\>fSg\0\g0agRggۥgg	(g	\\g\Kg7yg\gyg\g\\gVg7ggO\gg#/ggHgbg g \\g!`g#g$\\g&G\"g(cg(\g*g*\g.>0g/i\ng2mg2\\g3g3[2g3@g3g5Âg;!g<&g<Ug=g7g?\g?&g@-\0g@q}gBgD\gDlgE(gG@gH\gHۙgIMgI\\gJTHgL}JgNƿgN\gOgPJgP̗gT\*gV\VgY\gZ\g\\Tg_g_\[g_\\gagb7gcQgdHgd\lge|egf>gfRgh/gh_ygkh?gk\\gm\Dgn\(gs\gt\gtgurgvngwgw\gymg{sg|g}^dg~\g~t\\gg\4g\4ggBZg\lg\eg=g\gzg6\gv\ggd\Zg.gmg\\gOlgmg&g:ggVg\gBgJgWg\\gAggggLgOgg-gE\g\ g.\gg\g7gg.g=gdg#gg\gg&\rgg]gqgg@\g\gSg\\g[gsg\gcrgC\g1g\g7gg\\gƌ\g\Ӫg\\>gǽg\߭g\g\WFg\Xgʚ1gʱg\E[g\d\g\qZg\\og\\\g\g\;$g\W~gՌg֕(g\\Ig\\6g\\g\-\g\9g\Әg\g\%:g\hg\ȗg\ۄg\\g\g堎g\?gg\lg\&\g\\g\DFg\rg\3g\W\g\\Ig푐g\Tg\7g\vg\/g\\"g\\g\ \g\hg\h\g\:pg\\gG\g@gh\0#hyh\hDh\hh\h\'Qh\rUh\nh\+h\'mh|\h\h5hh7-h;_h\h\Z<hWh\\h\Z\hnLhghnsh\h\\h\'hh<uh\gh!zh!h\"4h\"	h#n*h#<h#\h$\`h%\h(Ih(nh(h(\h*\4h+mh,fh.-h.\\h/h/\Wh0^\h0\h4\h5Wh7<0h8\Ph9h:-\h;\0>h;\\\h@l\hCb\hD;hD\hF\'NhF.hG\hG\hI hM\hN<vhNEhNOhNmhNMhS\hT\hVThX\hY\hY$h\\rh^\h^\h^\rh_h_\5h`0Fh`r\hb4hbchb\rhc1\hcihdhf\Fhg\hh*Phh>hi\Phi\hj\hkM\hmhmhn-hn:Ihnhp;>hp\hp\\nhr\hrӶhw?hxLhz\nWhz3Vh{EIh}%=h}AYh}sh~h~\lhh\h[\hh\\hhh\Wh8hhh.h\hh+\hP3hRhhGhih\2hhh\hIhlhfhE\hh\hBh2Nh;Dh\XhWh*fh\1h\h>h~9h\\hh}\"h\\h\h6hh\Nh3hh/h\h!Th>\hh)6hBShRh\q5h\Smh\`\h\=h\\h\^\h\hȡ\hʾ\h˾h\\h̦\h\\#h\\h\Qh\Ohϙ\h\h\\h\vh׋6h\h\\Kh\CYh\uhډ\hھh\h\Dh\ch\Oh\th\Eth獾h\\bhꎕh\\Zh\\h\zh\\eh\Jh\rJh\FQh\d\h\\#h\\h\\\hh;\nh\	hi\0KiiviiUi\	i	\i	\"mi	\\i\nvJiAi\\i\r&$iIPi\id.i1gi\\i\Zi\0i;i\\i\i\ii\Z`\i\Z\i&\iSvi6i\ji3i{\i\\i \0i#=i$1i&\\i\'1i(i* /i,\i,\i.ai0i0 i0]i2XSi2\Ai7Pi7\\i8~i9\)i;\i<c.i?EBi?\ViA\\iBU\iEiI\iI\0iJNMiL\'iMǿiNiN iOiRUiR0jiSaiW(>iW~iXiY\iZ\iZ@NiZu;i[i^fi_\Zi`:\i`Hi`\\cia\n4ia;~ibTicV\idid\\"iePgigigkij\ij\ikJil`9im4in4Uincin\)io&lio\/iqiq\irYisvit\iu9iujiv\#ixWizLDi{[i|xi|@i}:i~/>i\6i\\i&i(iCiniXi\i#i\iviO\iJi\i	\i3UiuizLi\`i=i>ivi\i\i\jitiisitii\iEGi\ti\\i\iwi IiNiuiH#iO\iixi9fi\i+i!i>\iiii\\iΜi\5iĵWi\5Fi\4\iȕ i\ʹi\i̦\i\\riϬ-i\i\\r\i\[i\&i\Wi\\Ai\\i\7i\%oiߙi\i\Ci\\Z\i\]\0i\Ri\8i\Kfi\\{i\-;i\Vi\\3i\i\i\\i\~iii\i\i\3i\i\i\̢i4\i\i\rie\iòi\ijwj{jКj\Qj	\Zj	PLj\njI\jj\xj;j\j\7j\\j|\jj\j\Oj\>jVj}OjYlj\ZjU\jjjj\j#;j$?j&zj&j\'d)j(j+Fj-Oj.Xj.{j.\j1Xtj1j3\j3\\j5ڴj5\hj7\j8j8cQj8vtj8\j:\?j;xEj<suj=j@;jA,VjAjCejCMjD\jEjE jF-jFljF]jH9XjJ2\jḲjK\}jM9jNjN\jOC(jOjO\\jQ\jR\jR\\jSojT\0jT<jWjW\\jX\=jY\jZ,j[j`h\ja;jb\vjcjc\\jf>\jgojh\jjEjk\pjl=jlT\jl\&jm(jm\wjnI\jo\jpRju\Zju5\"jw^jw\jxj{rj{}\nj{\j|&j*jjXjmjj14jRj>\jjRj-jʛjj\jFjbjmj\jj\n7j3j	j]jj0j\joj\"j\jjj\jf\j\\jjjFj\r\j$j#jjjZ\0je&jcNjj/jʾj\\jMj\:j/jXj\j:\js\j\\\nj\\j\(j̺\njͭ\j\{\j\\PjП\jѻbj\ݐj\\jԹj׫>j\Oj\xj؛jۂj۽>j\Tj\\\j\\kj\<\j\Kjߵj\\aj\Wj\:Gj\ޭj\\\j\j\\\j\wYj\j\uj\]\j\\j\2j\m@j\yj\Ij\\\j\j\W\j\\'jj\j\[sj\\j\\NjIjj\\j\\k\0$k\sk)]k\Qk+k\k:<kk;k\r2k\r<k\rlk\rxakEkl k\kk \kVGk[=k\k%yk\\k{k]\khk\Z^k\k\"k.k\kkrk \\k#9k$Isk&0k(F\k(k)\Sk*)9k*L\k+?ak,%\nk,k-\\k.^wk/	k/Ck/pk1k5<\k5k6;\k8Ҧk8\\Zk9\k;.k=\k=\\k?Yk?QkA0\0kB\rkBY<kC%kDkD\IkF<kF\\kGxAkJ\kMj\0kN@kNgXkQ\-kR|kS\';kSkS\kTbkV\nkV\kZr\kZ\]k\\Pk^\k_={kaj\kb\"kbL\kc8kd\keke;\kf<3kh\kh³kjko{Sko-kp!kp\9kr#+ks\qkt1ktmkuLku?\kv\kw@kw\Ikxzk{k|l\k}\"k}W<k}\\k~k^6kj\k\k$\k]IkkK\kkk\kgkck\fk_kck0k\4k!kk\kVpk/kSk\Tk0k,>kknkn\k78k+k\Z#k\ckR\'k]bkk\k4k]\k|kXkk͍k.k=kq\kYkS6kvkk#\kLkpkXkk¤k\k\4\k\SkŦkƺ\k\k\k\i\k\%\kͣ\k\ukφ\k\\nk\-k\\\kӕk\\ek\;7k\\#k\\)kىk\\\k۟k\GTk\w\kߌ\k\\\k\\k\W2k\\\Nk\<k\fk\Ek\܂k\}\nk\\k\\ k\n;k\wk\\nCk\kkVkk6kXk@kc{kkߒkkll1ll\7lBvlc\"l0\lƇlclwhl\lPl[?lll	hl\nY}l\nj\l\n\(l\n\l\Rlll\l,lFllllw\l\l\Z\pllMOldl ~l \l!l\"Cl\"bUl$l%eIl%g=l%\l\'l\'l\'l(\\[l(ul)Jl*Y;l*\zl-7Jl-|l-pl/\Z>l19l3\l4\"l6j\l8l<iOl=\l=ľl>?l?3l@I\lD\xlF.lGAlHYlHlIǀlJs3lKlK!lL0OlQClSlVlW̵lW\lXYlX\'lY&l[.l[33l[l\\\l\\\l\\l\\\\l^%yl^7\l^\l_S\l_\\rlb,ldlf\\li@lk\ll4=lm`*lm\OlnFloalowlq\lròlr\5lt6lu(8lv\\lv\lxl|\l}\Fl~YMl~!l~\l\lZRlilggllVklqpl\l#,l$flg%l\lWl\l88lĨl\Nlb1lڹl\ulRl\lcl\l\l߰lSl\\lN3l\nl %ll\zlg@l#l\Ql-lMll$vlrl֐l\l0LlDl^\ll\\lJ\lrl	\lpl\Zlpl(ll\6l\l0olRl\\l\;l\\l\)l\4>lĬxl\\nl\\0l\2^l\_lȤal\tal\l\tl\ɣlζbl\\\l\Ewl\ lӕl\>l\,il\\\l\w\l\Ml\l٘l\8l\ײl\l\l\l\łl\\(l\dl\wYl\Ȳl\Hl\\l\jl\\l\l\\l\<l\\8l\\nl\\Ml\\lljl\l\\l\lT+l2\l|\"l\(lg\l?mmm\!m\-mvsmtm)m	Xm\nm\r\mFm9m\\mm\ m\{m\Z*\m\Zdcm\ZUmlm\m}\mm 0dm!*Im!EWm\"+sm\";m#Cm&Irm&Rm)s\m*Xm*m+EQm+\ m,Sm,m,\m-Vm0\\rm0\[m1\\m5\=m73m7\m:\m:\`m:m<m<\\m=lm=\\'m>\emA(mAEmFRLmFvmG\?mH^ImI1mIkmI\_mKmK\mL\rmM]mMc%mN)\mNJHmOjhmQ]\mS5:mS\mU8mU\mV\mXamXmX\mYm]Dm^|m^sm_\m_\nmaXmambJmb\@mc\md\me$me\mfX|mfp9mi`mi6mk\\mmumm6momoټmo\2mpmsmtmtmt\mvT|mw\mw\mx\Amym{j\m{m\m*mm\ms\m9\mlm\m?\m\mmmSPm|m\m\\mm\\mm[\mmm\m$m\ma\mΑmXmY\m|!mm\mZpm`mm\m\\mN\m\?m\Z0mm-rm6mmmm;mm\fmCmmKm\m\m:\mm\m\eym\\jm\&m\\em\-\m\U.mƝam\m\\nJmȪIm\\/m\\m\n\m\~Tm\\m\Nm\\\m\[mЂ\m\gmѠ\m\\m\\im\\m\\em\f\m\m\Lm\m\\Ym\m\m\\nkm\mm\@m\mm\~Om\Em\mr<m\m4NmgGm.mnnn\\"n%(n8n	\n\rFn\n\'nOn$\nǤnnf\n\n{\0n.n\Zn\"n%#n\nBnpn$nfnnn\dn \n!\Qn#\\n%\En(zn*?ln*\n+?n+\rn,V=n-\	n1_n1\\0n2Fn3]n3\Dn5\rn63n6En7\n:\n:\Zn;Vn<)sn<{\n>ͭn?\n?\inC\0nDT\nFXnG\nG\nGnIf\nI\nLnL$nN6nN(nN\\\nOnPnPvnP nQnT\ZnnUPnV\TnW5nnWUnX\Z1nZ\n]\\n^d8n`una\\nb3ncnd\\ng/ng\'nhni7nj\'rnj\nknlmnn%nn\noZnqnq\\'nr3(ns\Xnt\nw\Rnx	nyVin{S\n|\n} n}\\n~tVn`\nr^nT\n=nn\\n\Fn\n3\n\n0\'n\gnn7\0n\\n!In6nD\n\\npn\&n\\nX\\nnn\nzn\\n9ndnnxVnB\nn,n\\Qnnn\rn%n{nFn\in\nҟn1Dncpn.n\-n\\n*%n\ununnXZng-nynnBnn\n\n\^[n\\\n\\n\\4n\\n\\n\~\n\\n\/n\]>n\@n\;n\1n؟,nܱn\\vnߚ\n\,n\}n㧘n\n\͋n\\0n\kn\n\y^n\QFn\%n\-n\\n\n\\n\\\n\Bn nP)nFn\Cn\\n\nqn\nzgn\o\0\o\\odyowSolo+@ohoL/o[oB^o\no\\o\r\\o4\oH9oo\o\o<o\soK\o\oono3o\'ozo (5o!o!\\o\"-\o#6o$o$Xo$\%o&Ko\'\o*-o*Xo+Qo,^o,;o-8\o0Wo3o5\co;6Co=\o>@o>T\o>o>foC/oD=oE\xoG&oHoK|*oM)oM\toOj!oO\CoP#\oSSoSnoUVoUe|oV&oVoV֟oYo^\o_\\ob?ococod\od\oe\ZofYnogoiEroi\noj=\ojokok\}oo\op%Fop\0op\#op\oqBoq\\:oq~or\WotNouW\rovboovmox^\o{X\o{lpo}o}\no~j;o~ρoEoao\oo\ToNooV\o\]o4mo9o3oo\Zoao\o\oIoRo\\o\o|oo\oMo¶o%]o@]o$o\o\odo\o?\ogo\XoToio3oo\o\Moo]\of~o>kooú@o\\o\o\\yo\\$o\\;o\:o֪*o\o׷*oؽSo\\}o\\Ao\Cqo\Doەo\o\doޒ\o\Ȇo\2\o\\o\Po\\\o\%o\}o\\o\\o\zo\=o\soo\o\r9o\o\bo\!@o\wQo\yAo3o٣o\Zo\o\|o%<oMpPhp!`p{qpgpPp7p\Fp	A\ppTp{pp\qpp\\ps\pĴp\Z9p:Cp\\pp`pOpD@pl\pn\pEp\'p \p!qp\"#\p#	p$p%ͼp\'§p*p*\\p*p+\*p-\p-\p-\p1?p2\\p3J\p4p6p8Zp9p9p9Jp;(p=p>p@Wp@Sp@\pApBpD>\pDHpEcpFgLpFskpG1\pG\pH}\pH^pI\pI(pIwpJpKE&pL^pL\_pO#pOJpO\pPpQ#XpQnpQpR*upV-pXapX`pYpY!4pY^ip`\p`HLpa\paspc`pc6pe_pf0pfE8ph_ph\pi\pkZppp\\rpr\pspt7ptr\pu{pu7pvpv$pv\	px\r|p{kp~/Ap\,p\rpc3ppcp\8phtp%tpKmp\p\+peZp9pYPp\pppH}p<p}\pp\'?p\\"p.Opsp:2ptGpZp\\pnp\Vpwpp.\ppnbp5pp8!p_\p,pop\\pPpi	pEpX\np\paxpk\p\p\pTp\pp\\p\p\pŕp?-pf\p\p΢p\pN}papx\p\.p\p\ށp\y\p\\\p\\p\Ppš\p\>\p\l~p\\p\\p\p\\dp\\p\1yp΃*pϨp\l5p\2p\5Ep\͔p\AopӯYp\Qp\np\,p\ApՃpՔ;p\\Z&p\\p\qp۰p\~pܳp\Gtp\\\p\t\p\ѓp\p\\p\\-p\\p\\\p\Vp\\\p\׏p\\\p\p\8\'p\<sp\_p\op\\0p\up\\jp\p\w\p\Fap\Uop\6p\\)p\:p\\\pJ=p\gp!\p%`pDp\Zp\\;p\pǵp\\p/qp\7qqgqq	\q\nq^\q9\\q\\q2q\\q\q+q\\q\qo]q5q\q\*q\ZBq\Zq\0!q\"Tq\"\\\q$lq$,q\'C\q(-\Zq(\\nq*q*Vq*\\\q+\"q,oq-\q-҅q-\q-1q.~q/Zq3\q6yq8>\\q9q9\\q<\\q= q@Wq@\qA[|qD!\qDnqD\\qD\qE`qFPqIqIuqI\gqI\qJ3qK|qL|	qM[:qMDqO\qOuqOkqP\qPqP\qRDoqRjqRqT\"oqT.qT\qU7qUqU8qV%qV\qWqX\xqYW\q[(q]vq]\\qc\\qeEqfWqfؙqgTIqg\qj]kqm\qm&IqmOqo\qp\aqqqrSOqr\qrqvnqvqyyqz\Zq{\bq}q}\q~.\qqf\qšq=qԧqyGq_\q :qu-q\\qSqqW\q\q\\q\\0q\*q)\q ]q|\q\xqA\qYEq$q\q`q+\q`q4q4qiqqwq\1q)q\iq\Aq\PqHq\qRdqNq\Dq\q6\qcq\\q9q\"\rqG/qeqLqJ\q~q*q@hqAqgq\pQqvq\\qĖ5q\-qşq\q\ OqǠq\/q\\\q˄qήqѩ\q\	q\(qع\q\0qً\q\jq\w#qܤBqܯXq\q\Bq\\+q\\q\q\9q\GXq䗣q\\q\@q\\_q\lq\q\\q\aq\`q!qqxq\-qIqq4\q]qMEqt\nqq>qq\r\0Fcr\0r1Pr\r\rXRr\rrGrr\r	r+\r3mr\rr^r=r^\r\rrP@rrrqr\ZDr\Zr\$r˖r\]r r!\r!r\"r$r&\\rr\'r(\r*\r*Qr*r.;_r.\\r.%r/\r/\r0\r1wr2TLr2y+r3_r4ոr5(r7F\r8%r8r:(r:r;\&r<Vr>aqr@dGrFirHC\rII\rIrMArM?rNzrN\rPUrP rPĚrP\)rQ~\rQirUQ\rW\rXG1rYxrZ\r[\mr[dr\\}%r_Dir`\rrdJrd@rf\rgDrgrh/rh&ri\\rkn\rk}rlIrlԶrmrp`8rqrr\Crr\Wrr\8ruIrv7ryMr}\Br\erUr;rr\r\r\rYrr\r\0rhr\\\r\nrr\r/*r2r3rr	}r\,r\Vr\rUUrsrer#ar\Ur\}r\vr4r/0rv\r(+rCrFrrΞr\\r\r\Sr!rrǋr8{rվrh*rkr\r\}r0r޺rMfrn\r\r\r\=r\>Xr\|r\\\r\*cr˰r\{r\\er\r\_rДgr\\r\iKr\.r\\dr\\lrڸr\\rr\\r\\rr\\jr\\#r\r߰Fr\\r\\\r\rr\r\\dr\,\r\Vr\Dr\\rr\UWr\r\\r\\r\\"+r\9r\rr\\rJ;r\rar^\'s\s(s2ssMs\n(s)\s\s\r$s\r!s$su\ss8susAs\swis\sF\szzs\ZGsb@sgrsp\'s\<ss$s(\'s(\Zs*Sls-\s/s/CGs/kCs0vs2\\s4\os69*s7,Is8#s9s9s;As<zs=Ns>Ws@\jsF3\sFbsFqsF\sGusHF}sHނsH\*sI\sIܖsK<NsLm\sO~NsOֈsS$\sSfsU\4sXlsY\sZ\ms[its]ws`	xs`|saFsa\0sbscHsd\se\sfsisk\slesm\Zsosp\sqbsqKFsrl\ssB\stHstEstL\stWstasu\\sx\sz\Os~s\Rsr\sw\sLMsPs\s\sԩs\spsP\ss\Vss@Us\\sӾssN#s\sssX\s#dss0s\s\sq{sKs\ksggs;\\s\ssE\s\s\;se|ss\ss`ss\,s4\s@ss2sks;>ss\ssas\s:ss9s\ps\Fks\ˆs\s\G;s\\Z\s\\Is\s\l@sɬs\s\!s\^sΞ\s\%s\0gs\l\s\)\s\4sة\s\as\?s\(\s\Os\\s\7hs\ps\{Hs\as\\s\\\s\\\s[Esۏs\\t\0_t,t\st6tst]tt\rt\rl)tt\\'t\EttWktmut\\t=tt\tt(\t\Z\QtLt\'t iQt!It\"D[t\"~t#t&;Ht&t\t&t(!(t(}t+5t+\t-@t./t12t2J\t2jt3t6*\t9\t:\t;Gt<Zt<g4t<\!t=tA\tC\\tGtHn\tJ=ntN٣tOŢtQp tQ~\tTAtVBwtX\tYtY!~tZ!tZ4vtZ\t[\t[t\\0t^\3t_!t`9MtcItetfodtgC\tjtk\\tm}\tm(tn\\tqͰttw\tttt4tu]tvtwPtxqtztz[\t{>\t{؟t|ft|\\tD>tbt+t\tE\t}ttutzt5dtAt[t\t+t\\t0ttϊtt^:t\ntUkt!tG~t6t\tt;ttat[qtc\t\t\t\\tdtTt#jttT\twtnatItɥt\tQ\t/ttKut\\{tt\Zt~t\\0\tĦ{tŎ\t\\'t\d\tȆtɆt\\At\i\t\St\t\7Gt\@ t\\xt\Ft\k\t\ltֹ~tּt\-t\6t\\\t\\t\t\5t\t\\t\\vt\,Tt\ t\\0\Zt\\t\}t峽t\dt\=t\t\\\t\zt붮t\K\nt\bt\Ht\tt\\t\\lt\\\t\-t\Jt\=t\t\\t~\rt\t\\tOQtbu\\u\u;\u\u~u\u		u	`Iu\nu2 u\ru\vu\u!u^DugSu\eu&7uPuu\u3\uE{u!	u!>u\"D\'u\"u#`u&Ӿu\'/u+!Bu,\u- ?u0Xu1Wu1ζu5u6ُu9{u;q\u=^zu>\u>\u?uBDyuC+uD\\uE~uEZuF,uFUuFuKuL-[uLuM\uM2uMuNYuNnuO;/uQMsuU\uUuVuXkuXuX\\uXNuZu[Nu^\u_+u_RubIrubuc\n\ud2\ue\uguiuiCMuiduj\uj]uj\\uk<uk;um9unPutXuw\\uyuz\\u|	u|۴u}u~\"u~VWu~Qu~ۜuFu\\um5u\$u\'u\uuuuu\\u2uu8u\u`u̱u	u\u_auFwu%eu\,u,u\u?u^uFuu\(uuu&uu Yu\Cuu/u%u\u-@ur\u/gu|fu\'u/\nuiutu\u\\u&uu\\6uĬYu\]?u\ru\Bu\\{u\eu\\u\AuѠu\\u\vu\\ou֪4uֻ\u\\"Ju\ u\8\u\\Fu܊Luܗuܫ+uܴu\Wu\<\0u\+Su\Ku\:Au\\u\\u\su\*su\Hu\qdu\\u\\"\u\\u\,u\\Cu\Wu\u\Mu\PCu\\\uقu!u<u+v\0wv\0m\Zv\0{v\0\(vvvnvP\vv>v\vvJv\v5v\nnvZv\"v[vp\v\r\vWvcvuvv\v\v\vfzvMv\\v\Z+v\Z]Xv\Z\vbfvtpv\"\*v&v(?xv)vXv*[v* v+[\v,-v-\v-Cv0u\v2\v2v\v5:\v5v6\\v7\pv:z.v;Cv=\v=0v>\v?fv?	v@vBVvC9,vE+vFvIQvKrvK=vMD+vM\vN \"vNHvNj0vOK#vO\vPmvP\\vUWvUvX\\vZE\vZ\\v\\ixv_cv`\0lva\vb\vd89ve-vgvmEvm&vn+vo}vo.vovo>vpvp\vr\pvs&vs)vs\lvu%vw<\vx>vzĈv|qv|\\Zv\\vvͷv\v%Lv\\vmv\\vv\=vZ\vwv\wv%vv\\vIjv\|v\v\vvfvK	v\nvv\(v\evvBv0vvvRZvƿv}v\vYTvRve\vB&v@v?\v[Zv\G\v\Hv\+ov\^vővŗ\v\\#v\7Hvƌ%v\[\vǮv\v\z;v\\v\̋v̨\v\Skv͂v\\&v\\FvУsv\\\v\mzvғv\\v\v\`\vԅv\nv\\vװv\\:v\7Cv\\v\\>v\ϋv܇\v݅\v݌v\wvގv\\v\\v\Dv߻Rv\\v\Mv\rv\*gv\Kv\\v\d\v銀v\v\$v\\rv\6\'v\Jv\Yyv\uv\%v\\1v\(v\cv\\\v%2vJvi\v_vʲvvLv9v#kvj6wwmww\ww\`wrwwO\w\\w	\nw\nwwl^www9{w\awu\'w\\ww\\\wDw9w\Lw\Zww-w\w w#]\w%\w&.w+.lw,w-\w.w.\{w1\w1[w1\w4^\w5t\w5w6w7cFw7\Rw8\\w:b\w;X.w<Mw=j4w=\vw?w@\"gwA)\wABwArwAwA\wB\n\'wBwCFwC\#wDTlwD\\ZwFwG\'kwGGwHwKG\wL\DwNwN7\wNVVwO\wO!wO@wO\uwP\r\wP\ZwP,SwQ \wQwRzwT\DwU\wX5\wXwXwX\\w]w^~\w^\Kw_ygw_wcwd\weQ[wfwgwm6wn\zwpowqRfwqfNwqn\wswu Ewu4wu\PwvwwUzwxw{Pw{چw|)w}\"w}mw~ww\wz*wSwr7w\\w\lwp?w\w\	wWw\0rwwe<w\Qw2wߍw\ZEw\\ww3w\/wiw\wwwy\www w\^w@wj\ww(\wKw\w\wـw&wwQw\wt\wi\ww\wxw\0wdIwXw\ww0&w\wLkw\7VwƊwƨ\nw\w\:w\Zw\\\w\\wн\w\M=w\ZKw\\\w\Xwأ;w\--w\ѥw\+ew\\w\?\w\Lw\7w\(;w\kw\\\w\S)w\.(w\50w\Tw\w\u\w\w\\\w\q\w\w\\w\iw\tw\\lw\\>w\w\w\w\9w\)wQwwdw5w\w4Zw/w\w\wx\0x\0\Bx\>x4xx\n\x\re\x\rx\rȑxx!\xuxIxʫxx>x%>x!x#P\x$Dx*x*~Zx*\x+x,vx-x-x/1^x1.x4\"\x8\x9x>EvxAxC\'cxDY$xD\xD\xEi\xEOxEʜxJ\\xKpBxLZxLe\\xLz|xLCxMIxNg\xP\xS\ZxT\xWxW[\'xXN2xXxY?\xYF\xY\FxZA_xZ\xZ\x[g\x[\x\\%x\\\ax]G(x]\x^_\x_x_\xb_\nxb\xi\xixjK\Zxjxk\\xlS\xm%\xmxni<xn\xo(xs\0xt}pxt\\xxNxzxz\!x{\x{s\x{\bx|vx}׏x~\x@bx\\x\\"x\x\xx\exayxӤx\nYxD\xa\Zx	ox&\xWx\x\xĴx\xYxNxΖxy\xxgx_x\x\3x*:x8\xBx\OxH\xGxq:x\\xXx\`xHx8xo6xSxx;\x=\xܓx4x2xvx\xrx\x8xknx\/x\Wx\\>x\\x\x\/\0x\x\fxǝnx\]Hx\F`x\ZVx\lx\ωxҰx֨px\\\x\Z\x\\x݊x\sAx\\\x\x\\x뉭x쑵x\\x\Wx\qx\\\\x\nx\\x\\x\ x\x\\xafx\\xxxUIx\\yy\\y+yuyC\yy\'y\0y\]y\n\YyJ,yy\yy\;y\r\y\r\)yjyy\y\yDNyA;y\'`y7\y\Zl\ry\vyѧyOSysy\ymycy#\Zy$Ry%^y&`y&Yy(ey*y+Diy,y,y-\Zy-)y-\Jy.Dy1\y3/y4iy5.\y5Kmy5}_y6<y6\y7\"Ky7\sy8qy9?y9їy:y:Oy;?y;y<By<\yD/yD\yJ4\yJ>yJ\yKT\'yL&yN|yPh\yP1yQyR)yRyRbyV\r\yXyX\yYyYFyY8yZ\My]t@y_\{y`Lya\ya\yfNyh\Jyh\\yiRyi	ykbylym\{ynyoGypuyqDyqi\yr ;yv6yvyxuy{ҵy|\AydyLy\ryyayyy]\y\yyy;\yoy\y.y~\yqyy\ny͎yB\yZCy\\\\yVytFy\yo\yay\\yB\\yy\\\y\y\'yN\y{yiOy^y\y\y@y;vy\yyySy0ya\yDPy+\y\y<y\y\2y[y\y\ y\y\\9yʼy˚	y\\y͂\yΝ\y\6y\\y\\3y\Ay\{yמ\y\\sy\5#y\XXy۰\y\\Py\\y\@xy\	3y\^y⃘y\F:y\y\Z\y\\@y\y\\y\\y\RIy\-y\Xy\\\y\^?yy\yYy\{ybyqy˽zz^z\pz\z\nd\z	Zzf\z\&zz z7=z]\z)9z\Z3zj\zz\z\\\zjz#zEzoez7z5zmz&uz!z!uz#\n\z#ڎz%6uz\'Uz(\z)\z+7z,\az-\Zdz-0z-kz-ɣz/U\z0\Zz0}z2\z2?=z2\\z4O%z5\Ez8xz8z9\z9_az:\\z=[z?\\z@e)z@k\zCpzDKYzD\\zFzG\zHOzHzLȴzPzRlzS\zUnzV\ZzXzzY9z[َz\\;z\\HVz\\\z]s4z]z]z^,5z^F\z_\0z_\z`[Eza6(zbC\"zb\zd\zizkozk\zm\0zoYzo\7zrzr\\zs\\zt=zuzv\zv۪zx\zy\.zzF\zz_z{8z|\z|\z}F z}}\z~\z.Szwz\\z-z#z\z5$zxXz}czmzzzz\zjzz\ezz\z0\z%z\z\xz\Tz@qzSzzz\zzzR\zԐzW\zBz\zz<zg1z\z\\z\\\zh\z,z\zDz\zz0zz*\zyzXzzz]qzj4z~$z\2zKdz$\z\qz\\z\z\qazĎ3z\\)z\\\z\zzɞ\zɻz\svzʁ\z\\rz\7\z\Osz\nNz\\\nz\&\z\Rz\C0z\r|z\\zָzפNz\|z\iz\z\(z\\\zܢz\@z\R{z\\z\oz\\\z\CHz\:z\z\z\Lz\ыz\wjz\y\z\\z\Pqz\_z\Fz\mHz\}z\\Vz\z\\>z\Uz\{OzX{%{\{\\^{_F{ݸ{	Xn{\n8{+\{	{p{{F{\#{67{\6{r{{\"{s{ѷ{C{ߠ{Xp{\Z&{\\{U{6{w{ b{!	Z{#{#L{$:{$({%\\\{&Ij{(\\{)\K{*\'{*l{+}>{,X{-	\{-K{-Q{.L|{.\[{/{0D_{0{1${2{2\\{5\0{5RK{7T){7g[{9K\{9O+{9x{;}{=pE{>@x{?>={AQi{G\.{HM{Nc{O{O\f{O&{PS{S1V{T\\{U{U]u{V7@{W={W\{Xc{Ze{Z{[{\\{]\{^\V{^\\{_\n{`b{`մ{aB\'{ba\{cj{d;{d{{eT\{f{g\{g\\{hl{h\\{i{j\{l{ls%{l\c{m9R{m\"{m\h{o\\{tz\{t{w{xV{yC{{\"{|u\{}Y{\\{C{^H{{b{\{{{h\'{QV{\{U{6k{Ӗ{L{	\{9{!f{{+){{{u{\"-{G{{\0\0{p{{\{\{({{\}{\{5\{S{\{,\{ǀ{|\{{g{\\{z({\{\,{$\{=Q{\\\{ſ{\(n{\\W{\Z{{ˮI{\{\7\{\\\{ϫy{\\Z{\\E{\\{\%{\1~{\=s{\}{؊{\k0{\9{\{\\{௙{\\&{\Ƨ{\\\'{\={禀{\ɏ{\?\{\`\{뿫{\L9{\\J{\ {\FV{\K}{\4{\\{\i{\:_{\\{\\nT{\t{\\{\{d${{\{\:|ǒ|J\|ޱ|\\|4\||\|R|g\||\|\|\n\8|\\|;|\|\|N\|\|k\|x|k|\|v|\Z;|wy||*|\\|!\:|#\|$\|%A|%j\|%\|%\|(-|(\\|(\'|*^`|+I(|+tH|,]|,\X|.\$|/\|/	|/ԫ|2\|3|4\a|5|51|6|6dT|6ɍ|:u\|:\P|;|<~\|>|>|?7?|@_\|@|C\\|DQ|GF|G\|Ho	|Hb|JI|K2\|Lg|M\|Nf|O\\|Q|S#|U|U\|Xd|X|X\w|Y\|Y\|Z}|[|[\r|\\)|\\\|\\\|]Ef|_I|`5|`\Y|a\|b\|c|c|ej|f%|h\L|jJ>|kd|k|n\|n|pϨ|q4|u>|vg\r|w\n|w\\|x\0|y|{\n(||xe|};V|~N\|~\>||V||D|E\|%&||T\|Y|\||\\|||\|* |W|\a|:\0|	|\\|4p||Y||=|\\|\q|h\|U|\|\"|xF||i|\|\:|||3|U|	K|\b|vd|\z||\0|@\|Ð|\\;|\\|\\Z|\\8|\<|\\Y|ʂ\|\y|\٪|\Po|\\\|\v|\\z|\\\|\6|\\0|\ߠ|\K|ۂ|ۋb|\l!|\6|\Q\|߸|\k\|\\|\#_|\\a|\\\|\U<|\ad|\\\|\|\+\|\3|\Z|\w|\|\\|\}|\̄|\\|\\n|\8\|\\|,|_|\|6|8\||x|r|\\|\|\z|\\|s\|\}9}}}X}\\}ܟ}}4}mZ}$}m}_}l%}EC}}}m}}\}q}~}\Z\a}X}!}!\\}!g}!}\"/}$B}%\}%\}&\}\'@}(\{})}+\0}+\\},I},=}.}.h\}.z}/N&}/}0\}2\U}4}4\\}8z0}8}9W)}9\\}:4}:};^}=\}>!}>}>}B\'~}C\'}C\|}E?}E\}F`}Fe}Gl\}I\}Jk}J\!}K\\}L$\'}OS}Oj\}Q#}Tu\}T٭}V\)}Wj\}W6}X[\}ZM}[c\}]}]I}]\y}^z\n}_h}_\}`G7}`\\}`\?}d	v}dl}e\}e:P}f\{}g;}h׌}jW\}jf}j[}m}m\O}n\}oBA}p&\}p\}q}sN}uV*}u\\}v6\}v}x\\}x\}{\r\}{bi}{}{\\}{\\}}\\}~{u}>}U\}}\ry}.}}m\}\}6\}}\c}&}&D}ʽ}\Zc}B\}X}A}:}{},\}&}\F}VF}\}\"0},N}\\}\G}}}b}}*\}AF}\}}Q}\}K3}tp}m\}o}}\}}ڨ}D-}\=}\/}\E}\p^}\<\}\s]}ǫ}\;}\V}Ɏ|}\^\}ϖg}\U\}\\P}\;!}\x}Ԉ\}ԭy}\A}\d\}\\\}\\\}ُ\}ٓ}\:}ݪg}\5}\o#}\^}\&w}\>\}\\\}\\?}\J}\\T}\J\}\M}\\E}\\\}\L}\}}\}\\\}\\r}\>W}\	}\0}\~(}\\}\f\}\!}V}}g}}Yj}9~]~B~1~n\~\n(~\n\~w~/8~~\r\~\\~~U~~Ӧ~+\~Q^~\~(~yV~\Zd~\Z-{~\Z\d~C\~C\~x~\~\D~\~\0~g\~{^~ \%~ \F~#\~#V\~$\M~%\~\'&h~(\\'~+a~+b~+\~,\"%~,\S~-~.E~.~/9c~/K~24~3^\~8\\~;*L~=~?C~@X<~@~Df~DF\~DHb~DM~D`~EJ\~E\~J~N\<~O<~O\~PJj~R.H~R\~SF\~S\\~T(~T\\~W=\~WY\n~Z~\\\~bs4~b~d~f\~gOy~hai~l{~m]\~md#~q1~qw~q\`~s\~t~t$~u~u~u~v-~w~x~yS\~zZ\\~zzp~z~\~z~|P~}~~G\~1x~I~\\~Ƃ~:\~~P~:~}~~~\~\M~}\~T~\\~\z~\\~~~\~kP~\<~)\~90~\~\5~\\~Kb~\~\\~+~j~F\~\n~h~qe~~~jB~)~\~`~~\~\\~¬M~\L~\Qi~ü@~\\~\Y~ŀf~\~\~\7_~\NB~\\~\\~Ϗ~\\~Ѭ~ѭ\~\\\~\\\~\?r~\oG~\I~\{~ځ~یc~\T%~\9~\\\~\{\~\ڄ~\n\~\\~\\~\=\~\}~\-=~\P\n~\Ne~\|~\\Z:~\\\~\\\~\\~\@<~\\'~\&~\M\~\\x~\~\\0~\[~\֞~\_~\[\~\x~~5~~\~:~~\\\~\=~D~[\\0|AzV\IR\H	*\nv*\n)?1s\Ew*%\bi\\ZQ\Z\ZT\ZK\\Z\\? $\&.&\\'C(w)2*$Z+\-\0\s1@\2\3\44\>9d:w\<>\<=0\??\A\B)=BDE\\FGIJJy)K6>LVQQNRiR\OS\FU,U\.W\Z$WZ/\0\\C\\\d\\\L`\a#Mcxzcܸd\ze\eVfrgIgj>kR6lkl\n0m(4m\m\ns=s\Ctt&w]w[x|\y$vy\	zM{\.|\||\\}\'b}f\~ٙYx\\9w\\L\p\"K*zC\\PX\9f^g\+\BlH\Э]pk\r~?\{\"JX\\?\\l&\SZœ\o^\C\^^ͽ\i΍\%\55\dӋ\Z\@\\M\0\\\#ؕ\\\\Z\ܕHܸ޻_\\\\\c\\l\\E\\}\\\>9㻽\\a\\(\{I\\\(\\\D\+\\\\(\@\\\	\\\a\@XQXM\0\kQK~ Y,-=Ѐ	)O\n=E\n\\i\8~\ryY}\e\\\2BQ?!A-\ހ/:\ ! v$Oe(WO*9e+g+Ɓ,-ـ/D0\ڀ1C3>ɀ485ǜ792<̀=c??i@EFtH[5H\wIZMBNgNʀOOjCS\ZV\WʀẀYY/)Y\"Y\}ZuFZ\[Q[[=\\^I`>r`\\bD\bǺccGcs߀d\nd[Hdd\d\Leg\fDhbil<l=Klm쉀nむpIp`rۀsـtStu0ùx\Ԁy\)z}v~h4VG9|be[oB࿀\\8HE06kvp3J./l3ì\r\fǀhˀ[m4ŀIƎ߀速/8\ˀ\0=}р\"2倨%k\怯?\?C w8.iG2~=J\&݀)ꭀր\[\Íō\\?>ȉ%\l\*˽^΃ˀ\ĀϨހв\\\\g\#\\\=\<h\R\ޑQ\\Z\iĀ⽟\G\zl\\\\Ӏ\݀\o\[\o\膀\\\y\8\\@\\ʀ\\&\\\n\\\\H\K\`\\Z\\D\\ŀT	\rh\'~.8z\eL\_= #O\	t\\n\w{|\́g\=\\Z@޿eցړہi\G\Z\Z4`\ZZ\+߁ܛ  e#i#@\#%#^$\\Z%W\&\'=(ӄ)\0*],J.%\.10\0\"0\܁2ṕ2u݁447K8\^9\;%B-DVD\NFCF_Gd܁I;IOIS\'JK2}L\QQuQ;Q\nRDLRSfՁV҆V^W\FW\{X\ZaZ[\n[]+`DaB>bb\\cd|d[d\܁ebh\i	i\nj3an*nkn\\n\n\o2kq\Nr\?sǼs\bteuÃy?y\\J{\I}\'\l\00F\\\\5؃\'5=}ځ\+.\nLYB\R\r)\VၡsQ\\\nָʁ<\<C^cY3mˁ܁:\Z@!\&ځ\Wy\K\VƦƱ\0\\\Ł\0 \`\U0\;\ʫܟ\|j\5\}v\(W\$\\\\6-\Ձ\/\2\\[\\M\?\'\\\:\AЁ\CP\w\\Ɂ|8\\0y#\0C\݂r˂!\r%,R\'j(FJhz  Ȃ.\\P\ZK]\ނ8 2 Q!k!z!~Ƃ\"a\"\O#R(\*=\*\8+ab/J0{83Ǝ6т6\6\\7c99ׂ:à;a;ǈ<\ނ=>\r@B|qDӂEeF<\F\HqI}eIK\\ЂLBVLLNBRO{\O\MRvȂR$R\nTկV}\ZM[^F_EN`O+cCc<eJfvgi3\jB\křm݂o?ނp@p7qq\\Zrwasul\x9zn|\|ž~\[T]炃\\\Va1$3X{?\̂쫂keAy.DܪGpقdN\"%q)0\ʂ\"ʂܻGmD\*o;obwׂ	炳}\FނS=<eȂ^\\*҂\+ā7\31ńŘȿ\Ҋ\}˦z\	ͳg\\\R\j,\{\I׆؀[\^ۆn۟f\\\˂\\\l\u\\c\\\W\\\n\\6\\\Ђ\ϛ\\g\_\\܂\\\\J\<\\YS\[|\U\㗂\K\1\\܂\\f\qł݃\0\\#\ڃ=ڃ\..\nt\n\"\\r\5\'؃mԵY{\Z\\<w\,/\ZAt\Zg܃r\"\0\"х#>D$<\%\&=)b*\̃-\c..\`/\E092-Q2\3\	4j6V*6y8o\9pa:N?D$EVEܾF[ރFH6H\ZH\΃I6MIXJKK	Ls OP\|Q$QFRy\\ f\\p\\\g]ۤ^湃_)݃aTǃb\.fh`Zha׃hkjkxk\l\l4FpqRq0ttyu9v\v\Lxy9y\[z\z܏{|҃|FF|ƃ}}Ճ:P亃>Pe΃\փ\!\)?σP\UHKɃF܃\䃑eàI}^@\9򃗓1\˃ԃ؏U\\>^cu\Yƃg\9Fƃp!._ \nރ\8G^K铃\M\΃#Y@\pĉ\4r\0\<\\\\{\(̢փФ\\ڈӆ\]֘\\\t\\Kڿ\\ \K|\T۳\\ȃ\ж\\\j\rɃ\W\G\\j\̓\TX\\\Z\\>\\L\\\6\\\Ѓ\m$\z\=yrif\ybgMa\0\\	\0h\rt2\ci!xѝ啄\"\҄F\\ \Z	Y%\d^i[#g#,#$VD%PF%&2܄(3**U*y*ш+9H,H-B\-Ms-͑/80>0y162!3Ǆ3\\3\\4\'m5\p7*҄7߄8J;>;Zj;n΄>҄>\?\n5?\\B/BbABgEB7C)UC-\D E\F\JG҄GHJe=Ls\Mp-MMO?#PDT$UքU%WlZ\r[\\\\\i_ `\dG\fӄhbjKqj\Ylׄlbn\Z\oJo\Ao\ʄqLsntwu:cv\rw_wxy\\zfe~\ᄁD(Зjń\"D\\7G\DE(~Ȅ\\#\\\\rN\q( !W\\pqӕфӄ~%TE\3IjZ: O\rτ\٠\UQ*\Ä̈́\4\K\!}\[ȦȰt\\\r\&ɿ\\b\\\\\E\̢\Wф\7\g\\\v\GV\\\\d\Z\fτ\1\\w\>\\\\\\E\Q0\S\\\寈\Z\\U\.\e\\\L\VG\ܪ\s\Gsv\\IHхI	S_\\}K\$م	s$\n\-\nb\nxƅØ\\\rm\r\r\o\{\م\\7\"\"#<%z&\J)+l)2)jɅ)k)k)t,,\\-\-x/03i:5;7\Z8q|:2<;<nm>JӅ@_B&˅HiPH\PJ]MƅQ\rRt\R\SUV\WfXх[\\]^\bc\\c4*dse\'f	f6ff\gz\g\gijj@jрoir\QsKsuv)vXvpx]y\"|\Ʌ0N\><\r\A\}\D6KtW\Zׅ	?jqy\pۅK؅Q\Ui\) ɅD\v)\UڅN\M㋅ۅ\0\L\˅i υ>م8[T\䅳38D\ƅ Ѕr酼]c\|\\7х\)\8\"\z\ޙ\\8)˧\\\!,Қ!\<\m6־׸҅\Gȅ\f\.\\\y:\{ׅ\\\[\\r\\틅\|\}ޅ\܅\BI\\\O\\Ʌ\7\\C\N\\\C{]G[օΆ\0 \0L\Rm\\n4$\rX@쇆\\=\'[3@c\ZL~_̆AjjF߆!P7!R6$$\_%y&c&߆\'\1\'\z)+\.+\P,r/8҆/gY/\v/\>06-0\&1ن3405F7ʼ88\8\ކ<F>\>\UEV\EھFZqJTLJ\rKK5UKt\NԷP\Q~RtTIV1XY}YކY\\ZW҆Zb>[`+ta\d:h/	k2{m\npApM\rڜt\uEvLdwJXxx`zyǆ|E|a}~\ory\n_\@T\!\]\ǆ^ۆ7j!속be\\꠆@އ0\#ZZ񎆠\]ކ7Vl\ چ\\Z\46y\Yr\fĆa:/E|J1\q\\\\9\{\j\\'φ\\в݆ѿ\>ұ\\L\qԡ\\}\\nP\(pإ.ڻA\}\\2\;㣭\\a\\Ά\\(\ݨ\\\/ʆ\&\:=\G\{\\[\z\,\\\(\\\Ԇ\6,\d[r\02\c?\ۇX{>Y4eu\0Xm؇>6\xևS8\w#\Z`[_\Zڇ\n\AهM?e3! \8 \\Z\"`\"`#u$%74\'\w(z)*>+\r.4/j/`1:22Ÿ32,3)3:Ẇ;^Շ;<\\n=>K\?9\B@?BynCʗGdLHKH\I\ZLLL\NBOPQ/Q2=R0lRXSZЇTcUgVV-V\XY_YZIEZZ[[,\\b\Ic:fcc3d\Ue\"of]ygg\i\'%iJЇi\Cj\lKm\"\n\rmpxr[r͇sB\sRsUatu ՇuvOv~hwWy̐|F}3\\}\'}㭇~]~n~ngw 侇,xld!@T-X3凔(/l@E^\Ht\rH\\%i臦G	+Z͇\rOj\|҇b\\ZfhR@@ȇqƢ\\\+ɇÇ\e\}S\\;\sÐtŌ>\)$\9ʎB\%\P\{ю\Hӑ\\(ְZ\\\\^(ْۧ\L\\\s\\\އ\\n\i\\'\\4\绦\J\\(\\\W𿹇\YO\`ч\ه\\E\?V愇7P[\\\\\Ł:U\0nWW\ɈV\\\rN	ňV5^5\È\n\ZV\eh\0 \ \\"\##ǥ$%9)\/-x\/1]234º7\8Ȉ9Ǘ;>\9?\rcBnCIGH]IAIK\'IJ\cL&6L]LNP\\PhP酈QV`QR0шRGR`\nV؈W\0YfqYvZ\\\a[\\z]]\``aƈa;c\>f\hXiojWk\lHm1n\xoeofpu\p׈qوqtԎu v9vdzj#{\n|zE}vkj<&Gf\/7숈v\'kEC`\ֈ\$kʈ\"nf_y\'爚ÿ\ǈt㈝S65u\-<舡X-a\\ڢ\--jei\7Tv9߈z&,@Z\^g``ȈK鈱]ۈy\Zvj_ꈸ<gz\"A6gՈ1夈\d\^w\eΈ\و\A\ā\C\u\\ \\̈˄#̃s\1\\ϓЛ\Ì\Ӹ;\\(\P\\\\Ռ\⻈ْ֧\\W\\\h\\\d\O\C\\\(\(\ŏ\\\\`ǻ&nMvDG}\F\/	m	\\%@1\U\光\n2$\ \4tsC\ZY<Gq\ \!\"T݉$$O\$\0&:&\'(8((\\r*Iω,+,\.l>0\=0\51sЉ2\^3*ω3Y4\5*668Jf9\:\c=\\?w@UA=A\+BD\ΉEVE훉GIȉK\0N\rNOP\Q&.RkAR|\S#\S*VCVWaX\eZ\\\\]^2\aPacI\dt4g(g/gčh֖jLdj\Zlmkyq[aqKr\s%Etlt\BxԦy\{We{i.{oՉ|\} Kbu鏉Ӊ\ˉrd3\u-d\)֝܉\\S҉*5\0뉢ꉣ۴m\l\.;\\ŉR\d?q6m *\\30\S8mh\P\n݉<Ygb{\0g%\\\\ƩǷ+\R\҉\\\s\B\Ϳ\\[҉\Iԉ\dL\\n\\É\~\\\Gډ\\1\\>هĉ\+Y\ࡉ\j\✊\p\ᩉ\d\E3\:\=`촡\\Ɖ\~\D\0\!\+\\"\}\Љ<\/&\։Z#\B\JU\\\nH\\r?\ȫF\)Í^\c\\0\Zengn\̊n>F\m!\"ޔ%i%&ip&ۊ\'(nߊ,*0Sv0\ڊ3\ӊ5D5襊;B;5=\ =\\>.`@`tA:B8ĊCeD܊EaFSH}I\J8K[LAMy*MN*TOPr9Q\\RT¶UV$\V+X)XbXeX[YKYx*ZSۊ[4܊\\#s\\	]\_O_^ъ__`{bcPd\Z_d׊ene\f	tg{hIi#\kam?mb2mln\<oӊpOpbp\\qAs\ns2Zt݊u>uuÆw:\rx拊y\n*s.\rri\ǊJQ&\=aWze/\5s7=\\ZW+P \AЊՊ	Y_>\<&=\%nˇXjg0劲$v\'\&)k3\yj\\Z倊\iՊ\kE\{ފ÷\Ť	\\!\4\7Ȅ8ȇ\\M\TϡG\\\_\\\m֨P׃_\b֊\9ߊ\\B\׊ి\\n\!ފ\,\\d \͊\Iߊ\j\e\#׊\\0\\ \3N\\\g<\2\(ފ\-ʊ\Qo\^^\ي\\\\YGC֋\*\x%ȋ\\㪋\\UAS\ы\{89`\%O͋SV3\Z\\nn[u)\ k\%g&\'ȋ)m+Ћ./_N0\1M1\\33E4\6W6\7#\8׋9ы;(;=oL@2B\xB䨋B\_EyFyFMFUH\J,|K\;LM;\OLP\|QQ\}R9RQ;S\nTkTҪUVWtXQɋZͮZ\ \\V]ڋaEabe뭋fi\ri٩j\'mn8@o_compˋpVcr)s\Zϋt=t>ދt/wx|SՋ^Ћ8\(Q㲋KT^=\REQӋ\lwr@\?\2E<􋠘f\\5x{mkaы\	>r.:7R\HR{0\"4\ʋ3GƋ\Hlŷ\\\%y\\dʈ\ˑ\D\ԴͰ\t\F\Į\n\᫋Ҷۋ\\z\\ڋ\\ċ\֋\\\\\\[܋ܚ΋ܬ\\y\k\i\ۋ\\o\P\h\d\ě\Zɋ\\=\\aT웑\d\Y?\U\\\r\zӋ\k\S\v󣃋\2{\\\.\g\:\\\ <x14b\\01\ό9T\ÌՌF\\u 	&\nAՌ\'.\rݫcx\\\pX\3b\[\2yJ,ڌGcȧS!g\"\،#[#\ʌ$Ռ&\\n\'\ZO\'\\\'\)ݹ-=ٌ-4.|;0q2\\666\"7hJ8i9Ɍ9\:O\:hp:;Z#;ڌ<eo<? ?A\\DHTEG!I\ŌLL퀌N>QN];NO5ɌRy1R\8SVicVX\YThZZ\ЌZ\\^^\ _\0[_^W`#`Ōbьb\\c\e\j6Fjj\kWJmTSm\YpFqVust.tKӌu\v\\nwhw\Yz0|n|)Ռ7J\r\S\4\\\k~h/NOȌ\]O7\4Ɍõ4֌G挠5lJ\ZH!dT\0+oA7xs댴\!һntԌ30C|y1u\;\挼⌽\a:H,c\-P\OÔ\\Ōŭ\oǯ\\\Ɇ֌\t\G\!֌ՖM\(s\؟\\\{\\ݞ`\e\\\Z\\W\(X\Vs\#\U\`6\*\\j\p\\\\w\\\0x\"rɽӪڌ0y,-\ \ˍ	!e\"=Ix_@\\o\\\۾)ō\ZL`eFx? \ Q܍ u|!<!\"\$:j$\ȍ%j=&#(\)ύ)b/,8,\-)ߍ-K\/g/1232-\2E`2v3\\4 4\0667\0799[\Z<iЍ<\>@PB\C&ԍCfnDrE>E}eGVMHz,IэI\\M\-N\"OPU_Q&RLٍU.WX5Y[Zì[ʍ[\[\\\$_\r`Eeaԍbyb\cyc\\hyh\jdk\llm nJo/papt:uHōv+w\"Սxy|\}+S\]\se!8=כֿݍScX7=CȍbK\?K\s\sM<્,獛	\Ǎr_HJaԍɍBes<Tg\፳5\-ڍ`hd\\6(*uM؍hlZ^\@HƞD\w\\I\	\\ڍ\\\A̵u\aTϵ\\\\'\M?\sմ\׾f\	\ڭˍ۔jܟ݉\\ȝ\P\<\o\\!\\B\jO鲉\1\\z\\ \\\q\c\\\Z΍\\j\o\&\D\\܍\QO\圍\\<\-֍3;\\I>}gi	υkǎ\rK\\"xUԎ,\OO#.\-8gDJn0t\I\	1U}l\b7 pю Î\"\#P׎#a	#q%t%%\'\\')\,-\0.k..p./3׎06S6\B89\\;#J;b<=5.=7=ώ>>\?\@Qn@A4eB\DDI\iJ#LvM×M\׎Q+RRSS\׎S\>S\ՎV\Y{[[@[T\\U\\Zǎ]F^\"^3^/\`\Ja\baʣbcbdAd\e/g\h{\h\Ȏjz\\l\ot+tvEtuÎwXx܎x0xvގy\yzzzǎ{X|!|2f} u}J}l~R\r~\>!C:􎄺\ZW\"ÎOC.T+_闎|9Z8\r`\玕鎖\7\ѳ(1^鎞8Ꭳˎ&\A\3\\n⎲b-p0\qώpM/Eꎼ]t\\\\ԣ\\k\P\_Î\\\\\O\|4\!؎ҘҨӎ\ގ\?)\[kٷ\$ǎ\}U\\\5\Dg\\8\\\tߎ\\\w\8k\\\4\\\\P찯\C6\\\\\\T񖣎\F\>J\~َ\\M Fݢ:d4TO/x\ʏ\ɏ3Pq爏Tk[\\9Vjяѓ745\Z&\"\"V#<$ $%Y\&N_\'\*$*U*+O\+z,j{,ħ-4\/\'/Ն/114UΏ5f648\W: ;;\\>AA\\B~DE\Z\EFNGr`IAKLLtL֏M#\QloQR\'SȏS\{S\sV}X\DZ[^\~_a&ȏbŶeJeeÏfMf\\f\h\'i\ُkŏmmnEo\Ïo٬p8psvw1y\yIy\͏y\ɏz|S~I\ߞ\saﮏP׏P\\ɁbطT䏓\5~ݔ\h\̏\'\6wAx`rۏ|j]}ΛDA>s7\~\0^џ㦏U]\q\ďƏ󌏽#PL\h\yē\\_ɪ\\a\\\\\\\m\\m\Hڏ\\i\MKێo\r	\y<\a\z\\'\\{P䏦\!n\\C\tϏ\F\\Z\#\`\\K\΄祖ߖĲ	3	\	<!Fڐې\r뙐(jCڙ&2H\-ViG|w\Z \DͼPĐ\>!\\r#˟%%l\'TH\'r(]ɐ(\Z))\[)\C,F-F-i4..L0146Ð7뮐89$89J#<\r̐<\'\>0?D@\jAiBXB}lBDEME|{E\qF(H\J\LȱNԷO7\OyTlGT\tU\V&3V\WW0*WYYϐ[fΐ]\\Ӑ]\]r^\'`!\acdd\0glhLjtkk`n=ɐqr-s6+s\Ct/KuY3up}u쥐vrwy\ݐz\z\(z\V{{|ѐ|Ly}9~>!~\x͐\G7>{ƐvJ쐏b\!ᐑ|ei\44wVqωɋC6vFx吟]IYƐ滐@vd\Qx1~됧\"Ai77eꐵ]&ŐsΐfꐺJy\\\\l\\F\%\\\&\>e\Ѹ\\=ʐЧ\\\\\\0Ѹӥ\\\\c\~ٳ\\i\L&ۯ\\@ǐ\\\4\%o\	p\8A\\\\\P֐\⥐\	\\\M\m\\'\\e\\PL\\r\7֐\ E40W5,֑k]\2:\o\n\ZG,B\\r\֑1Li	+\o壑+Ƒ  !\#eʑ#s%n%ߑ\'8\'\x(!2(;)/d)\*\*\\+,/Zؑ0-1272\2\C3345[679\:Ɵ=l\=\9=\\Z>ST?,?B`DEHK\[L7\LYMi]NOIPבQNOSvT֑U.\W\xXYcZ\5[+7\\\Z\\\^\?`\\b{c*	d%d5EePfʑg5i\!j\kklGl\ol\mo\ZZpYqߓwّyWz\L}\}Tۑ~l@Ցّ\/\ELF\Xsb	Uڑ\;z{TǑM⫑\'瑞vZ\Zd\ϑ8\ґ;JʑAv8&ߑ_|\"r쑶\"؍5$>\"e\sP\\\\*\\D\,\\}\\r\掑\\a\\Ұ\\0\<\@#\s\\\֢\zW\*f\l٢ܭ\ܺz\#\\Elޥު\;\ߍQ\ 0\e`\-B\_\`r\ȑ\2\'\}\\\܅\G#\\z\\V\\t\\\}\\0	nr\\nq\Kْ]]\u\Β\Z;\ZyG 3!0!\b!\"^>\"#$\%-\'y)A)\!*\,\@./\ڒ/\ђ5 5J5̒:\X<n=\\@[@qB\EEEG8G\H_xJl;ML͒NqO\YO愒PPP\lR*VPW+XxZ#Z\u[9h]\ap\cdPde\n^ef\\gSg;bgOJghA`iݒi|kkl\\nm m\[p^s\rsvxMw>w\xc\|B}U~Gs~\Ò~ո	!P\;45lDU\b:Ēg<me\'F\\V=ϒے\\\ZQ˒Aeމ\/Pe\\\邒#򒠠4Q$\JG[\5裸\\\?,n7\	STQM\֒Rs\P\ᒸ#\X{Hx\y\\p\ܧ\_˒\}6ǅ\\ԒɅޒ\	\@^\eD\\,ͪ\4\\g\jy\*b\\؋N\\0\\\ے\\n\\\Vm\Oz\\Z\.\Ȓ\\T\\|\\\~\\]\{\\\\\Q\͒\f\(\}d1\0o\-\I\\ޓ*\R	\=\\\q\(\Xn0\Z7~\n\"K|o5 \ #0!\'u\'\\(N\\*ӓ.\0X.Xғ.vߓ.L/?22.63]\'3j4Iד4ѓ4\\4ϓ6ԓ8\Z9}9ғ9\h;<\*=E>m?m\0?\˓@!AA#C\Z̓D\ZEPZHusH\K-NKHmKifMMʓN)N\ؓQST]fT9VR4Z]E^+^\\^j\^\\_\֓c	ѓc\ޓdsdV\d\i\Wk\\m5q\rT\'rru\y\Oz~ړz\M|S~n`4ʓB 6哃_ГZ蓅G3\#\G9\`\ޓ\ZߓdnimH\ya7Pzⓗje˓瓚񖓜$-\{\䓠)-([-uד!铤>uʓ\e?;ᓲLM6PH,8\y\\D\#ʓR\8Eoh~WA\nn±ÞB\\&\FȒ\Γ\E\uͪӓ\T\>Ր&\\\\e\\vُY\\[\]ە\H\J\\\\b\}\&ړ\l\\\W\og\w@\\"\U\\\>\ԓ\;Y\;\s\ȷ\O\~\T@\'g[^\bŔr\r\ԏ1\Dm		,\n=ܔ\n\:\n僔L	3&\rQ\\rQc\\W˞g/_CC=Dµz}\\\!cW\"\є\"\E\"$	!\'\*++W+ߠ-&ؔ.\n\//ڔ3)4\W77M7f859A9\n;<<\>8?@A胔BuCF4HFF썔GbҔK\$L\\M8MfNVjO\ZOGCOJ\P	QSS\S\/UTUZ\\'\\D](:`;\a	-bcc\cce\f\g\h8֔iOk\Zm</mԌo0\o\^pcs\Os\@ttt\Ӕuknvcv7vv9v@v\\nwOw\CwxƸ}}Ջ~|Cpߔ%jpzE_2v_Ԕ հwߔ\ܔeK<\h|^IqLf5.𽔡b<>);WΔ>/ٔ\AqY+-snwoxtGU\\"YŔ.\\m\\D\\\<R\^Ȕ\ʪ\\\ \͉[Σ˔\m%\Gݔ\ޛ\A\)є\\\ϔ\w׍\'\g{\Z\\#\3\]\\7\!>\\\\ˢ\\\c\\j\\錭\f\\u\\Δ\\ה\\'\qL\\\p2\-\0\^Y\5r\Z\ҕ	ƆLg\`\\S\H+\H\Z6nj\"\(#\I%[&9&\i\'G(N)\*붕+ZI+,g\/0v050@Ε004\566xߕ778&ٕ:0-:m:>\4?S?f?|\B6LB5B\ C1%C8/C^ؕCϐDȕEKE\F\rGJ\M\0WM叕N/mO▕Q\\SMT.cTV	{V\"W\XXhtX\X-YlY\YyZcO[\]\cmԕc]c\Aeuhe\Cfg+gېi~j&\jD3jٕjk`kek\nwoddstFOvix|>xҕz{ȕ|o|t\0~~\0xe\Еi0ߕ[>sV0L0|)!-\\Z𕕐镖>\=.ו.ޕVe5\'Z\S%/(Qv[4Jٖ\h̕ᦕ`\i\\\rǷ\b>\j?ʓH\8˯\\\\\\\߱\O\Uu\\\V\c\\x\#\6٘\\\\L\\\?\䵕\e\\1\\q\e\t\\\ꦟ\\d\\\	\M𼻕\]\]:\ѕ\Eo\\\Y\\ΕvŕaЕЁ\|`\r?k\Z;p\0%G\A7oF% ֖&ET()a(w*jݖ*ɖ,RC.p0=0v4\V7\Zo7,7e8,8mS8;Z={=\FB\0B\Ch\Eu\E<FH\n\JӖK\\L&MB)NjQɖTO`Ti\T\PU\rV_(XX=TZPWZUJZtV[ɹ\\_[]4x_xaaTaUa\ϖeaf\Yg3jgHg\kbm7Ėm8n\ZnQ͖nvn\ϖo:iu\uuzv-wŖwz9zszT|\Z\j\dh}^wjc-\gxNVϖg\ZMSk?}@榖!\0jBIӖۖɖ)疨`ɖߖ,	rFi\疲n꒖!\x.@k\(nĭ͖\oB\:\ɍ\h]\\0)̛\\흖\T\\U\\$\\j\.\\(\X\\憖\%\@ݰ\KOބЖ\\Pc\ \<Q㫀\\ \\n?\\0\Kʖ\4\\n\\"\\,\F#\\b\D\\G\Ȗ\􀛖\+C\VŖ\\ږkT\|Ζe͖\ۖ\ڗ\hMwH!+\Gޗi\ĝ\n\`6*#×7\2&I\\\nΰW,rz\XǙ^ch4.||%qח%G%\\\'\o())7++,\-8e-\m..0t2X23:n4R24k55]65l7c7(8\Z9S	9;;<Rȗ=\>-??\@BK/C\pD\qGxϗGG)GG\II뭗JJQKY9M\=N4O\ZP>S4T`V8=Xr[o\\q^\_x\`*{b\cemeyj[fj\ kNo\p|	p\\r\(r\au\+wWx-x-{Ki{|^|C~_n헃\Mۗ$-\y𗐘]aEJ}DkCpޗ\ebn\ruEk%uwp#lq$\O`\\"ؚ\\n*\Z\{0&{]ӗk&M1\\\pޕ\\I\\ ƕW\0 \ss\\3\ \b\\t\ѝ\\Η\#\j \v.Ӫ}\;\ŗ\Ty\\B\ݴ\\\g\;7\h\\|\㸊\\{\1\qV\͗\b\\&\듋\1욋𞆗\җ\}\Z\*ח\e\oyN\>,Sژ\0(\0z\0\ǘ}~eQ\Nn\3	Fy	\И\n\h)iɘ\:Vט1mn\x\b\\e L\"_Ę\"\%\\'3(j(ݘ*\U+\ۘ,﹘-h-.Ę0mŘ0\֘3 5\5>q~>\ژ?4@\<A:TD_\D\\E\GH>\H\?J\KPK\\P\\QieQ+Q̃RT\rT:Ud@U\^VKΘY\'YnZ@\Z\[1[A̘]N?_C`fСg\^g\Zh{ܘk\xl\lzmmnoFp<qjOs\t$͘t\Xvјx3|\Ϙ}Pǘ}|~\fܘ)똂|ޘ8Әu}#zʘ\+CY\☖\}hn+H옛y|\\\\'2ຘsd$vܘ\mL#\1.=}&\\\{\؇Do:\\')+V蘿;ӘT·\Fۘ\,\|?\;\HƘ\c\SE\Qژ\\L͜bџP\jØ\\r\UJ\\\ו\?\Θܔ\OJ\\>v\c\\t\?8\x檪\A\V\陘\]\F\\'\\\\r\˘\%\0\X\ٛ\M\?\r`!	+\Řęq\+Z+CdЙ\C+\әWN	b	뷙\n8(\n\\\n\|\0M\p\\]˙v\\\Iₙ\"a6\"\Ǚ#c#\$&z\'@()\3*vi++H,;,\7-D/\ʙ0D0͙1 ;1.24\4\E4\Ǚ5|6t6P69%9*:Lf:;H;?JABԊCHyAI\J\ZJ KcNKVNYQR)OR+SȑTyUr^W\nWW\X\FY\ߙ[M}[\\^{b50b;dVwdje\Xe\5ilեp\\r[әu\6x]ʙxnjy\˙{X\X\뙌jyϙur!tY\[\\'^A>ޙn癛\x\3\ߙfn5\Ƅșha˻Dwfl1+Q$\SZə\n.癴<wA-45%㏙C\ܙ}[\i\\R\g\E\`֙ù\1uǪ+\\ԙ\T\ۜ\\\ \,Ϲ\Z\\dػn\3\\*\\\[\\\Z\ޒ\GC\\!\\י\\\\H\%\]\[ﴒ\Lڙ\ƙ\\J\\\\j>\ԙ\J%nN\\\X\0\3Rq_6ƬrMi\\'ޚ\n\ \7(C\ZU8\w>ӫ\ZٚL͚\Ӛ!$\'%Pɚ%\'\'`;)*H*n$*t.\'2\4\'c4v5K\6q6Ր99\9\\:Ě;<\\@@0AB\CND;E&=E\)G1$IJFJpTJKiK3ODvOКQ尚RSPUkX\'YLiZ<Z\\\\\՚]\0^s`e`ɬ`\a5a\%b%c	eʚg<Śh\"Rh}	jy.o2Κo8pҚpIqfߚq\\"r\sSs\s\!uw\xu5zcΚ{e$}!~+ROsɦ|l\'ؚ\'\\rC\`㝚QŚŚ\˚\0qbmУ-᚝\\\df4\⚤h\Vr0][e\T\'6	j_4}\\0կ\r9\/ALƚBJ\Ôë9Ļ\kBƸ\Ȭ\\'\	˓\$\?r\\\\\3\Ģ٢\?\}\E\ƚ\Ƽ\\_\vE\m\&\\\es\\ǚ\#*\\r\B!\\䉚\ϛIћo\rC8ћ\\\n?\n\`_jE^r2ٛJoCf̛\Z\Zp= \Λ#/\#\\$8]((\))\\*\ۛ+[כ+-P--/J/n@/0\ڛ1f1\N2>t5U718J9<0=\DAoBFT(JKK\MaN\"ٛN\$Q/Q\{QRS;=U亂ZZ\\[\P]\]^^\P_\'I`ɛ```aa쒛acb\b\Te\\gM\hi\+j3˛o)qC\q\<rsRt\u\-w\y8	z\fz\{y\"}p\0~Z\^uN)9넛.\\'*כ\6Dc[M͂_m1&4DΛz$ԛ\n\\8a߰\yD|u/\ޛN՛\\\%\0\'	㛰9\Z,s\\ϛظ6D`	H\R\\'g=sTț\\\\\țƘ\\\Z\j\P\r\Σ\\ѐ\\\_K\,\0\\}\gkۼ	\)P\g\]\\u㦟\\h\a\oQ\܇\$ߛ\%\4\\\\h<\\\\\UNi\Aɜu\\՜\Z\'˜\LϜ]\n0\qYvk`\ݜ\0˜Tm\Zf\TҜ\\\"x\"\B#iל#\$\&m&\Ĝ(H\)}*Z>,\;/F0:Ҝ23S,66oD88\R9\\;T\n;\ʜ<=CAjA\(B\6CD\qE\F0FGGGMIJ\ZKN\ZN\O\0\rOOOa\O\QQd\R\ٜSYfS\UV;XX-XgXY\Yq[j[\\\\^ʚ_`לbhc\e\ln[.oHq\hr5r\{}>~c\qNb6ok\rE`h*ӜcoU\(\u\'Qfچxל`Uǜ;m\'2\:\nxݜ\Ȝg=]ޜ\g՜34(\d\ܜO`뼜fSXc\0\>֜\J\\1\\Q\)\\.d\\\\|/ǪȨZ\(˭\\\\q\cϨŜ\\\֭\\\ߜ\.ٓ\\\[\?ڝo\!\\\ќ\)*ޖSߍ\\\C\\Ṳ\\>\4\鷜\S]\\A\e\\\U\\ʜ\5\\-\\\"\0\k<\fG\\X\\8V˜w!Jp?\0͝\0\7\ϝ\"ȝቝ\0?	i؝\rz^rǝh\rۯer5\Zf\Z~\0झ\ LB & !R#4.$\&\E\'(+)>\)\͝*/\*<*Mr*K,>-.Ý.H/M0k4惝9\;A<=\=s=7\BC+\CEFRFsI,I0K&!KJKP\P\RWRiTxT\[]\1]c\\dJfxi\\\jj8k\lOCl\~lJm\"؝npfpIq$r(ȝrQ\nssѢtܞuv?ExѪy.y,y\ѝ}\ȹ$Knѝ\2)ӝ6E\ǝS熝 -$tߝ\ous/3D\\vѲQN@\'\ri$`v/MFD_\5\6ם\-\<\o蝰/K\Xѝ\0\*\0. y\J\\\CxN@*fߕiߝޝ\C\2\\t\.ܝ\wm\ł\\\\5%\\r\	\>Ν\\\~\\N\5\^үӥ\r\$\b\U\\ɝۢ`\P`ܮ\ߪA\՝\ T➒\X\Yʝ\\\\>\\o\\\J\~A\I5\ \s%6U↞\01	E\\n6}`l\r\^?\U5|%\Kbמ\YP\Qўߞ\\r)s\Z\BOno<\Z \6!M$*E(.*1О**Ξ+<B+=,Ǟ-Þ/b2\3 5\	6K\7\08\r8$8\a=㙞@ܩB4BB\͞DjDE\FFʙHtHvII8\0J(xK*\KTL%O;TΞVd\XhXXX\ZY+CY<YQ[j\'\\p`]ܞ];^w*_@\auadbeDf[Vfg/h\Zh.hݍjZJn1oQo\\p\r\՞sost@\wmvw\9x_Þxd{w.RwyŞ\_뫞ho\"tyO\K,垏A(ў잕\IqAd<RZ[Z}\?~螣C@ao螧ܞMў^h;Px6 ЄCɞ_1\6n\^5]\\!)GmTע\3\k͞\ex\@\\'~\Y\\5x\DO\Ԩ\I\Ѱ\"\\\\bƞ\\HԬ\>֑\\\\\[\0\\Z\\\1\\\i+\c*糖\;\\n\\;֞\IӞ\\\\\\	\]:\yM\\\0\ӽ\Q\z˅\G\\\˟\0ꓟ\0+@\\\4TÐ\rd\\W\(\"\z\˟G^<ٟM`=J \#\#弟%&彟\'\'\n+PJ+ۀ-Uy-}\-.<n22y4U5ȟ7\7\9R9^:m;p3;=_\>?n\r?\@CB1lIJ<MN܉PQ\ןR?T<V,Y]`[V6[\؟\\=\\VS^癟cd)eڟeug\ȟhh\bj\\n\KoWboolr r3s8u.u\hvy!vyrz\z{{\,|w~t@KVT[ʟMTr ulTn\ޟzq֒Tr<6?Q\>韒:e?NߟXIW?ZB\jGc\RNS)esq_R1,\^hߟ.U{Y㯟\ꟹퟹxFt	\v|\x\BȪӟ\AS\\J(\\\\\n\\O\#ҟջ3\\6\ޟ\Lh\20\VS\\bA\m\K\\䔈\\	\\\烎\\\\a\,\\\\\\\\\\Z6\\\\<͟\j(|$.\Z-\Rş_\3ݙT1\q譠x	\n\PA)\rR͠\\3<G{*U6Z#ʠԠGBeJO!{%a%&:&WG&\\\'\'\Z)j+Ǿ.\n/z01Qɠ1\Ӡ2Rd3֠3\m5A87\ɠ9pQ;]>\p@L@G@(@lB\ZE>F\r.GvuG|Iy I\àL\OM]M_\NfONP+̠R S[OS\DTK\T_W\X9X^ߠZ\\䝠]K1]aԬc3ɠcGqf7Pf||g^Ѡlp6%rfؠu\\;v9v\.wAwx,z.{R|}ٿ@,do^Tf\砄\\F\\"lt\{S_]\͠\E10\\\rIӠq\ɠVuǱ0񠤿L뱠EH?t堬)֠_ܠ\ZM1d\Р\r%񠶯V\S2ŠKҠA\n\\<\L{\Z\g\\\"\\\p\b\\\͠\\OX\m\7\o\\0 \	(\LP\O\\\\肠\̠\P\\\w\7\\C\˱\K\\\\;\Q\\\ \\\\1X\(Ǡ\\E\˳5_@Wb\vwܡ<¹ŞŹ\	\%\r6\|ɡL%`s1;\Zqh\ZDr!\"ܡ%Ρ\'\(*+RA.\\^.\j3y5l6h;7:=H>\M?1AAסCeFFF^ΡFRG@\I.-IVIWL0MRfM\NġN\'ڡN/PR,CRdS#]S\JT T\KU:\rVmݡX\Y	n`;a?bb\cTghBh|j	\l.mQm\Lnptp=q\t;u8vAw	xJ_xzz~Yyڡ\\(l\ꡉ\0GDڡ5]R\0С\Z9\Vh硞uW.\eơաS^}j\顮¡ɡ塵a\0rT\\\\\kq\\\Ƽ\\;\ҡ\/ȈQ\\Yɧ\ʮj\\̓Τ\W\L:\\ɡ\Pm\\ǡ\wf\I[ܬ\\ơ\\X\,\\\\\\\f\[X\^陹\)\\*\,\\\\>\0\S\\\\O\\S\\\\\B\\a\;\Ze\=¡\<آawa͢\J<	D	kϢ^\65\r\\Z{ ÿ\6\͢k$\Ѣ%&)̢,R\/7(5i6\S788P89^:q=\?r\@SAۢA0AtCcCĭEƢE\EݵF?5F\I\\'JϢMOPP\ҢQQQ$SNUV8:VoVXԢ[\բ]S]n]\q_\nW_Q`sa\hfi)g⦢g滢hnQi[m\pr;t\v\vv,v\Ow+w{\R|b}V}\͢~?\_H)K?͢\碉DܢY\|\rwr?TT( ǢD$K\^Dy=KW~}\\ࢶ7P{\⢷\0\\'~N^X\x\Ƣd͢\Ķ\\ߒŞƳ\{ܢɈ\崢\ݢ̚\\\Я\\a֮ؕ\\9\8\yآ\Cxߪ〾\\\T\\g\ꉢ\h\씢\&\){\\J\.\\\Z\\\u\Վ\\_\ɢh.\\\0?.8F\ӣ	T1k\\ܣ\',Ě{\#s.\\t\Z\\A>ţ絣`ܣ\Z!.\"\"\\$\E&\}(\)3:)vk/_0\"y0ţ1ѷ5r\6d6أ7\#9:;q<\]?\4@&@kAADE\"E\I\IƥI\.J6;OgpRΣSm.T5TmUSaW:W\Y*YAYCwZvjZZ`\0`\ab\k,l+Km>\o,oppJrQ`s5ttvw`x\ͣz!{%|||\}%~gH~7M,\F!\"ss6}p\BIq_h(x\e\n[Z磚t^_<g\䣡\/08\:`b؏z\A\ƣzA$5Onh\"̣߮H^oap;\ߣ\\s\\N\V\b\Z͚ͬݣ\3\՞\\LU\i4\~\\ \\*\b\ۣ\t\\6\Z\\j갣\\4Σ\~\1\\{\\>\\<\p\\\HE\4\ \頣|>q\֤EQLZ3[\ֽ\\Z	}\n\ͤ\ry\r\r\E\r\ڤ 7Y\֤ѤVݤȵѤ\&|c!¤!\)\"E#M&\'ɤ,\M-\0Ƥ0%]666ܠ7[\8<J?\@s\C\>C\\F:\G}GIНJCK	٤KޤNuOĜTT\TBU\{V_ZP\\\D]h_Sbhcicnf\\gjSnl7pqZr*%r\su#{vY^wDxxwxƤzS{<Ф}뗤~!ۤ~e]\Ѥ\1ޤ\'U\6{.0GŤG6Ȥ卵x\r\夢W̯Js	⤨\"JҤ&%x٤*\ऱD?B\\F:?\*`ڤ|w\2\#,Ϥó\\9\㶤\\\ſƁǤ\\\B,\e\ȚɷR\\^ʲ}\NUˋ\\\5|\F\3$\8>\\ܤϵWю\n\\\{\vՁ\\F\a>ڑ\8\\\\>޺]\}\̤\Kn\\$\\걑\U\/\ˤ\\\Q\\\"ͤ\Qn	Fdrg9tBK\rA1I˥\\>dG\\B㮥*-l\Zo4M  |#\%\k&(qO*.,U,-!\".e00T\00\ܥ0\2У3Յ45v:\">\n\>\[AGSB5D\UDqEE\~GSI\\L4L6LwLMN\nOOPPRT2tU\̥VfZWSSZҥZHb[\^=^\y_l`\b\_cS\cWce\kfܥf\FhjfiPjglcmmQnI*nen\0oP\oioLqۥq\r\UxZx	{d||}Ǯ}ڈ~~=FO鶥jl2󥍹ťix%%u	!+erD%쥖\ॗ7ͥ\QgץrY<>׃񥧣b\\n\NW;hؖ 񥴇詥i0c\|\,*VRt³Ö	ĪM\\\\K\\\\\;\\'˔\\~\qǥ\aI\4/\\\:/ٱ\q\\\M\n\c\<\\\,[\x;\\٥\\\\]\\¥\$\Ʋ\\\M\;\E\K?Zԥ^QhS\\Ѧ\=\٦\bA\Q	ig\npӦX\G\0e/>epMyh\nOq\צ5ۦ@\\¦\lR!ҳ\"-&#e#am%%\'%a%\\)\\)⍦*\:+Hh,<-\r\0-\̦.y/\12aB7$˦9aަ999\<<߲=)=?>?AsnA\BDݦEn\0IBI~|I\:NER0+RrR\RܦT\\TyѦZm\nZUZp[\\\\\ͦ^7\0_\Ȧ`Jcdަe}Bgg\]i:GlNl\"m\\p]qȦsOs\uPw@x\\\yi\yz\Iz|xB}\9pN\}\H\\T\\0%f\ʦAf\ZP<EZ%I\ny\\n\ou\n2\gG妮]\]NB\#yL\~k\E\HM\h̉\M\U\\\d\3\Ľʉ\=ˣ̕\2\^<Ш\\\\ڦ\#P\v\\Z\\\Zڦ׍\\\Q\\\\\>\[\]Ŧ\Ԧ\H\tæ\m\2徦\A\9\٦\i}\sX\T\\\\\c\\H\.\~\\Y\K\m\\2\\jjcΦݦס\"\m]\'nA\0\@Ƨ	H\ާ\ڧ\٧ɧzƧ\3\	)?\ŧ\rڛmaV.8YЧIFܧ[Z\\Ztb?Iڧ!\"#\J&%&\\\'(e(\')ª*\\.x.1\c22Ϛ56ʧ7\98L8}48:\=nJ?\@&B~BO	B|BD\-F`ЧFaVFG\H\rHȧHЧJ\{KtKlOЧQ\UiV=eZw([\\\x]`^竧_\`˧b\cX2ccdeeWfg=g\ei3%i\\i\lV\nVjnYosq\\ru\&vۧwx\(y4Ч{$\{y^ԧ\r\֧?7gh\J\_§c{Q駕WW\0TΧ\{7nt\e̧\&u-\\cu\x\]`1N̧uͧO\ϧ^Rç\,ŗ\\T\\\\:ʧ\=\\|\p|Ιέh\\%\\n\4\S\v;е3Ҧt\ܧ\ݒ\h\ݧ\N\ǧ\$W\;\¿\\\+\\\\\\\\\u\\ޟ\(\mZ/el0\0E.\\E0L\%	xר\rW\r\QXxw֨-\ƨsݨ\g) \#!y#&W\\'G\0\'\\'\)ދ*-G-G/(/M335\57dݨ9&R9R\9=:\`;<.?D@ OAiCj\D6F\n}G\'G1H\\IUL:eLOGPRPըQ\RRR\R\S陨TgҨU@ɨUU\\V\V\Zy?\\o]ݨ^V^ˑ``-b$Mc7cFcTfҨh<hpi\iMnnpjppw{\x\yJبzHۨ{L0|挨~K~NLIP9+qਇX\\娐C@먑\)\ac\evP^\Шƨ䨠\'hYҨ:468䮨%\t}褨\:4s\O\kʨ\	\5a\\\n\Nq\\{/\R:҃\\\\ը\E\tݨ\\\܃ޭpߝ\߸1\֨\\0Ψ\\\\\`\\\\dܨ\|\\t\*T\\Z\/ʨ\Y򁺨\M\Aר\\9\9H\ͨI4\\0\Z\aԩ\ѩ)ʩ?/\)r-\\өɩ\n/\rͩCQ|͒Gruӈ\\\\W|4 \\!Jͩ!\o!\)\"#\r(\\ש+y+,\-;07\'88\H9f:;;\\<NH<\ީ=:=o>å?V?`:AP}A4EE\PFթHϗLCL\\N7O:P\CQ:QhQ\QS䁩XYô[ͩ[\©](^^^G^m_\`\c=cߩdSbeOf*f!fh_\harkflΩoXptr-r:.uIyQ1zmzפ{J|R\|թ}\~\GYR響N\nC+婌A,Z֩GR\\"RhhH\ǩ$\Q\ȩz\0U\橞⩡C|=b.Z\ᩪ\Ƽ௩d ܩh&u\̩[xpc/Ԫ˞\ԩ\\	\\\>\8\wM\}ƚ\m1̘;\r\qĩ\\ک\\\\nE\ݘ\\rY\aɩ\\\\	\nٷe\	T\޸\\O\f⥗\ZM\|\\>\hk\\\\\\Z\zB\5\N\Qt\"m\ѧIϩG\0\"ª\08Ԫaߪ|\Q\n\r\ne_b\'\Ϫ\ZS85(\#$%}$ꅪ&ҟ\'\A+/\n+\M-s/0&g0\R1\[2l@2e2\f5*87o@;>>@\x@\AyA\sDhTEEEcEѐFQתHIIEI\LGO̪OnP+fV=WdXaYUY~Z}۪\\$\\\cc#dWg\ZIkJl\m\Zm#ͪmh[ppaapڪpkrc\t}FtܹujuVuiu\\"vpw\x:xuڪyzqyz\z{\Ѫ}3R;e5\q\F{{Ǫoꪗ\0Īmת`\\	骞YꪞZlC|تl\r\:{7ʪq\Ѫu]$HSW\\q\\bd8ҕ/kOmѪ\#\\K\\J\3\SR\s\vU\\\\o\^\M\\gkю\\<3\֪\3*عٜ\\\\\n\\\T\ݪ\{\\@\!\R\\K\\\Ӫ\\9\ԫ\\0\4Ǫ\>x\w\.\b=CZ\0g\0:	{\MlbH;P	\n)\r]\0\\\plG\ZT\\n$t\ɫثc #%3%WC\'t*\0+X+q,).x-/\ի4\n5\ѫ59t*:*:Hܫ:Ӊ<m<n<T<أ>A??#@A̫B\\C֫E{nFCVFuGܫI\\I\\0JFӫL`LL\ݫNPRXzVI׫WlWɫXtѫZ\^^\`ӍbWb\\cnjqkhzn\Lo)qD\0qkr\ϫsثtDswFww\x	Qy{]|,a}KXo\$`\竍Up˫*O嫔{wJMeO!\Z뫦\}:e\01I$r>mQ~*׫\\CWu\E\v\\[-\ȫ\q\o;\-m\:ܫͫԫ\扫\\ܫ\I\v\d[\ƫ\.\ޫ\\ū\\\"\o\\C\j\˫\@ī\*\F\I\\ \G\\\\}\\\2\\(\ABe^īfQ\L\`\0\0\0_?_j\۬\¬\\"\nN\rW\rF׬b-F|3i+}_t#| \e!\"ͬ!oH!K\" %\\(	K()\'`)D\")/)*\+!,\L-%Ҭ-\..ڬ/ /\1tH2*55:Q:L:<;1<լ=\Ȭ?$A_AQoC\rC\\E`\'EzF:GHJJHKK׬LrL\ɬQr;R|\R%S\ET\V*7Y[-\\\ݬ\\@ͬ]l\0_>O_@`\Haa\b\\"cظe\kfԬgh|\i\jT\ji\k&ڬklQ\nZoجp[1pqfvvصy0{7M|\nǬō	ꬁ:?㬃=Ϭڬլ\>OnVu\\ϬaӬ{$묙\\-yȬ\0t*b¬*⬡P\<笤^$mĬ^\\r\Ш|FM֬Ed٬\CKAWZ@\Eŉ0Ŝ\Tȥ\\:٬ʝ\\7\X\\\1\q\v\\\_\3\\ì\goݻd\ݹ\i\]\(\\\\R\ݍ\X\\	.\u\\h쑈\\}\癬\@\/#\ca?ǬI\r\G\¬\\\\׬|\ǭ\\.!\\@\r7ҭ\~\\\\\CR53/F\nT\hAڭ5\Z?hb֭q˭r9p\!|\"%ݭ\'b((\**^Y+p+.,<ɭ,j-\.071\1\r34י6\߭8x8c8\g9N9\\r::\;<<\=3@>Y?X@CѭD5sG2I\(L\*M?TO\Q<QحR.\S09UdV6W&W芭XF~YZ4­[\^l_;ӭ_}_a\[c\Tc\e|qg#߭i\0\iDj%!jZCj쀭knC\r\Hs\ҭvSyJҭ{}`z~>~­\\no\*\n-\=^3\$L8G-1e*O\G$b`-QX:Qx4m.eƭCqJʭ	^\'brR#᭾ڥl\q{\\ӭ\\J\ڭ\]\\\ϯ\@\v҃ҧ\\\o\9֭\E\\sۥݼ\\P\,p\/\D\f\\@}\j\bE\\\y\n\\𕖭\嫭\֕/ݭH̭ݼTQ	6J	w\ntnm\2\re&D_9ͮ9p\D\Zb<\!#\"7\"\M#%Z++F++ܟ.L׮.R\/#./\0خ01\ZϮ2e534?>5\\7\t8OԮ:å:̗;z>@ͮ@\nAĮC~cEI(\IGJNK@8K\MU3MUnMѮN\'NnaNO\RQt>QƮQ\QԮSTݮTٮUoV8X\]\\^\__S_\,c;ݮccd\eꎮj5ɮl.wm㬮o>pӮqlrڮrJr1rr\sxt\nƮv\9xiy[{=|\X~~P߮~}ڮ~\~̊\r̮5-])w]&歮eͮ\4\14DXHф\QWm>\"֮\/\nyvKϮ\k~NǠeʮ\j*:\宽im0%/Ȯú\ƛY\\\(ʮ\AʯB\(r\B\2I\\Z\\,\WĮ\\i\xGՑP\r\x\0\L(\Li\M޵@ಂ\Y:\+\3ޮ\Ϯ\\\\=\O\۞\\\!\F\`i\l\0\)\{\\\ \\I\\.\\Q\쪮\\H)35l7d|,;@3\n=ׯ\n[B\r \rj\ƯM\t/\tЯT\$&h\'E\\'(_(\\),X.\0.\A/\Zy/{/\080Cޯ1\23)30\555t6H7-8:8\:\¯<@\=f>ʯ?\'?\??\WAWCD]EF1OL\ZL\L\M\tQ\TC7T UDpW&YY`\\_t_~b\cBceheodgگh̯i\j\OkYgnO\nӯq-lqu\$u\`veίwxcqxy(\\y/y5zY}4կ򠯂ݯ\\\a͡<˯a\Wޯ¤$\Z]W)H6߯4]Bɯ.?ju󂯙 䯛=[h\#ܯQ(놯௣R֯\)\ͯ#n\䯮U\\Ui\p?e꯶\ί1篺0XFg\\\\%\{\\zŻ\\r\}\ٯ\FC\S\\t;\\ү\\ {\\:ϭxϺA\t7ӱS\\\\u\76\ꄯ\H\1=\\\k\^\t(\t\꾯\\n\˯\}\\a\\\9ܯ\`\\\n\\ٯ􆳯\\\/\\\?\=}5\\0\\?p	63	oF\n7\n5\\\r\UļF3H!\$\w&(*^q,,ӡ-&Q.2İ.L\.\_/40\"#0\X1Ga1ٺ3W7\|9\\:G3;:=\O?_İ?\C>ݰD\DﯰDEаF\ְG)G\QG\J\"BJZNݳP\zQ\\R\rUV7V㥰X໰[\\\	]bobv_ct\cd\*g\ذhiӰjk[klL>lҔl\no.pP԰qXq\s\"ts4thذuvx*\z\İ{Z}#	}8}K\BgV9\z_E޳\ְ5\ZS\\㰔\0FL\̰p񰝠zݰ\鰢ذ`찥8+PI|bɰuv\07\\Z:hbİy\Z*밾ʰ\q+\-\#F\f\O\f=\\I˧װ\ft\z̓%\S\\\Q\\\}϶VФk\By\b\q\9Xپ۶\>\\+\\bJ\3F\av\@Ͱ\լ\+\X\#z\\]İ\|\b쳰\$M_r\'\K3@O_ǫ[ͱp(б\nUH\n\\rV\r!f\Z\}\%\U\r\8_@6\6Lk/#%)}q)\*\`+Z/б/E\5\H6\6\ٱ;;\<)\=Jӱ=_=أ?P?a.C\G\JI\\K\4LCLϱNn*PA;QLiQTytT\ݱUGıVFVV*WjXw:[\c\\b%\\~1bub\b\d!ex\"ex#f?f\ͱg\\\Zhʱj\meoo\1qs	r\t?uVfvXX{|)w}f}~즱\GEF^\0KՈ=걍X|A籒2\H,T<Eñ\Sh\D\\ı7\5̱\\xhAP\\r\r\M\'\Q㱶A\۱٨:QR\X!aMę\\ǖ:Ȋ7\\ޱ\I/ʆϱʑ\\ӱ\\\"\WϪ*бѱјձ\Ì\B\\\\R\U\\	\\Z\!ӱ\k۝u܆\\\\x\`z\\\r\Ʊ\ި\\\\0*\˃\zN\u\p\\\c\e\ű\Ok[W,\\0o-\0(i\\߲&\'#D\n.O\nײ:\\r;ɽD\ڲi@\ZriSB6̲y\\k \'\"-\"\r#uA$H%\˲&+\β,,q.-\0!22\\3\޲7c8j9\n:⫲;\;<)<BQ=\Z?AM\rAlDBGH<nIJ7KxTK\#L`LN惲O\ǲQ\|SWUUHXT[\\j\\^=t_6\ee\g!g\h\i\iKkZ5k{kio$pprUtvYWv\!xNMxz-Ʋ}V~ʲJS	Qǲ\B\̲L2x&βq\pV\Vq˲\0{2_\o\ﲨ=hȲf7}ҲB8زB油\!psԲ\U\\ǧ\\ֲȩ\\\ɿʦZ\JӲ\\+\R	\\\\҅XҠ\ԟ\R\Jڰ\\ݲ\S\\0唽\1x\@\$\\ZU\)\\0\y댰\\d\Բ\5+\g\\ݲ\6\FG\7\r\,:_\g4\0SBC	V.γiyró	[\nEktγ\rVP\S	_k\~zPҳH\c5\\EZ `[ Ǌ\'t\'eh\'\\(_\\(Ĩ+-h³/@0\t12㙳2\\'3۳3#\5c6m69:9\{:^:U;T<<\'>6γ?眳?\FACGC\\DH\DF|F*FLGi4H.BH^MMcN\tP\lRrSgT,TڳVW6W\\]M^\:_`b/iǅjVjRkDlCtlZm\	p*iplDr\s\bt+vvv\]x}#\\"~#հz۳_d\̳^ܳ\\ೋ\\"䳎б5ºfYM%/޼E0vq\'4\rn6T\+ﳫU\\ԳQĐ\uBcNB`c%\0ೳS곳堳\HNy\(ܳb\\\rƽسƿ\5߳ɫϳ͌\~\\\\^ֳ\,|֛\\T\XL\\&ⰾ\YN\\\\\\Y\\>\}:\Ә\>7ퟳ\\\0\̳\s\\ӷ\?\\ӳ-\~\]\n4\Tn=DC6\n\\Z\\'\\xȘϴI\`LzDѴH!\"`\#f%wӴ()%ݴ)i7)l*\\n*⪴/\δ0S0\	2ô2C=474jq4\{4\V8|t9o9:\<ɴ@zRCqC3\CWaD\δDFվIbI)J\K1L\MN;QcRS?S`SV5iW7*WԄ[ô[k\\Ia\\b\d@ݴdeqeog8h7jrkl<l\o\Lq\ִr}s\Atry\ʴz}zz{\h|X&}\~\մN?a\\O\r崈>|´ʹu{\˴l%贕QjMuO\t\r}c3e(7C6nFcYz\%eb\^޴\G8\ǴL\Ġ\Z\B\SƧ\ȇt\2F\\\\e\\\h\\rΖ:\ɕ\T\\ϯ\{Фх\\WҘ\\\\2\\Cٹ̴ٿ\\\چSڗ\r\\\\;ߟ\\ɴ\\0\V\\Ӵ\\\\ٴ\\\r\C\\\ϴ\\\\(\)oʴ;Y\3\0۵	l*\@\n\\\nJڵ韵\r\ǵ)b\k4̵x\h\7\Z  \"g\"õ%P&\\'\˵(\h)e)\B*Ĭ+8D+B\/z56V7\"89p;z;,wDpE/&ED/F5fGzH\4J׵LΗM%MQN\OO\TPӀR~&RrSU(hV\0ZQ\\M]O]]\_^\_}ϵbf3\f|hp\ri:jllokl\m\"p;pmpҵqqws\ѵt\vx\CzL?})}16}X	q\ѵGn~ϵAK/BUG/Ե\yҵ޵v͵%\\nԵ1A\?\ s=neD0u񌵱\\ᓵܵZD|JA,B\"Em`\\oߵƃ^Ƒ7\:\\\\@\=Q\?(\k\꒵\\\\\=\\\6Cں\\4\\\L\\T\\Ԍ\V`魲\\r\ӵ\[\sg\gݵ\\\>W\W>\|\ǆ\/\d\\\N\Z\/oF\0ຶ\0\'*az\\01P8k\dn		U	\MSu3*яpEAA۶H	\$Ͷ ! ȱ\"@W\"(#\0#xͶ%5\&Q(ʊ*\0*\k+i-35A7F\':\rA;y\<y=]=\Զ?\\@@ٶA\\B]B\5D۶FBbFDG\@IuJ	4J&JMӶO\O\wP0|PVR{S-SU2USYUWXVܶZZe[F\\!^\ai$b$b<ydke0_exe\5emfU\g\gGk\Z:l8r5\rr\\Zu\'yyy\ny̐z7zOٶh\7Z\r򁶇vPY#鶎:<t\{׶\˶tBZԱ\\'KT\\B-3\(X&.sȶSX϶yද i液+oV\0+R9F4nҶ\n\ж\.\Mɰ\\\7H̬7̬@\\Ͷ\\ƶ\t\U\$ö\<\\愶Ԫ\/>؃w\=H\\;\\?\\"{\ޒ\E\\\\ʶ\4\u`\d\\]\6\n!\f\˶\\\Dٶ\M\\4\x8񠜶\U\\*Gb9-|f\\}\0Q>Э	-[\ndb\nk-\\II\n]o|ȷ\	Ml\u{}ڷ`pz\ݷ8~I\\\Z\05Pfwi#\&t)+4@+k.\1cٷ12\03s3Ϊ3\Z4\	8n\<=\<>*+B*FBFԷBmC\tD8D\uF2\FٷG\ZH\oI0uK;OӷPFR%mTρU|UzU\߷VV\Z<]	]{˷_ݯ`)\`\aŷaZcLc\Pdf`hh\zl+@n\o_qor`r\"sͷt]t_v\Ux2x\"x(y]|L}\p~\Z$UPdﷅ**w·\\\Z%\O\්ⷋ4\\Z;Oc`	\}7&!淣e=^NP$\工d#\Aʷ\ڷaݷ͖Mŷ\x\\)\\m\"[\yBz\۷\.շƵ\)ݷ\\״̐\\0\3@ь{\(ҳV\:÷\\n\Ji\m\\\\\\ۓnܥn\,Oݓ\\\\ʷ\Gl\j˷\\O\B\e\\շ\\ \ѥ\@\\\\\$\m\E\(Odo2e\·z\jOD	ɮ,\\\\r\mxٸT6θkGg@v57@\Z.=;v\뱸 j\"r\"K\\'|θ\'{()H\0*E!,}޸,-{.1.?./\T1,51\\2FV2\44\n5;t5c7\9\&=G{=T=\¸@qѸE\E<E)GPK3kM-ܸM\nN捸OBO\\QcQ\RUbRfX\Z/__\Ma<ck\Zfkggȸjk-pk°mqhtv:wָx>ylyz\Zaz\\r{{,j.fGx\x브E*~\!0DIR\긖\7Qg>V\Z2-F,?XjC\o:\axYf\gOȸ\ָIO\寸\w	&\!)O4s9Ѹ\\g\&\\~\\\\\Ȅ(\\ڸ\N\@\ԕ\|\\l\\\ԸҾO\\\ջθ֮\=\\Z\O\k\\\ݪ\s|ߕ\{P\d\\`\\\F\>\w\$\f\Ǹ\\\J\\\\l\\ظ\\\\ \B\vt\\\۸C \S0\o|¹\0\0\by\0E\̹\X)#\rP\r\Aȷ\?i+뼹\Ź\5u\Z.1\Z^+X}tB)Tgv!\ѹ&a\'չ(\r~(ȹ)*\Թ0缹5\46M8	8\\9w:C:H?P?\nFFFɹFGCxG\ֹH2H\\KKRM]NP\RTmR9R\ٹR\UL\W3WXYE9];]^\̹_A]_`b$cpcedeCg1FhyiZmjSky\rWttu4u@wux5Ϲy\mzB{B|,H\\\"/K?VV\S\\Z\5\UڇŹ\͹\\)1wd$b1U\_ކ=\ع*\Zйᇹwƹx\\"\\\Źװ;ܹ\q=b\\-n]\thN\E\'QṼ^*+5q\h\\\Z\ŷM\\r\a\h׹ȝ\ʊC\\%\Fο˹\\\\^\-\\{ѹι\!\\\¹\\\n1\\\S\\\ਃ\\\\r\]\؊\o\!\\\\\ƹ\\"w\,\V\\\\\"c\ҹ\uعD+>4r\0P\0\Ϻ1D\\\\S\(J	ޙ	\\n\rH\r\ZY<|Bź|ۺ=ĺx\ZQ\Z\@\M\uQyg \!b\"\\#$\[&7\'Kd\'(y(m)g)͎)*X,-\*.!.-.ͺ0\r\0\\Z1ܨ3O46ߺ4gݺ5$99\Ϻ;=\n\=\\r>sA\;A\C~DEEGI(LMKN\N\vOO(O\tPJ3P|Q?R:SKպT3KUNFU\nUWV\ZYI\nZ[fp]^_\Zb|c\pdgmg\rhhj{lw\lߺmnºp:p.<pGp\p\FqrqҺrhԺrGs\rtcjtvYx{yzM\z|8||}Ch*xٺϞ\ɺa\\̺+&Ns-~<뺉>\Z\~ENpN󟺓jO\\ٯG2\rݺYhw}\>ѺL𾺥]eaиٷc檺亯aںܺ/1\Z⺾b\-£ܺ\;)\\d\\]8ȈZ\\_\E\\ˇV\vM\\\\0κ	\捺\\Pרمuܹ\H\E\u\<\iҺ\\P\$ú\9	\B\𝊺\\\\\ٺ\\q\\\\\\\N6WZp2ϻ\r\r8w*\\\0~̺\;		\1\|ڻ\W8,5\Ag\\Z>\Z\.Κݻ鵻!M{&B\'F\')!W)7@)W-C-e/2ӻ/sǻ090R;12E[2A3O\56^6`:\0;\;=O>@&OBLBB[xC$DrHJûM̭M\,RSV?XJYR]n`Z:b\0bӻebe\]f\f-frf\mgAeg_h=)hxhi\ilƠm\Ho~oo\p=rYFrMr\\"tGtdt\fv\ѻw\|R|~\ĻN滀v6!٘b2HB-:\.<{\bX\W1 ۦc<pBJ4z\r\1\r5uۻn cf\#gMﻱc7Yt]ǻ\"* 2,r (^\׻\!L\o\ߘ\0ݻ\k\g\\8\fջ̣J\d\E\\ӭ\a\@\\z8\\cքr\DC\O\\뻻\O\\x»\୻\Vx\v}\/3\]A\s\\\Y\\-\릇\㱻\.-\8\\rﻑ\\E\mu\C\ph>銼\JX\ۼ	Z	խ\n˼r<\r\04\\|\Zuۼ\Zep\a\ڼ\!m!=j$z\n%7{\'L|\'lz(.)	)Z+T,\\'.P1>1\12y$2\2o4\Ѽ6m޼7\\9ʬ=PP=RѼ>;K>N\>\=?ݼ@kBn^E8FtF\3G81HH\J+\KUK\ǼP\\QVlZ[┼[\\\U\\\\P_\paaecc\c\że\iTkClJl\kpȼq%߼t\\vߌw޼wAz-z\zƀz\{\Q|TH|d2}\^}\y~>J7\׼s꼀}\%Yhw\Ѽ\伉d\Zq@Qa弎\s\^*gͼ\żIݼJμ|lB\\GÑAGԼ\\\3ƭ޼ʱɼ\7̏̔\\͹\\єҸ(\\]\S}ӱR֭h\m-\좼وٝ6\xH\!\tp\\0\\r\\\nW\4\搽\:Լ\L\\\\\P\仼\\I\\r\\ػ\Vdp\\0\r\˽0?B8HBSĽ	&	8.!l7.S\\yUȽbv_\DO\Z\ K \"2\"\\$F!%\۽\'\'\н\'\ѽ(]()\P+\ -ڽ-|M.d./3/ܠ0dս273-޽35\ٽ6B9\:\m;a<K<\<\ڽ=>cP>>?½BAdD\?F\GJ\"AMXMM@OFPP\JSaSjAT਽VX)ϽXX\]]-\0_ּ`y`c]\dNh\j/j溽kVkmmcnmuoo.p^q^\suXv๽vywC|#i|9O~`X6ȟ׭Έn+8\lӽ\\>q޽Y{1E	a齛;TԽi}ν&.Ǌ=\P>락JNg\\4\+置\?ݨƽ\ѽ3&\LR~Z,߽ESݽ\F۽\\|ؽ\bb\;\\Dȣ\8\Ƚ\4_͹\ɦψo\>k\\޽\Oxқ!\ԧ\n\E\9j\Eͽ\m٥\\F_\ws\i\κ\ӽޅN\\ٽ\\`\\\Ų\Ľ\+\y&\4\\(򷕽\ؽ\T\J\ս\Խkný\e۽\0\9\վ\r\(	\"s\r2$\eӑ`\{$@e\y<$\\\@t yؾ\\"(#\#\\$H*@*(,/e,m,,\-E-/0]60\:1A1_1/1z25D3\56\77ھ8}2:;#%<\\<=ߪ?)@CB\FɾHIN\\N\_OSlT\fT\T*Vi-WJ=W\X\X\Z$Ͼ[`N`~a¾b;sc*]cc\KeFeۑf˶jkekOo$ržrJs\\v&w<wLww\x~y\l{\\|P|}K*~x\T>7徃I@B%ƬM\#y\\r\\Z¾\þ9$Y\\"\ξ5Ծ홾\\n@侞n\"ɾL1G\群\k-L?t_\"b\\Z_ྫྷȪ\(e$\߾HľW侳վоᵾM2ھgc#}S\Z\"M;o\߾þ<\=˾\|\Ɲ\Uھ\Q\ʼ/\;V̀\\n\vx\\\UԿ\X\X־\签\\)\\۾\\r:\&\\\\}˾\\\,\g\>E\\\\\\ž\0\о\?\\v\0\S\]ӾFk\'\1\\6\l\Zbepjv\		\{	䱿\r`%7\l\xQǿ6HAl2E \A!\0\"z$l%a(ׄ)\r)6\'*},\X-\y.Pȿ45\5\O8\9;9aO9ݿ<mG<>/q>諿?s%?\A$lB\OCCDrG\HGIJPKLMMN1\P6\QBRʦTƿU\VWXW\BYZ[\[pٿ]&_\` a@b(ۿd\erzk!r%rTNrÿss\Ow9||\\}c\_dҿ9.|ÿ\rۿؿs&𺿕\>&a5鿤<0\\nf*\\Z\g(2bP_p뿷\sy\.A\T\Y\\-\Eѿ\[z\hh˜U\\~\S\zƿ\\jϘɿ\WҫT\\\x\P\+\\qۄMۺT\\\\	 ߢ˿\}G\\E\-\\\\8\	\\p\\\~\h8y޿Mo\}x\0E\ru\n\k~\kӏ,\'`!\#H$\'(*~+\2B5\f8f8m9\:)::<;\\<Y=.>M\'>\E>\Dq\\D}oE7F?F?F\\HI[I`J(L\ZLS\LynM\N NOR*UIU\KV\WX\^^ǭ`{g\n2h}\h!hk)<k\\lZun\Fn\=n\o^p?sCtnu\wRw\qxtx\!yy{;|\|~\\I`TNַ\#ӂ\b&\\>2h\\5\uI`ߺw\\h\\rq,I\\nN\[Y;d.1\"y9Mi\\\K\ 9\FvɁ\\˨h\\\y%\\\>\J\f\m\Z\T\\\"֓\\m\rؠ\X\\\Cܴ:\kތH\V\`\i\N\\7\\\\\\\PR\T\\\cꣾ\\n\W\\\R\A\\N\\I\\\\B\gS\T\\0\r*\r|\\'KKw\	\j~\\<{~\	|:?8\9\Zb\+\\r\\\ci y \\"\#5$\\&8](_\Z(o\\(\*\+xT-dN-.l.y/ߒ1\2\5#5\Z6\7\809\:m\:\?\\'B\n;B\B\mCGReGkGIgJ$AKK^MNFrNMNkQ\RgR˔SS\\'U>|WiWu[K\\\1]20^\_Q_\2`bA\gd\il\0l\llnoL\p\p\<qurs4\tz\ufu\pu\wVwrxxy]z\z͢{\"}\Fd\\9\*s\AS\:b\(ct{\*o\L\\[;-\"\?\'>\ek.4f\c \p\g\\\\N(\-\\S#\U\\\\Oĝ6\\\,i\A\\N\˳7̈P̣7\e\\\P\\>\\\&ؠ9ٵ\\\\r\%\r\ \Ț\\\E\\\\>\\?\	\\\\J\\\\\\\z\\\\\\\\{\$J\\\R\\\\, \k1\\\	!M\	v\	\\p\\\r\\\r\4q\\\S\\\̒\T5\k\\\w\\\"3\\"\\$#\%:\\%\\&\\\'T\\'\\\*R\*Y\*a\,\0L\-\.\\G\/l\4e\5]\5S\5\\7L%\8\\:\\=\Aj\\DQ5\Fz\H7n\HxW\I\0\Ii\J\K\r:\LM\L\\MW6\N`A\N#\P\P6\Ps\Q\n\Qv7\S\\r\T\\\U[\V:)\V\r\W|\\Wg\W\\"\Y\\\^C\^=\_\\`?`\id\jp\j\\j\ka\\la#\mݚ\n\\n\\n\\ok\o[\qW\\rv\\w\xL\y\y\\{g\}\}\p\~g<\\\+kQ\\\F\\\!\\Hyk)\@r\D\\zl*mp\=2\ Sf¡L£b££¤_h¤+¤ԥ§¨\>¨\P«`­\®²\t³\\?³\\¶#¸$)¸qB¹Em¹u`¹ºg\¼\½*½½\\\\\h\\N\\Ų\\\FT\\-\ǳF\\[\\?d\Υ\\\0\Ѵ\\iE\\ER\\\\\\\\Q\\1}\ޕ\\\nu\\\\R\\w\\\\\h\\\(\\\\\\\\\\u\\\Z\\H\\\l\\:\\_\\U\Fm\\\\\u\\~\\"\?\\R\5\\\\\0,\\.\\;^\}\\9\\\\9\n\=\\!\\	Q\\	hY\\n\\\n}\\n\\\\-\\p\o\\Z\ı\\\r\\'\\\\\\\|U\\1x\\\\\\\n\9\\Z\\\b\@%\D\M\\]\\"\0\\"\\"@F\$i>\$\\$\&\&\\'\\(ew\)\\)\\\+t\\,\\/\1t\\3\\\3\4\\5\5\8?\8}\\8\\9\;\\\>\r\\?\'!\@m\@\\A3\B\B]\\B\\C,\EP\\F\@\G\M\H\L׳\M\\N\\O<\\O\\P^7\R\S\\TP\Ue\WmL\XP\Y(g\Y8\n\Y6\Z\[q\\\(\\\=\\\\\\^\r\^\\bUu\bx?\b\d\dYH\dsu\d\-\eK\\e\h\o\oz\qd\s\t\t~\\t\r\v\\vɾ\w\y\\z<\z°\|i\~%Â\\Ä\Å tÅ$LÅiÅ\>ÇA%ÉÊb\ÊʹÌNsÌ`\ÎRÎ\Ð@ÐÖ\\××Gf×ÙL\Ú\ÛpBÛÞ\rÞ\Þ\'.â.Fâ\\Zãäå\æüçç\\ç\èoé\îï%eðoRñõfõX÷\,÷\^ùXùxýJþyÿ\r\(U\\\\\\\\3>\\I\Ǔ=\\\\\\B\\\s\Z\\\\\n\\\v\\\a\\]\Ӂ\\֭\\\(\\1\\ri\ۃ9\\\\g@\\u\\\\\\`:\\\N\\\\\\ +\\\\\\\\\\\ \\횂\\_\\\ѽ\\\\\\4\\\\j\\\Z\ݧ\<;\\I\=\\\0N\\0.9\x\\\\\\\	,\Tp\\l\\A\m\b\\Zց\\r\\rn\:\C9\F\\"\0\\\"2J\\"\\#,Z\#fg\&\\f\(;.\(\\*\\*\9\+D\,\\2\2\S\3\\7V\8\\\<y\<\\\<\m\@\C,\D\\F1\\Fn\H+\Hn\I\\L5\\OT\Pf2\S$\\S\WZ\W\ZO\]\^1\\\_\_SK\_pP\`\`\\\aZ\a\az\c\\\d\'\d}y\e\\\en\e~\e\\fm\ft\\g4\k\\m~\ml\n#\nk\o\\o\p\r,\s_ \tC\t\n\u\u\\\v.\w\\wU\x{\y\n\\}clāĂ.\ă;ą5ć\čy&ččpĐW3đ{Ĕ\ėFėMIė$Ĝ\nĝTĝ\AĞc~Ġġ\nĢ\\Ĥ\\ħpħ3ĨUĨ\ĩzĩ\<īNiīoī\{ĬAĬGRĭbĭĭ\į[į\9İ^İ\0ı\DĲϮĴ$^ķ\\ĸWnĹHkĺcĻF\Ľdr\\\\\\\j\\V\\%\\\m\\\\\Y\\ȥ5\\\\\\H\\r\\\\?\Ѫ\\ѳ7\Ѽ\\=\\\\i\\1\\\u\؆\\\S\ٳ\\\ni\۷e\\\\\?\\\N\\\\\d\\8\\\\\\\\\s\\\_\焜\\-`\\\\\i+\\\\\\\\\1\\%\\\	\\f\\\Ds\O\\\!M\\\\+\	wc\	\\n:\r\\nm\\nq?\p\\\r\\E\D)\.\\\\\6\3\\Z\\1\3\\\\*\;\\=\\"\#\\\$\\&\"T\(޳\(\Y\*\,y\.^\/lQ\1\\1$n\2W\2\O\2\\\35\4\;\\;t\<\<w\>\\@\?\AUD\Ak\B5\Bkz\B\\B\B\	\F\I\\It\L^j\Lb.\M\\O~\O\\Qp\R\\T\n\T\\Z\Uc\\UpR\W:\X\X\\Y\`\a!A\b\'g\e\Z\eE\e\R\f\\\fQ\i\\\k\l8\q\	\v|\\w\\x\\\\x\z\!\{\{c\}\I\u@\\Mŀ_\Łłł\nņ\ŊZ*Ŋ]Ōm\ō\<ŏŐ\ŒQŒ\ŗL\ś\Ŝ\'yŞtŞ\wšC\šŢ\{ţţ\ţ\\Ť\2Ť\6ũZeŭSŭ\űųų\`ųŶ	ŶԯŸŸ\Ź\ŻŻ\\ż\QŽZŽŽkſ^\ſſˑ\)\\@?\\\\&\r\Ąn\\\4\\\ȁX\\ж\ɉ\\8\Ԏ\\[\\<1\\T\ص\r\\9\\\\\\\(\ݥ+\\$\\7\\\\\\Zz\\\Z\\>\\\N\\\-\\\\\\Σ\\Ӆ\\\\\\rh\\\\\\ږ\?\=\5\\\\x\h\\\v\T\\m\\Q\~\r\3\\\\\xu\g\#\\\o\\\\\\z\ \ \w\!\\!GO\$B\\&q\\'\\(E\\)f@\+\-4\0\1G-\3\\4\C\5\\5#\9\95\\9Oi\:\\;\k\<\<\<\>\?\\@\\A=j\DQy\D\F\\K\\M\\No.\N\Pp\\\RH1\W\\YK\\\\[\"\\\\U\]\\^\\`\b\cR\\c\\d6\gp\\ip\m\o\\r\\\sM\\t?\v\w\xdU\xx\xt\x\yM\{.\\{d\|yE\N\'ƀtƀ\HƂ\BƆGƇ\Ɗ>ƌrƌ޳ƏƏ\\ƐRƑBƒf|ƒƓ9!ƓGƗhƘƘ\)ƛ\]ƜIaƞ\?ƣ ƤM=ƦZƧݝƫ\\Ƭlƭ`Kƭ\ƯƱ\Ƶ\BƷ,\ZƷ\Ʒ\\Ƹmƺr#ƺ\ƽ5ƾ\ƾƾyhƾM\\f\\O\\Ĵ\ľ\\\\z\Ǘ\\\x\\\8\\\J\\yF\\ʧ\\\\\\$Z\\\\\\\\n\\\\\=\\\?\\}\\\\\\\\\&\\H\\ᑞ\\Lt\\\\\\"e\\\0o\\\\\\0\\\^!\\Ӄ\臥\\I\\\\\W\\\\\\\\\\h\W8\3\\	\S\\\\\\֌\\0\\\\Z\\\f\l\\:\	@\	TB\	>\	\4\O\\9\\r\\\\\\\\\,\\T\Ø\\Z \\Z\z\\\$.\%jM\%P\&g\\'m\\'\\)\a\*&2\*\\+\\-/\.Y\.\\09i\198\2X\3:\\3r\\3\\7k\n\=\\@K\A. \A[\B\r\\Cn\C\\\Cރ\E!\Ej4\E\\E\Q\F<\\G&\\JP\Lv\Nh\S0W\X\\\\\\]\\\^-\^\^Q\_\\_6\as\b\c}D\dҶ\ixx\kY\lM5\l7\m\\\p\\\Z\qK\q\>\q\\r\sX\sb\u\\w+\y\\y\y\f\z\\z\\{P]\|U\\\$ǀ\Dǀ\ǁ\ǃ6\Ǆ<UǄ\ǅ&\ǅl\ǆ`Ǉ`ǈǈǉ\rDǎ\fǑǘ2ǘ\\ǚ6ǛLCǝ\Ǟ[tǞYǣ\\ǤKǥ\&ǦLhǧ\pǩ(&ǫ#ǫǬPZǱ{ǱXǲfǲ\\ǵuKǶTǷǷǸǻǻ\ǾwFǿ\\n\Á\«J\\\\\[\\;\ʳ\ʷ9\\Т\\\\'\\;\\¿\\\/\\\l\ϫ\\\o\\-\\\0\Շ\\׋3\\{\\\\\\\n\\5\\\"\\M\\\\k\\\\\(\\\\\\A\\&\\\T_\\\\4\\[\2\֌\\Kq\!\G\\W\_\	|\o\\rD3\Z\\\\\\r\F\P\R1\\Z\\\\Z=\\	\{\S\ $\#m\%~	\%`\&Sz\*,P\*\,؀\.:\\.I(\.P	\0(}\1z\4\b\5J_\7\H\:G\:M-\<\\<\\\\<j\\=\A$%\Ai\Ar\n\C-\DY\E\\F<\I\\L$\\M\F\NP\N[\\O4\OǙ\O\\Pq\\Ql	\R\S\U1\UZ)\V\VW\\V\\Wbe\X\\X1;\XZ\\Z`4\ZB\Z\^L\_\\\`uS\`\ae\b\f9\r\i\^\jE\mM\n+>\n\\o\\p\p\8\q\"\tt\w;\\{\\jȀ\02ȂgȄ-ȆfCȈ̐Ȍ|\Ȏ&tȏȐ1NȐRȐe\Ȑ%Ȑȕ\\Ȗ\xȘ\Ș\ȚmȚ\ȝM@Ȟ\0`Ȟȟiȣ+ȣx|ȣ\3ȣ\ȦVȧgȨ\ȩ\\Ȫ\jȪ\eȭX\Ȱȱ0ȴȴ\5ȶȷ\'\ȸ+Wȹ:ȽFȽ\nȿ\\`\\@@\\o\\wV\\|\Ƨ\\\C\\~\\0\\ޣ\\P\\Q\\\r\\\)\\\$\ѩ\\\\\\?a\\Ŏ\\oa\Ա{\Շ\\\\\׾\\\r\\3K\\~\\\5\\ue\\M\\\\|>\\\4\\Z\\\\\\\\\9\\\\\\5\\H\\\.\\7K\듖\\I\\;\\\;\\\\\%\\\\=\\\\\\\\\\\=\\\\\g\\\w\\\\n\0\q\T\\\\=\\xd\?Q\\r\\Z\?\\\\U\\\ެ\\B\\n_\\\\e\v\\\\*\j\\ZZ0\[\ h\!\$\&O\)O\)\\*\\,\\0\\0\"\\3I\42\5p\5\\\6\g\:\<͟\=\F\>\>9<\>\c\?[t\?p4\@P\A*\Ce\\D\EMU\F\F\G\H:\Jn\KH\K(\L\L\\N%=\N\O;&\O\n\P\\U\L\W\Y]\\\\k\\\\z}\aDp\cx\eŮ\fL\i\/\i\X\j\\k\n}3\r?\\t\\\u\w\\\x\'$\x\\z\0\z\z#\{?%\}`ɀ\'ɀfɁ\\ɂ4Ƀ#Ƀ\KɅnIɅ=Ɇ\\AɈ\\Ɋ-?ɍ$ɏ\\ɏјɐtɒpɒ&ɓqɔ\\ɕ\jɖ\ɖ\ɖɗdYɚ\ɚ`ɚɛ@ɛ\ɜE|ɟr\ɟ\ɡɢ̦ɣ&ɣM\ɤ\ɤsqɥ}ɥɧ#ɪ\\ɭɭ΁ɯ\\\ɯ\ɲ\ɳ\ɳNɴ\\ɴ\sɴ\ɹcɽ\ɽdɿ\\ċ\ň.\Ō\\\\\)\ǊL\Ȟ\Ⱥ\\ʫ\\\#\˶\\͍/\\(\\ж\\n\\\\Z\\\\l\Z\\ѹ\\\յ5\\\\\\ު\\W\؋\\c\\\=\\<\\1\\1\\/\\0`\\\\u\\\\\\\\\\\\\ָ\\\\\WI\\q\\\\ڊ\\:\\\\\M\\}\v\\\v\\\\\\\\m\a\2\	#C\\N$\U\\\\\\\S\\Ǳ\ܝ\=\[\\\\\Z\\\"*\\\\-\!dr\#R\\$؋\&\\'\\\'&\(\s\(7\,/\\-݄\.`\/\0\1b\1\2{\\3>\\3\3\\66\\7OI\7\9^5\;\\\<\<\>/B\A\B\\DB\\E\0\E\Gn\G\/\H\"x\Hܵ\I|\J\\\K0\KU\Ke\L\\L\5\N=\N@*\P>\Q\\RӢ\T%#\W_\W\Z\\\\\\];\]R\a\\c\\\dZ\\e\\e(\eA\g\h\l\*\m6\n\n\o\ox\pS\p\\p\\\qI\q\tA\t\udM\u\\\v\x\\x\x\\y\{\\\}Wnʀ\'\\ʀ)ʂu\ʇ\ʇ\ʈ/ʋ̍ʌ@Wʍ_\ʍʎ\Zʏ\\'ʔ\n\Zʔ+ʕWDʖYʘ(Bʚf\ʛʜ/sʜʝ\+ʞwRʞ\ʞ\\ʟ@ʠ\-ʡzʡ\|ʤʧ\0ʧ\ʩ\ʩ\ʪF@ʬ:ʭʮ\Qʯ\ʰ/ʰHʰn<ʰ\ʰaʱ\\"ʱ\\ʲPʵ\Z3ʵ3Cʷ\ʸ\oʹ	bʹ\ʾʾʿo1\h\\:\\\\\Ç\\q\\ǔ\\P\\K\\ʻ\\\\\\E\\6E\\\\\j\\Z\\\\\\\\\X\\B\\\\Z\\\ix\\β\\ݵ\\m\\\\\\\\\\@\\\\\\\\\9,\\\\\\\\\8T\\\\Sk\\\S\\07\С\\'\Ҙ\\r\\\\\p\\ӏ\K\/\\\o\\\\x\\Z)\\\Zw\\S\\'\\\0i\}\\B\ \!/\\"\#s\#\\&\&\)e2\*Z\+>\+\Q\.R\. \.΋\/g\0Z\20,\5/\8 .\9\:\\\:\;1\<u\<\\=a\@S\@;\A\V\BWV\Ct\F\\GE#\G^\G\H]\H\2\M\"\Nۅ\PI\R\R\\TI\W;\X\"\0\X?\X\\\Z\[\\\R\\]\]\\`J\c\\\d(\\\d\\h\R\iH\\j3\jA\\m\k\m\\n\o\o\\\pXH\qX\q_}\s\r\\tH\t\\z\\}\~Vˁ\˂\˃&˃֖˅ˆˇ*\ˈ[6ˈyˉjˊ@\ˌGˍ+(ˍ\}ˎG\ˎ\ˏ\\ˑ˒˒\˓[T˓f\˔7˔˕O˖8˗\p˘#˜PL˝\˝0˞zˠ\\ˡ\ˣ\iˤ?˧NP˧u˪0\˪p\˪\˯_\\˰L˱z˱\˲\\˳*˷˷˹[7˹|b˹˼˽\˿\\\ì\\\\v\\9\\:\\A6\˦\\\r\\΂\\l\\\n\ӝ\\Sy\\l\\Y`\\\O\\\\\NS\ֻ\\\\\\\\\\\\\\\\n%\\\0\\\L\\k\\\\\\\\\w\\m\'\\\M\\	\\\\\\\s\\\\\\\\\'\G\\\\\>\\u\Bl\H\\\\\01\	k\P\\\\L\\\\\\	\	+\\n9\\N=\\*\\r\\1\\\\\\\\\/\Uk\k\<\\r\5\\6\ l\&,\\'ZJ\(\\)i\\+\\\,G\-i\.8,\2*\8\9\:p8\;\\\<$\?\"\@\@)\\@\Z\F\I\\I\'6\IQ\J. \Jd\\N{\N\\\O9\Q\\R\Ro\S\\SL\Tz\V\V\n\\W\ZaE\\\\,\^\^o\`+\`\\b&\ck\e@P\f\\qq\r9\\tێ\u\\u\{\v\'\x\h\{-E\{\|#\\}\Z\~\9\=́̂Ŷ\\̃̃\\̄̄ݦ̆S̆\̆\\'̇>\̇j̉ẘ	s̊\̋̍8#̍>̐z̐F̒	\̒B̒̓̔e̔t̔̕5̕>̚R̛̝a_̝C̞T̞\d̟2̟̠\\̡#̡\@̣-̧Z̧\\̪ >̬\̬Ү̬\@̯*o̯_\̳\r̴̴̶\̸u\̼\\\\\ƒ\ɆT\˝\\[\\\\\\9\\\\\\}9\ջ\\ٗv\\\c\\;\\M\\^\\ܒ\\\\\\#\\85\\_\≹\斸\\w\馭\\9\\\\\\r\\\\t\\g\\\04\\L\\|\\\\\[\r\\	\\\\\0J\\\\\\\\\\b\\\\\\	p\	\	\n\	}\\nb\)\\L\!\(x\+\\t\W\u\t\9	\M]\\\Z6\\1>\)\\\\)\ų\#-\%,\)\\*O\-%\-:\\-P^\0-\1%5\1\\3\\6\6\6\8s~\9l\:\\;x\<\q\=\\?^\?s\A\Y\Bx\B\\\B\D\E\j\H\y\J\K\\\Ke\\Nq\Od\P.\\P/\PG\Q~g\Q\\Q0\RZ\\R\U%\\VWF\X\X&x\XS\X\\ZGs\ZaJ\\\\rA\\\g\_\\_=z\_=\_\k\`_\`\b\\\c#\cS\d\eX\h6\i\L\k\\l\\m6\mq\n\q\\q\\rE\s\\\t@\uۅ\w\\\x\y\\{\g\|=\|H\~N\~}\o\T͂e͂\M͂\\͂\̈́͉O͍͍r͍r͏O͏͓͐ۙx\͖c͗\\͚_\͝T͡~4͡\Uͣ\:ͤ\\'ͥ\0ͥͦ\ͦW,ͧ\r\ͧ\ͨ\\ͩ;Zͩ+ͫj/ͬSͭͳ0\͵͵\.Ͷbͷm/͹7ͺ1ͻIͿB\\\\\L\\\\\\\3\\8\Ɏ\˿9\\ҏ\\|$\\\o\Ѱi\ѳ;\Ҍ\\P\ӌ\\1\\\\\\\7\\\<\\\<\\\\\\G\\\\"\\_|\\g\㿤\\\\j\爾\\1\\#6\\\m\\\F\\2\\\Ū\\9\\Z8\\\\x\\\n\\J\-\=\8t\3\yY\\0\\0\\\\\\h\_\u\0\\\\\\\}\\\\'\\\\!\|\b\\Z9\\\ZK\\Z\\Z\\Z\f\3\\!\\#\\"\$\\\$\\%\\%|\%\'1\&t\\'N>\)k\*5w\*:\-\0\.\02\1{\\4z\8(\\8\<3\=%\?>\B\E \E]\\FG\F\@\I\KW\LL\\O1\Pu\Rs\Se\S\\\T=\T\\U\\\W!\\W\\\XP\X\ZC\\[k \\\\r\]\_g\`b\e\'\e9\Z\e\7\g\ng\g4\h\i\Z\\i\K\jH\j\l\l\l\\\mJU\m{\m\\o\oм\r\sF\s^\s:\vJ΁=΁\΁\΂΃A·<·\\rΉΎΎ\ZFΐ:ΐ0Β]\Γ\\'Δ\Θ!xΘ\Ι\Κ$Ξq΢Τ^Φ݊Χ\}Ψ<\Ψn\ZΩ\\έήJή7ίί\ΰ.αSβ\ε\ζBXζ}sθικ+Pκ͙\\\\\\Ź\\*A\\fQ\\,\\\7\\[\\G\˨\\D2\ϕx\Ѓ\\\k\\\l\ԡb\ؘ\ٖM\\ź\\.\޾a\\9\\؄\\\\Z\\?	\\~\\m\\\\\o\Z\\s\\\\\\\\\\\\\\0\\\\&\\\\\Xn\xZ\\l\\1\\n2\	W\\ne\#,\l\\r%\/\\\"k\%\{T\G$\\@\\\Z=\\W\\v)\A\ \ \"\ \!\##\\$E\$b\\$\]\%r\(\)&\*g\\._\1n\\1\f\4u\4-\5e\5\\D}k\F\FĄ\Gt\HxQ\I\n\\I\\I\\J[\K\L\L\N%G\NGs\P\Q\SV\\Su\W\n\\WQ\\X}\Y:!\[\[\^\y\d\fD\\iH2\jf\\k+\\m\\oSx\q~\s\\s`\u9\x3m\yѓ\z-\zvQ\zЮ\|\}\\}\$ρZσφ*ψeω\\ϊ(ύ\UϏ\ϒh;ϓEϓϔn$ϖϗϛBϛmϡ1ϢϦϩB6ϩ\Ϭ`Ϯ\ϰϵ-\ϵJ7϶\϶P϶϶\9ϼ9Ͼ)ϿiϿjR\Ճ\\b\\\\\F}\\\w\\\\0\\\\\E\\\\\\\'\ʘ\\ʜ<\\I\\\d\\\\\\\\\Є\\А^\\\ր\\޶\\\܋\\\{;\\ʰ\\Ӻ\\Q\ᶾ\\\\\\\\䇾\\\\\Vy\\p\\р\\F\\\\\7T\\\\y\\Vh\\[6\\ʉ\\$/\\o>\\\\\\0\\\	Z\\\"\\\6\n+\\\\\0\A\W@\F\\\\\\\\\\n\\\\\r\I\\\\\\N\\/\\\\"\%\o\\'\\(]\*;\+3\\/\0\3\3ĭ\4\n\4u\5*\\6	\7O\7\\8(\9\\\:q\;J\;\\\<\=\\\?%\\B>5\B\\D\B\E\=\E\o\H\K\IN\\I\KX\K\\L\Ln\\Lu\N.\NS\Q=\\QK\\R{\\R\r\Su\S\\U(\Ut#\Vbj\ZxJ\[\H\\\k\c\d\r\d\\e\\f\\g*\h\I\i#\iZ2\i\"\j\\kS\k̻\lP\lg\n`\\n`\qY\\tɄ\t\\u\\v\wm\\xVr\yb\\y)\zU\|(/\~\\F\\\Ѐ3ЀܛЁЃLЃ\7Ѕ\0\І\\ЇWZЇ\|Ј\pЉd\ЉЉ\%Ћ}\Ѝ\\ЏJ`А\\ГЕ\@ЖИCЙP\Л\\НB\П\С\dУFУl$УeУ\У\\Х-\ЦCYЦ\Ш4Ъ4Э_ЮβЯ\gа б0вYг\д4`еHжIжX\ж?и0йpлuл\\мBпп9пn\\t\\I\ø\\ý\ĝ\\z\\\\\\G\\\\\i\\v\\\\\+\\\ς\\b	\К\\ST\\\P\\\\}!\\9\\b\\#\\^\\\I\\6\\\\胺\\\\\t&\\g\\\\\\\P:\\u\\\|\\\3\\^\\1\\F\\\\\\n;\\\\\\\\,?\\0l\$[\j\\\\\54\q\\\Z?\\k\)\K\\\\n\S\\\ro7\\X\\5\.\\I\9\\C\\z\$\\`\\f\V\\\\\\ \!ԩ\\"|\\"\\$d\%S\\&?\&r\\,|\2<\2+\3B\3\\3\q\5j\7(\8\\\:$*\:z\<H\<Jk\=1\=u\>T\"\?@y\?.\@ \D\G*\IGb\Iy\J%\\Kk\Kv\L\\L\M$\\M8\\N>\P\\R>\UI\V\V\\XW\\X\\XÐ\ZU\\\\0]\_)\_3\_\\\`\a\r\a\\\b\\c\\f`\g*E\gV\g\hw\jg\k\oH\o)\q\!\q\\so\\vT\\wn\x%\{\\0\{o\|\|\~C\\~Ta\~e\ф цmцш\0\щ\\ы\Z1эb\ю\ёvё\ђ\є{\єі!@ї~Aїxј\\њ њћќ1ќkMќIѝ]YѢ#ѣ\'\ѣ_ѣѤ2ѥnѥ\1Ѧ Ѧd\ѧ*Ѩ%ѪKEѭ#[ѭK>ѭѮvѯdѱFѲ6ѲDѲѲ\Ѵѵ}dѻ;\ѾiѾѾ\\3\\\&\\,\'\\s\\\N\\Ŷ\\s\\\\L\\]\\*\ȏ\\\\\\7@\\͆\́,\\\W\\!\\\"\\\\C\\\>\խ\\z\\H`\\\C\\\\\-\\\\\\\\/\\\\\a\\\\\\ \\\S\\\\z\\q\\g3\\`F\\\0\\\o\L3\\n\\ x\Y\\&\\H\\0E\\0\\\\=s\s\\\\r\\\!\\\e\)\\\8\o\\\\(\\"\\"{\\\\\\!xL\\"\\$\\$֖\\'8\);\)q\*\\,\-\\-\.4q\.t\/(\1?\2T\3u\3\8\8\\9\'\:\\;\;]C\<$\>k\?҈\B3\Boh\B}\D\\E\E\\F\G[\J20\JG!\LE\N\v\P|n\Sd\TI\T0\Tn\U\V\V\'\V\t\V\\X3\\\\\\\\`\\\bWA\b˂\d\\ds\d\\f\0H\g\\\h\iBU\j\\kR\\n\\o\\oa\pt\\q\q\w\\xP\zl|\|\}4\}Q,\}V:\}\Ҁ}\ҁ\ҁ̷҂F\҂\҃\҄$҅f҇p҈\r[҉,Ҋ\Qҍ9ҐҐ4kҒ(Җo\җ?җ\CҚV\nқ<\қH-ҜL\Ҝ\ҝҞ.GҠ\ҡ\ң:Ҧ\ҧҨGҪAtҫHҫqҮү#ү3\ұ\\ZҲ\ҳ2ҸxҺ;Oһoһ\һ\W\\\\¼/\\\X\\\\\\^\Z\\\\8\\wQ\\̪\\\\\H\\\j\̭\\\\к\\Vd\\k\\x\׆\\\A\\\<\\\\\\H\\\J\"\ܒM\\c=\\\\\\\㰿\\|\\\\\ݸ\\\r\\:\\`\\N\\\\\\\0\\~\\\\\O\\3\\\\\\\h\%Q\#\S\\]\?\\d\\\[\\\n+/\=\\b\\%\\r\\\6P\V\\\\0\\\\\\\)\]\FR\\\\)\fH\\]\\\\7\T\\\\\\Y\M\\ \ <\!5H\\"HD\$m\\'\\\(=\\\*BD\+!\+3\,\-\.\\n\1>z\1\\3\6\\\89\\;\;\<\\=rT\=\\\?\\\@,\A\IW\I\L\r\M\M\\\N5t\O\RL\\\T\U\\\Vi\X\Z\XW\ZY\Z\`\?\a3X\bk\f\\\g\i\jq\l\\n\ \p1#\q4\\qOS\q+\s3\s\l\t\\\us\0\xh\\xn\x\\{\\|P\~\Ӏ&ӂPӃӄӆ:ӆӇ Ӈ̙Ӈ\\ӈ\ӈ\ӉSӊ\\Ӌ\reӍOӏ\Ӑ\\ӑ:ӑ\\ӔӖ7oӗ<ӝӟ\Vӡ|Ӥ\ӥ/;Ӧӧӧ\6ӨG8Ө\yө\Ӫ\[ӫ8ӫ\ӭ+\ӭ@Ӯ0Ӯ`Ӱj\Ӱ\\ӲӶ?Ӷwӹ\NӺ>ӺKGӺ\Ӽ]Ӽ\yӿӿ\I\\?\\×c\\:\\\\V\șN\Ⱦ\\\\r\\\\"\\\\ϾQ\\\\\\"\\c\\\գr\\\\\?\\t\\\\\\\\\\#\\\ˣ\鬣\\:\\҂\\\\\\\\\Av\\~\\\F\\P8\\\c\\n\\;\\8\\\\\0\~\o\\Z\\J\7\	=\H\\(\\Z\\\~\\\\\j\\Zy\\\\\!_\#-!\\'+\(\\\+:\+y\\+i\.\\/!\2\3g_\5\\6\\7n\\7\*\;\;\\<a\@\"M\B\H>\H\\JB\K\\L`\N\q\P\P\}\Q\w\Q\\Q\\S\@\U}\W\XOL\^=\\^~\\_\c\b\c\\f}5\gw\h>%\hS\j\\j\\jR\l\m&\me\nY.\o\\oؼ\r\s\\t[\t\uE\u\5\w\n\\{W\\{\\{\h\|-\|\Ԁ\dԂ5Ԃ~-ԂWԇG<ԈԉM\ԊLԋy\'ԑ4+ԒEԒuRԓnԔԗ\Hԙԙ\ԚԚ\ԛE4ԛ[ԛg\ԛԝԝ&ԝ>\ԞuIԟ^\\ԟrVԠ\\ԢoKԥFԦ\\ԩYԪ3\\ԫ\Ԭ\ԭXԮ\ԯ\eԱҤԳ7ԴȠԵ\Ը6Թ\Թ+Թ]Թ\ԺcԺd0ԺԽ.)\\\K\\\\\\\\(\\\e\Ĩ\\\E\\\z\\\\\\.\\Q\\\\\\\\ɾ\\\O\\\\\c\\Lf\\y$\\\\\ɓ\\|\\؋@\\>\\\o\Z\\`\\\ơ\\\\\\\\9\\~\\@\\\\M\\\\mH\\\\Ce\\\\$\\\'\\\<\\\\\\\\oR\\\\\\\\\\q\\#\N\\g\kz\\+\}5\|\*D\\\N\	\'\	\	\\,\\\=\\L\-b\\*\[\F\\\\\\0\\\!\(\)\*\\\+MT\+\\\+\8\,t\,\.\/;\1A\2{%\2{\4m\\5\6m\7H\8B \:q\;R\<a\>\\\@\m\@\\A\\(\DB\G\'%\H\\H\\Jl\\PL\Q\R\'\\R\\T\Y\'\\Y5[\Z2\\\\\rw\\\\n\_\ \_̒\`l\\`~5\at\bsq\ch\dl;\dq\f\\\g\0\g\a\h\h=\jWU\mp\m\n`\p$	\p8%\pLy\q\"\\ss\uo\u\v0\"\w\x\x)\xM?\|\n\|\\}KՀ\Ձ_Ձ\Ճ#ՃYՃuՄ_Ն\&Շ*\Շa\Ո#ՊdVՌQՍ;\Ւ\Ք_Ֆ\ZՖ͡՗23՗E՗#՘8K՘Rՙ\n՛\՜:՜\՝՞lM՟\sաբj<գ\Zգyգ\\զ]թBթ|ժի\\լXլ\խOխծկ(կ-կ9կu\հ\ձR\ճյ@յsյ\^նջ\Dջ\տ\/\\\Th\\B\ĉZ\ƍ\\\A\\.\Р\\\F\\\\o\\\٤D\\J\\|\ݥg\\*\\2\\\\\\\\\\rv\\\Z)\\F\\\\\\\\\p\\\Z\\\\\\N\\\\\\\\\'\\<s\0	\n\B\G#\\;\\0\\3\\\N!\\\\+-\E\0\\+\#\9P\\\m\\&\\\(\\~\ p$\ _\\".\\"q\#6J\(\)j\)\S\*g\*\\\+9\+v\,X\.\\\.\^\1T\4i\\4\u\67,\6\\:s\<SN\= \=\0\=J\>\?+\?\\B\w\B\\\C\\D\\\E\I\\\Iܽ\I\\\L\MO\Mz\M\\\P(\RI\T2\T\V0\\V\\Y\\[\\\K\\\\^\\_\_\g.\h։\j\m\\\p5{\v\\w\M\{)\|ME\|t\}\?\hրVրZւ\\ֆMֆƔև\\։֌\֍\A֐D֐l֑X֑\'֑֒W\֒vt֒Z֓&֓G\֓\֖ъ֛\֛n<֜\֢\p֦֦Ĩ֧֧Ns֨\\֩$֩(֬RS֭T֯Buֱֱ\ֵR7ֵ\ֶֹ3\'ֺ\ֻhֻ\\T\\\^\\a\\|\\\Ԝ\\\\I:\\ge\͎\\Wh\\1\\2\\\\\\\\\ծ\ձ\\\ط\\c%\\o\\P\\݇\\\ō\\\L\\\\\:\\q\\l\\\m\\\\\\\\\\\\\\\\\\\\:\\\\s\\\\\\\\\\\\\\\\L\\q\\\\\\Z\\\\\)\ A\j\\\\\\nY\\KH\\V\C3\\0E\&\H\\\v\(\\\\\\\\\\#\!\\[\\\\U\\\ZVD\\Zo1\2\J@\\\ b\ \L\\"\nJ\\"\$\\$$\%y\\&A\&\\\\'u\(\\\*+\\+\Z\\+Jg\-ec\-\\/G\\/c\2\5	\\5\\5I\7,k\;M\;\\;\6\<\\>Cl\@K\@\\\BV\B\\r\CXg\F^\Kϲ\K\s\K\Mn\M\h\N\\\OQ\P\\P\\Q[~\R\r\R\Rv\S\T\\Tp\U\\U\U\W\W\\WG\Y\\Z\\[b\[\[b\\\\A\_\`b\ag\d\\e/Q\e\\\f\\f\G\hV\i\iA\jI\j\\l\\m\'\n0.\q8g\rM\rhV\r\\\s/\u\'\w\\yb	\yh\z\`\z\\z\\{\{\\}\\\\\׀p׀\Gׁׁ\~ׂ\׃͏ׄVׄ\\׆F׆׈\0׈\'׈{׉\"X׋Q\׋\׌	׏\א\Z,א\Kד4\ד\\וnזזPLח\tטRי7\לם\>מk=נM\rנ\1פץG%רש@ת2ת\׬N\\׬W׭K׮\׮\ׯׯ@ױv7ײ\\׳\&״>׵;0׷J(׷fc׷t7׷׹׺\׺׽y׿I\\\\\\\N\\{c\\\o\\\\n\\\\\\M\\\\\\3\\J\\u\Ύ|\ѕ\\P\\:@\ղf\֯\\ح%\ك\ِ]\ܵB\\S\n\ހ\Z\\̓\\6V\\X\\\so\\r{\\1\\\\\\\\\ \\.\\d\\A~\\\w\\}\X\u\A\\\b\\\\b\tm\	\\	\\\nH\\ne\\5\\\x\j\l\\\\F\^\7\\\35\M\\Zܠ\[\e\ \ \\\\"R\Z\\"7\#G\$\%4R\%E\%\\\'B}\(\g\)\\*\\*\+K\,\.)C\/}\0Gv\0U\\2#X\4W\\5W:\6\\\7\7Q\8\0\9\9\9\v\;M]\;zU\>K\\?/\?\A\\C\\C4e\C}\E\\E\Fn\F\\\K\K$\\Q`\\Q\U\\X\8\Zt\ZZ\Z\\Z\+\]\\^N\^\\_\c!\\c\d\\\e\U\h$\h2\mj\\o\o,\o\>\q.\qz\t#\\t|\u׬\u\\v\\v\\\y\}sD\o\h؄)؄˔؅Z\؅\؊#N؊\؋\'\؋A؎؏#ؐmtؔLؖsؚE\rؚ؟l\ءrأ\ئ^ا8NبCIب\3بaة!uةت9\تx دN\د\ز\[طBطvظ\ع\*غػ6ػV<ػ\ؽa\ؾ4\\\i\\\D@\Ø\\\\\\\\\\\Ņk\\\\\\n~\\i\\\\\\.\\1\\\\\\\\u\\\\]C\\~\ԏd\\w\\K\\\<\'\ߡW\\\\\R\\5.\\c\\\\\\\\\\a\\\\\\\\\\\[ \	B\C\\\\c\ջ\j\\\\\0ը\N\\rk\\\G\	\	\\r;\W*\\\\@\\\\\f\\-\ i\ \\%\Q\&\(\(\?\)K^\,\.\@\/>\2\4\1\5\	\6\\7IF\8\9\;,A\;3\<!\\<V\>A\?\\@\\A\Ae\\D6:\D\E=\Er\F\G]P\Ga\I\'\KG\K\\L\\MF\\N\q\N\&\P[\Q\\R`\R\R\b\S\p\T~\Wi\W\\X\\Y\\Z*\\Zpg\[r\[\^vN\^\\c\n\c`\\d\\dY\f_\k%\lP\lI\pB\rW\\r\\sF\xϋ\x\v\yq\{d\{6\|)\gKقTBل~\م\Yن\نeن\وو\\ًtٌ6\َُ`ُِ0@ّBٔ\n=ٔMٔ\Lٖٖٗ٘\:ٛ\ٜtٝ٠\u٠\١^M٢g٣٥G\"٦\٩gl٫#]٬n٬j٬٭zٯ\xٰ*ٱݸٲ\ٳ9ٵX{ٶv{ٷ\ٸ\ٹdfټټ[پH\پ\ٿ IٿnٿU\\w\\\`\\\\\ƾ&\\h\\\]\\\\\\\\\Z\ԋ\\\\\\\|\\g\\q\\ܴ\\=|\\ׄ\\h\\\N\\F\얌\\O\\\\\}\\\\3\\\\\\\[\\\\l\θ\\\?\\\@\l\\\0\\0P\׵\\\\\@\A\\r\i+\\\\\\\\e\k\\\\[\D\\\7\Ѳ\\Z\\0\+t\q\n\ \>\&wa\\'(%\(\)\*#\\/c\0\1\\3\\3V}\5\8<\9A\\:o\:w\;p\<D\\<z4\<\=b\>\>c)\?u\APc\BQ\BE\Et\E\Fy\G\0\G\\J\Li\\L\L\\N\O\\PWR\S\\\Va\Y1\Z$J\]C\\]W\\]ˊ\`\'\`k\a\a\\\cqw\cn\dI\e\\gX\h\h\ii\i\k\k\\lc\l~\m$\\r\r\rG\w\?\yr\y\\ỹ\{p\\{\\ځkځzڃw\\ڃ\xڃ\ڄ\hڅ*PڈqqڈډڋTڋޮڌL^ڏl~ڒt	ړ6\ڕDڕZ.ږg_ږ<ڗ7iڛ\\ڞ#ڟpڠK\ڣ\rڣ_\ڥڦaڧTdکګڭC\ڭgڮ\گ\گ\\ڰj\ڱ{\ڱ0ڱ\kڲKڷڸڹqڹ\0ڹ\6ں]ڽ\ڿ7~\-\\9\fs\þ\\\\\\\\\M\\ɤ\\\V\\ʇ\\\6\̛\\\\خ\\\\\к\'\ӂ\0\\\\ԩ\׭\\f\\Ҩ\\[\\f\\\\\Y5\\Ï\\de\޻\\\\8\\\\\ϔ\\\\\y\\5\\\\\\\\\\\\\s\\v\\\n~\\L\\S\\\\\\\a\\I\\\\\\\\\T\\\\\j\H\\\\#w\#\\\3\Ve\\\\E\\0\\\o\o\\\O\	\\,\	\	@\\\n\\\\I\\r\"\\\rb~\:6\\\\\7\v\\	~\)\M_\}\\\z\\h\\\\Z\ \]\\\"݇\#\\$\\$\\%\\&<\n\\'f\0\1\\\1~\\5V\8v\9\\\A\Z\A&J\A1\A\A\Beq\C\\C\\EV\E4\E^J\E\v\F/\F\\H\\L\3\N\]\Ph\\PO\Q3\QT\R\\\V\V\g\Z%\Z\\`\f\a	\r\bY\c\\fo\\i \j\Z\\j\\\k\ka\nZ\oh\\p\qAP\r),\u\Z\\x\\ya\{d\|{\}7$\~[\ہ\Nۂ\0xۄzۅ\ۇC\ۉ\\ی\ۍۏ7ې3ۑ\ۑ\ۑ\\ےJ\ےhFےxۓ8ۖ]ۘ\ۙ6ۙvۚs-۝b۠b۠-jۢfۢV\ۢp\ۢ|ۤۥ[ۦۧZۨJ\۬:ۭ!\ۮTۮ\\ۯGt۰۱$۱fF۳\\۴۵)\۶۸\۹zgۺ\\ۻ<\۽p\\k\\p\\\a\\M-\\RI\\0y\\\I\\\\\\H\\u\ҧh\ӥ\Լs\\{8\\\\\V\\\	\\\'\\ڛ\۷U\\J\\Ę\\\\޷\\3\\\\{\\r\\\\\H\\\]\\\\ꢂ\\ʑ\\\Q\\$\\\\\\/\\KQ\\d\\\\0\h\y\\\\\\\0>\\\\\\\\"c\.0\\\\p\\\	z\\nPp\\r7\\\r\\G\:\a\\\3\\)\s\"\ށ\\Z`[\\Z\T\\"\q\4\\\"E\+8\.h\/_\15f\2!\2f9\4%\4\8+\:..\:\\\<\\>\\\>\?\\?\A\B\\C\\C\\D)\E7Y\E\F[:\Hv\I\\\KE\K\\L\Q\N\Nd\N\\P\\RHR\S.\VP\W\\WW!\Xn\\Y\\\]\^ff\`\'\b0\eD\e*\e\o\fX\\g\jG\m\\m\'*\m\\n\\om\oŻ\t\u.J\u\vo)\v\v\w+\}\\~܀/܀\Z܂Z܄o܅?܅\܈F܈;܌u:܌܌\\܎܏\pܐFܑ\ܑ\ܒ_ܓ_tܔm~ܛ׸ܜ~ܜ\$ܝ ܝ\ܠܠܡ\\'ܢO ܢܢ\EܤTܤ\n\ܤܥ\\ܧ=ܩ\"\ܰ\\0ܱܲeܴܲ{ܵ\n/ܵ\"\ܵ\\\ܶuܷ\ܸ\0{ܸܹ:Oܺ]ܺܺ\Eܻ:\ܻdܼĖܽů\	\v\%\\:\\\\\j\\ÀK\\5\\އ\\\Z\\n\\Mg\\\˶\\6\\\[\ҿ\\\h?\ԉ\\\0H\\f|\\\V\\\ٜs\ٟ\\\M\\\\\\r{\ݸ\\\9\\2\\$\\\\\\\3\\_f\\\Z\\f{\\X\\\\\\\(\\\i?\\\]\\!\\h\\\\[\\\\\no\\K\'\@\@g\N\\\\\0\\\\\\\\\i\\nF\\r$\)\\"\\"\\\\\B\\!\r\\Z&\\Z\\\m\\\\҇\4\ \[\!\\\#`\\#r\$/<\%*\&3\&\\'T\\'tx\(;\)!\\)^l\,\\1X\\3S\7&\\:#\:$\;\Q\;\\<*\=\\=\\=\W\>F\\?\0|\@&f\A8\\Bt\EŰ\G/d\Hh\I\\M\\M\\N\N\P<\P\y\SH\S\T\\\U\U\\V}\W\\X\\Z]\\\C\\\kP\]\\`\dҨ\g;\hH\k\P\mPY\o\\q8b\q\r\u\v\\wy\x54\{\{B\|&?\}\~&\~@\~\4\~\(݀R݂f݅ r݅4\݆{݆n݆/݆\]݈ސ݉\݊Z݌\ݍݎB%ݎNݎƁݐ\'ݐݓ]ݓ\ݔݕd\ݖݘ\ݙkݙ\ݚnݛ\ݛ\&ݜ\ݞݞ}ݞ\@ݠ#\ݡt\ݢ\lݣqݨ\ݬ\bݬ\ݮ\{ݱIݱ2ݳ2ݳݷFݺ\qݼݾRݿ>I\e0\3\\\+L\\Dw\\\Z#\\\N\\r\\\.\ʛ\\[\̾\\\\\\\r\\\\\H\\\\w\\%\\,\\\:\҄\\\Y\\\\\P\Ջ$\\0\\|%\\N-\\+\\\Z\\7\\\\d\\\\\\\\?x\\2\\\%\묺\\̫\\\\\\1\\_\'\\b\\\Y\L\a\\\\\0\`a\\\\\\<\D}\	\\\\n0\\n\0\/\j\\\5\0\\\\\g\K\\\v\)(\#\#\\\%\|\&\w\\'\);\\\)o\)҄\+x;\-\/\0E\2\2\3+}\3s\\40\\4|\\5\\7|\:\<=\@\\AZ(\Fy\G\6\H<\I\0\J\\J\e\K.\\Kr\Lq\L\0\OO\O)\\P \R\\S\p\S\\T\T\Tɜ\WF\X5f\Xj\YG\Y܍\Z\W\]T\^\\`\a> \e\f\g\\i[\i\\k\n\m\h\o\'\oH\\p܈\syY\sA\z{\\zy\z\8\{7\|\\|M\~):\~\ހ-\ނ8ޅ)\އ\މyMފ\ފދތ\"ގ6<ގ+ޏ%iޑnޑpޕޘޜQ=ޞ#ޞ\ޞ\ޡFyޣDޤYGަ3ާ\Z\ު!\ުh ުƮޫޫޫެ!Iެޭ}!ޭ\ޯ|eް^ް)ް[ޱo޳/޴\S޷޷ź޸Rp޸b޹XC޹޻O\޻޽O\޾޿G޿^l޿kL޿\\\v\Z\ʛ\\\\\)\\\\\\{e\ɚ\\T\\R\0\\h[\\\\\U\\:\\a\\6]\\9R\\d2\\\\\Ҳa\\D\\m\\f>\ڧ\\T1\\\\\\,C\\b\\m\\\\Zl\\f\\	\\\\ƶ\\\\\3:\\\\0\\\s\\\\\\9\\}\\l-\1\3w\\\Z3\\\\\:\\\\X\Y\"\\\8\\0\\\G\\\n\/\\Z\I\\r\\\\e\jU\{0\\X\]\z\\\J\nA\\\Z\(M\j\\#j\$\\&[\\&\\&\T\(|\)\\*\\.\S\1<\4B\\5%\5[1\7\\<GQ\<\f\>U\>Wq\?\\?<\Ae\A~\A\j\CI\C\\Eb\E\\F\I\I\I+Z\I}v\Kw\O\O^\R({\RÐ\Sg\SL\S\W\XH\\ZF<\ZQ\Zw\\\\]&\^\`C\b9q\crO\c\\d?\d\:\e\;\e\\e\f!<\f\\g\g\|\h!\h\\\jx\j\\k_\\m|,\m\o\pŲ\qt~\s{\t\r\v_\v\\w+C\w\zq\|\}\\\~&Q\~r\~\\~м\\\߀S\߁1߅߅Գ߇3߈\߉E,ߊVߋ)ߍkߎ_~ߎfBߓ+ߕ$ߕiߖ\\'ߗqߘ\iߘ:ߜ\ߢ:\ߥqߥ?ߧ$ߪbPߪp߬SR߮k+߯My߯P߰-~߰ʈ߱6*߱n߲߲\$߳Pߴ	<ߵ_@߶S߷]߸\߹%6ߺ;߼\.߾,߿<\Ĉ\\\r^\\¹T\\n\\\0U\\,.\\\y\\1\\\Y\\P\\\k\\\˜\\̃\\#\\\\2\\|\\@\\\&\\rf\\\S\\>\\\r\\ڀI\ڝ\ڶ\Z\\2s\\p\\2^\݋\\\\\\{\\\\\\g\\\\\\\Z\\I\\\\nU\\\\m\\4\\\t\\\\\\\\\\\\\t\\\\\D\\\%\\r\\7\\6.\\%\\\Z\\\\o\rB\/\@\	i\\r\\\+4\:S\\\\\)}\\n\\\.\	\\I\\\\\\ \0=\!@\\!Z\!\\!\\"MP\\"$\%Z\%:\&J\&}\&\\'t.\\'\(A\)\*0\+\\+\\0\\\1\2G\\3\6\\8&|\81/\9\9@\99\<|\=#\A7\\D\\GR-\HZs\M\\\P\PN\QHr\Q\R~\\V\Wk\X\\Yӫ\Z\]G\'\_\n\_5U\`P\\`\a\b~\d\d\\e>\\e\\hk\\iq\j+\"\pM\qn\sc\w\wC\yb\y\W\z2\|Vg\}/\~7\_\\\\"\\(\\\\\o\\Z\\\\\u\MW\\\\0\\\\\*j\\|\!\\\3\61\}\\\t\\{\$\K\\\ť\z\\:\\টশ\0৻\\\q\\\2\ತ^\c ೠ\\\OຶU\+\G*\\\BN\\\C\\\@\\3\\ʠ\\\\Җw\\-=\֢0\\\V\\~\\`H\\o\\\\ܠ5\\\\\\\\m\\#\0\\:\\\\}\\\\\\\Â\\\\\\\\\\\\t\\\\\\\\\\\\t%\\\\fy\\\\\DM\\0\\\3\'\-\	\\\b\\\\\r\\\\\U\	\~\\\\\e\\\\\@[\\Z?\\*\!\\"\%	\%E\\%i\%\&b\\'*\(\\\)\\\*\*ܶ\+;\-\\\.)O\/#\0K\0\0\\\1\\3\\3\\4̦\7b\:\r\\;D\<=\=J\\?n\\?\?\@\A\k\Cz\D\H\FD\G\\J4\L.\\P0\\SR<\UV\UX\U\\WZ\\W\W3\Xq\X\l\Zv\[7\[\m\\\e\]\_\\cY\d\\\e\e\\f\3\gi\\hd\h{\i\\i\G\jT\\k5|\k٢\l%\l\\o\\\\r\u\wh\\wv\\w\\\w\\x\\y6\\y=\\y\\z\G\}J\\~\\\\\\)\N\\\U\\/\\,\z\7\_\>\=\E`ᔣ\\\\\і\\Mᙿ\mA\x\\\\\@\\\\B-\ɭ\\\\\ B\c\{ᴣC\\᷌\.t\\\eO\c\\\}\\\6\\^d\\B\\\\\\o\\\\ڀ\\\\\??\\b\\|\Й-\і$\\݆\Ґ\\\\M\\\\4\ى\ٱ\\\Ԗ\\Z\\{\\$\\/\\(^\\\\a\\B\\b\\\\\\\\\R\\\|\\\\\\\\\5\\#j\\4\\\\\\\\*\\F\\\\\kz\\Q\[b\}\p@\\&\\\V\5\\0<\\2\\\\\\\\')\Ղ\-\\nr1\H\G\\\&\0\f\\\&\G\\\\8\\۫\\\\\\\!\"5\#\'d\#F\$-+\$\%o\\'\\'«\+z\-j\.D\.V\.\c\/j\/\/\:\/Ң\1e\1\2\2A\6`\7%\7\\8d\<\Z\>\\?@\B\BX\C\!\DU\E?\\E\Fl\\Gi\H\H\m\IN\Iy\\JX\J:Z\KY\\Ks\Ks\M\PG9\U\W\[1-\[A/\\\\\\\\o\]\\\`+\\ai\b\c\\eC\et\f\g\h:h\j\L\l_\\n$\p\r\{\t}\"\u \v16\wŢ\x<\z\{\\	u\-\\ZP\\Z\?\\\\@\\\\J\ \Vc\(8\>⑗5\=\}Ⓜ\▿\\L\+4☇K♜\M_\z`⣠*\z$\W\|⨶\\4\y}\|\\_\\\\R<\\hⳃ<⳯\\\\wⵑ\\\ \K⼆n\\\7\\\H\\\\\\\\\y\\\\\ɜ\\ٹ\\v8\\\\\\\J\\\\V\\Y\\\\,N\\\\\\D\\\0\\!\\\\\\\\\\\\\\\\\\E\\:g\\\\\\nj\\\ \\\d\\\\\\\\\N=\\A\K\]\\*c\\\B\U\\\\\4\\\0~\\\N\\\4\!\	!\\n\n\\n/\\:H\\#\\rnn\\5\\Y\\m\E\\\\n\\\\\h\]\G\$3\$D\&Z\);-\._\/\1\\2Ɗ\4I\\5I\9\L\9\`\;\\<8\<\\>R4\@J\BE0\B\\\B\o\B\Cd\\D+\D\FCs\G\GJ\H\J۩\Kr=\K\K3\R\X\Yb\Y\\[ \[x\]\^!w\^\8\_!\aH\\b0\b)Y\czZ\d+\\eG#\eة\gΏ\h\i\\jN\kp\k\l\mI\\p<\r\t\o\t\b\u*\v-q\v4\w!\x1\\x9(\z̈́\{A\}H\ス\\\,\{eㆫ\\@^\k㌞\_\J\\\Y㖄&\G\X;\ެ\F\㢙7\l\\\[\\&\\\\㧻\/&\V)㫹\\\\6k\\N\\㳍\\R\\d\m\\\ÿ\\\S\\Ȯ\\\\\\\\\f\\\\_\\\4\\z0\\\#\\\\Қ\\ԏS\\o\׹\\q\\\\\\r\\\\\GO\\\\\\#>\\)\\\\\\\74\\]\\h\\\\\\x\\\\m\\\P\\0\\!\\8\\h\\\\\\\\\<\\\\j\_\\e\L\\0\\i\7;\DB\i\\0f\\0\u\\Q\\\(\\*\ۊ\	\R\	\\\n\8\I\L\\\\/\(Y\\\=\m\\\Z~w\%_Q\%e\&i\)\\**\*\"p\*x\\+\s\/5\\0m\1K\5\6	\7\r\Z\8Ο\<\'\<5.\=\?\\\BQ\B\V\D\\\EH\\\F	\I\d\J\n\J)o\J:\K,\N9\O\\O\\PC\\Q,6\Rq\\R$\S06\S4\S	\T\\V(i\WV\Y\[V\[8\[)B\\\EQ\\\\\^\Y\^\\`\r\\`Aq\`YI\a8\a@\a\\c\d\0\d:\\g*\i\lO$\l\P\mb\m4\n\V\ps\\r\sRJ\saJ\y\}i\a\V\\i\\D\y\+<䇦p\*2\k!\5-\+\\Z\\u䏌?䑣r䑳\\)Z䕸\\o\xH䘀䘣+\\\0\\\@\\R\\Z\\䡪\\䨛p\B\u\Ԏ\S\W䰜\\\t\R䳏\՘\m\\W\\U\q\\Ŋ乡估	\\Ë\ǳ \\_\\ƿ\\E\\\d\\\N\\r\\\X\\ҶQ\\\\\\\\\\,\܋u\\\\\\\\ޛ7\\\\k~\\C\\\\\\5\\4\\\\.\\.\\Y!\\tL\ꌟ\\o\\\\3\\	\\=!\\B\\%\\vT\\\:\\\\\¸\\\\\\\\\\\\Ϩ\\\0\v\\\\\\#\,\\\\\P\Z\\0\e\}\\\\\A\\	\s\	\\\nx\\\\r^\W\_\\\\\DE\J,\˓\K\\\Z;\,\Fa\\\\W\ע\1\\\\ k\ p\!E\#\#}\$	X\$\%h\(O\*\\-S\.\\/G\/\\/\_\1/\2h\4Z\4	\7[\8w\8\:l\<1u\=v\@\\@\\Bh9\C%8\C\\DMR\G:\K_\0\L\My\M}\N\QG4\Qi<\Sw\\W(\X\#\X\_\Y\\\6s\\\\^\\`\\\aO\'\b(;\eB\eQ\g(v\g5\h\?\i\\\l\nAC\o.\uR:\v\\wVD\w\5\x\0\\{\Z\{,z\{k\|\i`\\\\,N\/\G儹\r兣5\\\\\n\\0\~\t\+\?\\K\\\噍\嚿M\\\\\\\rW\]\~\\\堼\\&5\X\p\R\d!\\s\H\\c\\\\M\\G\R\\M\\ro\w/层\XE峄\\\n\\FI\p巀&\\\\T%\\0\z廐廨\C\u彩f\/,\P*\N快 忭\\,n\\@t\\]\Î\\\\\\ƞZ\\m\ǀr\ǰq\\M\\fZ\Ѷd\\\\\\{>\ӽ\Z\\@s\Վ\ի-\\\\ץJ\\\\\\y\\\o\\\\\\@0\\\\\\\\\\\	(\\=\\y\\=\\\N\\p\\\\\\A\\a\\\\\[\\N\\\u\\)\\\\VO\\\\]\ک\7{\rH\o\u7\R\\\\1\\\}Y\\\\\`\s\	\\\l\\U\\ʊ\T\\\\\\\"\\NN\\\\\'\G\\!\\"\\"Ϗ\%,	\\'>\+G\,a\-\/\\\2\\3y\4G\4Q\7Ӊ\8\nT\8|\:\:\*\<=\>E\?S\?ɻ\?\9\@<\A\0~\AS\D%\F\\H,\\H\\I\J\"%\J:\Jl\\K0\L\M%x\M\\N\Z\NI\Ol\Q\QQ\\Q\T\\UKt\U9\ZC\Z\	\[3\[n\a\\a0\b\Z\bĞ\c^\cK\d5\g\\h<\i\k\\m\0\n\o\n\ol\\qY\\q\"\rD\r\\\r{\s?\t;\tQ\\t\\v\we\w\x\\|e\\~\\\\\,\,惉\惶\̉\v\~\	\KY懺9\\K扱\F\\拥F\\\\\\攨攩\#\\c\ߩ\\\\\\|\W枭\\z\d\\pN\ю\4\U殀*\6\Ka洂\3浐d淐C\J\r渠l\\\\\\!I\j\\Ԩ\Hs\\\V\\\\\84\\C8\\\\\\z\\ɀ\ɝ\\\\\\\>&\\c\\q\ҏF\\j\\*#\\F \ܣ\\4\ݖ\\\\߬G\\\\\v\\\o\\A\\\<\\I\\\\\\L\\\\\\\\\)\\p\\\\\}\\\@\T\L\o\ \\\\Q\\\\0e\\\2\-n\1\	\x\\nX\\nZ\t+\\\\r\\\rݟ\\r\E\\\H\\\\m\\\A\/`\\'\M\\Z\	.\\x\ \ ȃ\!݁\#-Q\&\\&\\+\"\,\-7\.X\.}\/<\3\\5[\\8U\\9\9\\:i\\;\&\<\\=\>\\?v\A8\A\\Ct\DO\\D\\EEN\E\\F\\H\\H(c\H:\\J\0\L4Y\M2\MmS\P\\Rh\R\Sb\U\\U\\\W\s\YMu\Y\\Zu\\\<\_+\c\c\j\d\f1q\fj\\h\\ix\i\i\\jl\\kw\\n=\op\\qOo\r}%\s%\s.\t{\r\t\\v\w!p\w@y\w\\x\n	\x\z\F\z\P\{\{\A\JW\Lq\M\\3\}\r\\K\{獣\u:\\4\	=\\m\\X\-\*\\\\癥\k\%\Z砂砃\\!\碹b\\\G\磐4\Q+\\\N\7竣\笉\\\;\,\\\5e\\\p羥~翈W翉\\+\\h\\\\\3\Ȟi\\D$\\>T\\X\\D\Ҫ<\\\\\\\\\Oh\\\\_L\פM\\\\\\\᰼\\z\\E\\\\\\\\\4\\E\\2\\\\\\.u\\Q\\+\\M\\4\\j\\\\\\\l\bU\\r\\\07\Ϥ\m\\\\\\\\\\\ə\Kd\\\\\w\|\\uh\\\O\\\Vm\\$\7k\\S\$\\\\Z3\\\\\=\,{\ H\!\8\\"I_\\"y\\'\\(S\)\\*C\-&o\.|\.\/\\'\0d\\09\0\3\3{\67\\8d\8.\8E\\8\9\:\\\:\\0\;g\;\\;)\<_\>c\?X\A\e\Cz\D\f\Ed\G(\G\\\Il\\Kt\\O&\O<-\PK\Pt\Q/\QO\R\\V8\V\D\W^-\X\0\^\\_w|\_\_\a\\b\c\\diF\e\\hS\i5s\jl\ke\ksr\l\q\l˒\n5\q,\r\r\\tw\u\vU\v\v\\v\\w\\|+>\|\\}\}\h\~\\q\}\\'\\y,胅(胉.\\P\;\)	\\\\\r\Pq\9\M(\\\\\\\\\&\t\-螧\J,\G\\\%\{\親,\8D該\\\\\&\,\\ԭ\\Q\b赐\Z\\Đ\JI辻p\p\\\'\\V\\\\\o_\\\:\\\\\\\\Pr\ִ\\״2\\^\\\\2\\\=\\\k\\	\\\ܷc\\Il\\b\\ޛ\\\2\\)\\.\\\b\\kQ\\h\\;\\D\\\\\\\ o\\\I\\\\u`\\\\\\\\\\\\r\\̮\\\\횏\\\\\\\\\\\\\\\L\\Z\_\\0\\\[\\j_\5\G\e\\0\\E\/\\ov\\\\\,\\@\\\	q\\nXN\\\C\\P\>\\\\\Au\\\\\C\\Zdb\|\ \ \\!a2\!\\!\\\\"x\)A\*O\\*QW\+F+\+\i\+9\.L\2\n\3L\\6\68U\6P\6r\r\6Q\7}8\7\\8\\:OH\;N\;\\<-\<q9\<\\>\\@\\@۴\AΘ\B0\B\\C?l\C\\Ey\\G\\G}\G\\I4\\J\\Lל\M)\NS\O)\P\0\\Q\\R\\R/J\T\U\\V8\X_\YTY\Z\\a;\aA\\b@S\bq\b\c\dB\h2:\i\\jS\k\p\qz\\q\r~\s\'X\u[L\w\\y:\\yK\y\#\|\\~Vz逵\u\\\\\0\\\\ 醺釮\\"|\\銕E\\/\|\\A\\Ec\1>鏻o\j\\\$\0\\\\d\k\^靝\\\rQ鞒%鞭\\ؙ\\p\\\wb\\\\\p\SP\]\\j5騘G\RW\m.\S\\\\FR鰅\\׉\=\^!鵝\\\/\\\bD\c\\7\r\~W鸛\Ɏ\麚\\Z\\\\7\?齉\\\\le\\\\\>N\\\\\\\\ͺ\\\G\\\Fy\\D\\w\Կ\\\\Y\\\`\\;\\\ە\\\\\\\\\\\\\\\%\\ma\\\@\\SU\\\\f\\\\\f=\\h\\ƿ\\\0\\?\\\\\\\'\\\R\\\\\\\\u!\\@\\\\\\\_8\\\{\\\\\\09\m\]h\\6\*\1\\Q\\\\\\	\'\\r<\Q\\>\\\;*\>\\Z\\\x\ \!\#\#\&S\&\(\[\)\)\\+\\+\\-y\-e\-\D\.t\/\\\3\\3\3\\4mC\5k\5\5\6F\9\\:\\\;U\;\\=\>A\?\@\"\A/\C\E\0\HŇ\Ix\JVa\L\\Lݍ\M\5\O*\O\\P\Q\T\\X~\\ZUJ\\\ \\\\,\\\\9\\\\\\\\\]t\]|\`.\`Y\`ޓ\c\B\d\b\e\\ei\ew\gl\g\\it\k1\kK\\l\\mZ\q\u\\wTM\x%\}x\}\}\\\}\\\\\\=w\\\\Y\G\;ꅇ\\p\E\\\a\-\\\Bꍧ\	:ꏂꏆ\N\rꑽ\\S\ꔓc\T6\OC\Kꘘ\|\d\\Ꝁ\\\<\\\l꣓\6\\\p\\\QD\\\(\O\F꯬\]\	D\}\T\\[T꿜\q\ıF\\\d\\\\\ɗ\\X0\˖\\8o\\u\\\͵\\E\\d/\\+d\\\\Z\\A\؄4\\֥\\\\\\\\\b\\\>\\\\k\\\E\┿\\\\\s\\\\\\q\\\\\\\&\\N\\\\H\\v\\О\\R\\\\\\\Z\\\5\\[[\\\\\\\'\\$\\\\k\l\\\\\[\0\Im\}\\\\\B\\X\H\}/\cW\\*\{H\&\\sM\M\\\F\ [\ H\$,L\\'\\(q\*k\,nW\-\-e\2\\22\\3\3\!\4<E\5F\"\6u\82\:Aj\:P\:\\\;{\\;\\\<\<\\>5\>\?L\@5\@і\EK\Fh\F,\Gl\H\\HW$\La\MD\'\O\\Pr\\P\T\t\U@`\VRE\V}Q\V\Wp\\Y\@\\\\]\\\_\_\\`$\b\b\\c \\g%\gq\gG\is\\j;\j\\k\k%\n\`\ov\\p\\qM\rq\rO\s\k\t\\\uC\w2?\w{\{\\\|}\}X\~S\b\s\\D,\.\Ή녓\\z\>}\_\댤5\\덵#\\]\\\\8\\n뒘c\\\r\$\T\\,\뗇\\B\\\W*\w\$\'랖렅&\\\?\\W`\sp뤗\\\\jF몒q\\묰\0믏\\\\6뱋\\a\^\Z\e뺲\4\\?뾪\a\\\2\ãW\\8\\\X\\$\\j\\r\\Q\\\X\ˍ\\\V\\\u\Ͱ\\\͢\\H\\\_\ϯ|\\,\\E\\0\ҵ\\ӎ\\&g\\\}\֯\\\D\\\\\H\\\Kf\\\\ޫ\\\\\P\\\\\\E\\f\\s\\\\\\\\\i\"\\uK\\\\G-\\z^\\\>\\\\\\\\?\\O\\	\\ \+\\@\v\,A\\\K\\0J\Q\\\\\\S\\\\\\\\\S\0\\\	\\\n;n\\I\\\7\p\~\N\\{\\\\\\%\(\\\Ko\ 8\ \ \j\!H\!{\\$\\')\\\'\(b\0\)\\\*ǡ\+Iy\-Gc\.|\\/e0\/h\09\Z\2*\2\\4\\\4o\\5[\\5fo\9s:\:!\:Z\\:\'\:\+\;3\>&\>\\\C[\\C\\D\V\E\=\F\\Gq\H\K\\Lk\P\\Q`\T\\Uw\U\Uz\V>\Wc\\WB\Yѹ\Z\6\[\\\\^;\^PN\^\\__+\_j\`1\a\C\aL\b/\eK\g\\ho\h\k\l!\ml\o\\\r4\s\v\\wV\wג\x\y\x\{\'\}X\\}\p\!쁭\\\\Q\\\"\>[샮D\\:\I\ɠ\<L\^슦{\EG\C+\\đ\@\쐹\쐺\\ƹ\7\\B\\x\k%앸\\\m\UG\p\\\\*\u\\&b\U\4\Z\Š\}좁\`\+\ob\\\\쭂쭋\Hl\I#\H}\%?\\\\2\Z\Ԭ\-:켴쾈\z\\ĂF\\\	\\t\Ƣ_\\\O\\.\\}X\А?\Я\\\P\\D\\ҳ2\\\C\\\Z\\M\\!\\\\\\J:\\\\\\\\xn\\ׂ\\\\B	\\!	\\l\\i\r\\Y\\\b\\\\\\s\\l\\\\,\\oy\\E\\0\\u\\΄\\ \F\m\\0W\\#\\"\&0\a\\\n;\\\n?\b\\\\H\\\B\\\\`\\Z\`\G\\3\\Z\2\\g\ \%\%\\&ɣ\\'\(\\(}\(\\+@\+\?\,3\.a\.>\0;\0A\1\\2\r\2*\\2P\3\4={\4\t\7B\8&\\8\8\=\9\;f	\<;\>_\>\3\?\'d\@st\Aɱ\Gۛ\H\Hn\\I.\KI\\Ku;\LT\L\M\'*\MZ\N\\r\O}T\P\RC\S\T\\T\-\U\\\Vg\Y-\\\\\\\]WG\]\]8\^	\_\K\`\`p\dE\f\\\f\\\gE\\g(\g\\hӎ\k\lǫ\o\q?\rx\s\\s&\s*\sD\un\wz{\yl\zMq\|\\}Uy\}{\~\-큇d\N\id\\h\\ \G텄4\\\U%\v\틟J\g\\k[\K]\e\*\Su\\\\	F\,O\\n\\\휆%\흘\2pf\:\5D\^b\0S\\E\<\Z\\\/\S\]\\M\z\\?\.\el\\\\Ʒ\\\\\\\\\\\\k\\h<\\\Ģ\ľ-\\Ep\\\\\ƨS\\\\\Bj\\M\ʆ)\˧\\\,\\\KV\\\n\\6\ԥ\\Y\ըR\\\B\\\\\\4\\\\e\\ݟ\\\\WG\\@\\\\\+\\3\\\\\\'\\\r\\W\\L\\b\\Q\\,\\\\t\\\;\\\\R\\ \\\\\\\\\\\Ya\\\\\'\\\K\\&\\n|\\n\"\\\nI\\\Z\D\\rB\x\\	\;\2\\\*p\P\ڌ\ 62\ \!<\!\\\!\%\&\\\'\\'\\\)\0(\)*;\)9\)΋\**\*b\-\}\/t\/-\/\\\4\\7%^\7{|\;\\\?[\?\*\@\AbQ\A֯\DY\'\I0\Kj\\N?\\NJ\NOG\P\R\4\S\\TY\U\\V\'i\W:q\Y6\Z-\Z.\Z\j\[\\\\i-\\\\\\^OL\^P\^\)\_\`r\\b\\d\e	\e^\fA\go\i\\i\\\l(\m\\\n\N\oO\\oI\qc\t\\u:\uWT\u\E\u\\v\y\X\|݃\}\}ő\~.\~J\\0\NA\=\\\\\\\\\MZ\DU\T\V{\>M\S\\\\\:\(\\2\N\S\-\\^\\e\\\\\O\G0E\\p\\\\\\\\!\\\\\^2\׫\\?\\)\\-\\\\\\(\\\\\7_\\b\'\\6\\\\K\\\\\\\\n7\΄g\\\\\J\\>\r\ҊS\ҬI\\\\\h8\ӎ=\\\\\\5\\\"x\\\\0\\\\&p\ٙH\\\\ԙ\\ej\\@\\\P\\\\\\\fL\\\\\\R\\\0\\\n\\q\\\\&\\\\\/\\\;\\\\\0\\]\\\\\\\l\\0\\Y\Y`\\\'\(\oY\QA\O\\z\\!\\ry\\\K\\jt\\\\ru\v\݅\\w\\\\\Z\h\7\s	\K\\\\ \!\!\\\"xj\#p\%\\'\\\'\(w\\(\(t\(\)\\*_\+R\,/\,5\.\%\/\}\/\0\2g]\3\\4gG\5z\6i\8$}\8p	\9t\9\9\9\+\:\\\:\;\\<d7\>\\B\\B\\C+N\D\E9\G\K\K\MA)\McF\O\\P-8\WP\0\Y0\\Z]\[ʛ\[\\^S\`\\\c[\cu\h\h\\i\i\\\jC\l7^\m/u\nY\n`\"\n\\n*\o\q \\sm\t\\\v\G\w{\x\zED\z\\\{v\{\~pj\\\ \^\n\.\)\<\\\\t\>\݂\\?\2\\\\\#\\\\:\G|\\\\C4\\6\\KY\\}6\\J\\I\º\!\\\RO覆\\Y\\"+\Tﮈ\\\\\6\\)\\n_\I﵇\N;\a\h	\\h\\D\\\＼z\-`\\\\Z+\Ďy\\\S\Ŵ\Ưm\\$\\\\\\\\\\\hf\\_\\\\\\\_\\}\\\0\\\i\\r\\ф\\\\\\\\\\\gP\\;\\ڇ\\\\\#\ܿ\\W\瑸\\L\鍓\\m\\4\\~\\\\0\\\\\\\\b\\V\\#m\\\\l\\\\r\\_\\Z\\\\\\\\z\\\\\\G\\00\\0\\\0\K\\\\\\\\=\\̂\	*\	-\\n\\\!\2F\\r:\[\%\R\:\(\^\\A\+\\\\\\ =\!\#\$&\$G\$ї\$\\%\\\&P\\'{\)N\+#\,\0\.ˈ\/\\/0\0U\2F\2\\9\}\;^`\;\\<b\@\\\@r\0\Aiv\B9,\B%\C\n3\D\g\D\\F3\H&{\Ho\\J\O\P%\P\M\Q\R}X\T\U\U\^\Xʭ\X=\Y\\Y\"\Z$\Z\g\\\%\]u\]\\_\\_\a \b\cc\cq\r\h\i\\i \i\\i\c\j\d\lɞ\o\o\py\pK\\ث\\\#\\#\{\Z\\F\\\\\/\\yT\\\8\e{\s\\\b\\\u\,e\)\\m\\c\\\{\4\H\6\\\\\	\3E\3\\\\\t\I3\\3\\\R𺪔\\\\\\i\\М\\ug\ĕ\\ӿ\\\\؍\\{\\\\\S[\\Q\\\G\\\\\\9\ӕ\Ԕa\\\֏\\\ۥ\\\{\\\\\\N\ݛ]\\/\\\5\ި\\\˖\\\'\\_\\ia\\\\\{\\\\\\\\\\5\\\\j\\Z\\\`\\%\\0\r\\\0]\Z\\\]\]\w\\\r\\K\\	\\	\\\nB\\n	\.\\W<\\\?\z#\}\\\\[f\\r\3s\\~\\\*\\\\1\ \ \\!)o\!~\$*\&>\\\'\\(Ej\)C\\\)m\\)\\*@\+u\+p\,\\.\.\/\\0\0Q\03\\2,\6>\7J\8T\8s4\8\2\9?\?\?3\\@5C\@r\Al\B:\\BQ\\B\\FW\F\G\\\H׳\IB\I\JN\N\\P\Q\T=d\Tl\\U\U\U\V\V1\V\\\V\\\XQ\Zm\\\$\]\`;\`$!\cel\e7\f9~\hN\h\w\i\\n\r\\"\s%^\s\\t:\tS4\u8P\uq\v>\w\\x\yDF\y_\|9\!\_\n \v9\K\\\\\\\d\2\\\\4{\\\\\0\=+\\\\"k\4%\Sl\\v\$\Bi\\\p\\\\i3\f\\\=\K\%񯺒\\V\\\l\\MW\``\\0\0\\T\W\[\\{\\\\\\\'\\\Ĺ\\\r{\\O\\\:\αL\\b\\\t^\\x\'\\\\\\&~\ו\\+\\;\\d\\\;\\S\\*\\\\6\\\\^C\\\\\%\Z\\\\ٿ\\\\!\\\4\\u\\z\"\\VI\\`\\\\\}\\.\\ǭ\ӏ\\\8>\\Qh\UL\\i\\\L\	\\Y\	d\\rG\\\O\f\<D\Y:\X\JM\\Z\\Z\\\;\+\%\\\%\\\'\n8\\'\\)[\*\+q\'\,w\/El\2@\2ҭ\3B\5\\8\\9\7\<\2\>#\@\@7\@\K\B#\\B7>\B\\\Cn\\C\\F+\F\\G%\\I\I\\Jj\\Jw\J\\Lj\R\T\V\X}\\X\q\Y2z\[?\\\t\]\?\bjR\c8V\cگ\dA\d\@\d޻\fL\f;\h\"u\hF\\i?{\iW\"\p\\q`\q\\q\~\u^\u\v;\w\'\yn\z\|G\\}\D\~\Z\\\n\dd\2\\I\e0\D\\,\\|\\\\+\\m\\r$\\\\\\`\u\\\\\\\\\b\\\\(\\&\\w\:c\\\\S\3\\\\\\	\I\Ύ\ \\\r\\4\\0\\\.\\\򺺱\\-\l\2\\e\\\\\@X\\vX\Ǟ$\\\n9\\\\>\\\y.\\\\\A\\`\\\v\\C=\\1=\\F\\e\ԃ\\\\\\\\\\\l2\\l\\:\\aF\\\U\\$\\O0\陕\\\\\\\\9\\\\K\\\\\\Uo\\:\\yN\\\E\\\\\\\\i\\\\\\"\P,\\\F\\\\\\\\c\'\\\fd\\m\\\o\\ES\.\\\\H\\6E\j\-\ \\']\(\*\,\,=\\-Z\0E\1^j\1~?\1\1\Q\5\m\6\\7G\93\\9\	\:Z\;\\=?i\?K\?A\?~\?\]\@S!\A\B\F\\G]\H\H\3\H\\\J\J\L\l\N\ZX\Olh\O\\P\S\#\S\\TmK\U\Z,\V\Wl\\Y6\\YH\\Y\\\ZN\]\_\_\\_\\\`\a-\a`\b!\d!\eS\e{\e\=\fV\f[\f\o\j\\\o\r\o\\\p/\q8{\r\\w\\\z߀\|6\\}h\\a\\\?s\\[\X\k\0X\;$󈨮\\K\e\\W\\\\\\\\\"\U\\\u$\q\=w\\󖾏\@\\\\\\E\\O\ޕ\>\=\ޢ\\)\w\G\+\r\@\щ\\@}\1B\8\\T\\U\D\\J\\󸺢\\&\\9\\k\\&+\\\\\\8\\\E7\\c\\\\\\\\\\S\\\ϼ\\\J\͚~\\K2\\k\\p)\\̗\\Rj\\W\\l\ژ\\\V\\\1\\e\ݰ\\\\\"\\\\\䓰\螝\\.\\\-:\\2C\\{\\B\\\\\L\\\\\\[\\\u\\\\\\\đ\)	\ww\\\\\\\8\	*\j\\\\:\l\\\\2\\\r\\k\9\1\\Z\\+\m\\Zj\4P\3C\\1\#O\+\\\+\,8\,t-\.Fj\/R\/\2\38\3\\5\\6\\:C\;\n \<\N\DV\Dx\E\\\N	\PZt\QE\S/\SA\S\\Tv\V\\W^\XS\YrC\[\\Z\]$\]3\a\\\cζ\d\\\fH\g\\j\\k/\"\k\\\n\n\\p\3\p\\\qH:\qsl\q1\q\\r|\r\\sp\su\tۤ\xk2\y\\}\Z\\B\Y\_p\ߢ\r*\\\􉮫\\\\(\$\]\\3\?\\\r\\\Ǧ\\\\D\\\\\\\\I#\O\(\>v\ϴ\N\h\>?\\'\\{\\\\^\T\F\3\\\y\o\M\\*g\E\\\\q\I\\\\,I\@\	\\S\-\Y\\^\\\\\\#b\\\d\ʷB\\O\\2o\\\/\\\"\\%\\\e\\k\\m\\\\܆\\cO\\Gd\൙\\\-\\\\\\K\\\y\\\~\\\F_\\\\\,\\\\E\7\\\\\D\\\{\\Q\\0\\\_%\\rk\	\\	\\\K\\\PB\9@\\R\\S\}\a\5\\\!\t\"\ \!T\\"{\%\\\)$\\,\.qu\/\]\1\\2<\2\\'\3c6\3p|\3Y\6\\8\\\9\;\\\<\?\nA\A:\AO\B\0\D3.\Ek\G{\I=8\O4\PK\Q\\Rx\RǗ\S\)\S\\\Wt\\W\\Xw\\X\\Z^\\a\bN\c\3\d^\\d\f@\g\i\\k\\m\\m\n~\pO\\s\[\u\w\\xB5\xe\zV\~g\~\C\%N\}\9)\O\V\\\N\\Z\k\n\E=\\~\[\8\\\?\\\\\vz\t\\\\\\\\\\n\\\>\\\\F\Z\7\\\\\\0\\\\t\\\xl\\\\\\\\\l<\\#\Č\\P\\Z\Ҽ,\\\ե.\\\\\\/\۝\\\D\\\\\?i\\$\\\\\\}\\=0\\Q\\mx\\\\\\\\$\\c`\\]\\\\\\\\\\3\\\m\\-\0\-y\\A\?\\\/w\e\%j\׽\\\\\\\0\\G\m\\\\+\\\\\\}k\!s\$+\\&\\\\'x\\'\]\)\\*\r\\,\1K\1y\3\\'\53\6\\\8\@\:\)\;\k\=\\?AS\A\`\C\G\~\I5\J;\\M$8\NZ\O\n\P	N\Q\R\TdV\UJ\V\-\X\\\R\\_p\`K7\`\\a\\b\n\b\:\e^9\g8\gr\j\\\kfV\l\lB\mBG\m\nS\nM\n(\p\rh\r\so\t\uiG\u\wx\xI\yQ\z\'[\{\\|\Z\r\\m/\\M-\\#\\n\\\\\\.\.u\kr\0\U\\w\\I\\\n\\~\7\\\\\\|\^\%\x\\\\0\\\<\H\D\rv\\\\\\p.\ma\\\n\Q\mS\߰\7|\n.\Z\r\-\\\~\9f\\B\\\\1}\\\\I\\k\\S\v\\\\\\Y(\\A\\@\\\t8\˹\\\0\\\\P\бs\ѵh\\a\\\\ص\\\\Z\ٜk\٩\ڋG\ۏ\\+\\r\\$\\\].\\\\\\\g\\\\\t6\\D\\ê\闤\\\\\\\\\\\\\\\\\\4\\5\\\\'\\\\\\g!\l\6\\I\\F\\\^!\\r\\n(\\n_R\\\\\\H\\\r\\|\4\y\Q\\c9\\x\\'\\\\\\\!l\\!q^\!\\"\\\#fj\#\\%\n\%,\\&+i\(ye\)\\*$\+\\,l&\,s\-c\-;\/C\1\\5\5\\6\\7\f\8r\;md\;\?\\@H\@\\A\\\Bź\D!\D#\\E\F\\I?K\IJ\I\\LL\M\\N\q\Q:\S\Q\T[\U\U\]rH\]{\\^U\\^\8\_\\`\U\`b\a\" \a\\b>n\bi\b\b\ei\\eq\h\o\i\\m\nԚ\o\\pd\r\\\vBk\v\\xg\x\\y\r\{\{\~\\\\[\\\\\\rB\\\\\\:\\aw\\ym\\	\a\\\#\b\\g\?\\J\\\\\\\ފ\x\n@\v\B\\R\\\u\\0\\C\\\\\\\q\;\\\]\\[\\\a\SG\­	\\\Î\\\^\\5\\ת\\\\\ȴ\\G#\\\\ʿ\\Jg\͑\\5\\\\\\\\\\\rT\ڙ\\ \\M!\ݱ\ށ\\g\\Zh\௒\\y\⅌\\]\\\n[\\\\\\,\\\\\\\\\&v\\~\\\n \\\\"\\7\\\~\\v\\\\\(U\\03\\\\\\\t\]\\!\\\x\*\x\\({,I~\'	\n \nb\Zd\7GzGB>\Z\\\Z\qN !\\"Δ#\n$ߔ%+i%\&&{&\(>)x*}-;\'.\.Ȟ/&0p1E1.5\6n63t77\\8\\97(9:C;b@CC\\EEF\I\IZJɂK\\'K\O\\S\Vy YL[<P[\U\\°^\b__\Ib2ggCh.h\jkJk\lɢmޘop\q\"\r˛r\\tvsz\(}dp\\\'\ԴeK\\tMEwD|\G\\b|wr\&\\\*R\<?(*\b{\\\\';\:0E\\e5\\\"\\'\\\s\#_\pfǱ\S\x\\A\϶)\\\'\\)\\]Wբ։\;\r\ӈ\h\b\lUۣ\ܡ\\\\\4\^m\\	\o\}\\r\\}\P4\\\p\\\E-\\\{\\\"\\\\\\\\\N\\\\\1d\N\x\UU\0\\\An\0B\0\$JoV\rM\r\\'l\\}-ZC\piw!tv*uE!A\"\"`#$Nh&(5(ß*+H+%,v313=<57^8\\9|:^A&B+B\~CZGI;GMKVMNHN\\Oa8PPٚQR\LR\{U\~X-Y|\Zs\\!\\\j	]\3^B\^Scxefij\k!mm]n5op9Oq+Jr\s\vюv={s|`~\Zv\]l\?A5te\k$eGMw\Z\8\\v`Ey!g*n\U\\]~H3erjS\f	fK\Iu+38\\\"Kğ|[\Ņb\ʰ\\;\\\\\Eј\&\V0\1\\FR\\I>\n\\׳\\\\\\\\\\\r\\\ew\\\;A\}\o\\\^\-1FŞ\\5\\\0^k4v\\Z\<\\\!)T\\\.\_{\$\YNE,qdu\Z>\Z\3 \\u!\\"\"\\";;\"a&8&vC(	(\\(\e)Lw*TV*+\-=.7R/e/#2N\2O+4CQ4Qi4\5v9\j;0\;\A<A\<?\A,fA5B\gG7G\CIJp\JDLM\WOgP?PZP\sS:T)uU\Z)XH[h]R9`b\dme\ngwzjm\'qqr,s^u	u;\y\\{`~}~\{Kr!5\I\nC\H\4\\\\a(\\\d,Ua~\\tsOM(yN2dM\rotb`\Nl\1H&O6Ә)\\\\es\P7_\\\\t\\\\r\aȰ\\\\B\3\<\\\/\,\\L\fM\\Y\\yِ?\ڦ8\9\8>በ\\P\2\\'\V\1\f\\o\\3\\\\E\\g7_Me+е!uS;r	\\n\r~\\rG\\rg3w/F\Z4\ZI@Q`\D	!\#!q#=#\%S%%\\&%\&()*-b\--(1!&9Θ:\h;9f>6>IA>\\EH\'\H?HeJJKTK&\KM<uMXMt\MN-N\\Q\TR\U(V\X\)YmZ`b]`\a*YcE6c\\d\fg\g\4i}i\:l\\~l\&nnJq\VsNs\\s\t%ntQt\u!\wU:w\w{|g\/\pO |c\r:\)#8\\6T]y\ڿo\\Ok^[`]\\'~4Dx\=)-?p@m#V;tL\jpa\\rh\*\\7ws\n\\\%E\qZĐƏ\\m\̲\cY\v\\3\\fѧ*҂\U\ԣ\\W$\iאa\\\[7ܫM\+ \-\\\\\\b\\]x缜\̎\?Z\\B\\\\%5\]\\\d-ϼ\a \\0_x\AY\n\R[j\rH\~.f\\B\S_\\Zu\\"IQ%\&\\&\)\)P*Q+},A\,J--\/\1ؔ2M3V4\\6\nb7J7\D7\8JH9:+;L>MY>AsrB\B\B\\DEEUFq\F\F#H(HMvJKMbNƓO*\R_\Wn<W\Y[W\[\:^2_\`\e_eLe=f\/f\g!dga[gv\hh4htj\l$m\m\m\n\o4stJvw\xE\zgzn|eJ}vY~NqN{g\9F>\\\d`?uW\\`Mu\	@!U\l\rU\\\Z/\-*p\\\|\`GJ\6\\\s\0k9Mv\j68\ݮ\eî÷q\_^\W\q~\3\\N\ǐ\Ȕ\\\\U\w\\\ҡ\\\\v\nր2\޷\/\q\\\ڦ~\\{\f\\\޾\&\\#\3=\&\8\\\ꑭ\\\\\\w\b\\\\-\Y\\\s\ tsG\5>\\_\Z\N0\	?>\n\b\\r\\+&S/\\Zi\\ZS\Z$4Y \"r\"z#I7#\\&O*]\*\*\Q.31\3\4;4ƣ6\Z6T;7\7\8\/9\9\z:D\=f>>h\C`AC\DF]EvE\7F9*IKLuOXOJP\QQ\QS9TeU\U\CV\Xw\XY]]\^bOadcCdOe\Ufxgg\rkHl\Zmm\8ngo\\q\ZqjrG3w{s/9|n,\2mh\p\.3j1&H\J\l\=\^\\5\\\S\T \KAl\n\"p\l\Й\;\]\\\%jRe@c܅|*Mn_\5\\0D\\\\r\\}V\\[\	D\S ʠ,\\\\\\+\f\|D\\D\\k\\\rK\L\֓\\0N\[)\\\\_ގS\R\\v\N\;\6\\\韂꼌\\\\P\\\\\\\X\\\\O\\b\\\^	GJ,\0wE\2b0.	#\rq\\M\\\'\>\\\QR>\]Im\ R!1!\]\"H7\"1#C\&+&\n\'ad\'\'\\'\(*k(\:+.N/AY031?20\2`J3m55;c56]=7\ 8V=X>\\@A\uBb\FG\rION0fNmBR.\SHV\X\Zk\Z\\\\r_\G`I1aR\bg\bcR:dxe*fkg.hiFi}i\\jf\Zj\knl6>m+n!\r\s=TvvZ|\H|\xF)R]~\xA\~-V\\\h\J=³\\]\\3t\\\\2\r]^^l#Wtj\\A?\%C#\\\\\"\r2\s\\\\\Ӑi\"l\jÓ\\w\~\\ɽ\\\\́\\\$\7\\\\\b\\\\n\K0\<\ۺ\\'=\\\\\0e\Z\F\\\0\\:\\\\\5c\{\䶕\\\\,\*\\\k\\yz\W\#M\F\\9.g@	\I\{!\r\_\dO\\ѳ+Z1sq\fvC  f ̸!\\"3#$,\%%~&&\&))*E-,ȉ,\/72\4Z68\D;{\>\EG)G\ZK\KK\K\\K\oM8N8Q\AR(S`SUU?\WD\rXAX[c[۬a(au\a]gΦilmj$yk\lΑmGFp@,qy7yz{s|fpG\\f3`\\e\"\GE|i\0\\nPt\\\\\h\v.q;\\r\'b\_\\x\\\BONH[\\b\\c\2\2I\7Ȭ\\ \\|[\\\0\\\\v\\\ι\\G\=\,\\\\\OӆE\p\\je\{C\\s\\\\\\<\\\D\\iޓ\k\@\_\1\B\\n\\\\\\_\n\$_\-r\5\\\ջ\\0\m\B\I\Ĥ\\|\\\\}o\\:c\{7\T\\\\Wh>Ȭ\\Z\Ez\\";}','no'),('adminUserList',_binary 'a:1:{i:1;i:1;}','yes'),('scanFileProcessing','','yes'),('wfsd_engine','','no'),('signatureUpdateTime',_binary '1648144743','yes'),('emailedIssuesList',_binary 'a:725:{i:0;a:2:{s:7:\"ignoreC\";s:32:\"a7f7817f0891862bc7cc774892cab024\";s:7:\"ignoreP\";s:32:\"9a9a51e617ef3c2c7bba75d8ccd533a6\";}i:1;a:2:{s:7:\"ignoreC\";s:32:\"d38b7ca2ed551d7625a515bb13b3661c\";s:7:\"ignoreP\";s:32:\"950b5610c3eb51f3f1a33eec7700ed10\";}i:2;a:2:{s:7:\"ignoreC\";s:32:\"f9315049fc34e18465dc9b454149c680\";s:7:\"ignoreP\";s:32:\"e7f935aab76e056c6db3c6f8de68a33c\";}i:3;a:2:{s:7:\"ignoreC\";s:32:\"054b3559c59f10799e6b25e960cad37e\";s:7:\"ignoreP\";s:32:\"68771a4521da1746b18137e2902d6f4a\";}i:4;a:2:{s:7:\"ignoreC\";s:32:\"c02a40a38a0e3ed8be69315409ea68fa\";s:7:\"ignoreP\";s:32:\"2d85bcd16b5e60f3a2e56932620ad5de\";}i:5;a:2:{s:7:\"ignoreC\";s:32:\"ff61606a09e81bce97d7550172815f32\";s:7:\"ignoreP\";s:32:\"8de7b42c0e46de89c255d4c717cd2753\";}i:6;a:2:{s:7:\"ignoreC\";s:32:\"ca48571e5b9bec15e2a6785f212cb998\";s:7:\"ignoreP\";s:32:\"70becbb312452dd8f94e5c0a924b5f35\";}i:7;a:2:{s:7:\"ignoreC\";s:32:\"b319b907e1a9f180e7955e2bc7a151a8\";s:7:\"ignoreP\";s:32:\"a05f58280ae1f008ded3ebfb34f6fcec\";}i:8;a:2:{s:7:\"ignoreC\";s:32:\"6b42bf4db6555f18737b2cf2c12d87c6\";s:7:\"ignoreP\";s:32:\"a649872068a7043a49f0906f3e4bb105\";}i:9;a:2:{s:7:\"ignoreC\";s:32:\"24883b42b01c15695f9da53b807db3bc\";s:7:\"ignoreP\";s:32:\"a3f889fcdfa9367834fb29558b380814\";}i:10;a:2:{s:7:\"ignoreC\";s:32:\"8f5f9adaeb7609601c05bb2ff74b149f\";s:7:\"ignoreP\";s:32:\"ec3d29be0bad86edcc28838685cfd3d1\";}i:11;a:2:{s:7:\"ignoreC\";s:32:\"885759a100cb1e1faf187ed979467dbe\";s:7:\"ignoreP\";s:32:\"2acfb31d37c04ba40f4cc3f701974e94\";}i:12;a:2:{s:7:\"ignoreC\";s:32:\"b0e24e43a7033fe074c7a9aea7a13a79\";s:7:\"ignoreP\";s:32:\"d9db3f9ed72ea7dfa101c54e4ce0b93e\";}i:13;a:2:{s:7:\"ignoreC\";s:32:\"f79a76fb8f8f905483c4fa8f7f65df76\";s:7:\"ignoreP\";s:32:\"1020745154ef04d297653ec1ca7273d7\";}i:14;a:2:{s:7:\"ignoreC\";s:32:\"e959ca4ec233149e7b12daca42774366\";s:7:\"ignoreP\";s:32:\"e8a73c7ca564ed6d551842e018a9a8dd\";}i:15;a:2:{s:7:\"ignoreC\";s:32:\"ec3bdd58172438dc0a18fafcb4a562fb\";s:7:\"ignoreP\";s:32:\"f6c9e366324f25517a31b944cfa1253c\";}i:16;a:2:{s:7:\"ignoreC\";s:32:\"64874f9154498ff55df0f35a29e3d372\";s:7:\"ignoreP\";s:32:\"d8b41d820108050f34a7d572c59829bc\";}i:17;a:2:{s:7:\"ignoreC\";s:32:\"83e781c52ea54d51f148f9fa144064e6\";s:7:\"ignoreP\";s:32:\"01495f1840b88a1cab720ad17d96bb10\";}i:18;a:2:{s:7:\"ignoreC\";s:32:\"e8136799a1b7f74bf4bb8eb4208ceee7\";s:7:\"ignoreP\";s:32:\"a5f913db5c2724e8cd7d788d7b86f37c\";}i:19;a:2:{s:7:\"ignoreC\";s:32:\"87186779642d85f3399fa46c97d9a753\";s:7:\"ignoreP\";s:32:\"2ad4273bb4d299033d23e7e1d153ee97\";}i:20;a:2:{s:7:\"ignoreC\";s:32:\"15686cdb8aad4323ae05e904f4b15ea2\";s:7:\"ignoreP\";s:32:\"a50b1a77d113dc0f865de02745875463\";}i:21;a:2:{s:7:\"ignoreC\";s:32:\"edf97db02bbb1c4486690b00cb2aee06\";s:7:\"ignoreP\";s:32:\"2815a3de1a538e2207524c20f4658320\";}i:22;a:2:{s:7:\"ignoreC\";s:32:\"1cceb43ccc981af9072d6794aaa5307c\";s:7:\"ignoreP\";s:32:\"d4842eedc372e751ecd07ce31324f2d2\";}i:23;a:2:{s:7:\"ignoreC\";s:32:\"fb8e46a49e3d1f433ddb39d2650acf06\";s:7:\"ignoreP\";s:32:\"03b3f04e6384c196736c58b1904a234f\";}i:24;a:2:{s:7:\"ignoreC\";s:32:\"40733660152f429e6671d1a96ad2dbc0\";s:7:\"ignoreP\";s:32:\"f366320dc031da1f610a76a2894b0f87\";}i:25;a:2:{s:7:\"ignoreC\";s:32:\"8aa17fa47cdb7fc5437f340e9d05d184\";s:7:\"ignoreP\";s:32:\"cf39b5d62219cfc8a48dc255e2b86c4b\";}i:26;a:2:{s:7:\"ignoreC\";s:32:\"e1f2bd23cb48acbd34905bb0b9cf2156\";s:7:\"ignoreP\";s:32:\"385c6f72018e0f22601bcebd4d11dabc\";}i:27;a:2:{s:7:\"ignoreC\";s:32:\"b05e872472e128990e7426d0c9e32b44\";s:7:\"ignoreP\";s:32:\"7215ef214348479ad0036f466645151c\";}i:28;a:2:{s:7:\"ignoreC\";s:32:\"c0c85dfdd921bd1ea54dbd279e8843ff\";s:7:\"ignoreP\";s:32:\"b062c502655a9501c5bce2c6be96cfca\";}i:29;a:2:{s:7:\"ignoreC\";s:32:\"e90d28d85edd1d3a5dc0f4e1acadc8db\";s:7:\"ignoreP\";s:32:\"1d47739583b12671f3165d5e07602bf3\";}i:30;a:2:{s:7:\"ignoreC\";s:32:\"a54f81d3e53590570c9d096669ed0c6f\";s:7:\"ignoreP\";s:32:\"1364a98246a019a0a7683e39404cdd24\";}i:31;a:2:{s:7:\"ignoreC\";s:32:\"36e673783c8d709076b35ad6071d00e3\";s:7:\"ignoreP\";s:32:\"f103fd120ea95ef9d8890faf899915d1\";}i:32;a:2:{s:7:\"ignoreC\";s:32:\"e145c7af5f49f9c0c0adf51acac6b862\";s:7:\"ignoreP\";s:32:\"23ad76f9f2b033886797fdea081b135f\";}i:33;a:2:{s:7:\"ignoreC\";s:32:\"f0b9470126cdaf846904783740d2669a\";s:7:\"ignoreP\";s:32:\"efe38302c2976d5ca9bde2bfaa8af2ac\";}i:34;a:2:{s:7:\"ignoreC\";s:32:\"e4e5f8eece6c68d662bed4b63a3f279c\";s:7:\"ignoreP\";s:32:\"9fda2d62b6b03d860b9c4eb528204fc5\";}i:35;a:2:{s:7:\"ignoreC\";s:32:\"5e4f86cf75abf97bce32b83fb2d178b1\";s:7:\"ignoreP\";s:32:\"8d768fa844ab4f5835b3f40129a4244e\";}i:36;a:2:{s:7:\"ignoreC\";s:32:\"40eb0e80e84826ce2cc70d6c6294d6d9\";s:7:\"ignoreP\";s:32:\"47ad11b1b6b926a43052d89dfdc271d9\";}i:37;a:2:{s:7:\"ignoreC\";s:32:\"f985bc160626f25e39ce3a301b5a1371\";s:7:\"ignoreP\";s:32:\"f985bc160626f25e39ce3a301b5a1371\";}i:38;a:2:{s:7:\"ignoreC\";s:32:\"275ed34646f0f6e9c7e92af889d898a5\";s:7:\"ignoreP\";s:32:\"275ed34646f0f6e9c7e92af889d898a5\";}i:39;a:2:{s:7:\"ignoreC\";s:32:\"8ccbe523a93219c70c19908ae0e6fa32\";s:7:\"ignoreP\";s:32:\"8ccbe523a93219c70c19908ae0e6fa32\";}i:40;a:2:{s:7:\"ignoreC\";s:32:\"14c37035f5bb1ca47296258f45e54634\";s:7:\"ignoreP\";s:32:\"14c37035f5bb1ca47296258f45e54634\";}i:41;a:2:{s:7:\"ignoreC\";s:32:\"cead24e17311fcdc8f276d21abfcc4fe\";s:7:\"ignoreP\";s:32:\"cead24e17311fcdc8f276d21abfcc4fe\";}i:42;a:2:{s:7:\"ignoreC\";s:32:\"c69b7df50bbe0391e624b8d55eec95b1\";s:7:\"ignoreP\";s:32:\"c69b7df50bbe0391e624b8d55eec95b1\";}i:43;a:2:{s:7:\"ignoreC\";s:32:\"e1ad2b91c62a2261237767a48477e0f0\";s:7:\"ignoreP\";s:32:\"e1ad2b91c62a2261237767a48477e0f0\";}i:44;a:2:{s:7:\"ignoreC\";s:32:\"3c6ff1aa5b716e0a130934e5e9fd4fa6\";s:7:\"ignoreP\";s:32:\"3c6ff1aa5b716e0a130934e5e9fd4fa6\";}i:45;a:2:{s:7:\"ignoreC\";s:32:\"ebb93ff5156e38099193e8a7a3acf996\";s:7:\"ignoreP\";s:32:\"ebb93ff5156e38099193e8a7a3acf996\";}i:46;a:2:{s:7:\"ignoreC\";s:32:\"bb513631a93a1131ed1cb995536976eb\";s:7:\"ignoreP\";s:32:\"bb513631a93a1131ed1cb995536976eb\";}i:47;a:2:{s:7:\"ignoreC\";s:32:\"b0ac56e5e26885d8690b7862c19c1f29\";s:7:\"ignoreP\";s:32:\"b0ac56e5e26885d8690b7862c19c1f29\";}i:48;a:2:{s:7:\"ignoreC\";s:32:\"480d35a04e76ff7ce1cf5369aa2fffbc\";s:7:\"ignoreP\";s:32:\"480d35a04e76ff7ce1cf5369aa2fffbc\";}i:49;a:2:{s:7:\"ignoreC\";s:32:\"a462bf636f44c21760c14015f55f184d\";s:7:\"ignoreP\";s:32:\"a462bf636f44c21760c14015f55f184d\";}i:50;a:2:{s:7:\"ignoreC\";s:32:\"28307431240ae3a7b7c28f97461aa4e2\";s:7:\"ignoreP\";s:32:\"28307431240ae3a7b7c28f97461aa4e2\";}i:51;a:2:{s:7:\"ignoreC\";s:32:\"d6fc6fc7645ddf6f7805a8fbdd8ed919\";s:7:\"ignoreP\";s:32:\"d6fc6fc7645ddf6f7805a8fbdd8ed919\";}i:52;a:2:{s:7:\"ignoreC\";s:32:\"e17aabda2b0e367ed8f88a4f73a119f4\";s:7:\"ignoreP\";s:32:\"e17aabda2b0e367ed8f88a4f73a119f4\";}i:53;a:2:{s:7:\"ignoreC\";s:32:\"2e741e94eba90698be473e93a1144435\";s:7:\"ignoreP\";s:32:\"2e741e94eba90698be473e93a1144435\";}i:54;a:2:{s:7:\"ignoreC\";s:32:\"9f1269b1cd46ff92ecb0ef82174a6a9c\";s:7:\"ignoreP\";s:32:\"9f1269b1cd46ff92ecb0ef82174a6a9c\";}i:55;a:2:{s:7:\"ignoreC\";s:32:\"6d35c6e5ebbf66ab1ebf23e09ee44031\";s:7:\"ignoreP\";s:32:\"6d35c6e5ebbf66ab1ebf23e09ee44031\";}i:56;a:2:{s:7:\"ignoreC\";s:32:\"1e29be58eb27f4070fe8d123b9495a34\";s:7:\"ignoreP\";s:32:\"1e29be58eb27f4070fe8d123b9495a34\";}i:57;a:2:{s:7:\"ignoreC\";s:32:\"9a94bc046e5961a912b971327d3b6ab2\";s:7:\"ignoreP\";s:32:\"9a94bc046e5961a912b971327d3b6ab2\";}i:58;a:2:{s:7:\"ignoreC\";s:32:\"605ec6033665c954823688eb9d290275\";s:7:\"ignoreP\";s:32:\"605ec6033665c954823688eb9d290275\";}i:59;a:2:{s:7:\"ignoreC\";s:32:\"45a3424f421de4c2e1a3905cdad35f99\";s:7:\"ignoreP\";s:32:\"45a3424f421de4c2e1a3905cdad35f99\";}i:60;a:2:{s:7:\"ignoreC\";s:32:\"9bebef795005c61c2f54efae33ea9df4\";s:7:\"ignoreP\";s:32:\"9bebef795005c61c2f54efae33ea9df4\";}i:61;a:2:{s:7:\"ignoreC\";s:32:\"a01342ecc6a39cd6c4c74d1b0e891a73\";s:7:\"ignoreP\";s:32:\"a01342ecc6a39cd6c4c74d1b0e891a73\";}i:62;a:2:{s:7:\"ignoreC\";s:32:\"5cb52f269f736373aeac4f826edeaf3d\";s:7:\"ignoreP\";s:32:\"5cb52f269f736373aeac4f826edeaf3d\";}i:63;a:2:{s:7:\"ignoreC\";s:32:\"a72ff98b57e45c0069348d0fc117581f\";s:7:\"ignoreP\";s:32:\"a72ff98b57e45c0069348d0fc117581f\";}i:64;a:2:{s:7:\"ignoreC\";s:32:\"dc8c470957e93c173c504d9cd5ef74d3\";s:7:\"ignoreP\";s:32:\"dc8c470957e93c173c504d9cd5ef74d3\";}i:65;a:2:{s:7:\"ignoreC\";s:32:\"9b8c8e4dd0ec8c423a55b43517ac1faf\";s:7:\"ignoreP\";s:32:\"9b8c8e4dd0ec8c423a55b43517ac1faf\";}i:66;a:2:{s:7:\"ignoreC\";s:32:\"82988a3ae68688bc4112d8cd166c7dbe\";s:7:\"ignoreP\";s:32:\"82988a3ae68688bc4112d8cd166c7dbe\";}i:67;a:2:{s:7:\"ignoreC\";s:32:\"309fe430e4c745713f78ddbac461b60d\";s:7:\"ignoreP\";s:32:\"309fe430e4c745713f78ddbac461b60d\";}i:68;a:2:{s:7:\"ignoreC\";s:32:\"d1adb2a6d9a45e9e7836c0d90cfb4534\";s:7:\"ignoreP\";s:32:\"d1adb2a6d9a45e9e7836c0d90cfb4534\";}i:69;a:2:{s:7:\"ignoreC\";s:32:\"1f9bba5b7dfcab5ad2c93103e70e21bc\";s:7:\"ignoreP\";s:32:\"1f9bba5b7dfcab5ad2c93103e70e21bc\";}i:70;a:2:{s:7:\"ignoreC\";s:32:\"b7dde09efb1d72499b52b11d519c9810\";s:7:\"ignoreP\";s:32:\"b7dde09efb1d72499b52b11d519c9810\";}i:71;a:2:{s:7:\"ignoreC\";s:32:\"d8c1ebda83a6231d5cd2a35cb93ba4e2\";s:7:\"ignoreP\";s:32:\"d8c1ebda83a6231d5cd2a35cb93ba4e2\";}i:72;a:2:{s:7:\"ignoreC\";s:32:\"cc47a0c8b157f303642678602e0617ad\";s:7:\"ignoreP\";s:32:\"cc47a0c8b157f303642678602e0617ad\";}i:73;a:2:{s:7:\"ignoreC\";s:32:\"d734e2296a489b54b72599326acfb21b\";s:7:\"ignoreP\";s:32:\"d734e2296a489b54b72599326acfb21b\";}i:74;a:2:{s:7:\"ignoreC\";s:32:\"30d0c13105fb6f9054a6739498aae80c\";s:7:\"ignoreP\";s:32:\"30d0c13105fb6f9054a6739498aae80c\";}i:75;a:2:{s:7:\"ignoreC\";s:32:\"eaa20d0a30450cad70d2fe3b3673186f\";s:7:\"ignoreP\";s:32:\"eaa20d0a30450cad70d2fe3b3673186f\";}i:76;a:2:{s:7:\"ignoreC\";s:32:\"689575efc9559dbcad4c618cbab83132\";s:7:\"ignoreP\";s:32:\"689575efc9559dbcad4c618cbab83132\";}i:77;a:2:{s:7:\"ignoreC\";s:32:\"f85b2bacdaef5b357f5ef4139063d188\";s:7:\"ignoreP\";s:32:\"f85b2bacdaef5b357f5ef4139063d188\";}i:78;a:2:{s:7:\"ignoreC\";s:32:\"02f559b2ed7e4368c3b8e000fc65004e\";s:7:\"ignoreP\";s:32:\"02f559b2ed7e4368c3b8e000fc65004e\";}i:79;a:2:{s:7:\"ignoreC\";s:32:\"beeccfe2b8ae32bd1767cb3b7008ac74\";s:7:\"ignoreP\";s:32:\"beeccfe2b8ae32bd1767cb3b7008ac74\";}i:80;a:2:{s:7:\"ignoreC\";s:32:\"fed48ad9d33cedd58a42995912ee5bb4\";s:7:\"ignoreP\";s:32:\"fed48ad9d33cedd58a42995912ee5bb4\";}i:81;a:2:{s:7:\"ignoreC\";s:32:\"de934c7a0e9ed56ef0dbb9b1079b4bdf\";s:7:\"ignoreP\";s:32:\"de934c7a0e9ed56ef0dbb9b1079b4bdf\";}i:82;a:2:{s:7:\"ignoreC\";s:32:\"dac65c5a34835046b19653e34f3cc6c0\";s:7:\"ignoreP\";s:32:\"dac65c5a34835046b19653e34f3cc6c0\";}i:83;a:2:{s:7:\"ignoreC\";s:32:\"88dc48066ce0e5f3f7c513dd76d32cbe\";s:7:\"ignoreP\";s:32:\"88dc48066ce0e5f3f7c513dd76d32cbe\";}i:84;a:2:{s:7:\"ignoreC\";s:32:\"208295976de5055ee3afb89931b87ea7\";s:7:\"ignoreP\";s:32:\"208295976de5055ee3afb89931b87ea7\";}i:85;a:2:{s:7:\"ignoreC\";s:32:\"855015cdd94f1426cd697ac83b7bc43f\";s:7:\"ignoreP\";s:32:\"855015cdd94f1426cd697ac83b7bc43f\";}i:86;a:2:{s:7:\"ignoreC\";s:32:\"9705647199f0ed8396cd80af21f374d4\";s:7:\"ignoreP\";s:32:\"9705647199f0ed8396cd80af21f374d4\";}i:87;a:2:{s:7:\"ignoreC\";s:32:\"ba7e7c1b17dc5c7358455672baad990e\";s:7:\"ignoreP\";s:32:\"ba7e7c1b17dc5c7358455672baad990e\";}i:88;a:2:{s:7:\"ignoreC\";s:32:\"958b1ddb5e71ac9c53d581be586ee20a\";s:7:\"ignoreP\";s:32:\"958b1ddb5e71ac9c53d581be586ee20a\";}i:89;a:2:{s:7:\"ignoreC\";s:32:\"d3724fbdab1d0b21d9b63825083a0670\";s:7:\"ignoreP\";s:32:\"d3724fbdab1d0b21d9b63825083a0670\";}i:90;a:2:{s:7:\"ignoreC\";s:32:\"ab5d3827df741166434a3132a7cc8580\";s:7:\"ignoreP\";s:32:\"ab5d3827df741166434a3132a7cc8580\";}i:91;a:2:{s:7:\"ignoreC\";s:32:\"ec1ec3971575ee76c93025db677260f1\";s:7:\"ignoreP\";s:32:\"ec1ec3971575ee76c93025db677260f1\";}i:92;a:2:{s:7:\"ignoreC\";s:32:\"ab009ffa758946f65c2d4cf85e551d10\";s:7:\"ignoreP\";s:32:\"ab009ffa758946f65c2d4cf85e551d10\";}i:93;a:2:{s:7:\"ignoreC\";s:32:\"e2173c16eae45f2d5aa13d40f5ac4e32\";s:7:\"ignoreP\";s:32:\"e2173c16eae45f2d5aa13d40f5ac4e32\";}i:94;a:2:{s:7:\"ignoreC\";s:32:\"a8b77710b5f452939dcad3bc5e9aad7f\";s:7:\"ignoreP\";s:32:\"a8b77710b5f452939dcad3bc5e9aad7f\";}i:95;a:2:{s:7:\"ignoreC\";s:32:\"fb93d606872cbf63932658fe97040f77\";s:7:\"ignoreP\";s:32:\"fb93d606872cbf63932658fe97040f77\";}i:96;a:2:{s:7:\"ignoreC\";s:32:\"f67d5c23120e90da11a137ce6dcf20c2\";s:7:\"ignoreP\";s:32:\"f67d5c23120e90da11a137ce6dcf20c2\";}i:97;a:2:{s:7:\"ignoreC\";s:32:\"1b02bdc0c93382d8f083929258409fee\";s:7:\"ignoreP\";s:32:\"1b02bdc0c93382d8f083929258409fee\";}i:98;a:2:{s:7:\"ignoreC\";s:32:\"6307c11a760360f1134a4e033ed147c7\";s:7:\"ignoreP\";s:32:\"6307c11a760360f1134a4e033ed147c7\";}i:99;a:2:{s:7:\"ignoreC\";s:32:\"7672c6149c715fa74089fb43ef1b6112\";s:7:\"ignoreP\";s:32:\"7672c6149c715fa74089fb43ef1b6112\";}i:100;a:2:{s:7:\"ignoreC\";s:32:\"dd679a2c914bb00c41ccf9229a5e71af\";s:7:\"ignoreP\";s:32:\"dd679a2c914bb00c41ccf9229a5e71af\";}i:101;a:2:{s:7:\"ignoreC\";s:32:\"62c5da26f9361389f298919ab2aaf790\";s:7:\"ignoreP\";s:32:\"62c5da26f9361389f298919ab2aaf790\";}i:102;a:2:{s:7:\"ignoreC\";s:32:\"01be929896dc8ebe5bb0ba4bfb247c55\";s:7:\"ignoreP\";s:32:\"01be929896dc8ebe5bb0ba4bfb247c55\";}i:103;a:2:{s:7:\"ignoreC\";s:32:\"b9b61fddc435b42b229cd0f6bc0c94d6\";s:7:\"ignoreP\";s:32:\"b9b61fddc435b42b229cd0f6bc0c94d6\";}i:104;a:2:{s:7:\"ignoreC\";s:32:\"e1117fccc846b035c1dcadae59befb65\";s:7:\"ignoreP\";s:32:\"e1117fccc846b035c1dcadae59befb65\";}i:105;a:2:{s:7:\"ignoreC\";s:32:\"2782bfd02ccdc3ba291b21a95e8f3595\";s:7:\"ignoreP\";s:32:\"2782bfd02ccdc3ba291b21a95e8f3595\";}i:106;a:2:{s:7:\"ignoreC\";s:32:\"60bf7863265899c64b9d6a255c09e853\";s:7:\"ignoreP\";s:32:\"60bf7863265899c64b9d6a255c09e853\";}i:107;a:2:{s:7:\"ignoreC\";s:32:\"157a97697c5e64fe18fc2c0ed6eebcf7\";s:7:\"ignoreP\";s:32:\"157a97697c5e64fe18fc2c0ed6eebcf7\";}i:108;a:2:{s:7:\"ignoreC\";s:32:\"aefc64fd5b99a40ac55b990fb6751171\";s:7:\"ignoreP\";s:32:\"aefc64fd5b99a40ac55b990fb6751171\";}i:109;a:2:{s:7:\"ignoreC\";s:32:\"007ccb3d7c3757d10ba5a68179cc30ac\";s:7:\"ignoreP\";s:32:\"007ccb3d7c3757d10ba5a68179cc30ac\";}i:110;a:2:{s:7:\"ignoreC\";s:32:\"6d11d834dca62f95dc66ab8591f145ea\";s:7:\"ignoreP\";s:32:\"6d11d834dca62f95dc66ab8591f145ea\";}i:111;a:2:{s:7:\"ignoreC\";s:32:\"a8bfdbcac3423122ad5f0b5ca89c2ef4\";s:7:\"ignoreP\";s:32:\"a8bfdbcac3423122ad5f0b5ca89c2ef4\";}i:112;a:2:{s:7:\"ignoreC\";s:32:\"aea6fbbf16bd7f770ee5580d75fab4c3\";s:7:\"ignoreP\";s:32:\"aea6fbbf16bd7f770ee5580d75fab4c3\";}i:113;a:2:{s:7:\"ignoreC\";s:32:\"487e88d28437c6f2e05b6a2be3666a9d\";s:7:\"ignoreP\";s:32:\"487e88d28437c6f2e05b6a2be3666a9d\";}i:114;a:2:{s:7:\"ignoreC\";s:32:\"6854edb770ed1d9737389778aee9c7c1\";s:7:\"ignoreP\";s:32:\"6854edb770ed1d9737389778aee9c7c1\";}i:115;a:2:{s:7:\"ignoreC\";s:32:\"63be68f4b12b0e075bbf9c11667e9ff2\";s:7:\"ignoreP\";s:32:\"63be68f4b12b0e075bbf9c11667e9ff2\";}i:116;a:2:{s:7:\"ignoreC\";s:32:\"83e091803c0ee5d8c0e1c376164cb5b0\";s:7:\"ignoreP\";s:32:\"83e091803c0ee5d8c0e1c376164cb5b0\";}i:117;a:2:{s:7:\"ignoreC\";s:32:\"36c2ef68877660a2dcef33af79c04d6c\";s:7:\"ignoreP\";s:32:\"36c2ef68877660a2dcef33af79c04d6c\";}i:118;a:2:{s:7:\"ignoreC\";s:32:\"2c89eab809a673b804b8d82215f12544\";s:7:\"ignoreP\";s:32:\"2c89eab809a673b804b8d82215f12544\";}i:119;a:2:{s:7:\"ignoreC\";s:32:\"b334e16905edf5d9810fac6331b46c6f\";s:7:\"ignoreP\";s:32:\"b334e16905edf5d9810fac6331b46c6f\";}i:120;a:2:{s:7:\"ignoreC\";s:32:\"bc26f23a35d08e1f872f15e44a2da0b2\";s:7:\"ignoreP\";s:32:\"bc26f23a35d08e1f872f15e44a2da0b2\";}i:121;a:2:{s:7:\"ignoreC\";s:32:\"599cd1d797e90b7c52331cc1af89d4cf\";s:7:\"ignoreP\";s:32:\"599cd1d797e90b7c52331cc1af89d4cf\";}i:122;a:2:{s:7:\"ignoreC\";s:32:\"352c308aaf524cc48acba5fd32798de4\";s:7:\"ignoreP\";s:32:\"352c308aaf524cc48acba5fd32798de4\";}i:123;a:2:{s:7:\"ignoreC\";s:32:\"624a181c6f0d1456426ffc7f6c6aaeaf\";s:7:\"ignoreP\";s:32:\"624a181c6f0d1456426ffc7f6c6aaeaf\";}i:124;a:2:{s:7:\"ignoreC\";s:32:\"809a00a820992ca39d5dde43ad3838cb\";s:7:\"ignoreP\";s:32:\"809a00a820992ca39d5dde43ad3838cb\";}i:125;a:2:{s:7:\"ignoreC\";s:32:\"b1d3d0651fa45e5e542fcf47414a3547\";s:7:\"ignoreP\";s:32:\"b1d3d0651fa45e5e542fcf47414a3547\";}i:126;a:2:{s:7:\"ignoreC\";s:32:\"88271d5c95de82a9bf2757f13d67f291\";s:7:\"ignoreP\";s:32:\"88271d5c95de82a9bf2757f13d67f291\";}i:127;a:2:{s:7:\"ignoreC\";s:32:\"f2b1ac141289a1ca7eb1f2877cc1fa00\";s:7:\"ignoreP\";s:32:\"f2b1ac141289a1ca7eb1f2877cc1fa00\";}i:128;a:2:{s:7:\"ignoreC\";s:32:\"7b4676cc0f38cef2e186c9001d23109c\";s:7:\"ignoreP\";s:32:\"7b4676cc0f38cef2e186c9001d23109c\";}i:129;a:2:{s:7:\"ignoreC\";s:32:\"8ab0b21ca9f3b253a223b64c5ee84f87\";s:7:\"ignoreP\";s:32:\"8ab0b21ca9f3b253a223b64c5ee84f87\";}i:130;a:2:{s:7:\"ignoreC\";s:32:\"dd91830e4fb355ef82f4a0f9a3125bf6\";s:7:\"ignoreP\";s:32:\"dd91830e4fb355ef82f4a0f9a3125bf6\";}i:131;a:2:{s:7:\"ignoreC\";s:32:\"d2824953da6aaed5409217806e11bb46\";s:7:\"ignoreP\";s:32:\"d2824953da6aaed5409217806e11bb46\";}i:132;a:2:{s:7:\"ignoreC\";s:32:\"396f7b97f987420c1afbb090d5183796\";s:7:\"ignoreP\";s:32:\"396f7b97f987420c1afbb090d5183796\";}i:133;a:2:{s:7:\"ignoreC\";s:32:\"132b50f79a6a5e789e0abf187fe03745\";s:7:\"ignoreP\";s:32:\"132b50f79a6a5e789e0abf187fe03745\";}i:134;a:2:{s:7:\"ignoreC\";s:32:\"ddc239eb68bb665eea870593e170ab76\";s:7:\"ignoreP\";s:32:\"ddc239eb68bb665eea870593e170ab76\";}i:135;a:2:{s:7:\"ignoreC\";s:32:\"dbb1c8c858a25534d861ace1e73ef03f\";s:7:\"ignoreP\";s:32:\"dbb1c8c858a25534d861ace1e73ef03f\";}i:136;a:2:{s:7:\"ignoreC\";s:32:\"ce5c3c3612915689af4db77b320e11e8\";s:7:\"ignoreP\";s:32:\"ce5c3c3612915689af4db77b320e11e8\";}i:137;a:2:{s:7:\"ignoreC\";s:32:\"387b1895486bedc87384b9b5c6a01ee9\";s:7:\"ignoreP\";s:32:\"387b1895486bedc87384b9b5c6a01ee9\";}i:138;a:2:{s:7:\"ignoreC\";s:32:\"ed5239ffb8e6bbbcd7f549f850db2de9\";s:7:\"ignoreP\";s:32:\"ed5239ffb8e6bbbcd7f549f850db2de9\";}i:139;a:2:{s:7:\"ignoreC\";s:32:\"032de087bb632f3184b8a3e4e9a5e8bb\";s:7:\"ignoreP\";s:32:\"032de087bb632f3184b8a3e4e9a5e8bb\";}i:140;a:2:{s:7:\"ignoreC\";s:32:\"77fa29e1ee181d3df6bec158dfa170f5\";s:7:\"ignoreP\";s:32:\"77fa29e1ee181d3df6bec158dfa170f5\";}i:141;a:2:{s:7:\"ignoreC\";s:32:\"4e6a39a45a94133ea65456c1d24b9a04\";s:7:\"ignoreP\";s:32:\"4e6a39a45a94133ea65456c1d24b9a04\";}i:142;a:2:{s:7:\"ignoreC\";s:32:\"a3ac687e5d01f6dfa4ec1829aebfd8ee\";s:7:\"ignoreP\";s:32:\"a3ac687e5d01f6dfa4ec1829aebfd8ee\";}i:143;a:2:{s:7:\"ignoreC\";s:32:\"af3e0b8099fd884669a5da0697459de7\";s:7:\"ignoreP\";s:32:\"af3e0b8099fd884669a5da0697459de7\";}i:144;a:2:{s:7:\"ignoreC\";s:32:\"faf9f7e516c2b03348f632c57919919a\";s:7:\"ignoreP\";s:32:\"faf9f7e516c2b03348f632c57919919a\";}i:145;a:2:{s:7:\"ignoreC\";s:32:\"e75e856e12dc7346c8c46a601dfaf280\";s:7:\"ignoreP\";s:32:\"e75e856e12dc7346c8c46a601dfaf280\";}i:146;a:2:{s:7:\"ignoreC\";s:32:\"77817229fd90fd8164d4aa797e6e14ca\";s:7:\"ignoreP\";s:32:\"77817229fd90fd8164d4aa797e6e14ca\";}i:147;a:2:{s:7:\"ignoreC\";s:32:\"cf9551be88fe333c29c08e06bbc7b18c\";s:7:\"ignoreP\";s:32:\"cf9551be88fe333c29c08e06bbc7b18c\";}i:148;a:2:{s:7:\"ignoreC\";s:32:\"50a5db2c3bb1f0752d24661ccd381ab8\";s:7:\"ignoreP\";s:32:\"50a5db2c3bb1f0752d24661ccd381ab8\";}i:149;a:2:{s:7:\"ignoreC\";s:32:\"d74c81c2bbb07f07ed3198cab42a1015\";s:7:\"ignoreP\";s:32:\"d74c81c2bbb07f07ed3198cab42a1015\";}i:150;a:2:{s:7:\"ignoreC\";s:32:\"be6eafa1e679a1f5d326b5927a034c1d\";s:7:\"ignoreP\";s:32:\"be6eafa1e679a1f5d326b5927a034c1d\";}i:151;a:2:{s:7:\"ignoreC\";s:32:\"af0dc3b26b2bc8cc816b923f9fe4e1ae\";s:7:\"ignoreP\";s:32:\"af0dc3b26b2bc8cc816b923f9fe4e1ae\";}i:152;a:2:{s:7:\"ignoreC\";s:32:\"e99d92dd4d31c371f52a137b2af8b6d5\";s:7:\"ignoreP\";s:32:\"e99d92dd4d31c371f52a137b2af8b6d5\";}i:153;a:2:{s:7:\"ignoreC\";s:32:\"f1b80ea5230e2de3a9d0e7d1d29fa455\";s:7:\"ignoreP\";s:32:\"f1b80ea5230e2de3a9d0e7d1d29fa455\";}i:154;a:2:{s:7:\"ignoreC\";s:32:\"feae52d293a4140e32ae7ed201eb0966\";s:7:\"ignoreP\";s:32:\"feae52d293a4140e32ae7ed201eb0966\";}i:155;a:2:{s:7:\"ignoreC\";s:32:\"42ed604aa64aea1de452fdfc10c7e94a\";s:7:\"ignoreP\";s:32:\"42ed604aa64aea1de452fdfc10c7e94a\";}i:156;a:2:{s:7:\"ignoreC\";s:32:\"c2a90a9765a499fcd4760f7438b28857\";s:7:\"ignoreP\";s:32:\"c2a90a9765a499fcd4760f7438b28857\";}i:157;a:2:{s:7:\"ignoreC\";s:32:\"161fd51fe32b2f249212570de0f32837\";s:7:\"ignoreP\";s:32:\"161fd51fe32b2f249212570de0f32837\";}i:158;a:2:{s:7:\"ignoreC\";s:32:\"98fad7702c28836bdd86de2edadd0a1b\";s:7:\"ignoreP\";s:32:\"98fad7702c28836bdd86de2edadd0a1b\";}i:159;a:2:{s:7:\"ignoreC\";s:32:\"842ffc0dd4da57a7f7a0eaf4f20c6b91\";s:7:\"ignoreP\";s:32:\"842ffc0dd4da57a7f7a0eaf4f20c6b91\";}i:160;a:2:{s:7:\"ignoreC\";s:32:\"138121525dbe848b1085091b9a74148e\";s:7:\"ignoreP\";s:32:\"138121525dbe848b1085091b9a74148e\";}i:161;a:2:{s:7:\"ignoreC\";s:32:\"fcde82f338b6e54ce1a133b28b0b049b\";s:7:\"ignoreP\";s:32:\"fcde82f338b6e54ce1a133b28b0b049b\";}i:162;a:2:{s:7:\"ignoreC\";s:32:\"a78f3e0bdb65c8d8cadd71cc907d8fe7\";s:7:\"ignoreP\";s:32:\"a78f3e0bdb65c8d8cadd71cc907d8fe7\";}i:163;a:2:{s:7:\"ignoreC\";s:32:\"1d892366058a5c528aeae45c23c3539a\";s:7:\"ignoreP\";s:32:\"1d892366058a5c528aeae45c23c3539a\";}i:164;a:2:{s:7:\"ignoreC\";s:32:\"27bb2a02cd19b7b1a796b64f95f2e16c\";s:7:\"ignoreP\";s:32:\"27bb2a02cd19b7b1a796b64f95f2e16c\";}i:165;a:2:{s:7:\"ignoreC\";s:32:\"bd2f2d039e28f88b3c3675219b1b2616\";s:7:\"ignoreP\";s:32:\"bd2f2d039e28f88b3c3675219b1b2616\";}i:166;a:2:{s:7:\"ignoreC\";s:32:\"fde6362861dc0a4d30f43ff67f8e3d20\";s:7:\"ignoreP\";s:32:\"fde6362861dc0a4d30f43ff67f8e3d20\";}i:167;a:2:{s:7:\"ignoreC\";s:32:\"7fcdb1c3bac92d432e754e9098718f17\";s:7:\"ignoreP\";s:32:\"7fcdb1c3bac92d432e754e9098718f17\";}i:168;a:2:{s:7:\"ignoreC\";s:32:\"4c9b41369fc92033991ed246dc4d6231\";s:7:\"ignoreP\";s:32:\"4c9b41369fc92033991ed246dc4d6231\";}i:169;a:2:{s:7:\"ignoreC\";s:32:\"9329386b0ae9b90e0548f78e304691b4\";s:7:\"ignoreP\";s:32:\"9329386b0ae9b90e0548f78e304691b4\";}i:170;a:2:{s:7:\"ignoreC\";s:32:\"d86ff6b5faaa1300555ba4448a5dd4d0\";s:7:\"ignoreP\";s:32:\"d86ff6b5faaa1300555ba4448a5dd4d0\";}i:171;a:2:{s:7:\"ignoreC\";s:32:\"34d155c37f698204e1af466024d63b14\";s:7:\"ignoreP\";s:32:\"34d155c37f698204e1af466024d63b14\";}i:172;a:2:{s:7:\"ignoreC\";s:32:\"966baca157470e8d6685551bfe913895\";s:7:\"ignoreP\";s:32:\"966baca157470e8d6685551bfe913895\";}i:173;a:2:{s:7:\"ignoreC\";s:32:\"8dfe79a65e5fca2deeaf089c946be289\";s:7:\"ignoreP\";s:32:\"8dfe79a65e5fca2deeaf089c946be289\";}i:174;a:2:{s:7:\"ignoreC\";s:32:\"943eda21abf641d400b4627b5b0a4375\";s:7:\"ignoreP\";s:32:\"943eda21abf641d400b4627b5b0a4375\";}i:175;a:2:{s:7:\"ignoreC\";s:32:\"176e0a38d0206a03cef5d63da34a96b8\";s:7:\"ignoreP\";s:32:\"176e0a38d0206a03cef5d63da34a96b8\";}i:176;a:2:{s:7:\"ignoreC\";s:32:\"24a7d0797991aaff3b20f7cd516e4e2b\";s:7:\"ignoreP\";s:32:\"24a7d0797991aaff3b20f7cd516e4e2b\";}i:177;a:2:{s:7:\"ignoreC\";s:32:\"b5ab19e6df9007872c56c6913bb45224\";s:7:\"ignoreP\";s:32:\"b5ab19e6df9007872c56c6913bb45224\";}i:178;a:2:{s:7:\"ignoreC\";s:32:\"dec0f8cb7702c1ed44c589bd90c5979e\";s:7:\"ignoreP\";s:32:\"dec0f8cb7702c1ed44c589bd90c5979e\";}i:179;a:2:{s:7:\"ignoreC\";s:32:\"edcdfad8ab2030178b994e0113b358f6\";s:7:\"ignoreP\";s:32:\"edcdfad8ab2030178b994e0113b358f6\";}i:180;a:2:{s:7:\"ignoreC\";s:32:\"7fb12cd4aba53c019b1181f6141cff1d\";s:7:\"ignoreP\";s:32:\"7fb12cd4aba53c019b1181f6141cff1d\";}i:181;a:2:{s:7:\"ignoreC\";s:32:\"51a568d4dabe0a96ad686abe3ccb9991\";s:7:\"ignoreP\";s:32:\"51a568d4dabe0a96ad686abe3ccb9991\";}i:182;a:2:{s:7:\"ignoreC\";s:32:\"ad23c5055ff06f44be4ab2c4ce5b8da7\";s:7:\"ignoreP\";s:32:\"ad23c5055ff06f44be4ab2c4ce5b8da7\";}i:183;a:2:{s:7:\"ignoreC\";s:32:\"13600b69f151a566d6a678870f6d6b09\";s:7:\"ignoreP\";s:32:\"9098bb06918c6b31513d707e9f9b2017\";}i:184;a:2:{s:7:\"ignoreC\";s:32:\"3537fd9cbde66ef9a306b6c5a02a1c94\";s:7:\"ignoreP\";s:32:\"466568805c4c47bda96b332e5a37a6d9\";}i:185;a:2:{s:7:\"ignoreC\";s:32:\"dd3e487497c498e64964d03ae38653ee\";s:7:\"ignoreP\";s:32:\"d4175cf89bb09c6755f0eba38f71a3ed\";}i:186;a:2:{s:7:\"ignoreC\";s:32:\"b9bd9a4d11aaeac8944419002d101884\";s:7:\"ignoreP\";s:32:\"b9bd9a4d11aaeac8944419002d101884\";}i:187;a:2:{s:7:\"ignoreC\";s:32:\"ac1f65e51e36b436924402dcd387261b\";s:7:\"ignoreP\";s:32:\"ac1f65e51e36b436924402dcd387261b\";}i:188;a:2:{s:7:\"ignoreC\";s:32:\"f51abc5afdb93fbcb04bd566c9f4eced\";s:7:\"ignoreP\";s:32:\"f51abc5afdb93fbcb04bd566c9f4eced\";}i:189;a:2:{s:7:\"ignoreC\";s:32:\"048be42e5c327b7e1bc8919427a13d58\";s:7:\"ignoreP\";s:32:\"b377e8a9aa3f4bf4dde676e8d32b4f4a\";}i:190;a:2:{s:7:\"ignoreC\";s:32:\"9bab5252be84f912efc076bb6b924292\";s:7:\"ignoreP\";s:32:\"9bab5252be84f912efc076bb6b924292\";}i:191;a:2:{s:7:\"ignoreC\";s:32:\"9739963ff77d90fbe9c804ac1b429fae\";s:7:\"ignoreP\";s:32:\"9739963ff77d90fbe9c804ac1b429fae\";}i:192;a:2:{s:7:\"ignoreC\";s:32:\"09f3ce9b1fbe035cc94055763577eda9\";s:7:\"ignoreP\";s:32:\"09f3ce9b1fbe035cc94055763577eda9\";}i:193;a:2:{s:7:\"ignoreC\";s:32:\"be44a1b119747fbb14eff29ee882c07e\";s:7:\"ignoreP\";s:32:\"be44a1b119747fbb14eff29ee882c07e\";}i:194;a:2:{s:7:\"ignoreC\";s:32:\"bd3796e10d6b9ba233821f02b56d20c3\";s:7:\"ignoreP\";s:32:\"bd3796e10d6b9ba233821f02b56d20c3\";}i:195;a:2:{s:7:\"ignoreC\";s:32:\"d5251dff138155fdc41ee4c959be23e6\";s:7:\"ignoreP\";s:32:\"d5251dff138155fdc41ee4c959be23e6\";}i:196;a:2:{s:7:\"ignoreC\";s:32:\"064f646df7fcf5b9ac06434a677d7b69\";s:7:\"ignoreP\";s:32:\"064f646df7fcf5b9ac06434a677d7b69\";}i:197;a:2:{s:7:\"ignoreC\";s:32:\"b5d99eeb9721f664406ed4451418007e\";s:7:\"ignoreP\";s:32:\"b5d99eeb9721f664406ed4451418007e\";}i:198;a:2:{s:7:\"ignoreC\";s:32:\"fbb8b3a96a291d2b690b4b1432cb196e\";s:7:\"ignoreP\";s:32:\"fbb8b3a96a291d2b690b4b1432cb196e\";}i:199;a:2:{s:7:\"ignoreC\";s:32:\"a15df05145318f17cfe1b18521c8bed4\";s:7:\"ignoreP\";s:32:\"a15df05145318f17cfe1b18521c8bed4\";}i:200;a:2:{s:7:\"ignoreC\";s:32:\"2ef339872c658ea29996276eecd18557\";s:7:\"ignoreP\";s:32:\"2ef339872c658ea29996276eecd18557\";}i:201;a:2:{s:7:\"ignoreC\";s:32:\"dee2641332d36ed1e48cf19ef0cab8d3\";s:7:\"ignoreP\";s:32:\"dee2641332d36ed1e48cf19ef0cab8d3\";}i:202;a:2:{s:7:\"ignoreC\";s:32:\"9e9c61a7b25293cab2c56dcedb08efcb\";s:7:\"ignoreP\";s:32:\"9e9c61a7b25293cab2c56dcedb08efcb\";}i:203;a:2:{s:7:\"ignoreC\";s:32:\"7e4a12cb18409281b35888d44e8da783\";s:7:\"ignoreP\";s:32:\"7e4a12cb18409281b35888d44e8da783\";}i:204;a:2:{s:7:\"ignoreC\";s:32:\"b414d6e187f39b85e5005d016300ae0b\";s:7:\"ignoreP\";s:32:\"b414d6e187f39b85e5005d016300ae0b\";}i:205;a:2:{s:7:\"ignoreC\";s:32:\"056f33a0670a7d8ae4b46385dff3da1c\";s:7:\"ignoreP\";s:32:\"056f33a0670a7d8ae4b46385dff3da1c\";}i:206;a:2:{s:7:\"ignoreC\";s:32:\"729f8ee096b7ab63d1bc4ad2784dabe3\";s:7:\"ignoreP\";s:32:\"729f8ee096b7ab63d1bc4ad2784dabe3\";}i:207;a:2:{s:7:\"ignoreC\";s:32:\"0299d7e8219e49913162b7e5b8554f7c\";s:7:\"ignoreP\";s:32:\"0299d7e8219e49913162b7e5b8554f7c\";}i:208;a:2:{s:7:\"ignoreC\";s:32:\"e6f3247007ed6f1a248df0220b2c27f2\";s:7:\"ignoreP\";s:32:\"e6f3247007ed6f1a248df0220b2c27f2\";}i:209;a:2:{s:7:\"ignoreC\";s:32:\"06ece821b50b19504259edb285fffef0\";s:7:\"ignoreP\";s:32:\"06ece821b50b19504259edb285fffef0\";}i:210;a:2:{s:7:\"ignoreC\";s:32:\"fea9e6ea1d768a7b1ab244e3bedf3119\";s:7:\"ignoreP\";s:32:\"fea9e6ea1d768a7b1ab244e3bedf3119\";}i:211;a:2:{s:7:\"ignoreC\";s:32:\"eccc271f78e1dd9b29d51f206b3746ab\";s:7:\"ignoreP\";s:32:\"eccc271f78e1dd9b29d51f206b3746ab\";}i:212;a:2:{s:7:\"ignoreC\";s:32:\"131433d3359d959a07f4659939ef2bab\";s:7:\"ignoreP\";s:32:\"131433d3359d959a07f4659939ef2bab\";}i:213;a:2:{s:7:\"ignoreC\";s:32:\"8e89e0412e9133c8fe372065d0b32838\";s:7:\"ignoreP\";s:32:\"8e89e0412e9133c8fe372065d0b32838\";}i:214;a:2:{s:7:\"ignoreC\";s:32:\"683f5d76a762d5343c1286700c43e643\";s:7:\"ignoreP\";s:32:\"683f5d76a762d5343c1286700c43e643\";}i:215;a:2:{s:7:\"ignoreC\";s:32:\"214306ef330d9ff4be65163ef7b04cee\";s:7:\"ignoreP\";s:32:\"214306ef330d9ff4be65163ef7b04cee\";}i:216;a:2:{s:7:\"ignoreC\";s:32:\"2536955faddfeac8c762bbdc72ffeb5d\";s:7:\"ignoreP\";s:32:\"2536955faddfeac8c762bbdc72ffeb5d\";}i:217;a:2:{s:7:\"ignoreC\";s:32:\"2c7511cb603e78641f86215b43c70fc9\";s:7:\"ignoreP\";s:32:\"2c7511cb603e78641f86215b43c70fc9\";}i:218;a:2:{s:7:\"ignoreC\";s:32:\"df7583bb46a0b5e906b5ff4429236bf6\";s:7:\"ignoreP\";s:32:\"df7583bb46a0b5e906b5ff4429236bf6\";}i:219;a:2:{s:7:\"ignoreC\";s:32:\"829bd6dae3efc827cffac88316c73e65\";s:7:\"ignoreP\";s:32:\"829bd6dae3efc827cffac88316c73e65\";}i:220;a:2:{s:7:\"ignoreC\";s:32:\"3f9c9118d26fd9863b075b41bdd1c424\";s:7:\"ignoreP\";s:32:\"3f9c9118d26fd9863b075b41bdd1c424\";}i:221;a:2:{s:7:\"ignoreC\";s:32:\"78e1f3d5b2587e70d93bb675e2001e79\";s:7:\"ignoreP\";s:32:\"78e1f3d5b2587e70d93bb675e2001e79\";}i:222;a:2:{s:7:\"ignoreC\";s:32:\"0980eae7b05d9d846fc7c0d8df68abb4\";s:7:\"ignoreP\";s:32:\"0980eae7b05d9d846fc7c0d8df68abb4\";}i:223;a:2:{s:7:\"ignoreC\";s:32:\"6f432b361c253d2f020e8f5bb9492606\";s:7:\"ignoreP\";s:32:\"6f432b361c253d2f020e8f5bb9492606\";}i:224;a:2:{s:7:\"ignoreC\";s:32:\"6c3e34902a9f0741f488459112f6d9e9\";s:7:\"ignoreP\";s:32:\"6c3e34902a9f0741f488459112f6d9e9\";}i:225;a:2:{s:7:\"ignoreC\";s:32:\"cc00fee200e07fa90b5565128c54e471\";s:7:\"ignoreP\";s:32:\"cc00fee200e07fa90b5565128c54e471\";}i:226;a:2:{s:7:\"ignoreC\";s:32:\"6aa2ce2c1c307d061adeea78564774e9\";s:7:\"ignoreP\";s:32:\"6aa2ce2c1c307d061adeea78564774e9\";}i:227;a:2:{s:7:\"ignoreC\";s:32:\"733b4d7b9766e6c912cc77234e050989\";s:7:\"ignoreP\";s:32:\"733b4d7b9766e6c912cc77234e050989\";}i:228;a:2:{s:7:\"ignoreC\";s:32:\"0ff1b8eef7ba152e301512ce02db268c\";s:7:\"ignoreP\";s:32:\"0ff1b8eef7ba152e301512ce02db268c\";}i:229;a:2:{s:7:\"ignoreC\";s:32:\"4e17b15ecf2e72800fa53a874dc7a2ee\";s:7:\"ignoreP\";s:32:\"4e17b15ecf2e72800fa53a874dc7a2ee\";}i:230;a:2:{s:7:\"ignoreC\";s:32:\"25d6f93bbfc239769a15342fc41df49d\";s:7:\"ignoreP\";s:32:\"25d6f93bbfc239769a15342fc41df49d\";}i:231;a:2:{s:7:\"ignoreC\";s:32:\"0b224d72ce27fc9507d7794cc9ffb951\";s:7:\"ignoreP\";s:32:\"0b224d72ce27fc9507d7794cc9ffb951\";}i:232;a:2:{s:7:\"ignoreC\";s:32:\"89dae7352f7b480cd63c8f438975b78e\";s:7:\"ignoreP\";s:32:\"89dae7352f7b480cd63c8f438975b78e\";}i:233;a:2:{s:7:\"ignoreC\";s:32:\"f9f6ad4f71a4a4601de37d2a9628dee0\";s:7:\"ignoreP\";s:32:\"f9f6ad4f71a4a4601de37d2a9628dee0\";}i:234;a:2:{s:7:\"ignoreC\";s:32:\"f8e2c8d636d5812f7602bbf19cbe1b05\";s:7:\"ignoreP\";s:32:\"f8e2c8d636d5812f7602bbf19cbe1b05\";}i:235;a:2:{s:7:\"ignoreC\";s:32:\"58b290b1ae0506aa52c8126159c41123\";s:7:\"ignoreP\";s:32:\"58b290b1ae0506aa52c8126159c41123\";}i:236;a:2:{s:7:\"ignoreC\";s:32:\"249e5e6759f55380365d90cc7f540c19\";s:7:\"ignoreP\";s:32:\"249e5e6759f55380365d90cc7f540c19\";}i:237;a:2:{s:7:\"ignoreC\";s:32:\"93775f8eb42b0820531776fdaf4a1b52\";s:7:\"ignoreP\";s:32:\"93775f8eb42b0820531776fdaf4a1b52\";}i:238;a:2:{s:7:\"ignoreC\";s:32:\"8fa7695a0c96b5567da5e30976f8fe27\";s:7:\"ignoreP\";s:32:\"8fa7695a0c96b5567da5e30976f8fe27\";}i:239;a:2:{s:7:\"ignoreC\";s:32:\"24c8fe0dcf2a022a111035651ba4f8c0\";s:7:\"ignoreP\";s:32:\"24c8fe0dcf2a022a111035651ba4f8c0\";}i:240;a:2:{s:7:\"ignoreC\";s:32:\"b98441497716fa8e083098c1139f5529\";s:7:\"ignoreP\";s:32:\"b98441497716fa8e083098c1139f5529\";}i:241;a:2:{s:7:\"ignoreC\";s:32:\"a83f9e97461c539c3cbca4bd2d9e3692\";s:7:\"ignoreP\";s:32:\"a83f9e97461c539c3cbca4bd2d9e3692\";}i:242;a:2:{s:7:\"ignoreC\";s:32:\"a764a8415bdc98619a8d236a5e4e7f75\";s:7:\"ignoreP\";s:32:\"a764a8415bdc98619a8d236a5e4e7f75\";}i:243;a:2:{s:7:\"ignoreC\";s:32:\"f645a6297cc5259228e8deebefe4bc70\";s:7:\"ignoreP\";s:32:\"f645a6297cc5259228e8deebefe4bc70\";}i:244;a:2:{s:7:\"ignoreC\";s:32:\"03b8054582c55337d595843fc333aa9f\";s:7:\"ignoreP\";s:32:\"03b8054582c55337d595843fc333aa9f\";}i:245;a:2:{s:7:\"ignoreC\";s:32:\"eacbc56b68b0c220ecaf7f9081f72a0b\";s:7:\"ignoreP\";s:32:\"eacbc56b68b0c220ecaf7f9081f72a0b\";}i:246;a:2:{s:7:\"ignoreC\";s:32:\"877c37a34ec788c8cf1e30ece6a24dfa\";s:7:\"ignoreP\";s:32:\"877c37a34ec788c8cf1e30ece6a24dfa\";}i:247;a:2:{s:7:\"ignoreC\";s:32:\"dad0a5213271d74b28c65f617ed4cc1c\";s:7:\"ignoreP\";s:32:\"dad0a5213271d74b28c65f617ed4cc1c\";}i:248;a:2:{s:7:\"ignoreC\";s:32:\"ab3d1373fba1dd6f8da490f721d9cecb\";s:7:\"ignoreP\";s:32:\"ab3d1373fba1dd6f8da490f721d9cecb\";}i:249;a:2:{s:7:\"ignoreC\";s:32:\"32f8d4e8561efc32145262878a64f466\";s:7:\"ignoreP\";s:32:\"32f8d4e8561efc32145262878a64f466\";}i:250;a:2:{s:7:\"ignoreC\";s:32:\"542755f5b6ad4537a25f8d3a1fd162fb\";s:7:\"ignoreP\";s:32:\"542755f5b6ad4537a25f8d3a1fd162fb\";}i:251;a:2:{s:7:\"ignoreC\";s:32:\"cc35f37e82e81f197e9827435f3c4ce7\";s:7:\"ignoreP\";s:32:\"cc35f37e82e81f197e9827435f3c4ce7\";}i:252;a:2:{s:7:\"ignoreC\";s:32:\"200eea8f34988a0170abb37c64389dd7\";s:7:\"ignoreP\";s:32:\"200eea8f34988a0170abb37c64389dd7\";}i:253;a:2:{s:7:\"ignoreC\";s:32:\"cf294282eab8f157d212706e0459e228\";s:7:\"ignoreP\";s:32:\"cf294282eab8f157d212706e0459e228\";}i:254;a:2:{s:7:\"ignoreC\";s:32:\"3606aaeba4fa5dc3fec0a51914eb856d\";s:7:\"ignoreP\";s:32:\"3606aaeba4fa5dc3fec0a51914eb856d\";}i:255;a:2:{s:7:\"ignoreC\";s:32:\"59ad7cfa07f018d9c8559795b59be57c\";s:7:\"ignoreP\";s:32:\"59ad7cfa07f018d9c8559795b59be57c\";}i:256;a:2:{s:7:\"ignoreC\";s:32:\"7b22e9402d7224799e91eaa2d2edfc0b\";s:7:\"ignoreP\";s:32:\"7b22e9402d7224799e91eaa2d2edfc0b\";}i:257;a:2:{s:7:\"ignoreC\";s:32:\"aafff4c199f0e7a38a7615dc32742d54\";s:7:\"ignoreP\";s:32:\"aafff4c199f0e7a38a7615dc32742d54\";}i:258;a:2:{s:7:\"ignoreC\";s:32:\"652d9a3b3696626a894e645427ba3a9e\";s:7:\"ignoreP\";s:32:\"652d9a3b3696626a894e645427ba3a9e\";}i:259;a:2:{s:7:\"ignoreC\";s:32:\"9d3446628f9b75e8ee7dfd7d4d956938\";s:7:\"ignoreP\";s:32:\"9d3446628f9b75e8ee7dfd7d4d956938\";}i:260;a:2:{s:7:\"ignoreC\";s:32:\"b04d177ad67eec42b09432a10a5597fd\";s:7:\"ignoreP\";s:32:\"b04d177ad67eec42b09432a10a5597fd\";}i:261;a:2:{s:7:\"ignoreC\";s:32:\"733a48c95e62fea91c0fbcf606d44eef\";s:7:\"ignoreP\";s:32:\"733a48c95e62fea91c0fbcf606d44eef\";}i:262;a:2:{s:7:\"ignoreC\";s:32:\"be8cb9d5e067fdddca3cf5b9cf0285c7\";s:7:\"ignoreP\";s:32:\"be8cb9d5e067fdddca3cf5b9cf0285c7\";}i:263;a:2:{s:7:\"ignoreC\";s:32:\"b3d3845bbca6ad2f52b4cf4e4a1141be\";s:7:\"ignoreP\";s:32:\"b3d3845bbca6ad2f52b4cf4e4a1141be\";}i:264;a:2:{s:7:\"ignoreC\";s:32:\"d44b64c21404e5d4be707a61aeae23e4\";s:7:\"ignoreP\";s:32:\"d44b64c21404e5d4be707a61aeae23e4\";}i:265;a:2:{s:7:\"ignoreC\";s:32:\"3e4a95f8701aaa91cc4d50ebff6e051f\";s:7:\"ignoreP\";s:32:\"3e4a95f8701aaa91cc4d50ebff6e051f\";}i:266;a:2:{s:7:\"ignoreC\";s:32:\"ad6d835ecb609e3a812fde52ad86cb29\";s:7:\"ignoreP\";s:32:\"ad6d835ecb609e3a812fde52ad86cb29\";}i:267;a:2:{s:7:\"ignoreC\";s:32:\"c5518c9317702cee6f61c5cf69218aeb\";s:7:\"ignoreP\";s:32:\"c5518c9317702cee6f61c5cf69218aeb\";}i:268;a:2:{s:7:\"ignoreC\";s:32:\"ee8a94b3f27034b1e8add8e359de31ef\";s:7:\"ignoreP\";s:32:\"ee8a94b3f27034b1e8add8e359de31ef\";}i:269;a:2:{s:7:\"ignoreC\";s:32:\"05a8153a8fe2755710da962694516c34\";s:7:\"ignoreP\";s:32:\"05a8153a8fe2755710da962694516c34\";}i:270;a:2:{s:7:\"ignoreC\";s:32:\"49ddc3ca64d62c5b98727c80382b426a\";s:7:\"ignoreP\";s:32:\"49ddc3ca64d62c5b98727c80382b426a\";}i:271;a:2:{s:7:\"ignoreC\";s:32:\"7972b7a1d13abc3f757594e6da5e1b59\";s:7:\"ignoreP\";s:32:\"7972b7a1d13abc3f757594e6da5e1b59\";}i:272;a:2:{s:7:\"ignoreC\";s:32:\"68b80abf2016a6566adcb5cdd113171f\";s:7:\"ignoreP\";s:32:\"68b80abf2016a6566adcb5cdd113171f\";}i:273;a:2:{s:7:\"ignoreC\";s:32:\"67e3b8d6aeb03226850b7e2b9c0e0a08\";s:7:\"ignoreP\";s:32:\"67e3b8d6aeb03226850b7e2b9c0e0a08\";}i:274;a:2:{s:7:\"ignoreC\";s:32:\"0adcb837df0f12a33e87d424cf8556fd\";s:7:\"ignoreP\";s:32:\"0adcb837df0f12a33e87d424cf8556fd\";}i:275;a:2:{s:7:\"ignoreC\";s:32:\"45fde9b6700d0ce8afe84a3186639628\";s:7:\"ignoreP\";s:32:\"45fde9b6700d0ce8afe84a3186639628\";}i:276;a:2:{s:7:\"ignoreC\";s:32:\"b4b0fd9b69b3fb7fc60230c3a1353053\";s:7:\"ignoreP\";s:32:\"b4b0fd9b69b3fb7fc60230c3a1353053\";}i:277;a:2:{s:7:\"ignoreC\";s:32:\"f7bccdd636b85ba43984aacd57658b4a\";s:7:\"ignoreP\";s:32:\"f7bccdd636b85ba43984aacd57658b4a\";}i:278;a:2:{s:7:\"ignoreC\";s:32:\"a15c4b68439ba9fafdbb424c2651983b\";s:7:\"ignoreP\";s:32:\"a15c4b68439ba9fafdbb424c2651983b\";}i:279;a:2:{s:7:\"ignoreC\";s:32:\"53c2f5be8f3e790fb501f184333cb8c8\";s:7:\"ignoreP\";s:32:\"53c2f5be8f3e790fb501f184333cb8c8\";}i:280;a:2:{s:7:\"ignoreC\";s:32:\"f52a79d2bfc8fd99b193380613866fe5\";s:7:\"ignoreP\";s:32:\"f52a79d2bfc8fd99b193380613866fe5\";}i:281;a:2:{s:7:\"ignoreC\";s:32:\"bf1d6ab1e4a74332e097244f9ce054a7\";s:7:\"ignoreP\";s:32:\"bf1d6ab1e4a74332e097244f9ce054a7\";}i:282;a:2:{s:7:\"ignoreC\";s:32:\"f087cb2603d04a5a313e2b1104456a8b\";s:7:\"ignoreP\";s:32:\"f087cb2603d04a5a313e2b1104456a8b\";}i:283;a:2:{s:7:\"ignoreC\";s:32:\"adc33715aa90cf329dcdfc41ba564df0\";s:7:\"ignoreP\";s:32:\"adc33715aa90cf329dcdfc41ba564df0\";}i:284;a:2:{s:7:\"ignoreC\";s:32:\"257c835a007c9d0e6cc46adff149045d\";s:7:\"ignoreP\";s:32:\"257c835a007c9d0e6cc46adff149045d\";}i:285;a:2:{s:7:\"ignoreC\";s:32:\"1eeeeb4968a21ffa8f3d693fed9358a4\";s:7:\"ignoreP\";s:32:\"1eeeeb4968a21ffa8f3d693fed9358a4\";}i:286;a:2:{s:7:\"ignoreC\";s:32:\"faac93a472cdc756684c6c8294096b3e\";s:7:\"ignoreP\";s:32:\"faac93a472cdc756684c6c8294096b3e\";}i:287;a:2:{s:7:\"ignoreC\";s:32:\"f89ea59b514d7df9a134c5cbe88136b5\";s:7:\"ignoreP\";s:32:\"f89ea59b514d7df9a134c5cbe88136b5\";}i:288;a:2:{s:7:\"ignoreC\";s:32:\"c02a7525a14c7c456d74fed7dfa7d45d\";s:7:\"ignoreP\";s:32:\"c02a7525a14c7c456d74fed7dfa7d45d\";}i:289;a:2:{s:7:\"ignoreC\";s:32:\"d7cd0917ba02ba0fda6464535fe9f94e\";s:7:\"ignoreP\";s:32:\"d7cd0917ba02ba0fda6464535fe9f94e\";}i:290;a:2:{s:7:\"ignoreC\";s:32:\"287f6bf0ce962749bb28e9b209dd56da\";s:7:\"ignoreP\";s:32:\"287f6bf0ce962749bb28e9b209dd56da\";}i:291;a:2:{s:7:\"ignoreC\";s:32:\"1eb8341a98ed7de70678146b00cfb2f4\";s:7:\"ignoreP\";s:32:\"1eb8341a98ed7de70678146b00cfb2f4\";}i:292;a:2:{s:7:\"ignoreC\";s:32:\"919ea0aeec9aef904f118c3878212252\";s:7:\"ignoreP\";s:32:\"919ea0aeec9aef904f118c3878212252\";}i:293;a:2:{s:7:\"ignoreC\";s:32:\"b4274b9aa4af0cce0717184c0465a715\";s:7:\"ignoreP\";s:32:\"b4274b9aa4af0cce0717184c0465a715\";}i:294;a:2:{s:7:\"ignoreC\";s:32:\"21ea64874c8846a10ce45c0e98d0ea14\";s:7:\"ignoreP\";s:32:\"21ea64874c8846a10ce45c0e98d0ea14\";}i:295;a:2:{s:7:\"ignoreC\";s:32:\"ca4f23194d93c7c992955633e655a761\";s:7:\"ignoreP\";s:32:\"ca4f23194d93c7c992955633e655a761\";}i:296;a:2:{s:7:\"ignoreC\";s:32:\"6fd0d290b978eab8027e6b79501ac149\";s:7:\"ignoreP\";s:32:\"6fd0d290b978eab8027e6b79501ac149\";}i:297;a:2:{s:7:\"ignoreC\";s:32:\"9afbd56a76e873436ef024e4ab419215\";s:7:\"ignoreP\";s:32:\"e4a8bcb31e1cd63ffb3cee4946bfdc9f\";}i:298;a:2:{s:7:\"ignoreC\";s:32:\"eea799bdcba21c5c7ca63390c2bd4086\";s:7:\"ignoreP\";s:32:\"8936c1a6c9b8566fca9cf69b3e1fb2aa\";}i:299;a:2:{s:7:\"ignoreC\";s:32:\"f29a4da5f5510db772a68509c8a658fe\";s:7:\"ignoreP\";s:32:\"f29a4da5f5510db772a68509c8a658fe\";}i:300;a:2:{s:7:\"ignoreC\";s:32:\"39684264108fa70bc1cd7172d91ebc5d\";s:7:\"ignoreP\";s:32:\"39684264108fa70bc1cd7172d91ebc5d\";}i:301;a:2:{s:7:\"ignoreC\";s:32:\"8b0427e4963bdc5a6ebacc8c3f66c73c\";s:7:\"ignoreP\";s:32:\"8b0427e4963bdc5a6ebacc8c3f66c73c\";}i:302;a:2:{s:7:\"ignoreC\";s:32:\"769b3d62230e70ab95dab2575966c477\";s:7:\"ignoreP\";s:32:\"769b3d62230e70ab95dab2575966c477\";}i:303;a:2:{s:7:\"ignoreC\";s:32:\"bca65112fa07c00968243330e695afcd\";s:7:\"ignoreP\";s:32:\"bca65112fa07c00968243330e695afcd\";}i:304;a:2:{s:7:\"ignoreC\";s:32:\"e9c117bf7a4ea630e43c6b810dd17bda\";s:7:\"ignoreP\";s:32:\"e9c117bf7a4ea630e43c6b810dd17bda\";}i:305;a:2:{s:7:\"ignoreC\";s:32:\"990e01c7220648ce34d67cac6c05c8d3\";s:7:\"ignoreP\";s:32:\"990e01c7220648ce34d67cac6c05c8d3\";}i:306;a:2:{s:7:\"ignoreC\";s:32:\"1a38748cecfc0c9ac1e3c3da83f8463b\";s:7:\"ignoreP\";s:32:\"1a38748cecfc0c9ac1e3c3da83f8463b\";}i:307;a:2:{s:7:\"ignoreC\";s:32:\"9255953edcc8f622e84fb4ea2db3bf9c\";s:7:\"ignoreP\";s:32:\"9255953edcc8f622e84fb4ea2db3bf9c\";}i:308;a:2:{s:7:\"ignoreC\";s:32:\"15c85c6671eb37b2e85a56e48cf9a083\";s:7:\"ignoreP\";s:32:\"15c85c6671eb37b2e85a56e48cf9a083\";}i:309;a:2:{s:7:\"ignoreC\";s:32:\"50aa8aac2a1a2d3cc0ed1793e06a1991\";s:7:\"ignoreP\";s:32:\"50aa8aac2a1a2d3cc0ed1793e06a1991\";}i:310;a:2:{s:7:\"ignoreC\";s:32:\"7cbe6dbbdee73b643943450f90310ca7\";s:7:\"ignoreP\";s:32:\"7cbe6dbbdee73b643943450f90310ca7\";}i:311;a:2:{s:7:\"ignoreC\";s:32:\"5c7e93a9ed04ab35eb65f375f704da1f\";s:7:\"ignoreP\";s:32:\"5c7e93a9ed04ab35eb65f375f704da1f\";}i:312;a:2:{s:7:\"ignoreC\";s:32:\"3ca85fbe61ed823ee7430745652e6e83\";s:7:\"ignoreP\";s:32:\"3ca85fbe61ed823ee7430745652e6e83\";}i:313;a:2:{s:7:\"ignoreC\";s:32:\"907657bc7731306b3962b1c164ce2b2f\";s:7:\"ignoreP\";s:32:\"907657bc7731306b3962b1c164ce2b2f\";}i:314;a:2:{s:7:\"ignoreC\";s:32:\"b5d0ac16c0acb402cfa394bb6ccda9bc\";s:7:\"ignoreP\";s:32:\"b5d0ac16c0acb402cfa394bb6ccda9bc\";}i:315;a:2:{s:7:\"ignoreC\";s:32:\"4c6948f678a76a75b57be0e411b53e5d\";s:7:\"ignoreP\";s:32:\"4c6948f678a76a75b57be0e411b53e5d\";}i:316;a:2:{s:7:\"ignoreC\";s:32:\"53d0324134190ae9043f964f8eab0602\";s:7:\"ignoreP\";s:32:\"53d0324134190ae9043f964f8eab0602\";}i:317;a:2:{s:7:\"ignoreC\";s:32:\"e71a71d33b437ac9d7b10e5b9fb723e5\";s:7:\"ignoreP\";s:32:\"e71a71d33b437ac9d7b10e5b9fb723e5\";}i:318;a:2:{s:7:\"ignoreC\";s:32:\"1b91bb9c4455838a7da0175a9f915941\";s:7:\"ignoreP\";s:32:\"1b91bb9c4455838a7da0175a9f915941\";}i:319;a:2:{s:7:\"ignoreC\";s:32:\"d9c96074c15b7ed5ba1fae9bc855b782\";s:7:\"ignoreP\";s:32:\"d9c96074c15b7ed5ba1fae9bc855b782\";}i:320;a:2:{s:7:\"ignoreC\";s:32:\"ff779215f3cbb1188c4d912b1a81f2dd\";s:7:\"ignoreP\";s:32:\"ff779215f3cbb1188c4d912b1a81f2dd\";}i:321;a:2:{s:7:\"ignoreC\";s:32:\"6a45f30db87ab4fb524b5f13102bd0fb\";s:7:\"ignoreP\";s:32:\"6a45f30db87ab4fb524b5f13102bd0fb\";}i:322;a:2:{s:7:\"ignoreC\";s:32:\"37aeb8fcee8342ec930f886d2ff30cf3\";s:7:\"ignoreP\";s:32:\"37aeb8fcee8342ec930f886d2ff30cf3\";}i:323;a:2:{s:7:\"ignoreC\";s:32:\"cd691bafb23ba6c24c7ccd9a7c5bad73\";s:7:\"ignoreP\";s:32:\"cd691bafb23ba6c24c7ccd9a7c5bad73\";}i:324;a:2:{s:7:\"ignoreC\";s:32:\"1d6aa494b68afa480ff98a29e8dd9258\";s:7:\"ignoreP\";s:32:\"1d6aa494b68afa480ff98a29e8dd9258\";}i:325;a:2:{s:7:\"ignoreC\";s:32:\"65433ae2909315fd7071891c3dd0b3c8\";s:7:\"ignoreP\";s:32:\"65433ae2909315fd7071891c3dd0b3c8\";}i:326;a:2:{s:7:\"ignoreC\";s:32:\"2271caeea1d9316d0420455dcdf16b69\";s:7:\"ignoreP\";s:32:\"2271caeea1d9316d0420455dcdf16b69\";}i:327;a:2:{s:7:\"ignoreC\";s:32:\"a7f7817f0891862bc7cc774892cab024\";s:7:\"ignoreP\";s:32:\"9a9a51e617ef3c2c7bba75d8ccd533a6\";}i:328;a:2:{s:7:\"ignoreC\";s:32:\"d38b7ca2ed551d7625a515bb13b3661c\";s:7:\"ignoreP\";s:32:\"950b5610c3eb51f3f1a33eec7700ed10\";}i:329;a:2:{s:7:\"ignoreC\";s:32:\"f9315049fc34e18465dc9b454149c680\";s:7:\"ignoreP\";s:32:\"e7f935aab76e056c6db3c6f8de68a33c\";}i:330;a:2:{s:7:\"ignoreC\";s:32:\"054b3559c59f10799e6b25e960cad37e\";s:7:\"ignoreP\";s:32:\"68771a4521da1746b18137e2902d6f4a\";}i:331;a:2:{s:7:\"ignoreC\";s:32:\"c02a40a38a0e3ed8be69315409ea68fa\";s:7:\"ignoreP\";s:32:\"2d85bcd16b5e60f3a2e56932620ad5de\";}i:332;a:2:{s:7:\"ignoreC\";s:32:\"ff61606a09e81bce97d7550172815f32\";s:7:\"ignoreP\";s:32:\"8de7b42c0e46de89c255d4c717cd2753\";}i:333;a:2:{s:7:\"ignoreC\";s:32:\"ca48571e5b9bec15e2a6785f212cb998\";s:7:\"ignoreP\";s:32:\"70becbb312452dd8f94e5c0a924b5f35\";}i:334;a:2:{s:7:\"ignoreC\";s:32:\"b319b907e1a9f180e7955e2bc7a151a8\";s:7:\"ignoreP\";s:32:\"a05f58280ae1f008ded3ebfb34f6fcec\";}i:335;a:2:{s:7:\"ignoreC\";s:32:\"6b42bf4db6555f18737b2cf2c12d87c6\";s:7:\"ignoreP\";s:32:\"a649872068a7043a49f0906f3e4bb105\";}i:336;a:2:{s:7:\"ignoreC\";s:32:\"24883b42b01c15695f9da53b807db3bc\";s:7:\"ignoreP\";s:32:\"a3f889fcdfa9367834fb29558b380814\";}i:337;a:2:{s:7:\"ignoreC\";s:32:\"8f5f9adaeb7609601c05bb2ff74b149f\";s:7:\"ignoreP\";s:32:\"ec3d29be0bad86edcc28838685cfd3d1\";}i:338;a:2:{s:7:\"ignoreC\";s:32:\"885759a100cb1e1faf187ed979467dbe\";s:7:\"ignoreP\";s:32:\"2acfb31d37c04ba40f4cc3f701974e94\";}i:339;a:2:{s:7:\"ignoreC\";s:32:\"b0e24e43a7033fe074c7a9aea7a13a79\";s:7:\"ignoreP\";s:32:\"d9db3f9ed72ea7dfa101c54e4ce0b93e\";}i:340;a:2:{s:7:\"ignoreC\";s:32:\"f79a76fb8f8f905483c4fa8f7f65df76\";s:7:\"ignoreP\";s:32:\"1020745154ef04d297653ec1ca7273d7\";}i:341;a:2:{s:7:\"ignoreC\";s:32:\"e959ca4ec233149e7b12daca42774366\";s:7:\"ignoreP\";s:32:\"e8a73c7ca564ed6d551842e018a9a8dd\";}i:342;a:2:{s:7:\"ignoreC\";s:32:\"ec3bdd58172438dc0a18fafcb4a562fb\";s:7:\"ignoreP\";s:32:\"f6c9e366324f25517a31b944cfa1253c\";}i:343;a:2:{s:7:\"ignoreC\";s:32:\"64874f9154498ff55df0f35a29e3d372\";s:7:\"ignoreP\";s:32:\"d8b41d820108050f34a7d572c59829bc\";}i:344;a:2:{s:7:\"ignoreC\";s:32:\"83e781c52ea54d51f148f9fa144064e6\";s:7:\"ignoreP\";s:32:\"01495f1840b88a1cab720ad17d96bb10\";}i:345;a:2:{s:7:\"ignoreC\";s:32:\"e8136799a1b7f74bf4bb8eb4208ceee7\";s:7:\"ignoreP\";s:32:\"a5f913db5c2724e8cd7d788d7b86f37c\";}i:346;a:2:{s:7:\"ignoreC\";s:32:\"87186779642d85f3399fa46c97d9a753\";s:7:\"ignoreP\";s:32:\"2ad4273bb4d299033d23e7e1d153ee97\";}i:347;a:2:{s:7:\"ignoreC\";s:32:\"15686cdb8aad4323ae05e904f4b15ea2\";s:7:\"ignoreP\";s:32:\"a50b1a77d113dc0f865de02745875463\";}i:348;a:2:{s:7:\"ignoreC\";s:32:\"edf97db02bbb1c4486690b00cb2aee06\";s:7:\"ignoreP\";s:32:\"2815a3de1a538e2207524c20f4658320\";}i:349;a:2:{s:7:\"ignoreC\";s:32:\"1cceb43ccc981af9072d6794aaa5307c\";s:7:\"ignoreP\";s:32:\"d4842eedc372e751ecd07ce31324f2d2\";}i:350;a:2:{s:7:\"ignoreC\";s:32:\"fb8e46a49e3d1f433ddb39d2650acf06\";s:7:\"ignoreP\";s:32:\"03b3f04e6384c196736c58b1904a234f\";}i:351;a:2:{s:7:\"ignoreC\";s:32:\"40733660152f429e6671d1a96ad2dbc0\";s:7:\"ignoreP\";s:32:\"f366320dc031da1f610a76a2894b0f87\";}i:352;a:2:{s:7:\"ignoreC\";s:32:\"8aa17fa47cdb7fc5437f340e9d05d184\";s:7:\"ignoreP\";s:32:\"cf39b5d62219cfc8a48dc255e2b86c4b\";}i:353;a:2:{s:7:\"ignoreC\";s:32:\"e1f2bd23cb48acbd34905bb0b9cf2156\";s:7:\"ignoreP\";s:32:\"385c6f72018e0f22601bcebd4d11dabc\";}i:354;a:2:{s:7:\"ignoreC\";s:32:\"b05e872472e128990e7426d0c9e32b44\";s:7:\"ignoreP\";s:32:\"7215ef214348479ad0036f466645151c\";}i:355;a:2:{s:7:\"ignoreC\";s:32:\"c0c85dfdd921bd1ea54dbd279e8843ff\";s:7:\"ignoreP\";s:32:\"b062c502655a9501c5bce2c6be96cfca\";}i:356;a:2:{s:7:\"ignoreC\";s:32:\"e90d28d85edd1d3a5dc0f4e1acadc8db\";s:7:\"ignoreP\";s:32:\"1d47739583b12671f3165d5e07602bf3\";}i:357;a:2:{s:7:\"ignoreC\";s:32:\"a54f81d3e53590570c9d096669ed0c6f\";s:7:\"ignoreP\";s:32:\"1364a98246a019a0a7683e39404cdd24\";}i:358;a:2:{s:7:\"ignoreC\";s:32:\"36e673783c8d709076b35ad6071d00e3\";s:7:\"ignoreP\";s:32:\"f103fd120ea95ef9d8890faf899915d1\";}i:359;a:2:{s:7:\"ignoreC\";s:32:\"e145c7af5f49f9c0c0adf51acac6b862\";s:7:\"ignoreP\";s:32:\"23ad76f9f2b033886797fdea081b135f\";}i:360;a:2:{s:7:\"ignoreC\";s:32:\"f0b9470126cdaf846904783740d2669a\";s:7:\"ignoreP\";s:32:\"efe38302c2976d5ca9bde2bfaa8af2ac\";}i:361;a:2:{s:7:\"ignoreC\";s:32:\"e4e5f8eece6c68d662bed4b63a3f279c\";s:7:\"ignoreP\";s:32:\"9fda2d62b6b03d860b9c4eb528204fc5\";}i:362;a:2:{s:7:\"ignoreC\";s:32:\"5e4f86cf75abf97bce32b83fb2d178b1\";s:7:\"ignoreP\";s:32:\"8d768fa844ab4f5835b3f40129a4244e\";}i:363;a:2:{s:7:\"ignoreC\";s:32:\"40eb0e80e84826ce2cc70d6c6294d6d9\";s:7:\"ignoreP\";s:32:\"47ad11b1b6b926a43052d89dfdc271d9\";}i:364;a:2:{s:7:\"ignoreC\";s:32:\"f985bc160626f25e39ce3a301b5a1371\";s:7:\"ignoreP\";s:32:\"f985bc160626f25e39ce3a301b5a1371\";}i:365;a:2:{s:7:\"ignoreC\";s:32:\"275ed34646f0f6e9c7e92af889d898a5\";s:7:\"ignoreP\";s:32:\"275ed34646f0f6e9c7e92af889d898a5\";}i:366;a:2:{s:7:\"ignoreC\";s:32:\"8ccbe523a93219c70c19908ae0e6fa32\";s:7:\"ignoreP\";s:32:\"8ccbe523a93219c70c19908ae0e6fa32\";}i:367;a:2:{s:7:\"ignoreC\";s:32:\"14c37035f5bb1ca47296258f45e54634\";s:7:\"ignoreP\";s:32:\"14c37035f5bb1ca47296258f45e54634\";}i:368;a:2:{s:7:\"ignoreC\";s:32:\"cead24e17311fcdc8f276d21abfcc4fe\";s:7:\"ignoreP\";s:32:\"cead24e17311fcdc8f276d21abfcc4fe\";}i:369;a:2:{s:7:\"ignoreC\";s:32:\"c69b7df50bbe0391e624b8d55eec95b1\";s:7:\"ignoreP\";s:32:\"c69b7df50bbe0391e624b8d55eec95b1\";}i:370;a:2:{s:7:\"ignoreC\";s:32:\"e1ad2b91c62a2261237767a48477e0f0\";s:7:\"ignoreP\";s:32:\"e1ad2b91c62a2261237767a48477e0f0\";}i:371;a:2:{s:7:\"ignoreC\";s:32:\"3c6ff1aa5b716e0a130934e5e9fd4fa6\";s:7:\"ignoreP\";s:32:\"3c6ff1aa5b716e0a130934e5e9fd4fa6\";}i:372;a:2:{s:7:\"ignoreC\";s:32:\"ebb93ff5156e38099193e8a7a3acf996\";s:7:\"ignoreP\";s:32:\"ebb93ff5156e38099193e8a7a3acf996\";}i:373;a:2:{s:7:\"ignoreC\";s:32:\"bb513631a93a1131ed1cb995536976eb\";s:7:\"ignoreP\";s:32:\"bb513631a93a1131ed1cb995536976eb\";}i:374;a:2:{s:7:\"ignoreC\";s:32:\"b0ac56e5e26885d8690b7862c19c1f29\";s:7:\"ignoreP\";s:32:\"b0ac56e5e26885d8690b7862c19c1f29\";}i:375;a:2:{s:7:\"ignoreC\";s:32:\"480d35a04e76ff7ce1cf5369aa2fffbc\";s:7:\"ignoreP\";s:32:\"480d35a04e76ff7ce1cf5369aa2fffbc\";}i:376;a:2:{s:7:\"ignoreC\";s:32:\"a462bf636f44c21760c14015f55f184d\";s:7:\"ignoreP\";s:32:\"a462bf636f44c21760c14015f55f184d\";}i:377;a:2:{s:7:\"ignoreC\";s:32:\"28307431240ae3a7b7c28f97461aa4e2\";s:7:\"ignoreP\";s:32:\"28307431240ae3a7b7c28f97461aa4e2\";}i:378;a:2:{s:7:\"ignoreC\";s:32:\"d6fc6fc7645ddf6f7805a8fbdd8ed919\";s:7:\"ignoreP\";s:32:\"d6fc6fc7645ddf6f7805a8fbdd8ed919\";}i:379;a:2:{s:7:\"ignoreC\";s:32:\"e17aabda2b0e367ed8f88a4f73a119f4\";s:7:\"ignoreP\";s:32:\"e17aabda2b0e367ed8f88a4f73a119f4\";}i:380;a:2:{s:7:\"ignoreC\";s:32:\"2e741e94eba90698be473e93a1144435\";s:7:\"ignoreP\";s:32:\"2e741e94eba90698be473e93a1144435\";}i:381;a:2:{s:7:\"ignoreC\";s:32:\"9f1269b1cd46ff92ecb0ef82174a6a9c\";s:7:\"ignoreP\";s:32:\"9f1269b1cd46ff92ecb0ef82174a6a9c\";}i:382;a:2:{s:7:\"ignoreC\";s:32:\"6d35c6e5ebbf66ab1ebf23e09ee44031\";s:7:\"ignoreP\";s:32:\"6d35c6e5ebbf66ab1ebf23e09ee44031\";}i:383;a:2:{s:7:\"ignoreC\";s:32:\"1e29be58eb27f4070fe8d123b9495a34\";s:7:\"ignoreP\";s:32:\"1e29be58eb27f4070fe8d123b9495a34\";}i:384;a:2:{s:7:\"ignoreC\";s:32:\"9a94bc046e5961a912b971327d3b6ab2\";s:7:\"ignoreP\";s:32:\"9a94bc046e5961a912b971327d3b6ab2\";}i:385;a:2:{s:7:\"ignoreC\";s:32:\"605ec6033665c954823688eb9d290275\";s:7:\"ignoreP\";s:32:\"605ec6033665c954823688eb9d290275\";}i:386;a:2:{s:7:\"ignoreC\";s:32:\"45a3424f421de4c2e1a3905cdad35f99\";s:7:\"ignoreP\";s:32:\"45a3424f421de4c2e1a3905cdad35f99\";}i:387;a:2:{s:7:\"ignoreC\";s:32:\"9bebef795005c61c2f54efae33ea9df4\";s:7:\"ignoreP\";s:32:\"9bebef795005c61c2f54efae33ea9df4\";}i:388;a:2:{s:7:\"ignoreC\";s:32:\"a01342ecc6a39cd6c4c74d1b0e891a73\";s:7:\"ignoreP\";s:32:\"a01342ecc6a39cd6c4c74d1b0e891a73\";}i:389;a:2:{s:7:\"ignoreC\";s:32:\"5cb52f269f736373aeac4f826edeaf3d\";s:7:\"ignoreP\";s:32:\"5cb52f269f736373aeac4f826edeaf3d\";}i:390;a:2:{s:7:\"ignoreC\";s:32:\"a72ff98b57e45c0069348d0fc117581f\";s:7:\"ignoreP\";s:32:\"a72ff98b57e45c0069348d0fc117581f\";}i:391;a:2:{s:7:\"ignoreC\";s:32:\"dc8c470957e93c173c504d9cd5ef74d3\";s:7:\"ignoreP\";s:32:\"dc8c470957e93c173c504d9cd5ef74d3\";}i:392;a:2:{s:7:\"ignoreC\";s:32:\"9b8c8e4dd0ec8c423a55b43517ac1faf\";s:7:\"ignoreP\";s:32:\"9b8c8e4dd0ec8c423a55b43517ac1faf\";}i:393;a:2:{s:7:\"ignoreC\";s:32:\"82988a3ae68688bc4112d8cd166c7dbe\";s:7:\"ignoreP\";s:32:\"82988a3ae68688bc4112d8cd166c7dbe\";}i:394;a:2:{s:7:\"ignoreC\";s:32:\"309fe430e4c745713f78ddbac461b60d\";s:7:\"ignoreP\";s:32:\"309fe430e4c745713f78ddbac461b60d\";}i:395;a:2:{s:7:\"ignoreC\";s:32:\"d1adb2a6d9a45e9e7836c0d90cfb4534\";s:7:\"ignoreP\";s:32:\"d1adb2a6d9a45e9e7836c0d90cfb4534\";}i:396;a:2:{s:7:\"ignoreC\";s:32:\"1f9bba5b7dfcab5ad2c93103e70e21bc\";s:7:\"ignoreP\";s:32:\"1f9bba5b7dfcab5ad2c93103e70e21bc\";}i:397;a:2:{s:7:\"ignoreC\";s:32:\"b7dde09efb1d72499b52b11d519c9810\";s:7:\"ignoreP\";s:32:\"b7dde09efb1d72499b52b11d519c9810\";}i:398;a:2:{s:7:\"ignoreC\";s:32:\"d8c1ebda83a6231d5cd2a35cb93ba4e2\";s:7:\"ignoreP\";s:32:\"d8c1ebda83a6231d5cd2a35cb93ba4e2\";}i:399;a:2:{s:7:\"ignoreC\";s:32:\"cc47a0c8b157f303642678602e0617ad\";s:7:\"ignoreP\";s:32:\"cc47a0c8b157f303642678602e0617ad\";}i:400;a:2:{s:7:\"ignoreC\";s:32:\"d734e2296a489b54b72599326acfb21b\";s:7:\"ignoreP\";s:32:\"d734e2296a489b54b72599326acfb21b\";}i:401;a:2:{s:7:\"ignoreC\";s:32:\"30d0c13105fb6f9054a6739498aae80c\";s:7:\"ignoreP\";s:32:\"30d0c13105fb6f9054a6739498aae80c\";}i:402;a:2:{s:7:\"ignoreC\";s:32:\"eaa20d0a30450cad70d2fe3b3673186f\";s:7:\"ignoreP\";s:32:\"eaa20d0a30450cad70d2fe3b3673186f\";}i:403;a:2:{s:7:\"ignoreC\";s:32:\"689575efc9559dbcad4c618cbab83132\";s:7:\"ignoreP\";s:32:\"689575efc9559dbcad4c618cbab83132\";}i:404;a:2:{s:7:\"ignoreC\";s:32:\"f85b2bacdaef5b357f5ef4139063d188\";s:7:\"ignoreP\";s:32:\"f85b2bacdaef5b357f5ef4139063d188\";}i:405;a:2:{s:7:\"ignoreC\";s:32:\"02f559b2ed7e4368c3b8e000fc65004e\";s:7:\"ignoreP\";s:32:\"02f559b2ed7e4368c3b8e000fc65004e\";}i:406;a:2:{s:7:\"ignoreC\";s:32:\"beeccfe2b8ae32bd1767cb3b7008ac74\";s:7:\"ignoreP\";s:32:\"beeccfe2b8ae32bd1767cb3b7008ac74\";}i:407;a:2:{s:7:\"ignoreC\";s:32:\"fed48ad9d33cedd58a42995912ee5bb4\";s:7:\"ignoreP\";s:32:\"fed48ad9d33cedd58a42995912ee5bb4\";}i:408;a:2:{s:7:\"ignoreC\";s:32:\"de934c7a0e9ed56ef0dbb9b1079b4bdf\";s:7:\"ignoreP\";s:32:\"de934c7a0e9ed56ef0dbb9b1079b4bdf\";}i:409;a:2:{s:7:\"ignoreC\";s:32:\"dac65c5a34835046b19653e34f3cc6c0\";s:7:\"ignoreP\";s:32:\"dac65c5a34835046b19653e34f3cc6c0\";}i:410;a:2:{s:7:\"ignoreC\";s:32:\"88dc48066ce0e5f3f7c513dd76d32cbe\";s:7:\"ignoreP\";s:32:\"88dc48066ce0e5f3f7c513dd76d32cbe\";}i:411;a:2:{s:7:\"ignoreC\";s:32:\"208295976de5055ee3afb89931b87ea7\";s:7:\"ignoreP\";s:32:\"208295976de5055ee3afb89931b87ea7\";}i:412;a:2:{s:7:\"ignoreC\";s:32:\"855015cdd94f1426cd697ac83b7bc43f\";s:7:\"ignoreP\";s:32:\"855015cdd94f1426cd697ac83b7bc43f\";}i:413;a:2:{s:7:\"ignoreC\";s:32:\"9705647199f0ed8396cd80af21f374d4\";s:7:\"ignoreP\";s:32:\"9705647199f0ed8396cd80af21f374d4\";}i:414;a:2:{s:7:\"ignoreC\";s:32:\"ba7e7c1b17dc5c7358455672baad990e\";s:7:\"ignoreP\";s:32:\"ba7e7c1b17dc5c7358455672baad990e\";}i:415;a:2:{s:7:\"ignoreC\";s:32:\"958b1ddb5e71ac9c53d581be586ee20a\";s:7:\"ignoreP\";s:32:\"958b1ddb5e71ac9c53d581be586ee20a\";}i:416;a:2:{s:7:\"ignoreC\";s:32:\"d3724fbdab1d0b21d9b63825083a0670\";s:7:\"ignoreP\";s:32:\"d3724fbdab1d0b21d9b63825083a0670\";}i:417;a:2:{s:7:\"ignoreC\";s:32:\"ab5d3827df741166434a3132a7cc8580\";s:7:\"ignoreP\";s:32:\"ab5d3827df741166434a3132a7cc8580\";}i:418;a:2:{s:7:\"ignoreC\";s:32:\"ec1ec3971575ee76c93025db677260f1\";s:7:\"ignoreP\";s:32:\"ec1ec3971575ee76c93025db677260f1\";}i:419;a:2:{s:7:\"ignoreC\";s:32:\"ab009ffa758946f65c2d4cf85e551d10\";s:7:\"ignoreP\";s:32:\"ab009ffa758946f65c2d4cf85e551d10\";}i:420;a:2:{s:7:\"ignoreC\";s:32:\"e2173c16eae45f2d5aa13d40f5ac4e32\";s:7:\"ignoreP\";s:32:\"e2173c16eae45f2d5aa13d40f5ac4e32\";}i:421;a:2:{s:7:\"ignoreC\";s:32:\"a8b77710b5f452939dcad3bc5e9aad7f\";s:7:\"ignoreP\";s:32:\"a8b77710b5f452939dcad3bc5e9aad7f\";}i:422;a:2:{s:7:\"ignoreC\";s:32:\"fb93d606872cbf63932658fe97040f77\";s:7:\"ignoreP\";s:32:\"fb93d606872cbf63932658fe97040f77\";}i:423;a:2:{s:7:\"ignoreC\";s:32:\"f67d5c23120e90da11a137ce6dcf20c2\";s:7:\"ignoreP\";s:32:\"f67d5c23120e90da11a137ce6dcf20c2\";}i:424;a:2:{s:7:\"ignoreC\";s:32:\"1b02bdc0c93382d8f083929258409fee\";s:7:\"ignoreP\";s:32:\"1b02bdc0c93382d8f083929258409fee\";}i:425;a:2:{s:7:\"ignoreC\";s:32:\"6307c11a760360f1134a4e033ed147c7\";s:7:\"ignoreP\";s:32:\"6307c11a760360f1134a4e033ed147c7\";}i:426;a:2:{s:7:\"ignoreC\";s:32:\"7672c6149c715fa74089fb43ef1b6112\";s:7:\"ignoreP\";s:32:\"7672c6149c715fa74089fb43ef1b6112\";}i:427;a:2:{s:7:\"ignoreC\";s:32:\"dd679a2c914bb00c41ccf9229a5e71af\";s:7:\"ignoreP\";s:32:\"dd679a2c914bb00c41ccf9229a5e71af\";}i:428;a:2:{s:7:\"ignoreC\";s:32:\"62c5da26f9361389f298919ab2aaf790\";s:7:\"ignoreP\";s:32:\"62c5da26f9361389f298919ab2aaf790\";}i:429;a:2:{s:7:\"ignoreC\";s:32:\"01be929896dc8ebe5bb0ba4bfb247c55\";s:7:\"ignoreP\";s:32:\"01be929896dc8ebe5bb0ba4bfb247c55\";}i:430;a:2:{s:7:\"ignoreC\";s:32:\"b9b61fddc435b42b229cd0f6bc0c94d6\";s:7:\"ignoreP\";s:32:\"b9b61fddc435b42b229cd0f6bc0c94d6\";}i:431;a:2:{s:7:\"ignoreC\";s:32:\"e1117fccc846b035c1dcadae59befb65\";s:7:\"ignoreP\";s:32:\"e1117fccc846b035c1dcadae59befb65\";}i:432;a:2:{s:7:\"ignoreC\";s:32:\"2782bfd02ccdc3ba291b21a95e8f3595\";s:7:\"ignoreP\";s:32:\"2782bfd02ccdc3ba291b21a95e8f3595\";}i:433;a:2:{s:7:\"ignoreC\";s:32:\"60bf7863265899c64b9d6a255c09e853\";s:7:\"ignoreP\";s:32:\"60bf7863265899c64b9d6a255c09e853\";}i:434;a:2:{s:7:\"ignoreC\";s:32:\"157a97697c5e64fe18fc2c0ed6eebcf7\";s:7:\"ignoreP\";s:32:\"157a97697c5e64fe18fc2c0ed6eebcf7\";}i:435;a:2:{s:7:\"ignoreC\";s:32:\"aefc64fd5b99a40ac55b990fb6751171\";s:7:\"ignoreP\";s:32:\"aefc64fd5b99a40ac55b990fb6751171\";}i:436;a:2:{s:7:\"ignoreC\";s:32:\"007ccb3d7c3757d10ba5a68179cc30ac\";s:7:\"ignoreP\";s:32:\"007ccb3d7c3757d10ba5a68179cc30ac\";}i:437;a:2:{s:7:\"ignoreC\";s:32:\"6d11d834dca62f95dc66ab8591f145ea\";s:7:\"ignoreP\";s:32:\"6d11d834dca62f95dc66ab8591f145ea\";}i:438;a:2:{s:7:\"ignoreC\";s:32:\"a8bfdbcac3423122ad5f0b5ca89c2ef4\";s:7:\"ignoreP\";s:32:\"a8bfdbcac3423122ad5f0b5ca89c2ef4\";}i:439;a:2:{s:7:\"ignoreC\";s:32:\"aea6fbbf16bd7f770ee5580d75fab4c3\";s:7:\"ignoreP\";s:32:\"aea6fbbf16bd7f770ee5580d75fab4c3\";}i:440;a:2:{s:7:\"ignoreC\";s:32:\"487e88d28437c6f2e05b6a2be3666a9d\";s:7:\"ignoreP\";s:32:\"487e88d28437c6f2e05b6a2be3666a9d\";}i:441;a:2:{s:7:\"ignoreC\";s:32:\"6854edb770ed1d9737389778aee9c7c1\";s:7:\"ignoreP\";s:32:\"6854edb770ed1d9737389778aee9c7c1\";}i:442;a:2:{s:7:\"ignoreC\";s:32:\"63be68f4b12b0e075bbf9c11667e9ff2\";s:7:\"ignoreP\";s:32:\"63be68f4b12b0e075bbf9c11667e9ff2\";}i:443;a:2:{s:7:\"ignoreC\";s:32:\"83e091803c0ee5d8c0e1c376164cb5b0\";s:7:\"ignoreP\";s:32:\"83e091803c0ee5d8c0e1c376164cb5b0\";}i:444;a:2:{s:7:\"ignoreC\";s:32:\"36c2ef68877660a2dcef33af79c04d6c\";s:7:\"ignoreP\";s:32:\"36c2ef68877660a2dcef33af79c04d6c\";}i:445;a:2:{s:7:\"ignoreC\";s:32:\"2c89eab809a673b804b8d82215f12544\";s:7:\"ignoreP\";s:32:\"2c89eab809a673b804b8d82215f12544\";}i:446;a:2:{s:7:\"ignoreC\";s:32:\"b334e16905edf5d9810fac6331b46c6f\";s:7:\"ignoreP\";s:32:\"b334e16905edf5d9810fac6331b46c6f\";}i:447;a:2:{s:7:\"ignoreC\";s:32:\"bc26f23a35d08e1f872f15e44a2da0b2\";s:7:\"ignoreP\";s:32:\"bc26f23a35d08e1f872f15e44a2da0b2\";}i:448;a:2:{s:7:\"ignoreC\";s:32:\"599cd1d797e90b7c52331cc1af89d4cf\";s:7:\"ignoreP\";s:32:\"599cd1d797e90b7c52331cc1af89d4cf\";}i:449;a:2:{s:7:\"ignoreC\";s:32:\"352c308aaf524cc48acba5fd32798de4\";s:7:\"ignoreP\";s:32:\"352c308aaf524cc48acba5fd32798de4\";}i:450;a:2:{s:7:\"ignoreC\";s:32:\"624a181c6f0d1456426ffc7f6c6aaeaf\";s:7:\"ignoreP\";s:32:\"624a181c6f0d1456426ffc7f6c6aaeaf\";}i:451;a:2:{s:7:\"ignoreC\";s:32:\"809a00a820992ca39d5dde43ad3838cb\";s:7:\"ignoreP\";s:32:\"809a00a820992ca39d5dde43ad3838cb\";}i:452;a:2:{s:7:\"ignoreC\";s:32:\"b1d3d0651fa45e5e542fcf47414a3547\";s:7:\"ignoreP\";s:32:\"b1d3d0651fa45e5e542fcf47414a3547\";}i:453;a:2:{s:7:\"ignoreC\";s:32:\"88271d5c95de82a9bf2757f13d67f291\";s:7:\"ignoreP\";s:32:\"88271d5c95de82a9bf2757f13d67f291\";}i:454;a:2:{s:7:\"ignoreC\";s:32:\"f2b1ac141289a1ca7eb1f2877cc1fa00\";s:7:\"ignoreP\";s:32:\"f2b1ac141289a1ca7eb1f2877cc1fa00\";}i:455;a:2:{s:7:\"ignoreC\";s:32:\"7b4676cc0f38cef2e186c9001d23109c\";s:7:\"ignoreP\";s:32:\"7b4676cc0f38cef2e186c9001d23109c\";}i:456;a:2:{s:7:\"ignoreC\";s:32:\"8ab0b21ca9f3b253a223b64c5ee84f87\";s:7:\"ignoreP\";s:32:\"8ab0b21ca9f3b253a223b64c5ee84f87\";}i:457;a:2:{s:7:\"ignoreC\";s:32:\"dd91830e4fb355ef82f4a0f9a3125bf6\";s:7:\"ignoreP\";s:32:\"dd91830e4fb355ef82f4a0f9a3125bf6\";}i:458;a:2:{s:7:\"ignoreC\";s:32:\"d2824953da6aaed5409217806e11bb46\";s:7:\"ignoreP\";s:32:\"d2824953da6aaed5409217806e11bb46\";}i:459;a:2:{s:7:\"ignoreC\";s:32:\"396f7b97f987420c1afbb090d5183796\";s:7:\"ignoreP\";s:32:\"396f7b97f987420c1afbb090d5183796\";}i:460;a:2:{s:7:\"ignoreC\";s:32:\"132b50f79a6a5e789e0abf187fe03745\";s:7:\"ignoreP\";s:32:\"132b50f79a6a5e789e0abf187fe03745\";}i:461;a:2:{s:7:\"ignoreC\";s:32:\"ddc239eb68bb665eea870593e170ab76\";s:7:\"ignoreP\";s:32:\"ddc239eb68bb665eea870593e170ab76\";}i:462;a:2:{s:7:\"ignoreC\";s:32:\"dbb1c8c858a25534d861ace1e73ef03f\";s:7:\"ignoreP\";s:32:\"dbb1c8c858a25534d861ace1e73ef03f\";}i:463;a:2:{s:7:\"ignoreC\";s:32:\"ce5c3c3612915689af4db77b320e11e8\";s:7:\"ignoreP\";s:32:\"ce5c3c3612915689af4db77b320e11e8\";}i:464;a:2:{s:7:\"ignoreC\";s:32:\"387b1895486bedc87384b9b5c6a01ee9\";s:7:\"ignoreP\";s:32:\"387b1895486bedc87384b9b5c6a01ee9\";}i:465;a:2:{s:7:\"ignoreC\";s:32:\"ed5239ffb8e6bbbcd7f549f850db2de9\";s:7:\"ignoreP\";s:32:\"ed5239ffb8e6bbbcd7f549f850db2de9\";}i:466;a:2:{s:7:\"ignoreC\";s:32:\"032de087bb632f3184b8a3e4e9a5e8bb\";s:7:\"ignoreP\";s:32:\"032de087bb632f3184b8a3e4e9a5e8bb\";}i:467;a:2:{s:7:\"ignoreC\";s:32:\"77fa29e1ee181d3df6bec158dfa170f5\";s:7:\"ignoreP\";s:32:\"77fa29e1ee181d3df6bec158dfa170f5\";}i:468;a:2:{s:7:\"ignoreC\";s:32:\"4e6a39a45a94133ea65456c1d24b9a04\";s:7:\"ignoreP\";s:32:\"4e6a39a45a94133ea65456c1d24b9a04\";}i:469;a:2:{s:7:\"ignoreC\";s:32:\"a3ac687e5d01f6dfa4ec1829aebfd8ee\";s:7:\"ignoreP\";s:32:\"a3ac687e5d01f6dfa4ec1829aebfd8ee\";}i:470;a:2:{s:7:\"ignoreC\";s:32:\"af3e0b8099fd884669a5da0697459de7\";s:7:\"ignoreP\";s:32:\"af3e0b8099fd884669a5da0697459de7\";}i:471;a:2:{s:7:\"ignoreC\";s:32:\"faf9f7e516c2b03348f632c57919919a\";s:7:\"ignoreP\";s:32:\"faf9f7e516c2b03348f632c57919919a\";}i:472;a:2:{s:7:\"ignoreC\";s:32:\"e75e856e12dc7346c8c46a601dfaf280\";s:7:\"ignoreP\";s:32:\"e75e856e12dc7346c8c46a601dfaf280\";}i:473;a:2:{s:7:\"ignoreC\";s:32:\"77817229fd90fd8164d4aa797e6e14ca\";s:7:\"ignoreP\";s:32:\"77817229fd90fd8164d4aa797e6e14ca\";}i:474;a:2:{s:7:\"ignoreC\";s:32:\"cf9551be88fe333c29c08e06bbc7b18c\";s:7:\"ignoreP\";s:32:\"cf9551be88fe333c29c08e06bbc7b18c\";}i:475;a:2:{s:7:\"ignoreC\";s:32:\"50a5db2c3bb1f0752d24661ccd381ab8\";s:7:\"ignoreP\";s:32:\"50a5db2c3bb1f0752d24661ccd381ab8\";}i:476;a:2:{s:7:\"ignoreC\";s:32:\"d74c81c2bbb07f07ed3198cab42a1015\";s:7:\"ignoreP\";s:32:\"d74c81c2bbb07f07ed3198cab42a1015\";}i:477;a:2:{s:7:\"ignoreC\";s:32:\"be6eafa1e679a1f5d326b5927a034c1d\";s:7:\"ignoreP\";s:32:\"be6eafa1e679a1f5d326b5927a034c1d\";}i:478;a:2:{s:7:\"ignoreC\";s:32:\"af0dc3b26b2bc8cc816b923f9fe4e1ae\";s:7:\"ignoreP\";s:32:\"af0dc3b26b2bc8cc816b923f9fe4e1ae\";}i:479;a:2:{s:7:\"ignoreC\";s:32:\"e99d92dd4d31c371f52a137b2af8b6d5\";s:7:\"ignoreP\";s:32:\"e99d92dd4d31c371f52a137b2af8b6d5\";}i:480;a:2:{s:7:\"ignoreC\";s:32:\"f1b80ea5230e2de3a9d0e7d1d29fa455\";s:7:\"ignoreP\";s:32:\"f1b80ea5230e2de3a9d0e7d1d29fa455\";}i:481;a:2:{s:7:\"ignoreC\";s:32:\"feae52d293a4140e32ae7ed201eb0966\";s:7:\"ignoreP\";s:32:\"feae52d293a4140e32ae7ed201eb0966\";}i:482;a:2:{s:7:\"ignoreC\";s:32:\"42ed604aa64aea1de452fdfc10c7e94a\";s:7:\"ignoreP\";s:32:\"42ed604aa64aea1de452fdfc10c7e94a\";}i:483;a:2:{s:7:\"ignoreC\";s:32:\"c2a90a9765a499fcd4760f7438b28857\";s:7:\"ignoreP\";s:32:\"c2a90a9765a499fcd4760f7438b28857\";}i:484;a:2:{s:7:\"ignoreC\";s:32:\"161fd51fe32b2f249212570de0f32837\";s:7:\"ignoreP\";s:32:\"161fd51fe32b2f249212570de0f32837\";}i:485;a:2:{s:7:\"ignoreC\";s:32:\"98fad7702c28836bdd86de2edadd0a1b\";s:7:\"ignoreP\";s:32:\"98fad7702c28836bdd86de2edadd0a1b\";}i:486;a:2:{s:7:\"ignoreC\";s:32:\"842ffc0dd4da57a7f7a0eaf4f20c6b91\";s:7:\"ignoreP\";s:32:\"842ffc0dd4da57a7f7a0eaf4f20c6b91\";}i:487;a:2:{s:7:\"ignoreC\";s:32:\"138121525dbe848b1085091b9a74148e\";s:7:\"ignoreP\";s:32:\"138121525dbe848b1085091b9a74148e\";}i:488;a:2:{s:7:\"ignoreC\";s:32:\"fcde82f338b6e54ce1a133b28b0b049b\";s:7:\"ignoreP\";s:32:\"fcde82f338b6e54ce1a133b28b0b049b\";}i:489;a:2:{s:7:\"ignoreC\";s:32:\"a78f3e0bdb65c8d8cadd71cc907d8fe7\";s:7:\"ignoreP\";s:32:\"a78f3e0bdb65c8d8cadd71cc907d8fe7\";}i:490;a:2:{s:7:\"ignoreC\";s:32:\"1d892366058a5c528aeae45c23c3539a\";s:7:\"ignoreP\";s:32:\"1d892366058a5c528aeae45c23c3539a\";}i:491;a:2:{s:7:\"ignoreC\";s:32:\"27bb2a02cd19b7b1a796b64f95f2e16c\";s:7:\"ignoreP\";s:32:\"27bb2a02cd19b7b1a796b64f95f2e16c\";}i:492;a:2:{s:7:\"ignoreC\";s:32:\"bd2f2d039e28f88b3c3675219b1b2616\";s:7:\"ignoreP\";s:32:\"bd2f2d039e28f88b3c3675219b1b2616\";}i:493;a:2:{s:7:\"ignoreC\";s:32:\"fde6362861dc0a4d30f43ff67f8e3d20\";s:7:\"ignoreP\";s:32:\"fde6362861dc0a4d30f43ff67f8e3d20\";}i:494;a:2:{s:7:\"ignoreC\";s:32:\"7fcdb1c3bac92d432e754e9098718f17\";s:7:\"ignoreP\";s:32:\"7fcdb1c3bac92d432e754e9098718f17\";}i:495;a:2:{s:7:\"ignoreC\";s:32:\"4c9b41369fc92033991ed246dc4d6231\";s:7:\"ignoreP\";s:32:\"4c9b41369fc92033991ed246dc4d6231\";}i:496;a:2:{s:7:\"ignoreC\";s:32:\"9329386b0ae9b90e0548f78e304691b4\";s:7:\"ignoreP\";s:32:\"9329386b0ae9b90e0548f78e304691b4\";}i:497;a:2:{s:7:\"ignoreC\";s:32:\"d86ff6b5faaa1300555ba4448a5dd4d0\";s:7:\"ignoreP\";s:32:\"d86ff6b5faaa1300555ba4448a5dd4d0\";}i:498;a:2:{s:7:\"ignoreC\";s:32:\"34d155c37f698204e1af466024d63b14\";s:7:\"ignoreP\";s:32:\"34d155c37f698204e1af466024d63b14\";}i:499;a:2:{s:7:\"ignoreC\";s:32:\"966baca157470e8d6685551bfe913895\";s:7:\"ignoreP\";s:32:\"966baca157470e8d6685551bfe913895\";}i:500;a:2:{s:7:\"ignoreC\";s:32:\"8dfe79a65e5fca2deeaf089c946be289\";s:7:\"ignoreP\";s:32:\"8dfe79a65e5fca2deeaf089c946be289\";}i:501;a:2:{s:7:\"ignoreC\";s:32:\"943eda21abf641d400b4627b5b0a4375\";s:7:\"ignoreP\";s:32:\"943eda21abf641d400b4627b5b0a4375\";}i:502;a:2:{s:7:\"ignoreC\";s:32:\"176e0a38d0206a03cef5d63da34a96b8\";s:7:\"ignoreP\";s:32:\"176e0a38d0206a03cef5d63da34a96b8\";}i:503;a:2:{s:7:\"ignoreC\";s:32:\"24a7d0797991aaff3b20f7cd516e4e2b\";s:7:\"ignoreP\";s:32:\"24a7d0797991aaff3b20f7cd516e4e2b\";}i:504;a:2:{s:7:\"ignoreC\";s:32:\"b5ab19e6df9007872c56c6913bb45224\";s:7:\"ignoreP\";s:32:\"b5ab19e6df9007872c56c6913bb45224\";}i:505;a:2:{s:7:\"ignoreC\";s:32:\"dec0f8cb7702c1ed44c589bd90c5979e\";s:7:\"ignoreP\";s:32:\"dec0f8cb7702c1ed44c589bd90c5979e\";}i:506;a:2:{s:7:\"ignoreC\";s:32:\"edcdfad8ab2030178b994e0113b358f6\";s:7:\"ignoreP\";s:32:\"edcdfad8ab2030178b994e0113b358f6\";}i:507;a:2:{s:7:\"ignoreC\";s:32:\"7fb12cd4aba53c019b1181f6141cff1d\";s:7:\"ignoreP\";s:32:\"7fb12cd4aba53c019b1181f6141cff1d\";}i:508;a:2:{s:7:\"ignoreC\";s:32:\"51a568d4dabe0a96ad686abe3ccb9991\";s:7:\"ignoreP\";s:32:\"51a568d4dabe0a96ad686abe3ccb9991\";}i:509;a:2:{s:7:\"ignoreC\";s:32:\"ad23c5055ff06f44be4ab2c4ce5b8da7\";s:7:\"ignoreP\";s:32:\"ad23c5055ff06f44be4ab2c4ce5b8da7\";}i:510;a:2:{s:7:\"ignoreC\";s:32:\"13600b69f151a566d6a678870f6d6b09\";s:7:\"ignoreP\";s:32:\"9098bb06918c6b31513d707e9f9b2017\";}i:511;a:2:{s:7:\"ignoreC\";s:32:\"3537fd9cbde66ef9a306b6c5a02a1c94\";s:7:\"ignoreP\";s:32:\"466568805c4c47bda96b332e5a37a6d9\";}i:512;a:2:{s:7:\"ignoreC\";s:32:\"dd3e487497c498e64964d03ae38653ee\";s:7:\"ignoreP\";s:32:\"d4175cf89bb09c6755f0eba38f71a3ed\";}i:513;a:2:{s:7:\"ignoreC\";s:32:\"b9bd9a4d11aaeac8944419002d101884\";s:7:\"ignoreP\";s:32:\"b9bd9a4d11aaeac8944419002d101884\";}i:514;a:2:{s:7:\"ignoreC\";s:32:\"ac1f65e51e36b436924402dcd387261b\";s:7:\"ignoreP\";s:32:\"ac1f65e51e36b436924402dcd387261b\";}i:515;a:2:{s:7:\"ignoreC\";s:32:\"f51abc5afdb93fbcb04bd566c9f4eced\";s:7:\"ignoreP\";s:32:\"f51abc5afdb93fbcb04bd566c9f4eced\";}i:516;a:2:{s:7:\"ignoreC\";s:32:\"048be42e5c327b7e1bc8919427a13d58\";s:7:\"ignoreP\";s:32:\"b377e8a9aa3f4bf4dde676e8d32b4f4a\";}i:517;a:2:{s:7:\"ignoreC\";s:32:\"9bab5252be84f912efc076bb6b924292\";s:7:\"ignoreP\";s:32:\"9bab5252be84f912efc076bb6b924292\";}i:518;a:2:{s:7:\"ignoreC\";s:32:\"9739963ff77d90fbe9c804ac1b429fae\";s:7:\"ignoreP\";s:32:\"9739963ff77d90fbe9c804ac1b429fae\";}i:519;a:2:{s:7:\"ignoreC\";s:32:\"09f3ce9b1fbe035cc94055763577eda9\";s:7:\"ignoreP\";s:32:\"09f3ce9b1fbe035cc94055763577eda9\";}i:520;a:2:{s:7:\"ignoreC\";s:32:\"be44a1b119747fbb14eff29ee882c07e\";s:7:\"ignoreP\";s:32:\"be44a1b119747fbb14eff29ee882c07e\";}i:521;a:2:{s:7:\"ignoreC\";s:32:\"bd3796e10d6b9ba233821f02b56d20c3\";s:7:\"ignoreP\";s:32:\"bd3796e10d6b9ba233821f02b56d20c3\";}i:522;a:2:{s:7:\"ignoreC\";s:32:\"d5251dff138155fdc41ee4c959be23e6\";s:7:\"ignoreP\";s:32:\"d5251dff138155fdc41ee4c959be23e6\";}i:523;a:2:{s:7:\"ignoreC\";s:32:\"064f646df7fcf5b9ac06434a677d7b69\";s:7:\"ignoreP\";s:32:\"064f646df7fcf5b9ac06434a677d7b69\";}i:524;a:2:{s:7:\"ignoreC\";s:32:\"b5d99eeb9721f664406ed4451418007e\";s:7:\"ignoreP\";s:32:\"b5d99eeb9721f664406ed4451418007e\";}i:525;a:2:{s:7:\"ignoreC\";s:32:\"fbb8b3a96a291d2b690b4b1432cb196e\";s:7:\"ignoreP\";s:32:\"fbb8b3a96a291d2b690b4b1432cb196e\";}i:526;a:2:{s:7:\"ignoreC\";s:32:\"a15df05145318f17cfe1b18521c8bed4\";s:7:\"ignoreP\";s:32:\"a15df05145318f17cfe1b18521c8bed4\";}i:527;a:2:{s:7:\"ignoreC\";s:32:\"2ef339872c658ea29996276eecd18557\";s:7:\"ignoreP\";s:32:\"2ef339872c658ea29996276eecd18557\";}i:528;a:2:{s:7:\"ignoreC\";s:32:\"dee2641332d36ed1e48cf19ef0cab8d3\";s:7:\"ignoreP\";s:32:\"dee2641332d36ed1e48cf19ef0cab8d3\";}i:529;a:2:{s:7:\"ignoreC\";s:32:\"9e9c61a7b25293cab2c56dcedb08efcb\";s:7:\"ignoreP\";s:32:\"9e9c61a7b25293cab2c56dcedb08efcb\";}i:530;a:2:{s:7:\"ignoreC\";s:32:\"7e4a12cb18409281b35888d44e8da783\";s:7:\"ignoreP\";s:32:\"7e4a12cb18409281b35888d44e8da783\";}i:531;a:2:{s:7:\"ignoreC\";s:32:\"b414d6e187f39b85e5005d016300ae0b\";s:7:\"ignoreP\";s:32:\"b414d6e187f39b85e5005d016300ae0b\";}i:532;a:2:{s:7:\"ignoreC\";s:32:\"056f33a0670a7d8ae4b46385dff3da1c\";s:7:\"ignoreP\";s:32:\"056f33a0670a7d8ae4b46385dff3da1c\";}i:533;a:2:{s:7:\"ignoreC\";s:32:\"729f8ee096b7ab63d1bc4ad2784dabe3\";s:7:\"ignoreP\";s:32:\"729f8ee096b7ab63d1bc4ad2784dabe3\";}i:534;a:2:{s:7:\"ignoreC\";s:32:\"0299d7e8219e49913162b7e5b8554f7c\";s:7:\"ignoreP\";s:32:\"0299d7e8219e49913162b7e5b8554f7c\";}i:535;a:2:{s:7:\"ignoreC\";s:32:\"e6f3247007ed6f1a248df0220b2c27f2\";s:7:\"ignoreP\";s:32:\"e6f3247007ed6f1a248df0220b2c27f2\";}i:536;a:2:{s:7:\"ignoreC\";s:32:\"06ece821b50b19504259edb285fffef0\";s:7:\"ignoreP\";s:32:\"06ece821b50b19504259edb285fffef0\";}i:537;a:2:{s:7:\"ignoreC\";s:32:\"fea9e6ea1d768a7b1ab244e3bedf3119\";s:7:\"ignoreP\";s:32:\"fea9e6ea1d768a7b1ab244e3bedf3119\";}i:538;a:2:{s:7:\"ignoreC\";s:32:\"eccc271f78e1dd9b29d51f206b3746ab\";s:7:\"ignoreP\";s:32:\"eccc271f78e1dd9b29d51f206b3746ab\";}i:539;a:2:{s:7:\"ignoreC\";s:32:\"131433d3359d959a07f4659939ef2bab\";s:7:\"ignoreP\";s:32:\"131433d3359d959a07f4659939ef2bab\";}i:540;a:2:{s:7:\"ignoreC\";s:32:\"8e89e0412e9133c8fe372065d0b32838\";s:7:\"ignoreP\";s:32:\"8e89e0412e9133c8fe372065d0b32838\";}i:541;a:2:{s:7:\"ignoreC\";s:32:\"683f5d76a762d5343c1286700c43e643\";s:7:\"ignoreP\";s:32:\"683f5d76a762d5343c1286700c43e643\";}i:542;a:2:{s:7:\"ignoreC\";s:32:\"214306ef330d9ff4be65163ef7b04cee\";s:7:\"ignoreP\";s:32:\"214306ef330d9ff4be65163ef7b04cee\";}i:543;a:2:{s:7:\"ignoreC\";s:32:\"2536955faddfeac8c762bbdc72ffeb5d\";s:7:\"ignoreP\";s:32:\"2536955faddfeac8c762bbdc72ffeb5d\";}i:544;a:2:{s:7:\"ignoreC\";s:32:\"2c7511cb603e78641f86215b43c70fc9\";s:7:\"ignoreP\";s:32:\"2c7511cb603e78641f86215b43c70fc9\";}i:545;a:2:{s:7:\"ignoreC\";s:32:\"df7583bb46a0b5e906b5ff4429236bf6\";s:7:\"ignoreP\";s:32:\"df7583bb46a0b5e906b5ff4429236bf6\";}i:546;a:2:{s:7:\"ignoreC\";s:32:\"829bd6dae3efc827cffac88316c73e65\";s:7:\"ignoreP\";s:32:\"829bd6dae3efc827cffac88316c73e65\";}i:547;a:2:{s:7:\"ignoreC\";s:32:\"3f9c9118d26fd9863b075b41bdd1c424\";s:7:\"ignoreP\";s:32:\"3f9c9118d26fd9863b075b41bdd1c424\";}i:548;a:2:{s:7:\"ignoreC\";s:32:\"78e1f3d5b2587e70d93bb675e2001e79\";s:7:\"ignoreP\";s:32:\"78e1f3d5b2587e70d93bb675e2001e79\";}i:549;a:2:{s:7:\"ignoreC\";s:32:\"0980eae7b05d9d846fc7c0d8df68abb4\";s:7:\"ignoreP\";s:32:\"0980eae7b05d9d846fc7c0d8df68abb4\";}i:550;a:2:{s:7:\"ignoreC\";s:32:\"6f432b361c253d2f020e8f5bb9492606\";s:7:\"ignoreP\";s:32:\"6f432b361c253d2f020e8f5bb9492606\";}i:551;a:2:{s:7:\"ignoreC\";s:32:\"6c3e34902a9f0741f488459112f6d9e9\";s:7:\"ignoreP\";s:32:\"6c3e34902a9f0741f488459112f6d9e9\";}i:552;a:2:{s:7:\"ignoreC\";s:32:\"cc00fee200e07fa90b5565128c54e471\";s:7:\"ignoreP\";s:32:\"cc00fee200e07fa90b5565128c54e471\";}i:553;a:2:{s:7:\"ignoreC\";s:32:\"6aa2ce2c1c307d061adeea78564774e9\";s:7:\"ignoreP\";s:32:\"6aa2ce2c1c307d061adeea78564774e9\";}i:554;a:2:{s:7:\"ignoreC\";s:32:\"733b4d7b9766e6c912cc77234e050989\";s:7:\"ignoreP\";s:32:\"733b4d7b9766e6c912cc77234e050989\";}i:555;a:2:{s:7:\"ignoreC\";s:32:\"0ff1b8eef7ba152e301512ce02db268c\";s:7:\"ignoreP\";s:32:\"0ff1b8eef7ba152e301512ce02db268c\";}i:556;a:2:{s:7:\"ignoreC\";s:32:\"4e17b15ecf2e72800fa53a874dc7a2ee\";s:7:\"ignoreP\";s:32:\"4e17b15ecf2e72800fa53a874dc7a2ee\";}i:557;a:2:{s:7:\"ignoreC\";s:32:\"25d6f93bbfc239769a15342fc41df49d\";s:7:\"ignoreP\";s:32:\"25d6f93bbfc239769a15342fc41df49d\";}i:558;a:2:{s:7:\"ignoreC\";s:32:\"0b224d72ce27fc9507d7794cc9ffb951\";s:7:\"ignoreP\";s:32:\"0b224d72ce27fc9507d7794cc9ffb951\";}i:559;a:2:{s:7:\"ignoreC\";s:32:\"89dae7352f7b480cd63c8f438975b78e\";s:7:\"ignoreP\";s:32:\"89dae7352f7b480cd63c8f438975b78e\";}i:560;a:2:{s:7:\"ignoreC\";s:32:\"f9f6ad4f71a4a4601de37d2a9628dee0\";s:7:\"ignoreP\";s:32:\"f9f6ad4f71a4a4601de37d2a9628dee0\";}i:561;a:2:{s:7:\"ignoreC\";s:32:\"f8e2c8d636d5812f7602bbf19cbe1b05\";s:7:\"ignoreP\";s:32:\"f8e2c8d636d5812f7602bbf19cbe1b05\";}i:562;a:2:{s:7:\"ignoreC\";s:32:\"58b290b1ae0506aa52c8126159c41123\";s:7:\"ignoreP\";s:32:\"58b290b1ae0506aa52c8126159c41123\";}i:563;a:2:{s:7:\"ignoreC\";s:32:\"249e5e6759f55380365d90cc7f540c19\";s:7:\"ignoreP\";s:32:\"249e5e6759f55380365d90cc7f540c19\";}i:564;a:2:{s:7:\"ignoreC\";s:32:\"93775f8eb42b0820531776fdaf4a1b52\";s:7:\"ignoreP\";s:32:\"93775f8eb42b0820531776fdaf4a1b52\";}i:565;a:2:{s:7:\"ignoreC\";s:32:\"8fa7695a0c96b5567da5e30976f8fe27\";s:7:\"ignoreP\";s:32:\"8fa7695a0c96b5567da5e30976f8fe27\";}i:566;a:2:{s:7:\"ignoreC\";s:32:\"24c8fe0dcf2a022a111035651ba4f8c0\";s:7:\"ignoreP\";s:32:\"24c8fe0dcf2a022a111035651ba4f8c0\";}i:567;a:2:{s:7:\"ignoreC\";s:32:\"b98441497716fa8e083098c1139f5529\";s:7:\"ignoreP\";s:32:\"b98441497716fa8e083098c1139f5529\";}i:568;a:2:{s:7:\"ignoreC\";s:32:\"a83f9e97461c539c3cbca4bd2d9e3692\";s:7:\"ignoreP\";s:32:\"a83f9e97461c539c3cbca4bd2d9e3692\";}i:569;a:2:{s:7:\"ignoreC\";s:32:\"a764a8415bdc98619a8d236a5e4e7f75\";s:7:\"ignoreP\";s:32:\"a764a8415bdc98619a8d236a5e4e7f75\";}i:570;a:2:{s:7:\"ignoreC\";s:32:\"f645a6297cc5259228e8deebefe4bc70\";s:7:\"ignoreP\";s:32:\"f645a6297cc5259228e8deebefe4bc70\";}i:571;a:2:{s:7:\"ignoreC\";s:32:\"03b8054582c55337d595843fc333aa9f\";s:7:\"ignoreP\";s:32:\"03b8054582c55337d595843fc333aa9f\";}i:572;a:2:{s:7:\"ignoreC\";s:32:\"eacbc56b68b0c220ecaf7f9081f72a0b\";s:7:\"ignoreP\";s:32:\"eacbc56b68b0c220ecaf7f9081f72a0b\";}i:573;a:2:{s:7:\"ignoreC\";s:32:\"877c37a34ec788c8cf1e30ece6a24dfa\";s:7:\"ignoreP\";s:32:\"877c37a34ec788c8cf1e30ece6a24dfa\";}i:574;a:2:{s:7:\"ignoreC\";s:32:\"dad0a5213271d74b28c65f617ed4cc1c\";s:7:\"ignoreP\";s:32:\"dad0a5213271d74b28c65f617ed4cc1c\";}i:575;a:2:{s:7:\"ignoreC\";s:32:\"ab3d1373fba1dd6f8da490f721d9cecb\";s:7:\"ignoreP\";s:32:\"ab3d1373fba1dd6f8da490f721d9cecb\";}i:576;a:2:{s:7:\"ignoreC\";s:32:\"32f8d4e8561efc32145262878a64f466\";s:7:\"ignoreP\";s:32:\"32f8d4e8561efc32145262878a64f466\";}i:577;a:2:{s:7:\"ignoreC\";s:32:\"542755f5b6ad4537a25f8d3a1fd162fb\";s:7:\"ignoreP\";s:32:\"542755f5b6ad4537a25f8d3a1fd162fb\";}i:578;a:2:{s:7:\"ignoreC\";s:32:\"cc35f37e82e81f197e9827435f3c4ce7\";s:7:\"ignoreP\";s:32:\"cc35f37e82e81f197e9827435f3c4ce7\";}i:579;a:2:{s:7:\"ignoreC\";s:32:\"200eea8f34988a0170abb37c64389dd7\";s:7:\"ignoreP\";s:32:\"200eea8f34988a0170abb37c64389dd7\";}i:580;a:2:{s:7:\"ignoreC\";s:32:\"cf294282eab8f157d212706e0459e228\";s:7:\"ignoreP\";s:32:\"cf294282eab8f157d212706e0459e228\";}i:581;a:2:{s:7:\"ignoreC\";s:32:\"3606aaeba4fa5dc3fec0a51914eb856d\";s:7:\"ignoreP\";s:32:\"3606aaeba4fa5dc3fec0a51914eb856d\";}i:582;a:2:{s:7:\"ignoreC\";s:32:\"59ad7cfa07f018d9c8559795b59be57c\";s:7:\"ignoreP\";s:32:\"59ad7cfa07f018d9c8559795b59be57c\";}i:583;a:2:{s:7:\"ignoreC\";s:32:\"7b22e9402d7224799e91eaa2d2edfc0b\";s:7:\"ignoreP\";s:32:\"7b22e9402d7224799e91eaa2d2edfc0b\";}i:584;a:2:{s:7:\"ignoreC\";s:32:\"aafff4c199f0e7a38a7615dc32742d54\";s:7:\"ignoreP\";s:32:\"aafff4c199f0e7a38a7615dc32742d54\";}i:585;a:2:{s:7:\"ignoreC\";s:32:\"652d9a3b3696626a894e645427ba3a9e\";s:7:\"ignoreP\";s:32:\"652d9a3b3696626a894e645427ba3a9e\";}i:586;a:2:{s:7:\"ignoreC\";s:32:\"9d3446628f9b75e8ee7dfd7d4d956938\";s:7:\"ignoreP\";s:32:\"9d3446628f9b75e8ee7dfd7d4d956938\";}i:587;a:2:{s:7:\"ignoreC\";s:32:\"b04d177ad67eec42b09432a10a5597fd\";s:7:\"ignoreP\";s:32:\"b04d177ad67eec42b09432a10a5597fd\";}i:588;a:2:{s:7:\"ignoreC\";s:32:\"733a48c95e62fea91c0fbcf606d44eef\";s:7:\"ignoreP\";s:32:\"733a48c95e62fea91c0fbcf606d44eef\";}i:589;a:2:{s:7:\"ignoreC\";s:32:\"be8cb9d5e067fdddca3cf5b9cf0285c7\";s:7:\"ignoreP\";s:32:\"be8cb9d5e067fdddca3cf5b9cf0285c7\";}i:590;a:2:{s:7:\"ignoreC\";s:32:\"b3d3845bbca6ad2f52b4cf4e4a1141be\";s:7:\"ignoreP\";s:32:\"b3d3845bbca6ad2f52b4cf4e4a1141be\";}i:591;a:2:{s:7:\"ignoreC\";s:32:\"d44b64c21404e5d4be707a61aeae23e4\";s:7:\"ignoreP\";s:32:\"d44b64c21404e5d4be707a61aeae23e4\";}i:592;a:2:{s:7:\"ignoreC\";s:32:\"3e4a95f8701aaa91cc4d50ebff6e051f\";s:7:\"ignoreP\";s:32:\"3e4a95f8701aaa91cc4d50ebff6e051f\";}i:593;a:2:{s:7:\"ignoreC\";s:32:\"ad6d835ecb609e3a812fde52ad86cb29\";s:7:\"ignoreP\";s:32:\"ad6d835ecb609e3a812fde52ad86cb29\";}i:594;a:2:{s:7:\"ignoreC\";s:32:\"c5518c9317702cee6f61c5cf69218aeb\";s:7:\"ignoreP\";s:32:\"c5518c9317702cee6f61c5cf69218aeb\";}i:595;a:2:{s:7:\"ignoreC\";s:32:\"ee8a94b3f27034b1e8add8e359de31ef\";s:7:\"ignoreP\";s:32:\"ee8a94b3f27034b1e8add8e359de31ef\";}i:596;a:2:{s:7:\"ignoreC\";s:32:\"05a8153a8fe2755710da962694516c34\";s:7:\"ignoreP\";s:32:\"05a8153a8fe2755710da962694516c34\";}i:597;a:2:{s:7:\"ignoreC\";s:32:\"49ddc3ca64d62c5b98727c80382b426a\";s:7:\"ignoreP\";s:32:\"49ddc3ca64d62c5b98727c80382b426a\";}i:598;a:2:{s:7:\"ignoreC\";s:32:\"7972b7a1d13abc3f757594e6da5e1b59\";s:7:\"ignoreP\";s:32:\"7972b7a1d13abc3f757594e6da5e1b59\";}i:599;a:2:{s:7:\"ignoreC\";s:32:\"68b80abf2016a6566adcb5cdd113171f\";s:7:\"ignoreP\";s:32:\"68b80abf2016a6566adcb5cdd113171f\";}i:600;a:2:{s:7:\"ignoreC\";s:32:\"67e3b8d6aeb03226850b7e2b9c0e0a08\";s:7:\"ignoreP\";s:32:\"67e3b8d6aeb03226850b7e2b9c0e0a08\";}i:601;a:2:{s:7:\"ignoreC\";s:32:\"0adcb837df0f12a33e87d424cf8556fd\";s:7:\"ignoreP\";s:32:\"0adcb837df0f12a33e87d424cf8556fd\";}i:602;a:2:{s:7:\"ignoreC\";s:32:\"45fde9b6700d0ce8afe84a3186639628\";s:7:\"ignoreP\";s:32:\"45fde9b6700d0ce8afe84a3186639628\";}i:603;a:2:{s:7:\"ignoreC\";s:32:\"b4b0fd9b69b3fb7fc60230c3a1353053\";s:7:\"ignoreP\";s:32:\"b4b0fd9b69b3fb7fc60230c3a1353053\";}i:604;a:2:{s:7:\"ignoreC\";s:32:\"f7bccdd636b85ba43984aacd57658b4a\";s:7:\"ignoreP\";s:32:\"f7bccdd636b85ba43984aacd57658b4a\";}i:605;a:2:{s:7:\"ignoreC\";s:32:\"a15c4b68439ba9fafdbb424c2651983b\";s:7:\"ignoreP\";s:32:\"a15c4b68439ba9fafdbb424c2651983b\";}i:606;a:2:{s:7:\"ignoreC\";s:32:\"53c2f5be8f3e790fb501f184333cb8c8\";s:7:\"ignoreP\";s:32:\"53c2f5be8f3e790fb501f184333cb8c8\";}i:607;a:2:{s:7:\"ignoreC\";s:32:\"f52a79d2bfc8fd99b193380613866fe5\";s:7:\"ignoreP\";s:32:\"f52a79d2bfc8fd99b193380613866fe5\";}i:608;a:2:{s:7:\"ignoreC\";s:32:\"bf1d6ab1e4a74332e097244f9ce054a7\";s:7:\"ignoreP\";s:32:\"bf1d6ab1e4a74332e097244f9ce054a7\";}i:609;a:2:{s:7:\"ignoreC\";s:32:\"f087cb2603d04a5a313e2b1104456a8b\";s:7:\"ignoreP\";s:32:\"f087cb2603d04a5a313e2b1104456a8b\";}i:610;a:2:{s:7:\"ignoreC\";s:32:\"adc33715aa90cf329dcdfc41ba564df0\";s:7:\"ignoreP\";s:32:\"adc33715aa90cf329dcdfc41ba564df0\";}i:611;a:2:{s:7:\"ignoreC\";s:32:\"257c835a007c9d0e6cc46adff149045d\";s:7:\"ignoreP\";s:32:\"257c835a007c9d0e6cc46adff149045d\";}i:612;a:2:{s:7:\"ignoreC\";s:32:\"1eeeeb4968a21ffa8f3d693fed9358a4\";s:7:\"ignoreP\";s:32:\"1eeeeb4968a21ffa8f3d693fed9358a4\";}i:613;a:2:{s:7:\"ignoreC\";s:32:\"faac93a472cdc756684c6c8294096b3e\";s:7:\"ignoreP\";s:32:\"faac93a472cdc756684c6c8294096b3e\";}i:614;a:2:{s:7:\"ignoreC\";s:32:\"f89ea59b514d7df9a134c5cbe88136b5\";s:7:\"ignoreP\";s:32:\"f89ea59b514d7df9a134c5cbe88136b5\";}i:615;a:2:{s:7:\"ignoreC\";s:32:\"c02a7525a14c7c456d74fed7dfa7d45d\";s:7:\"ignoreP\";s:32:\"c02a7525a14c7c456d74fed7dfa7d45d\";}i:616;a:2:{s:7:\"ignoreC\";s:32:\"d7cd0917ba02ba0fda6464535fe9f94e\";s:7:\"ignoreP\";s:32:\"d7cd0917ba02ba0fda6464535fe9f94e\";}i:617;a:2:{s:7:\"ignoreC\";s:32:\"287f6bf0ce962749bb28e9b209dd56da\";s:7:\"ignoreP\";s:32:\"287f6bf0ce962749bb28e9b209dd56da\";}i:618;a:2:{s:7:\"ignoreC\";s:32:\"1eb8341a98ed7de70678146b00cfb2f4\";s:7:\"ignoreP\";s:32:\"1eb8341a98ed7de70678146b00cfb2f4\";}i:619;a:2:{s:7:\"ignoreC\";s:32:\"919ea0aeec9aef904f118c3878212252\";s:7:\"ignoreP\";s:32:\"919ea0aeec9aef904f118c3878212252\";}i:620;a:2:{s:7:\"ignoreC\";s:32:\"b4274b9aa4af0cce0717184c0465a715\";s:7:\"ignoreP\";s:32:\"b4274b9aa4af0cce0717184c0465a715\";}i:621;a:2:{s:7:\"ignoreC\";s:32:\"21ea64874c8846a10ce45c0e98d0ea14\";s:7:\"ignoreP\";s:32:\"21ea64874c8846a10ce45c0e98d0ea14\";}i:622;a:2:{s:7:\"ignoreC\";s:32:\"ca4f23194d93c7c992955633e655a761\";s:7:\"ignoreP\";s:32:\"ca4f23194d93c7c992955633e655a761\";}i:623;a:2:{s:7:\"ignoreC\";s:32:\"6fd0d290b978eab8027e6b79501ac149\";s:7:\"ignoreP\";s:32:\"6fd0d290b978eab8027e6b79501ac149\";}i:624;a:2:{s:7:\"ignoreC\";s:32:\"9afbd56a76e873436ef024e4ab419215\";s:7:\"ignoreP\";s:32:\"e4a8bcb31e1cd63ffb3cee4946bfdc9f\";}i:625;a:2:{s:7:\"ignoreC\";s:32:\"eea799bdcba21c5c7ca63390c2bd4086\";s:7:\"ignoreP\";s:32:\"8936c1a6c9b8566fca9cf69b3e1fb2aa\";}i:626;a:2:{s:7:\"ignoreC\";s:32:\"f29a4da5f5510db772a68509c8a658fe\";s:7:\"ignoreP\";s:32:\"f29a4da5f5510db772a68509c8a658fe\";}i:627;a:2:{s:7:\"ignoreC\";s:32:\"39684264108fa70bc1cd7172d91ebc5d\";s:7:\"ignoreP\";s:32:\"39684264108fa70bc1cd7172d91ebc5d\";}i:628;a:2:{s:7:\"ignoreC\";s:32:\"8b0427e4963bdc5a6ebacc8c3f66c73c\";s:7:\"ignoreP\";s:32:\"8b0427e4963bdc5a6ebacc8c3f66c73c\";}i:629;a:2:{s:7:\"ignoreC\";s:32:\"769b3d62230e70ab95dab2575966c477\";s:7:\"ignoreP\";s:32:\"769b3d62230e70ab95dab2575966c477\";}i:630;a:2:{s:7:\"ignoreC\";s:32:\"bca65112fa07c00968243330e695afcd\";s:7:\"ignoreP\";s:32:\"bca65112fa07c00968243330e695afcd\";}i:631;a:2:{s:7:\"ignoreC\";s:32:\"e9c117bf7a4ea630e43c6b810dd17bda\";s:7:\"ignoreP\";s:32:\"e9c117bf7a4ea630e43c6b810dd17bda\";}i:632;a:2:{s:7:\"ignoreC\";s:32:\"990e01c7220648ce34d67cac6c05c8d3\";s:7:\"ignoreP\";s:32:\"990e01c7220648ce34d67cac6c05c8d3\";}i:633;a:2:{s:7:\"ignoreC\";s:32:\"1a38748cecfc0c9ac1e3c3da83f8463b\";s:7:\"ignoreP\";s:32:\"1a38748cecfc0c9ac1e3c3da83f8463b\";}i:634;a:2:{s:7:\"ignoreC\";s:32:\"9255953edcc8f622e84fb4ea2db3bf9c\";s:7:\"ignoreP\";s:32:\"9255953edcc8f622e84fb4ea2db3bf9c\";}i:635;a:2:{s:7:\"ignoreC\";s:32:\"15c85c6671eb37b2e85a56e48cf9a083\";s:7:\"ignoreP\";s:32:\"15c85c6671eb37b2e85a56e48cf9a083\";}i:636;a:2:{s:7:\"ignoreC\";s:32:\"50aa8aac2a1a2d3cc0ed1793e06a1991\";s:7:\"ignoreP\";s:32:\"50aa8aac2a1a2d3cc0ed1793e06a1991\";}i:637;a:2:{s:7:\"ignoreC\";s:32:\"7cbe6dbbdee73b643943450f90310ca7\";s:7:\"ignoreP\";s:32:\"7cbe6dbbdee73b643943450f90310ca7\";}i:638;a:2:{s:7:\"ignoreC\";s:32:\"5c7e93a9ed04ab35eb65f375f704da1f\";s:7:\"ignoreP\";s:32:\"5c7e93a9ed04ab35eb65f375f704da1f\";}i:639;a:2:{s:7:\"ignoreC\";s:32:\"3ca85fbe61ed823ee7430745652e6e83\";s:7:\"ignoreP\";s:32:\"3ca85fbe61ed823ee7430745652e6e83\";}i:640;a:2:{s:7:\"ignoreC\";s:32:\"907657bc7731306b3962b1c164ce2b2f\";s:7:\"ignoreP\";s:32:\"907657bc7731306b3962b1c164ce2b2f\";}i:641;a:2:{s:7:\"ignoreC\";s:32:\"b5d0ac16c0acb402cfa394bb6ccda9bc\";s:7:\"ignoreP\";s:32:\"b5d0ac16c0acb402cfa394bb6ccda9bc\";}i:642;a:2:{s:7:\"ignoreC\";s:32:\"4c6948f678a76a75b57be0e411b53e5d\";s:7:\"ignoreP\";s:32:\"4c6948f678a76a75b57be0e411b53e5d\";}i:643;a:2:{s:7:\"ignoreC\";s:32:\"53d0324134190ae9043f964f8eab0602\";s:7:\"ignoreP\";s:32:\"53d0324134190ae9043f964f8eab0602\";}i:644;a:2:{s:7:\"ignoreC\";s:32:\"e71a71d33b437ac9d7b10e5b9fb723e5\";s:7:\"ignoreP\";s:32:\"e71a71d33b437ac9d7b10e5b9fb723e5\";}i:645;a:2:{s:7:\"ignoreC\";s:32:\"1b91bb9c4455838a7da0175a9f915941\";s:7:\"ignoreP\";s:32:\"1b91bb9c4455838a7da0175a9f915941\";}i:646;a:2:{s:7:\"ignoreC\";s:32:\"d9c96074c15b7ed5ba1fae9bc855b782\";s:7:\"ignoreP\";s:32:\"d9c96074c15b7ed5ba1fae9bc855b782\";}i:647;a:2:{s:7:\"ignoreC\";s:32:\"ff779215f3cbb1188c4d912b1a81f2dd\";s:7:\"ignoreP\";s:32:\"ff779215f3cbb1188c4d912b1a81f2dd\";}i:648;a:2:{s:7:\"ignoreC\";s:32:\"6a45f30db87ab4fb524b5f13102bd0fb\";s:7:\"ignoreP\";s:32:\"6a45f30db87ab4fb524b5f13102bd0fb\";}i:649;a:2:{s:7:\"ignoreC\";s:32:\"37aeb8fcee8342ec930f886d2ff30cf3\";s:7:\"ignoreP\";s:32:\"37aeb8fcee8342ec930f886d2ff30cf3\";}i:650;a:2:{s:7:\"ignoreC\";s:32:\"cd691bafb23ba6c24c7ccd9a7c5bad73\";s:7:\"ignoreP\";s:32:\"cd691bafb23ba6c24c7ccd9a7c5bad73\";}i:651;a:2:{s:7:\"ignoreC\";s:32:\"1d6aa494b68afa480ff98a29e8dd9258\";s:7:\"ignoreP\";s:32:\"1d6aa494b68afa480ff98a29e8dd9258\";}i:652;a:2:{s:7:\"ignoreC\";s:32:\"65433ae2909315fd7071891c3dd0b3c8\";s:7:\"ignoreP\";s:32:\"65433ae2909315fd7071891c3dd0b3c8\";}i:653;a:2:{s:7:\"ignoreC\";s:32:\"89d0801a457944e6004939982d3f2fd6\";s:7:\"ignoreP\";s:32:\"89d0801a457944e6004939982d3f2fd6\";}i:654;a:2:{s:7:\"ignoreC\";s:32:\"7a1ede62d004464b95389660abd4beaa\";s:7:\"ignoreP\";s:32:\"7a1ede62d004464b95389660abd4beaa\";}i:655;a:2:{s:7:\"ignoreC\";s:32:\"e9456c5fef9eca15b95da6a7f7eb7784\";s:7:\"ignoreP\";s:32:\"e9456c5fef9eca15b95da6a7f7eb7784\";}i:656;a:2:{s:7:\"ignoreC\";s:32:\"e442f2c15a43cfaa53c8281802fb0e75\";s:7:\"ignoreP\";s:32:\"e442f2c15a43cfaa53c8281802fb0e75\";}i:657;a:2:{s:7:\"ignoreC\";s:32:\"e3fd0b0ae36d6cd346df45a5bf2fe0b0\";s:7:\"ignoreP\";s:32:\"e3fd0b0ae36d6cd346df45a5bf2fe0b0\";}i:658;a:2:{s:7:\"ignoreC\";s:32:\"b3b8726f9703c876e3304fb404c9d3d3\";s:7:\"ignoreP\";s:32:\"b3b8726f9703c876e3304fb404c9d3d3\";}i:659;a:2:{s:7:\"ignoreC\";s:32:\"1b6408c7ffc1be5eb4a1d5c3fc921063\";s:7:\"ignoreP\";s:32:\"1b6408c7ffc1be5eb4a1d5c3fc921063\";}i:660;a:2:{s:7:\"ignoreC\";s:32:\"e510cef93621dab794f105eb1f5914f7\";s:7:\"ignoreP\";s:32:\"e510cef93621dab794f105eb1f5914f7\";}i:661;a:2:{s:7:\"ignoreC\";s:32:\"d403627601b37382b06eb88bbef84242\";s:7:\"ignoreP\";s:32:\"d403627601b37382b06eb88bbef84242\";}i:662;a:2:{s:7:\"ignoreC\";s:32:\"4e1e973e8f6c5d900a8d8b479fbaab0d\";s:7:\"ignoreP\";s:32:\"4e1e973e8f6c5d900a8d8b479fbaab0d\";}i:663;a:2:{s:7:\"ignoreC\";s:32:\"675f57bd75ab1c0f524e53b5f7f714dc\";s:7:\"ignoreP\";s:32:\"675f57bd75ab1c0f524e53b5f7f714dc\";}i:664;a:2:{s:7:\"ignoreC\";s:32:\"75d69744b99d95aaacdc48caf73b070c\";s:7:\"ignoreP\";s:32:\"75d69744b99d95aaacdc48caf73b070c\";}i:665;a:2:{s:7:\"ignoreC\";s:32:\"209b73f57300deab92525358726398c0\";s:7:\"ignoreP\";s:32:\"209b73f57300deab92525358726398c0\";}i:666;a:2:{s:7:\"ignoreC\";s:32:\"4a84f602af80b3f64564e01570a31a16\";s:7:\"ignoreP\";s:32:\"4a84f602af80b3f64564e01570a31a16\";}i:667;a:2:{s:7:\"ignoreC\";s:32:\"af416b2f569500b1c95477dd97e838f2\";s:7:\"ignoreP\";s:32:\"af416b2f569500b1c95477dd97e838f2\";}i:668;a:2:{s:7:\"ignoreC\";s:32:\"b7e919a488fcf2d50d195ff961d9a0fa\";s:7:\"ignoreP\";s:32:\"b7e919a488fcf2d50d195ff961d9a0fa\";}i:669;a:2:{s:7:\"ignoreC\";s:32:\"2a56313f7e4fc8d534c2391417ca8dfc\";s:7:\"ignoreP\";s:32:\"c8b90bc26f395c52afcfbf42075fc3c6\";}i:670;a:2:{s:7:\"ignoreC\";s:32:\"92336e7b890eef241c70059756fdb8f5\";s:7:\"ignoreP\";s:32:\"d2e5e9c2d2a3043983984d3b8e3bd71d\";}i:671;a:2:{s:7:\"ignoreC\";s:32:\"f1945564772ded4aa479e5c91ee52357\";s:7:\"ignoreP\";s:32:\"8efe0a5eaa9dfdc614198cb604b04d60\";}i:672;a:2:{s:7:\"ignoreC\";s:32:\"f0fec7b6d16357b047a693c808125c72\";s:7:\"ignoreP\";s:32:\"3d8d12c75155d55e393c7faa0b6ce60d\";}i:673;a:2:{s:7:\"ignoreC\";s:32:\"5ba1062947aaa18fc00f76cda6ae8935\";s:7:\"ignoreP\";s:32:\"5df3fb8a19c7ba0bd8338ae2c58441bf\";}i:674;a:2:{s:7:\"ignoreC\";s:32:\"0e60502fc53fb9336ab8e9a85d139ac0\";s:7:\"ignoreP\";s:32:\"a9d386605efd9508dabcba9b2f63def2\";}i:675;a:2:{s:7:\"ignoreC\";s:32:\"19c06f4293102e9b8440fafa5603552c\";s:7:\"ignoreP\";s:32:\"19c06f4293102e9b8440fafa5603552c\";}i:676;a:2:{s:7:\"ignoreC\";s:32:\"e3d27be3ea787b84aa617ec5b8e110f6\";s:7:\"ignoreP\";s:32:\"83499743e48cdf1fc949008bafbe160e\";}i:677;a:2:{s:7:\"ignoreC\";s:32:\"d4abd0a2356e8d3be36d6d2bad9ef247\";s:7:\"ignoreP\";s:32:\"d4abd0a2356e8d3be36d6d2bad9ef247\";}i:678;a:2:{s:7:\"ignoreC\";s:32:\"f32c739a32fd20ef1ef973b2c11cf20e\";s:7:\"ignoreP\";s:32:\"f32c739a32fd20ef1ef973b2c11cf20e\";}i:679;a:2:{s:7:\"ignoreC\";s:32:\"2b02c5c3b4a181fd13b8a8aa7b67697b\";s:7:\"ignoreP\";s:32:\"2b02c5c3b4a181fd13b8a8aa7b67697b\";}i:680;a:2:{s:7:\"ignoreC\";s:32:\"1f648f7f50d9640767ff82c10f2f960f\";s:7:\"ignoreP\";s:32:\"1f648f7f50d9640767ff82c10f2f960f\";}i:681;a:2:{s:7:\"ignoreC\";s:32:\"48d806cf3401632ae375f2444bb09b12\";s:7:\"ignoreP\";s:32:\"48d806cf3401632ae375f2444bb09b12\";}i:682;a:2:{s:7:\"ignoreC\";s:32:\"6ade1b006d7e86f247e615d1db4838a2\";s:7:\"ignoreP\";s:32:\"54f81df5419c419d80fec855a041dafa\";}i:683;a:2:{s:7:\"ignoreC\";s:32:\"d98a15b518922a75325761336383d539\";s:7:\"ignoreP\";s:32:\"bdc4ad4c684c81f737679c8da7b547b3\";}i:684;a:2:{s:7:\"ignoreC\";s:32:\"a32a1cc09749581c0413e46f3706206e\";s:7:\"ignoreP\";s:32:\"fe56374256b81d9ea7e09922a715fa10\";}i:685;a:2:{s:7:\"ignoreC\";s:32:\"5d05fe3b397d2cc3d6603ff726a3903d\";s:7:\"ignoreP\";s:32:\"235ff0b48cfc719df044cc76e42fba8a\";}i:686;a:2:{s:7:\"ignoreC\";s:32:\"39557cfee62388919c1068ebc46df97f\";s:7:\"ignoreP\";s:32:\"2f5db14d7e50e0a8ec7ca0277a7fb4ba\";}i:687;a:2:{s:7:\"ignoreC\";s:32:\"e08ea190c58bd999b95fb4d1bd3ffb22\";s:7:\"ignoreP\";s:32:\"03b43cfc535ef22f7f6c73646594c7b6\";}i:688;a:2:{s:7:\"ignoreC\";s:32:\"a46ba8fd2e6545215e4b887bf811c305\";s:7:\"ignoreP\";s:32:\"227ccdc150002605b4db88e66a7d6e20\";}i:689;a:2:{s:7:\"ignoreC\";s:32:\"377db6315f48dd210a273c8a090e5550\";s:7:\"ignoreP\";s:32:\"f0a5a86c1491a1c8d1dbf45b4c833d62\";}i:690;a:2:{s:7:\"ignoreC\";s:32:\"790c7c7732625a792155a39b174163cb\";s:7:\"ignoreP\";s:32:\"72c8f12abca336a270244a3ea4ed7fd1\";}i:691;a:2:{s:7:\"ignoreC\";s:32:\"90e53fd314ea3a5cfc4b7fad108b90fe\";s:7:\"ignoreP\";s:32:\"abb82d74b96c1e0805435b970e86b8e4\";}i:692;a:2:{s:7:\"ignoreC\";s:32:\"952b7ebb9d989cee4f0278ca19af48d3\";s:7:\"ignoreP\";s:32:\"4fb6d35fcfa596ada507e0547bc70479\";}i:693;a:2:{s:7:\"ignoreC\";s:32:\"7221b38906204b7cfa033f0c1852ba50\";s:7:\"ignoreP\";s:32:\"bcca3554dbbc2d21ed15511007fa649a\";}i:694;a:2:{s:7:\"ignoreC\";s:32:\"de272938245a55b26d9c102cfa080cc2\";s:7:\"ignoreP\";s:32:\"8b79233424c38925d68af60a404202fb\";}i:695;a:2:{s:7:\"ignoreC\";s:32:\"a7f72cbe8e970f6191d5ac805f08ba6d\";s:7:\"ignoreP\";s:32:\"db92d9980efa99cb2449785b80509107\";}i:696;a:2:{s:7:\"ignoreC\";s:32:\"44c6e3ba537320c98ebb1c3d1980995a\";s:7:\"ignoreP\";s:32:\"76ff116982e54eea4831bb202700498c\";}i:697;a:2:{s:7:\"ignoreC\";s:32:\"40e699ccfe908849935bd0b6aaa8520b\";s:7:\"ignoreP\";s:32:\"67de4877e83d159b9b06dea4b249031e\";}i:698;a:2:{s:7:\"ignoreC\";s:32:\"e61d94dce6ffa352255095ed594b3086\";s:7:\"ignoreP\";s:32:\"9ce8bedee7443d1677ff6937257c169a\";}i:699;a:2:{s:7:\"ignoreC\";s:32:\"e2aa4fed6ce5ca5897eb8393ac0256a6\";s:7:\"ignoreP\";s:32:\"42d3b8e466048315341f9bab1a6cf7d1\";}i:700;a:2:{s:7:\"ignoreC\";s:32:\"642f1f89465684214ca76f5aaffd8275\";s:7:\"ignoreP\";s:32:\"cc32ece7a4b5ae4d279934589e2324f4\";}i:701;a:2:{s:7:\"ignoreC\";s:32:\"f7e4d68e3fdadec79766b98c63f6dc37\";s:7:\"ignoreP\";s:32:\"6b8a86c1e0f0d37331a598568303c29f\";}i:702;a:2:{s:7:\"ignoreC\";s:32:\"d3ab2d8a318d39f09b1512309ccbc55f\";s:7:\"ignoreP\";s:32:\"e1ca2e5ea41b5dafe3063c5d1435886c\";}i:703;a:2:{s:7:\"ignoreC\";s:32:\"54f6d0b9881eeebb933bbe5540abf694\";s:7:\"ignoreP\";s:32:\"54f6d0b9881eeebb933bbe5540abf694\";}i:704;a:2:{s:7:\"ignoreC\";s:32:\"80c795c6f8f684a3f6140dac5e5441de\";s:7:\"ignoreP\";s:32:\"80c795c6f8f684a3f6140dac5e5441de\";}i:705;a:2:{s:7:\"ignoreC\";s:32:\"2435f8a2eed7ceadf48214feaa040e9f\";s:7:\"ignoreP\";s:32:\"2435f8a2eed7ceadf48214feaa040e9f\";}i:706;a:2:{s:7:\"ignoreC\";s:32:\"75ff25895ec027880c2a83008e121299\";s:7:\"ignoreP\";s:32:\"400e5682138ab6601fc1a071154596ab\";}i:707;a:2:{s:7:\"ignoreC\";s:32:\"a08e5846c3cafed790b4e5d21260daea\";s:7:\"ignoreP\";s:32:\"9cdef6ccdf4988b548468a792e3228e4\";}i:708;a:2:{s:7:\"ignoreC\";s:32:\"112c64cf003eb3da8e6fbef1d8866420\";s:7:\"ignoreP\";s:32:\"f69866d3d15fb5421f16c54f5dc49c15\";}i:709;a:2:{s:7:\"ignoreC\";s:32:\"f1365c131db2f5e264cda5e4eb2186c4\";s:7:\"ignoreP\";s:32:\"ca3e6ff33770f2b4c9d8fbb447af3418\";}i:710;a:2:{s:7:\"ignoreC\";s:32:\"752405a54656bcdd2aa5ec5389ea0029\";s:7:\"ignoreP\";s:32:\"960bc32c84236b9f5a49cd9592c49111\";}i:711;a:2:{s:7:\"ignoreC\";s:32:\"d0c06a2014e6d187203401dbdbdf22d8\";s:7:\"ignoreP\";s:32:\"13dcfc242c1f1c12d877247447a8ac9d\";}i:712;a:2:{s:7:\"ignoreC\";s:32:\"b1d1898cf8475dfa5940866dc72479d4\";s:7:\"ignoreP\";s:32:\"32a06a08d78bb090c516ba00fda37e1c\";}i:713;a:2:{s:7:\"ignoreC\";s:32:\"3c36776b062632af5a4618d219e01056\";s:7:\"ignoreP\";s:32:\"f5db113013193a66f23e9ef5ef0d620b\";}i:714;a:2:{s:7:\"ignoreC\";s:32:\"646bf9cdc8de0a425165f70b761d6c03\";s:7:\"ignoreP\";s:32:\"dda8e1d71f88339db2c9bfed12c12488\";}i:715;a:2:{s:7:\"ignoreC\";s:32:\"6963a50ff46a07ff61204873615051d6\";s:7:\"ignoreP\";s:32:\"f5406eaa857bf6def5166f099fb52d99\";}i:716;a:2:{s:7:\"ignoreC\";s:32:\"adb46591b35425d99a80cf688e14ed4d\";s:7:\"ignoreP\";s:32:\"f392818b301cb014b0201996a032624d\";}i:717;a:2:{s:7:\"ignoreC\";s:32:\"cc9dc5322ee3ba29b6b149b922663c7e\";s:7:\"ignoreP\";s:32:\"fd859f3cb208325c3b42c60d4560e154\";}i:718;a:2:{s:7:\"ignoreC\";s:32:\"33dc9bb6d6c1f34af94b0b06bf9440b5\";s:7:\"ignoreP\";s:32:\"45158e55654a7bb6ded7c41e6fa96953\";}i:719;a:2:{s:7:\"ignoreC\";s:32:\"7abaf62b5bbf359004a4b1e62b19d4cd\";s:7:\"ignoreP\";s:32:\"95737a0a6293ffb243d45bce87826947\";}i:720;a:2:{s:7:\"ignoreC\";s:32:\"5f54187153bc6cc7632c239a77e52083\";s:7:\"ignoreP\";s:32:\"4469868b4ba16c61dece4ce3fccedd00\";}i:721;a:2:{s:7:\"ignoreC\";s:32:\"8795938ce3183ada2f4c4efd9724fa77\";s:7:\"ignoreP\";s:32:\"57240bc60eab6a923e96337a75af3b1a\";}i:722;a:2:{s:7:\"ignoreC\";s:32:\"7cda29316d0c1d00e7c10ee9ad3e974a\";s:7:\"ignoreP\";s:32:\"7cda29316d0c1d00e7c10ee9ad3e974a\";}i:723;a:2:{s:7:\"ignoreC\";s:32:\"247f88bb504366783bfee4a49cb18279\";s:7:\"ignoreP\";s:32:\"247f88bb504366783bfee4a49cb18279\";}i:724;a:2:{s:7:\"ignoreC\";s:32:\"ed18515ab48fc5c908cf91a626947837\";s:7:\"ignoreP\";s:32:\"ed18515ab48fc5c908cf91a626947837\";}}','yes'),('lastNotificationID',_binary '4449','no'),('totalIPsBlocked',_binary '4322','yes'),('total503s',_binary '4361','yes'),('lastBruteForceDataSendTime',_binary '1537116554.000000','yes'),('totalIPsLocked',_binary '951','yes'),('totalAlertsSent',_binary '986','yes'),('lastEmailHash',_binary '1559782709:8c3b55801d7349122ee091c825c4697f','yes'),('vulnerabilities_theme',_binary 'a:2:{i:0;a:4:{s:4:\"slug\";s:7:\"maxwell\";s:9:\"toVersion\";s:5:\"2.3.6\";s:11:\"fromVersion\";s:5:\"2.3.6\";s:10:\"vulnerable\";b:0;}i:1;a:4:{s:4:\"slug\";s:8:\"poseidon\";s:9:\"toVersion\";s:5:\"2.3.6\";s:11:\"fromVersion\";s:5:\"2.3.6\";s:10:\"vulnerable\";b:0;}}','yes'),('lastAttackDataSendTime',_binary '1647779761.594097','yes'),('coreHashes',_binary '\0\0\0\0\0\0\0\Z\a:2:{s:4:\"hash\";s:64:\"8b9d35245d81bcd4c662098612dfeabf0476f7caae422964af888a5cdd03c35e\";s:6:\"hashes\";s:136768:\"\0\W7ht#	q)d\\$\0\\\0(\띰xJ{\hϮ%\r^\:(\5\0(\ZY\Y@\Iq\ȗ#\\T\@\04ߗt\\vQ\޹\\'_\\\ajx\Ҧ\\0E=j\ȋ|p8.\½\\֤\\SGp\\0Eqx\Pa\>bv\Do4VG;a<\\0^N\弘a\e|K-\\ܰ\\ɜ=\\0b&F\%|w\*Qr;|/=(A\\<\0#\B\5\j\$#\\j!\bN\j\\0ۧ\4(\KI|0\qD.^v\0>|\;(߯\\W*7?\\n\N2=\7[Uo\0\i\\ք\"\\\]\^\XD2](\0\/o)\\:4]\_\\+̔\c\\0\e*\@t\"\\q	ȐN5\H\0\9\wi\\\5\\\\}h\\\0\Z̈~\0=\\G#C\Z}\*p\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pl\J}a\Z\\0VX=:8~\"2ʦDI\XVfEW\e\G]\q)6\	\j\\\nNؤ^}0[PKXs+ȉawS\[\U`|WSPD\羟Nh\b!\\#8i\>kq6RE5:\";Bi.qX\\A4\uU+ױ\ϱ\T_^gyzGL\"1U}6:l|\(㜦q{\\V~u\<Dho*cϬ0\\\xcl$	4\\m\\o`vA:\`{rf\\_S3/s\m\?d^͔0\X0\#q\-ml\*\#T\cx\E\y\ũ\H\\\>\\$\2\]\%\\*6\\\dpۛ!s%\]Z\Y\o\ݿ\\r;G\\\"Gu\\\&\w]\-H\rRW\\\5\\\\'=\P\\\sZFԤoD-x?\<uqXQ7ai\\rIC\pEK\\\\ykѩ}ˣ\\$p\"&\p+^\\Z\{\\5|f㵅S\Lo3ExѥU\q`q4u\Z\[n8O\r7\0H01YL$RRAhJ6\Mw:/\7.\ڏPh.B\U-ї\\'Tsz+p\pHaP04\D\!\2\{\F͹|\\p8$h\\"d\3\\pYQ\ᣎK4ޗغ\Ku\0M\x>]Z\\"\z\8Ŏ\V\M˻yULKC\Wa\\\\ˁ\\n;\0\Ġ\"fАΟ\\\'\r͍D\dM\\\\\s\ǿ\ڴ$2\j)\,\n\' #6\9\n\ږ\mK\2ef\te4\Z\GG.fVy`\)\".o[`\ϐ\\r\n\\jnviU\n@,+!%u	re4\+JuP$,WN\P\2\\"Ş,|^\\y޲\\\/\Z(A1]/ƅBM\j:\@ѫ\G+S\fdVi\n6Wԑ\\<\O\Ej2Q\\\\r|X6\\\\\/46J\\\?\\\XGX~uic\r\p\Q\\활\\r?cL\Tӊ\qgȫ?crȸtd\B\rTJ\,Q\$TDh\\\((ZdzvO\_;ƀEpY\.\&}\_	\Q\\oS\nn̵v\\0)\\\\Ӥ\:DILV\0y\Z)K\n\\ܘD~%Ro\c\7\rL\>1݈]^]RɢNFM\\J\,\\i\I.2 >1Z\;ר1ԁ$!W:	Sx\Dq5\/w\_W:\+f\1zg\\Y\\m\xGO0\\\jo].㖽B=f~:N\Fa6ա\\nY \\\'\i\\+`\fGYbm\UPMJ\ڡ0&Cv\\M$\\O4-K	o6\lb\1E\;7x?\-ǱZ\zE*nkE\m@\\\\\\1sY#1$\\\Z=IbXBr?\ͥ-\!\i>[eV{\W!FPb<&A\\\8\`\\]wB\κ\@kp&h4ԛ2f\'\G\\\IS\}}R⥅JЛZ[`\\mI$=D֛&\Ǿ@+բ\\qO.x&*p\@l\\\\Β/kz=i\\\ S\\\Z\Z4ڶ1\5\23\r#?E\Q\\L\Im$\Z\\B\Z\!\&͖Ck`7\\\'/]\i5\0\2SC\\+2\f!Og\veC\h\\\\%%\\-\\)^\\\0t`k\@U\OŔcp\>\!8HB6\\\\\=b\\!\nz\0OS~K\\|$\\\T\\\lJ\bOw\\\\f\nTEg\ZU\\rl{\SYD7I\.`\\Ï}#٧\JKNe\ӌ\&\ЎuѡIqtn~T	_j\-\%?70i\}\e\iZ\O&E+rXe{emX\\\<:KSy{r>K^s\VS2o\H֏\_\\)7\\z_oe\\ŭy^/?h;@r\K%\\LP\f\c\(|\_]\U\͒o~ME\\\\\sRp\d\\F[\'r\5l蔝媀\s\\@Z2]\i](J~n3\\ϝـhj\q\o\2kLJQc\0\8|V\\ANں)\r\m\MA\\Dos,\\\$\gJ	\Ŗ\7l}\a\\\\w|\gRLh!\1\R\&\'kD\':8YިKAa-RH\T\\(:\=ߤ\'\\\\0|\8\(]xZ\\vJ+\~S$ً6\\vgAќʋQ?j`J\N\]\0&\b\0\V?9\\".\I3\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\&\:VV\\-qX\A9M\4\\-t\n{\\\}MI	AE0N\\\\\.T0b([\\\\oYd\\%\ \+[B\ f<3)|y-d\\]`,5\l9o\x;\xZ\q@\\\51aIxMOYU\\rZ\tKϭ\uJOyŹ&Ҹ\*\ܲ\us#t1\#4\\\\䂹\Z\'&\8\\0\\m9;:\\ͼf\\f)I\;Poi\\\=DᎯ\0Sl\hsgܺ{,\)\Z|\\\<\nx*\\\\i\\\\`h`P*ͤ!j1m!~J\rO\]Y<y}\Z>ɺH\I|\\P\\\\\Bbe\^Έ;VT1\cj] k^O\\9A9/\\Z\%@b.`\ po\\df\?jr\Y\e|\H\h>\,ec\Res5-\D=\\<\\:3\\ϩM\\\>r\6\Ԥ\\%zuۇ7}F\\\[yx]k\\ݭ\Yr\9IV,C2\"\V\lp]l2P\f>\\Kp\\֚Jbvw`\*w\\}\*ʘ\)>2qe^\)P\nGfR\@Ol,>iv\:`\tQ\*8\'<\\n\J\;H`\Q؝6pq\a\%\\\r\	\\"An3H\Is\:Yae0BҲy\Pp\nﭾ\\!Λ\\&\Ʌ\'M\4\BS\\+\'4&$ء\Vgg\o\g~\\m/\/&t+\\s\\\\\"#:Zܯ4㓉&_&\\\6\"xF\|w`AZ_+vL\r}N\P\\\6_\\Ұ\ݾl2bqÜ$Uv\	l,s\\\"\rm\`\YדUX^Ms\6RH@\	&冾B\x\@d\R#U\OPgsHo\)n\\Wr\\tZ\M\\?%\V\DFv\@\*9Vμ\[EBu}<\Z#d4*?\dQ]Bx.|9D\:h@\\Q\/U\0-|_ۢ1g-\+\}Ԙ!^iB\\J\\\W]f@@w=	.]\kZ1љm\G\]\x\0\\	14\"1Ix\GL[	>(G\A:\	64\ 2DM\M\$\\r澐i\0\	8\\Ŭ\jAʔ5\+XoTm_|	M\\yu$1ck_Ko\f\\m%	g)[.r\n\oi\{4Q\n\r8H\rfX\\	vl\ٮ\\!\Pm\n6|ϔK	~\\C\ȫ7\\:s&u\\\\j\\t	+\{R\\\ل\\\nt,Ǟ`\|U\		#t̹\p=I\")F	֓\\\-\nqU\i\\-$\h*\\ml	\Vh\\LC»>U\8.\`\@<K\\h	Ϳ\U%\OHޡ\@~x\\6\\~\\n<:Xh\QAT\\o\p2\8>\n*<\\ӳ?HM\'V\\\L\\'[R\\n\@&\\[DqS\\\\\\B\N#FB\\n*An.]\B\\tv!WҧMw9\F\n+P_tQVo\7n\nz#8\\\\J\nGk~ngm.\3\\\n\\1i\jgָ\\nv?\u\	\\\f\h6\2B\?\2\03}\nx\mnV=OD\0T\\)\U\\\n}.\\\v\e\n?\.zE\\\+ɡ\n\\_9(\)7\n\/\S\\\'\g߃v\\n9d\\g\~@|\B-ڐ6=\nT\[Cp\(,_V+\L\rۨI(.\nsH\чc \-y//?\r$M̤j3\naqYKJҔ΀p\ZJj\\P\\\n\\nڷtn\rEan\J;}(\\ҙ\\.\9\nX:Q\}\+\O\\\_	{ܓC\'a\y:\\n \W\"\\w\05\S Nr\h\n\C\\0\pFdl\0\"u\~2\"\Tp\Z\n\v\[\0\\XZppi.\c;~&\\n\\&)h4\_`\F\L<\:`#pf\\\n\RW#ވ \Q\ē4E[\'\z\r)k\O\dS0\Xz_\\\\61kK(\]1\zukpR!YC8\`dfh.^8\\\!{\\FNL{\\z\),\"w\W\SJǲ\KSuᾒM\cc\\\cdD(Q\\\\ra\[J?T\\\?\Gd\(s\\t\BUI+uC\\R\SF2>\3`v\\':js(-N\֠\\N\3\\:\VS;\\\CT\n]CrJ2\\m5CZ\0\/@@1\1\D\ծ68g\n)e\\\z\\l1MH&\\S\\.>\UB|2ӜOU}\(԰tc\2ĒZVR\顃[l#4\>1εE\l|lh\\]\:\Yň\3	\\\\gm̻\1)q+#\\\b\^0rR_ҲYn,J\́T\NB(\-g\\\\ICڞ\:r\n̿>Tw\D\nQ!@iD\\r\ȭ!wz\L{\J\y7-\m\\\G鴞Y\[\\\k\\En#Xv\iw\R:M7KkRD.\ L9\%S\J*n\'ͪt^\\Vɹ\O\\\*\(7Y\(V\z|%\0\'j\l\ص$h\TC\\\՞N8k\Ⱥ\y*<I\n\\\(\x$\C\n\m-B\\\\\YVAlͼ2VS#n\\\X\6\\X\\\DU\T\=\1O@,x\\\\ \)\r&\d5s/,\"\dw22\rމ#<*Q\f(\\r%P\cW\-:\'2U\\'Ft\ݩz\r1?;IB=S\\Z2֥͐&׆ZB\r5C\ٖ\N\s\\k\l\'t35\rN\\IYԯ!\\6)\IY\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\"P9qPRPA\r\k<vW\P\v\g(Hтc+d7\rY\t\W^}rIxۯ\u$\/dMk\\rU\:\w\\\\,\\\&\Kp&\\Z\\r7Gٛr\Xyl\ﳠ<U5p8\n\\r\\Xd	D\n\\\qbc\\Zu\\rٓ\C7,<\\p,\L\~rYs#\r\\"(qq6\ZN\\\\\ş&\h\\r\\n\\\*J\6V^\%W\\y\'\h?I\\I\\3z(BGQ#`p\S:eJ\&/ʝ\aɋ`\\\n}\\Z\\x\+\G\\%R\O6\\}\㕓悫\-FkRV\\6G_e\r\"\}\Q^u\\YtYsNl\dU|\7t\U\FY\na\IWRH\jwHBB\\\\uXp\0b\Ue\$OrΰYeJXpW	!\L	o\Ѧ?11\\]Q[\7*a3\Ǿ\h,Uc\\\ki6u\J\n3*Kv\i\A&\4=D\\q!蓸֧f;4P\ZeO!vx.e\\8jY\\0\Z\PP1\S/\0?\U!\͝\\\6??\\\Zvw=2H:\)x.\\o\\\\J\tLU\\o\\\\L~\)6\K\5S$ʂ8\\\⡧5gg73lsuؾy\\Zwڠ0YE\0\\\身i\\\\|\7\wq\;,r\\LX\\\\\35qv.R߼h<<\\t\hD$\\\1l$y,\`pM\j]#\WBTmF\M(\b;ˏ\K\\\g&\n\-nzEja #[՝YdIdf@\\K2o؂/*\~\Hw\c@\2\,\\\P0\\\\\\x`Ձ\dZvs.\\k\\Z5\\0yX$\\j뤋\I\\8\\@t=\\{9v\\>:̷M\Z\ϵ\rBt\r\\\\\3i0bn\\j:$L g\ra\\t\C Y\n\H\$$T̞}^\pfO]\ǭN3%\r\\\-\AJK\K\7Pxe\\'PH\HP=,L\N}\\ZE\O\\0u\\FOR\Z)ā\;S\'bN<v\wLSڻsT\|\>Q\\\i}\G\D7\OF5\B\Nov\\\:A_-3x\ZJB@ky50\\\\n\Q\(\\;4\.\\`R\w|lS\Pp\k\G\M\8\\Թ\\\f\E\x;˝\O\[\\\J`uO\v&_\\\-]\E\;|x$\\(t`\"\\\/\Z=\`>&\oR֫\	\ڲ\\}\Z	w\%\(\4);\r\\;)6qi9C\\2\\t\d64Kծ\A\U)۳!Pdlw\+>\;\\O-LhyML)\\VH\\3_@AJ!\_drN\d\G;Ϸ\6<\\wj;\V\4dk\Է܏>Dj\,p\k~*\d}\[\\\H?\iK[i/\(\\^\\\4c-\Ȝ)\͗\۷\\@c.\V_;q\:uM\XbW\Z`\\Eض\r\S\\ky\\%/-u_EC?o\TgNLC\"M\61ɿ\\\)ji\\\]\mb#6C2\ao\2ᨁF\\ˁL\W%\rVJ~p\$P(\q\\0RS\;\rs\}o%XOwR	\\\\B\;z\\\\b#\qlE\SWD\\Lex\\骴@m!\~\\|dET9v,Wы\ʀKK\\#\0\f羀G~p\\oPq\9\\rbL\\9\2׬n*PP\0Aw:oH\RRES\G\ʏT-\a*Qf,S7\\q\̓<U*\";br\\^&\7jFőұy\ZA\"\Y!	=x\`Jߩi.?w~\/\"wU{\Lf׏1:դy;&ۆ޹[rD\b\Nv㤄\\n\Zwr\kHuE\\\N/\JYg\Si\)N]o\\\}\0<,\\\eS</\ܓ8C\T2IUX\jF\\rPJ6\\\d$Se=g۝JްS0ilww4:\\\"D=[Z\\\r\#A@\f31_<\\\v\\(QN\\YCwo\\\\}z\\/+x\\Z8\\3\\ۀTё/\*2^\oܰ\\n0\0\\1\x?F(\8\V\\\\/`8\І\\t2\:]XK%\	EL\償\t\~nF\^m\\KY\N\\"\\ t\hR\D\P\>(\F-\$>QA*0l[U[\A7E\OxƟ:Y\{\ 2gZ+j{\h\N.m۩+\6r0q\X\{4a\\4=P\Ҟ%^\\$rfz;@h謬&f{2\T,Jg~\KObH\$(\r_\ntl\	\6\Ax	70)P;\\01M{}i\E\ߍ\n\}HNf΍0/,u\I\\\)\-[\0=ֹ?+;Q/׬W/{\lDAU\\Rprmm\rF6\\طi(\":@c\:<R)%+:\G%Cy*\m?۴/\\r!\\\iAHK2\\w:\%.\;j@۴)H&\Rװ\\R\\wciF\\z\r_c;\QA\\\JRQ6}%\0\wQ1h~\B׺ʌʤ!\gy\{\8\\٢\\7\ngT1\^0>\\r\劸֬+)\\7X[_u\۱H\\]\"¡`\nrXa\;\?~Rq3ٽR \a\r\0\B<c=OR\\vBn|JIn;51V\SK\6ǐH\i\I (.fO\dx,0Xl\J\.\*\Js9\\&$\\\rN\Z/aUƏ`dL?\>C|\\^v\s_%W\\\rJ\\*\fzK\HvM,\\,\\z㡫\?jk\[\0}\FW@\U0\\W\gS2c\\FF|\2`85Sb\G?e?q7#pjڥ|ɨ\0Y\\\O|aV3EFW^@l24K\\<\\\/#\Z\jp\!CB\ڋTL\X\6j\\y\\Z\n\ё\4W\\\Z\T\\\M\\\VdE\\බ|@\])2ԕiq\j\\'Vp,\\\\K\zMr#\\6h\\q	:@\߮\r\\\0lҞ\\\6\j\\Zmc-k\\\Y\\xJ\\5\_\*\]O\\sM\\n\T27\oڠC\g`c\˰m\upa\\|/J\y2\fy2qt\@Wk\mx\G\\\V͒׵\pzk\訍\n!\\>x\\\h|,e0?s4n\,\Lmu\Z\^΅hU}1}=\z\i\y\'\'|KW?[r(\r\\Z3\zػ\fW^P1Y\2&\\ۑpAU\\%\\f\G<+HH4ywy\\'hzx\\"v\\\p\$bo)cHvS\n_\(aWcʹA\`k\BʜѮ,2\\S\^ú\D\\\\Zѣ0?\ޖf\t&\!-U8\<Gz\<3\0R\-k\,u׼)\\0\n9e\n!I9KW\\Ǽ?_\IaYOrg\Y\\\k?R0}<\̤\\. $^$m\\w޻`.A\_[\rE\]J#\\+ߘ4D,E\\ǡGf\y5ܟ@nN\\	\36\M\[\y\FRD\m\\:m\\\\\\,T\3y\\\?\PԈ+o\Kqra\UWj\j:M\\S\\\C\0\\EpڎU=\\ف2%\72B9\\9k\\\\r?r\\qQe-=\\\\Ozγ\2z!.w\\\ZFPASӃPlZ\N\\!&Qw\|c;\0,2aڢU\P\rY\o:W3\"6uxh\\\S\ئ3)]TCˎ1B\"$Ϥ_\Y[^e\n\41L\Hݩ\̨\<\\W`e\\\\	U&zտRB=PKqFu\~\\Z8\\\\\W2\0\	\e`h\p\,\\-n};F\ \Z/q\@\Q!Xw>\\7.l8\\leQ,\\\	n\\aTߌC\Ӏ#\\\\\\6w&\fU\\n`Vr{\YU\"V1\	\]98}.@\\rf[ɖ&\\1^\g+fV\`6)	\5E\\Sj\\\r\K\\\\uj\\\%\p\\A\9Xc<_:\\l#(\ǀv)ɣ,Ĺv\\V-nz\W\\E\2\D\H!~\\ꩠFg\J\Zop\'\]Mi@\\P;\VKiV(\~n&^VT\Sn\\\^\\Ey	\u\0ci\^Su\%D{o\x\\\4\'10p\\G&\o\\AM\q\\5\@\=\ P\x\N^\+5H9_r\?\MΩԴ\Y5D`$BfyI\SWq؛\\r\cW\w\Z(\\&\=\reL\|)a\j.V\\C6\\rd\n3[@\\r\܄\'Q\nŒ+NA΢\:W\\\\<\'\\d\\SB4,\\\h\\ܟ+\\{̗r~a\Aďc\KAjTG/6\\\\n]\<E&@Ƿ\(\0\a\{|\,\@\haZ\ݻN/F]\0cOJh\ÙL\C	8׫hl\2\\"i\r2ӣ-୏\XC +Ra,\f6\!\\I&C#2M\8_6ws\EU\P[\Wґ\4L{4\\Z\Uuw\'瞟hQ\i5z\r\&Ђ`~\\'\r\Ql;4\\\e\c1b0w\~{\wcj|m]a_\\d\4N^\\\~ʘ\\\7q/\"]\\$\&<Լ	Q\\Y\)\ri\0\"4ߕml\\\"WKxI0$\r\!L7\K3@\"[q\\˯v\1 \K&.\\D,\\p	ڱ4zή)\\F\\r8x\\\Nz$wF\m$\"]X\e\\"?|2Y	Ō\t-	\ࣟvT\ը\2H`o\HPOnuDpRֽ\RnO\\k2Ω@7 \'yUٙK;@I\\:7}\.a\	̑HMϩ:	qF\CO\\\c#\y\r\\\\\<եl4\֬\(\\\w	]\\\5\\Fn?`\b8)\k\\\(S;w\Aq\^\;\\T\ι\[c\\JD_=$x\B\2냙$5)SjrxV\IR-[ҟ\1\.;\"\=1\(C]e(d-|5QC\\v,\?\ad\\\\kVl\EW\R*9\)7\mvX\bڷ\'p	Z9@S\r0,t`2pl\\s\W\\)08aIpopAB\H\7M)\ \JOb\\0\!\X+c͎\Ǯ\ԑ8\@G\har6\\r\VB:\\' 4-\I9\#\\"\\iݔ[-l+\\'2Y\\\U~nZ\\ct\tMh?\Dm\%ʋd\]\\\Z\\	MصB\Zr/O5%N̶\\Z\n2\\~\\n\\r\\=a\⸬]\\\7\\Z\nŬWOO\,ԺN\\E\\Z\r7\hZ\\BLG\+\\v\Sd\\2\\Zi\\r\/q\uVc\x-l\l8\Z\\Ú\Zþި6W2\lI\96G\ZBXf\"\ԭ\\Oݠ%\K3ѓ93h\Z\42o^i\\w\$Se(I}P((\\\ZQ\nS^M\0Ù]M\Z`:\c\ZTcς6[\LB\cl\\\rx\R()\\a?\Z[I\ʙ`:}V\ZT\Dn+\/`{\Z^\\%\\k\Oe\i:i\\\o\ZqR\T=\0\\,\\ZXD픚\\Zh\\\K8h\Zxy7{\ \\\zQ1+5:#Mu<\\Zdhƨ,Ȋa\\ܑiK#A\Zt\Y-{RV ۷FR!\%8`?O\ZIa^\\\iJH:j\:b\\Z\;4JpRӗ\ڎX\V\\2p&\\\\\n\Z\mҴ`S\|\0	SsEAL\\\Z䜫\\:\H2fם[\Jm<x\<0\Z\7\۴\>\0\X\Ϙ\\\ZAS\\[\[kn/:%\>\Z\'\_\ZK\GUm0;A\򳡆-vn\\0]І{l\CMv\ɾ@ƑT\97C=yZ\3\Ήc3m!pr\&,\\Y*\l}J\px5K5&\0CRdR5P,Ba#1Qf\Z\r\݊P[\Y\fdfsRt\'/iQf7Ꜯ\&\'dWzғ|\1\\Ɏz\"z|\s\e\\Qg\J\Эz-X+|\@\V\c\x\\瘝\s|0\vɶP5T\⍠!w\RL\jZ^\'{ \)8m}.\rd_n5i?W):\\`^V=\w=\"\[<\\U܀ĵ\9YCW\\-\GM\dz[g\b\\\ꤼ\&\{737ki\\֐5є3N0P5y}@٪\\b1po4\\A\{\/\"\\r\u0yLi(\\H\'v\-3*3^\c(^U#\g\ph\\z{:\7bc/\LV9\b\a\r\\~D\,\?Ѡ\Gd)FA\u\\``\ڿo\ۭra\\\\\\چ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^ʸ\"|.Y|\b\\O-\b$\t+8j\K׹\Z\\X#\[\\w\wq51\Dj\\LH^\t+\?\Zc\i\\{\íq@:\[b\dl9\ր,ܱ\MS,e\lNr}\6\n\\0O!\"j:(!b*C\rz\\"{\t\r =\I)\^sb\ZZ\nS\ra\L\& \v\3+kCJ\I\\Z<\0P>%@5\v\%\(\ \\\JaI\\\ѓHO\'\n\\(Pӳ\n\r\\	\s\\J\b\mLh笇[\'{0\l\u\\ʒhk\FNʨ\n\,U|\록\X\\5\)\aT\\\\ԩ %2Ry\\\ūi*\%h%\\\\\\$)`v:#f.x\d\n:\xA\-\H>J\\y;\\\\\<\I8w2A\	\ڸ؞02yK|\_\\\%d\\`2\9xm\\lQW薕U=dZ\	\ʒcWZ:wP\\{6Ly?طc\\\\\I\n\߾B2ߵzՠev\z3\ƘU{\^qa%IB\Л\W\\<VA=\l\L\^<kLsj\ҥ?\b\ɖ\Ȓ|\B\?-(+xd6SP\Ijҗ:K\\\-`UM\\un֧]BeI\\Y\rf6\y\;6\r)\\cUȫd4BnD\\\Qn+R\\J1e,\\P 6;\'6\"\ ds\r\=\V\\"n*\R-!\\`\CG֋م\"^\e\n|5\\.ް\\\8!9:%\\\\'&;C\r\AL*3q8\$\\"\n$\Foef$\\S4C\\\0}UJ5}\&\Jmy\\NL5\\\r\Z0s3\u6!$0KJ\r22\\ߖ]\\Ó\'L\0\\\\IM\q\2\˪㏽\Z燧\i(\o\)\Nޢ\VB\ nL\\c\\r\\ʿ5\2\B\G3u\*\0oBǯ\\\h\\\ \}C\\oG\}Bd\gD؉$\O<L#1O\F14.+\kc*9\'q.\\\;F\\\rP\'\\l\1e^>b6\chN\\\E4#\\GYZ>\AQb&YZo\>Qr͡\i9\0T9\\>$2\\ݲ\\j\\\rwhq\M\TU\Щw͙CHN\0\I<\\.\O\\\Əͧ\\\\fh_2E_T.Zui\\Y\\k.\\{g\:\\\Fhd\\a\\G\I\0q׹a\Z\"D\'\ϰ\Z;I>)$\pi\"\)\l\}\*\\3yX\Z\\joy\\\oC\\w=usn@\\=]N1\%P0\\.\"pTӜ\q(%7N\O\2\"hkUvr\޴\\'r\-A\D^E\cZWq85\q\r\\\@\7VR\ۘ]7Ni\\jR\"~R\\O|⺥f\`\S:\\\r\\\b-\\|\ۃ9E\g\\f]Hh~\w\\w\O\0LhD:m	\3(TN\\\\,\\\\jpJ\̺\\\\\γSy\9s68rM\\ڠc\\\\4boT,>\nu	\U`.9>Y3`yk\\6d?j/&b\\"\\n\<5.B\z\n\\1YY]}\\{6\^\r\\o\ʠaXܖ^\\	捄s0\\ɻsy0\1\)fx X\`\[Z76\\.-*\P\U\-8m@e0\5\\wMv\1.\ʞRfq\"^\hS\;X\~Y\\Y^\ϻjcT\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\rS5\btLȒ|\\n 4\0ْ\\'\/XMK,f\"*Z$\4 %-\b#\6u|Ė}b\Js\6\ \h%\nf\J(\UZu\@DRzC .,2F*\\z&@\;\`x^\#.\W(` :kYMjxRցִP=\T\_U~\Q\ H\ʱ\y\\4BW@c\\\\J\q\\GC WaQ\\x\D\2-q%ol(\\]?A\ kuPt\̊\\z\"qg\\\\=(0\ l\\n°&|\"\wK~30,\>P\&w m2N\8a>BdLUoVd^ \\\'Ơ $n\X37\N<g \YL&>\\ G\Zu\%X\-)\ )>\Q\|\	]vC\, 7\\ć\K4\sNs\	Q<s\|\\\ \n	\\Z?`%Tp\6\\#IR\\lR\ ӌ[*kt\C`x{c\!ՙ\ZVW\S\\s\t \\\@W4n\*tQ`EJ\)\)e%C!Bw\픴Q\r\Z\-\1\\O!\\T\\v\\α\\!ڨ-\\Oh\c.\ZH6!\ps4zQ\$\0!\\)u\^\)\h\r\ȱ>uOK,hc$!,el\s\\\\\\055\.fOt\\e}!5AR/\{CaF9Z_\t%8,=۫!?\U!\\)ln\Un\(\ZǅFZ\\n!Z\mNxI>W>%*\r\^\#\\QD!]ͯ%uOb;\Ͱ(2[\n\_!i\\\\ ׌eQ\0rz.+;\0\Z)o\53!\\'o\]\\\t\J\:soT\\!x\6\^q\>F70VֵV>>\\!$\1ŭ95\n2d\\a\W\Zq3x!:qɴ&\gz68֛d\\\\;tV;U!&\x\[w)\ȃcNSa\!\>$wĜ\F\n%`IJ\M6o(\!bF\މg2o\i\nNl+\n\\b!\5Aà\\~I\\ \\v(\c\F!\(\'eЎ\r804@dD\4KSkV!\aZU\/<rg$R4g\Z\0\l!\\\r;m1ϼ.\{r6@C\Hc^\"A\!\ĩtX\\Q\\\"\\ђm]\\2J\"T\YKJ\\,/\\\/ d\"h>:\\\Q \\sikZ؝\\Ew}b\"\:+\@\b\$\TAt\6r\\":fnJ\"-vSX\\\\^\rˠ#\"JRIx\9\Wn\\"\a\\ԙ\\\"L0]ӆ\٥y)UeP\\^\A\\\"S\.87~96s\yjr\'\]s\0\"\\\\\&S^\\rxQ\\f\"nN\v?\Kg^\:m\Blb\Z\"$l}\e\\\\X\\%\\'A\\J\"	.F͢\Y\\\gFy2\n\rMZ\"G\$@\PĹ\Z7~ԧOƦp\db\"):ze0E8=!7Ӻ\l<ZP\"/JK\}u\\v\a\HQLE\\"\!zFۺ6\\\&\\ns|\\"ʊ\Ǐ5\".M\p-zx)R.%\.8\"،V2M.\\\\e#N\\ȡ\>\.:\I\"\_\\rЏ\MDZN\a\"\2e܃A#\\Q\)\r\j|\\\\rm=\\"\Lp6-@!#^kYڮXVFX\65\"\=\\r\B>\"\H\\@Z\#XVWΫ\"\\80#>n\\yl\vƩrK~8\";z\`~g\^_\\\R\5т(\\#ğ_ܵ?\W\\/C+\U\KG#2\s\\\'|x\,q´\\ޣ\\\"\\*dq#Lj@P\\Eȼ\\nx\$Wҫr1پ6}#2;#/7\n QrsE&]\\IeY\c\g#Oyw;pӿzw,!:;umj\\)#SR\m-\zşQ\r\\\: Q\V\\#fl\~F\cAmĽb\rV֯qP9i\ϯ#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<\bI\V?Ji^aUB#yĽTf\<,\9z\,\;P\#ә>ho/>,F\m\@`0\#g#\\06|Р\YD\̰أwty#\\M+B*Tv\Gǒ?oLJs#\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$Eq<pQ(&{=X\t\\Z\\'\\\r~$#\'\\b\}\$X:cľm]\"V$2	J8\\+n\nbO+92\\q$?\\ZW\7\m\(w{K\\۶׮\jt$Cr\{3\;Ln,u\w`\7pE$I\l;\_W\Zd۩Έ\0fm\$XA88\\\\3k.b4\DZ쥽$^\W+N\N	һ@\yA$\\G\\+Z[($h/\\*ÅZ\O\x+-롖\HةTE\$j^2	ܽ4`\Q\Q\tyTr\'$l۵	ns}\Z\\\\?|:\$V&<\% 旅.\\\l\\㹯\$E,_w\MJI:W~$`\\5\~VWClZ\	|GN$\۱\lЯsF,ų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\fq\*Aj5\\'ϱ%Yy\Z@\ڤ~&Ǩ1#2Qi׮%nMǮ\i\D7@qV\\#v\E>TCdW%v+4)%\Oi+a\dgF2!T+\%k\r _\Sp\\E3\%f3qE\b\<\\r\\]B[S@k1\'b%>f\\XJ\&\Ж\>Zy2p#\%\07s\0\'zM|\:9#\h7d\Ja6\\!\\%Ʋ\\\a\U>\\\Z\Z\	YD^@N\\N%%\8X_Ҳ\%$9ٔ*_\\\\[%\܉`n\\TK\xCt&\X\\y&̷-;בuH\\\\\\s!\5\0&\n\\uOb&\"\Mf?+AT\(M&\p\\\j+\Ҋ%s<\\$&I\\n\\	w\\߬so/\*\A\&J Ѵ\O\\|\d),\)	ɰ+\Zt&am{[\>\Bv\\`\ :nw\c)\ߗ%Z0\&|O	g\)\2*׫7\o-\r\?\\&[on\\ l\aϳt\WLQOQ\c\&ٖ`\\\\\#tޙ,Q)D9&\t\\*2~|1/\U\8VY}$&\m4tXF@R\ʏbL&ӥYk\\Zn߰X\O\\\ڱ\h\\b)&\\\!\G\\\\!C\oFQ`B\\Q\'\l_J\V\\Su8VHJ\\\yC\'DĂ\D1`گ\/5)\\\F1\'+F.\}M>W\nwJ]}&\#V\n\\\'(\\0*\\Pg\Z$\"PHG!\5jN\'@\\?B{uBt\\i\'S\?\n=\\PC\\'F.1\E\)H;\l/.n7\\\|W\*\'GL\\\s\r\\+\QN*\+r;_1\Y\\'S{<?\*\f;/\{\'\\v\'k7^Y\\\6֨{J\\/\՚ɺ\dN\\'\Q\_\+g\*d\rVǠ\\'*\'p\Gg\_P@EuE-\jbc=\H蠕\\M\W\'\$1,;\b\L\(˓\̰O\\rMgд\\'\iZ\"Ʈ\f=D\F\G\\\\n_B>\qY޴\'\*ǋw)M\>\SY\n\S4\vn\a\\\'\\9_e\Z\\\hZ\Va釦vu\[*S\'\N\9\\\rg_T\Ȼk\B\y\'\q&1\\,\S\Nj64c\G\&Z_\\3j\'\^\5j%\Vl\\{\=\\{m@\\\\'\m/lr\\8\\*l	=$枒\=h79a\'\j*\,A.\+-\Tגּ*\'\\\ٍNf\\[\Og\\|\Z\	+\'\x\rXk\\.\\~\\b5ǟ<\M\\\(:MQ\\ =\ߪyyLޢ\\(Cd?hv\Һn*\1\\ZV(=Xtw\ɬD\.=H\ZS\\\Z\5w\(?߾\n\T Z𦆽\\9\\8vW\\Z(E\0	\73\/>u0\\AH*$\\\\(\\ðw0#rF߼٥^GAcw\,t(a8\\\)\~%\cG\\:~\\\0p#tF?\(fp\\3{?\"\];>W\qB\\\5mo(n\\\ssT\j+<$|rE\\~\\\(y:wj51\Z\!\\`<!_(}6\\\\͛\"\\$#(wye\r63T\Q\-YT=G(Θ\\\\n \lpuꑝ&]yiJ)(fqi\I\p\\\,\\K\\(í\ļ\rC	vS\\KO]l]t(\m}\:փ{Fi\r~^`@2$(ڮ\wS4\Blq`8\z\W:5HI)z4\\phziTv\\/԰x)!/Pd\\\t\O\;DCᤉ7P5)%^V\t_\\"L&x?\.\\\Ҫ\*|2OQ)JJQ%\x\Z\	r\](R`)N\\\n\mE\Zkc\\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\)4\"m:D[:K~>\\b\1E\()\!eФR݀zgg6эl\[{)\Q1٪\p$2˝n#[z*/	*?|)\X.\rjc\\T[q1ǿ\]M\:\*\\&\\S\ƽt\0\\\*%ҹ-\\m\\\\(<`}y\x	[l* \j\\Y6XAS\͐\0t_\B*0\?\r\\YoXd	\:@\MFI\)*N骱w\ju\r\3\\\\\*P|˿(W\aOBAe\:\+\*RNڔ%>+߮6\\\\n^wj\98\*^\\sJ^1\@E\Hٵ5EW6>\i$*en|ӗ\QDU[M!B\Z\X\2Ugy*j4m3:P\\0\0\\0\O\\9\`*k /\Yl\I\>CK:\x\\\\An\6[*\m\Ұ\Ǖ(\ySlS\XL	3Qn\T*Y\\D>)k\'\Y\O+j*\UY\2F*\\\\(9\͌v\&5d2|ќo<v8*\\nT\HSaQ\\pG\e\\\\\gz*\.C\\\)\iX\\\\F89ю,\\*\\jlJ[ĸدiu*_	\\*\wVS1Y\'\;\n_b\\\6\+sf\hI7\\\\q\ z\\}04+\\%\<\\\h\\a\\t>\\++\BPxP\'\"\\\Xp\\T\hw\"e+(Oi~.I%ƥ\?\"~Y之\\boQ\\\Y\+E\ˎ\R\9KB\\\\$\Z\5ާWd+I\* \\"2\\\:Gflp\=\+^\Hu߲\֨\nT\\\Z\\7\+\kd\Z\'ȍ\,Gww\\\qN\+ZP\\\2\\lv,,\2\RV\~I+\\\\\\\Zr\\a\\z\\\k\̧αk+\\\\ Wqz\"[נ˽_\{\,\rNM\\d_z_T3$7Xc.\5AX\,XمWvY9\bԁ\'\7 }\n\,#\|x\Ih܈\G\:\`3\{_^\c\,h\g8\պLɋZ\:\Z\\í\>7,m\Zr\b\\\\\J|&\\\"C8)O\\},\~8׿K3k.FP?R()\o\\jrt,\\1^\7\r\x6$\'\.\\\\S\WF\,!\\u|1\\\\;8}sr\E^,\lTѕ%\P\~Ȝxq\r\\\\޶f\\,S\Z\\rz˃\]Ӭ#pD*tXk\,g\E\^\"\5¸\6\FO,\ڀ1f,Ms]B\#^\\X=d`\,ԀJ`\j0A\\n*L\zG,\i\S~?:5^:b\\BG\Q\oz!bv\\E|,㯢\/z]\\\_W\pd.f- \0&\\_K:|▴,Yȴ4UTđ-7bkٚA53gFEk|^ڒn^\)-#;ŹD\\\\oIY\MA\u-4akO\67\ZޡR)\\&\~	\-;i\\3.\\'=Ϗ\rs\'\1\0<-FP\9Nf ;h\\l4E-H\P{cܻ:n{2sZq:7\A)l-ӌl^\.ԫ\\\;	>\<\;\nC\\\-ת1:\c&h\\	\ֳ\4VF-\,h\8faPjgW>q\\\q0-\\\k\\yn:\Q2\ \?\x\-\\vw\\y\U\+.$aWݕ2.\F\\-\{=mM\z\\ʶK\zgR*\(.\\(2\GKzj\"\\,\5\5+\%\{	\W.\\~\r\B|\\\\}\:tJ\\sf\Z\.\\\"\wk~?\'L-\ʅ+\?.%%،\kɐTa\EQdu8ٍ~\3\.)y\Z\J\n\*Fh,TT\uԃ\ N.K\\nG\'z\\=_\\\Ĩ\K\n\\O`r9.d-vۺŒ\#u\7)ғ{.{fZ\%{34\\\`zo<\":qe5Ab..\I\\\\)6Zn)\"6\Z]\r3\CFZW.)G]C\\{\.=C\+\[p\\-R.Bx~Cd\\r(olv\\+\k\n.\\SP*6;]XRC\Ɇ\regf\.\\\:\%q/}!*\:r\Z^E\\/uC;\,!0\AA+Cǟg23/\s\sZ*j)i\бe\Q3>s<\/^\W)H\\\\y=Z3%1q^Qd\a\H/&dxG:IVt͆\\Yj\\\M?R\\"/#\ׄ\\ז4$ǽ\\~r>-h%8X\/,b\2H\\=XӲ\0\\\D\N\b1/.٘\\Ç\Kv\\\)\\w\S/7\\0/!Bs\\\ݒoB\ͻe}y^/>\wi`\S\{oF\:i8/M4\H&ol=|@\uQ\D}Wp/_9^`5JҼ,\\\\Y\ajK\E\\l\/v \'I5\R/^\nBR701nQ=*Q/|w΅jR\\zZHcxS \Jb\͌/Y\lezIGz\\zss=\\}\/\ԣ\Zg\0cV\ץv\\\dZ/	43s\\x\\\|\"@\-8\,^F/GO%<\"\\!5Ĩ\`0<hCJ/\\0N\Koʩۭ詡{ngg\\/|`\zZ\\0^\n͎#0\\"\\0@\/\XŃ\\\Y]I\\\O\/)\\˲\\jtS+KUV\Sx\\\/?<@qv\\4?r\cm5\/\FA@T\Z5\a )\LOf\WRl!\"t/\\JtR8\\֓9\H\dFأ8/\7\0\qe\nO^0sԐ@\7\Ty0!\Q+7\\`G\#\\r)\\S<\Z{b\0C?\B\k\\0\'́<ג+F/&\ZC\\\0\o7Ԃ؝^\Zt\U\:+\\0\COܢ6Y\yK8<G\TJ0)5\iKe\\\jՈ\\T\|F$\4t0F6^ʤp	,\wR}nlDo\YDȌ\Z0J;;\Q\x*,U\ľ\<g_;o-H0X!ލ\nB\"`Á6\\D \KP?\\_0X73S;\\03m\&)\$K>7wtT\"0[n\ڕrw\e&\E_\J\C\\䒈0i\G/+U\W3Ii\r·8صS 80s\a`\"*m(|-=9ƄA@0(\\\<\~U\-t.&]%/w1Ro0\Q9\'j\r\\pWCm\g0b\u+\<0\\\\Sb]^\D\\d\0g\к\\}bIYwe.\G\0pʊR\^=Yo(\\a*7`0\,d9ɘ\\G\\n6\P\\$JC97,n\H\0\qeR1:\'\\QDu\\hV\\\wχ0\\\\rXyq\\\d]jŉ: +R(7Η0?@\\nQƟq0	2zR\\\o@0\Y\i\Ѿ\\c1ˁ\\Z[^r0\rHCx^\n\\#\\Q\\\Y4NX1!3Q*\n\\X\}(\b\z=.\/1&ZV0\c;\d\Cl\\ξP`c1/p\JVQ\2v앀]L9\\e?4J15V\\^,gK\\\|#0Idl\o1E(\|T\Vc-N¿-\\\~zn\\}.1\\\^\8\\.\lj\Ѕ\4x]|1]T\\\2J\\+	\i6SvS,E1e\\䅁8oN\T\:w8\<:\\\1h\n@ސ\EA:\\"H98G\E1\\u\'Y	\\\/%\\0\\B\\01-#\\$p\&h5h\Jm9m.1\7\H}htqEu6\\x]1SP^&!\ !\r\nO\6\'R 6a\n-1H\\\"\gy\ц*\&\Z\\b&fK1_X#/I*DN\|\qx ]\n\\t1\f@g\<\g-vIP\\8\ၳ1\6s\4\>gHT\s*NVB\\1\\n	Tk5t\\{j.\Z\B5$V\{\26?ô%I8#AaW=\\ҀVONhE\2A\WB]b}\cޏB\\\#\2BQb9\L\\'\\͛\BBT2Dly\O_!D\FjF^=\-\vQ\"T2v2Hs|k\-\D`\]^9\\\\\c\,2SL\\b\{\\\Xs\ǅ*\@)Q2vzi\\M%\\\\Xt\#\$e*2{yC$%B\E;4>\f\&b=\\r2})vD$t2.P엳\2A\G\8Q2%b\\\\SO5 ]	Lfǘ\n^2\ӆJ\J/CC7N֍׌\r\j\\i2\Mm\Qf\!\=s\*2\\\"!-\2ؗČ\\_g[)@\\23>\,\.2\-\\;/{Maޏû\\uy\2\ٹ\<\dI=@M8\>4c!^i N3fK\fY\8~Dh_\\驪\%*&z\F0-\3(\J\{*\\r[\\\ܽ}W33)\"\K\\,\\\h+\\\\")`/W\339Dk\Nd\r\F$O2\>acc;S\3E!\ރXO+\\)\r^gPǁJ3Oj}.\\\\j	^W/Q(ϿиhBC3Z:\2$Fy\P\7bء: \yM\\\3r=	aԅ\\6~1t}k3i刍Z++<A&\\\n\\?%3J~wUV.gD%ޠ\.\P	<Q\3\7H0\0\\ԭ*:\\>\\a_\\r`g3լ\KYC\X-\k\g9[\\۳҄4P\\Z\\+Kib\EWВq`r\nQ\L4\r\(HO_)y\J\w\L\\\\4K\0$\\\|%ܰ^\q\\B۱&\K\4,\j\\E6\\\@\9&YPd4-;*B_|T\B\ \!\\'\o\n\Q\n4We.\e\>uɑ\\y\Vc\\@4gѓ7\G>\\\J\\Zl\2\4\\H}AC{\Hh/}sf\\Y\\4%\C]\\q@\\m7k\D\\W\*_4]\]@w:yٺX)%ǀ[btbsm/\94%_^^\[\\2ɝ\\i\s.Ǫ-4ˁY\2\\˽5Mf՞v2,\.\\\~4\\\Zr}\M\cP\\\\GϢl8\\\E58\\u_#\gxTጷ\7\\#\l\ r5c\\[/8\\>\8g1Z\n\\Bȥgx5IwN\e\zվEs-\M$\g$5#_\D؞;}6]&\]\&ig\>W5$;/\m\k\\z \𙠓pA5*¨P\\o;\,Xȋ\y\E[~\\5B\`\D\\\\Sx|\4q|ҭ^\]5Y\Y+\W\4\~:j/:\ّ,j5ox\\\~\,\\\\Z\F<H5ͱ\h\\\Y\I\&\B\iUI?\ґ5p7\3\\aa)I\\\\\>/@5	Xxt\B\Z\\}O\L=\r\6I5<\\8SI\R\rA\s\\\sf[HD35\f`dP&r:\]\\ﰻӏz\\W#[\5\`\H\\\\ֺ>\R5EOI5\$lB]fE8f,}pQ\\qtBZ1O6,:}u4!Z{Њ\\w1&\v1Ư?\N@\\6=G!J|Gl\̣8(\xH\,\Q66G\\r\kH:\r,6Yէjh=Q$rF\a6XW\\\r2Ya\n\N\D;3>?)?V\6k>׺\	Q\\\\Ha[ב\]{9\F6tY~\'IY+6\\5}jg\\\hy\:6R\\PJÒ2]b\D\r\0J\\n\Ri\\\Z\6}\\\\o\ZSu\S\4̀n\rh6\\\楅Tb\{)p2u,օɥ!wl\b6]\p\t=V\\\\Xڦ\\\\fY\6ɕIңMk\a_\\G\#\1\\\m6\\\\ռ|d5l¼g40\\'B`V\6\\\\\ntÝ\0`6͋&)\n\\ek\"Sh7\IS\X\\eiN\\n&\役day\7\n@3\l,\Ul\L԰XfRuD\YRs\\m7\MI.\\\\-*\r\\7ȧ\\\\ݱє@\b\d\x\?\7)J2,\"\Z\V#b\{\7\\\Z\\\>Q\;~o\gYF7]UP*2Ҫ#b\\V \E\Xj7b18\!\U=ɀm\{YQ7m0\ 䞤3ţK7\\nFg0\bݕW 7nv\h\\Xd\"\\͉J\\ڈ7qp.\}a\r\`7\ns\B\}@Ӆv7|\n63\6#6\I\\\?\\ 7}\\\\\>\`\J+iV\]\67ق\\ZE.E{(\Y\\Khd`zk7I\c\H\<==\"\F)\0\[!X\\\\7\#q$\T\T)Foe\'&?Prj%o7@lD\\\\IR*)Uҵ\R\&\0e7|\&,S\WĦl~e|T5o\\8\0xq rgk*\"@TCRZ=\f8K*}\"}uaک\\\\\\}#V^\\}^g8Kǖڴ\"-?\?,[{/Ou|\E\\p\\8`Ѱ\MU8?i$\\\\\\"O{\8o0\\;\ৗPj\둪9I(\\hm~\8~/\S\\#WUD~c9uuT\v8ux:+H\Z\+\2\\O)ڽB\x8ړ1b;\0eR\ \j\uU`\`is\92g\\\\\\K:ra\W;\'ӎ\\\19fG3\C\sw[<\\h\\\Ê;;OA(Ks9>|\\yɮ\,naS\>\\S9I\<R\a~\Te\8JG,d\\\[Js29P6ATa~R,~F\r։+\o)\Za0\p9PŠ`8_\K#\\\,\lSVd*6T3-`~9T-Hȏ :91\S\\\rb?FC\\9Wm\Z XQ?uM\0Gu\\7\nO9e\9D\g2[Oe\\\-DqTnoK-9f`Ewo\{\)Q1W<\\ɋ9pm\\Rz\mAq*\\Z3\V\n-91\Yz=&3.T\\ Q\A[$ɤZq97T\\\\B\R\#[\rO:K)\\X95\V]*sꈻj\q7\˨\\3\\9æ\%\!bdV@\O G\aM\\㾨\n{d9\n\~Ab\Hc\x;\Bo>1<9\J|UA6@)Y\>$U\ٚ\駥6b\"9\\~%q\2^J\D3]Z\\4q\T\\9\\\]6z*6ujL\\0<)+\\\0\9\\\$2\!躏\u\\\Ι)\0Я\9\qBYaهsdyPù(Cl;]%\:Z?SjMa\0\yJc/E#\8\\s:\n\1\.\\V\\\\\dS=\"E,vv0|:$\U\y\Z\n*\+\ž+cy533e\3:i\"R\"w`\R\I\X\L͖\7ۉY:k6\ZJWj?\v\A^a-Y\E\\8.,%:k\n<(Q\ -g\vv]蚢\\i\eUN:\\O\3֛K\iD\\--\*3K/:j\'}!}DD%X\\\6\D:\'\Z\?\\D\\-Sp\'L\o\\"u\`p\:\y8{#\տm\\\6mz6Y(9:\\m\\e0i7Y,<Yވ-|:\\\d\ eU\\&\0\W\\C}>a4\:\_ll\|S\\nv\\"2\\\\$r):\i=\ZY\eu\\\)\m냭}\s?:\n[v\g%Gp\a?>\m_k5:U#?_jL2S2\\\\UH^;R\\^y]\\\%a3_)\;te\\;JE\]N\j\.\\1*E\gWM;Wͭ%H)w<~\D|7V\<\\J\;d\ߩ,Zz\^uX\ј8}\l$Y;glSɹ\0G,i8M\\0\\\;r\\\\t\\\h\ؒVg(eg\1AH\;zm\pKm\0\']s\Z)MR!\\U<\\;\r\0osoB>Ô]\\\\uc\rբT;\\Zm}g\\\\O_t\%nȅۯw?;\0\NU-\n\\\$Ρ\J\\;ч\QZ\[\\\\h^2u*;7\DnR\W\N4@Js`\I\\;\P\\ֺ\v}MZֵ&V\\<JS;ϟj\\\%zv\}d\83e_;\@\_M\-\\Յ\\\\,(gB\\C\\'4/;\]A(1\x&\̮^\l_\k8c<F\࠴\0D\;PwQ\t\s\ρ<5ꩺ\\պv\\\"\Șڪ\\<\:G\\&D]ԃ\E3 	u\ݜ\t< `2!l~\s\DU=\\TR\@I<!{]\wf\\ְz=~\S\A\>nJ\<\'\<\\'[Oe\0Ր\\u\!\X	g<7\S\dT\	{~\\}&(94\Y_S#+T\\Z<?ni6~ϊ\z\\ӭDzm\'={?63T<m2\\\[\\g\\C|\0ڌ<q\#;&p6fĂ^8+\:\\\\H\<x:\w\\\\Ld\d\|G%N\=s<\0͐\\$\\5ŵǙ![\G7]5+<H.<1z\ff:/|\5F\"<^\\}\<\P,vuS\\k\\53lD \TZ\~O<.xnEe\j?\'o2\\Zh<:-Rr{<ԫ!q\\2{\Q:΅2U?=A@5Ӿ;\"\v\kkaϛa⵴.k\g\\E=%x,\\'}<\*\p\\uXp\s\H#r=Mbg`<C\\X6\.4x§\{=Q\s\f\#\1\"C+3b\5|<P\C=]\\m\'\O\P0;&x\"Φ\\e\=\\\ڹ\\\\\0\\$\\\\[#b=\$\\H\3\f4\D\Vrj\!?\\=\.	ە &\IgCq[O\\S=\dtz\\\IgN\\nd%?8e%`s2\I>\"8\*S@-\bH\\"\aiEx>\"eY\-:0\37\,j\O\>rf\	/lٸ$\ny+b+0ZH0wb\Vǝ>@ZHӐǓ9)W\|9\^~>	tN\}%\\\\\\\\\7\ \6\>+1Xs\\V\\TC\\>Ў<\\0\g\\\^_9K\\:>\P\Tϻ7r\`K\˒#F>\EoG0W^ڭ>&in\\0\\Y9>\x\\f?)\\SvRKZ\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#\"( 0wiIٹ2\i?!a0?+m!ZuC<:\\\\\>\Gq\?\'Ѐ|8i\{_\z_)-2=wmow\С?,guV\\-Ub\\\\<eA\ǩKN?3ͳ\\D[\qJŎg*hY?5K϶\jB *D\\P?4\^?>\e\\\c2u\\\u\\\?H\'\SD>\<56̧5c\#_{8cf?QO\xR\"\\&Z-C\j\r?_\6b\%㻧\֪K\\\xLb͟?h]0\0\	B\\LJ\?\\\r۴\<\\\\~\\S\1.\QEm?\\YꝤ;ܮ\\S{Bv,J{9?\W^\z\0\Y*`\\P+\-Z\ lo?\E4\@\+>~_te\v\nh@$yZΤT\+I\fؒc#pC@vP\\\\o\\4O\u\Y7jѤ@s\\'b \N9E=о\S\0V\{\K@\k\\\X$ΩPB	\\=P\S@*5]\G\\\ր\3)A{Aq@:xcÆPV\\qt(\*\@CARA5P}\%bI^C3@Lo֟G\j_x0`\8C\{\p@`@Z=sX\/\$Xv\\0uy8=7\@^<۬\'=\f\n+~\w;\\0\@`7ZǛbvP\2t\@hl\q\Ҁ@qbjuO ;x\\\\Z{%y	\*\]@vKިk\\%~|`\`<5P\\\\.@|INA\Y:_I⡤\a*)\g\F@~\bR鏒\Z\^\g\4t\\E[]\x.@l\l4\\w2l\q\3P\\\"\@F3\\\;\e\0ہ\\N\QP\Z@;\E\\xS\r\=\KA-\\p\y@@ɦ =\Kwٸ\rk)\\Xsʑ]\ ܈@Q4\P\lN،\\F!\\K\A$\0j\g\0\3dhfGT\\G)̷!A92\!Z9^v*\0D8\Z=Qy\\ZAb\Av{/Gg\^6\~F\\nĖ\\SA	Az#\\\RH\\\[`Y|Җ\rxҬA\5\\N\kj(W\{l\\9XIk.Q\"#Ac7\6\QN^\\"B\z\͍NA2,0F\rv<qb9\&ǰ\s\&/\AZ%\6P\ÙH\[h\n@\ <A/\e\ʣP\3sE\bz\\\%xK\#T\Ajڱ]U\f\89byFvw1\$e\A\N~\mDD*\W \ne\Z\\^Dhu\]A\@z$zY\\um\pܔ\^6\/b\A\\8O\в\\Ozy\K\Zt\\A\\iߤ^\\\\f\W͊ßv#\ZgaA\\\\\\)6\.k#\a\rUA\e[	v̛3k\g\n\"\\݌\A\tx</Y\\D\\\:=\\o\	uA\R<K\\!t\DJ\N\]F!ƚ|\rjB\07r\\n75HτK~+\DBoB5}\r}dT\/Ш\Ȑ؎\,BBI\\ccx|c\r\wHN,4\?\\B!!\\$ケք!\V[\]ǐ\\Q\'B&\JP:ol\G|P\:q\_p!\~B*/z\\n\\-\TfY\\zO|E\V\B\F$b\\\$.-zFneM\*/\\\|BV\\\n,\O{Ƃ9\Ң\,\BMZ\rDgK\\Zy\{!\d\\\\VB\<=P\'\rl\5hhH@\Cp3\2ɭvCcB\R\*8Ř\\T\\\/]s.9T(\\\BۥD~ǖܬ\B>\\_Eq\\\l\Oxy\na\B\\n\ġ?}VxqA\\aI\wA\'6B\I\q0q\Z\* \Z>\\%C\!lC6m\菛\\ml\ \\\2}$\\A/C>0\\,c\\\Jvy\욓(T݄\ICN6\\Z:cz\15\(Es\{(M\Cjᥥ-DX\rHK\\qM\`oCn\Uc]\L\\]Ģ6C1rCt[\P9o&іcv\Cǡ\b;C]\\U:3<\v=\r\\\G\)\C\vm9)\\w\l\\Nd?>oC\4)\iǌ<1\u\\\\"CO5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\\\\0D?j^*\{2	Wc| ]\ytDC\\N\ZK`a\o\2\LJ\Sw5:LTDHoB\T\"/T[hN;\\*wo^DLSg\\gݨ\?猑\\ϞY1ћ hDW\n\L4\+X_;ť\Dk\\5\2\\\o\\\\\\+פI0\Dp\"bP\mEN\}^[\\:qfDT\E)$G\\et\s̮E\\n\\D\\"KꖌT+qr\9tJv!!D%}I\\m\F2\=(\'+\AX\D\"e\9V\Im425C\A\P%_DƎ6\Sx\hjﰌG]i\\i\_DU;F=\dZK/\h-$\\X#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\\\DN-I0\0?4\zf<\Hn\E\r\ע\4/X!3\~\0\\\]E(\\ڏ\K\"\y69=a\1c30mE*\\h5|\y;f\rk\a퓤~N\r\E08\L\}qe%vB|:hwE73~\K\02\\7r\"U%-\_:E:kf\dtps*H@\+I\35_\Zr3EG-=|\\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\\ojah.e\5E\\'\%Xm-Qs\\ĊKebbXpbE-8\nu\T/§\Ώi\x\r& \3EQ\\\d8LܮŹ@\\#]s\EЈ\\Z\T\׵\$\\;QE\!!ͥ)r;\n6\Ek\S1$`^F ͥZZ(5JC\\k\"\\|dwqFǾ\'T%c\*|kȃ\\u\ZN\\MFkfS\GK#:\ݒmSk\\\%\Fh\ޙ\Hm\\k\ܲ=\F\wسY\=\\!\B\r\J\9F!	P\\r\'\w:(Q\n=jl\\hjF+\"\2|+\FUÊ\;YIፔ}f}|FC\A\>=\h1\XJWDX4\\"=TXFVїa\6yp\'\3]\'\\,F}&w=4qu\Z\X?F{WB!F{K\P:i\gF\\\\Z	(\0GpF\y\\\\\3n\\\\#\;F\R<`=#i\zAgDd)\qF\z\g\sf7B\X\зIwE\\F\t\\v\\Z:\;`\jʠ\BG\^Зα\tGe\\)\\\\\GnU\>)_\Z1d/ڝ\2\>\Z\JG\'AQh\M\\VvS(Gl^~@y\GB\Tg\{yÈC\\\I\҂\GB\\\\#(\>+:\\Ծ\Z\h\/TGI}?\Z\)[>\"n\`\\\C\\cf\G]˽{0nّ)m\whn\mTC\\&G^P[\\ְa+\䂓\\݈mg\ ?\Gsq\"\qk,\&\u{ni>\m\Gs}꣩~V/	ݭ\\[\\\:\Y\\\Gt_!\HX\Ыwcq\\e\6\>\Tk\G~x%퍾˳\\\>)d(\\ZBNJ!G\+\8vͮ1g*=^5V\逅\n\\'G@Pȃ\U! 9\1XYM\Qe \0׍`\G?}\o>\\UΌ5O*q&+v3\ZRmh@Ggr8\,\B\\c]u_a\r̊\\;~\GW\r\\Z\G$\7iD>\b\^Ϯ\\4\Gĳ\YqU鄦l\\"	\\,]\fC\"sG\\\'Y7\\5Tj\d5:\X}{G\H{p<Z\tMh`\K\\\AL\G\c\\`B+91l%S\;\8B!\\G\\\:}\\\\\\r\\#}g\\u\H\Af%\1h*#\\\ZUEUh>B=rHp\r\0V\Q\]%<\	\&si\Z[H\HeQ\\e	=:\2sO\8\O\rȜŖ\H,\o1\@O>㍕\R{\\\5ke\\H69\\ß$K&\k\\ѕ\0\y}H9m\Pȥ\\"T\\թ\/5\{!\#\^HB]=|\r\UJ¢ \\Iw\j ~HN\>\\+f\\\VQщ2\\\\^\\HYfAp0]OcB /$g:H`kfNL\\\h\`o\\[agvEHa\\\\YB3GDۊ\\Y|\\_\]H{\8;sP%;q\9\\\}\IWH٤]ê\0\\{/|\ \odlJ/1HQ0z\/t\$\\ځ\7\)\\IH {\\"!b(\\\Ar\\D]\\\R;H\\J\\` \\tHV{H\5\"wqnG8\xCZ(\\\07H\3:Bk[e<KRT6\uL\bh\\\I10%\V`ޮfa\8~(\\I;B\S\\GlDk\l,\0\\)IGQp\5u\\0c{\}\A\\\>IN\\E篏j4G\Z\Z}CJ\CIZ4\ֻ{җ\7ta\xВH1\\\Iy\\\r|qSA*	\\}H\P\I|\0\\\7a\n\e;\\U\\\I>ٽ\\^iliA$UM>l)$iIg-\ӮP?{\u\OR\Rr%\~\\I\?\R\`#\C\'\'\"\\\j\0aR_\\I\\P\$\K\~\Pmhf\\ l<!,%\f\I\3d7Z4U\!V\R\"\߆Kod(\IBqM 5{s6 li\Y\,ɦd\\\e\\reUI\?5j\n7\+#Ik\S\\\cIz\V%N\)\S\\\n$-/A@\`JR2\\\\_s{\n/vgLi\:%\JeN2\0\Y by_B\\Q\J(|\"D\\w@΢\w\\;`SE\\'\]J0^i\N\餸y\L\\m\s{\(J;?[(\\*Q{84ᅶAfU5f;JW\\\ejJA\U]1^s?Z\\0JX#j\\w\\ӚY\UZ+\\v\*+\J]Ơ<SMv\idz\\>অ&<dCJj;\\K\;s\\2\~\4J~\\=;녞#\	\"K\ZE+\\13J3\AZ[;` 3˦\o\J4\+`b	\\\0Yy\6WqDÅJ \\Vsf^\\\\0G\\JYF >%PMF\?iO\J	p5v\v\\\\8( \Jbjb\4Djw*4\鱋p\-:Vx@\~J\N@`\P)@-8YX\-\\JߏƁ}0\\.\\p\e	G\\^\~QyJ\$\E\!\Z\\"\\\wON\Ї^mJ\\P\#d	T먎=\v*Qftz\nKI\1Z\.|\=3\S0\r\8]+K3S\\xFHnZDa\۳\\w\s)*xK;P\asznZ*dWđ\j]rKP\F1)o\\47\\@VO\\fU5g\\Ka;׾\$(Ui\\{iN)hi\'\T͌Y01KbC\r\\itꅣ\\r?\\Z\\\6Ke]\o\?>\M3\<\\XKxd]p씟\6r\\7q7nh\XJ!KԴˑk\HV\\\AZ!ښ\\\\\\\\K\;.8^\&\\\Z\t\%n\\|T\\Kht\\âªx\\0,\nyw\Kzͼ3c\\ޖ22?C\\@\b_LK;zt\u\,1}V\Z&!5W,(Kk$H\\t80%\Z\'%  	ujKOE\n\AF\>ڒd3\Z_0D)\'K\\naڄh)Ĉ#巆B\P\$;L$Q\\A\Z3oT\֟\x\p\\C\\i5L&z\֏ͭ+\	\*&X\&R&\eL>\\\S\0\\}ߔ\\".j\nȡz%a|LE\'JnE@l\r!3Ά\\\v\rLL\)<\Քj\FW\\B0#pm\LOHTc\K\6\.e;]Aes˿SFLS#Vo8ki.e\"kߦ\\\pLz7\ZUۼx{UW?EQ\K0\\Z\`hl\L(pyp\]\\&\8\,\"6\$cM׳Z}u\\LY5\{\L\Il#6M\XH\xP!\'+\m\"\\Lf6\\=([х\\`\#7~(aL\\O<e7j}\;\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\\\Oa8\DsXLܨ\\H=c\\Z\\Ipbx\n5IL\*~Π\Ex\I<\'\ULhk_fBL\\]E\;B/y/k]r\"< H$\\L\RH\x\s\q\5]\\M\f9M\nA\'J@cV\M|)=5\c[\\!M\0(@hF(¨o\ZBFA\rw7M\±M\C\\\-8V\]\"?F\/лMVs\h\\$\Cڝr+Bw\&\u&kMk_!:óa#\\\\	^1\M997\V%l\z[B6\\n\qʕ\\\\MY~q_$19w\\\`\\\Z\\M[\i\%M\AD.\l.\Zn\ pTtMyL;-ڛ%Iu\\K|,̞\\f\] M;*jh\\04\'\u\r_\`\t\"O͝4MĮ.4jW[\\a`A>?6eXMq\0q\.2ݾA/^G\\/Qtr\MӬ\P\\\=ȍM\>lw\\ov\0M\~\\\Yk@L\"#\"/;cvj~\0\d\M\\\ϸ\ZP\\x\\\\09F\\'?Շ\\=M\Sp\\}T\.!$|N\\\\\\YN\\ݝEh\\\\\Z\\\,P.g\KNm\gl)A\? NN\egR\wSn\\nGКqN9\]`\T\*L\)w\\\0+\Ã-r]\\NA;ַo\590\6\\lÆlyz\NL2hګF$H[=N\R2\rQ$\{)NU\\{\W\kz\\\mlf\\\#7N`?g\Z\؂ˀ\\z\rze=\s\%>\Np.j샣f7F,D\\\2٭:\2\+,Nz\ҡr9;\\,=\\\䗈dGyNȩx=\.\ےGn\ca(N\"\?\\X\h\L\f?e!#+ov\`\nN\:\Ǝ\>\%\,7\	\g\`e\z,Nv\\ޏ\LTgwR\\\\\G\h,N\e>h\@\J|j\\l\ŷp>UЏNj\$\\-\GE)&J\4\\G\ꝝTN\kӲ\\G\':2]F\+\N\Y\GDbi\\\iRL<\&\'?\\<U3XNWNlN4~ J&R\\xd׾tR_\\ O	Y@9P-\\\>5\Uw\n\'OR\k\g)eFèl\,\@\\O٨|\e]|mK~\Fӂː;J\"O(\{\\ǨU\^D%!䶣X\\XJO:XZ\%\M;	;?՗l\%OCdo^r\?Ӳd\\8&VOGޣY8+]\^w\t\\\X]ݯs6QzOV\\/~Z\\<\)\r!h=X\4XOeI\Vi\\q<:m\WDlK̈́\\\'B\IOpb\6\<Fϻi\\䲯Hp\082C\*Oe/<\\H\}	\JtJ3K\O\%z\wv\W8XF]lUOg6r\r\n\pHַ̐|\OAR`qL?׬\O\3v\v\0Uow\\0KO\\\q%s5zt\gUU\\\\\i~~\OW\Z9\aq(:3\+*+\m;\O\~xwU.]bfW\`hW\\\ܭmP\nkH\6w#rv{0\=頻\0\i.PzZb\oBL]\\+n@$G\*Q\htP\nO#~\\# |\\F:Q>݄\G\PkSZ\z0D\ϫI,1h\\\]jP=\\q\\\\"\\&\4\\\o\0iPB1Bʍ8aS\h@<\^!|\n\\PBH\<}F\\J\\g=rv\qPD+ˢRƆ\\\\\5BhX\]l\WP_M4WM$\r]\n\]|a*Pk:ES\v\ZL\a\\\"i\0SO2s\=\P~\\ؤX7LG0\Q\dkL;\}P\V\nB^~Uh yr\.F\>6pNPps%\\\*\\\ #Q=QCg8\P1mK=\Y4\$\	r֨\\r(|/g˥$Pj\n\nhbZ\W>}n\oFb*R\PĽ7_cZ\\s\82F%\\ZFJ:7PP\*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\gt׵\ʚH\"QAYZbDeO\0{\\Y0\\XvQ&g\듣aI\Z5Ec&#M/Q8.\f\Z`>\\z;\+8$3Q>+]6\'Gq*r-UZ\\>\#)\MQJrZ#6\Z\\d&!;]\sZ\ne\\\\7 QKP;\XӦ_f)ӊ\\C?*Qj\\4b$V7U\\\M|RbBth\QtAFB;<b|OP\t\\gyWZ\\QМhEcN0\\G\	7=m0\;\]Q]\\Bἃ\r4?N&\uZsQ^QJC}fL[`%%˚ſbiGQzzu}Ϙտ\>g&9\8\Q\H\'\\<\~dhç\r$\uí0Q\!\tL7	\n,N{N\w9Q\[#Tӯ\`\0\QԎRIQN\\\smGi\&!0\'\2\QT\Z\"sԭZ\'@\>=;F\s\\P[Qˮ5w=\Cz\?\r.h\+p\rW4UF\0\Q\~uR\kH%\6\tu\Y\09|\*/\R\|7\5\I|f(\\j\0R(߳\\ߥH3\\\\\U=N\K\Re\{(TF\\\QA\\\	\Ǵ\NRr2+P;ʅr{\0\\\L]\ۇ\v+\Ru8ip=J\]\\\wB\\\\Rͪ՛2\$!\F~e\H`\UR\P\\\"bM\=\sHm\u/\MR\\\\ោ\\a:hxE	gkA\	+\S\֠ǃn\D\JH0\h@\\ہ*Nt`\JS\\tBmۄ4t\\\\N9H\6\ÑSBdqRV+?\\\\򎻯\0\\SK\Ir)},2\xq\\j6+\iDS^[m_\\\\,Y\\%q[G\\D\=oS_\Rv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\DFE\T4f\\ہ\\N\S\\\\n@G\\\f\_`IFaQm]-\<S\\\\|\\|I2!Vi趦AS\̏[;c\\C\\ZE\\\4?6\\T	y^\\n\\\\\ew\Z\K\W\\rNe/\{\\TX%\Nu\z~cƢ\C	W[Tz1PW\j=\b\Y\'ǪtNT)訓{\'T*\Y\nZv.\r\_\"\\n)j\eTT2?%\i\I\	`\V-  ՊtTV\\\-\OKXǯ\.ŹN\\Йu1^TY\;GV\\\7\hW~\O\\Q{\"T_ \G\\l\yN\2Ni\3\Tge\\PM\wQ{ki}\ri\Tu\s\\)m\\[|l\\I\\\³\ZɁmUTQ<Jhw\)\\n\\\7<̽\\G\\T\\F\HQX@fS\\B\Dh8V\I?T\w_`zz\v5`rP[}~3\UːT\ϓ\\0.ð!\\\h\P1s0dT\m9\\\\\v\.x\9U\9\\\ț\ZA\=CmYu\Zn\\\U\VΙ\pWx\\$\?\\⇼P\U\cZal(\+;\Z&E\"HyLU04+@qj?35\\Sr\{\ۈR\;͎U;S\\TS2.\}\1XSH&\\XE6UKCW\\͢/Z3\\ZӶIq\\\UW&k?un.No\^\\\X\ۅ5PUi<\T	,sT\\\a\6\\\VUl\6>8\\S\ᒻfu8\	q~$r\\Um\P\\\g[6m	ec\Y;\\\U}8\:l\֑\ŗ[\J҃\\\'gUyB\\\'l;F\\VӸz`|\nC1BmUk\\Z\"\4i`FVm¬GXiEU\\۶B?\wN -\\Č\m\ZէUM\: ݗ\L-^)\\|\;%\U\\\\\s(4>\0x}\vX*WR\0>U\\\WqPuUT=?V#\20\f\~\\U\\ꚬ7\EEԢn;魺9\\kU\\ɧk\)I)G\55	f\R7U𒃔`Λ)ͽHE\l#ez\\@D\U\eD\\Dk\X5\\h=,\U\Z8Z\0\U\.X\}\b,WsfyyEQ\F_[Vn.v&\\a+8\	\ۚu\A<WV,{+\\x}-\n uM8g>,l\{TVA\0ד\DN`\n)P\k9\WQ\ҌŻ>VKaF\qkN\\i\7\\P\VX\\W\Ԗ\x@*kU?P\6Ѣ\"5V_QZ\H\؛N\\\\&IUb󚂇\Z|\\}V\xG٘o)y\\0\`c\V࡛\\\J[luXk\\Uv\"PVX\\\Q3\\\\\L!h\"i\#:@V̲D3\3\>/\\\Qu`ʤR@@V\nͳwœga\\\~J8w\N:mN+V\\E\\I0uX\\\^\@&\2*֝X\V\bqPJ\\\\0\?\H\\\Y\\\\zVΪ\Z\0G7h\"]c\..̭IkX\V\q]5\ \.]@M\*\u\ǰbʝDLJ7V>\Efw)\\\QQ.\Hz\\r\V\k8v\>KP3X{\\:lc@WE&TVU\\O\\8NOy!by\Av\ZW\r5|aU͈\3(|\ɓkW֪\\2\|\0\NҵxǣYO24pW;&c6\pD\X]`\gP\\׌U]!\Weō_\ցݲ:Ɂ}@R\\\WиEXWfC3\\Ku!\7J!l7˾\\b\\ԿWh?\Cexl}\$\ӈOJc\_\WsyWhaϵ:[\"5acQQt	E\WwR%\G\`{\\\]3+G]l-`WyӀV]@aM\\xezEh\sQ\gmgWx\/4\\/\\'x/\֑-\\Zzs\yW\o5ҁRj\?UZ\(\O\%zW\xO\`5\\\$=\\U>oWѾ\r%,Z	A+u8\\\\2,gL\\Z_\W\\w~sR\8Q,\q!\\\s\kM\W\9\,\\P2e\!X:^uI\Vn\NYW} 8.tf\\\\\\0\'\	W\\\O}leVd\`1\0b\W@XX\P\ H\_\0\Nc\nZ\`O\\\X\Z?yv\}hD.\嬛Mv)X\Zp/}\\պ\ \r_\\<\"\Z\!}\X(覔7+N\b\&1Y[; \X(\f\\\03J\\\m\<\n%l\r\XH\P\pE\%\*+%t\\\f`\Xb}̿L,\gC\\\y~eb\'\n41\Xc\"h.A\bq\Kӹw_U@9Xp*-[\DP<V8A#\sAgS\ncƽX\\ź= )e׎.\xipXL]O}F\w	Vy\"\#aq\\"=\\rX\\e$<q\>jM\\5̸z>6\X!w\4\\\-<[\\E\\A\b\g\zX\P\I\Jpe8\ ,cm\\[X\}wɗ\R67\uMT!\ܟʷ\\r2\X\xEKƪ.\\,lX>w{oy\\i%UHqAcX\r5yw]jγگzж\Z\YE4e\VL\F/Uk,\~Y?c*_\a)\0|\\4St}-\ʁYAD]ʈxYN.\\7l}eKYB\Rb\-tsxco@\ԾP\ɫYCϩϟ$\p˯=qj=hs\"\(\ZN\)\\Ytmk9\Q煇0`\\N\i\Y\%FVO\c$m3\rYl5pY=\!\\\^ox>S\\8\Y-Y`x^.\H#ƹ/2\\\\\4ē\cY@e?\W\\\'lm\^9ďޮ-+\Y\\\\iH\\0\U3$L$u\H\s\Y\7ɡܼa/c$ۮ7\rDr\\.\\\FE\\Y\1n8\DoX\a0ɫ\q\p&EZ4rB֏\znբ>\ \'dR\\ZG\n+:P\|>sPc^M\"q\\\Z%4\'\n\C\\`\\Zó\\4\cj/lZ6r\UB\!t\RytJI0+dI\"\1\ZWj\I\Z\g*(T\\n\\Lbr7tɀ\n\EA\ZWr\\\#͕	!^lt\\\|o\C\ \lZ^\x  \-}:ɏ\\\r\\NZb)\VlJfdX\\#lW@ W Z\S-`\\~\nV\\"\\ZUMT;\\?ZӦ8y\i\\\kP\Z3\\葊\]\Z\֪m떕\"|O\\J\}^\@ƻ\ZՍ\\Z/.\)\w\}醶\\Z\\-r廒\^*`t6/[<\h\\[\nxS\SYP垫B\\_X\\K8S\a#\\[\n\*k0\5D\a4\\\;\\0/_7\a[&(܇\0\\ΕljG\\n[\Z$\k˹\d?\\{\Z\ݐg/\_,ip<[$r(\ڛ\8tbMq\0>5\F[54(KL9\&-kGRK$\\z,b6Fp\[8si\!\@뮝{\Bu$f\<[B\\<s*\;\չC\]+\\\Ss[D\\\np\h\S\uo9a`\\0B,\ri[e2<w\t5H\\m|\\ۯx#F\\)=h[e6\S\\\"ñxakAyR[t;}\n[ZVL[qT\u!\\\-.\[u#\\'KF}a~\ZY	1\\\L.\p[[8\\akI\\%\'n&\ \G[)ߋ\T0\uDWP\",Lǫ[I,޲ZF[%yKR\\b6\=F\\\\ad\\\[\\\U:˃VN:Oe\xΊ\J/Z[~K\X适[\r\"\Z,3z\.\S\\";r[\\n)\>l=\lV\;Ow~ [\f\'TOT\\e\f==\&\i[\6\\\;]\\qd\\J\\n}ʂɥD[\\\yV |t\r\Z\\/]X\\m$\\[\ȊD1VyEM	\e\\\n~%U\,+\\ɭGͫFV6BZ\\@۪2X4Mw\\Jt.N\\4\08\\"\̥A;(R[l6\\^;\hz{\aTB\{\`ȵ\\s\q)|\\IJ<ͧ,xLI2[K\\0\Pd\\xc,\kWba̎\2\n[e]\r\sJ\\|\߯\T(t2\Dn\\\\3\Z#\\#G71\\0nXsd\\\\\\\\\?B\:\{Ӗ73\LΔJ\\\\283=}f.\\p{\磨ƭ:\md\\ARZn\9\\lr(XuO\mC\\\C\\_{\\[G\D\%@Xo[tOx1\\HODĨ{\d}d2\s\I\1eO:yѪ\\WɼSW\#6+2}O}|FT\\I\r\\\$\m]IE\#\(\"\sc1.\\\lCv!\\\Bwns\ۘ%y\ZY(\\\\\=0b\򜩲2֚ `sTR<\\\\3\S\R\\0N\\Eu=ߘo\\\\\yT{\\\\M\\Pu|)?\\0@\\\\1B\\U6\ӡj݀]bz܎6\x+}\'r\\\ҙ] \\|$\,bEw`&uI\"5\`a]\F\5&\\-]V4\\dB@F\\])Sw\\\\M\U՝XQ\=X|]<rֽ\4\j\n\\hNRz/>\]A.\ɤ\\z\.\\j/z\]HB\\\	\m3\\сhܯ0x!ek-]J\\ebUf\7b\^p3KOF܍⼶\]NqC\N\\ٓ\ԁ}~\<a\\\]`~$\mg[\K\5\Nd\jsiR\F]f\\C-\\Oa+밎#i4x$jK]\Ɇ\\\m{w\#ߟ^\\,n,>]\FHrP\-s\en|Xq\rmf\`\y]\\Cŀ\Py\(\\\c\:C#\8\]\\\vY\\nu)\SEE\\\\>A?]LV]\r6|\W\\w\'\Y]\V0\5,MΌ9\nrDUu\7]%hqO\ݦ\t\q;+sV1B\\]ؕ\Y\\'T\ҹ0 P=<q^\T\Ⱥ^\ķ>`}j\NG\\\\'̅^\>\"5\J+fi7h&C\ϭX2\ZK^7q\Ud>VN\c\hap9k<^>\\r=`7\\Z\\\)x\\^AG\^\7 ;\6`\*$^v\\_^J\\p!\<ʛY\\w\n)l^Nbu\Zx\'!T\8\o\	yY|~C\'^W;s]\-4\V\84\^ͼ\,i\^g \K\cZ\0\(\!~zW\\":N^m\m[\(C\,m.^vD\\G=msv\^\\\\Μ\Ȝ5y\\\\s\\%^ \q(j \\0If}\\\"l\\Zm^:U\rU\Ь\DUA6Yf\Cb^Ujx{+\"&?5YpѵD?\\T^\\\n0{zs>Nz\/\@\6\R^̟LGZܯQ\8VW9\\nHb2^\HR7\-IA\ÿL#\~{چ\Uď\~\\^݌)nT\h):3\"WjEv9\\NnZ-mѵ\K^\PK:`X\\Y\qp\\I\~^\\e22eD\\\r\/V\q^<,\\^\\.\:%5)4Ncj,\6|^׋܄yiTW\a\D#\Fu\\2_2\\f\nw/ީ}\r<\\8Z$_\M7\ĘTf&%Z1\\S\/\-v_|B\O\Z߭/B\lk|S|dǈhe\P\_,\\\aLO\0lӔB\\U{\Er\@4_-n\2zYfy#ࡖVPM\\"~_^_=>7b\\n6h鶨Pj|\\"xh\y_?,\I\be}\\8\\\L\as\/_T_:rc\\ߘ\s\N\/\]\\n\{\zJ_du\\A#fE*.\nn9T\Z\9pYbX_lb\R,\\'\IheR\\D8}H_oYٱ\\RQ_}\GJ1m\]\~_8\@\zdf0p`o\qq\\U:\_\7Q0W\A-@\ZCTM2G_\37~q/j\n\\9S\#s_ՔJ\\n\ZD.sA	1d Ͳ_\64	\P\K_\`\I˨\1?\\L_%MSK9$y\\\g_G_\$@\"4](\\XUjĳfIs\҃_\Y\UsEƹT\4qP\\M\DS\F>\C6_\כ?&mH[J\Rc# \M6E\_\,@\\\S7\lo\\F\P\T\\ިG9_\3̥\3\*m	h\ZnM \\\\kX\`>:6ԩf\	µ\(\r\P`>P͈˙$I+=ƛ0tW26S_<pH`>Ng\K)\\\p&0L@e\\Z`T.\|	۞ĉ[bT\\I\``\\tD;\\?^+ʓ5m\\P|\&`{\Y\\h\uAlT\N-\o\rg\\\`\n\\\R ]s\?Idi#8Gp`hs4DU\.f$Ea\<p[\`\\Z\>f>\-\n})\ޞ\gGK\!`\!\r;^w\jMRU\"&ݻIʝi\<l^H\`=\\\Ix\'\u\\|\ΙK!`dIUgQ|X!\f~jm%Z\\\p`r{R.1\BiKk)\5M\`\S,Ы=\\3\ R=\hR1\\Z\M\$a\\C\҂L\\n\U\[ܠ{\'Ua\nU\~Xs\\\\r>\cf\"\\a2>\\b\[/W\tz\rlyoUda\'\ɎD\u9MJ\5u|C\mFhS00aC\$\qas6[`u\֓@W]-ͧaw\AV\ \>[\GAI\Z\ \\\cr\\l\af\KZX~ͺ3b]L<7a\+J#\\r/_\\TQP\\O\l齎l?aE<2`\r_\ra\n\{!{Qدa~ͧZBvLj\*Ah\*ba\\\\zC居Z݀;\4r=Θ|a\uY\]\\iZܤO\	\U\h$\'a\\\D\mERBt\\r\?fQb\rC?D\K}\y/\;|M\T$\?\b-\a?<\\\Z-\\r\r$Z\|Y\nbG03⊼\\rQQQ@vIF.3\Mܲ%U\bJm-ʧ\\5\53P#\A{\\6\r54bP9\\\ޤyP\\g\\\"\Ę\"VbgBx\\ɖ)#\B_u\\r\߮+bW\\(\:|\\[\K\0bK\\s\mFd\A\یR$	bbٲJ4k&rhX\+\v\Ot\$\\b0#Ϧ\A*>pjqL*LN*\Z4\b\\\;ؽ\\w\"S8\\z\\}\N0b\Q\Z\B\ZQXNT6\\\{hB\qb\􈀮9\!\X:\r3_:\\\mcb\\q\q[\\Js\آ_~\4/\`q\b\p\d\^R\n`	=dAc4e\\\s,c#ƈ|FwJ\0`w~^vEp\LLc\K͘\G\\|\\\\0\wO>\W! c\:\\Ue\HCB\")Sε{\c&\~LRt j>گ\\\\E@>\\Ǣ`\cIH1Ũ?\\\"= \\nw\"\{\xcSg\y(\\0^\\xa\&[\5 fc`G\\\٥\T\\~zF\+\UȐY\,cO`H\;г\\\Ce\\]ϙTc9כ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\\;_\Zevd$Gjw}XXyu2\Z=Io*\6d/e\\\s\S:짆\$flm\o\jd13\'mz\U=&٪$\\?t\\\׉$h\"wd5[\&*%\\\r\\G\8	\pS\-쩟q`97dBݑ\\\\E\\gE8\n\Ʊz\\\rx\/dPⱱX.]\\\9\F\P\\+zdW\'MJe\~vx\h{\s_|qaݴ\eͬdc\3b[]	~?;\\[\XkЗ`sdf/\dBl\\\ه\PQ\=\#djqe^\1wK4I\nt\fVC2\\2@q\dr\\\=\yZ\\].\ɱ\\ d|Im\\t\P\瀨9\6\|d	Y\@@+\ғg\ʐ>$/\d̃\\\qx?\'?lJ\kS\#\\\d\IX&܍\s!,\\\,\ZVwYL\d\0\(\X\}v\`\\\"d\\W\i\\^$\\_\f\d\ri\"fvx\ʅeKA?S\2d\NWNVSCƨ!\\K;e!\\*T\d9\02\\h,A*;3OAe4c\r}cٸeKWC\s$\Xg\-e5kyH~^}\\\f#6\\\e:iKp[\\\\8\qB\Q\ě(3eTm?Uy7,K\\rpSU\n8ͷ@enR.	OF\OX\P\h\YC>W\eY\̻L\s{T\=B\rvIFUK\:e\EB	Lzt=\F,\faZ\\{Բe\\J*\\bV,CvbʃP~$eؓ\rJQ\(O@_\y\'+\*&w\\".e\\\b|(G\\\\Z\rK\\<7\\\f=E\\Y\\\n\2\f\VL$/DE\\fl/\io\\V\L5\rpHͅќ5!\fp0U\~Ƒ\\]\fO#iU\|dpf1\'\)UɺO\+\p\\\P\r\kζ\f?\sӊ\1@cd`\苲\\6\fS~\'h,P.E1J>3&`B(Lfb\"=\g.\\>\{aۇaNl;)\O&a,Wfh\P18jIU\?7z\\ju+j(>fo\r\n&٣\/	E.F\M\\\_hf9\\Ȇy7\\,W2)[\\*\og\Ӧ\rW:\Py\\}p!\;\rc	%,g-\Є\\#h;>\	|3\zB\\V\g6B\Np&\\\Zgq:\sd\\\\g;74٣eZ\\=`7y\!uT\9V\ZgV|ӺgaWo\E\"\{QT\\S{>giI?F]	{\[Ε$^#\\d	gA\k\\D	dB(9\\\\\Խ\\&ga\aq$+q0k+&\;\Z\nl$hg%b]Zjd)-pF\j 9g\\ >0n)\X2)\0?8\\y\g\\\>ٗ\Yl\r\\n	PmAg={wu2\xj\5\?\g;a\¿]Xr\~\\\nt\¹n29g\.\$\o8q;Z7tz?\\ǰ滬ڢ\+gΪ\#\\KQ]\\n\44w\K\g\\H\7\Iʊ|Hi\ųlC޲\g\g\dv|U=DFB\;~\jZf\g\ӕW\Ѧ\\\n[T\nuA[z\Gzah\r\ʒ۩#jE;ի\\\}Qe-6Ā\Ch\"n9(a\h޿\\[GQ<\"h\'+:\\ugcYc\\g\\=\\hh0zN\W:\\\\j\\X%\@\f;\hBkD]{8\\h\~-2q \\aZzh\\|qA\"\_;^g\cw\\\\r{Ph\\\Z}\\b\Δ\rӍ>\hh<g\\s).זW\\0xZHCD\h]3\l%Y\+!Fo^=\hռo\8u\Z\:\8N\\7IM!\\Zl\j\#7hpS=T_k. \>\U\C\m\iV\h1\p\F)ydʱvNyN/>\ui\r\\	!8@D\aE\{i+;N\3\\̖ E\ݶA乴\+i:;\0$Pv\F\nSp\2\ֹi[-R[4\̠/IwF\E	U\Ux\i`WVd\\gz\0 *\N᷌^\\eipZ&\\`Un\$P\9xA	ӉĽ\\0iyHEѵ3E\"\:\L\\rXۀ,$|u\Wpi~\\::l\w\ˉΤի\8Q\i\(wAi}eP.P|S[w\\\W&w4xi\\M\W@U}\PO\\OJjr4\\M_E{i\0yNG\\8\9\'1+8*Hdi\iYS\\'댵`R\^yg4in\"}Vu3)!ƫ\\Zϼ~\\\C^&\$iʱL.1j\u\\\\0u\/\&\S0i\\v\*+&\&@kM&Q\\͒iқo\\\H\ӝJ1\p@ti\t.%-\x;\n>r#,\K\+ȷi\c\\\\'͔Ҟ>\:2nQn^Sih0=\]8YE\n*\ӽns\\jh\nј\(\&EeI\\\s`|j\\S\\=s\\̼*\a\	\j!iH4\]eL\8\\r\Sl\cbj04\1@E\X<\\0\+&Yj$6gCj6vt5\r#gAWFٞ\\\#\Y\\ ~j<\\	ѩ*$\*srM`\eҋ!j=\\8P\N\\T\r]L\\\T\C\0\n\jC,\UMa\\\kdD\\wiۭjG\\'\C1K\hb\*|YFjI\n&U@\\4o=\w|xӡ^\jPV]\g2LRSlwBq\Kje+=˵hO\d\n:t\(\\t\%1j|TT*\\/#[;\U[B?,ܐ`5j8ڪN9\q\9\rD@\fTUj\\\4Cu\"\B(\7\\\rX\F4uNc\Èj\\P.cHq\I<\;whBNb8\\8c\\j	\\\\-\\%ZL9I~xmHՃ\jo9\nՠΒy\[1	\\I\\j\ZpIS\\bʟ\S}\_\Väj&Zy\n\r[!\đ֑I\\\}	\I+j~˴nBA\-\ԘFO\Z*\\\3yA^j֯cQ1\0Fo fyHD\0@)\C\\j\]I\Z\Kxz՝^\!bu\j\A\0\.\ShN\}וF|Y\E\Z>\\N\jSw\Ka^\&\4	\\tB۬iki85{\?}\\"!AW,@z\Uklq\Usn3\\}%2?rz\B̲\\k2{z\\\$\0+3\QӉX\˼ P\kH%|Qe\Hz\rYo6Fpi0[節kNIP\\\\-\Z7}HDC;ή>E\kUM\,kEH+y\\Jv\y\PKӨ\\e*k]^=\u\Z\;d\2\kX\\\D\'w\\\M\C\\nᎺ\'k3/B\\	ߪ\Zp\\"\Jghk\\ɷdZqNЛ\Z\,F\\\\\Z\D+\\k\U\ۜ[9؀j\L\2u9\?u\k\]\70T\\q#C\\֠Ҳ0\jk\Zu\\\\,=\'\\\СǗ:̨kP;\\N3p\\\\Zxq\RW\\l\ֻqS)\?\\\\\\Zԭ!?l\\\=Q>|Z\\Ɋ\\>F5Y\l!}[zm󪧥\\W\#	\\\ZlLU[dg.\r\\5\\p\rQ<[vr0l_](7e/\\6d\\\\p\k#l\H\\\݇\r]0\$\{\	%O!\\\l!\\O\\euyM\m1\/\lK$\s0FP|P\\\\\VS\&6B=ѲRl\i4쿦rn\\u)Kj\5\W	l\\-C\jؒg\\\rľϸCI\Cla{!h\Pw{\%&\\\Y0\Ғ|tm\0\r>ȑ\Ov<\\kae\C\\\@m\\\O]^\-,qsr6V%Fڻ\\meч_\TG\"^\jU@\s=Fц5|m\rXC\9S\guh\~\RkYme\\mN\\\\nTm\\\G#И\}ZYՀ\"m9(Լy[EA\I\"Be]\m;A\rd\+\\\j7\\\qN\y	v\"P\m`\6뽩\%\\Hj\l̬?.ml\|\,C+\IbI$Ө\\ZHΣ^\"lQA\ml\ԟ\B:,%c5iN\9mnm>ގ\QQ0\504|$8\\]Wp_\\Ltsm|i)m`m\I}IdKj+9V\\̀j|,\ĥm~<]xL\\1\A8z\0-)@ʅmbO-\7°Oa$Lw?JEQU8moyfrG\\\T^5\\\\kp\\0[*!\\mv<\\.K	1\\\ WP\L`\mש\s]S7LAZ&<\섖v߂\\fPFmmG\\ \=\\\~\5OURD\\Wq\e\m؊}\BP\'|{M2\\g\בY\mM\ڽ\ݩ=FV\7R\Ͷ}9dg=m\ӥ\'麙RҀҌ*z#:\\,`$\cm\`ek}â\yF[\u\\ne\^m\<Fh\v%Eϑ1\^AԻ\rm\%\ʄ\\\[<-N2\ER0m\\j\\8tɗ\\K\r?\G*znDs&U\C\n},\i\\0v\_l\r\n4cyp}\%4mb&+uvB\n5\\jAx3fL{\\\\iƎ9nB%E¶>\9d[[}3\+hl_nLz\<\\k\Ʌ7k-\ZA\ADפ\`(2nZ\rc\ %\mG\\\V@m\@vT\IJ\Kn\\ \/J\\-+\\\r\X*JiHndk\.\Cz]\9fi0\\\jϏ\'YGg>npgg\z\ g5\s.n5LW\4nq\0\#O}\"EN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_\":~I8\\*2Yr\5\n\;\N\9@I-\z̹>\\\Gq\ n0oF!\V_1\'x\hs<z=njw\c\=\јZ7\V=ur\hn\G0%E(G&\WX1tF!\\\\n灴U\\¢\H\\\\ZO\\\h\?\rni\L&M٘x=\N\f[y=\/So+U\Yݵߛr0~xOs,2\woh\\QdM\\0;HՏp\\7\Co\0E\ŤCw\\h#9\\铽|\\\\o2\q\\"\,Hf!Oצ\wZ=PLo5r\\\\+\\}\o38J\o:G$.\Z%\Б\FFhSu<oKS\\c3\\\YW\$\\y\6Vl21@\9>ovQ\"c4\yIAR\\KSUoQ\\t\'\F\OSژ\U\.Ro}\nd\֑%?\M웪\\;o\ׅCH\\la\՘q\nF}\uo\\ɑE+w\\\dc#\{AC\\Zgo\֑\R\`#\:\֥6dǈ8\\\\\Zo\\x\\6\}DP\rMb\\1a\\|i\NpW|bO<f\c\\#_V\|\\\;Z\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\KfMQ	\ڭL_:\\Gp+\4\\Nd\Ju\05H{\7`S_Fv\\\p7RVĊ:\^L\~\\һ:\\TWWp<D\9ٌ\	Dp\H2LReGMpLdv\X3\">\bǄY\_[Mϵ\'p\0\pTc Oj-\΢	suj4IT\\#pk\x\ѥLҗ\)\D\\AzYnV\8\p~\\\$\ZtB\@gZz^L\ͥpy\Jz\\E\Hՠ\T`\n\\\7p\\%јȮW\z\\̀+QSr\=:5pYѹ!e\u0v\?.j\[,Ĩ!p\mӘD\\\\.uIdn1wp\=DY\'cq\ŭgaw\ Oa<;\9p\u\-i\,\\p\W\\c}h\pp\\\\2\W\|\[MQ\\\\Wwv$|Cp\\+L\\\\,Wy4m\|Cq\,\0\:\>|\ACz\\\lqgb\\a\\\\\\\,\O\\%\Vq(Fl\苗njpEr-R~\O࿾SN+Kq*O\DlW2a\\\\\,D%1<\\ܭ\qq.\Zk\؀E\\#\\\\q\\"q=\1#;+\\\^p$\qY3i\'\\G\C?o(\\0\"+I}lq[8\\d\\w\s#bj:75\qijj\e*ZHG[\?=?j\zԄFaFqzL\k\\">\\Eưzx\Q\e6\\qz+kאFz3\7-R6>\\\#n&q}bNO\nYV8\Y\R3SHC\rjqϑ\0d\@Л\0l,\\֦\tDqCP \!\3\\\а_ d	ǸuuiGq YƱ\e$\irhNFIl\,oiq\ʣuG(\aV腐7f\\z\\\Lmĳqú٫&\\UzHkoV\\!+lVOq\$\\1W֑=J=<\\-\\#\r\ZW\\	ܿd,ֈ\L_@\JJApb\\r<\K\e\2K{EÅ\\O\r,	RBf\0z^\*Ha*\:r4(^0\\F\1\st\\nr4\\rH\awVm\7\c:\ܐ\a\4\\\{+\=[rKX?kz^C\9X\Ze\FY38_rV\j-jn\\[M\\w\n=pɲd4\c\\r_!\\LPp\f<vs\\$\\'\\\\orl[MÇ\'H$\\>\Q_\r\	L\r-\n}^\\n)\*\〆Ю\0r\b\S䢈\%VȟV[9n!Ϗr\\Y\\\\0j\o;\\q>w\,\ur\\oZ\`\a%\,@H\"J7xr\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0sl\}߯]\6s\Zr:<[\Rd}:\Ydy(ѩP\"\Ps\'j{\FC\h\\'G\\Mg0fs( \8(\\Z\>e6ARQ!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\psP\4ͮ4qo\\"\F\\	^:Qٷ\s#Xۖ+pFXT%??crSyNκ&I\\s_dYekP(HP\6POsDVi\߾[b\*aVa	 \sU$$\\\\V\\g\\\b\"lxm\\s\8N\Z\0\\-\\1\\¶M\=1s2il)1\y\ju\HuM\t5(I\:\E[t*̽vdW\;1!lH\\\9\'<	C\ftlT^\7\\?1\	[\]#T\#t:sr\9\\ca\>S|0\\+/\\3j@tB\y\iC8ͿL4DQ\\\0oztG=9\0aʮ\b>\ZOz\c\\1\}tIq\\|\ZGwP\8^6\\eN\cf	\trX#\'XlmRq{\8\8F\񀌋tGV&^`\.^2IX\\&$\G\9, MB\t2z\vf#\\:M\\{%t\\\>\Z/A\\\\\G*\6e.QitЕs\)WjDrD\i<6\N\Ft\ḹ\]޸\HZMm\\\\mu\r}[-\\B\U`BE\rZn\Z\?*u\fK\\\M ]\=_mA98\0u 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\\Ud\]87\NXʢ}Mnu?|P\4TV\m+\\s\qdm~)u@?\Ԓ$p*%\\\\r(b=ϝA\\i\\u\=ۦ\RnJ+^\\Z\\'=\\U\'u@\\j\h0/\ \'0OMuDΜ\\1\1{i\Z-jВu]$)\ \\\w\\\5h1#}\8t\Zu;r\jJ%\\0$UC\:\\ZY!u\#eo^3\|x\\\\Pu	x\\{	_E\ۏd(^\6u\H\\U?/:꺨\Aw\0x2ښ\p\>Bv\0WbmA[\8iE\\RS0E`7d\~v\0\\k\ETv\3dxeʙ\0z?`v7c\0|q[j\Q[&LƗP\Nlv\9\ZR\r2\\@\]3z#\n\\q\r3v\\'\2\Y./T}t bH<6\Py-\v\\xgg\gy)ΦҸs!\@XQRc1Fv.ΡWԻlqH\\or\'Jm7\b\\v26}۞\\\Z\\nog$\$@[C\\Vv3)<>\r\y(L1yU\\nv\f\av4Z\}k \j\>X\\˚WR/%j\5t\v6\\\\yvT\\M\	FQKGu0\\v?Hmr\q\0L\>=e\nS\\Rv@n\L\\!r\\o\\\n\\\ڷĺvY<\r\\\4e6\oR;ՐC;\v\\!z\ߨ\A1\ \\`[\-v;a\'\"\s\{Ct(~\+\~mu\\\@v|\Pu<>n4p\R.\\sI<\\v\2\ςZ7Q\\XwFu}v\{_5\\[\t\Z;a+̝X\nx\\\\&v\\a-iQY\hJt	\\Hi\\2&i~v\\1R\Cօm\מR\eV98\xާv=}톭:vt!)T&\\\\\4wנ`g0O\!+\U\Z4\jV9woHp\\\Î \"M^Y\"\S\\ՓwA!\(v\.Bc?\[\\D\Z;vߍEUw&C}5Qْעu\<\4Uw\+h\\\\L\Ow0?pn~(3e4B!QwƻLbw<[\S\%ln,\-S~\]MDp\ǌ\\w=c^:\^N[ \X%\%N\,\w@\c|\h(\\Hz\X[_\:x0)KwDig\k\Z#\V\J PN]	Y\\8dʜwHo\Ռ7\9l\\n!{O[OZjwM.\\#S\{\.휜DG8\q(F\wP:B!n$d\2e\|6ӹѮ:0\wS\t+\ZאַHH\ܷzHo\\\'3{\w]<	^\JdOhYHמ\t.\(@,wf\ƿto\\\XXG\\\nFĜcIs\*ߤwlE\'~\N\r4dAˎ@7j;\.W[\gw\GTĈ\ч_|\'K\r,\#scwq\X9\\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\^q92:\\\_k\\\_]z`=*1w߹xo\0\(+%\5\BBSrl?!Gw\ \\Q\~\uQ\\41\nx:\w\/bݱ\n]\\nANA\0\\vL\Gw\ü}\Z\Og\\ f#\E1g=g\RzFx#oC:[\L6lrz|w\3\:B=x\Z\E\\k!\n\\D6R\\~xwؐ^\tFx{\֦\\7\`-\\Ȇ\x3z	l\rgRMq\;\âh0:Ӷx3M\1w:̪x\\M(\y\/2\\,x5r#ЇXt\%JFCD\rΜ\\0\\xKP\\\%\Laڡ\\U\x\\nGU\T\xP1v\\\o\0{\W\OI- z\wCE\xh@jAέΰ\h\Y\*~it\\nw\\0%xQng\gW.6Y\\z#\IĲx\$\P&\}\`\\QyGpr\*}9Yxŷ(\G*&\IAvф_R!?xȈ\'e\\Ŏ4m#\\8\\u\Vhx\o\?!lN;8g\_[jל3&΂q3ȦQx\T\\\n^\Jn\rC@\ԠG\\x\\\S\\n]\B\r\/\\u<\rx\\Y\\\Z>kEMR6.\\r[\x\l,B\%\\\O!\S<\y\\R\xԴW%\'7&\\az< AK\o\%|7\Ky ݣx#\r\\\j\ۤ\E\T\CIf\nZy-\8\<\\@<]Je<w^ۄ\CY0\By8Vx^\k\jONl\\"3`y9\\t$\JfƟ\\\\\n[dw\yK6h\+>A\W[\\\,\1/\y^&	\\r&H\3\\\\F[5\0\/yc\++S&\a1g\խ\[yᗃĩnyd-f\r\\\>X1ʠ-QN\yr:\'\?e\OFZ\\\诮\03y8e\\\\\\(@\$\\\k(\Z\y㈔4\tFK\\\v9\g\\0\>M@\\yǧ8=\u\<&(3e_\`\0yU\b\'d04\to/\Z+\]!\\\d:y\r!\rs|\kF\\a2ڼ@\\\ZyW@\\\\\\]a\\X\%Ty\\u~\61\ZɁ\\/[\l\(y\\L$L	rjk\K\\\\\jVx\0I\s\zF\+1@\,\\0C\JO\!\z\b\\\֬۳ygFb\eE\=\zLj\R3Z\n\Z\\\\Г(\nf\\r\\z$p~\=P\p\'\ey\K!v^kzP*$	\e(WI![(\ܚ>< \zUm{ڿY>p֥xw\nT\mw\\Z\~\\Iz\ee `\~\w\\G$us4oō8z\\$E\g\\g9K93)U\:\Sz_\J?Q\)\\ϐ\\aL^\;V\\zr\OU]L\Wq$N\\Aw\\Nz\\"\|5ܗ\:lW8]\PbNC~z\-6i	F<>LO<kԨ1\nr\\\z\kϤcQ\=\oJ)\\\0.e2 \,z\Hma\~B\;@l\\'e\\ۼsDő;{3l\p^\3\\k\;\\\n\k\{\2w\rOH\Suܟnӟܢ{u)x!\D@|H\F\9\Bu2\\r<\[?{5yȆdj2&\ =I\\U,qC<\m\\U{@न\$g+\E\\\g[r3\\{E\A\n\\\\\\\	\6Q`U{M\3#\\_B?n\g\\<\vw-i{\n\{i;|-#qY\d\_;QH\\B%\{saVmH	ٱ+\r<ĸT;\[{\rś9\11T_P,[D\\:\\w{n]\\0ֈ\n\r\\\<w˷X)\\:{,t\4S)hd\\;}K\\1\{g/\\\\\Eǰ\Z\I|\'ᄛDi\!H{\OW\=!̏\W\\\0vR&\~Gʽ\\#{ЩN\\7!QZ\\0E\1\ͦ\\ڤ!g\|m\\{\cD\1\\\"D]]=\\\-c\\|]\o(jF\'*\١Ɨ\EF$K#|\h\P\i\\>\\@\J\6\lQM㞂|#vh`JOAx\'^\|(\\Q\&j\"n	\\nu\\\Ѡ|4rcȐ\DV*{3F|Ed\\rq\\#9\\\nJ\\t\|FY\c~\'B _\\-dl\0h|Q\h\[sob\"Af/\$\\||U6\s\ZJZ\\r\~5\\\\Z|\\$\ݚ|Y\r\:l_ƙ=ݤ.M\n\\׺*|b\)MGA\0\\3Y\0\\\QyL=|m!5\zdl\گ4uOln{+\P\;\r|q\7rߍ\{\,\'̌\\n_\\|{F\\\Z)c	5!q8\c\\kp\\K\>|&돕1`	B\	\Nt-s\e[|\Z$\\"_w\B&i\\t\Z||@&o|\X4Pu@Co\\9R\d|zp-v\d\\.,[\Z\\|Q\bF|\u\\\\_\Nac:-;|pѨ7{͍+\\F\;\\}\U|ʃ[\^Bcx͂Ő\^@<=\F\D\|ˆ\ӰP<յ>\DdA.\G}\\}_|\z\,\j=gȷ\	\\\TF!wd|\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\jn\\\L\ZXm}eEx\\I\<gB\Z9\skf(h}y\#ũM\ss\\Dj\"\}{q}Pd,\_P\91+Bw\F~M}ʞ\4!\\ʐY\6Y%dXSٻ\0G}\\-6\\'fnTY@y_{|n<\\\	}\m-\+\vi1s\nU\8u}\)H@\\VbR\"\"ͥ\0׹\\ok}\	Wb2\cfHBy\uP~e2\\\4x`\\\Qx<C4\\_~\n-5\RT\w4\\}3}w3&\y7~\CpV_<rZJGԹ?ο\\~\"=\B\\\c\Z\\rzn3^~5:ܙ\F\LW\s@놘\N\7~>,\O0F\\2v\F\r}\ɞ\kTZ;Ӣ~DZST̵\p-7\Eev_\QymK\\)p~G686\*\\\" \f\Z=^\\r~PjgkΖ	\f:\"\vE\y0\s\ߤd~QoE\3RoJ9>\X\\ε\\"؇\1~v\~\zS5\ȢiyX\p\\dH~x\"&/\\\\V\!ca\6\ft\^\~r dKHq\#\%YZꗉ~^4\**\:r\C\s\%uKhd\~\EUa\qRh}\\\?B@\:䰧~\Gl*h$*V{M&Ul\I\Z\\\z~\;\Y줛NP\l\\&4\%\0~\\)+:\\ 1Ŭ؈\"la@MSӽk\\\~\Մ:\٫\\\rrq03aͽ\\!{\-\~\v\<gz_\\ݑ\	RC	~5B[1E\_\\\'\&xm\\f\R2Ih+Nq$,!%>o5\&q\\Zq-So4P\\9\u,*\3\R WID[1hђ\3\X?\?$\g\`\\䶝`L\r9;`\\tMQDj7iD\fba\\9S%\,#\̔\\\c~\r\\r\wCpM\\\0wd\J]@\\\ܶeu_\(\uj\\\\pP\\\5\\\֌(\D\\r\\\3\f!UH\Q\^3\\nAC\\su<f8s\\lp\Z(Fc1\\'濉\\j\$cFePnaަ@\#\0$6i2\n\\t\\_o\\\v\߉pj\\OYvqQ\,|\a6\\\-=S֍Ipd\\%_#\\\\kCӠ! !\ns`)^aIY\0\\1sX	vaCH\\ޯ9΀L\ik\8>:G\s\^\u`\J\=T\N`\Q5cU\Fa=\O\\Ō\ܰT\\\hX8\\\GR\0z_B\?<(\Ќeou\:\@Go\5 {`\\dQ\z]<{#G\\\	;c\\\\73!\}\\020͌\Bi\\5,k?L\*_Ȅ\\b\u%dN\\v3\ tp>?X?\l:\"x\9\lP\yfIu&p\32ƀ\Ok\hWSb\\^S\r)\[\e\D<݀\g/{>\\\I6\R\\5.vߋ \f6*#6\\\:\cKx:1#٨\݆=$\O\/KfԺ\\>8~3>׍\ހ\\rY35\)\\\\>FS\=(k)Ytו䩋ż8]c>%\9\r\Ϥ\\fzU\\\<\Mh&EN+рہ\\\H O>\06}#<Q\n\w\\\\k\VYԇ/ @\\\|ۀ\'&Z˥~oƗZږ\\'\6gi0B<a0\[\0=\\\U\0\-TK#i>\l.Z0K\]<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݁w\\\ypø\0EIntU\]װhyR\^\2\v *\PL<\\ŧ\Sҙw8ث܇Si.=$#	\b/\:\LV\䁜{l_\3t \ny@\8\ZfU\[% M\\\;\ZLҠ\j\n_0\\\Y\<Ti\ִ	\J]\\8Nػ\\4mT\\d6Wok\,Ӯ?a\G\ˊB\7J?\n\)\p)=jk\"/%>\;\\ےg%@t\ls\\\\j\jrƂr6yZ.\\\\Ξ\0\?`\b{CTD.f0l<\x\CqZ`h\"$vR\9\y\ۍ\\o4\h:	\n*fƊ2\gn\2I\ {C[HrA\Zb\ۖ\܆lW\G\Ua\\\G\\b{\ni\\kT\vQ4\\\E\r0E)l`\&@򩚺`\'a1k̖VS+\nWy\\\M\\9>U\:\n\բ\06\\rQ\\lz?9yNq\Jf0\[\\\;P\0X-\'*\\0Ie#\\C\\/\M\\;\K\nAt/c\C\n]\\\\J\\\\\\=\\\rRq\L腪p\/\ĤDQ.G\ȗ{\<)\MP\\|\\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[Xj4s\G\5h)\p\"K4c\!\Z\\\>\\\$\<\\\&e\\nP\\\\*Fy?|\IhFIX\FH\E\Z*9ݶף/BF	\>&уJ\54\\\\A6#\"b2S\vJ\@\\\{U1؝ڸ>)T}4:\\4Sm\\V\YW\\>\0\0qM[Ol\"o 舲3S\r(7_ \Yo$b\ܤ\r\92\4\\?y惀i>~\fKJ` \\\\3\\ux\E梖^\\c\|\ٍ4\|c8\\Þ9Y۳%L`N/~s܆4}?\\QC\\\`\Տ&m&=\C}\\cS<%`	&\IEibܱl@!\\C\\'0:I\WUsA@;\J/8\qڪ\gÃlDA\בA=\<\\h9)Al\t©|yg8T:5,uڄFj\X4\rW<0Y\{V9\\.\Ip?H[sB\H\xGqZ\8/Z\%Fw<\\+-;\QngpՌpl\V\N\\fVV.|\vX\N8D׉\D\G\\\\\\I\P\G1hFY\:w	\bd23̉gB@]B\y\\q+6ƀ=_\7k\\y\~\m\ȝ\G|F:94uZ7>f\ثD\i\\Ugp٩v䪄\{\\0\/9\'x~\Ѱf7\\Qˊ\o ,|\$Aߌ͝`\\s\݄W_w\\rz]޷vXք#b\xN\턦\qFL\g~~\4Uڟ+\r ?ξz\2l\\\=\!\ߤ$x}\܅\e(866gPEt\	sYk\Mc\ǳo1+Y\l璻V#\\qϫ\p_jf\?8omc5֒\\PM%\\ժ\	T0J\\0\\\(=\D\*ۘ\\ӵ>\\0\Z\\(ׯ΂\|\\\0#\\~^y2\c\t\H&DO\rZϊŸ\l\s@0jd2S*\r\KT(g.ك\t}	zCS0\j)w\d\\\V\圥1\\J{\\hV \\\'J\b-i.9\EA~+|%\0\\\@\mVw\\%%\:3CQ#+g\\	e}\\\@%s5FŒjfpv\\G\V\Mvx\\\!!\\\90M֗y-t3oXD\w\X\ \xT\\A]WeZ\0p\\7\\gK\z\XF\D\k5pB\#\\:N\p[\\Fd*n7\d뷏1\Zh6x:i6Lf `O\z\~\\\Aj!^Eh\\{RP\hO\\	\g\p3X|)F}h9P\*K_	\\&Z2Ji;\sb~~:~Uw\i۫uEfIrq\\\pE\W?\\#܈*\\\f}ժ\m۽24\ji\(S3\\r25y\02ySСfUN\JA1\0sP\+?>~y\ZYm\p\5^x>\\p$\!p\[\r\rf^\n\Edf\3]bv<%pIH\:\\W=\Άi\0\Fs\ZN\\aFRȫ?|Z=\pU)\Z\\!:y4\DY\06\)\\|\)\0x;Q[5\\Sɝ\\ȷdTK:o\V\LE\2\\y\E6_%Xc_\\+|V7\T\=\ոN\69\\\np=x/N\ӐFs\/ȗ\\ZCeܻiL$@V_%ņ\DX\+C\]D$W+f\yi><\\4\\r\(\rn\\b|8\\\\Қb^+\򍭑MrV5\\-\r\\\r\J\<$\jAb׹W\"0AE\\\=c\ݶG/twv7\K㛴\oGǧv\\\t\aAXX\	\x6R\naX֫5\F\\\'\ԇm4\@\x5\g\@\O\st7zQ\w\0\,7x/\@69	Њ\E*#\\/p?i\Qk\gƱy\\ {\\#\\o%E9\P\ˎs]\h͂R;bE:\0\7\&[/=scҴ\\LH\D\lC\b\\ǫoo\MI]2|P^<qD+_\d+%n\G#Hд%ܘr\܇\J<\nӔw2\\\\\{SU%\	N3y\u;VD\\cmWH\\\\\\'KgR\n\֜\\\#](Q\'n\yzMa\|\\\Z83P#\\W\(P)\\\\n\\՜\\7|#|ig\\\>=th@~1J\#x9QbvL\n\\'\brL\r8֒\\\\\\\8cI~(0\;Zų4\\81O ik(r\\.Pƌؤ\\x\nGAh\Y\I壈0\v6-\Wk)(y\jRv5ӓUē*\Z\"\Lv\::	\Ȕj\F@V:2Gۈ\~O\\_iS\nJ\I>)\D3j\nE\I5xp\*I\r!	PifVq\\lF\DVS><\ɧX[\"v-V\!v[\8eE:B\\ǉ\\8!\>EaC\t\eQs\,Mz\X{\\\[(HfCPAvy5\\\F\\Y^\\\4}!?\\\n\0\\<\8h,O\Z_S\Aማ~nDm\nC!ֺ4\K\)݅3_ʈ\\_1\[\F*J@-$ވ\T$\TDMR녹~\F-5陂{ت\0\Wx&_	3g_`\B\wi[\\'\\nT\T\0\"-\v	\k\Yd4 w񪰋;/u)٢X\\r\/_o\[B\\\\\nKKxm|\T*H\9K@kdf\dQ0?\W*歘fa9ُڇ]\S΅HDWI\\F\~\<X1g9]=-\Ҍ\>\š08(\\r4hHŔ\\HblXT\n\0y\"aRTf\B-.\Rc/n\M,=g$(}\B\ݮD9i@\]dE\^CAm\7tbv\[5\\S{G\Ri6K73!\stiq)ոJ\\\(\'UƉLͤ~[\\ٴ;R6y\0v )dR\\/\nfJ\hvi5rr\\z\"6q%	!kQ*;M\uO*\-\\jmkew[pԥ1\\%\7cp!L7wg~\]\'\=,79v\/_!\PwS5\b#fJ\WneoRެ\A\W_fE\}\*B+\vϘD-\@Atwr\FN\R_\\\e+\! ho\\%9ӭ\ك\	KWe2\P\[\, G\\7o\\;\\\C(۔H\\ݘ9\f\/\V\|\\i\3<Pin\ZEO\VoCu	\17,s\u͉v,\K\yJce\\F\G\\\\2u]\"\\#3\\nV\dH-SL\86ݶ\;6\	\yO\\\\=\P\\o\У?\bu\\ה\0G\\%A\\\\\\"\\^\\cί\k\܎o\T+%\$\\[[\/tH/\(ݎ2\eq\3۞H\-Xt? L\A$G\?Cq꜆GG\T|\P\:6hL6^EzPuK\;l)c\<S\"\U\BID\nm?5f𥋤\"M,\O=\:G\>ꊴm`!l{_,DL\+\2i4ǄʊŅ\\.z;& \q\\û9\Ԁ\jփ7\nT\tiC\b\\OK\̊㯦0NVɀk\\bX9\Q\\\\\m\,zo\F\SIa)~\a\F\=\2\\\n\)\\\}$\\$\N\)a\d*\'\I<\})ػP*l\wKB}ޜ\\s2C`\h`W\>!\\"8zH0\i \V(+kaP)2\0\Ւ\\0\U\\(r\bwǋ9k\"m{\R\7\a%,qJM0\\w\)\^_Π+\"g%甖O0[!<I9\\\"NEhܕAOk>f5\\9%,<\\9;]9˲i\0\\Ic\;\\Ɗ\\@pХP\r{I\0(<Cy\]1ԣ˿DGrc\\nˋ\\pC3Q3\#9\\\n#I\hq24>M{\us!Rd/hZS\C	\]_W-{\WFv\v4[\i?ir\zG\\a׌/\nىpR\?61.xl\\">܁%|oʮo3d\\l݈\s9?9\:PkZI%-\\\U?\M$Le⢒U_F=\\`o^FpiO@^/X\r\\!\\h\\6K\w?o=7o|<\\ԛR\S\KVQLnw\\rs7g\xP0\\_x_z֓\ɥzd\\\\^ЧG\\DC.%\\{?_\\z\}+\iU&4c?=ݽ\K\D`(\$(\[\䅠@h9<}\R=\-\\+K[\;Ex-ɩ\\H\0\9\k]4:B2\\6e@^\\Iͮ\sL:}|9\ƶKXk\,k\ x\\~6uz`؊ii7\Rq\3@\\nM\\5݁\7-7#K\T7n.=\$\qY\\0\"M\(\nOraHQ\61%ٺxO[A\\\a\Z\\"`҃\=ȱRvHmf`lsW:\u#`\OÓz,\\n_BB\\\\\nSd3W\L+&쌑cD`_e\\dvJNᕪ>bg2ZTH\F\S}\\\!*rUj\\k$4mxYJ_\\r\\\k\@7\W\	\\$w(\\MP\XpC\}\\ݪV.WPr\\\E!\oϦI]1PCN9\\f1	2vvm\\\^L\\\\\yf(_<>MЍfvq\r7jZ2)i8&\<0~퀍t&ubv\Zѓ\a\\_I\\nBcyb\iXfK׻Z H\WrRkL\\Cʝڛ/\x\0\s-Qہ\\\#\0\n{\\]\r\Wh0\@\=\r\\IKԮ~gğ0\ȣ)!ѱ\K&\@<\n%	d>?G\g\t!3]#޳jN7\|\\&?ǰղb>\\\\Y>r]bχ3\\X\>m\>\ÃOUyv\H\n;\Qıg\"WAҧ_g\\s\\UM-Gm\"\cm#{t\##!\6\'D\\!\\\\֡q\<pZ\\q3gl󪙛#i\U\P\(sPg\/Dg}#\\&\H\3\&XwҼY\:zq{\\I<\sUxtW\gAO/mưBrb,\\}71O[\'G\\d7z\r|q-[Iv\\xD!\fϖ\\c\DFC\ ]\5\XQ\nx\!s\\T\P\¾\T1!`\B\I\\rQq\"\ZF~ަ-\d\lW\]!rt\T\$MKP\0⶞lO\'d]<\H\\\\ݧr@Xa\\\"cƎ|\\W00R\嬶8Nh.s)\7\0;X\\\tI7\Sc4,O/`һ\\[%pP\Z\\cF\\\~cRˆVi\M\J\n12\\\0\\x1X؎\\r\\T\=2&{$Ʒ`z#?@\\\\\0u\F\\MGz\\p	\(_\\v\²ٍ@kr\\y\\~ĺC9l\xu@\\\\\H\\y\>7\\H\f\F\4\<\ZŎ\]sL\\oxEl!\0\\gUg\\n\\Gv\\"@:~CG\KE`\^-\B\'F*\S1?||\w\~`Ua\\=\n3-:oRF\*&\r\Js\J\rd^\=P\=y\p\yP\\\*u]\*hYef\\\m\Vr\%\\)ӂx	\c\`9y\D#\o\\\r\\pj@\'%\\(\\\r\"`4\\-XolKk$\ѯf7yӖ\us#\i$	\\Xi </jս\nڦ*ϒ\0+\ؔ%\V黉\yw\Z1\\\10+\ޠ\\]\  \\\UC_s\\\\!)\~ʹݭ\>\\\Q5ƾb\s\Zp.(Y*釨u%y\\ye\S\h\':x\\\\F`f\s\BX#\Ml\W\\0\#\_\\\\Eٜ\L]Z2} ~8fH\\ݧOw$}\\jEkw$؏\h|\\aXxNG\Zn7\Rst\\Ű\06<WU.s:I>T-\6fO\lb]\\9P\𽅌\@\1\^xz\\\oU5e2y)q n +\⯐U\0i\q ,1øώ\,㐕\}@\L(\͙VZg|_}\U)87^*S$ @K\^/T\Z\2\\"\n@+\\\\nV)-d C\+v5ƿ^\54A\le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\{dvc^\̟9\eQ\_Wo{_T7\Q\ʂ\\wL.谇M\\\=\B֑\r\\0AtȑN\\r>--bmYUMeI_i V\\HY(\o\ߠ\!k{ustټƒl|\az4\\55@	^\n4\k=\r	_\K\\"\X\]4\@\NS	\twҠ\aF^\\\\\E!\\@Z[\|\i(~LiE ;Ԋ\Ryћjp]c?\\\nTMOmK\w`J\\\\4/ww-6\̒ qnJ\0\"dJݍR\Z5\\,jd\'YBcH7*(ߒ,\$ީ\\\k\3`tm5^7}M\R`-x\ɒcr\-A$\:T\\V8&\E\75q\\Y\jY9\\\MH\EX[X]@G3: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\3c4Y\0VI:>	\X\"\FqU{\iM$̵<4l\ؤ80/\n}J`3cl6\\HW	9z^q-\7\6,svńTe}5\\;u\\+\,3.-Ï9#F\\}E\\c\>k,-\rhi\IZ+^ FF\V\'$$It\\\&k\ -8lZ6>F\Y\\38\\fG\O\\p>Kes!2YfxMw|W$\<&h\\\70k7\N2wFuO4-@c\tɷ3(y\"/S5\ M38i)BC[\ܚ~ZW\Ki7/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IS\lУ\\\/\m~Ynr\87\\\EC\\nj1s\D\)U\@\3k\{];\\ĉaՌ\\\Q\d\8k5\5ai\*\UW\s⇸s{q\KcBψ*\0\&Ƽ\0?w\oјS$\\\G\JNglc^^HH\^z\\S&^F\޿hY;\knݔ|\TS\\Ocw\\DٛOei\\j3O\)o\Z`N~u٩\bX\$\Z٘Zݟi_\\L\5>}R%Z\A\>\%|\\\@ւpw\\^\\o(\fPk\"E\պl5\zZ8\\\\q}\r\\2{\$\7F--s➛G2,a\?\dIu3\m\\K=\\V\\ԇ\|\ޕ9\PT\\nաc6\n\{zt@;=JM\Z\\}`\\\\෬e\~v\J?\"/i\\r<Hi5\+:~p1KG{ƕ`\\ݸ\¹\r? y\tbg\=!ӫ\Q6\\9`\"-tP(cn\/\>)b@HO?5>PQ\	\F缃\`\'\%\Y\\\\o۰&d\tQ;<v\\}\'P[Y%/?_@e&\\'\Gpp2[zDwN\jÕX\=Чl1Y^2x\\O^\\\;?L\u5Re\v&\\-kUobE\7ܼ\\zL{\{M\TG.{})cI\+@\>H\#qL=\\a\.cU\\ZMw\\\J\× \\'b\n\}\ZQ!\x\r5\\DQU\\K܅ޖ:(O.Xi\+&	\M\E\	\zFgo1:ѳ\Z\\>A\rq70O|%6`	PIY\;I(\\ϋY\ۖ\uf/\Z\r\\\Gs<\h\4\\o\Wx\ۺ!\\Mz0V_.=*ym\0C{!Y\\Ra\"	`F?M\Uǭ[*\a:\&3ܸ<u\LJ\P#\=9+F\s\\q\\IB:U{G@\B\=\\\'\\&Ȗ\fC \~.n,1`o9]\k\Z\q4ٱxr\*ӦwR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>\\hI\\2Y\\!ln}1d\\Z\\\חK7\G\\?-U>\tQ\+q\Kz:n\9>j5\d\\3\=\YsNqqp\c\\\uȺtV5\Ȥm9\Z8q}u}o8>&V\&N\A\,\r\jY\\\nxIv\Iv\\Ԛ\\!2q#&a\;Ll\\$\d3\Z\&2\	%\r\%~\\W+n}\\`+j\	\QC\Pf\ԥ\EZ\N%\=\\\	\$ɗ\\\\[\"!\v\O\r#-\S\Z8(ɃA\ҷ\h\\\\\/v\\.O2W\\nd\*\J?^wzTGЧ\,\\ė\\\n\\yq\\#1\6&Z\n8ӊ\UuB\ੋ9EL\a=\T\/\8,i?\\\D\/ -\ &~\\'ɋݱٌ\\\]\\\!zDW+\jJ\\(r]\\n=+\WU}O/inj\4\u9ϯ\\\-/O\5dXS^\`\M.N\SI\w*/\r\iw\l%\7R\c(\Z=m\ۗA\\\'\j;LB\"^\/:\qQ\\oB\f \lG2Ĝw`wn\\N3=\͟hKrri\J8[C=Sѡ\k\{\[k\F\`Rl>\)퓆o\807MR\n\\}\rľE~\\Ő\r\"\'쳓04tbtw\\K\\\\iUVD}\3y(\\s$\\T\琱a	Aa|;Tr\ɯ\(\&o{\!2\oʪ\\D^\D1\ \n\\9\)Kb}Sp\\McPAYX\\+{^\٫X(\ߛ M[\>\\mM\C\\oMt\}\qqXA\iYQ\\Mޘ\"#\E\\Jp~&w \_ڙ6=\\uqe4_oq\tp^Ba@^#$gKd\/ė5\\HR\]\.H%Eq\\ Ʃcn\0\\Qǣd3ME\D\\v/\Z_a!\/.\A1\\ܙV\s|\\\\bPo25\*S\椞6i\,\\mO#?Vb\,C-ܢcž\Zh\p\ZYv1]@ô\\\y$]\6y=g\֘\\\eQb\\\\\o~܇\] OL\HPx\	\9lKS#\n\6@#Gb\b5_\*BpX\\rV\w\rAU(\r\be\&U6[F#`l\,\\[u\0T9\<	c\&A\w\Z\E\N\\Yq\\\i6-%1L˭ݐ;\Z\\2\uY\@\n\W\ܑк\%?\\;`,\\\CՋ\B\x\V\u(|\/\9\Jې@hy(K\4\ZU+h\A\"\?\_6GAm\\\\!3h\\\"\\Vj`\+\*G\6j\q`8\&R1`\\\\r\Z{\5yG\\\\0\\M\x[\\-\<P6Y\E\[3oHSVИ\E]:S*\˚D\{vJ\-C:I\J*H\]9[F\|A9x\\~dr\\[;\#;.\HAۣc<\\Ep&U\nOKE\r\B\ʳ\gU\\a1/qX夞\d9SyrCT\0ѫ.ʹYb\jNZM\<hsսI\\\5\'Н\LIxX\\\`\\EѪ\\B+Ap:G:\\,\\\\ra\H\n\}`\RN\\|\:Gw&׳\?/K$^ce?^ZdO#\%Xx\ʆƛ-F8\\yd\]3\f^\\6Cwٛ;eRvZ[2\ЭA>6\BVWg~x\!\\\ \}+`\a-Ӭ3+@w\F\\_+x˷Ӏ\+\'C\\`&\oBh\\06\6+\u0\\\\2ԭp\Z;Di\bi\\"r\Z@!:M\\uYSꥦ%Cp,\"GENNN\\L/4\\p`\\\41Pc\\q\\27\1\I\^ЦDv\nZ\UC7\\Upx,w\Û̀vNx\klfB2\QWk\Uڜ\"**\\\R\\\\\kh\\W`\٭R|5\\\nu-\\\\:ԜY\'K\F\Z1ZS%4\\Vb*P[d8geͽC\Z\ZS\j013\4]\)\\\ζ\Z](\ 9ƯHx\&F\\\"=v.\/|ќK0\қz\'u\zu\`̶$˜\"X\\\\MN\͆&V\'#Ǚ\O0\-kq2wSc?d\U\\\H\nQ73hʫ\\\\m<\GM]3p+LKNǜHRf$\|\k|s\r\\̣64\r\IbmH\?C\n\D\Ԉ\t9! \\DW\\~\<~\\J(\u☵\B&\Oz8օ܈܈\{sf\|\߶\}~(=5\ǜ瑊[m \7Am\\	,LCT\NR\щ@;\COuJ9\\"\ZOϧÉ\Ɠ{ONr\X\\\U镜Q\٩\n i/$\:tni\KSf\\]\c\\X\nn\Z\F\\\\\\ppJ\V\A#\\1\\{A\ \û\ͥJ\OmO:ϙ\\\lW5T2\DB$^Vy\gə~|\rU\tJ\`g04	n\՞F\LZ\\ZqQIW#(4\\Z\b=9-C/s#]:\fR-_\rX\\'\\rX4<V;G6ˮCۊ%G8\\q\)ϥ\\vǯj7Z\\\"S\\e\($KVC\\m[\;W8<{b\\\'\ŏ\q`\n3\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Νx\\[%\@\c\\\\ن#\Z>O\;\jGg\R0\\Gl\Y(\\\"y4h/\E삡p4337-sգ\+\f^\\\煙\z\\:򅁖\F͑Ý\ڢb?@\\˨]\rH\!|\(a׫\vC,\\T1>K)||yD\\p䏂\\B\\\נ#A.{Ari=M-?\3u;\\\\\#\\S\R\\;\YߵzCF#L\!N@69j\c@%\ ܞ\?L\$bmjT0)\庠\\\|l`$\\\{\\\"?~cj:\èƞǇ\\0(8\Gf\\Wi\pJpMbVgC/V!W\\3\\Թi9\*m\VwkZP[:\\UjB5E $\\r(\ԇ~Y\G=C\nw\\9G)\\M0xa$k٥\\4a&dkGS#<\x\>)\"&%q٣\u4KM$\oݭ{\A\rQI\Q\\Z\(B\}O\^Q4uT\v\\1)\\\\Nz\\o\\'\n]g\Z\uF(:\r\\S\\\\l\Vl&\\r\\\;;PϼOa\\J\\\aE7\dh|\\qB\\)6ѾpDW{ۓ۾!$ʤ5g[9\\S\\\Z6 >),\\(E\\<~\<k\\"`	\\[\\Z)^Ktz \`t^\u]\5\8ipvk\Zܟ%T1\#W\$\\)z/WL-ZE{\\\\K\ѭv\__\"l&ԟ3\I49q\\\ZYFU	-&\"\(\6]\'\\:\\rQFGߵ#b?\y\g\	Vi\W\\Z\X\JxڵՍq*\\V8\,x\Ҹ\$ݠIBS;\ ɕ81lL\'\\udjF\וVQC3x)\!\TU33Ws/wq\a_KB\	.A\\\Y\\\DZ<\Xm\nc\h}\\\!\aX\ɱ\9\6\\#ݟ\\{m]RWrޙ\V Baן秦Fz\JO#\%ĞI,SM\V[u\\r\uBV\o\\\\\#\\\Iv4\d\?\\QlHJ\\6\\2\me8(\\\\\0\Z%\he[\\>K5\Z*V\\\z%\xĦY1xYf[F\X6cǠ*\uk;)\gR\Ib~\Z4V +u\\cr\>\\0_\s;\ϸ\\B\\s\\1M+J\5C$r<0\\Ġɋ[!͇黟\\d5crFM\\=\]\\^ܩ	_n=Ý\&o\\LP2ur~o(\M\\F\S\\\*:l\5\Z\>Z\Drg\oEI\\H\P\g\^]n\0\/Ǭ\\s?\F\ώ\I\\s\n4^T\\X\r&Ԓl\(E\C4)\\\ZrK(12\e\^Zr\#\jW\y\5-e	G_\\m \r\?gWՠ\:5W\\\b4#\>)cSu\\ \ڠ\r2ѥ\@F?\&\s~ՠ($\̻.\\\\LxkWNg<\\\\\\\Rg_\1\\3\)16Oރ^L;ˋ\.#L\I.]\\+\\\\\\Jp(9ٰX\Ό\n\\\\0*p\\̕\^ XE1oO\\\\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\\\\5s֊soʊ\\/]O]\8\0qg_\\Z^E6{:,\';\ZB \c\\Nء\"!g\xuE\r̉8\i&F?\w[℟迢Z \q!\\\\'-Qx\0LD-Z#SЦ\\[%ɚl\z*mҢPW\1 \\>͞uLv\}\:w\\P([f\ޡ0\[[\\nudv8\f\RDlաe$\*}֢Zh\\wOW\\w\Si7G;xV\\"\0ݤƫ\H\2`zw`oi0\Vj\\0ي\lj.\B\\\'|Z\\øs\-p0p@\[\L\fd@\\a1\kv<+r	H\\bXҞL\\W1&@rJ\\ڇǞsb_`6K+l\|\S.P\^\l\\	l9\/Ȭx`\\\:eu)n\'\ZcE\\\|\:D\N\l,l#C\D%K]\QР\\\L!j\R\\kV\=~R[\C;>\fM\B\R\+mvn\	t;=%J\y\R%0\\nf/e\\\ÖIL*ԟ\rWt\&BmvWU#wI$\Klh5b4:\ѕWn\w3Tg-Z\BF(O)\\rfz\?\\'=\r0C\UR\"\$dé6\)IS\\\n\E]mY5c\rwcD\\4AqQ\ix\WD2o\F0\+\vBJ\X\0T\PO]\Z8U\\\mVq^o#ZB\aCu\wIT-$e*1g|v\\\\v	\v\ěW\0\(\@j^x\h\)\ٿ\ vSh_\=\XD\\pi-w\F\a\ZPN;\ˮhJ4mB\B;\3ӯ\\\hP\;\)ړVz\0D\r?\{\.\<\n;V\\.R\\yRTx\\h\~D\@n\\ǹ\iv\z\{\Z]_q|@\TbsBzV&Τ\k<tCz\ \n`j\rM\\N\"Ag\\梑x%&\\\yp5\\L&]\[\RբYBѵ\0\\\4:\rao|(;ҢL\]검Nj\\u\za\hpF\3H\O)->!\"\'\$t-}\\\M\61p9ǡ\\\\k\Tb\:X\%nܢxJ\;vww|U\-%=F\\M\\>gq=\\tGOwmjd)\ߣ\0$Q%_\\\\\\{1\ގ7\څ\r\,?\\\zDx&\fv\$\\HK\\Ahɍr\0\aF1mԍ8P\?Alm\\ :2M\\m\X:~ڣ8\,˴\\tT^ע+\0\^U\`\<,MW\\t\\\+TÄ\"^J%V\Cy3BVtI\ppF\y\\/sܮ}G\T@\\!QR\m`+N*u\6N\[s<Ď)\\ Z\\9QB\\\\\\\'G\,~Ifř\֛No\Yt\\\8q\sMu[\ץVWЭ4pp7\\\ԣ\;\ZܕAw\\WIIw\	\|\\\d\2Lu\\\=#\JR9:x\\Zz\'\#m:uZǸ\>8\|\\{KiE<\z?eL<M\\}v6\\\Z8zRv`\\\.)\.^\\pĔ/E{~2	Evh:m\wW\\d\Ө$B|S1,|\K\Y$TTL_\|h@\P%\HD>\\ٿff?_\2Y\0d#v\\T\UЦ\[TmG\na\\mq\Y\nTorqKKcr <#P5rhf_D\m֔mN+K{\VO\u-\Qd;\++O;vD\)(P9h]\,vɮvJM\(0(&#쟴>_Q7%\l|[\\l|\\ߘA\Iy\~\k\'$ё\\\\^\Y\\"awE.\뤮\\5]\\~o]bT\\\n\ç\-G\\=\\[\FJ\\4\@ŷ\qabnd\\\0\nXf6?,=ʤ\ \K\'\\9\od\?p\\GZ{\e&\"\S\nTk\N&(uu0\!ϩ7$V9դ\w\|\N\ZvFd6f~nd\Z$\i*\\'lA\\\`to\\\G\\\"\\\*+cW d+ΊM\?\Z\L\rZ%\0\\"lӥY\M\2<\\	VTo^%F\_Dt!\䍥i	K\N5ڈGe\QB\Z\k`\ämu9uH| \ܖaQL\U0\Z~{vh\Ƈ\wRjIyph\gss\&\:\C㿩\\\r\m\9>zo|.\󮥔\rǩ\P\'\R\I\R\0)\$\u\\	\k\\f]W^\n<贡\b_\ć\ȸ[G&R92\\&DDcQ\EQӂ_o\fIo	}B3&Y$P\ʥ\{\kZxS?\t\"Q\?(nr3\A\\\]]\hi\{\ ԃƧc\J\}|\\nͯްA\(>j\2Oƞ}V\OצwD\{so	k\\jLA\R	V\ZzL0Qwb\\׀хfR\=k\\)\\\ϵ9\D[.NV\KuZ\'ނ\?0\\\\;J;\0j=\"(\P]<X\4\m%\̆\'?\2[Q耐8/sG7m\\\w\){\\I \'\Q}mˮ$\R4U:k$\Gw 1\@\\uiL\0Kĸ:\@E^؛36v\!l{PVw\S\!nH+\\"\0Ud\:\n\\O*SРLل\.\r>֛n]\\\9^	aZ\_phRf}\	PޯZ{֢JZb\Ru+$Jp)\#蘥>\XV%z_X\\@KOuKMF\q:RSO uѝ|=o%-\\t,u.\\\ \rHxeU\\\\UHK\^\\Ǆ_%ך*\'\Blm&\^\/\ر-\Mp\\\#<_\˥d^\\\\\5\ě\n\\+\܂\ˬ\\ns5\\*D^\k\2mi^+\Qf\'\N,ntR&\\*\r\SPK\?x7\.\՞\*L\uK֍\\v2Zg\,z\[^ׅY\\g\v⭤YZV%Is!б\j8>\\0ئ\n\GUv\i3DCA6D\`\Ls<\\Ţ\\\\tE>P\\\s\n#HNo\\&\\WZ\\Ml5e)qouvR\\#\[qOy4`5ɥ\)d)\]\0J\|M\s`bF+u\0#\r\ Lm\Nߌu\\uc^=¡DU{.\į.տ]\\d0ӧzEvGL7t|\%\'4%\fp#eh\-\\h8q9\Zx\	VG%%h/%R\/\\\ήq\\eGF^6`vBI	\|2PS?hFMa\\ȂUE~zާ#\^8Z\y7Uܲ={s\\\&FW\nR_	\'\\Hu)W\C}\D&7,H\)m-\EN\M\A\͛	,_~Y\?ck\_\0T\0yk\\\\M38W\\\\Q7F\\\14g3\\\'%L| {\W%\\_g	@M\\\'F|S=Ւ\\\\[8(Y\Y\\Vd7{m`C9+efү\6\\\U\\Zazߏ[\_K}P\\0;rɑB\@?@[P\\\^3\\D5Vw\0\r\'\T\\P΢`\eέ\u\\K>fL/\/\\'F9r\Z!\\p\\'6D;%^-xh%O4y:X0\^YuGyD\Q\\b\(\g\Epֆ\riݙhF\\=\\\yZQO/\L%\@\=\-e\\-I+Rz<\'\ іr\vqS\KU7\Wߤ_i\9qQo	A4f\gS\h%=ZN\=_Qu~ҿ$3G\U4&\" KF\j\T(5\\o[\\wOP\\>03	\\{ɟ\a\6]0\n\*\(\)\\n\Ǟ\0zv\V\MAJUla1 ƷŨrX\>\\\5SƤH[{\Pg\٨V\!6\"	B\Ѓh9\\.\\F8\\ve8:\\c;%\\t}5;F[?EXn\G~\Zݸ\\B[)z츍\m\O~B\|A&\݆\\\\BJ8?\3^_͢opʫUCgw\(i~\Mz\\\e\xn޻X),\#Ө\\\1Tz|\\'ѦUf+2\W[NT\0.l>Wv&\\\\\\\qv+\IN~WL \|F \\KGO]5^AG\"$\A[?:\M\2(\\V\\A\\/|b.\\4\L\'iWFTЎؙ\\\r7\\75F|DFIJ\5\3m\\,YlwNƋFe\\\\y2#ni\F3\Nrb0\3jg\\\\\\mP\P\jx੄\5\P$j\\\"\`\\"v\R\n\\l_\\\9ȧn\\\Z\rR\\\갪\\[O\\o\\\.a8\4r5$	C\n\ntYwr\c\'Sy:G`}.,]|\\օ\пе\I۩\b\̚\\\w[$QӬh,a\Z\\\cNCCn\ø\Z\$#\k\\=Z\G\v\܌o詑ouj>\]7!Ӈk\raH%o\Wk\h0io|ԧ3\'ȝ\'\cL:b\_\LXx0Iʪ+Q\;\\\/hE;\?T\8\Vܒ\\A#I\%d{F\\\\\0+\"6\ƹȪJIZ;w\%!\\W9\\\ѱ\S\	}\9nN->\t\B\/ԣ(q\\[T&\7,Ǽ]m+7^꫒v\K7[Eu\r:&i|:50= \S\Uu5^_w|)W6\c\*&Ī\]\\Z\\\r4t\\\Z\wMi\\ƐG>B\\g\Ѫv`\(1in \\5U{I\o\4B\]Sf\1Ю#8ZL\\\\}\\OB\ȫ[y\\\}BxwIZ\Ч\&N\\-)͈\滃~5\|zI(:.\\\*\gH-#=a\$--9\'cڪB@\\H\N8P\ߣ\D\.\u\\y\~B5v\7[k$lȅ<ت\?I&k\\EYB=\b*ҿ\3Ft\5\m{\T\<gF+j\'pQ\\\"}\Fpz.T\&lG\Mki_\\ZQ\n]\(_\,pgi1\}.͇3wz$W<leP[?草\\p>\H\#j\\#E\^C5őܔ)=\=mf\ht)\'z1*~6U\E\\\\4[kP1wӮ\\\\^\`Y~F9\-\a9Rdlw\j\Ra\\S(7Ʃ\r\\'E^rn\\2ͪU?嗸W\\\Ve\L,A/\" \4\zX\1\][MT@JŁ\m\4N2a0Nm).:\Ҫ}]\%v\\\c\݈(YUe%\!TFi/4i\Ґ\n!<jY|BQ\Np\wxo9\j:Og7(dKQA\rU\&Z\~f,鷿ܻ\nd`4\.{\mϖ\S\9\n]bG+\n(x7\\\"\\\"\5n\\\\WIi\\\\a\z_ݮo^2S\'\VAF\Xj#[ͫ\3H\\\@!\\\+siA$uN9T\+\ƺD=\#\wjx\yӋhOB.h\2;\bIq\\\S\\]\B\^	\Q\;fWV\0sl\\^\}!\/e*\'\#\Wl);*=$99Ocor]\Ȭ-\\b\\\\`\\(d\\\n#\D!\ά:u\sWO\\(PX2\t =\g\\y0&\\\\/j\\\\\#\xVeaz\\\\\\Uܞ|-\\\T[7\||\Atu\\\ia2\0\\Ĭ]Fsf\*M\'{Hs\l\nmL7,M!mۖ\n=FK 	\..>D(\\٪\O\-R6\\W=q;7\6\\o撴\rV>\=\5\\t\\[ߓ\\\\\0\\su1h,OTU̬\$&^9]Wg\G\\\\\">Joe\'7Xw(ucJ[1\rZ\\[Qj\"0Z7\\-WN5\\Z/yF\&\\}=\\H\\V@r\"B ̀zϗoֿ\Ţ\&\ȣ%;Ga\3~YƼ\n\n.fd\\\\>8{Ά\AHJE\2>\\\1\}\0\:aT\M[\-o	_\\\\f\\čjtz\"\HPl缳?\x4\P,\E宭}ab`\Zn\/^5\\\)o嶏\05\\x\%,_`@\c?TD\\\Bu\=781\z\`~\\\\R\'\)F]\r\^\\n@h\5⭱՘A-z\\\\򼂣\.kѻ/񃭲V\"5PG7\}j\!mYZvrIƒp\4\\\{J\\YE܍\xƵ\(٫EƵ\\5\d\\=?Nr\s\.PЁäO2\:~,\)Z\U\sk\\\\\u\$1JՖ3\\1G3pRm\珮<\Ũ\\\\7i\U\\'z:	 \6\\\/\z@\6T\&\0\Cp˄($n\TwV\\;\LQ72N\͋-m\\4|0\0;W\4\bQ(ɞ\\@\tal2\X\\\\c\\IRL 29^d6_V$C8t\{S\\\\\ \I\\b\\'h5\_\\ZQɒi\눙Os\J:h[ڮ	ۮ_\/Stt\Rʔ\W\CU\x~:rQ⨮wE\\\p\\VѼ\\\sc\`PEؑ]}܃wz,\<\?P\&䮕#ss\\j6tvDz\ELZdM몶W\9ITLcr\\h	=YkHTxDe\:#\o0m\Ͽiyۂ\l|4hN\\O~%\\n}\Z\\\H[6aB2jf\7\\\\fL~E\lf\Z]\ܤVB\0n%M\/[\\;*\\\\&/\_\\\/!\\r\\\z\¾\\$et\%Tn5\?*\BRg\dm?\*\r4&#4NeTs\\\\M\\!r\\\٣\\\0a\T\\\0\ڲ@ޮ\.m)N\u40d0nh\"\$\\0\$\\r\O;zjJ\\,nq U8cO\'x\vW\"\\jC+o%~\q\O\\r\\\\P\'\GrHq\' [y-N\Izc`\#\\\0ѿ\߯;\<	`>7Ts|46\fB!\{C*i΂\Z\"\\c\9\\qLԬ \*7pO\6S`n\\\j\\VFmT`b3&.\j\\ݤ(qSj\p!pu\zI0J\0\&\\Ar־v\W^ܨ\/,Gp\ߜ\@d\\ß-\ȧқ\xFkbs\zXh\%M\n\cCE+c:\0e\\\\rު\~\nM\w_a<\>V\X\Zl\5j~d3\v_h\i\0\7\ǧ?\{e&\ک\0\͏\'4n@\\\\\\Z.\^di$Gٯ\6-֢\0q\xw&a\'vV\\ҧ\#\c\\wr4w%}P,H\\R(\T\6a\\"@\J\m\ l/\hSٰ &^S\\\h=.\M\\n\\6S\Q\aHt8h\s\\]\ZU*FRg:\(\B\\L|ԋ\\\Z/\5Lr\`[RBؙW*_5N\^;\\&:\\nW1*U\yKeŰS!.!\\\\5C^\ی	İ|vV\u\MM=rv\\^\"r-$\\ͰUq#\0HD`\\>v\\+O\\鰘7\}\\:3ҹ\\dAye8h@ܶ\sCU\\\)\Ot߶\\\\/m3R?\\w\\ZL\ \򣷢5cZ\\S.^\'\\呰%\J(\V/+M\\餱\0\.y\36x> [/.\tT]\wpX\%]\~|4u\o\\Af\\ĐQ(\Ë\Z%\\|^\\]\\\Y\^F#c*(\\#\n=<\e\\^ҷ\'#S\=wW|K:\\0kG%oC\؂l\\'N\np_\Ď+$\i\7=\I5\\\iB\\4<\ұ,\\F\gM\\Rhj\\Yı/\<)\p\Q\К\P_s\Z0T\XA\#6{\K>\~qI\=!486\>$\Vs\yJy9\D \Z\_`X?4=!\\\\zRhp\}@\,\r\Q\!U\fY5u\ϱ\nEfaq\\Z:ұ\b\\L\n-#[\"61zvi~3gF\Z\4\Z/\\җ|CAb9g\\=\><P0\r˵\\c+\r*+H\n$^ѱ&>HLi#a\"\Of\,\8\,M4a!\_~њ\CO״&\8\Y:\\_؉\\\\'qP#ŷ[\\\`~;\\HkMX\M\L`b\:$d\r\\s\>L>\n&H˼>#ꌆ\\7\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ż\=LJ\h\Wgy>\!}Y,:vβ\n\.\\5Y\6\\}oџi-\(~\	\W\ρp`$<\\\5wJkSf36ǧǛm0*@/\Wbo\wZl\'[\ٔ\\61\i:S9\\,$ْ\<\ru\v2\6FgG,|\8\\\\\\i1\<2\,8\\+wlU\yu##ed\	\A3Q5Rp1\'r\SlY(7wA\\O)FP]\\\6~\"\\\?BwMҳ(N`\qد\U]\҆\0\\\B]3\۫\#\\\C\d5FC;ԩyN*)J-\޴1v\j.y1BǷ\qk\n*;z\\\8j\\c\\q#\c-aP\F& \\(\1(R\\\^\\\rm)\O7x{@*;\=ۏ\\@s\\\;\Jʘ[ԗI>~\\4\r\Z\\$AC\SwXZ{\}ajD}b\9-\%\"\!N\_)\\\\*1ð\\5o3rX\Z\&?V\n\)K-\M\$A\\͌\k	\/m\d\\\ӲjsEF<3g{\'mv~DEfMN\s\\\"*\'7p$ixȭv`\G\J\y$:\xty*Y\߰\%\쳁^H\Z&E5CCq\%\.ABʣVڗ\C;7\"\AbIYI\0\:)ѷǥ\`wcw\nN\I\\\+\a\Zs Lzf\#4C\rVv\\by:83o\\Z\\\\"ڹϟ?\ɐj\A>V\r֋ou\г\\.$kڽ\e\\hn\\\n!!޳}\\iK4KT\Tb=2UኰOB`˳\+T\9]\\-!Iv\\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ç\rbR\vO~nw}߯gK3Տte$Dv\\EZ6\f\+(\)\!\\\"aDr9aC53{\A\{*эb2Kwwqҿo&\\GD͢a\\\L\մ+^\	\pBJ\x\\\7\?Q\[=匂ߐ\ե\^\\^3PꬒsI!\>@\Y{<N\a+⃞\78c*Qt\S,\8ν\\0T\'\LOOx\Z_E1\T\\1V\mHY7tR~\\\\k{Y\D+)\\Y;]\^\e-+An\\\\5&\_\\q4+SH\x\\{\?f\\m3\\`\\a󴻡.#,\t\0W&\;y\c<\\q\Ќ\\2\\\\5ݸ\;\\Nk\=xn\\%vA[y8n\\n	(h!e\\kbHk\\\[b0Qy7ǊE\3Sjz\$\ZM]68DzkTykm|-\\@\]y%U?vwXl\^\{qʴ\D68N\?%aPŧ)]NC\1C\L\W\\M!DJy7F\(<\n\oM,Z\`1O\Y\ﲆAQ\\2:*\t\\n\hO|;\z(\\'\\\;wh{\#6qY}\\6GWȏ!~\\\\Zãσ~S\\\LKjJ|4<\&Cn\roۼ0+ˍ>|\\PJP*m\l\\@6Tѕ\\"\A\lHg9L\԰M\\\=w:UKץDI\H\\\\\\&dtM6\\&۵b\8\Z	k{\<مJW\\~\\재2c\\\\nt\JmI!K3|M\1\\j+\H\\\dy\\\\qE~߃!\>\'c\\s\tZ*J^\;6Գ\Z~IDծ$x\P\iAU-]=\rj1[Wf\%>qp\<Պ\\n\)\\^^\c%\W\m\$\:\'bL g\}dA	,r\\\\wKw/\>\\&zk\ʜjMU:~o\\h}5[\;\Rf\Ɉ5\k_\\\jQr\Q\V\\'\\d\M\2*^\\0\\n\q\#\Z䉩e޵\ITv5܄\Sy8#\GyF\\$\nr`\\ZpGG*\rr\n\>|\\Y&W4xW璪Z)\rԓ(a\y{;˶2f\Q,\\\\\+<\\\0\\\'⮝	3G\d\߬T\*\\J\n\^D1\o=\$(1\\\rۖ/zhT\<\\]o\:x<U\0\Z\q\PJ}PI\I]\y l\H\npᶀu\\!4ߒ\\\jF\nz\\\\W\|\\r\bϒ\0E\0+F7̚\r<!-:Z[\Zj\m`_\\\2\]\\"\{(40{֣\\\}\rq;;)D\m[5!\&\`c\>?`(ݮ>Hf=\\\\T-]gr{\G[\\Z\\x\\Dsuͦ\ޱ\4EXD6\0ܗD\\Cx\bQfr\03_LA_\\g20mz{T()1\Z5-PqB\\\ҖMGx99d\䁊N\58\'A\зvNtvj\I?!\\\Z\"\4\\\<4{}aБ\8a;[\Z&+:3W\뢅?\ry\Q΀η\!Le\\\sEg#\\Zwj\t#W\$%[6\\\Pm\\IY\*\\%vbb<J<sj\\ĺԴUz\\\#Z\\v:.N\MV\\rz$\}\9\\\:\q\C>,\|\4\\0F|=.\\2ǐ\{\E[r\PE~P(^\\\\>]!\r\^8¥Z#u\\`\x+I[\0\NM\[x\V\"2\F\q\\\\\\\Hƕ4\6#\r0J7\0\[i\r\B\\-p\*iƭ1\\{\(H\ Ԍ\D /\Clg\9Nv\DB\"\\\A@%\'+h\L\\\\^^\+#e)\.\\\Q\\"6z}_T4x\\ma\#E\\\>u\\\X$={+cܧlo\\T\\'.\E\\\]\\"f)|\ns\Mdm\˸O\;vWl\\+`\`B\\\\\&kk\h\\i\\\qŅm	\wb{Ag/\Ÿs\ä6\I-\-mDW4\2V\9\X-\\ԁ\\\^L\\G\\8㸭\DC<\W\\FNB\Z 	{\yWPJi\\Z<@k\\qsa,jJ\!\w\S\\ޙ\)==)eFK\x:5D9@؂Ϩ\'<Mt\v$d]#짛\߸\X[nJ@\\\zvT\Z0:t\{^!=\\\.`8G\?|\#C\=(\6כ\iuh\"KS1R\\\\+/;iY.7/\X\\M7~Y+\/\\\1\\\n\X \ZA\r\҆\\E\\r\B\\\Ћg%\3\\\׳\Eq=v,V\"/\C꒹=\8\u\P	\kŉ/\LAN3\)\ECC\=\\\\0{ק\\"};龡tO\\\m_jWG\\\\\bojH]x!+>\\\Ԏ\z4J1\~J\9Km`v؋^\GRf\﹘\\&vcDOvcQ]P=\\\\$aF\jF\&|uPU\MeG1\⹳\߹\\\bۥ!	9~\Ggl򪾨\ȹΐ\3|o?\D^a\@ \CC\\N&\P\S\t\i\zr\{cYG\\*3\\0ȇz=Bl3u@ÿc\1\,)\a)\qټq\f\\\L1\\J|b(#}\\Eպ\ʾ\\UL\&6\\Y?+c2$\\\)6\\8*\Ȱ:E@}\\zPWE4Rc	ĉ\ۓj\ڔ\'\nM}9\`\AR)\y\$*[\\|˺VB&ipU .\Vi\tt]\\\;H\Id\DppS\\\sJǢ\Z\C2]h\?\ֆ~8\lȪ4,Ǟ?𴺈lkJ㙸3g>\ڷdGzfwSC\<v\\0\\f{\8:\\Z\09A\B-\\\"\R\LF\vɩơ-\&i\\NJ)\\\s+\N\m\\ug\h2%\.g0K\\>⏺\G.P@J\3tBk\\\D|$T\s	$Yb\"\)\Hzd\\<\\#\ya\\ګ:K\B\8\\co4\\>G1J`ZI=\cBfeƷC\022\Jn\M\F\2\\x<ƌ6&FL\r\<\ZR#캝Ldp=\@fIW\X\"MB\1\QwoX4bxc)@D˥\ka\˯|9Y\"\\i*\UL<6\'I>b5p<\e\Zps\}[\Y!m\#e\\lp\.x\0mxP/d;sTsM=j\%\0b\\NtR&y.sE$il{\y\#\\]i\F\\F\3J\={$˻/\8&\s\3o\,\n߰\j\<BH@? a\\\\\g\j%a\\Y\"p\\\kb\\}\\\qB\},?\\]/\1{\\Ƅ\/\:Q\\v\\\>rr)q\Ao\\r\:;(S>B!V\5R_Bx< |9\\'bL*^\\\Z\n\\ȩ\\|\\\kZ=\"\C\(k\"!\\~53\\\rϛ$L\t*1\3\p8A\t#\?]\\Dw_XY5hn.\ce\"\ӌ	\ZS\\\\:\\vBi\7J\7\]1k\k1G¼,`|]$9\`,\w\r>-W\7*\\<:gj\6Tz30\8Xh\^~m\~ \u׵ބ\22RYRP4H9\O}Xc@P`2\_\PVbBȭItJ̀r{Os\\\r\\A\3\Ǣj!8}c\G\J\˴`nؘU\n\=I\n}\'`C5֚%{A/\^\r)prAJBQv\ep\\)\ \RNy\H\y+3H(H^eE1\o\y\֌HF\\\Y?\n\}Vք魘n\r\\0v1\s\N\>cID٦\I\0-*\F\\:Å=IH\'x\\\\"\\\':*;:\\\jl\30d\sc\0q|KF0_q\YsBKbַb\(7^:\˽2dl@WH\\\w\\0	wWK9ٝ3C,w\\\W̑\>\nc6iS!ຉY8V#rQ$[)znáW;WѠݥ`W\AA\Z\!sn?R\v\m\}a\x\{oJ\ᨷN5q\\K\\Z_\\V\#\p\W\]BS7\jY\4\ciA\W\\\~Y\W4\#a0\<g|.JDS\y\\0ae\\\ԦG9~rs\jJ\O\\\}\\\5\e3\3mhyD\Q(Ĥ\g^\L\\\F\qA\"\\\\@\\\[;Kkq?B\y\:P\r\0\!E\Ð\#\MOzq~\Γ8\,\\՟\/\޸j!T\NTح\	\\䅬+.S\^Qiͦ&\\\YX1\"\\I\+r\|\w\\T1a>00nio+\\Z\oo`yfn\y\=C\\ժ8:\ξeZT\W\0w X\$\q/£1S4i\j#\D\\\]\Uu_\(K-\\nD(@&\6\oZ\&$\\b\X\\\mfkJ\ړI\\B\(\)&.}_\j\hF(֫\\]*|Wju\t.!\Zf=\>/\\'\^Oo\E;3\'\(?\G>cg\xWʡ̍V-\E\ArDx+\+`\c`/[΂\-J\H\nOQ_\*}\܌\|QБ\rq-F\\V\0@\\\Tن\\\\n\Z~\Z\,o{\l[U\EX}AJvd\Z<`ea\X\9$Go\\)\\ոr?S*\8q¾m)qp\\\pJ\Nnxh\Za\? \4\FsfY\2X7\n@k%|/\@J:y$Lqrh)uF@1\\˞o\A<\\TQ\ǿ\r94Jb\ r1\\LL\d\O^,\R\NsSn\/ħot\U\$D_P!\d\0Lp\Ok7\Nl\Ln\nq&x2\\\*\n;Y{\uDW\[d\g{d \B\s\n9i\\S*LDE$Apfl_:YT\^,FdΔP\gẼV\\\\@P8\S0JȪ\">0\mT\\\\!\\Z\\9A)Z/\@*6\y\R7,䓡D\F\fl\~0#FyWy$-\rm\\\}Q\4%{\\{`\"2nE\*V$ʷ\xcRYKSMO-\vY \\|\\Iƀ^Q.aW(f˿b\n;UB\\gn½\E\9[9|<C+~T\RBE\\\nH.\VR3+ֽfj\v5\+i#\"iR,k2q\X8	֠,It8҂\Y\\UN\*>FZВ-z\	̑TgqܧG8)N\*蹉\\*01\G9!1\\\\}WF8|Va\\pV\\Z2\$R9L\G&m[ӏp(f$\R\\zX\Z8t\80pVۍg<\\nE:0o?\%ڡc\\O\\ޱDi\c,7[8NGs?\\\3\UQf~-X5\\\rJ\V\\\-\c%#\ep~\8Ϛ]k\d\nO\EŢ7?>A\\2Np\$u\\p6Y`ȏ\#v\R\0u^/\\'~,\\\sJ\$\Tl>6\H<oBr[\n׬*ªXz\\"\ʣY\\_\<\\'}\@i\X^k\VQ\\=ʧ!\\\\\d~+\O\\\i\gi!\\\H\\n\nu+o}Яn\[\hDe(ޝfO[\v\\Z\d\\q|j?RN>AA{z=\\0t\\Ws	a݁i\iW[/;qP~\Sr|L8\e\V@\5 \\]\UV1NkԆ	3Oʂ\\ل\9kǋL[S8,\^+\\\鏯\\")>(J\\\,e\h\=\\UP|\?\7\\TvA2YB\\_d\a\\!\"QYP\\56#*OyԬ,s2\\\xpF\T-ou	TT\>\&W\m_\x\И4rk)qu\\F@IetʰKc5grkپ\Sd1DS\\Z\\\":4\KLJ_J\A<DƄ\$\\&lS\R\s\\GW\ėT\\\ZZ\\%\\u\_\H\"Ȯ\\V~	00\j\Hbн\'\`/ރ}X\3\n\D{|	\Q\aK0Rb=\\ѶX\׮,c\n5ik\h\aߌ5\>tٌ^8BrZ\`^\=1{K\\\	~ظ1`\"\L\\|w.Dk<\ d\\rOj\¼ڃ(\\)#}GlJv)¿<\~Ͱzuh,yqp\h\O3A(\Y\)s\0J/@\(rO| A>m/[\\\*nB_RG-YX\/ZK\q\0\\$\H\\\]po=\'s\X&͋E\;\Z\\%*\jf/\i>;\	\Z\\0\*s\n7)]Vl^B\\>\\\\-\t@^~\W\-\\O&4#\h{\Il\\1@lhbT7a+\\\y$[\\7\B7k;3K\d\0\.e^7AA\\\R&DGm1eE\:â\\s\l\\\\\\KǊm\\b\0V\96 \'?\nHÉ\v\\\p\Z߾V\ۈZ6\jjË\H%fV֗\M^\^4\\ZÝ\\ەt}y%Jn\\\<\~\\Zj\æg\mp(_\YNjs>\ESiò\"\\ӃƋ\\T^\ނw \\\]Eԫ\\.\F=|\\\\\\\\\V?\r\&\\\EHDu`F2<\\"h\\\֭\\K\&Rs\fiK$c\N\Zh\	9ҭdЈV\o\c8Q1E/\=\\rX݃	h^\/\WXgjU@\6%0I\r\\\\D4e6S\o5R\Zfޱ\\<Ÿv\\ 0!!\\\N\\֢ƽKr=\)4u\+vD\>\\m\0\\a)\\7t2ͫA\:\\\\yLª%XܚlYD\}\;7s̻ƪ\?\\\ísͩ5D\\L Q\n(v\y\e\\r	6s\\5QZ_^m\]#knn\r\\\)\1:\r\x\g	\\l!\؜S\Z\c/$.BEk\'ZFy\|A\vPUIEAL`L_\2,\Mt\)o\f.\z%ē.p!ih08\n\d\7Ml\T\R\ĕ\x\'u~ze|\\E\\v\2r\Ĝ\v 7giU\eޫtȾ!͓<A\aOgĞǑ\K]Q_\ro\\\Xϳ.\o\\\\A̳\r\\\\\]y\\~1]	L(p_\\\\]p^8\\cLәn\\R\\0R\\\\Z\"\\\r h\\z\ZES)nnMRa\\ZpK3=V#ej\i\N<V]\Z\r?\\_}9zН\\fi`\\.=m\Z\l\a<cGB\\"$\)\8\$W\**f\S/,H\\k!]\Zjq\B\l\Gu%\?nc\\fdv\\\\d\GBw\\iJO\\Z\@-.q\\H\x7\0\;4\0\\Z\o\RD\Z\J\\v\"(p\{v;\fˋ \&Uu\u\U^$d\`\\\v\7\fErR\-y\\\V\*Lg\bJ\x\\.g0V샻ZesWTm\^\"QќG(͢\eK@^(1\\]!\'\\\srKS\\\\#A/\\\\n\\\Z\0c|ffś<=!\-uW\=T\0cᄒ\F`\ŦO\r\+\0A\\nN85p\ Bb\tVV:Ϩ<(\\y\k^m<\\\e\6am\Ԯ\\R%M1;\\\zDk16∃\rBXњzy\ޗ\\@t!0%\\/;+(݀\t\ZU\)\\\t\\	-b[\)>\\Z\r\g\6\\߷\\q\\-w\'\HB\\Kt99\Jm\\|q\H\n w28+\\lro\P@s>L\{\4`\D\\M\\\\\\oa\Y\\myt\\P*\\nDճ0AA\nkz}\*\$c\S\)KxX1\\\Ӽ\\\\~\\b\ݥ\9wEE3\\|:G\u,v\lȾltdA4f\\@H\\\eXqƁ\Zd%\n\\[\Kn0\\!\\&^\pƄ+\\nT\0\o<\\?\_.,OӔUƐfB\䍎\\\C\\<Zx0\\\譃Ɯ\5-Zdn3\I\\\\rC\\ZHcAƨf}>^zTRsEy:\vʋ8Ư<\1ֳ\-P\f@G\\rG\yƴ.\ g]Jz`\$L\Kf<\ƴsf\OC\|u\t=)\k% Ya@ƺ\Z4_\9lR\\kUk\rP\'7/^\\\ųt\F\\\\r?\v\\\WCYnqC\}8|\\M\\\<d^\\"ą9ޕANĔ\\򜜠\\\b\Z\_uC,PI1\[\0\2_\\H9znD	rY[\\\"?\"\Z\c񦱯g\r\~ \\ǐV\\5?\B\\ $i1a\0EQ\aQ\\2F\\\>0\/\.\nw\\'O-\\mo}%-\0{\@\n{\\	ݒ\\\\S/\-6R\ӊ\\\0\Y\n痬\}K\\\³\Z?A\,\Z\Y\\um\\\<slM\aPL/\+vwd\ǁS\z\\Q\c\\\N\\\\~(fZF\J\~\n<ǔY\M\gE+\U\X\57HEht\6\sǣ@x?\\LHe\xݸq*\\\a.dNG\\kNך\P\\'hH>[Ұ\\\[g-\\d9#	35{\\Gg{\t\\\<\yS݀\<N\\!)\v\\\\Ģm%\QHy\0\r|}D\\\{Jy3W6;\\X^\\'P1|р8&d\\K\]\\	\\\E4v\\\۬>t&g\k\\"\\r+\fUʰ4\xY*R\\lգz\Uc\\n5K\ȷ84]$\0T`1\o\F\\"&\\"9 \\(\\z\&\\̱ȁu\\Ƨ\\\\c\\\u\j\ӄl\t\ȃo\gQ\\f\\\\E\-f\Ȉ\Iy\0]Q\ἣ\(\\Ͳ\ȳ(\^zqp}ٳ?\{.\ՙG\\pȵ08\\S9M\\\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`3\\\vTl\\Ύ\rG\W\6\,΃_{\*O%EHL\rj\M\Dѝ\bSF\\vl%\'\Ͱ^3\E>\ˑY\,X\\\Rk\2\QL\O\P\(\\\m\|9p\Y\uc?-\\\\\F\\=Dq\Jkfɢ\::Kq\35\Fpu@ɮamș@DmP\\\J\ɯ	j[IY|Բ\bX$nG>\LIɴ߁10Rzʵg\Z߁ԑ7Ȳ\\\%\\B]g\\"`.E\q\\\-C\\\\96q \<R_\nYBb\\\\S\"B\-+G\Q\J\2\\~snm\1+uf\'sOd\N\tk9^{sx*X\\n\bs\\Q\h\Z\P?\\Ly8\&>\IB+a\wqˏ\\\\N];L?sBis\\\\\(܀\zHO?\۷G\۠ԙ\>Z	~\\\\y\g-\\Gyvm\\"\GB&i7qʥv2\Z}K_	\j\\Il09\Rʱ~o\2\0?SV=\Z\\\s\\\LMk;P\hJK{+\f0\|#8:k\\\\ \ߪGG\0hd\r鎄\nlj\\\s!\~\B\Ol\;i\Ke?>VPbA\\y\+\\L/SՌ$.\bn\e͞B\\x\Mg\\F\h\W\\~d\\\1\a\\n\\Tp@\\ǘvDz|3E6E\	j\\\\P(\g\\C?\#\\$/\\T\A}\\\\DU\^\\\\m\\$Io*ẾV\0\!\[ #\\އ*\Zmhp6o\2&\\\+\\\0P<IYM v\"\	X\8\d9#\Z\ѝo\\\nT#t\9rd77\:\#!]6I03\\ѵ!RY\=~׊u(\,\rD\jT\\O~\"\L\BUx\\lrXwc\<z!\nb\O\\pL35pD^8DX\#qֻ\\\'f\\\\\.N!q?M\*\]\\- y3,4P9ƕˊ%(\|\⛩\\vq\0\}\\\\\lnˠ9\HǱUhLgN\{1W(w\n\˺C\\\=vpO\W\)\[\СM\\\\2\\S\\S{zb-\ͨ\\4]?^Dk=3!Z=	\k\\B§\\\\\*PyX&%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Ng\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\OX1r\eT8k,Y\h\\cYN\iT7v1X~J\\\\=_[i\riJ\\q\o2\ҋe}\Xto|zJH\ް\>̆Fñ\#\rb48\\LI۵?\2}̎1B\S\\b`;\0&:Tu\%f^ځ5̓>-Pc/srt\)\xK>\l$,\Z̚\\Q\\0u4J47:\"R,6\\0\\̨tX\'\Jܳ\ai\m\>#Me\\̵\ \*\o2\d*_6c\nzp\\\qJޱe X{~k\0a֒9\pA\\&a\&J_\\\\"OTa\\nS\\\.\\\7ĝX\\`j\nf\\}D\Er\\FJ\?C\\NТr\7\\eA\\Vk];Y\E䙡m6%\\3de\\nu8K8BT\I)\W\'\|=\]m8ŉn-`u&t\\ߜ\\S\u\j2kp\W\6{0@\n-t9\$-\VrT\sYݥ/\\\h)\`\6\3\n\\0fByjZi\\nFغ\\\0\ µ#\7\f\\hCaT\"ё^>2^~\"-\I-.\rQ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\\\\J8G\"獃N/6\\j)RV\9 \\\yO\\Rv\nX\3f%0y8x{No\:K\Ѱy+\!1\E\\À\\'\Uʏ\\\ %Ix`\Lb\ɚ\[_I%\\\ǆm_|SLha\\'\n\	(\\Z\\\"f_\i\\\G=X1\!54\V\?g\\\!٩\!_#*\\\B	:_\$\̻{ϛ\\\@]ӎS\C\0\\3\x\G\X]׸j%=%\<\Iр\hV8qW\S\\\ZN\| \"hek>t3Sm*3\^\e9|#U\6UO\Tb\\o~\s\/\\\.yN+4[xV5+D\"G{\\\u-TƩ\\\\X\i{\ !7)\\{d2S\\gzfĞ\MJKKY1\·^\n\bq<v`x\KZW\>Gw\\Ύ\u\\L\%\\0\\\\\M0@ΕN\:9\R}5U\\_^s\n\|\Η)nS&[{T.6Y\\i*H\\\Y_Ψ4OoaR˯^Nrk/5\έwJ.ֹ҈r\\~\\w=4j\\\ӐήOO\y\#MP\u\bT2.tٰ݉ή޸F\ZgT\\\i\0b\w\i\\ڷ{\\0E\Ζ׸@\Kx\\ :\\IL\\\0ƚ|C\	&M6\\"E;\\i`n7\(}\9/#T?\DPX`dӂ\\|\ћ:D3\C\S\ d\`\+4Y\;YƏZZt\\#}\CklSt\Ua\"6\kHDUxKU>5\\Jʧ\-LE{_E\\0	RB}\\N\sEC%\\\'\ۓߟRf?\r\\\Une\\"4\\0Cp/\5\\|\X@㺪gp.\n5_\Uqڠs?K3\^\kǧ!\\0޼L\޽\rbգ\ݭ,\luݚ\\>\-:[BǓ|*\Cǣ@χ8\7!\\\"(\Rϋ2\r\ZaDD{o\ό=_}+~\\\\(Ȟe\vrC[m\K\ϸ\$\a\5Q\\c\Vjv`d\\\\mmY\Q,|:Kʒ%DL\#\b\XWbp?\\nQ@x\Hc\\(\X.\Gǵ^K\,8\b2p\*X\OL\\a/\\\\{ؒawn\nyL\I\F\)|#\pSRNbT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\Am]J7\MBДlWh<S=\\\\"0iCDM\\q\ZЙB\z\Z\k V\\\wn\\l)\r\МTсFC)k|\WjN\ɩZ]/e{вe^K\rs;S\eD+\Vc\,/\Nо;\c\0ׄ5s+{u7^\\\߭kF5-n\!\x`Oks\\\u=J$u	8\\\@\Zx`\\#\)+\\po\Pˤhz\\\Y\[|`\;]\\\b`&h2\\)VKF}Ո\m?*f搭\\@\%Tķ\x6ҒOӄ9Ą9.z8\\X˖<Rh\#IJ\\* T\q\0t<\bCK7jBY\C\n»\̹)B#)\\\n@\}\n\F\\>\k7X*ve\{}b\\\\I\\P0ιo-\j\\\C\-\\W\BBu\\sٿ	#g2&*\<\Ԟ1\V\=\(sSl.\B\+u\\\ۧ\-;\-R8k\p4C\9\RWJ̡f+V\U\\m\9j\OD\\\zq蔷\g\rӒdK\\:DѬ\.\A\Q%8;+\[}2\0O\\\nqbm~	+\\jD\ŧɽ\5h\˫\Zx$\wB|9\W8gk8Yljo\\n`\\r$%\eG\Z8	cb\#k uh(\\\F\#j\\\W7\\\"\e\KC\ds2R\'Y\.đ3\E\9D>\	.\2,!\@%}1i}.k֛k\gpݑb\y9\Y\S\[w\0m0H\+\\\\rq(\2\=\\]$Ɇp\\LdG\a2x\~e\_Z\\\a5\\\ڹ-\{\UVdH\r\V(-W\#Q?`G\uGp~n-ғDjk\h\)fxw\\\LQғsa\"\o?\Щc9C\ҧ\1 8,\^2\y\I\[u(\\Q-yj\$ie\Yi{p\\\\\8\\\ڪ\f.\$F\L6wfj\\i\Axk\\st~\\\n¢^2๙f\V)\\ʍ*^D.o\\\R\|D\9O4[J\	\"<\\\Ɲ2\,*5\p\G\\;\w2^\\f\\\5@է\3=\E?:\\zM\$\\qeƭba2E!td\^\\jj\)RBxBL =I\5E\9\gj\"Xks\\\	&\Q\=I\j\EN\7\n;R}lpfVbm\m\h\c\\J\\\~9H\J$[x[\֝\~\m/\\ȶ>\ũT.),l;;o[ӆ\ˉDgu\n\\Y2.\C0ÎM\(Ӌ;sdO\&h\gC0u!\[+\\0Ӟ*س\\jEW;\\\\>$:\̈4dQ+aJӨ+`qs{9OFxvNms\{\Ӯ¾&j\0\vS\\\|.\kӷĆ{线m\-a.G\\B1n\\:sӸ\9A!\\\=\׺a\	\\L\P:\\Ԝ\\\̶:wyj=ҕ\ī6x\y\\\S\\y[9\\l:\Z=\\\\\?V\2T%<΋̪\\ѬJ\\b+\/?B\\<\\\|8\W)\0\j|(	\yz\\633Wq\'\x0`C\\A\W\'>ݩ\A\$s8\\*w,^4\K\\\"w-\0C\V!\)3\Uէy\R\u\nahFzf\\\rgmqԜI|y\'\\\ v\d\\Ō#\Ϯt\ԥ宂EO1\":9(\TQ\\"M4%\\\&rO\fA[Ȳ4ɏݐqU}R\\"\G\Ǆ\\Lg+\0v\Q\v1R2ߡ\\/Ɣ\~Ϟ-\\\ \Z@G>\\\u\\y\\\ax\n`f\w?\6y}>\\m\nM\\\R\\r\ˢ\\\Z\Nt\AFA\r\|\?\\\4A&E(6\~e\|vH\l;\\\R\\ZV\\yf`T\\Ø`\\s[\|C\\Im\yu>j\\"e[8%\\Z\r\\\\ˤ\rN}\R\m\D<\k\\1\n%D\{RӢ\0M+\\2\Ӣ\\\;\\rM\@\jc3.R\2-\OeZ}{\ 7tBR#\r\n0f_`۽\\\\\\\n\}(n\a\w\C\9-AIQED\^Yl2\Jj\f\"3zW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\\rGVpGG\݊X3\\\;՜\5Iˆ\\3էKnLm\\U\k\JصlLզ`A^{\\Bb\rN\\Z\\\\\8Yd^^uY\q,c$:$(Y\z/g\\J>#\\n\\"7\\`)w\10.^R\\b\\\괚f\Վ\RS\r\G\4\\\(!OX*\\\7A\l\"\\\&ap6fK)^o灐Os<\\A6\\3\A߯%wZ\5-D\ڼ\\\@\\\JS\\<Cޏ\=s\'WI&\Z(\\vaTo\O\,\ry\"ƺHo\\Sv\P	SK\wcp\U\%(\l\fU}\\\\hp2\+nD\ʭֆ\vBǑdX \1fvH\y\)\l\֚\ă3͒\rΝĹ\\\TN\3_*.֞\&u\r\\|\\\i+Q`ŸM1U֠)\8\\l\/Z\R\=Yp\\O2I\u>&˷\u\U\Ė\{\\x`\ &{;\u\բ.\\Xv\a\kdo\\\\\o\~(y\&j\\\F\\%@I(.#5U[֋DB@\i~1\\'7Ö\\0\W\2j\\ʙ\\\{`\01]!֥\n\c3*\\\aVֆeƗ\\ԟ\\9R\\Ot\r\C_\\\4c\zS\\s\T\Aqcڷ59aO\\҄\?t\M)PHٹ\kώ%7f+\$\.\~ӛ\\Mxkv\rn\s]%́Tĉҩ\^\{\Ǝ\u\\\\\\j-{V=O\\\\\dT5^+\\`,\<\\W؈NlS\\\j\\??f&:s\[#RDs;ʅi\lbX.\-t/y\kOՇ\|{W9\mdJNR\j\8?|\H!sђi{OT6\\\\{z480og3x\\FR\\.\:+װ\&䄇2\\\C.aeE0\,9\\\'ZS5\4G[\\e}*<\|L;\z\\x\\x?&\WF\f=\\x\;Ҹ.uL\\)Ԝ2d\\L{\0\3\5Y!\U\nhq\\D\G\hB,\;b&\<\C\$\H\n>T\E\G\N\`\\-\\*\\(q#ԜD]K\\\X\\\J\npiήo(\\F \rr^$\\O\5\M\&\JD\K\0F\Nw0\\\P\s-\"d,世\n\7z:n\\SKn\STv\u\\!@bv7Ng\VC%\{\~4u\\\\	k@5=\(\{\"X\<\؎\\X\)\Ш®4ʸcWþ#E5\\ӂ\e%\\\\/\\h]\\޲#ш9\`v\\\\\\b\9\N/\lRagL\wԺ\Q\'\\b\(c\/\\:\+\\\\~\\\Z\\\\\|\0u\%rvBT i\\\\\ނN\ɫ\\\/=\1\I\\\Dj0\\l\M51(R\\;\\gՌe՞$\\_,j薶\tC@\ϊ\&8H\aq_/\BuZ\\&?y\\\=ӡ\C6d6\m\\\]vay\T*fZ/\8߬U(W\\\\U\\{\-\V͗\8$4l\\\L4y\r\otf`8\^\`=@lTzŜ8\)}~H}qٗ\Nai\\9U᤻\\Z{\٘\"\\[\,\T#H\\5\0F	\r\Rosٙ\$Ѱ\Rej`^7\葟%\\yٜM\\9\Z\/\\\'\\\\ ٞ4bVt\\\\tkEp%\~D`%\\0;ٴ\ M\nWX\n躨\|\|3ߜ\++4,ٷ紱1]ֲlzbVP\x\̜=\ŭ\?\/Č)\-\'Lԗ x\!\Uw\\_nFa\\>e3;vz\\t\\\Pi(d\\\|\ZVw7BAz\\zMk+O5\\\@\\\&},py\F(%Ld\\\r*n=YNt\\,kL]*]>N5c	Yn\\l)\"\\\qqpuu4F\\\݆$\ӕ\\_\p~\*\\60#?BT\P|\:X\k\\>\\`\W\O\@!پp}\_0[\\Z@\d\nf!B\\>j\\\R^3\\\\V\cZ\=.\0܈\\\\\'\,(\&\\M1^t&*/:7`P\nS!:b=\.#\R[$V<\Z>f+mսRh_i;1\zm\6@\d\3\5(G\\ܧDoi	Pp*vw\;\\\\X?=\s|VFƢIdE<8\m\J.Ewj\\\\\#_\ZܞfnN7\U/\/g#\JKӒ\]堹\|M\n\YM\n}2 `\Q\\\v\\_\\rzB^=څc:\\ܾ|@l\\'\\e߲~\\چL-u5Zkw=03O* ;XJ\'z0ګŲ\T\"\\\\S@ޥ+0yrx9\M,ڮ(\"Y<%I 0c+	\\M\\v1ںQG䃞u\Giԯ\g\\#dN\,\\\֢\\\_\5^W\{Kb\\F\yPX\\p^Mƴs>\\ZH\.\r\\\ߏZ\\UD\\O\t\ޔ&ŔLZO\Z4\\vdU\\\\=\=cx\\\魞5\'ҵ\dջ`k\_[aJ{\p\ZE=(X\\\\s	\pJTX~\\\\sAk\\Z-=}F\b᜾\TEw!}a}.& c-B\\'Sj?\p净,X\\p\\!:\\E\s\\t6\\Sz\åZ\\\\,j\ۂwT\\\ +\=\\ា\b\'^\x\K\.\ۑ&\Z錷\ې7\~\\\rb\ۣ\԰<К~_\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·ۻoXc\\\\njJ\#@R0\`\T\j\5\D-8F\\Q\r%\.\m\\5R\㖩\r;\gPklr<\\CD\0*\n\)\\\\m\\x:.o\wpԴ6b@\WFk\\-\\\\\\\\1\\q[42\Z@\r: \ӪN\lTD\,\';\=%\~\	H`\\\`@}6\\\[d=w\\\+y\\%e-_\\+^\J6\\^Nih\\OJkf\iB\\\D̉I~\\\.l\vPg\wv\r\\"aMI\\\\\P;b\\>꧒5>7Dublg\\=z^z)t\?Ū\鳊<)+$\>\BFVd0\3\\m\R\2t\/v\S 4\h\"hAD\'\'|\6[kF=\\nyi\\\f\mR\̗Ui؜\\\!Y\hL\\a门b\|\r,7@\\\'>\\0\\n+SK\\&s\щ\\;Yq9\wm3t\	\ЫQv#`i-1ٞ\Uh\ܑ\ǣg\\\n\\\4 ]D$\WܗEV8֋i;fe\|\\ˤ\ܝ.r\YMDMK\q\Ĺz\Z\p\\\\\ܣx\L#\!\\E~p#w\p1[0L\\nܱfX\I\`&:=^b\KG\0.\\ܴ&#\kpe`򷪱hf\sIXNk\Ǘ!\JB(AL.V#8\de\\B_&\\:K:\\"$_\\\Zg\\pSI\\{ǫ2jPf\Gi+YH\K\׀\\\\&\f8\\Hk[%\\\m\r\s+n0\Of\\֠7\y\\\\\稶\\noN{mnP,\h+p]h4\\\g\0x\-8\E\mb\E\rH\	Zm\\"6N`\! B\'wCˮ\.0{\'~K.sJIPګ&nR	2\JX}k;\n\\\5\Vr4݊w?L)\K\f4ٺ\ra~\tnT\ݩzKu\Y\\.\\mi\4*UT\ݴ\\\"cYO|D\\0;\.\Ѵ*NݴK\\bT\3y*\נ\rFݿp\\\/h#]\"\n\=\/\MZփ\\I\\33unM5Kh&\bV\\%Z$\i\\\\\C1\~s\\\\6\rۘ\\\\nΣ\\\\6tt|\\hfS?\f\_z`\y\\\\\(H2\nyπ8\F\p\B\\k\ʫ.E\"y\3(ɝO6\Su՛Z&\\\S,	\\\p\\nb!\\s!ͮ]>\\\\n\O\j\\5RLCIe\\ỔJe\0\.SF>\.\\\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+\C3\r͇q\,\ޱ\\\\n1\$\d8v^!*3\\\#͜v@\\3&hN;yB\Z\\N 8	jx\o\\XQl~?8\i\\\i8|\Le\\\\I\_y:\&\\Rz\<OT%x\Z\܂it11Eg\U&2\1YI\nf	\Yᦊ\\FrL\\7\u\St֗\p\ǯ$U-m\\ ~\\V>򘀹\EY\r,iՂ\!\r2n\D9T\%T֖\\r>\ƾ\\\AY\{,P\0~b\"܃\\\n\0A\=\R<\F{\;xپ۶I\x3\n\zǖ۝Q\\h\-n\&U\e\\\Xj`nُ\|\&\k2\ʰ\S|\\I\߆R\yr\v@|\z\%\Ӷp,ro;B5\0\CyaF\v\VNcۊi\Ba\\\\\T\fX\\\|j\\bdP\CW>b\\$=O\tǐ\>G8j\j48-sZ\ԏsŝf?߅y\R\z\5\T\0\DU磣	w̯\ߌ\nrsgɴ\\\5Z}̼\\ߌ\P\ܻ\0{Q\Щ#\\m,x\\`ar_ߔ\\}>&Iy	pby18gJ\nߙw,\\ sƟlalkH\J\n\?&b+\ߠB.qf6*_\-\\WI\4\K2ߧ\)\\sg\\,He\|\"j̋2(߹V\\\\NA=X\\\"\\.\n\Ņi2~\<gqԴTϗ\\\~%>\ԍ6m_5\\\\}\;[I\\F\\i\\\|x7N*T\\\Zj\r\\u^kbڵ\\\)P\0\[\'\.l7\^\r\\?%\R\cIgl\QRx\Z\ˮ\R-SZo3ҳCAj	M^\2\ɖ<tfp\'\\P6߱\)u@\\SCom9\\4]2IeEkq\h\\@N>\އ͘RRSo sByc\!\\l\\\	MJh^\`\7Z\=\\\^ԯ\\č1\TgرD\\w\h\l\\ԑ\\_x4\\r[\\	\r+~\\"j\\\粃h_E\V\"R҆c\\}\oiӿFp\&K\IPʽD\[\\E=3iJ[a\\x(aBtg\P	B\\"ೄ\\"-dJի	U{\\\(\QG\<C<\\F\Zm_=|kBô\\4\>]Ffw\'\欚\\Evm8\\aĆ\J\Hڢ#eR7\"d\\#!\E!,\\cl\5B\\	W\"gܷ}}\\|C\C0\v\\0K\\r-\\\\\\p\4,\\KY(I\ xDQ\/t\\v\\ǹU\8\&\.aYA=6	ݼ\\4\0e0\\-\\4J\0\)Sִ\\\\\?\k\"4\Z.\Z9\rk\\X\\e_^q(ѵ/̹\h\2\2&\Xt-\\\\aZn\msN\Q\"?mFN8?pi\Zh\H\z\᎞O,\khiYe\8;w*Aފ&\'D:\\5`\v>\d\k}<\6\ \Ȁ\KB\۵&|UB\\\0Y\;@7\\\\\GJ\\۽揷+\I-\\i3\<\\\e\n!\d>\\\a\\\%+eT7 \ҧg\я\\\\d\\\,w=	{|\ZZoϢ.\\p\]\U\Ze\\OlP\\\&A{5\\/\w?Z)H%K-xrNpꔨ\\%\\r/<\\\rgl+Q_r\-m\P\hQ\\$,5\%m\\,\nu(ޞw0\KoHJ,a\	rU9\'s?\|\\\\R0\AtRW\E )\օuTR\Y\\T6\r\\ZIZ)[w[]\=`L\Þ\V G\L\\\mJ\a\\fo\0\\\We\2\`\:Z?\\^X=G\γ\b<HG\wE\21\wha3(J\@\g)\z럳9\\\=8\\\\'\KI\rn‵`iz \y}fW\mh\GmM]\H\r\u:\4\̩i\\7[G\쳙r\/a4v)w}U\+谆{3⥾ϵ\\瑉N)]\\W1\+Z\*ʠ\u<\e\\\\n\\,&\ͭ1\\\:If	\ڦ%5\@Q85\ʂ1\-5\\\\ym\n*$\\\lG\*E\M\nl\׭\m[\-B8YٺdJ6\\S.\\V59\4*fH	\r*\0\Y\㱿;+h<R\\V\_\\u&R\\:\\ƹ\W\rbCJ9n\FB y\J/\ad\V\BZLC;wx\Y^\&^\=xʆEs-y@\Gy\Z\\\}q\-\сo/@8\7?\\!c^H\0\E*\\I\z3^MP4\Fl\wRC\H1\0H\rgf^Hq*\v6M\g2\\\IY\g\_\,\ZI.&;Ӿr\V<Sg\U|4E+5\C\828ҝ\o\'\?\\_\8\\ۗ0]$47F\ZA#[RA\r\\57\{07f=\9GcN\\yΟor\|A\\Z\U\0\jJΆP\M6.\n?\~o\\ΥTXJ)*aL#\V\\ŷ\\42B\2,u\ʕn}~\҂Z-\36	\\>ӯ\Zz?<^\\޺\%8\\"yٱOlB\=VG\h\!\\K\<\\Jq\;(5nO\jnYZ5q\\Pܠ\\4\\zgzB\tWnW&c\\'J@{T\\\rq	\*k\\J+\0\}VLf6	\\ӆ`lI*H\?6\G}h\o\B\\ %\L\@ĥ\bu(FHP\\ȯC9!cn\N*NJg}Yv\\7\Oh%.\"AX\*䯂:roO\\'7x9\)yj\\?wk\6\(.T\v̯1\\\5N\\b\7ٳUw*)\h	+ڞ\\\n)Q\N\k\\U\4\JM\\\\\\V\\\\^1\\\\u\rYޥ1mw\\t\\\&Cr\'BMF\u\Zx\\/D9\zH\\&U\>\+T\K\F(,`:7Q\\Ǳ-FZQ\TƷn\r\{\\\vA\\H\0eq$\W\DjK+{j\Puυ~\r|F\Sa(\J}ȟA\r\1P\xzu\\ѷ;gtS7\\Gn+Q\1\\rgQ\ yg\\\5.hfhm\;\\k \\W8\\ˉ\\n\t\A\\byMϐ;(uj?\\]\$\C\\&e\Z\\%,zfw#nؔ50D*/rxP\g\\b =#\\0\M)\\B\\\\\e\CA\w\wKHY\\"\\0d\\~\\k\:\n\\\Yïy.5 <\\o\\oP?DO%ڵN:(\\{Z\ӌUJk#HT]^U\0Tj崠&Y|\s<\\\B\J	\(zڪ\n\ą[ƷG\\ֱ!Iz\A\4N:ӊ\\\U	[\\\\y-\\\\\\)\5\\_\Ba\rc\\;\p\\\vgm-,\\\_\\"TP].힭j\8\\3\c\Z\^\\\@i# UcjHq.!\\۴	^U\\r\s\\\&\z\\\\\L\\\Kcu[\\;m幡F}I-6\n\$[\\$\n\92%\V\\0D2`q\\T&%\\q5\y\nVڌHt\\\\\\:\<k%\\ (\\1\.\pIu\eIt9\\]\05\\^\\Z!\c\xNd\i\GeAI@\\'iۤz\*\bTJ\-2\\\<8Ko|nF&Q\ It\-Z\r˅\HF wb\9ѿ\Z\xR\\\\c\I0\{\eQD\\ \\{~aK\\-\B\Z\](5z\!U\\N[\a9{\\\\\jB0P\oU\\Kj\aWś\'\yY\曗>\\@-\\\=\	g\_\\\\{-SP+fQp\\\87i!*I\\\\ȣ7\Z\,\\[x\\R,<X\\\\6\Kk	\\oyAw)\\}\\C	\n\\=\Չ{o׶gbUh6XE.\\\Run5j\\O\0\6\nt\u\=\\5Q\%Ǜ|߂YM\\\\Ja\b\\\T\\\j\bGarU\\~\ZoZ\\\"Tɷ\\rM\ +\\	`\\gO\l\:\\\\l}s1iJo\Z3w\/at\\6aK\5Ȕ4\\4M\Y^exM~\?\\piEE\\,8)T\n,q\SF\zȲMR\W3\\\\\\\r\\q\\1?\XEGDf\LS\q`\	\ٷ\s\P\WMQ\~@\ů\×\͔炿E\\\$>96g\0\È];\l\\0l*\r\\n%E\'\tF\\䝆煶\Zf=?;[\%\\\j\\{j\Ma7\roث\\\l\]FA1_\\\\n\\!痰fWeJSZw\k\Xڱ\\Ӎ\\~\\n}\@=\\\\\Y\YC]\Ǣ\\\5\cZ\\\r\lY\ƞ[#\i[\5Жг4\0\\2m\\&\h`\\q\n\")\n\\Se]\~&^vw\Ŝv|چ`z`I{z\\C9\\]W\\9Ջʸoz=pr\\7\\0H\n({\S=g\\kyo\\?\\8Շ\|B\\D\13\7\\\ţ遢\n<Yz\'\j\X`\frQ\\Z\ȿ\4\MF/\-\fr:CK\n\\8]PY\5H\gb\\:<xݢ\X\\,s\\\\Zi(6貿!gъ\k8\&\\\-\\38岟k\n \ϣ\,+Yy.2\rt*q7\\,j\_H\dQPY@\-dxj)dmx\́߻\?\9ݱ|X!l%1+\w\\$5\J\ck!ԛ\H\FfK\\Z\R$H\ZY\\n~\\P.\\x꜃ N\î(gF\\FR\na*!_^貿r\`Ha\b\\w\@\Y\\\a_^\\f^\\\(\\rO\>\踭,\\\\q\\r\*\Llf<\w\;?\\ݚd t-\\8e\0W~*\>< *\0V\\\\\\\04~\tU\gL\Q\磺1Z\ktx\*5I鄳~㾥ݐnn\'-\\҉V\>\鈢ڛ\r],?i(R;}>\\\QV!yvpc̒P`-e9rJK\'t\\>;髥ħgZ\\C\\\Jo\*^\\ɰ1NJR\iB\\\O\ӬB\\V\\hpC\%\\Z\}=s<۔\[Z\#g *\\\\Z\;1\ZE?Ic_\\c\#ň\M\\-[\"nE*9p:\cZT\\\\:_\&#`Q\n.	.E@ю.%Eg\\=\N3\>\g|S(F\jǕ\n\\;e\\X\4Piev\\\W\soڋ\L\QBW\b\ex\A\j,pr\kjVi\\\]\A\"3#q Ɔ\\Z)+l\0#<9\\"ϕ\A\v\hz\J>Aq\W\&zU\V\\nW8 `\0ayxHõנc\\ΏͿͰ\9O8\^^\]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\~!\6k8\\W\'\|ǘ\rfH	/\@\':{YT3NZO\Q˶ܩ8\N?5\\n\A.ya餷#\c\^S\\A_\\7\'hcv]\#\':\z\\K\l\\?\Yk\\\2\\\W>\\-M\\PN`g?\\\n\\rK\0\\J<ǘ3bxT:\W*\r\-6f\pxc\,hoNI\\[\\\\`nB\7$·#t\"Sm\\-C\`\Ɋ\s\E#)(\\A[h\'\\|\kaO\I\h\9A\08(?K\n\͠\ZNta\Zf+Ǡ\n\K\\b\n8\\\1\"P\\&8\X;\U^\\\\LDL9\4ݬJ\\݃\C\lE<aǈ\\\\l\.ēz\\]\n\\Z:\zs\0nĽ\\>e\[7\NJ\tt@\`2Z\\'SV\\"\*XAvkOxޡ\mdFFÅf\\a+6\\\\)rb\4ʲg}Sx\\vֻaʩ\D\05SS-\*\^Ӆ\\w\\\%`0vl\r\n?4ɿ\r֍On\_4\`/-\\'\aYI|6\\\`Z\4\n\\"l\'\U8y\kSl\صA\\(GL8!\<zKr\i\\ImVe(iCx\/?O\Eq\i7A:3\r:\?2=,+)\̻\ng3(\\D\\a!_y	\QVGK҂sv@\\N\\\0\}Av\A$\=\08Q\j\V\\P\[\pHa\F~yQˊ\\\\r\\\`\\Z\\\9\\8Ra>r\Z\\!e%\duH/l+\\ޠ\\\\\.\I6\(\웎yR\j\\nM\\x\r.s΂\\\&\^5Pn\\>\:\\,G\IzR쮝y\\Y#ǳ\E	\92\\vnjs,_Y{\Zk]ٛzJ\^z\\{M\9l+:A\}00\\.@L\\3l囔\\\Hiܵxf\Ll#@Ť\e+\׹=So\nhѱً!J~ẞǡɹ\Ὑg\ry\uCx\\;P{\k\\\\yM\\#h.?\\t#ɠ\"\z)`\RI+_#a\p[o\\|\'\:@\\\A\} E\\饬2,\)w_\DʉԶ͂\\\6j40FSc\\"~\\G8<\'\\\:\M\6/\U9)\O\\\\\WT>\S0\0\;\QO\%$K\	\\'\\͕{)_\\ĝ#/q\&\O\[\\\O\"²\,\\\l?2j&\\\,k\\$t3\\?iYϲYڷO\5]I\{\\ٚXL\l\\\\#,\n\W\MbXzp)\'\F\\{\Pniq9\o\̳l5\y9\Mb&iK\ues<%\qѬ6\IF_\'Q73#5XN\xL+֖}	gTj\,\)0f\\;7p>\Dy(\-s\'\\#֛X\މ\Ά>풏\9\Fܐ𱐠\\d\\\ְH]@e\Pa\yŝ&)ԧ0\x)/\mۅ\r\Uz\\\&[j}wR\Ev\\\\{\A\\\G5\F\i	y*dq]O\X=\ܞ\W[B\rDݬ\\\vp\\\>j*\욬e\3\p]\L\}`\\`\DX1\\\ع\WJ\\\]cƈf\	uJ0fj\0ցs\\ZR~]\\*\\\\"\rdS2\!\{֣:=Nz\\\\g&\$F,lK급/Í9\z\Üu\\Z\"\dm\*\Z\\\X\͹[I|4r\_xS\*t\^\&\\/\\\$\\\r\\`ʳa\\7%eűCS6\\\ǀ\h2.^Ww\\H\î4\\\\n~2p{wq\Z.(\W\a\_N\\Cn\d,ypU~\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QLCH8\RvJ\\j\o\޼f2RFt	{[O\\b4?\\fs^\Y\\\0^\\\x\{N0Gu\D/S\\ā\;\\%mp2X[j_aG\\v@\2b\\\\0\~*J\jT\\Zw?/cg)e\\\Z~&q\N7\\ Z-\\\\r\\$E\\Z3b\n\\NyoH\NmQ\vaN\/	\Y\!v\46]3]\3\<ڗ\\<*=\t󅡢pEKL\\\[Mrx%\0\b0qqĂ\|x\\\:_V5:\US\o2ҾPuA_*}\~\\\'K9\;\4\\p\\n+=UO}\\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] `oCK\\.U8ui\\\H<pSh\Zذ/\\r.O\}9fPk\o\2,=A}P\#\r5\k\,PD+>J\5딧n\\.\0URq\k\'i_i,\n\G\\+L\.\rQ\0%\'\y\m_\#\?\\\E1\0² \75mw>Z\\2Q2K=^N\\\q\\\Q\n\IS}V#\N7=\ɷ5\\gD\>h]3\\\n0_э\Wg1*\V\\FIPxf\vL@\\\p\\\\R;K\\\R\\[:[\*w(\1 y\\jL3ˇd\'V&}l\]dO\\g\\V\:\\\5\\fHA~l!/6\yԶ\![^I\ٷO3\E\}{\Yz#\\@\\\XaͰ]\\()ck\\!~s\~h\\q0\\X?8̅\H\i,+x͵SE\\9r=#_~\\/Sͻ\(YC/#/\D\\^>6\\\\V6 E\i\*\X,/6\\\\\}%]\v	\ZY\<}]\8\c\4=}X\j(	;\\w\g\ָ,\\R\0$k\oA{\2#\am\'\Y#\\O\(&\r\n0\{z\\\\7j\\\\Rv^0\\?2Dh\4SG\8RHe\\4ډ3\z\Zr\K,\Iޗ\Oexџ\i}\.\\kQ_\39y\nb\-5c,R\\3\\'r.]9c\xߚY9\\\~\\\\\\f\\\Ƕhj}upIX\p\ھΩT\/\6Fk\TE;\H	#\ߛ\\\{\C\'Vۨ/\\H_n{\\FW\\?^ծV\ \N	\-j\s\Zjh߽C\șI\E\R1\GŸċ\d/8\\Z{{S*Q\b\Ua\\\\9e׽RX?楐1\ih\Z\ҕXT\9\\Eߎi\ц	\v&=G\Vkr2\\C5\m\\~q~\\;rfXᅸeX\tŪ.+[\咩H{v\\./s|U\Z\\Ah$DUs\\\\I\{\'\01\\\\rkD\\\\ac\\\#k\Qbm(\({ia^\\v\J\\MC`QA6_\~j\c,1\F\n)7\\䩾!\@\	\n\K^$\\NVj\q\\`JBZޅJX0u9>!v1\\v\ą>Ш\&\D6X]`\\=\s\0\\1y5z\\\4\O|p\A5P\\\(fy\\2\Э\9\ex\kzB4\\6\Hy/=\u4_c	ο\'M|4\gE;+\\)H\q\\{@\dX{a2\H=\\G\\6Cm\:\|\\!%\p8\Ug𿌫\\A\N\yqoʅ#&]#mVەrȹ\\\L\=\6mzQhZ\\\\\\C\\ \Tα\iߠPom\\D5~\!\\\o\a[ceU\>T\\\ø~3\$:\З\\e\\W_6|T-\>{\rC\n\=\\k\\Rdj6\\T\\\\\\'\3H\_cx\N\\pnx{V@\\f!D.SJ/\xknZ~q\\6Lꂨ$\\?{II%\&V(Aw\<䩻\\c\$\a=\!3CPY\.c%\0b?O\)Mퟴ\[\%>xd\]?Z񴝞1\\5\\q\)9W/`\kW\V*\_i_\'h\Ma\CQW\~K\0X~D\<\>\5\O!	U\'\\IaӴ9+\\6\\fF\7r,\?\\O\P\\Z\r(ga\u;YR>\v\\\\?s\k\\\ ~\m\V\|ݐ\0!\\ٖX6\av/%1UEd\_w\'ޢ\KGs*<v\u.\\S\A`\n	tp\'\\\ˑ+&\*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!ӳ\ZDKi\\@*SĘRg\\	r\z\\2,o\\Q\ϕ\FU\\lt*g\\V☲ù\\\\\۬Bj\LNhZ\\e%D\'\G}w\\\E\k*	\W،j|\K\'l\Ȉ<\\\\\fdU\Ƭ\\\\\\fH\\\\\v\II\w\d4\"醗\\\\0_\\h\^1\\-\c\jHtfݬ\?\\\D)\\'\hcF,\4|i\Qlp\t\>\%y\1PbB\R\[B}\n[\\;	I2q\U\>\\n)̈́Ix\VV$\Z=q\UO\c\\\\n\\\4\r\'R2\8\F(>F\2 \\\\"Qj6h\\'Vh~\\Ad7\\Dc\\A\ZHzy\I\\\Q\]o\\a\%<DNN\M^\^/jC9\tbp\\r<\!!dep\\\Z\\	0mz\\\%\\ZN\:J0L\2\\"L\⯜t\\%>:1WR\\ͩ\Q\i\~\^G\vr`G\̃\S\$ \2|>\\Y\wMW[\ \I\\/H-j\r%\D\\+P4\g.\\{\\\^W\/![qu\\T &gɖ\\r.\:\)Q\\7ݣ\ h\\"bY(V\\W\|/5[r\ɷ*\\\M\\l\r\nzWm:fO&y(\H\\\\\n#_FD:\1I\}U\"\0H\B&`\8m\\!Uc%rT\\.qx\=\0\\\\"I\8c\_\;k\6Rr\E?{d\\\\G_\A\7\c0+\^E\\h1\\{\\\9U\,\%k1X\r LcN\;<K\\{*\kL\\E,\t*J.	\\*歁\\5c%aPTgxȻ\=\|@ ԃ\\\\HVq2\v5\o,\0\7IѴE\90.BAe4>]ySPk\=9i\\fCu	l6E#\Zt,#<\ZL\4Z\FU!}\\֊\_ȕ\o/B\\\!\Z<&^S\\\V\?RÊ]	\\ͮ6\\\RԤz8\\4w\\c\\y\sM)9@\\\\2\\\.\\V/B\c5a\rRIG>?\y;\+\\\'SAED>\\\\qqa\_\\؈K)\A/\YQ;#\6\yc\Ȍʗ\j\\L2\-[\ 3\]S.\\\\0ה\B/\n\jz\'a\\\\\F\L\ZH-L	`$p1/>:r\VǙ=={\\OrR\xg\J9G0>z\c&\IÆb4~*LQRkg!i\\fnb.*\\η\\\$\gw\T\#;?\`\?\\;\"\A\\Y|X;ua\w?oa\\bN$gI\\\\\+\\R.e\\Z\\\pt\\ᣈ\:\Z`\'8y`wW\\0\\\PRƇ\]P\d\$*H9\n?g{\\gs	gO\\XI\#n!F#Yȼv\"|\:\ݯCG#\nYE[Vw\i%-%F\0\\[n\1Sa\+\\\]\BE2\sŎ)?ԟ\B	\*\ZOےn+z`ߗ\\]^\$dg\\Gf\m\G8@~n\\?\	x\*ՑxkS략9U\Rݼ\"EI {`z\\$쨀q\\\Z6hֲCR=8Hΐ\\<\\>\y\\y\=\ \؃\G\\ө&\0\*u\\0u\r\+M\nMƿ\4f_MG\\%2q\0\/ғ:;\\e\WGʈ\P\\,\\KA]H\\%\\\A\\QD\۞V蚹xRBBy%\h\Wv\Ƕm\}nG>p\ѹ\W\\\5w\\O\E\̾mG. Ճg?\rТjs$_D&֗H᝭s%\\vx-\\\#\?	\\T5\)\\\Np\[\>\&]\\:.ѥׇ\4\U\hnl\h\ʫ\jF**\Z\W\nfrP#3\w֢$\\\\¡桘3D\\\\[IwD=O$l\Z\\\\I\9<\0ox\>L1\\Z?\\f\]\\t2Ј\\5Iv\C(߱wziC\038\'U\$\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\\\\/pR1C̬202J΍<:_\B!s*\l\6\\\\"Q_ȹ2a7\<\\U}\\"As\\?\C9\\`\r\\0É\\\\\0\\1\yiN7,N]\8\Ϫ\\\\C,01Sͭ\-abpY\x{Vc\olNGqlkb\\a\ñԟyb\\@\Y\\\(J5}׸dt`Mu\ƂUz[\w\\=ʼ\0[\nKix-b>\,EdҔ\\nN\-\\\09pM0+~0:6r½c\\	\h{M\\\\\\J,k\r?O\Z/ކf\?xȃ9\rQP@\r\\\Z\S\z\\nEO\wF.P\)n><\\W\S)\_\]\\\Ya\'kY\\_ot\r\)\\C\EI\m/;\\\\ggŭƱ\\0`8^\\\Ƌ~~J\7$kSsYme(|.ŹzZ\\[몾lc\읋q\oןK\֛+%\؂\!a\29\n\\\`F_h*y.ZۭP\0\"j\\=xat\\K\h\9\\wǏ\\;Z)\\\K~\\Q[::\js\\^Z@2n\\ve)e_\u\\\!\9]we<΁iJkN\uM\ٍO\I0x{M\yR\r~S\\BST\h\Zs*\[?	POv\DŌi*\b\\\*;ةDڨn\/N\shw\\k1]\':\&etbt\\*\\n\'Z%$^\\\*BR_~\;A\k8\\\\\=>J\\1\~(\\Ac\qo%TFO-Gz\JTN>\\'\\\#.D=\\\a\:\\\'jK\ WHS\`\r\y~E\~|\nR\i)fl饔e}\)ld*\ÀI\F^ȯܒ\\W\@~ݘ\T\`\l\ \9睪P\k\KV\\d\*\X\0Mo\DO=h\W\0 \7$\\\\RTbzHpf?\@јݲ\IG]q\M;\>l\nA\>\\kh\\\R\\8yOt\ld\U\^E%O\n޹~}J[An>\\P:\\\7\\4iw\\q\c\s\ @\"/\\š|sP|0ô!J\\[h7e^\JTuVڅ\6bJ\\R\#ԲYun\nO#\r\F1_Ң\'Sz<\J8@\b\c\nizNy׊\\}˜.\\\Z^\*̶=\\.\)~\\	\_OP\nx+U\\1\w\\z)\"4+\B\\II%%\\"ЖX\~X4;;\]*\	&\\\\"T\QWvRid3m`a\3\r45q$&Β9QO*zkBjdE,TgOrP~tgng\\(W{v\\\^\Z\}ȐC6ݞ\+?۸ZP\d?P\\\\\kO\\}H\"F\+:̵LZKAx\\r^/\\'\D~\4\d\\\`8`q׆dŪC*k]0ɾ\"\\Ͷ#8K\\r\\|\Z\ゐ5b\T2\ph=\j#\jR\\	𪏨\|z\03\ܸOV1SlfwV\\1	\l?\.\rƨ;p-\e*\\\`\[\p5U\ͳ\\{\n\!z[\>ft4\\s^tE+W\L\կ\C\ҩχHhZ;P\\.\\\s.1q+܋\r4\$PduU1\\\8\<Kn\spGR\b:L\0\\j}y슟W\\Sh5GH;\V(\(\\ZB\0\r\lŗ\\B\s#3?+\\Wp\PM\k]<px_\"R\LkiGAp\Z\\\?h\8\Q\$d1\ˌ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ʩkg\i\nB_\\[\0\7\4\w5\\\q\\y\\1Щ3&Tt\ȹ\8=\\SPy\Ym\m\U\I\\OF	!\qO\~þ`Ϸ7i.K\\K\;3@\"_\d/5\\%\\9U6>\NcVMTp\W \r0\\Z|\\T-BD\"\,Q\uܳ\n.\\\\A\Z\\Xm,\P\r\Jh\\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hL;-\F\\\0\\U*/\\d\.>z_\ME\MՏ-/v\\_څc\\?,U&\\"R[\R\\\\|L\\<uQRVxs	b[\yi\C\\\\0\\\\Tq@W~{Ṝg\IU9\0\\ڡSw\q\\(LpR^_m\o<e\\{FEP\n-\\\,5H:@\\\r\%-\,$y\k\\\3딢ߓ{B2A\\\G\<&%߼w$cTV¶\r|f7hCp\Z\\8wG+dUx\\XcѨV\*6\i(\\H\Xw\6[\|Ja\ʹ\Ж\q^\Oh;xA\3\\-\r\\hM>kv7\[\\ׇd̂zR<2\\\K\\\7II\!1&j[656i8\ntl*\\?\/]\Z4tX\*\52\.p·\\"F6Zؙ\n\$z\z\r9`\\&S9\~{-LKŝI\Ti\\;u!\7\U\eH> -\\%G(m\\0DO;^\K\\lظ!\/?aF\z\\#U%f\\{x\\i<\f;KZ9ްN\Wj_H\]\͚VIR[냛\Bw\s\bN}qY\7zoU\u\\'\1k~P,oʂ-~Bʾ\i>1/#\#\\yX\oa\\DŞheb\\\h\?)31\u\s\_s\Шd\>V*R/\0\\\ӷ\~r\%\"\\\\\\8lb\κ\"7eE=n~\\͙\'2\C/\\r\\r\̈\\r;\JUˑ-\\\B\?	CQ\c2 G\e\\h\h\\݌^\@\˶\\},n\\ۛ~A\F\,\\\"Ǣ\@\npy4&7:wOh4jyD\{\<nн>!\\2_U\d~\p\\7O\";}en\\0','no'),('totalLogins',_binary '35','yes'),('lastAdminLogin',_binary 'a:6:{s:6:\"userID\";i:1;s:8:\"username\";s:7:\"larsons\";s:9:\"firstName\";s:0:\"\";s:8:\"lastName\";s:0:\"\";s:4:\"time\";s:25:\"Thu 6th June @ 12:58:30AM\";s:2:\"IP\";s:11:\"99.6.19.253\";}','yes'),('useNoc3Secure',_binary '1','yes'),('touppPromptNeeded',_binary '1','yes'),('touppBypassNextCheck',_binary '0','yes'),('liveTraf_maxAge',_binary '30','yes'),('serverDNS',_binary '1648226186;2599;173.236.79.234','yes'),('autoUpdateAttempts',_binary '0','yes'),('longEncKey',_binary '9997e5d2ad79a3e883db60026a1377c52a17939dfb4335852d03a8d78f7ec109','yes'),('dbVersion',_binary '5.7.34','yes'),('allowMySQLi',_binary '1','yes'),('dbTest',_binary 'a:1:{s:5:\"nonce\";s:64:\"48a37507e6215e93e1cacb1fafec6df6c8eb8e5f7fe061ab36284a63707ea081\";}','no'),('blockCustomText','','yes'),('whitelistedServices',_binary '{}','yes'),('whitelistPresets',_binary '{\"wordfence\":{\"n\":\"Wordfence\",\"h\":true,\"d\":true,\"f\":true,\"r\":[\"54.68.32.247\",\"69.46.36.0\\/27\",\"2605:2400:0104:0100::\\/56\"]},\"sucuri\":{\"n\":\"Sucuri\",\"d\":true,\"r\":[\"97.74.127.171\",\"69.164.203.172\",\"173.230.128.135\",\"66.228.34.49\",\"66.228.40.185\",\"50.116.36.92\",\"50.116.36.93\",\"50.116.3.171\",\"198.58.96.212\",\"50.116.63.221\",\"192.155.92.112\",\"192.81.128.31\",\"198.58.106.244\",\"192.155.95.139\",\"23.239.9.227\",\"198.58.112.103\",\"192.155.94.43\",\"162.216.16.33\",\"173.255.233.124\",\"173.255.233.124\",\"192.155.90.179\",\"50.116.41.217\",\"192.81.129.227\",\"198.58.111.80\",\"162.216.19.183\"]},\"facebook\":{\"n\":\"Facebook\",\"d\":true,\"r\":[\"69.63.176.0\\/20\",\"66.220.144.0\\/20\",\"66.220.144.0\\/21\",\"69.63.184.0\\/21\",\"69.63.176.0\\/21\",\"74.119.76.0\\/22\",\"69.171.255.0\\/24\",\"173.252.64.0\\/18\",\"69.171.224.0\\/19\",\"69.171.224.0\\/20\",\"103.4.96.0\\/22\",\"69.63.176.0\\/24\",\"173.252.64.0\\/19\",\"173.252.70.0\\/24\",\"31.13.64.0\\/18\",\"31.13.24.0\\/21\",\"66.220.152.0\\/21\",\"66.220.159.0\\/24\",\"69.171.239.0\\/24\",\"69.171.240.0\\/20\",\"31.13.64.0\\/19\",\"31.13.64.0\\/24\",\"31.13.65.0\\/24\",\"31.13.67.0\\/24\",\"31.13.68.0\\/24\",\"31.13.69.0\\/24\",\"31.13.70.0\\/24\",\"31.13.71.0\\/24\",\"31.13.72.0\\/24\",\"31.13.73.0\\/24\",\"31.13.74.0\\/24\",\"31.13.75.0\\/24\",\"31.13.76.0\\/24\",\"31.13.77.0\\/24\",\"31.13.96.0\\/19\",\"31.13.66.0\\/24\",\"173.252.96.0\\/19\",\"69.63.178.0\\/24\",\"31.13.78.0\\/24\",\"31.13.79.0\\/24\",\"31.13.80.0\\/24\",\"31.13.82.0\\/24\",\"31.13.83.0\\/24\",\"31.13.84.0\\/24\",\"31.13.85.0\\/24\",\"31.13.86.0\\/24\",\"31.13.87.0\\/24\",\"31.13.88.0\\/24\",\"31.13.89.0\\/24\",\"31.13.90.0\\/24\",\"31.13.91.0\\/24\",\"31.13.92.0\\/24\",\"31.13.93.0\\/24\",\"31.13.94.0\\/24\",\"31.13.95.0\\/24\",\"69.171.253.0\\/24\",\"69.63.186.0\\/24\",\"31.13.81.0\\/24\",\"179.60.192.0\\/22\",\"179.60.192.0\\/24\",\"179.60.193.0\\/24\",\"179.60.194.0\\/24\",\"179.60.195.0\\/24\",\"185.60.216.0\\/22\",\"45.64.40.0\\/22\",\"185.60.216.0\\/24\",\"185.60.217.0\\/24\",\"185.60.218.0\\/24\",\"185.60.219.0\\/24\",\"129.134.0.0\\/16\",\"157.240.0.0\\/16\",\"157.240.8.0\\/24\",\"157.240.0.0\\/24\",\"157.240.1.0\\/24\",\"157.240.2.0\\/24\",\"157.240.3.0\\/24\",\"157.240.4.0\\/24\",\"157.240.5.0\\/24\",\"157.240.6.0\\/24\",\"157.240.7.0\\/24\",\"157.240.9.0\\/24\",\"157.240.10.0\\/24\",\"157.240.16.0\\/24\",\"157.240.19.0\\/24\",\"157.240.11.0\\/24\",\"157.240.12.0\\/24\",\"157.240.13.0\\/24\",\"157.240.14.0\\/24\",\"157.240.15.0\\/24\",\"157.240.17.0\\/24\",\"157.240.18.0\\/24\",\"157.240.20.0\\/24\",\"157.240.21.0\\/24\",\"157.240.22.0\\/24\",\"157.240.23.0\\/24\",\"157.240.0.0\\/17\",\"69.171.250.0\\/24\",\"157.240.24.0\\/24\",\"157.240.25.0\\/24\",\"199.201.64.0\\/24\",\"199.201.65.0\\/24\",\"199.201.64.0\\/22\",\"204.15.20.0\\/22\",\"157.240.192.0\\/24\",\"129.134.0.0\\/17\",\"204.15.20.0\\/22\",\"69.63.176.0\\/20\",\"69.63.176.0\\/21\",\"69.63.184.0\\/21\",\"66.220.144.0\\/20\",\"69.63.176.0\\/20\",\"2620:0:1c00::\\/40\",\"2a03:2880::\\/32\",\"2a03:2880:fffe::\\/48\",\"2a03:2880:ffff::\\/48\",\"2620:0:1cff::\\/48\",\"2a03:2880:f000::\\/48\",\"2a03:2880:f001::\\/48\",\"2a03:2880:f002::\\/48\",\"2a03:2880:f003::\\/48\",\"2a03:2880:f004::\\/48\",\"2a03:2880:f005::\\/48\",\"2a03:2880:f006::\\/48\",\"2a03:2880:f007::\\/48\",\"2a03:2880:f008::\\/48\",\"2a03:2880:f009::\\/48\",\"2a03:2880:f00a::\\/48\",\"2a03:2880:f00b::\\/48\",\"2a03:2880:f00c::\\/48\",\"2a03:2880:f00d::\\/48\",\"2a03:2880:f00e::\\/48\",\"2a03:2880:f00f::\\/48\",\"2a03:2880:f010::\\/48\",\"2a03:2880:f011::\\/48\",\"2a03:2880:f012::\\/48\",\"2a03:2880:f013::\\/48\",\"2a03:2880:f014::\\/48\",\"2a03:2880:f015::\\/48\",\"2a03:2880:f016::\\/48\",\"2a03:2880:f017::\\/48\",\"2a03:2880:f018::\\/48\",\"2a03:2880:f019::\\/48\",\"2a03:2880:f01a::\\/48\",\"2a03:2880:f01b::\\/48\",\"2a03:2880:f01c::\\/48\",\"2a03:2880:f01d::\\/48\",\"2a03:2880:f01e::\\/48\",\"2a03:2880:f01f::\\/48\",\"2a03:2880:1000::\\/36\",\"2a03:2880:2000::\\/36\",\"2a03:2880:3000::\\/36\",\"2a03:2880:4000::\\/36\",\"2a03:2880:5000::\\/36\",\"2a03:2880:6000::\\/36\",\"2a03:2880:7000::\\/36\",\"2a03:2880:f020::\\/48\",\"2a03:2880:f021::\\/48\",\"2a03:2880:f022::\\/48\",\"2a03:2880:f023::\\/48\",\"2a03:2880:f024::\\/48\",\"2a03:2880:f025::\\/48\",\"2a03:2880:f026::\\/48\",\"2a03:2880:f027::\\/48\",\"2a03:2880:f028::\\/48\",\"2a03:2880:f029::\\/48\",\"2a03:2880:f02b::\\/48\",\"2a03:2880:f02c::\\/48\",\"2a03:2880:f02d::\\/48\",\"2a03:2880:f02e::\\/48\",\"2a03:2880:f02f::\\/48\",\"2a03:2880:f030::\\/48\",\"2a03:2880:f031::\\/48\",\"2a03:2880:f032::\\/48\",\"2a03:2880:f033::\\/48\",\"2a03:2880:f034::\\/48\",\"2a03:2880:f035::\\/48\",\"2a03:2880:f036::\\/48\",\"2a03:2880:f037::\\/48\",\"2a03:2880:f038::\\/48\",\"2a03:2880:f039::\\/48\",\"2a03:2880:f03a::\\/48\",\"2a03:2880:f03b::\\/48\",\"2a03:2880:f03c::\\/48\",\"2a03:2880:f03d::\\/48\",\"2a03:2880:f03e::\\/48\",\"2a03:2880:f03f::\\/48\",\"2401:db00::\\/32\",\"2a03:2880::\\/36\",\"2803:6080::\\/32\",\"2a03:2880:f100::\\/48\",\"2a03:2880:f200::\\/48\",\"2a03:2880:f101::\\/48\",\"2a03:2880:f201::\\/48\",\"2a03:2880:f102::\\/48\",\"2a03:2880:f202::\\/48\",\"2a03:2880:f103::\\/48\",\"2a03:2880:f203::\\/48\",\"2a03:2880:f104::\\/48\",\"2a03:2880:f204::\\/48\",\"2a03:2880:f107::\\/48\",\"2a03:2880:f207::\\/48\",\"2a03:2880:f108::\\/48\",\"2a03:2880:f208::\\/48\",\"2a03:2880:f109::\\/48\",\"2a03:2880:f209::\\/48\",\"2a03:2880:f10a::\\/48\",\"2a03:2880:f20a::\\/48\",\"2a03:2880:f10b::\\/48\",\"2a03:2880:f20b::\\/48\",\"2a03:2880:f10d::\\/48\",\"2a03:2880:f20d::\\/48\",\"2a03:2880:f10e::\\/48\",\"2a03:2880:f20e::\\/48\",\"2a03:2880:f10f::\\/48\",\"2a03:2880:f20f::\\/48\",\"2a03:2880:f110::\\/48\",\"2a03:2880:f210::\\/48\",\"2a03:2880:f111::\\/48\",\"2a03:2880:f211::\\/48\",\"2a03:2880:f112::\\/48\",\"2a03:2880:f212::\\/48\",\"2a03:2880:f114::\\/48\",\"2a03:2880:f214::\\/48\",\"2a03:2880:f115::\\/48\",\"2a03:2880:f215::\\/48\",\"2a03:2880:f116::\\/48\",\"2a03:2880:f216::\\/48\",\"2a03:2880:f117::\\/48\",\"2a03:2880:f217::\\/48\",\"2a03:2880:f118::\\/48\",\"2a03:2880:f218::\\/48\",\"2a03:2880:f119::\\/48\",\"2a03:2880:f219::\\/48\",\"2a03:2880:f11a::\\/48\",\"2a03:2880:f21a::\\/48\",\"2a03:2880:f11f::\\/48\",\"2a03:2880:f21f::\\/48\",\"2a03:2880:f121::\\/48\",\"2a03:2880:f221::\\/48\",\"2a03:2880:f122::\\/48\",\"2a03:2880:f222::\\/48\",\"2a03:2880:f123::\\/48\",\"2a03:2880:f223::\\/48\",\"2a03:2880:f10c::\\/48\",\"2a03:2880:f20c::\\/48\",\"2a03:2880:f126::\\/48\",\"2a03:2880:f226::\\/48\",\"2a03:2880:f105::\\/48\",\"2a03:2880:f205::\\/48\",\"2a03:2880:f125::\\/48\",\"2a03:2880:f225::\\/48\",\"2a03:2880:f106::\\/48\",\"2a03:2880:f206::\\/48\",\"2a03:2880:f11b::\\/48\",\"2a03:2880:f21b::\\/48\",\"2a03:2880:f113::\\/48\",\"2a03:2880:f213::\\/48\",\"2a03:2880:f11c::\\/48\",\"2a03:2880:f21c::\\/48\",\"2a03:2880:f128::\\/48\",\"2a03:2880:f228::\\/48\",\"2a03:2880:f02a::\\/48\",\"2a03:2880:f12a::\\/48\",\"2a03:2880:f22a::\\/48\",\"2a03:2880:f12f::\\/48\",\"2a03:2880:f22f::\\/48\",\"2a03:2880:f11d::\\/48\",\"2a03:2880:f11e::\\/48\",\"2a03:2880:f120::\\/48\",\"2a03:2880:f124::\\/48\",\"2a03:2880:f127::\\/48\",\"2a03:2880:f129::\\/48\",\"2a03:2880:f12b::\\/48\",\"2a03:2880:f12c::\\/48\",\"2a03:2880:f12d::\\/48\",\"2a03:2880:f12e::\\/48\",\"2a03:2880:f130::\\/48\",\"2a03:2880:f131::\\/48\",\"2a03:2880:f132::\\/48\",\"2a03:2880:f133::\\/48\",\"2a03:2880:f134::\\/48\",\"2a03:2880:f135::\\/48\",\"2a03:2880:f136::\\/48\",\"2a03:2880:f137::\\/48\",\"2a03:2880:f138::\\/48\",\"2a03:2880:f139::\\/48\",\"2a03:2880:f13a::\\/48\",\"2a03:2880:f13b::\\/48\",\"2a03:2880:f13c::\\/48\",\"2a03:2880:f13d::\\/48\",\"2a03:2880:f13e::\\/48\",\"2a03:2880:f13f::\\/48\",\"2a03:2880:f21d::\\/48\",\"2a03:2880:f21e::\\/48\",\"2a03:2880:f220::\\/48\",\"2a03:2880:f224::\\/48\",\"2a03:2880:f227::\\/48\",\"2a03:2880:f229::\\/48\",\"2a03:2880:f22b::\\/48\",\"2a03:2880:f22c::\\/48\",\"2a03:2880:f22d::\\/48\",\"2a03:2880:f22e::\\/48\",\"2a03:2880:f230::\\/48\",\"2a03:2880:f231::\\/48\",\"2a03:2880:f232::\\/48\",\"2a03:2880:f233::\\/48\",\"2a03:2880:f234::\\/48\",\"2a03:2880:f235::\\/48\",\"2a03:2880:f236::\\/48\",\"2a03:2880:f237::\\/48\",\"2a03:2880:f238::\\/48\",\"2a03:2880:f239::\\/48\",\"2a03:2880:f23a::\\/48\",\"2a03:2880:f23b::\\/48\",\"2a03:2880:f23c::\\/48\",\"2a03:2880:f23d::\\/48\",\"2a03:2880:f23e::\\/48\",\"2a03:2880:f23f::\\/48\",\"2a03:2880:f0ff::\\/48\",\"2a03:2880:f1ff::\\/48\",\"2a03:2880:f2ff::\\/48\",\"2c0f:ef78:0003::\\/48\"]},\"uptimerobot\":{\"n\":\"Uptime Robot\",\"d\":true,\"r\":[\"69.162.124.224\\/28\",\"63.143.42.240\\/28\"]},\"statuscake\":{\"n\":\"StatusCake\",\"d\":true,\"r\":[\"103.194.112.70\",\"104.131.247.151\",\"104.131.248.65\",\"104.131.248.78\",\"104.156.229.24\",\"104.156.255.184\",\"104.206.168.26\",\"104.238.164.105\",\"107.150.1.135\",\"107.155.104.182\",\"107.155.108.234\",\"107.155.125.29\",\"107.161.28.219\",\"107.170.197.248\",\"107.170.219.46\",\"107.170.227.23\",\"107.170.227.24\",\"107.170.240.141\",\"107.170.53.191\",\"107.191.47.131\",\"107.191.57.237\",\"108.61.119.153\",\"108.61.162.214\",\"108.61.205.201\",\"108.61.212.141\",\"108.61.215.179\",\"125.63.48.239\",\"128.199.222.65\",\"138.197.130.232\",\"138.197.130.235\",\"138.197.140.243\",\"138.204.171.136\",\"138.68.24.115\",\"138.68.24.136\",\"138.68.24.207\",\"138.68.24.60\",\"138.68.80.10\",\"138.68.80.173\",\"139.59.15.79\",\"139.59.155.26\",\"139.59.190.241\",\"139.59.22.109\",\"139.59.26.85\",\"139.59.29.167\",\"149.154.157.61\",\"149.255.59.100\",\"151.236.10.238\",\"151.236.18.80\",\"151.80.175.223\",\"151.80.175.226\",\"154.127.60.23\",\"154.127.60.59\",\"158.255.208.76\",\"159.203.182.22\",\"159.203.182.60\",\"159.203.186.225\",\"159.203.31.18\",\"162.243.247.163\",\"162.243.71.56\",\"162.248.97.72\",\"162.253.64.104\",\"162.253.64.87\",\"176.56.230.110\",\"178.62.101.57\",\"178.62.104.137\",\"178.62.106.84\",\"178.62.109.7\",\"178.62.40.233\",\"178.62.41.44\",\"178.62.41.49\",\"178.62.41.52\",\"178.62.65.162\",\"178.62.71.227\",\"178.62.78.199\",\"178.62.80.93\",\"178.62.86.69\",\"178.73.210.99\",\"181.41.201.117\",\"181.41.214.137\",\"185.112.157.185\",\"185.12.45.70\",\"185.47.129.168\",\"185.60.135.86\",\"188.166.158.224\",\"188.166.253.148\",\"188.226.139.158\",\"188.226.158.160\",\"188.226.169.228\",\"188.226.171.58\",\"188.226.184.152\",\"188.226.185.106\",\"188.226.186.199\",\"188.226.203.84\",\"188.226.247.184\",\"188.68.238.79\",\"192.241.221.11\",\"193.124.178.54\",\"193.124.178.61\",\"193.182.144.105\",\"193.182.144.147\",\"199.167.128.80\",\"209.222.30.242\",\"213.183.56.107\",\"217.148.43.188\",\"217.148.43.202\",\"31.220.7.237\",\"37.157.246.146\",\"37.235.48.42\",\"37.235.52.25\",\"37.235.53.240\",\"37.235.55.205\",\"37.97.188.103\",\"45.32.128.80\",\"45.32.145.79\",\"45.32.151.21\",\"45.32.160.172\",\"45.32.166.195\",\"45.32.171.24\",\"45.32.192.198\",\"45.32.195.186\",\"45.32.195.93\",\"45.32.212.56\",\"45.32.36.158\",\"45.32.7.22\",\"45.63.121.159\",\"45.63.26.78\",\"45.63.51.63\",\"45.63.61.213\",\"45.63.76.68\",\"45.63.78.84\",\"45.63.86.120\",\"45.63.88.213\",\"45.76.1.44\",\"45.76.192.50\",\"45.76.3.112\",\"46.101.0.24\",\"46.101.110.32\",\"46.101.110.43\",\"46.101.110.45\",\"46.101.20.96\",\"46.101.238.182\",\"46.101.238.189\",\"46.101.240.208\",\"46.101.27.186\",\"46.101.61.83\",\"46.101.74.251\",\"5.45.179.103\",\"50.2.139.16\",\"82.221.95.161\",\"91.236.116.163\"]},\"managewp\":{\"n\":\"ManageWP\",\"d\":false,\"r\":[\"34.211.180.66\",\"54.70.65.107\",\"34.210.224.7\",\"52.41.5.108\",\"52.35.72.129\",\"54.191.137.17\",\"35.162.254.253\",\"52.11.12.231\",\"52.11.29.70\",\"52.11.54.161\",\"52.24.142.159\",\"52.25.191.255\",\"52.27.181.126\",\"52.34.126.117\",\"52.34.254.47\",\"52.35.82.99\",\"52.36.28.80\",\"52.38.106.97\",\"52.39.177.152\",\"52.41.230.148\",\"52.41.237.12\",\"52.42.126.166\",\"52.43.13.71\",\"52.43.76.224\",\"52.88.96.110\",\"52.89.155.51\",\"54.148.73.118\",\"54.186.37.105\",\"54.187.92.57\",\"54.191.32.65\",\"54.191.67.23\",\"54.191.80.119\",\"54.191.135.209\",\"54.191.136.176\",\"54.191.148.85\",\"54.191.149.8\",\"52.26.122.21\",\"52.24.187.29\",\"52.89.85.107\",\"54.186.128.167\",\"54.191.40.136\",\"52.24.62.11\",\"52.88.119.122\",\"54.191.148.225\",\"54.191.151.18\",\"52.89.94.121\",\"52.25.116.116\",\"52.88.215.225\",\"54.186.143.184\",\"52.88.197.180\",\"52.27.171.126\"]},\"seznam\":{\"n\":\"Seznam Search Engine\",\"d\":true,\"r\":[\"77.75.74.0\\/24\",\"77.75.76.0\\/24\",\"77.75.77.0\\/24\",\"77.75.78.0\\/24\",\"77.75.79.0\\/24\",\"2a02:598:a::78:0\\/112\",\"2a02:598:a::79:0\\/112\",\"2a02:598:2::0\\/96\"]}}','yes'),('whitelistHash',_binary 'bf3d76dc05caf8623cb3fe01c1fc9e308e2f2ea37b826937d850fde361cdefd4','yes'),('previousWflogsFileList',_binary '[\"attack-data.php\",\"rules.php\",\"GeoLite2-Country.mmdb\",\"config-livewaf.php\",\"config-transient.php\",\"ips.php\",\".htaccess\",\"template.php\",\"config-synced.php\",\"config.php\"]','yes'),('diagnosticsWflogsRemovalHistory',_binary '[[1541570824,[\"config.tmp.DzqAJo\",\"config.tmp.WTSUze\",\"config.tmp.A71vqT\",\"config.tmp.ySD5yZ\",\"config.tmp.d8Ijel\",\"config.tmp.rTDPUo\",\"config.tmp.LRJFPV\",\"config.tmp.bX3mHY\",\"config.tmp.qYVDrj\",\"config.tmp.xQIeO4\",\"config.tmp.VE1wc1\",\"config.tmp.712cSb\",\"config.tmp.qLuSFK\",\"wafRules.rules\",\"config.tmp.hPdkVQ\",\"config.tmp.kSaUPj\",\"config.tmp.VZR7Y0\",\"config.tmp.A9dJAF\",\"config.tmp.EkI97r\",\"config.tmp.iv6Swt\",\"config.tmp.klZB44\",\"config.tmp.oYQQYb\",\"config.tmp.4Offer\",\"config.tmp.quxOsd\",\"config.tmp.98XfMd\",\"config.tmp.WBNUUY\",\"config.tmp.bBd8Sd\",\"config.tmp.MShbSk\",\"config.tmp.NSBSA4\",\"config.tmp.V4DPRI\",\"config.tmp.CGD1h4\",\"config.tmp.7bjOOK\",\"config.tmp.vgUwbx\",\"config.tmp.LPEKH6\",\"config.tmp.TZYCcI\",\"config.tmp.mWmnuM\",\"config.tmp.CWHsWK\",\"config.tmp.4nGiwx\",\"config.tmp.RXRi6H\",\"config.tmp.oou8Vc\",\"config.tmp.3eZooe\",\"config.tmp.hOtRBm\",\"config.tmp.mB66wc\",\"config.tmp.WsyTUI\",\"config.tmp.kTNmXB\",\"config.tmp.hivEzw\",\"config.tmp.04RwRS\",\"config.tmp.whgnTl\",\"config.tmp.XIMcCL\",\"config.tmp.U1uZKq\",\"config.tmp.XzZwZM\",\"config.tmp.thQXsP\",\"config.tmp.rDXWqp\",\"config.tmp.PWHzwK\",\"config.tmp.sPuJ3j\",\"config.tmp.kGPYxo\",\"config.tmp.ujnobe\",\"attack.tmp.rCMbBR\",\"config.tmp.6WMQkg\",\"config.tmp.Ygwvy7\",\"config.tmp.4uJ5Ki\",\"config.tmp.3q8tIq\",\"config.tmp.Or3oxw\",\"config.tmp.Vx3cdI\",\"config.tmp.1H4RxY\",\"config.tmp.jTRT8R\",\"config.tmp.Q1BmeL\",\"config.tmp.sBcJeE\",\"config.tmp.XRvRji\",\"config.tmp.Rmm9mI\",\"config.tmp.kDxPw6\",\"config.tmp.RVUZK5\",\"config.tmp.TCMgU0\",\"config.tmp.BFclvl\",\"config.tmp.SsO9Gm\",\"config.tmp.LaIHih\",\"config.tmp.PAtUio\",\"config.tmp.2jyJ79\",\"config.tmp.KmZyeF\",\"config.tmp.EAlTw1\",\"config.tmp.hXr98Y\",\"config.tmp.rRwEgj\",\"config.tmp.roFI70\",\"config.tmp.QVeKIE\",\"config.tmp.Q4fGOJ\",\"config.tmp.KRkEat\",\"config.tmp.Nfszo1\",\"config.tmp.MctExw\",\"config.tmp.q4EI7W\",\"config.tmp.U5uxmg\",\"config.tmp.oy5tNJ\",\"config.tmp.w91sPv\",\"config.tmp.xUP5j6\",\"config.tmp.Bivh2a\",\"attack.tmp.aGc9kD\",\"config.tmp.D9voIg\",\"config.tmp.tOrnIO\",\"config.tmp.LRk0Ba\",\"config.tmp.O4TAlL\",\"config.tmp.Ot7f8U\",\"config.tmp.nSYLXK\",\"config.tmp.B4DQw4\",\"config.tmp.DuLTck\",\"config.tmp.CXsDjv\",\"config.tmp.ds1Vta\",\"config.tmp.sEM1bC\",\"config.tmp.OwhWOw\",\"config.tmp.tBZi4z\",\"config.tmp.5pemGx\",\"config.tmp.o1E0B5\",\"config.tmp.PKNgSM\",\"config.tmp.seDQXa\",\"attack.tmp.vu7Q9C\",\"config.tmp.nFwjtJ\",\"config.tmp.oSNwi2\",\"config.tmp.SQivWN\",\"config.tmp.nvzr2S\",\"config.tmp.P5ZptQ\",\"attack.tmp.0IEp6F\"]]]','yes'),('scansEnabled_geoipSupport',_binary '1','yes'),('config720Migration',_binary '1','yes'),('waf_status',_binary 'enabled','yes'),('showWfCentralUI',_binary '1','yes'),('alertOn_scanIssues',_binary '1','yes'),('alertOn_severityLevel',_binary '25','yes'),('alertOn_wafDeactivated',_binary '1','yes'),('scansEnabled_wafStatus',_binary '1','yes'),('needsNewTour_loginsecurity',_binary '1','yes'),('needsUpgradeTour_loginsecurity',_binary '0','yes'),('wordpressVersion',_binary '5.9.2','yes'),('wordpressPluginVersions',_binary 'a:26:{s:16:\"wd-facebook-feed\";s:5:\"1.2.7\";s:7:\"akismet\";s:5:\"4.2.2\";s:13:\"bizworx-tools\";s:3:\"1.1\";s:14:\"contact-form-7\";s:5:\"5.5.6\";s:21:\"easy-facebook-likebox\";s:5:\"6.3.4\";s:24:\"easy-twitter-feed-widget\";s:3:\"0.9\";s:19:\"easy-weather-widget\";s:5:\"3.2.5\";s:12:\"easy-wp-smtp\";s:5:\"1.4.7\";s:9:\"elementor\";s:5:\"3.6.1\";s:13:\"elementor-pro\";s:5:\"3.3.1\";s:5:\"hello\";s:5:\"1.7.2\";s:11:\"hello-dolly\";s:5:\"1.7.2\";s:11:\"issuu-panel\";s:5:\"1.6.8\";s:7:\"jetpack\";s:4:\"10.7\";s:17:\"our-team-enhanced\";s:5:\"4.4.2\";s:15:\"responsive-menu\";s:5:\"4.1.9\";s:13:\"slider-images\";s:5:\"1.4.9\";s:32:\"ultimate-responsive-image-slider\";s:5:\"3.5.5\";s:11:\"updraftplus\";s:7:\"1.22.11\";s:14:\"widget-context\";s:5:\"1.3.2\";s:24:\"facebook-pagelike-widget\";s:3:\"6.1\";s:12:\"widget-logic\";s:6:\"5.10.4\";s:14:\"widget-options\";s:6:\"3.7.14\";s:9:\"wordfence\";s:5:\"7.5.9\";s:31:\"wp-author-date-and-meta-remover\";s:5:\"1.0.6\";s:9:\"wp-editor\";s:5:\"1.2.7\";}','yes'),('wordpressThemeVersions',_binary 'a:24:{s:4:\"Divi\";s:7:\"3.0.106\";s:6:\"avenue\";s:5:\"3.0.0\";s:14:\"bg-photo-frame\";s:5:\"1.2.8\";s:11:\"bizworx-pro\";s:3:\"1.0\";s:15:\"business-center\";s:5:\"1.2.1\";s:14:\"chic-lifestyle\";s:6:\"10.0.6\";s:10:\"city-store\";s:5:\"1.4.5\";s:14:\"curiosity-lite\";s:5:\"2.2.1\";s:8:\"idolcorp\";s:3:\"1.2\";s:11:\"incart-lite\";s:5:\"1.0.7\";s:10:\"lithestore\";s:5:\"1.1.5\";s:7:\"maxwell\";s:5:\"2.3.6\";s:8:\"mckinley\";s:5:\"1.1.0\";s:6:\"moesia\";s:4:\"1.53\";s:10:\"news-viral\";s:5:\"1.1.4\";s:8:\"poseidon\";s:5:\"2.3.6\";s:9:\"reyl-lite\";s:5:\"1.0.5\";s:10:\"skt-toothy\";s:3:\"1.7\";s:11:\"start-press\";s:5:\"1.3.4\";s:6:\"storto\";s:5:\"1.6.4\";s:13:\"twentyfifteen\";s:3:\"3.1\";s:14:\"twentynineteen\";s:3:\"2.2\";s:15:\"twentyseventeen\";s:3:\"2.9\";s:13:\"twentysixteen\";s:3:\"2.6\";}','yes'),('tldlistHash',_binary 'dd4f3e3f21231d2fed9b2be82db21a2d1fba16c209680dcbef8c1f2bfca99298','yes'),('tldlist',_binary '|com|org|net|edu|aaa|abb|abc|aco|ads|aeg|afl|aig|anz|aol|app|art|aws|axa|bar|bbc|bbt|bcg|bcn|bet|bid|bio|biz|bms|bmw|bom|boo|bot|box|buy|bzh|cab|cal|cam|car|cat|cba|cbn|cbs|ceo|cfa|cfd|cpa|crs|dad|day|dds|dev|dhl|diy|dnp|dog|dot|dtv|dvr|eat|eco|esq|eus|fan|fit|fly|foo|fox|frl|ftr|fun|fyi|gal|gap|gay|gdn|gea|gle|gmo|gmx|goo|gop|got|gov|hbo|hiv|hkt|hot|how|ibm|ice|icu|ifm|inc|ing|ink|int|ist|itv|jcb|jio|jll|jmp|jnj|jot|joy|kfh|kia|kim|kpn|krd|lat|law|lds|llc|llp|lol|lpl|ltd|man|map|mba|med|men|mil|mit|mlb|mls|mma|moe|moi|mom|mov|msd|mtn|mtr|nab|nba|nec|new|nfl|ngo|nhk|now|nra|nrw|ntt|nyc|obi|one|ong|onl|ooo|ott|ovh|pay|pet|phd|pid|pin|pnc|pro|pru|pub|pwc|red|ren|ril|rio|rip|run|rwe|sap|sas|sbi|sbs|sca|scb|ses|sew|sex|sfr|ski|sky|soy|spa|srl|stc|tab|tax|tci|tdk|tel|thd|tjx|top|trv|tui|tvs|ubs|uno|uol|ups|vet|vig|vin|vip|wed|win|wme|wow|wtc|wtf|xin|xxx|xyz|you|yun|zip|ac|ad|ae|af|ag|ai|al|am|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cw|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw|aarp|able|adac|ally|arab|army|arte|asda|asia|auto|bike|bing|blog|blue|camp|boats|casa|case|bosch|cars|canon|abarth|bond|abbott|aero|amex|buzz|adult|arpa|aetna|band|bank|beer|cards|abbvie|airtel|alsace|cafe|africa|agency|airbus|akdn|alstom|alibaba|allstate|call|alipay|amazon|best|athleta|audi|baby|bbva|bostik|associates|bofa|book|build|broker|camera|career|booking|care|boston|boutique|allfinanz|bnpparibas|boehringer|cash|cbre|cern|chat|citi|amfam|amica|audio|chase|amsterdam|apple|analytics|azure|cheap|city|android|apartments|baidu|beats|cisco|rsvp|rugby|banamex|bananarepublic|rocks|circle|barcelona|club|rich|room|rodeo|coffee|ruhr|sarl|seek|shaw|autos|scot|seat|shia|sina|site|author|show|archi|skin|auspost|shop|actor|silk|tiaa|bible|safe|save|saxo|anquan|avianca|sale|sexy|teva|bingo|black|citic|click|ricoh|shoes|claims|cloud|coach|seven|shell|tips|clinic|codes|macys|salon|sener|sharp|skype|barclaycard|sling|barclays|americanfamily|sony|aramco|berlin|sncf|sohu|song|solar|bestbuy|talk|audible|bharti|spot|star|casino|americanexpress|auction|smile|center|surf|smart|blackfriday|chanel|attorney|barefoot|blockbuster|space|tatar|basketball|store|study|sucks|tokyo|tools|toray|bargains|today|baseball|aquarelle|swiss|tmall|bauhaus|bentley|team|tech|stada|church|bloomberg|chrome|sport|bayern|beauty|comsec|condos|taxi|style|tires|tirol|online|abogado|sanofi|soccer|cipriani|safety|sakura|suzuki|swatch|agakhan|capital|caravan|citadel|clubmed|shouji|careers|college|cologne|social|samsung|sandvik|schmidt|school|schule|sydney|cityeats|taipei|comcast|cleaning|select|rexroth|total|secure|brother|works|world|accountant|catering|cooking|ryukyu|catholic|accenture|rocher|contact|rogers|academy|xbox|stream|supply|xerox|compare|studio|xihuan|bugatti|channel|charity|chintai|company|abudhabi|reviews|christmas|taobao|schwarz|target|tjmaxx|zappos|clinique|yandex|clothing|computer|search|saarland|construction|yoga|commbank|singles|consulting|storage|samsclub|tiffany|shopping|showtime|contractors|shiksha|staples|zara|zero|zone|richardli|science|security|services|yahoo|softbank|statefarm|temasek|statebank|work|shangrila|systems|tattoo|schaeffler|scholarships|tennis|solutions|surgery|community|support|theater|theatre|yachts|tickets|tienda|toshiba|software|vana|vegas|airforce|brussels|builders|business|capetown|ventures|verisign|capitalone|viajes|alfaromeo|video|viking|broadway|villas|virgin|tatamotors|visa|vision|viva|vivo|bradesco|bridgestone|vlaanderen|vodka|vanguard|calvinklein|tours|town|toys|trust|toyota|training|tube|trade|tunes|tushu|ubank|travel|unicom|trading|travelers|vacations|travelchannel|cancerresearch|versicherung|volvo|technology|university|volkswagen|vote|watch|stockholm|voto|wales|voting|wang|supplies|weber|weibo|weir|voyage|vuelos|wien|weather|accountants|walter|wine|wanggou|watches|webcam|website|wedding|wiki|walmart|whoswho|yamaxun|williamhill|windows|winners|youtube|stcgroup|wolterskluwer|xfinity|zuerich|woodside|xn--90ais|xn--30rr7y|xn--3pxu8k|xn--4gbrim|xn--55qx5d|xn--5tzm5g|xn--80aswg|xn--1ck2e1b|xn--45q11c|xn--fhbei|xn--90a3ac|xn--9dbq2a|xn--fiq64b|xn--fiqz9s|xn--tckwe|xn--vhquv|xn--fiqs8s|xn--unup4y|xn--wgbh1c|xn--wgbl6a|xn--1qqw23a|xn--y9a3aq|xn--11b4c3d|xn--2scrj9c|yodobashi|xn--3bst00m|xn--c1avg|xn--c2br7g|xn--cg4bki|xn--czrs0t|xn--czru2d|xn--3ds443g|xn--3hcrj9c|xn--42c2d9a|xn--55qw42g|xn--d1alf|xn--6frz82g|xn--80ao21a|xn--90ae|xn--9et52u|xn--45brj9c|xn--9krt00a|xn--cck2b3b|xn--czr694b|xn--d1acj3b|xn--e1a4c|xn--efvy88h|xn--fct429k|xn--fjq720a|xn--flw351e|xn--g2xx48c|xn--gecrj9c|xn--gk3at1e|xn--h2brj9c|xn--3e0b707e|xn--45br5cyl|xn--4dbrk0ce|xn--cckwcxetd|yokohama|xn--eckvdtc9d|xn--hxt814e|xn--qxa6a|xn--kput3i|xn--node|xn--l1acc|xn--ngbrx|xn--mxtq1m|xn--mgbbh1a|xn--mgbtx2b|xn--mix891f|xn--nqv7f|xn--gckr3f0f|xn--j1amh|xn--io0a7i|xn--j6w193g|xn--jvr189m|xn--kprw13d|xn--h2brj9c8c|xn--j1aef|xn--imr513n|xn--kpry57d|xn--mgb9awbf|xn--mgbab2bd|xn--mgbgu82a|xn--mgbpl2fh|xn--mgbt3dhd|xn--mk1bu44c|xn--ngbc5azd|xn--ngbe9e0a|xn--nyqy26a|xn--8y0a063a|xn--pssy2u|xn--qxam|xn--q7ce6a|xn--q9jyb4c|xn--s9brj9c|xn--ses554g|xn--t60b56a|xn--80adxhks|xn--qcka1pmc|xn--vuq861b|xn--w4rs40l|xn--80asehdb|xn--fpcrj9c3d|xn--p1ai|xn--pgbs0dh|xn--rovu88b|xn--fzc2c9e2c|xn--p1acf|xn--o3cw4h|xn--otu796d|xn--xhq521b|xn--ogbpf8fl|xn--rhqv96g|xn--tiq49xqyj|xn--yfro4i67o|xn--ygbi2ammx|xn--zfr164b|cookingchannel|cool|coop|cyou|data|date|dclk|deal|dell|delta|desi|diet|dish|docs|drive|dubai|dvag|fail|events|fage|deals|erni|estate|etisalat|exchange|eurovision|fans|expert|farm|fiat|faith|family|fast|fedex|fairwinds|fido|film|extraspace|flir|ford|fund|exposed|fire|fish|food|free|game|gbiz|gent|guge|final|ggee|gift|gmbh|gold|golf|guru|hair|express|goog|haus|cymru|earth|glass|hdfc|crown|email|forum|globo|gmail|engineering|hgtv|gifts|gives|help|here|gallo|games|honda|enterprises|horse|host|imdb|itau|java|kred|lidl|life|dabur|jeep|jobs|jprs|land|lego|like|limo|dance|edeka|ericsson|homes|kddi|link|green|gripe|kiwi|kpmg|live|epson|equipment|loan|forex|group|gucci|guide|house|irish|giving|finance|futbol|kyoto|flickr|lamer|gallup|lease|lipsy|garden|george|linde|global|ferrero|legal|hermes|hiphop|farmers|google|fashion|gratis|health|hockey|intuit|latino|lawyer|lefrak|lilly|ferrari|lancia|fishing|lgbt|football|frogans|fresenius|ieee|info|feedback|immo|forsale|foundation|hsbc|icbc|firmdale|hughes|hyatt|foodnetwork|ikano|koeln|financial|firestone|hotels|jetzt|fitness|flowers|imamat|joburg|juegos|kaufen|kinder|kindle|fidelity|flights|jaguar|florist|insure|lexus|kosher|loans|cruise|cruises|ping|pink|play|plus|pohl|prof|cuisinella|porn|post|prod|dating|dental|democrat|page|datsun|dealer|degree|delivery|deloitte|design|diamonds|energy|pars|dentist|discount|pccw|pics|digital|direct|discover|osaka|paris|parts|party|phone|photo|pfizer|photos|physio|reit|country|prime|coupon|rent|corsica|reisen|repair|report|rest|reise|emerck|otsuka|rehab|pictet|coupons|promo|credit|doctor|dunlop|creditunion|domains|qpon|download|praxi|press|quest|dupont|pizza|courses|poker|durban|place|racing|radio|read|quebec|creditcard|realty|cricket|engineer|frontdoor|loft|lotto|love|ltda|luxe|luxury|madrid|maif|lotte|meme|locus|locker|mini|mobi|living|mint|maison|makeup|mango|london|menu|miami|market|meet|media|mattel|monash|education|frontier|mobile|moda|money|name|next|mormon|moto|navy|news|nexus|natura|nico|nagoya|nike|movie|music|mutual|nikon|ninja|open|moscow|omega|museum|nissan|nissay|nokia|norton|nowruz|nowtv|office|olayan|ollo|oracle|directory|orange|review|fujitsu|lanxess|lasalle|latrobe|leclerc|markets|network|neustar|lighting|limited|lincoln|monster|netflix|lundbeck|netbank|marriott|lifestyle|maserati|mckinsey|melbourne|memorial|merckmsd|marketing|marshalls|microsoft|mitsubishi|mortgage|lifeinsurance|management|nextdirect|lplfinancial|motorcycles|northwesternmutual|observer|okinawa|lancaster|pioneer|politie|realtor|recipes|rentals|plumbing|property|redstone|reliance|landrover|oldnavy|organic|origins|partners|pictures|olayangroup|philips|pharmacy|panasonic|passagens|pramerica|photography|properties|prudential|realestate|playstation|productions|progressive|protection|redumbrella|republican|sandvikcoromant|tkmaxx|gallery|genting|godaddy|grocery|helsinki|hosting|graphics|hitachi|guardian|hangout|holiday|goodyear|grainger|guitars|hamburg|hoteles|hdfcbank|hospital|infiniti|hisamitsu|holdings|ismaili|homedepot|homegoods|homesense|hotmail|hyundai|industries|institute|immobilien|insurance|international|investments|ipiranga|istanbul|kitchen|goldpoint|jewelry|healthcare|juniper|komatsu|kuokgroup|lacaixa|jpmorgan|furniture|lamborghini|restaurant|kerryhotels|kerrylogistics|weatherchannel|xn--54b7fta0cc|xn--6qq986b3xl|xn--80aqecdr1a|xn--b4w605ferd|xn--fiq228c5hs|xn--h2breg3eve|xn--jlq480n2rg|xn--jlq61u9w7b|xn--mgba3a3ejt|xn--mgbaam7a8h|xn--mgbbh1a71e|xn--mgbca7dzdo|xn--bck1b9a5dre4c|xn--mgbayh7gpa|xn--mgbi4ecexp|xn--mgbx4cd0ab|xn--mgba3a4f16a|xn--rvc1e0am3e|kerryproperties|xn--kcrx77d1x4a|xn--mgbaakc7dvf|xn--mgbc0a9azcg|xn--5su34j936bgsg|xn--lgbbat1ad8j|xn--mgbah1a3hjkrd|xn--mgbai9azgqp6j|xn--mgbcpq6gpa1a|xn--mgberp4a5d4ar|travelersinsurance|xn--i1b6b1a6a2e|xn--nqv7fs00ema|xn--fzys8d69uvgm|xn--mgba7c0bbn0a|xn--xkc2dl3a5ee0h|xn--vermgensberater-ctb|xn--vermgensberatung-pwb|xn--w4r85el8fhu5dnra|xn--xkc2al3hye2a|xn--clchc0ea0b2g2a9gcd|','yes'),('suspiciousAdminUsernames',_binary 'a:2:{i:0;s:46:\"/^wp\\.service\\.controller(?:\\.[a-zA-Z0-9]+)$/i\";i:1;s:55:\"/^(?:wordpressssadmin|wordprestadmin|jaime.besser56)$/i\";}','yes'),('allowLegacy2FA',_binary '0','yes'),('wordfenceI18n',_binary '1','yes'),('hasKeyConflict',_binary '0','yes'),('loginSec_disableApplicationPasswords',_binary '1','yes'),('lastAttackDataSendId',_binary '196736','yes'),('lastDailyCron',_binary '1648203371','yes'),('lastPermissionsTemplateCheck',_binary '1648247816','yes');
/*!40000 ALTER TABLE `wpjj_wfConfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wfCrawlers`
--

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

--
-- Dumping data for table `wpjj_wfCrawlers`
--

LOCK TABLES `wpjj_wfCrawlers` WRITE;
/*!40000 ALTER TABLE `wpjj_wfCrawlers` DISABLE KEYS */;
INSERT INTO `wpjj_wfCrawlers` (`IP`, `patternSig`, `status`, `lastUpdate`, `PTR`) VALUES (_binary '\0\0\0\0\0\0\0\0\0\0BH_',_binary '>b0oQ1\','verified',1648218502,'crawl-66-249-72-95.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BHR',_binary '>b0oQ1\','verified',1648218409,'crawl-66-249-72-82.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BHS',_binary '>b0oQ1\','verified',1648047254,'crawl-66-249-72-83.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BHT',_binary '>b0oQ1\','verified',1647960833,'crawl-66-249-72-84.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BH[',_binary '>b0oQ1\','verified',1648131988,'crawl-66-249-72-91.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0B@?',_binary '>b0oQ1\','verified',1647705111,'crawl-66-249-64-63.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0B@2',_binary '>b0oQ1\','verified',1647705111,'crawl-66-249-64-50.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0B@;',_binary '>b0oQ1\','verified',1647705123,'crawl-66-249-64-59.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BE\',_binary '>b0oQ1\','verified',1648115229,'crawl-66-249-69-221.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BHV',_binary '>b0oQ1\','verified',1648131992,'crawl-66-249-72-86.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BHP',_binary '>b0oQ1\','verified',1648047241,'crawl-66-249-72-80.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BHL',_binary '>b0oQ1\','verified',1648047241,'crawl-66-249-72-76.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BHQ',_binary '>b0oQ1\','verified',1648047241,'crawl-66-249-72-81.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BH]',_binary '>b0oQ1\','verified',1647789763,'crawl-66-249-72-93.googlebot.com');
/*!40000 ALTER TABLE `wpjj_wfCrawlers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wfFileChanges`
--

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

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

--
-- Table structure for table `wpjj_wfFileMods`
--

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

LOCK TABLES `wpjj_wfFileMods` WRITE;
/*!40000 ALTER TABLE `wpjj_wfFileMods` DISABLE KEYS */;
INSERT INTO `wpjj_wfFileMods` (`filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`, `SHAC`, `stoppedOnSignature`, `stoppedOnPosition`, `isSafeFile`) VALUES (_binary '\0\+OW+','index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\]\#\NX,\',_binary 'Dz\n\}_\7x,\9\t:\\'\r\\','',0,'?'),(_binary '\\[/9}`:w\P','license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UT{C\ɷ!-Q9\',_binary '5\\WJy\\"\E\><GE;\=X\n\n\f','',0,'?'),(_binary 'a?_\ˢ\6j\X','readme.html',0,_binary '4q\$\\{',_binary '4q\$\\{',_binary '\\ii\M\䉝Ŵ\\K\\\<8\X','',0,'?'),(_binary '3Y#\\6r\nYp\$','wordfence-waf.php',0,_binary 'yp\\,\4o\'',_binary 'yp\\,\4o\'',_binary '=\\\ m`Ə\\\7Y\L\\(u\"/','',0,'?'),(_binary '\\\Kg\\o#\0','wp-activate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm#w:m2A\"',_binary '\^>*\\\rI+\\{ф\Ub\&\','',0,'?'),(_binary '-)75y8c\\Wv\','wp-admin/about.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\MO\xma\Z\',_binary '\冩M\IBg\\\ϟ\\\\n','',0,'?'),(_binary 'X\H奥(:\Z\','wp-admin/admin-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\Iysjy\Ѩ_',_binary '8=Ի(H\&uE\Zl}RZ>Olx','',0,'?'),(_binary '!1b݅9*\\\\\','wp-admin/admin-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z\C\\0Ol$',_binary 'sTlEe\Bhv:g%k\07k=\\&!','',0,'?'),(_binary '\KU\g0MU/\ʇ','wp-admin/admin-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xo_Բ)\n\\r',_binary '(\Z!.\e\\TU92;\\\\ݏt5o\^','',0,'?'),(_binary '@\m\\O\\W','wp-admin/admin-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u[\!\\E\\\"\',_binary '\\b6#NЪondg`\\\%#\Z\\Z','',0,'?'),(_binary '\]@\n>ĺ\Yn','wp-admin/admin-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S}dDTN\\"F',_binary 'Fԝ\q`\멾\\\r_Ȩ_\\'I','',0,'?'),(_binary ',H(b\_FO','wp-admin/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ΙF#֙\iIA&',_binary 'I/=Ill\rWM_4\\i\Z\r$Aq3','',0,'?'),(_binary '	X\t\\4vNI5\j\\','wp-admin/async-upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n#9ouo<B\\\',_binary '`V\\r\FA\\Y,(lBA\\!','',0,'?'),(_binary ')\I\nΆVq\\{','wp-admin/authorize-application.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']tj\\$xŦ𮁺&w',_binary '\c\\}\\\fCI\C\`','',0,'?'),(_binary '\"\\6\r+K{\\Z!a','wp-admin/comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ێrY8\ε\\s\\Q',_binary '\.\\\qv6\n4\߰\	6s\,Q#','',0,'?'),(_binary 'kM\\̙Ysp','wp-admin/credits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r-\r\*\y\z\\',_binary ' 1\7(\6\o\\I#bघ˵\g\\n(\Y','',0,'?'),(_binary '*O-Lτ\\\r[\u','wp-admin/css/about-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'so\A[`\rdg?\',_binary '.\jAn\'l2(v\{f&NG0d','',0,'?'),(_binary 'Unɓb4lZ,I','wp-admin/css/about-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r\܆\Ujw',_binary '^>2o=\DB\\\\&\\\o0	\!WZO','',0,'?'),(_binary '\A7\'\C#wSs','wp-admin/css/about.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0H\\\<\\\',_binary '\ɖϜ2iF4u\\]\ܬ\$n.\','',0,'?'),(_binary 'J\!2\\0','wp-admin/css/about.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\i?1\?L\`\',_binary '\\c^\\\ڲɍ&\a\\UROX','',0,'?'),(_binary 'm\n9\F6','wp-admin/css/admin-menu-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0omL#\}\Lc',_binary '>\\ێY3\H)\&9ln.8(5','',0,'?'),(_binary 'T]\\g\4źuP;','wp-admin/css/admin-menu-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>\|Lu0',_binary '+{\6\O\\\,wҞ\cӑn\l','',0,'?'),(_binary '\"\Z0\0ؿeԦp\','wp-admin/css/admin-menu.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*_\\rQ1',_binary '\ch\\gas~yI\Y=G}͝2kxr','',0,'?'),(_binary 'E58y\\Ws\O\','wp-admin/css/admin-menu.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\P\n\"ow\|!',_binary '\tK8t\\\\\\rYޟ?_<6\r','',0,'?'),(_binary '`\\n\2\','wp-admin/css/code-editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\VDBQVgF',_binary 'w\86=\ݔ\2\\rD%VE5S	\T','',0,'?'),(_binary '=\f;V\dl\"','wp-admin/css/code-editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z.y\\^Ji*',_binary '{\ \\I\\^`\0\\\<<','',0,'?'),(_binary 'Lߨ\Ϥ(R','wp-admin/css/code-editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\gq\\is픋-',_binary '~:\"`\\he&@*\\A\\','',0,'?'),(_binary '~}\{ \\>D\}<','wp-admin/css/code-editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\3;7\\v:P\\\',_binary 'JlAZ\\q\Fv\<3\I^\k\','',0,'?'),(_binary '\Pa`Xu','wp-admin/css/color-picker-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\":\@ܐ^J\',_binary '\E\\_w\1:\\\\\\-\E','',0,'?'),(_binary '\rW\3\᥾V','wp-admin/css/color-picker-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~pES\\cV',_binary '\<=\0[Z\n2|닢\0?6','',0,'?'),(_binary 'F\\\?\C;$\H\r\r','wp-admin/css/color-picker.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<^\\rq!\Z',_binary '=Li7\	tI}|\9\oh\`o\\=CD','',0,'?'),(_binary 'ܡ9\u_\\\n\9\'','wp-admin/css/color-picker.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\x\Ti6',_binary 'ۣqT\zu\\\Oi\\\\5ЯY\u\\~=c','',0,'?'),(_binary 'J|6}\P\,\rٛ','wp-admin/css/colors/_admin.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KS)_IM\" ',_binary '\b\c\'W\uIcբo\8\J<RP\"\','',0,'?'),(_binary 'ue\,\"\n	\hg.','wp-admin/css/colors/_mixins.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X`\oi`HxC',_binary '\\d\pe܊&\\΁\\\\\\\\s-\','',0,'?'),(_binary '=CѠ\\*TX\4','wp-admin/css/colors/_variables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\1\}tD\^',_binary 'g\2\\\IdOd֜\\\\\\Ip)4\f','',0,'?'),(_binary '58\d\`S61K>ۮv','wp-admin/css/colors/blue/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\gﵷ?\\y',_binary ']\\\${N\Z\̼\\g\;:\j\8','',0,'?'),(_binary 'D8hFޛBViR\','wp-admin/css/colors/blue/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nLr^\c\:S',_binary 'D7=(,QYyM=\fԦ\\L\K\\','',0,'?'),(_binary '\\FZY\C83E','wp-admin/css/colors/blue/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EȖr\	r10',_binary 'uhD\\\]\j@#T;\r\0\ǒ\\\V','',0,'?'),(_binary 'tm6ۗq.=j','wp-admin/css/colors/blue/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1~\2^e\D\\u|',_binary '0s\7\(\2<혔\\\f>j*8HF\','',0,'?'),(_binary 'L\>t\N\','wp-admin/css/colors/blue/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eG\BH\I\\םƖS',_binary 'ŒSƆ\trɅ{\[o<oT\&','',0,'?'),(_binary 'juGCtO\\\','wp-admin/css/colors/coffee/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ђ@6\kTy, ',_binary '1u:\IsƗ\\\\F?\\\\r','',0,'?'),(_binary 'q?%\\rp0\7\q','wp-admin/css/colors/coffee/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w`T\[\\宓,',_binary '	a\K%`sؕkU[<\kr,ѿ','',0,'?'),(_binary 'ϴ 3P`#8^\\Z','wp-admin/css/colors/coffee/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':[۞\\IFĖ',_binary 'X\#\_W\n\\bn\wP#Wh\\p','',0,'?'),(_binary '\\eC\Di!\\','wp-admin/css/colors/coffee/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dH\\\Z^&\sR',_binary 'aD doFD4]h\p\21\\f\\\','',0,'?'),(_binary 'xIH\.9Y\\BO','wp-admin/css/colors/coffee/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^ui\PA\Z',_binary '67\SD><ȶ\\yeՋVN\cMM','',0,'?'),(_binary 'jmE\AX\uw>܆','wp-admin/css/colors/ectoplasm/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\`8FEֆ{2',_binary 'S2O\\N˔\܊n\$\a\*\\\','',0,'?'),(_binary 'Dչ\\\\$Oa\\','wp-admin/css/colors/ectoplasm/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\\jT\mIU\"',_binary '\+\|$k{H\3d\M\W\42\r[蛸','',0,'?'),(_binary '\\H\0ۙhC','wp-admin/css/colors/ectoplasm/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.Z\ԑ\5dii?)\',_binary '\23\JsT~g\7\\l<\','',0,'?'),(_binary '[\#ܧ\Z>]<','wp-admin/css/colors/ectoplasm/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l\TG1f1',_binary '%ߪg6zO(Dg\`V\\\d3\;5*\c','',0,'?'),(_binary '\M\Tq&[?>칊\\n','wp-admin/css/colors/ectoplasm/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a\b\.3\^\DSo',_binary 'xn0 #G.즡!!i\\','',0,'?'),(_binary '\q%ű m+','wp-admin/css/colors/light/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZA\l\py5Jd\',_binary '\`yzD\;! w\J\'x\ˬw\','',0,'?'),(_binary '-f\\4]\#\"ul','wp-admin/css/colors/light/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L1#Ky\஧',_binary 'n{\Q\\\cM>\\&\=-[\\\p\\\	','',0,'?'),(_binary 'v\{#lb\0}\\B','wp-admin/css/colors/light/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N~r3Y[^6X\O',_binary '\ee\\\8ƮQ\\z\P\iN+h\','',0,'?'),(_binary '9(FRj2n6]','wp-admin/css/colors/light/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3|\.%\X',_binary '*5 OJ\6\?_!J\o\Rpl\o\?Oe','',0,'?'),(_binary '\KS+e׎A@','wp-admin/css/colors/light/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\/g\wp`\\\c\',_binary 'Gk1\\k\]\eCI\h]ŷ\\\','',0,'?'),(_binary '\\L?@.~O','wp-admin/css/colors/midnight/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '믢\0\\\%\',_binary 'Aj\ʖ?\\O/ڜ\*\\"\}i','',0,'?'),(_binary '\\ᗏ\3-4','wp-admin/css/colors/midnight/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\QSH9C',_binary '$\u%_\S\Z\c\pkc4M_@d)\A','',0,'?'),(_binary ';\bfȖ0x','wp-admin/css/colors/midnight/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jI]\\\\',_binary 'jM\0\P(\BCء`ж\F\FF+\','',0,'?'),(_binary '\\_\rJL\#@B\\','wp-admin/css/colors/midnight/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T|\/k4\0\V\n\',_binary 'uT\һ:\\fTya\y\r1a\;܆m2\m','',0,'?'),(_binary '\w=Ţ\O&F\','wp-admin/css/colors/midnight/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$h\n*lQ\u\',_binary 'GfHK\\\<M\RMwñа$\Z-or','',0,'?'),(_binary 'Sj\~6{X','wp-admin/css/colors/modern/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z-\!sLv\\\',_binary 'BM\@n\fa\\v==sƃ','',0,'?'),(_binary '7\\\OW\n@a','wp-admin/css/colors/modern/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\=\\\I',_binary 'w\5!]\Rk\\\	Np\0t|\ҮY','',0,'?'),(_binary 'n1.Óu\t\lX','wp-admin/css/colors/modern/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U}`b%sdIl\',_binary '!l:]j\,_\F)\\0s#slH','',0,'?'),(_binary '\_q ^\<\8\\:\	','wp-admin/css/colors/modern/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '؞\Mk%h\ \Vz',_binary '^{`]?;df\r߅ҥj)S','',0,'?'),(_binary '\\"\<	it\\&\','wp-admin/css/colors/modern/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<mV1]\\\\n',_binary 'H\\r,J-\*c#\4\t\','',0,'?'),(_binary '<(\\*A]O\','wp-admin/css/colors/ocean/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~_\r\/w',_binary '\'\t70	\YX\a\\\^=\0\r\h\MvS','',0,'?'),(_binary '\{^W\\\\C','wp-admin/css/colors/ocean/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r%Xk\C[Ǿ\%',_binary '|S5s\\v^o\Z\\\I\\\\D','',0,'?'),(_binary '\Ê5ff\;,G!\'\\\'-','wp-admin/css/colors/ocean/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\w$WO\3lHiI',_binary 'IUם{\'\&\\D=9R\5zu\΃','',0,'?'),(_binary '*T\u\r\\\~m','wp-admin/css/colors/ocean/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|@\qʜ2\K²',_binary '5_Ҩ\X\&\M\q|7p\\,9\\\g\!','',0,'?'),(_binary '-\\\Ǹ%w=\\','wp-admin/css/colors/ocean/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=A\\$o\\cV\',_binary '3\3g(u2-*6{\j=Pg0M\\}','',0,'?'),(_binary 'j׻\q.*;\2','wp-admin/css/colors/sunrise/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\^ɭ`\b~\	',_binary '\Ɋ\E\uT\f\xNˣ\r3R','',0,'?'),(_binary '2jL,\\\W\rW$\','wp-admin/css/colors/sunrise/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x!OJ\\G',_binary '\y2\'	m)\9\Lhd\32\\\"n	','',0,'?'),(_binary 'y85\\æb\','wp-admin/css/colors/sunrise/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƐB_\q\0L\\',_binary '\]H\U(\\\nY\'(!\f,TX','',0,'?'),(_binary '\-\+e\\\m\u\"\x','wp-admin/css/colors/sunrise/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$y\PoLM\',_binary 's\<~Q\jt(\\n=zQ$\.\\G!','',0,'?'),(_binary 'SCRCl\','wp-admin/css/colors/sunrise/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\$lY\F\R',_binary 'kvY\߁\R\\TR\\N*!\:aH','',0,'?'),(_binary '\W2\\D\G7V','wp-admin/css/common-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\bz\C\<xc',_binary '*\0o@w|{WT\\\G\~\==YQ','',0,'?'),(_binary 'XH\ov\','wp-admin/css/common-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\Ǩ\ስ\'\`',_binary '\p5\7\:\z\\uz#\&b#\H\','',0,'?'),(_binary 'p96è\R\','wp-admin/css/common.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zcػ9\<\<\',_binary '^+\{\Z͖wd\Z5\=\PxPX>','',0,'?'),(_binary '\rvN\\[B\\&\\SL','wp-admin/css/common.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e-\0찊Ua\',_binary '\J;Iˡ֣W|ＰD^(ʺ69%3','',0,'?'),(_binary '\Vk9۴\sֿ','wp-admin/css/customize-controls-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j}\փx\̒#=\\',_binary 'i\C\\\FC>{\ \\zO(Y8\','',0,'?'),(_binary '\\p\j֛`\w','wp-admin/css/customize-controls-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\D^\\Z)\Y\/\p\'',_binary '\:\](?REފk)gIC\?|b\|\%Qh8','',0,'?'),(_binary '?\n5H\?\\\\','wp-admin/css/customize-controls.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RԪ\;/\\b	f',_binary 'I%t*lqHj2{3콀t\\=)[','',0,'?'),(_binary '.ն\\Zg{\=\\','wp-admin/css/customize-controls.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\x\\'\c\cgO',_binary 'KV\\\r\\5S|e\rt\	㽣B\D\U\'\Z','',0,'?'),(_binary 'O\\\\y k	b','wp-admin/css/customize-nav-menus-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J\\v\\~\',_binary 'S\\mV,\HY	\7.J]!\Y','',0,'?'),(_binary 'HAf,\\$F-\','wp-admin/css/customize-nav-menus-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\6쑱\\\\C\\',_binary '\\"vf:\0\\`J\\^\|cA\\\\','',0,'?'),(_binary 'AlA~i^\u\Ø','wp-admin/css/customize-nav-menus.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';k)1D\rv0',_binary 'I \R$I1g ?e8,\Q\\d\\\C','',0,'?'),(_binary '\\0]p\\ޑ\	\rG','wp-admin/css/customize-nav-menus.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ow/\7`\\\`;',_binary 'ߒ\۫e{\\\Kd\hGYӺdJ\ϒo_','',0,'?'),(_binary 'N\\HV\\}4G','wp-admin/css/customize-widgets-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Eq\_\\\U\R',_binary '\Q.$\J%b\\&M1aL\WmF`','',0,'?'),(_binary '4T(\\\9\'\3)','wp-admin/css/customize-widgets-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\F+N\q.V[',_binary 'aE-nAe\=R=:.CC\\\tZ*\\','',0,'?'),(_binary '\\6$[O','wp-admin/css/customize-widgets.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\h\\dM\*E\y',_binary '\Z\0ڀ#]\*\\ԯ\r\=\\}i-','',0,'?'),(_binary '\b|e~\','wp-admin/css/customize-widgets.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hͺ/\ME\߾_؀C2',_binary '?ε^d\{)iҲ߼U;,=5\\A\\T','',0,'?'),(_binary '5\?y\<\2\','wp-admin/css/dashboard-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vi\I52\k',_binary 'j!\e\a4K鎕\yxZ)\\"R8\N','',0,'?'),(_binary 'M\s\;\',\\-E','wp-admin/css/dashboard-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+32m\}#6j\P',_binary '\El\Q\i8\Lْ噍\\E[J\]R<','',0,'?'),(_binary 'KqM\\{','wp-admin/css/dashboard.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(*̣\\:\',_binary '}o~y\\{\e5^\'p\V5','',0,'?'),(_binary '\+.\\eF\','wp-admin/css/dashboard.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\\\tT',_binary '}L\,b\t[5h7\ZU\[h\J!','',0,'?'),(_binary '8@)6yg[y\sQR','wp-admin/css/deprecated-media-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o8\;',_binary '\ J\xJV9\fo)\\\w\3\?','',0,'?'),(_binary 'pt_ Y\7L\Kt','wp-admin/css/deprecated-media-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H\\r\W\C\',_binary 'U=E\"=awf\Zͬ98mFˏV\','',0,'?'),(_binary '\\X\"-{\\$48sx','wp-admin/css/deprecated-media.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DRe\CX&n',_binary 'QU)\ ƟlQ d׶\+8\V΀\','',0,'?'),(_binary '4a\[I}\\\Hm)','wp-admin/css/deprecated-media.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>y\Z\\\J\Yn>',_binary 't2\nP:5\$O3\\\r','',0,'?'),(_binary ']\\"}[Y\R\','wp-admin/css/edit-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k)hk׊\M\r',_binary 'q\n$>ۢ?`\/UV','',0,'?'),(_binary 'B\H*mz\N83\','wp-admin/css/edit-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'έ\y\]0xs\',_binary 'H\/gv\\\IU]`Prt\jإ','',0,'?'),(_binary '\r::\\HH:d','wp-admin/css/edit.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xK\8x{,_u',_binary 'S\=\Z\n!l\\_8Ь\8b\6\d}\r','',0,'?'),(_binary '\\,o\!\zj\"\','wp-admin/css/edit.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_kMi10\)',_binary 'OA\)\Zb\\LE\y\\x\\ 5\S','',0,'?'),(_binary '6;I(\Hm\%\f','wp-admin/css/farbtastic-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\n\){\',_binary 'T=\Y#\\[vrH\iaR\\','',0,'?'),(_binary 'O\X\g]<f@','wp-admin/css/farbtastic-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S@\\[\\,\3|!',_binary 'Sm\'\;d`\eM\0i=\?>\\\?{','',0,'?'),(_binary '«\-j=uN\\q\'','wp-admin/css/farbtastic.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8)\}{Ch2U',_binary '|A\L\\Mb\xd8X\jX.\\^\n\Z','',0,'?'),(_binary 'KnҋD&sR\WU(','wp-admin/css/farbtastic.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\^:G(:k\n',_binary '47Vf\ \/\\\\\\DW3p','',0,'?'),(_binary 'OlqCcێ\\\\\\\\\','wp-admin/css/forms-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\Ύ{\q\,',_binary 'L\Ҽ\r\C\Zґ\%\\\(m\bK/','',0,'?'),(_binary '\{]\\ֵ	\\d\\','wp-admin/css/forms-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.9\B0c`!\\[?l',_binary '\E$L\\Rt8uj\\\\Vyr\|','',0,'?'),(_binary '\\(\\%#9yn','wp-admin/css/forms.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}P\*ƆUF',_binary '7,\\rG=σzb\)EoЃVHkd\','',0,'?'),(_binary 'łjDߋ.˖D','wp-admin/css/forms.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]wT7?7',_binary 'F~yd%\\_\CZ\\#ZѶ\rwT\\m\','',0,'?'),(_binary '\w9=_\"h%\v','wp-admin/css/install-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\}#Ta.u\',_binary '1\tIx\0|I(U\*>\O5\~\\Kj','',0,'?'),(_binary 'i-\X8V[~E','wp-admin/css/install-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\\P!-nl',_binary '|^r᪗\јD \^[h5\\\X\u','',0,'?'),(_binary '<9uj!$','wp-admin/css/install.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']Ou\\\O',_binary 'u?T=f\x $dbk./N*͎\i\\\','',0,'?'),(_binary '\\ʆ\\nD㮖\(','wp-admin/css/install.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\\;A#蛴j',_binary '\'d\Z{-&\E\\\ٰ[5m','',0,'?'),(_binary '\\'-\p\-\\f','wp-admin/css/l10n-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xmǏ|\s\A',_binary ']\%FL\\nI\L\l\\f426G\\\'','',0,'?'),(_binary 'vâ,\\+Q\\\\֧','wp-admin/css/l10n-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OSGfK罚8\\]',_binary 'd\x\k3rްVNĪet-\\','',0,'?'),(_binary '\\2Di\e','wp-admin/css/l10n.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ĸP)|\qr',_binary 'wppS\\"D.\oMOm\O\'b\aǋ0','',0,'?'),(_binary '\H\\4.\\\:\#\\','wp-admin/css/l10n.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+.\[H\rϬ.k/ ',_binary '\lg\\\\j-u\\\$?)\\y6@','',0,'?'),(_binary 'y%\\Ǻ~ne\"V','wp-admin/css/list-tables-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\@3-C',_binary 'c22Fz\P.ۧD9}e	Tgl.%','',0,'?'),(_binary 'F\%C\\0,','wp-admin/css/list-tables-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '12\\\q\r9',_binary '\"s\J\\D\«\3~ E1\q','',0,'?'),(_binary '|jx7\(Q}0\'\','wp-admin/css/list-tables.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JxRv$\H\\p\',_binary '\\\m\oEu3\\ѳr,(B\','',0,'?'),(_binary '\kLN\0\\x6@','wp-admin/css/list-tables.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\HSƯֹ<W]Yq\',_binary 'z_3=z\i\\\\\Ʉ\,@','',0,'?'),(_binary 'A{&\ V>\Νs','wp-admin/css/login-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L~b\fm\1M\\W-r',_binary 'Y\1O/\o\\"\48Gh\֞Bq\e','',0,'?'),(_binary 'h@Z\%R\F\;ti\\m','wp-admin/css/login-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\\>\zd	s_',_binary 'JV/T~#\sa\\{Ux.\7NV\n\[K','',0,'?'),(_binary '|jX\|\fb','wp-admin/css/login.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\L\;qs\n',_binary '\\\\\\S\\JIK\9\y\\\rb','',0,'?'),(_binary '`&锥~K3/d','wp-admin/css/login.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2|\n0\6s\Z',_binary 'ǬĶ\*\Z/7U(\wz;\dG!','',0,'?'),(_binary 'r\\n\b#\\','wp-admin/css/media-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fn`)\-<mG2T',_binary '\\\\'Z\\\\#\#/ov\\\\X6>u]\','',0,'?'),(_binary 'zݿ\&X❙6\s','wp-admin/css/media-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' f\\Mjmv\f',_binary 'C\?-LMq\2]Rgpv\\\)S\\\0Ѯ','',0,'?'),(_binary 'TDF\K1\','wp-admin/css/media.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\.ˣc=<ꑞn',_binary '5+\"\ݧ\i;䫩ܳ\	\{\LR','',0,'?'),(_binary '%\Pb.\8Gd\t\','wp-admin/css/media.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\kGBI0wG',_binary '\΢/Yt\\\c\c;,VH-\\','',0,'?'),(_binary '\Z\y8R#Oy\\','wp-admin/css/nav-menus-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\VT\$#%E',_binary '+8\Щ\\n\\mR\,ct\'jGU','',0,'?'),(_binary 'D 2K|&\','wp-admin/css/nav-menus-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R6\\	uS\!-\'',_binary 'puez.-\\_}7\\\ZAl\\','',0,'?'),(_binary 'qh\nJj','wp-admin/css/nav-menus.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cւ~O>\\n\p',_binary 'F8>_K	\\\\n%\OF$W܉ٰ䣩\','',0,'?'),(_binary 'ZWt\pNh','wp-admin/css/nav-menus.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\rĖ\\͹M',_binary 'i:ag\ r\\\"`z\0fE\','',0,'?'),(_binary 'Ph\\rV\','wp-admin/css/revisions-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o$o \|\{\Z\'',_binary 'jU\zM\\\\ɸg;ܲeg<1u`p','',0,'?'),(_binary '@\t\R>GHh\\ס','wp-admin/css/revisions-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!^#֜*X\!\4Q',_binary 'w/\,fЁu9\y\]\[tH6/','',0,'?'),(_binary ' a\"KwT\bc1S','wp-admin/css/revisions.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@t$`\j&\s',_binary '$bf\o\Q\tR+\Azz','',0,'?'),(_binary '\nGƙn\\\Z@1+U]','wp-admin/css/revisions.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ؾ\§Ae]E\\r\',_binary 'Ȟpf\\͑\(`^Ɣ4\\P7@','',0,'?'),(_binary '\r{\Zk\"k','wp-admin/css/site-health-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]\!S\\\猫\O\$\',_binary 'Wn}\\0ޗXyZ\\q\-e_~','',0,'?'),(_binary '\\6\ZfM\\;','wp-admin/css/site-health-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,	Qp\5\\n\\\',_binary 'GТEpg)Dr6\x\P5\E!^Jk','',0,'?'),(_binary 'b񪥲K\+xwF','wp-admin/css/site-health.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dr1\s\x0Zg\',_binary 'S\e²ⅼ\,r\\nWz{E!1\s','',0,'?'),(_binary '\v6^A\\A/],6\'y:','wp-admin/css/site-health.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\\0deqi2*urE',_binary 'q-<zBGN\BEHZi֪\n\OQޛu\a|K','',0,'?'),(_binary '\0r\H\"\YK]T','wp-admin/css/site-icon-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LDR\*',_binary 'Yin>j#\K\N%8TP\\O_\\,','',0,'?'),(_binary '\Q\Ws\A7d\n','wp-admin/css/site-icon-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`_?ބ=\|+d',_binary '\\\M\S\\>j/\"K%qޣ\~','',0,'?'),(_binary '\'=!Za\a\\\jU\Q','wp-admin/css/site-icon.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}E\p0lu',_binary 'i>Ӻ#&2Z\\'K(*\\\','',0,'?'),(_binary 'n&\\n!崬\','wp-admin/css/site-icon.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lˁx\J\TG',_binary '\+\\\W\V\\3(qF\\\r;|^\@\','',0,'?'),(_binary '\g~\w\Z\hh','wp-admin/css/themes-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\n\\(ʥX',_binary ',;݌8\\IAo\dћV\͍V\\','',0,'?'),(_binary '5At߂m0iz','wp-admin/css/themes-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	B\\􊠣-',_binary '̖N2\K\\@+\\ys&WTU$n6','',0,'?'),(_binary '\R\ш\޿0','wp-admin/css/themes.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\l\lM\Zcq=',_binary 'ãC\r4<S\sx\0\÷h\n17qm','',0,'?'),(_binary '\fSuB\ͥ?^yO','wp-admin/css/themes.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\X:7\󬺚v\\',_binary '#4\n\'\y\i`9t^ҠmS\`9;4\','',0,'?'),(_binary '3vU\Z3P\^O ','wp-admin/css/widgets-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\iY\\rG\\',_binary 'e99K5\\b\Yz.D\\h.)\\'93\Ox','',0,'?'),(_binary 'sEΞq\pB\\\','wp-admin/css/widgets-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'T1l\AU',_binary '.l4ZeI#m\EGC\','',0,'?'),(_binary '!HUN&\\"\z\\','wp-admin/css/widgets.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\QMQ=9}5GM)&\',_binary '1\\rϺL\%-\\\\\\|g 	\\\','',0,'?'),(_binary 'E}~\M\\-\]a','wp-admin/css/widgets.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\ܰ~!y\\\\na',_binary '.#\qe},\\-(\\\{\N\\h%','',0,'?'),(_binary '֗]NR\S{qv?','wp-admin/css/wp-admin-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',*i\\[p]<',_binary 'r5SE\?29/\)\_\PJvVh\\R','',0,'?'),(_binary '$(g(\P\\/','wp-admin/css/wp-admin-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GQ5\'EYo\0}\_\',_binary '0|TF\\\\O 	\.\\.>CEj','',0,'?'),(_binary 'd\4j\2U\V$\P','wp-admin/css/wp-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7#Q&M?»|\[',_binary 'Q\D\6hP\\\qqM9\FO\\\\O','',0,'?'),(_binary '\\j0\wE}®R','wp-admin/css/wp-admin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\UpʓHWtP!H',_binary '\^\\E-\R\'#?lemL0kU@','',0,'?'),(_binary '?0|\\\5uơ','wp-admin/custom-background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '㽫\]0m7\\\d',_binary 'Z5\"=\0\Tσqr/0\Q\X^dn6','',0,'?'),(_binary 'u\qg\Z\08hԭ\0\','wp-admin/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\y\\\&',_binary '\Θ\4\\C\w@Xdo\\N=w\\<~o\','',0,'?'),(_binary ';?2\\S\\0p','wp-admin/customize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\qN\\\pʟ',_binary '\of\=\0%ElM\*z\\	ē\','',0,'?'),(_binary '\p?E^@\'\PE\','wp-admin/edit-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ܯ+0;\\\>q',_binary '\Cņ\mQ_E|k!|\W1!','',0,'?'),(_binary '\\r\b\\\\ɍ\Z\\','wp-admin/edit-form-advanced.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9\2\0\00\8',_binary '~\\\@Փ\h \\\u\\\3\\i','',0,'?'),(_binary '5\92\^%<\','wp-admin/edit-form-blocks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C0\%I3',_binary '\]	\%c\y\ѣ]\Z4','',0,'?'),(_binary 'G7\Z\I&:\x','wp-admin/edit-form-comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<x<\6\B=L^W ',_binary 'i\2\Ւ 9K69\֦\x\\	PU','',0,'?'),(_binary '\nb-\V:|m','wp-admin/edit-link-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SZeq\i\[\\\rv',_binary '[\ϣb]\9\\\\|\ֲ*V\r\~\z\^','',0,'?'),(_binary '%\\\8^V<\t\','wp-admin/edit-tag-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YN\ \&Q@\|M\\',_binary 'V,Mfo \n\\\Si\\\j\\\w_y','',0,'?'),(_binary 'h\\)UG@\x\v	','wp-admin/edit-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'swQ*?:J<$v',_binary '7^\rM\iHVy,\-\Z\n\Lo\9Ukj\','',0,'?'),(_binary 'YLa\h\(','wp-admin/edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\I6$N.J\D?',_binary 'JP:\)\q\\V\}\nn\G\r\\','',0,'?'),(_binary '\\I7߇S\2&','wp-admin/erase-personal-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ASB9=1\~QD9U',_binary 'i\\\0\nT\i\VdM\۶kJXc_a>f','',0,'?'),(_binary '|-\\\z\-','wp-admin/export-personal-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ۤz_l\\>/U\',_binary 'ڈW!sL\I\8WZ\eC2\̔\\[n','',0,'?'),(_binary '\1|}\dQ','wp-admin/export.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ga\\\mUKPg\n',_binary '1<˖\\[-,Y\#P\K٘\ӑ	','',0,'?'),(_binary 'O\&\r蓏\ ','wp-admin/freedoms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\潳p\\ϵȻ',_binary '\"\Z2\\TtW\\[\\CO!#T\,\','',0,'?'),(_binary 'n{\҄:\P\\','wp-admin/images/about-header-about.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SZA`8f\\ծ',_binary '\\s;׸\';\'=Z8\{\Db\J8','',0,'?'),(_binary 'prY/i?\?\\','wp-admin/images/about-header-credits.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':L\ߡ՝.\\Ƈ>',_binary '\?\Δ-[91\"#G|h\H\ZK\Z>B','',0,'?'),(_binary '\=\\\\>\0U<n\','wp-admin/images/about-header-freedoms.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>X@d;3=',_binary 'AP\n֫Tbc)q8JzByd?\M','',0,'?'),(_binary '(Q\NE\y:B','wp-admin/images/about-header-privacy.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W&;,\I\\\',_binary '_\\09z\\\QT.ox\lIޝʄC','',0,'?'),(_binary '%|-\X\2`JV','wp-admin/images/about-texture.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G|\Z|\\\2rF',_binary 'v\Z|	7\-\\Z-\A}\0\\\\E\0\Z*0\','',0,'?'),(_binary '\\W\\\"\\Sk:\','wp-admin/images/align-center-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\r5*J7If',_binary '8tf\*Jw\T\^\\H\>\\\1\JD\ο','',0,'?'),(_binary '&*\\dĆָ	\H5','wp-admin/images/align-center.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\\Zݶ4y\dY1\e',_binary '\놽N3X!\\ljh`\\\hA]\J','',0,'?'),(_binary '\V9\K\\goX7\','wp-admin/images/align-left-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i8O\\^\c',_binary '$kb>\\\\k&:	ڂa7Zcdm%','',0,'?'),(_binary '\\mMt\WB','wp-admin/images/align-left.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\y0\d\Z\o.h\',_binary '\_]\<#S\\"B^U4_\Q<!@x?J$K\','',0,'?'),(_binary '\].\oo\ȦM-n	','wp-admin/images/align-none-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XC)[\-4',_binary 'ߧ&QQp\"~\\Z8S׊\\\Y\\\\S`','',0,'?'),(_binary 'MW	\:\\ي','wp-admin/images/align-none.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\eqd2\u\\\r',_binary 'g(1X\{ [].TA\\\','',0,'?'),(_binary 'v\G.\gA\\#\r\','wp-admin/images/align-right-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hl>r]lW\x',_binary 'V:\h\#ȆBT\5i\0?cBc\\\','',0,'?'),(_binary '\\tnRؔ\\\%^','wp-admin/images/align-right.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\\\Oe#\l@:P+\"v',_binary '\ɳ\C?\=\\&UyZ31!<c','',0,'?'),(_binary '[QH\"pS1Ȫ\c','wp-admin/images/arrows-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' Q\}\\ydb#6',_binary ',c˿\Zi(~\\\)\\'\8[A\/I\\x','',0,'?'),(_binary '\E#l\\L\_&ܪ\\','wp-admin/images/arrows.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v$\>\\\>Y',_binary 'YW(\N32U;\\\\\<.iDd!\\','',0,'?'),(_binary 'DS\\\3.įy}\;','wp-admin/images/browser-rtl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\"\ӠA\\Z%̝',_binary '+啧\\\0\\p\Ɯ\JMk q\wXب','',0,'?'),(_binary '\\\H\06','wp-admin/images/browser.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\\b$F',_binary '&$\ĉ9\\~_SH\_\̓\%L\'&','',0,'?'),(_binary 'G9q\\\=ʥ[3?a\','wp-admin/images/bubble_bg-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ϭqj\nX\<',_binary 'n%4\L\6{/Т[Ĭ?XW_A.r','',0,'?'),(_binary 'QuoPX\\\0Sڞ','wp-admin/images/bubble_bg.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\g<ć\I0',_binary '\'+u\W\`-A\\S\'}S~S\\b\','',0,'?'),(_binary '\\Lt593u^\\)\\','wp-admin/images/comment-grey-bubble-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TY\ŝ2s,\r\m',_binary 'D\xT-\\w\N	P{','',0,'?'),(_binary '\e\bWA0\d','wp-admin/images/comment-grey-bubble.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y*\'tF',_binary '7	y񮌬\\U{\ԟ\\`]m\','',0,'?'),(_binary '\I\\\j\x\\\g','wp-admin/images/date-button-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?a0\9JQ\Z',_binary '\*Q\\_(G:*\ηd\\\\\.','',0,'?'),(_binary '\a\\'@T瑓\\\','wp-admin/images/date-button.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v!0ϝ$\\n-潮L\\T',_binary 'h\ŵδ䘼\n$\\\\\q!I#','',0,'?'),(_binary '(\\s3TNo(','wp-admin/images/freedom-1.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XO\\w^Ȃe/e',_binary '\\Rz6\=y\\_\6Rj\l\T','',0,'?'),(_binary '\\ڤ& MKQ\o?','wp-admin/images/freedom-2.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\:Dw\\\8\',_binary 'H\_Y:\"8\0o_6\\&\ZYY','',0,'?'),(_binary '~*޿S̙e','wp-admin/images/freedom-3.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hTzCw5\6\ `',_binary '\\\|ˇ3\d\˪\|`ݢ7\r8\5','',0,'?'),(_binary '9\\4;J;\\u\~','wp-admin/images/freedom-4.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r[#\\jR]*\\',_binary '\-4\\\\&\o\sv/1\^+UsRM\n','',0,'?'),(_binary 'j%Mɍ\\p)Z\','wp-admin/images/generic.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'[#98!\',_binary '{u\\\K[g͆Ex\{:߼lͨG\','',0,'?'),(_binary '\\Z{g\?\3gڢ\Z','wp-admin/images/icons32-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%*\g',_binary '\#!$\\@\0g\.\;i3%!\cHP\=','',0,'?'),(_binary '\&N\,\\6P','wp-admin/images/icons32-vs-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*04G4F	&Zi}\"',_binary '\.a}hw\6WEʭ(3\Jӭ9\E\','',0,'?'),(_binary 'L U\f\u\<','wp-admin/images/icons32-vs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\P*\\\{>vUf',_binary '\?Uz\P\\\@`8g;\rE','',0,'?'),(_binary '\1WV(26','wp-admin/images/icons32.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\۬[\m9\J4\\Z\',_binary 'D\kCd\i|a|\\\+\\rx̌\','',0,'?'),(_binary 'L\\8\\\\\ݼ+','wp-admin/images/imgedit-icons-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\\\'6U\\\t',_binary '?\؎).l\\\%<(_\ 6`^c7','',0,'?'),(_binary '{\?\\\\r\\n\'','wp-admin/images/imgedit-icons.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\\\2\\}Gi;O',_binary 'T\N\~\\-\@\N\̞V\\\(u$\\','',0,'?'),(_binary '4ge\\\>\\ߝ','wp-admin/images/list-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hջIS\2\ig',_binary '\Jp\S_\\X\\#UB\-z\\\,\','',0,'?'),(_binary '\Z\nu\oK T;e','wp-admin/images/list.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>*\ӳ\S\\',_binary '\\wT[=baCk;c','',0,'?'),(_binary ')M\\^\ûoz\','wp-admin/images/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@לx>c\¢',_binary '\<\0ЅҩهqU%\G\7r\\\*2J','',0,'?'),(_binary '\0\%3[$x\0\\.(','wp-admin/images/marker.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\*O2/\3I2\',_binary '~T@\\vUI<\pK\\\\a`T@c\\ca','',0,'?'),(_binary '@\;5X\\VO\Z','wp-admin/images/mask.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\g~\"\\J\䩎',_binary '\\/<s\ԡ\)\\'.1jknK9Q\\\','',0,'?'),(_binary '@\sZ\^\\qv','wp-admin/images/media-button-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\WI\\\\?\\',_binary '<\:\tnkb\wi\&\	\\R\\\Z','',0,'?'),(_binary '1\EfQv#)\\n\0EkQ','wp-admin/images/media-button-image.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\m	\'\\A',_binary 'iķ\z[\/\"\ X\\{\o\:','',0,'?'),(_binary 'a\\c,I\"5T\#̋','wp-admin/images/media-button-music.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4^&$o\\uf&\',_binary '\wWd¼8PF6\A\\ܴto-\\X\\a$','',0,'?'),(_binary 'NQ\"*hzr\w|\Z','wp-admin/images/media-button-other.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q&T^]BBg\'\',_binary 'B\Z\rFВ\Pv-^fT,\_\\i','',0,'?'),(_binary ')z]!?a','wp-admin/images/media-button-video.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\>\uew\J',_binary 'Ye\\"n+\#@\ƼZ\g\VP\\'','',0,'?'),(_binary 'a)TMW\OoQ|\','wp-admin/images/media-button.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\6@p\z^ye\\',_binary '_\Z\\SjזY \\\VZ\Gen\_','',0,'?'),(_binary '\"N߬jj)\0N','wp-admin/images/menu-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jG\\{>^;$\',_binary '2]y\\#h\\2\9> ^s\rH\	\n\\g\','',0,'?'),(_binary '* a\F\\4u\vU','wp-admin/images/menu-vs-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JZY<\i\Yb',_binary '\'F\\єE\0\\\7ɡ#\>sePض','',0,'?'),(_binary 't]ٟu\\u\\j','wp-admin/images/menu-vs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\L\,_;1/\E',_binary 'GiH|\)E;\"_\;ԣ4Իwly','',0,'?'),(_binary '@XD\n\\nRNt\\\','wp-admin/images/menu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r9#d\Y`	',_binary '\l\IE/(p\0\pn\T-Oz\"],=`\','',0,'?'),(_binary '\F \8\+)\\r\P\','wp-admin/images/no.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\kd\$ܟV7\',_binary '\n\>\\~h\Z\\P\0U0\;\' {\)	>','',0,'?'),(_binary '\+DFܿTZ[H7','wp-admin/images/post-formats-vs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sl\H\\\',_binary 'etw|W{xy%K:QE7\\\','',0,'?'),(_binary '\\0וoxi3%\r+]kg','wp-admin/images/post-formats.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K\\\0\\%3\',_binary '9ƺ&\]nEua]iF\\\\Ƴ\','',0,'?'),(_binary 'n]j7<3ISsQ\','wp-admin/images/post-formats32-vs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't.E\5GN\Z\v',_binary '(Z,\ImY,·ԗ\\tGa','',0,'?'),(_binary '\œϔ\=#6','wp-admin/images/post-formats32.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WY~O{\+_LkE;',_binary 'k<8._D\K\G[5e-I(0w\h','',0,'?'),(_binary '`N2Eﾮ\\pC\','wp-admin/images/privacy.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\W(*/\E;G{',_binary ';n0|:\\\\,2\X6VB5yQ','',0,'?'),(_binary '\?{o_\'n\','wp-admin/images/resize-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{3VV\FVf\%K',_binary '懴y2qZ\o~([`\0`Ci\ZL\'','',0,'?'),(_binary '3!9\=\6ݡ','wp-admin/images/resize-rtl-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M\\M\H\!YA',_binary '2\m\o\\{|ny˃4(\φ\=','',0,'?'),(_binary 'I\{?r\]7','wp-admin/images/resize-rtl.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nC%Y\fvF.z',_binary '@St-]\z\'+k2\{\j\,\QN~)\	>','',0,'?'),(_binary '~?JI\b*׺\e\C','wp-admin/images/resize.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\lN\\\',_binary '6󀏸\\&?\5\?sqGM`P;','',0,'?'),(_binary '\nfY4&L\','wp-admin/images/se.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ȔB\`\.}\'7:',_binary 'Y\\\"K\{U\r:2JL\','',0,'?'),(_binary 'X:8+˓2>V]\8\','wp-admin/images/sort-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aìk\:bтvFj',_binary '\'aK\\0tGJBqXW*(J|1\z[(','',0,'?'),(_binary '\[65+\	\n9\','wp-admin/images/sort.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\* \\3',_binary 'vP-~xO\"	\\\\;\','',0,'?'),(_binary 'J&_#\3S\q','wp-admin/images/spinner-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\2^#\8\',_binary '\#˒\=$c6\\\\	B46','',0,'?'),(_binary '\f\i`=@T\o\','wp-admin/images/spinner.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L\\nD\n\oً\j˲',_binary 'zƄ\\Z\"n\Zs(\U/~\7F^\','',0,'?'),(_binary 'P\1$\\\*\C','wp-admin/images/stars-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\A#\SMe.^',_binary '[\耿_(\rh\\YT\\qZ\','',0,'?'),(_binary '\F\j!Y\{.J=,','wp-admin/images/stars.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\><\k{\\(',_binary '/	\\\"\Fa챔<SY\\g\\؉F\@','',0,'?'),(_binary 'VrmKEpj\\6','wp-admin/images/w-logo-blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[NW\_p\w0',_binary 'ޣ^Qt\3\HunU❻\\~\'T2','',0,'?'),(_binary 'Jf3?\_r\C','wp-admin/images/w-logo-white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\Jvۢ~y\\',_binary 'nD _\;\!GםcV0M9i\=','',0,'?'),(_binary '\+\g\\q6^\0\','wp-admin/images/wheel.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E0 q0m\\ZY%VX',_binary '(]:=d\qۅO{9ԀvȘ~\\','',0,'?'),(_binary '%\\\\MA\\\','wp-admin/images/wordpress-logo-white.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\qPC-SPD\\',_binary 'e4\E\?&\DsA\\ʬ;)@Xɒ','',0,'?'),(_binary 'tZQYz0\跫','wp-admin/images/wordpress-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ưy\o\8\\8S`',_binary 'bx\LPͰ\\=^\\\a\m\\\1i\','',0,'?'),(_binary '\c\"ml Ǟ>o','wp-admin/images/wordpress-logo.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\N\%d\\\g\\\p',_binary '\\"u\j-QE\0\[\gL\Z5\MD:','',0,'?'),(_binary '\ں\uM\\[\r','wp-admin/images/wpspin_light-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mS\\y\"C\\',_binary '66SX6O}\4>p\"\\'1','',0,'?'),(_binary '\"w%\_K\\\u\','wp-admin/images/wpspin_light.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hku\R\r@9k\\',_binary '\!\Fױ\\(#\\1:\','',0,'?'),(_binary '<l\a,bX,','wp-admin/images/xit-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ӂ\u:@4\r\\z<5\',_binary 'S\r\}@~Q\:Sc\*d+\Z\_{R','',0,'?'),(_binary 'm\z4\L\K','wp-admin/images/xit.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	3Xī9+\6n~',_binary '\ s\\ۨS,md\\\YbƇ\\o','',0,'?'),(_binary '\M&3\r\3CMaQ{','wp-admin/images/yes.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+7܉\rqZ\Qk',_binary '=\Q\\G\\\9%K\\,\\r\ZF\y\\','',0,'?'),(_binary '\TV\\\\','wp-admin/import.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\U\0apXƺ\F',_binary 'E\Y8rϞbB$\\y#','',0,'?'),(_binary 'ĳJ\\n`|\5,HT\','wp-admin/includes/admin-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƸJҐ\\F0\',_binary '\r&\+;U(x\w\}\J\-\U','',0,'?'),(_binary 'D\\\)ba\k\\{\\','wp-admin/includes/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\'\\np\Z\,\v',_binary 'k_DRH{\\\0#\6Z~\}\\\\u\\V','',0,'?'),(_binary 'Ҫ*\\H\n;t','wp-admin/includes/ajax-actions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y,<>\\\',_binary '\P:\n{T\9Vh_;\ZK\"\:\@\\\7\','',0,'?'),(_binary 'ΝH*\*.ځS','wp-admin/includes/bookmark.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F`W3\U\\H',_binary 'ߘ\\c.5%iIA4Zz5I\\}','',0,'?'),(_binary '\"\wh\','wp-admin/includes/class-automatic-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9C|\',_binary '\v\Z\\K\'Em\"\ja;\u\.6\}','',0,'?'),(_binary 'n\к\vnj=ͮ','wp-admin/includes/class-bulk-plugin-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6/M<ϋvk5',_binary '\sq<\$wtҪkԇ6KL\','',0,'?'),(_binary ' \'\\_U;0/<\','wp-admin/includes/class-bulk-theme-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\:y\x1s)',_binary 'Ϲ\\ݶ1SXCTڼ<\ڊh`\\V','',0,'?'),(_binary 'W7{(;:P?','wp-admin/includes/class-bulk-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!z\-^:\\п$\',_binary '4a]\\\ds\'	Txn\"\aݻ\','',0,'?'),(_binary '\j\\U\U\X\Z\\/J/','wp-admin/includes/class-core-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'de\\\ps\J\',_binary '\L?<#p_\\4i4É\5\V\\\\'','',0,'?'),(_binary 'ɡʧ~.)k','wp-admin/includes/class-custom-background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ IZFއ\',_binary 'g?ef\Q\\/8\ZU컳UP;','',0,'?'),(_binary '\nj\P+','wp-admin/includes/class-custom-image-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\'=WQu\\\\',_binary '\(1Χ\ds2\r\sr74\2nVS}\','',0,'?'),(_binary '\M\0\\\c\_d\','wp-admin/includes/class-file-upload-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\;>\x\Zs\6',_binary '[\"o^\.q`Oצv\<\Q+FM\4','',0,'?'),(_binary ':8\Ia\øl\m','wp-admin/includes/class-ftp-pure.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T&}\\\3\\J \0',_binary '\nS\{U\\Cdz$y\\\a|8\[','',0,'?'),(_binary 'afh=F\\T\:6','wp-admin/includes/class-ftp-sockets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\\"Pe<3i',_binary '.\Z\D\-\\\\ày!\\\̕l\','',0,'?'),(_binary '\\rp.u3zx','wp-admin/includes/class-ftp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\c\Z*l3\\$\',_binary 'B1ô\	ͥ5 Q\\\\9\J','',0,'?'),(_binary ':\X@\0{*\֯','wp-admin/includes/class-language-pack-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm/\Q%\@\,)l\Z',_binary 'A\VE]{\Q!\\\\T\Í\\\6e[{.','',0,'?'),(_binary 'g\~)~sʞI','wp-admin/includes/class-language-pack-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6d,8E\',_binary '\GymT\8=\?5\ \5\\y\.','',0,'?'),(_binary '\\"\ơ7vs+\','wp-admin/includes/class-pclzip.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\Ah8L\XdTa\',_binary '8D.u+h8Ҳž,\Wڝ\\\O','',0,'?'),(_binary 'W&\ִ )+\ڱ\\','wp-admin/includes/class-plugin-installer-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\2cً\\"\'',_binary 'h\)\\\Eюw0@$,\0\3~\Y\0]=','',0,'?'),(_binary 'h/͔jC\\0\n','wp-admin/includes/class-plugin-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[pT\0$\.',_binary '?t\D~#͘/X#G/\\Nf\\͜gN','',0,'?'),(_binary 'v)F\~q?b','wp-admin/includes/class-plugin-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2WN0\Cz\vf',_binary '_+YD\>\Ϡ_Ӆ\\\{\'Zs\\\d','',0,'?'),(_binary 's\IqF','wp-admin/includes/class-theme-installer-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^wwy	\\\c_',_binary ',,->\LI<]2\N2\f\\<','',0,'?'),(_binary 'H`\\\ \rY\C','wp-admin/includes/class-theme-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eȣ\\0\O)l+',_binary 'u\\Su\\\iDp,\\CM5\','',0,'?'),(_binary '3\\aDwP\q','wp-admin/includes/class-theme-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lVCd_\,|\W/',_binary '\\ͱ\\`:~\\\Oǅ\䢸w','',0,'?'),(_binary '{y\"ҵ\ݩ{','wp-admin/includes/class-walker-category-checklist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˕5T\\>c',_binary '3mط&7\8m\Ӓ\x+\8ʽ{d\k\\','',0,'?'),(_binary 'Qs|\cL؜VH)','wp-admin/includes/class-walker-nav-menu-checklist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ǜR\۬eao2)Z',_binary 'H\rh\M`/4\5\0V>5\UB\*','',0,'?'),(_binary 'ر-_}Zh\\n\Z','wp-admin/includes/class-walker-nav-menu-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V&]Cm]c\h,0',_binary 'R\:\\\\a\\B_4\/\\j\n','',0,'?'),(_binary '!\\y\F]\\\','wp-admin/includes/class-wp-ajax-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k!a.\\.urd',_binary '\V~BN>z\j\\炕\npsL\i ]2\','',0,'?'),(_binary '\I\	Ja~RZ','wp-admin/includes/class-wp-application-passwords-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ţ\{\LlF\\',_binary 'ۖ-<ύ\C\"(Q\,HnC\\8\','',0,'?'),(_binary 'Z\\ZaYH\0 5\~ ','wp-admin/includes/class-wp-automatic-updater.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6\$\l侸mV',_binary ',]Vs\}MCn#E0fKcN\:\\\','',0,'?'),(_binary '\\Ye.\0s','wp-admin/includes/class-wp-comments-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')x\&\݃ReɃvd',_binary '~лf\\H־KpA\>\\\Zq{F','',0,'?'),(_binary '\&/dbd\q2/','wp-admin/includes/class-wp-community-events.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\0-Q}/Y\F\0',_binary 'x\?\"K\5ag\{p̬yˌ\F\2','',0,'?'),(_binary 'X\TCW_^og\\','wp-admin/includes/class-wp-debug-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\f\Z\0%\n',_binary '\\PZʟ}Me`Au\b	Z\\	','',0,'?'),(_binary '\%\f\\+,\\\0\\Y','wp-admin/includes/class-wp-filesystem-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sBSІX\=',_binary '\\\\\< ~R}u8\\nNE\#','',0,'?'),(_binary '\hFM<@`%q-\\','wp-admin/includes/class-wp-filesystem-direct.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qyE\hlG뭝l(',_binary '[\\Jmn,!\n\\r\bٶH\I_','',0,'?'),(_binary '6̠,\_\q\\u','wp-admin/includes/class-wp-filesystem-ftpext.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^xTSUeۘev\{-',_binary '\ؤW\\\z\\D?\wD\n7e','',0,'?'),(_binary '\PQE|E}7+','wp-admin/includes/class-wp-filesystem-ftpsockets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\']zz4B:\\\',_binary 'bV\=\"\\\\%ėuS\\`+Ge(A','',0,'?'),(_binary '\j(g~jU#\','wp-admin/includes/class-wp-filesystem-ssh2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;\\&4e\7\%\',_binary 'X#ze}gSnS\yOB	\\K\\\"\','',0,'?'),(_binary 'v]z\\\\3tB','wp-admin/includes/class-wp-importer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5V9s^zP\F',_binary 'ix;B4\?d\\\esqF>\','',0,'?'),(_binary '\vA\nGr\3C9`','wp-admin/includes/class-wp-internal-pointers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ku\\4V\p\J',_binary 'Ƿ梟\7[~ہ\rNLVP\\qC^Mܯ{','',0,'?'),(_binary '_\(\C\M69\','wp-admin/includes/class-wp-links-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\\\\:xulQ\',_binary 'u\\ӫ@\aB\\e4\\b$\\6','',0,'?'),(_binary 'UdM\S$l','wp-admin/includes/class-wp-list-table-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}>\r_D\"\Ck\\C',_binary '\\;]\"(+/\\}˚q5\\NS\'','',0,'?'),(_binary 'O	\S\#\Yi\v','wp-admin/includes/class-wp-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\]\"\SF',_binary 'J`!1Ϲ\X\\L1\\8\(㔫q\|\}','',0,'?'),(_binary 'Vb(ktW\"\6(;ƴ','wp-admin/includes/class-wp-media-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\،w\\\r>',_binary '$\ZX\/B\yEQlfa\RPldoe@ ','',0,'?'),(_binary '\\\sp\\e','wp-admin/includes/class-wp-ms-sites-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̲\õ_%9\\0',_binary 'I*\z ;τ\0mr@Dh\"\U','',0,'?'),(_binary '\w\\\V\\!\','wp-admin/includes/class-wp-ms-themes-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\G[q\مXY\\',_binary '\\\\\n\n>LXz욶`\\ВcA\h\n\jd','',0,'?'),(_binary 'i)33ܥ\\s\*','wp-admin/includes/class-wp-ms-users-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=ہڙM\̤\YL',_binary '\r22z;C?V#bL\r>X2\~Jn3y\','',0,'?'),(_binary 'e.PȴNBSx[\&','wp-admin/includes/class-wp-plugin-install-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\xq\7Of\',_binary 'ܼ\Kf࿚NpmW0IF5\\\06','',0,'?'),(_binary '[:q','wp-admin/includes/class-wp-plugins-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\VOQʗ\\',_binary '@͠ۿv\\r\lMTR\fIj4c\WY;E','',0,'?'),(_binary 'c4L]\˞Mc','wp-admin/includes/class-wp-post-comments-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@dB#&&',_binary '{\bk\\r\\}\	{=\\\\\=6\`l\	','',0,'?'),(_binary '\Gȩ\\6\\0Y','wp-admin/includes/class-wp-posts-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\\\\X;\:̿\\',_binary '\Y\\֑@j>[T\9\A_\'J3\rsO','',0,'?'),(_binary 'S\\q\`M\','wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڡq1b4\	G*',_binary '{U%\Hv\3\)|w-L&\\.䌩','',0,'?'),(_binary ')`\f,u4','wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X D2%l#b/W',_binary 'ջR\\0\\\0\\iH//\\w\\0\','',0,'?'),(_binary '\5f\oޮ\','wp-admin/includes/class-wp-privacy-policy-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\gax\nC\"\\\-1\',_binary '\NToy%	5\Zx3\ŧk\(k4*׭\&\','',0,'?'),(_binary 'fG<@៝N\-','wp-admin/includes/class-wp-privacy-requests-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V?\76\\\ҿ',_binary '~:88S*.\\\rnhbDe\\+K\0','',0,'?'),(_binary 'TM\\\\l\\\\','wp-admin/includes/class-wp-screen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"CRu\w\3bധ\',_binary 'fv\\`\)Y\!E!Q/=n','',0,'?'),(_binary '%\\9\\\\ދ','wp-admin/includes/class-wp-site-health-auto-updates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VQ\qc:Mk\]',_binary '\\#\I)\oUQi\\1pivDWJH*\\','',0,'?'),(_binary 'u1HM:E7/{','wp-admin/includes/class-wp-site-health.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\i\߮m9E 3:d',_binary 'D`\:aӳ\xt\\8~Aݣ\\\%=(\','',0,'?'),(_binary '\'Mw񑍷\\\rKj','wp-admin/includes/class-wp-site-icon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\W~\0d\y',_binary '_9\\%7\N׌[\"\m;Xi:RG\x^q]','',0,'?'),(_binary 'L#\/۰*\3\\\\r','wp-admin/includes/class-wp-terms-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\;I%8)(\Nj\h',_binary '7~Cquk\\)jp\\A\C\]#½','',0,'?'),(_binary '\"ڕK[@G\\\9','wp-admin/includes/class-wp-theme-install-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ўX=y\\2\;',_binary '\"j79L\pr(\LjE{~','',0,'?'),(_binary '\"IFn@\a\}9','wp-admin/includes/class-wp-themes-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o6n+66n\\',_binary '\\AY\Q\ۂ|\?X\ n\Z\\P3L','',0,'?'),(_binary '\=@\\\JpQ\m\\6','wp-admin/includes/class-wp-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\"\lDysB\',_binary ':6\|OH\\s\R\bU\\}\m͵','',0,'?'),(_binary 'z\\\JX\w{!\rF','wp-admin/includes/class-wp-upgrader-skins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\"\ґ\-щ',_binary '.7j3?̶\\·?2UE.G\W','',0,'?'),(_binary 'X\\\G\\zX','wp-admin/includes/class-wp-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&B&\(\2\L',_binary '\'c\\od\S%\\\0\_!UC^>','',0,'?'),(_binary '\\x8[!>\X','wp-admin/includes/class-wp-users-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SzS`4u',_binary 'Z\\\MRI\\Vf)MP\rځZ-Y\'','',0,'?'),(_binary '|\&;rLs5','wp-admin/includes/comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\U\\2񎆷\',_binary 'y\Ԫ٪>tPn\ΞX!\'\˕?\\A\\E','',0,'?'),(_binary '3koW5	k[mq','wp-admin/includes/continents-cities.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pg\Z*\Z\0H4|',_binary '\r}\n\wu\Z2\}KX\/','',0,'?'),(_binary '\<	\f%\nO','wp-admin/includes/credits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8[X{˓\\rW\'',_binary 'MWiEnRQ~*g2|=\\%\7:','',0,'?'),(_binary '\\т?$̈́8\','wp-admin/includes/dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n,\\\'A',_binary '\yAaQ0\;Gi\@\χON\Np','',0,'?'),(_binary '\?\E_\)xڅ$','wp-admin/includes/deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's0\"=Ө%\>',_binary 'k\I\H\'\'\y\\ Ȯ\\u#\','',0,'?'),(_binary '\x[\e\>M','wp-admin/includes/edit-tag-messages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.j\A8\r\Uq',_binary '?uZv*\32;h$,\rME\~\\','',0,'?'),(_binary '>A\B\7\Sz!e','wp-admin/includes/export.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\H?iVJŰ',_binary '^\AGx\z\<IK=\H','',0,'?'),(_binary 'QT\\*f\P\.','wp-admin/includes/file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\BܱioFC',_binary '\q}\\/\\0ߨ<c\\kdqs\X3y','',0,'?'),(_binary '7\E#wŧj','wp-admin/includes/image-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\e	9U\~z',_binary '	\?#س\~;\w\Xs@i+?Oi$%','',0,'?'),(_binary '\0\|9\\ue\\\@','wp-admin/includes/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' >=E8\ӜN\\',_binary '\h4R\\ilҹ.\Z^\\<\\'\8','',0,'?'),(_binary '\Ah)I\Z]Gr\\E','wp-admin/includes/import.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\&m|<\(`\',_binary '6\r6\r@\u<\z(\_\\\\0v\*','',0,'?'),(_binary 'c\wk(43\','wp-admin/includes/list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\3|\ca\\',_binary 'bF|{s4s.& ;\r^\\f','',0,'?'),(_binary 'R\=\*\d\\n','wp-admin/includes/media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[gKb0V\Nl\t\',_binary '?U\$b\ʀ\\0\b[u\JFG','',0,'?'),(_binary '\nqo\qZVyX9','wp-admin/includes/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#&\9hE\p6',_binary 'Ǫ\sE\'\\\\l\D)i$\q','',0,'?'),(_binary 'Hý\\i\ZU,HL','wp-admin/includes/meta-boxes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vuMz\\y\p',_binary '^\\\0GP۶Ո\"\ZHX)\Z\f','',0,'?'),(_binary '1\eUMV^','wp-admin/includes/misc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~a	\h`Bh',_binary '\;\tϩ\"6\\@\7);#\$-k','',0,'?'),(_binary 'j\<MDd\4m','wp-admin/includes/ms-admin-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\;\Ƽz\gL',_binary '\t\Mp\\Q\8=\\~bw\\\\/','',0,'?'),(_binary '7*\"{\\\nK<','wp-admin/includes/ms-deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lt{0o\ޖ',_binary '7<NoQF\\0\$jaϤ m\\\ri\','',0,'?'),(_binary 'f霰f؟|hUL','wp-admin/includes/ms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\!<(\q\x\Z\'',_binary 'ra\+\ȫ/ỷH␒Χ\@Bh\\=','',0,'?'),(_binary '(љ\\\0H<_','wp-admin/includes/nav-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{\8|NK(\:2j',_binary '\ni\{J\~d\\H\\ّ\\n\yo\g\','',0,'?'),(_binary 'V׀\\\'hĈ+:','wp-admin/includes/network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŋFz,|<@$',_binary '7Z\-\\S\\#v>\(M1Î\','',0,'?'),(_binary 'w\`M\\>\{\','wp-admin/includes/noop.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\qj\\\Z!\\r:',_binary 'dˎJ\\P[\n=QcP\','',0,'?'),(_binary ';pR9+\qpծ','wp-admin/includes/options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p;\"Ћ\',_binary 'YX\i4+\\rA\S\F/\\R\~\\_','',0,'?'),(_binary 'R|Rx/\bzn9\0*\J','wp-admin/includes/plugin-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\D\\}D*\\&T',_binary 'ף\\îfǤ=\\F\\=\-\\0|q','',0,'?'),(_binary 'q\"co\\>2Rh\]','wp-admin/includes/plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\h4\N\Zm\>V',_binary 'EY\S\sL@Wx\MqYW\ٌ[>','',0,'?'),(_binary '\\\5\V\"\$$\_','wp-admin/includes/post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w#]fNC\\0',_binary 'Å\m</B\\7腩Я\w\)Ym3','',0,'?'),(_binary '\-.xɤ\R\','wp-admin/includes/privacy-tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ck.Ũv\:\\\',_binary 'P\ZGD\0\Y\\-crU\J{e7B\\','',0,'?'),(_binary 'x^m\]̲/\\L4vU','wp-admin/includes/revision.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?c\CR\U\\',_binary '\v\Ӏ\\r\D:9\3\9mUmh:lV','',0,'?'),(_binary 'ǫ\=\\m/\^','wp-admin/includes/schema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nS\\\V\\"tW',_binary '\w1T9q\\0N>Oۖ\xg:yB+','',0,'?'),(_binary '(\v|T— ¥\','wp-admin/includes/screen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N6\'8;ڇ믍V1\',_binary '\oYH4	lY1YG\H\tmSZ/)\"','',0,'?'),(_binary 'Z\\\ %/Zz9\','wp-admin/includes/taxonomy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=VR<`\&!QJ\',_binary '#UiSus\\no\Hݨt\pa(f','',0,'?'),(_binary '2@\j\j\0kӲӘ','wp-admin/includes/template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,\F6\\',_binary '4\W%r\J\\n\'\ԇ)Pb\TN','',0,'?'),(_binary '~\L\\*\,\<:','wp-admin/includes/theme-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y\\\Ę ',_binary '\O\ \n\uO\nd7K[\"}\\7\'p\\\`\`','',0,'?'),(_binary '\]\W/>\}<8\ VF\','wp-admin/includes/theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c)\0A	\n&,uAi',_binary 'A4\\r\\\QRey0\\C\.\\!\t	','',0,'?'),(_binary '8R6\DHq-{:`','wp-admin/includes/translation-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!>D\glM\<mg\',_binary '\r[\8*\5n݊\Pc\\\^8d%?f','',0,'?'),(_binary '\\Uy/*%\;','wp-admin/includes/update-core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n\X]\܉3L',_binary '\^J\ь-1QiB\d[>','',0,'?'),(_binary ']\.\1\rPXL','wp-admin/includes/update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!Z2\r\fB~',_binary 'w\}\\u:)Ȇ\ex\`g\\ub','',0,'?'),(_binary '\\=\c\ه\','wp-admin/includes/upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[V\T$v\F\',_binary '\'؃!\y`d㮤oA.\\LK~@#','',0,'?'),(_binary 'Q \(;ؠ|~R8b','wp-admin/includes/user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*b1\Gڥ\v\',_binary '\ck\yq`o\\f~a\,3','',0,'?'),(_binary '\I\\\.$U0]\'S_','wp-admin/includes/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ߕ-\I\_\'yW',_binary 'έd\"\\^b\0g\\TD7\B\k4\i\:\\','',0,'?'),(_binary 'Ѻ\"\P5\\^U\Zi','wp-admin/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Fً\M\Y#uͳ',_binary '[\;2;\2⻖dq~\z\Z\\7ևH\W','',0,'?'),(_binary 'Bj)\\qDS','wp-admin/install-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\Aoq+C2Xd\\',_binary '\W>;\%֏6s\%T\\v\\#o(ʓ','',0,'?'),(_binary '6|;;8\Q4k\','wp-admin/install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o^|1\ޭ\a9 ',_binary '@,oGARԊe\n\\Z\\1=','',0,'?'),(_binary 'z;j2WD6[V','wp-admin/js/accordion.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' -)\@O(\\b',_binary '1\iLOUm\r[X\\\00\\\EB\-','',0,'?'),(_binary '\^.jT}<\I','wp-admin/js/accordion.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\ \R׌qA\\',_binary 'u\j\h&Q\'+\Gҗ*!91$W\m','',0,'?'),(_binary 'Rb:ZK\L','wp-admin/js/application-passwords.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'An\\f.t7Ht',_binary '\E\0\D.\<\'\\iZAƬ4n\\','',0,'?'),(_binary '\rUj\zh2/\9fM','wp-admin/js/application-passwords.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-:\28R@I}',_binary 'S:\M;C\0<{Q\55C','',0,'?'),(_binary 'Θ\r(Ł\\ ','wp-admin/js/auth-app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\\LP\\\S[f\',_binary 'F@H8\݇\7an#{\\\j','',0,'?'),(_binary 'tS\"\\lZ\c\\Q','wp-admin/js/auth-app.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qi\~[|\rS',_binary 'A|f\K\\ZF|\eɠL\eܬ49','',0,'?'),(_binary '\\fp\\0!tDK','wp-admin/js/code-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\N\'߽	%\\',_binary '\-Bd/\`\\\V\x6Y*\\-$\\W','',0,'?'),(_binary '|\ 4\x\\\\\M\n','wp-admin/js/code-editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D&fAДE~',_binary '{\h;[\5\0`	Vz\\Kd^,h','',0,'?'),(_binary '5\\\r\k\\','wp-admin/js/color-picker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_;\Z\\5\',_binary '\nm\\m^G&%\0\SKmY2p\\\#','',0,'?'),(_binary '\\H\\\l\{!D#!','wp-admin/js/color-picker.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ri)]f\m+e\',_binary 'i16:\\	n\s!\F\nA\R6/NE','',0,'?'),(_binary 'C\/;)ّ\o','wp-admin/js/comment.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\\'v\\\t\'\ӵ',_binary 'ku0\\\V\{0wZN%Y-)\\\\^`','',0,'?'),(_binary 'Q\\l\g-\\','wp-admin/js/comment.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\t\(-\\py\r',_binary '޳Ȋ\;|X1Ij6g[5\','',0,'?'),(_binary 'w\\\\:}VP','wp-admin/js/common.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C*\\!n\',_binary '^;:\ݸLKv{Eh\\F_\S\5<z','',0,'?'),(_binary '\\\_f $O<o','wp-admin/js/common.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ra2!',_binary '*\I\MP%0iT\0sRs\o/E','',0,'?'),(_binary 'd\\1\쵓-;O\','wp-admin/js/custom-background.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P\A3\ K\}Û$',_binary '4hN\n\\:Q\qX\z!\\iq^sYĄ\,i','',0,'?'),(_binary '} yT\Z\HcDJ','wp-admin/js/custom-background.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|+T\GTt\\0',_binary '\rB~<W59[;]\ޓ5S\\D\\','',0,'?'),(_binary '\\C\n\U','wp-admin/js/custom-header.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݎ\\Z\\Zڸ\\\',_binary '\vN;d\V\\5dt,\','',0,'?'),(_binary 'nvpe\\\\\}\','wp-admin/js/customize-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2v|*\댦}\\	\\',_binary 'i\\1,\\\!ѳ~z\Z\-#\','',0,'?'),(_binary 'dA#\\*\Źo7','wp-admin/js/customize-controls.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#5\\n[=',_binary '\؉xMɕLoDЈ[\qƜQ\','',0,'?'),(_binary ':D\J$\hǅ\r\','wp-admin/js/customize-nav-menus.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o\E߭WuaIo|k',_binary 'R\/gO<\\$\\\]$\.\[i\','',0,'?'),(_binary 'HGh\'\xR~\n','wp-admin/js/customize-nav-menus.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \n7MXr\xT\\n3',_binary '\rl\\b,\l*ẜ\"[8 /K0:*g','',0,'?'),(_binary ')[\"JH\|\jk$','wp-admin/js/customize-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0؛\;q\',_binary '[\'0y\\\W\x\\p*-t-Id','',0,'?'),(_binary 'fMx	\+9U','wp-admin/js/customize-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oj|tֻuiB\"Y\',_binary '`\\צnGpkI~\ZKI\"	\5\"f\*','',0,'?'),(_binary '\\ĸ:\,p1\Hr','wp-admin/js/dashboard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4v\[r\(\',_binary '2̇!UJ\;\D<s˕GV\-\x)','',0,'?'),(_binary '\\\\zpKC{\\>\','wp-admin/js/dashboard.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'klQ,bh\n\3\Ua',_binary '\\\3Sю\rLG \g&/!/\]ݣ\','',0,'?'),(_binary '`%ֽ\j\'\P','wp-admin/js/edit-comments.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\\\e\n\t',_binary 'ǖ$ªrO$w\0\rȕKd\71\\','',0,'?'),(_binary 'F\\'B/\4{J\{w','wp-admin/js/edit-comments.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\n\\k)ԶW',_binary '2~[5{\0\^\|vTO\\I','',0,'?'),(_binary '\R\\5?- S^H','wp-admin/js/editor-expand.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\\\(p[',_binary '\\\;W#\}Gj\[KSAKZ\iˤ[Q4c\n','',0,'?'),(_binary 'I\V/\6s\\','wp-admin/js/editor-expand.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´R[6\\gTԄL_',_binary '\\vI\n6\6%VG\}\\\@of\e;','',0,'?'),(_binary '8=I\\a\%k\~','wp-admin/js/editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\y\e\\',_binary '\\: \z\=:&\%@\\\x\?	ScS\','',0,'?'),(_binary '\⣣\M\O\\\U','wp-admin/js/editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' *{~.',_binary '\n\\÷\˞x\'0 W~Ы\\Z\src9=','',0,'?'),(_binary ';R\yh\\RxK\r','wp-admin/js/farbtastic.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\T2Aq]\4',_binary '\bt\Gp\0BM0z\XJvZHAt\M%','',0,'?'),(_binary '\/GΞӶ[ǜ\\C','wp-admin/js/gallery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C*\?4k\&-s',_binary '\v2UW\n\4V[an*?\X','',0,'?'),(_binary '\ \I\_X\?','wp-admin/js/gallery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\XJ7\jp\8nT',_binary '+:\\U.\\\vfKBUL\\\+s\\h[','',0,'?'),(_binary 'G_bc.,]&\\','wp-admin/js/image-edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#\0֟]ѡ\r3',_binary '[si$\!߼\ƍ:o\n:G\E=','',0,'?'),(_binary '\-Z:E:','wp-admin/js/image-edit.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\W\N&z;\\r?',_binary 'I\\J\L\\:\~#\Z\\\.h','',0,'?'),(_binary '%n\Tߒ	^\gXΰ','wp-admin/js/inline-edit-post.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\	\\L',_binary '\\LuD\t\\ShM\j-\Xv\4#\Q','',0,'?'),(_binary '1\o%q\A','wp-admin/js/inline-edit-post.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1\/V`\\nBR',_binary 'NXL\1YDr/uXnogd','',0,'?'),(_binary '\(q4P\}5Ozk','wp-admin/js/inline-edit-tax.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_hA?D',_binary 'LZV(j\0\~\\Z3u)\ztef\n\\\O','',0,'?'),(_binary 'p\l4[e\','wp-admin/js/inline-edit-tax.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\,2/b3S',_binary 'F\c{\+\o\>\n\\4P\\T,\S\','',0,'?'),(_binary '\lF\c뒕\L','wp-admin/js/iris.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\2?ޡ{\\',_binary 'dU\D2\\\\\G\\\#\lk^[\Z','',0,'?'),(_binary 'i\\=X\h$','wp-admin/js/language-chooser.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ӥ\kulLS',_binary '\\r4\\ij\"܈\\\6\\&','',0,'?'),(_binary 'Z\Zxcyd\\'','wp-admin/js/language-chooser.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\U>p4J\l5=',_binary '9\\\\rXL\dC5@U\\K&>̓l#\','',0,'?'),(_binary '\QR\"\\@3\v\S','wp-admin/js/link.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '϶5\֞P\',_binary 'O\n\\n\\˕\{?\\Q!\=\Voi\\','',0,'?'),(_binary '\|#\԰#{\\','wp-admin/js/link.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nwh\s[',_binary 'y׈\h8\Hi*\r!\4*<9gV\"U','',0,'?'),(_binary 'nZ/1T:{&^/n','wp-admin/js/media-gallery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_8\\5o\\?\',_binary 'Ƥ$\30IX\\C,b\"0lN\F','',0,'?'),(_binary ':\%H`!\\r\Z','wp-admin/js/media-gallery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K;pO?F`hw',_binary '[7\2sd`\\\\\Mo','',0,'?'),(_binary '\\^\\X\PvS\\\{','wp-admin/js/media-upload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F߻V?\\a\n\r\',_binary 'E\\a,\Z\,yM/\\iQ\Ӡ\"\?28','',0,'?'),(_binary 'el\5sE\úQ\','wp-admin/js/media-upload.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '95.4\ԝΞ',_binary '\ڦ\'D\Z\ v0E~\b\','',0,'?'),(_binary 'r(n՞\j\\b\"','wp-admin/js/media.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LH\n\!!3\ܨ',_binary '+r\\b\\\D\VT\؞|\}P\ː','',0,'?'),(_binary 'מy7mE5O_','wp-admin/js/media.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\-:(\%\O\n~',_binary 'x(\˻\\\\Y}hu^8?K\\\Z','',0,'?'),(_binary '\ \\It13&','wp-admin/js/nav-menu.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ѫ[\-	UNT\',_binary 'c\q\\$$Ϟ[}+\qc\[@','',0,'?'),(_binary '\f\yħ*!','wp-admin/js/nav-menu.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':IK{W.',_binary 'F@\'\	#Td\ w\\C\'t','',0,'?'),(_binary '\\\"\rJ\04\'i','wp-admin/js/password-strength-meter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʃD)an',_binary '`\)CELdX\\&F-V7+1SA','',0,'?'),(_binary '\Ȁ\~_q\I\S','wp-admin/js/password-strength-meter.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\3\r\;]\<|',_binary '\\1\\y吥!}}\3ɻ}}\te\nt','',0,'?'),(_binary 't6\O\raȆ\f','wp-admin/js/plugin-install.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ch\P\\\\P\rDW',_binary '\)\ $K\8v3\\X&\okv\\','',0,'?'),(_binary '!\\Y0-z1\dm>','wp-admin/js/plugin-install.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4Do\Flz',_binary '^\E\\\XD\o\\\vorW\x\Y\\Z','',0,'?'),(_binary 'V\댏$\x','wp-admin/js/post.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\pD|ؤm\ʧ\',_binary '\ztG-(11\&2\C5U\\k/bG','',0,'?'),(_binary 'M?,5\*\\\\K*\f','wp-admin/js/post.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\n\[Y',_binary '\"\	4Ê\l\?~7\<\ͅ>k.S	','',0,'?'),(_binary 'P\'(\\?+z$','wp-admin/js/postbox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"$;\9H\S_\7\\',_binary '\\`\\R\f!Rd\<\Q GIJ','',0,'?'),(_binary 'ORr\D?','wp-admin/js/postbox.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\b\J\z%p',_binary 'qG%`\3E\:j~^\ZҌ\;,\','',0,'?'),(_binary '\\A\Fk','wp-admin/js/privacy-tools.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.X\c\\rn',_binary '9=+*}4-\o5\\H\\[L檰','',0,'?'),(_binary 'fŭ\8;\slV','wp-admin/js/privacy-tools.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\e\o`Q[\.\',_binary '\_A6\}\K\r9\@\rro\N\Z\','',0,'?'),(_binary '\\9ѕFw\','wp-admin/js/revisions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\\OeznUR',_binary '\q\\:\\\\H\-ƒV\i\ԍ$','',0,'?'),(_binary 'k\\e<F\\4','wp-admin/js/revisions.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vV\:ϹQD',_binary '\\v \0R\TCsF\DGL(\\W!','',0,'?'),(_binary 'K\W&\0\0K\06G\','wp-admin/js/set-post-thumbnail.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':1N(\xlX\\'',_binary 'v9\\n{lK~q\#>\ߦ J`~','',0,'?'),(_binary 'T\gslF\\ʞ\\Ly','wp-admin/js/set-post-thumbnail.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\PNH9e\@I',_binary 'e}#\\\nq\JrJ\\Q<dZ\K4','',0,'?'),(_binary 'J8EDh+F','wp-admin/js/site-health.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\IdC\VP\Q_',_binary 'fz,,xwZ\n\0\"\|\"ZI\\`\xG','',0,'?'),(_binary 'x`f,5ef2','wp-admin/js/site-health.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Θ>I\Vp\F\G\N}',_binary 'iD@\V>k\\(t#	\`\9H*\'\c\\','',0,'?'),(_binary '\Z/{Lt\ծF$','wp-admin/js/svg-painter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \V,\~\\H\]d',_binary '\\"sW\\\`qa\8\4\P٢Vu혧M:','',0,'?'),(_binary '\U<\?Y,\\ػ(','wp-admin/js/svg-painter.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\Pr\u6<jsF&\',_binary '\W\Q\V\\ZA6\In\_Gɻ܀\Ԓl','',0,'?'),(_binary 'G|$p֠+(','wp-admin/js/tags-box.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g4ie\ڠY,׃',_binary 'u,tsn`b\$\D\r\FRS\r\ґ^\"','',0,'?'),(_binary 'J1M\F<','wp-admin/js/tags-box.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JA휪MY\~= \u',_binary '\"	0\nt\M\\"\\Ba\X-J','',0,'?'),(_binary '}\\5\\r\$\lW\','wp-admin/js/tags-suggest.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pD\BaB*',_binary '$Y\Xx\\93%ftC0y\,^\\\\n','',0,'?'),(_binary 'km|\Kma0\\"*k','wp-admin/js/tags-suggest.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!ͨ\p\\\d\',_binary 'r0\"\\l\n\Eݴ*7\vL\\{d','',0,'?'),(_binary '{t\E~\P\A1','wp-admin/js/tags.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>.Sc~\r\r!s\\(#',_binary 'T\*/2\i3jp%\0n\x[5\'\','',0,'?'),(_binary 'fkj\NUei4=%\','wp-admin/js/tags.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\D\Xݲ\2Ug\\',_binary '\\9k7qJ3B\l?W\\\؎\\','',0,'?'),(_binary '@\F \Ӡ(\e*[','wp-admin/js/theme-plugin-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-J\~\\\\\\',_binary ' |D\O\?{\ٿ%זY}\О','',0,'?'),(_binary '\Nx\\ډ\Z\8yH\\','wp-admin/js/theme-plugin-editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\9ߠ\%',_binary 'K\\À5:Y>lŜ\\}\>','',0,'?'),(_binary '\#\\\/vXR','wp-admin/js/theme.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']|\2\^g\C',_binary '\\ \\KxN6r\	\01\^_\!8','',0,'?'),(_binary 'G6U\2\01R\J','wp-admin/js/theme.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Acɾ~Ӧ\#\f\',_binary '\pŪbkȸ\\t`\\\n]\?j','',0,'?'),(_binary '+9[BUEe','wp-admin/js/updates.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>0\*O.',_binary ' mvE\z{h\\\\r=\8dZ\\uke','',0,'?'),(_binary '([d\\BQ','wp-admin/js/updates.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ؔ\y\8w{',_binary '{ŉU\Zl\Y(j!\\Y\r{y','',0,'?'),(_binary '\\\\'>\[·\','wp-admin/js/user-profile.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0[Y5uG\_\g',_binary '3q\O6;uuogUE\ h:-\>\'\','',0,'?'),(_binary '\\HS!; \','wp-admin/js/user-profile.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\9z\\<a',_binary 'M,F>\V\6߹\5\⣓;l!\Y','',0,'?'),(_binary 'R¥\\Leq	\&\','wp-admin/js/user-suggest.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jl\,f.\Vh\',_binary '\ZԂ	8՜g\\\IS\\グ6\','',0,'?'),(_binary '\X\\$a\B\\^','wp-admin/js/user-suggest.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6|3\sJ:+IV\',_binary 'ǌ0BȠ|\qO	F\>g\#','',0,'?'),(_binary '\\&Ż(','wp-admin/js/widgets/custom-html-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\	k\\c\\'',_binary 'r=,kM:Dy\K\F~sS|ğZ\','',0,'?'),(_binary '{\n\\Ro\R=\'g','wp-admin/js/widgets/custom-html-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\eF֍\EO\^',_binary '\I|Mua6i\0J_\n\k\{','',0,'?'),(_binary 'K\]C\\l7:\D\0','wp-admin/js/widgets/media-audio-widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P IM\;p8vn\[\S',_binary '9j\lxB\eH:y%}\c	TP_\','',0,'?'),(_binary '<\|~E.\Y^\!\]','wp-admin/js/widgets/media-audio-widget.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&t\\K!\\1\\vDb',_binary '9:\\%B\Ɖ\\c֏WpX\	Q\','',0,'?'),(_binary '~KɁwwfC\','wp-admin/js/widgets/media-gallery-widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{c/I\\\\<',_binary 'y\\\\RT\ܠ\UtmY\(㻱̿','',0,'?'),(_binary 'yA0Xz(\'\\','wp-admin/js/widgets/media-gallery-widget.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#D\"5.(\\\5\',_binary 'PeZ\nG=<\\B3\\n\r٘\<\\ׅ','',0,'?'),(_binary '4y3%k \','wp-admin/js/widgets/media-image-widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;k#?\cQ7\(e',_binary '\o\{\\rrh5\\Fww\	Le\Fz\]\','',0,'?'),(_binary '|N!;x\N&g\\m','wp-admin/js/widgets/media-image-widget.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G9FmqQ',_binary 'J6\%V\\"\\rK\yɳh8N\\\\\F','',0,'?'),(_binary '5ڜ\2\l2{','wp-admin/js/widgets/media-video-widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\:\ܥ\\d|QS\n\',_binary '\R;Twh\m^\\\\䜺\K\LA','',0,'?'),(_binary '˥̰MVЗeA','wp-admin/js/widgets/media-video-widget.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3S\\-!@|[M',_binary '\sn\\\U\Bo3}\\++','',0,'?'),(_binary 'ņLGP(\Ή\ȯ','wp-admin/js/widgets/media-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"׋@/\a\',_binary '\WI\\`63XAb#;r\v{Mp6','',0,'?'),(_binary 'Q;\\\(Mp*\','wp-admin/js/widgets/media-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$M8]Jb=EK\',_binary '\\\\\:\U\{Fd\FZw\ZyG','',0,'?'),(_binary '\$\TX@#A\','wp-admin/js/widgets/text-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\\\\֬\\\',_binary 'hw\,\Dz\&\t\=#]$3b','',0,'?'),(_binary 'b\pA+\-+ʉ','wp-admin/js/widgets/text-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'غ\0\{8IUৣ',_binary '+k	\/\,Z].\Vj|Cۇlū','',0,'?'),(_binary 'RQ\b7f\ |~ۓ(','wp-admin/js/widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4>A\PP\u4Ą\',_binary '\v5ᐪmє\"-\*~`\`Qg1F\/','',0,'?'),(_binary 'Sx\\4@ow\N','wp-admin/js/widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v[jB4L!\\',_binary '0\RiJ\\,PXy		*Ri!','',0,'?'),(_binary 'P73o\	\\0\=\\','wp-admin/js/word-count.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\rffB)\',_binary '\6j,A\ުǭs\DeCz&\n\','',0,'?'),(_binary '\Cg\}|\E\','wp-admin/js/word-count.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I)\r]\X0h5\n',_binary '\\\DE\lV\Hk\\NA3','',0,'?'),(_binary 'v\\\4\|>\<','wp-admin/js/xfn.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\wcW_~\r\1>p',_binary '4[Ÿ$[\\\Ə4-3zx','',0,'?'),(_binary '頻yN<9o\Z<','wp-admin/js/xfn.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\>B25\r1U*',_binary 'O	\\h^dLgz\\\IwvƄaZ1\','',0,'?'),(_binary '|Y>\\	Ɔ\','wp-admin/link-add.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\nPU\\\-\r`(l',_binary '\!>e\:Ⓝ\\\\?\r}k?ms','',0,'?'),(_binary 'B%v6\I\"Jb\4ӡT','wp-admin/link-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ba[%\\q~zE\Z',_binary '!\X%	\C\\Q\+vz\.,4K\\(','',0,'?'),(_binary '\~\\\rC','wp-admin/link-parse-opml.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xa۔2\\F',_binary '\\%vP|X\:\x>\]|\y|:\\\','',0,'?'),(_binary ':{\\\{7\9\','wp-admin/link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \ЭEJ\\#',_binary '\A&0_:|=)\DP\Y\\p2C\Z]]&\U','',0,'?'),(_binary '6]j\v\Wk\r3-\','wp-admin/load-scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8|=]gY[\0M\',_binary '%`ĸ\X&ĲǼ=~~bF\]\FSD\R','',0,'?'),(_binary 'W})Ӗ7\e\}5\9,','wp-admin/load-styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\;\\\\<\\r1',_binary '; \\{\\(\'L\\#N=vyy','',0,'?'),(_binary '\K\\OȖ9\3|<','wp-admin/maint/repair.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ޙ~M♸\',_binary 'IoT\]\j\J\\~\ď\7bn!M|\\!F\\','',0,'?'),(_binary 'J{ֹZi^ùxI','wp-admin/media-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\J}ZOch\',_binary ':3&̓Q\M\n\\!1P \\ee\','',0,'?'),(_binary '\\\\}\','wp-admin/media-upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\qW݈\\w&cP',_binary 'j+\]-\HOgĩ>\"\O\,','',0,'?'),(_binary 'ÏuL\,\&Ǒ\r1','wp-admin/media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9ꉍ`Wkl',_binary 'f\Є\"S\\\+0pU\\,','',0,'?'),(_binary '\$īI^3\','wp-admin/menu-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\Pj\v˨!ң',_binary 'w\\9=̠F5d\\oU\\\\_k[','',0,'?'),(_binary '\\\\D >F,\','wp-admin/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_ג\^Fcrl{`7',_binary '\J\:\z``zա\}\\\','',0,'?'),(_binary 'W{g- X\\\'=n8','wp-admin/moderation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\EVU\u\\',_binary 'Fq\61\<wt&\b\\\\1','',0,'?'),(_binary 'vw\\@H\\zF','wp-admin/ms-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UjAڦYqu	',_binary '\\\"G\nڔMhQ2\l\'ܵ','',0,'?'),(_binary '&ee\\n3K\\\vZ','wp-admin/ms-delete-site.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\d\Z\u\E66&\ro',_binary '\*Mo\\x\U\LGҟxnb\0\<2u\\\\\','',0,'?'),(_binary 'EV\\\,\%\,SM=','wp-admin/ms-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P3\n\7|L?MtA\',_binary 'a\\c\sc\Z\"\V\L\\њ','',0,'?'),(_binary '\"(}G\\r\	0V(','wp-admin/ms-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~<\b\s\'\+\ZQ',_binary 'qJR\_+VC%\~d\\\35k\\x\\','',0,'?'),(_binary '-1\8;T\/X\]','wp-admin/ms-sites.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f3&S7F76\',_binary '\,$yn)RHgh{\$\U\','',0,'?'),(_binary '=b6\hs\t','wp-admin/ms-themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':1R]	lI\\!#_J',_binary '7\EH\\Pu\\Z\bG','',0,'?'),(_binary '\\\\9\\\','wp-admin/ms-upgrade-network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qc\8\E\%!',_binary '	\H\_c\\Q\X̤ՏLsڭ','',0,'?'),(_binary 'k\UL\ǡ$','wp-admin/ms-users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³u~]*C\u\0',_binary 'e\s}k\_q}~G[5\Qu\!','',0,'?'),(_binary '\rxݍ^\Z<;','wp-admin/my-sites.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\O\=u͹\\Z|',_binary 'kh{d\\4M\>J\\Zn\ˊж','',0,'?'),(_binary '\Clo\\','wp-admin/nav-menus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\Ag\}\\ܲ0',_binary 'a\tZnɫ!&h/^vԯ;\0\v','',0,'?'),(_binary 'ol>\x~I \','wp-admin/network/about.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~(4\G\\',_binary '\j/}Ӆ\0ES̤\\Hg\#Z._','',0,'?'),(_binary 'ZQ4\\\\(܇','wp-admin/network/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ϯ\r&Z3r\"\',_binary '\:\\%;KiW@>\U;\\\\#>','',0,'?'),(_binary '+\\t%R?\\\\','wp-admin/network/credits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B+\\KVe=',_binary 'WNhK2ZF\W\\\r08\\\J5','',0,'?'),(_binary '\'ڞ\0;?\+VҪ\','wp-admin/network/edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\=\#LH\\\',_binary 'q/*߲3\\xS~.\']w\\k,W','',0,'?'),(_binary '\uF\\^GE+c','wp-admin/network/freedoms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u6\|tJ41',_binary '\\B\;\M\7߃\[9</','',0,'?'),(_binary '\0C_\n\\jD\@k','wp-admin/network/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '((+t\I\z',_binary '\\\\\ݤ,De	tw|tkJ','',0,'?'),(_binary ']P\Tkvt8A','wp-admin/network/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\vWa9ml\T1',_binary '=ޑ\\o\9d-X\Ϯh8\>q;','',0,'?'),(_binary '[ixTq\\~Wve','wp-admin/network/plugin-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8@_vaє͓N\|\j',_binary '<	gK\K\Ԇ\{\ȑnV\Ủ\n\2\','',0,'?'),(_binary '\p$^\dZ','wp-admin/network/plugin-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%(Fv\0~\F',_binary 'ڙs-s\\~uYe\\T\F4!\ *','',0,'?'),(_binary '\\\"Sέ`t@','wp-admin/network/plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\n.o\\Ʊ2bw',_binary '\Agp\/m\,&Rqf9ey\$=\','',0,'?'),(_binary 'J\ח_yzx\\6O','wp-admin/network/privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\>H\r\\5:\6',_binary '*]X8\%\KқR	\\Qf;\ne\r6\\','',0,'?'),(_binary '\=\}C\\\i\\HT','wp-admin/network/profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\3\\\@%c ',_binary '\\H\.7\\\7QtUw\ݰAK,$A!Lz','',0,'?'),(_binary '\\\Za]]\A\\'h','wp-admin/network/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':S}\ <\',_binary '\n\f~	\0V\|Fbh4VJ\\r;\[','',0,'?'),(_binary '/sC4\\','wp-admin/network/setup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	w\T\A;\}Ad',_binary '\韌\\\'MN\+\ƺR\\g','',0,'?'),(_binary '+G*#\\\f','wp-admin/network/site-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\<~r:\AmEZ4',_binary ',V\\c{\\6R\ټ^|vO*\һ','',0,'?'),(_binary 'y\\G\\`\MR','wp-admin/network/site-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WY\\4]͡\<',_binary 'KBǍw\'A\.i\0!T`P\\'򏃆\','',0,'?'),(_binary '\yc\0Og)ρMf','wp-admin/network/site-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3E=Sy?',_binary 'Ƚ-M9h\\\\z\Zl:\\\ۮ6Ł\\rb','',0,'?'),(_binary 'q\h\Bc92\','wp-admin/network/site-themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1-\"n\Ft-Cjvd',_binary 'A \/m꧆[\'\"TaU,[\@eI','',0,'?'),(_binary '\q@/ꦑٞ-M\','wp-admin/network/site-users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YT&;\Po\=\',_binary 'Z_\\!ʦ%\'֫\nd\J\\\W ','',0,'?'),(_binary 'n\\\@AF','wp-admin/network/sites.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x_h2oߓ!Gf)-',_binary '\ۅ\B\0$MF\k}幤Ӯ\\Й\','',0,'?'),(_binary '{N\2\Qu\\=	','wp-admin/network/theme-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '( aԢ[U?\',_binary '\Јe\gTG.\=a\0@','',0,'?'),(_binary 'h|hEf:Ʊ2~','wp-admin/network/theme-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '堷ȹ\H^r',_binary '\fkL\\\Z)h/F_\\M9jV','',0,'?'),(_binary '\\!}\=\`*gZ=','wp-admin/network/themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's8\lv`\|YYv\\',_binary '\\F6Ek\\!y\!\h\N\\\"\\0 ','',0,'?'),(_binary '7|oOUz\0Ef\','wp-admin/network/update-core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\L;G_bu\'\\',_binary '\v,I/L^ww\ZX12yT\ɣI~','',0,'?'),(_binary '\\\(\\wB\\I\','wp-admin/network/update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\	ΒRU;\pp\b',_binary ',!m4f\\\\NR\n\\\B^','',0,'?'),(_binary 'rh\v\Lk/\','wp-admin/network/upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\(p4\#e7',_binary '\Zl\Ԧ\\ vIi\Y)\\\\\DY0V\L\','',0,'?'),(_binary '\00\\#9Z4\j$','wp-admin/network/user-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\d4VڋS~tɱź',_binary 'o\ᕑ\"t\ySM8!9/?YX\','',0,'?'),(_binary '\6K1(\\\}/AX','wp-admin/network/user-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\`.^*\Љ\M',_binary '\Rδ\\\`\\\t0)\>\+','',0,'?'),(_binary '	\\\\09\-bͩW','wp-admin/network/users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\G\\'\Zy7\\}\\',_binary 'Ѩ\\s]e|T\\xgG#m<]\\','',0,'?'),(_binary '\d\\\lPO\I','wp-admin/network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's1I\\~jG(e\e',_binary '8R	\\\\\\]LR6X\Z`\'','',0,'?'),(_binary 'JTV0D\oTA［@','wp-admin/options-discussion.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{\c\(P',_binary '\\\K\crEIfRNt@o%	۷ʻx\E','',0,'?'),(_binary 'o\[\n3u\ʹP5','wp-admin/options-general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\3\Z\X1?ix',_binary 'o13\J9\v`W)fH+\{/\$','',0,'?'),(_binary '\rѪ1s1=`(y','wp-admin/options-head.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\cV8A#h:e׭/\^',_binary 'c҈\^$kR2\r=ܫ\\@g\2\','',0,'?'),(_binary '\\\\\.1\-:','wp-admin/options-media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=ãn\}\Eq\}PD',_binary 'g\\,\\ iIc<\\^*l\]\E1\i>','',0,'?'),(_binary ')t\r\,Jڼ','wp-admin/options-permalink.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']30bNұx\IC',_binary '\	H4\\e\r\\2\\\P\7','',0,'?'),(_binary '$\\^\\6bH^\*\\','wp-admin/options-privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s\Z\u\',_binary '\\\SXe\<bDR\3=7?CHT\W7\I','',0,'?'),(_binary 'ҲE5|\ѵCd闼','wp-admin/options-reading.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J=\'\\(\\rP\W',_binary 'LL\J_	\K\Z/Y\\(G~!];\\','',0,'?'),(_binary '\L>ٟ#{6p}Y\\','wp-admin/options-writing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\x5xLB3\W5\',_binary 'g\\'LW\=\)[1>D\˙\{>\&\|Z','',0,'?'),(_binary 'd\(\\%J\\@\G','wp-admin/options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\>8;*a\Z\J',_binary 'h\\bx\^\rE\D\nˬ#J\}ۼ','',0,'?'),(_binary 'a\cCH\r=l@ĸ','wp-admin/plugin-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[fCw\\\r\\';',_binary '\'\d\q9\09Ĩ\K\r\5\r\\\','',0,'?'),(_binary '\xjP\\\!c\x','wp-admin/plugin-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4Ĕũ5~5&\\"ˑ',_binary ')@V;En䢣卐\2۪\Uo_\< X(','',0,'?'),(_binary 'O\\P5\\{R','wp-admin/plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\"L\V\\3B \',_binary 'gQ@\'B\1\\\`A/nł%Ќ}49w,','',0,'?'),(_binary 'kzߣ\\\\bo\R','wp-admin/post-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I\n(ḑ\\{z',_binary 'TѶLc\\\4O\\oFd\\\d','',0,'?'),(_binary '\\vAdsK]','wp-admin/post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xSv\N\',_binary ' u\yA\ҮB\(B6\','',0,'?'),(_binary 'Q`\\8M8','wp-admin/press-this.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'xq>/\\EQL',_binary '>k\(Bh\\ѫ͜:','',0,'?'),(_binary '2|΢(ủt\T\','wp-admin/privacy-policy-guide.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\͚\c\}t\r\',_binary '&rB\O˘)D]j\\\\\wj\hG','',0,'?'),(_binary 'c餟(Ok1!͂','wp-admin/privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ǂrs~_\\|',_binary '\z\I\e)J\\'M\ُ\,\ý4\`','',0,'?'),(_binary 'h4\#3\`-݈\"','wp-admin/profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\\,\g;ꙴ',_binary 'Cq\N,\`vS*\\\Z[\`\\\m\','',0,'?'),(_binary '\\\\0\>+Fb\\','wp-admin/revision.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$Qټ\'p\T:B~',_binary '\\\s\\\ϓ\Im\$\\r\@Xe)','',0,'?'),(_binary 'c\̎$\n\'@\r\\','wp-admin/setup-config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\\W\Zܢ$\*\',_binary '\\CG\9Ov\\޹\J\\\"7MDS','',0,'?'),(_binary 'o5+\I\\\JP','wp-admin/site-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\g\@CjFbƏ',_binary '$\'\S+\\*D\`eKC_k.\00\r','',0,'?'),(_binary ';j|:1/\\','wp-admin/site-health-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@K\\i(z\',_binary '\}b\\]LҢ=ns\\\Z\Z\\;','',0,'?'),(_binary '-|V\\H\%','wp-admin/site-health.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\&T7?Ӣ',_binary '#V\\\(\;\\bff\\@\\','',0,'?'),(_binary '\|\f\\\\,2T	','wp-admin/term.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\3&Е\(6\&',_binary 'H4\0\p\B\\a\m\f\SU\n\\T','',0,'?'),(_binary '&\`\O\Q5Q\43','wp-admin/theme-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=\01U',_binary 's\\J\<\ܔ\\\/8\\\g\\k:#','',0,'?'),(_binary '\n\\rB\p̭','wp-admin/theme-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(Ngߢr\Q	j',_binary ':L\`5\~l(\az\1\I\\i;\','',0,'?'),(_binary '\\^[X\i	\','wp-admin/themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hJ[W\W\\\	T_',_binary '\\5\\"y-K{p\\\3qP\\e>','',0,'?'),(_binary '\7s\\]\}AAwe1','wp-admin/tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	`tb\t~	F\"Wu',_binary '|p9k\\\է\\\\0\tK\:','',0,'?'),(_binary '\!\LT\3i\\x\','wp-admin/update-core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gܾ\u&C\0V',_binary 'ȳ\Ă7Zvh\QF\鲡\y\2d֦\\=','',0,'?'),(_binary '!o\r\Av7\\e','wp-admin/update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hq\rE\7\\n',_binary ';$x/y\\6}r*I:(|T\O\\e+p\Z%I','',0,'?'),(_binary '^@ղ{\'_\\92','wp-admin/upgrade-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\[a\@1.Q\\Z',_binary '\tˁ9{\/\yg1\'uVl','',0,'?'),(_binary '\\\j7r[,\Z\\','wp-admin/upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MHwXf3\Ҟ',_binary 'ķT\,#R-D\v#8t[\Z\\?\v_','',0,'?'),(_binary '&t!0^g\bJc,>3','wp-admin/upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\\\\(1\R\.6q',_binary 'Th޺UPƕ\t\,\0U\/\Lspׯ\\n\0','',0,'?'),(_binary '^9(-(Ų\y \\0q*','wp-admin/user/about.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!N \9\3nDl',_binary 'rR89\<;9i1lZQ\oC#\Y','',0,'?'),(_binary '1s)6ӶCΗ','wp-admin/user/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T^\1\\\\A|',_binary 'Y\\%մ9\\N\?\\v\\aM~݋','',0,'?'),(_binary '\\\~\r\ZK4(#\\','wp-admin/user/credits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(팋#\\A\\;\',_binary 'uA\\\+I/㊓\0nN\1G8\\ZD-','',0,'?'),(_binary 'R;lzO\8m<3Nie','wp-admin/user/freedoms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`U }\\\n\',_binary '\οzB+q\5Vl\Klk\Z/\|','',0,'?'),(_binary '[ꠏ\|K\o\یb7\','wp-admin/user/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\xCS6LC\2!\u',_binary '`K\\\y2M\plξ\"a\0אּt\ޡD','',0,'?'),(_binary '\\\\y\0\"\Q','wp-admin/user/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\V\\',_binary '\m\r\)h0\EC\N`\D[	$3','',0,'?'),(_binary '\0\lDd\u^\\Y\','wp-admin/user/privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dI\\U{x1A',_binary 'F\uX\0og:~\h\\_5\\p\t\$','',0,'?'),(_binary '\\\`\&X<\aQVh\\','wp-admin/user/profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x8\!xS\j',_binary '\\J\\fv^\D\w\ۦ\n\\s\Bu/L','',0,'?'),(_binary '\=\q\rljA+','wp-admin/user/user-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<D\0\\n#\\E\\',_binary 'X\xno\{\0\\䞿\\e[\\jZN','',0,'?'),(_binary '\Jh|0\`ZpE','wp-admin/user-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'όbx$quK5',_binary '<\ZNRI-i8ȑ\ &\'Dh\','',0,'?'),(_binary ' *@ADғ=pu\E','wp-admin/user-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h.yh\ T\\\',_binary '!6\\ URdXCi\\\d\\80l\\','',0,'?'),(_binary 'P\izt\a\}\a','wp-admin/users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\t\\>T\\<',_binary '\YzcC=MVȁĦ\κ \;','',0,'?'),(_binary '\\5Ĩ)\0\\X\'\','wp-admin/widgets-form-blocks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uMXBչ.\Z\\J',_binary '\Z?\Z\cx{gا@\\K\rF\)\zKß','',0,'?'),(_binary '{\\\n\rI\','wp-admin/widgets-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wCu/\\\\\\E',_binary '\ˎ\<!̋	j\]]\\\i	\6\','',0,'?'),(_binary 'T\h\\\zPr\','wp-admin/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\,m;\\n',_binary 'UD#?ŷwٻ$#ؕC\*X7NV','',0,'?'),(_binary 'I\:Bs\#\\\@\','wp-blog-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_BZF1\\y\\)',_binary ';\Z/\\b\\tI\͝\h\\w\','',0,'?'),(_binary 'S\\p\>\\WrYE','wp-comments-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \'`\{\',_binary 'sv%\\[8\\R\\+aM!\"\\\V/6','',0,'?'),(_binary '~ť\s\0\1y\$L}h','wp-config-sample.php',0,_binary 'Rf\{\\Ƒ\g',_binary 'Rf\{\\Ƒ\g',_binary 'xFf^)=%rÃ((8\~x~','',0,'?'),(_binary 'vK;@\saU1;	^','wp-config.php',0,_binary '{l\<\=Wq\\q',_binary '{l\<\=Wq\\q',_binary 'tVr!\&*@\\`\t\}i\\\uLPV','',0,'?'),(_binary '-^g̺@\0/\','wp-content/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gD,V\=\\\bP',_binary 'k~	UH\Z\xP\\Ā<;X','',0,'?'),(_binary '\wi.w(M;0D','wp-content/plugins/akismet/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9Q\y\p\\',_binary 'jZ\\\b\|fdYh\udk>\ǽ&]','',0,'?'),(_binary '\\I\*:o\','wp-content/plugins/akismet/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\Mi\\HjJBc',_binary '\0v1\s\N\>cID٦\I\0-','',0,'?'),(_binary 'L\\rȦ:\\n\h\'','wp-content/plugins/akismet/_inc/akismet.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nf₵',_binary '\_s\3\\o\\\\\3O OI?I^_T','',0,'?'),(_binary '̽\ X$oB','wp-content/plugins/akismet/_inc/akismet.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\g:\r\$uV\|I',_binary ')3$׾D|Ժ\L\N\\Hd\Ti','',0,'?'),(_binary '<Bʱ\A51ӱ','wp-content/plugins/akismet/_inc/form.js',0,_binary '\'\4\l*\&\i',_binary '\'\4\l*\&\i',_binary 'MB\1\QwoX4bxc)@D˥\k','',0,'?'),(_binary 'x\mY\r=\\P9','wp-content/plugins/akismet/_inc/img/logo-a-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\JZ>\\\\',_binary 'Jz{M\rR怮lBA\rU¨','',0,'?'),(_binary '\'P\\T]\	6~','wp-content/plugins/akismet/_inc/img/logo-full-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^K\-^>As{\',_binary '\%>:1WR\\ͩ\Q\i\~\^G','',0,'?'),(_binary ')̃\2k\h\! ','wp-content/plugins/akismet/akismet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ͱ\\׌ug[f^',_binary 'Zˈ\r\\Mx\ 9ۤ\\e҆\?\','',0,'?'),(_binary '\U)\\ʀ3G','wp-content/plugins/akismet/changelog.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u(YkRS\',_binary '%ON+84Nm\[ւ\\/fwc\\)\0p','',0,'?'),(_binary '\\\jK\&\\Y','wp-content/plugins/akismet/class.akismet-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	]\Bc\\Zjl',_binary 'g\`\+ \JMmqS(\\Cʆ','',0,'?'),(_binary 'f餧xMP]~B\','wp-content/plugins/akismet/class.akismet-cli.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z \\\qE9g:I',_binary 'v26}۞\\\Z\\nog$\$@[C\\V','',0,'?'),(_binary 'H\\![?\z>\\\','wp-content/plugins/akismet/class.akismet-rest-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '⺅:K\\7&Z9Hc',_binary '*\F\\:Å=IH\'x\\\\"\\\':','',0,'?'),(_binary 'l\g<\\\=\l','wp-content/plugins/akismet/class.akismet-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&x\9 V$s\rI',_binary 'p~$\)wnE\aeeiFK}\r!\\\\Yt','',0,'?'),(_binary 'p\b~oBk\Z','wp-content/plugins/akismet/class.akismet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-~\3Q\M\:\\\',_binary '\bfZ&N\%\\<|ۜ\\&MQ\n','',0,'?'),(_binary 'A$h\\՝`Qa','wp-content/plugins/akismet/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h P\Z\ݢ`Ef',_binary '\}\\\5\e3\3mhyD\Q(','',0,'?'),(_binary 'o/\d\4x`','wp-content/plugins/akismet/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\rR*#\&\',_binary '4(\y}-o㕸\\B_\ڍ{-\rvZcL','',0,'?'),(_binary '!ۅ.\4qdtP','wp-content/plugins/akismet/views/activate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{ETJ_qn\',_binary '·^\n\bq<v`x\KZW\>Gw\\','',0,'?'),(_binary '\\>Zbo&\\','wp-content/plugins/akismet/views/config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T^Uh¨\\l\F',_binary '^J\'e(\\\c99w\\^i2H\\\','',0,'?'),(_binary '\OKN\0Yn\"a','wp-content/plugins/akismet/views/connect-jp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\sQX\\3',_binary '\0.l>Wv&\\\\\\\qv+\IN~W','',0,'?'),(_binary '\'\"z\n\\p\\aE','wp-content/plugins/akismet/views/enter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QY\dKv:cmxf',_binary 'i\r\P1\nG3`\%pFռ\vW\','',0,'?'),(_binary 'bE3\g\'cZ (\','wp-content/plugins/akismet/views/get.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ӵ\\q\'7\0Y>',_binary 'x\\[%\@\c\\\\','',0,'?'),(_binary '\\Wd;C\r\\O','wp-content/plugins/akismet/views/notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sCӗ~\',_binary '\rsG}<\\}-=Ց\SkI|\,','',0,'?'),(_binary 'w\#\Q\\','wp-content/plugins/akismet/views/predefined.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#>ajϬa\\4\',_binary 'w\s\bN}qY\7zoU\u\\'\1','',0,'?'),(_binary '}spK\\ \\:','wp-content/plugins/akismet/views/setup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eY\]Z.^<&Un',_binary 'G,|\8\\\\\\i1\<2\,8\\+w','',0,'?'),(_binary '\;\;/J\KmR0','wp-content/plugins/akismet/views/start.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qz\\"\'\0\0Y7^kTj',_binary '=P\=y\p\yP\\\*u]\*','',0,'?'),(_binary 's\ӣJ\\~\k','wp-content/plugins/akismet/views/stats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sJJuw&\R{\\',_binary 'w\ü}\Z\Og\\ f#\E1g=g\RzF','',0,'?'),(_binary '\k8Q?<׊\yp','wp-content/plugins/akismet/views/title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\XCN3|)-\2Na',_binary 'tCz\ \n`j\rM\\N\"Ag\\\','',0,'?'),(_binary 'dF=\jHc','wp-content/plugins/akismet/wrapper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']x\"Y\\KJ',_binary '\ZIa^\\\iJH:j\:b\','',0,'?'),(_binary 'D4*\:\0;\\','wp-content/plugins/bizworx-tools/inc/elementor/block-employee.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vՀhB\ֈ\\E',_binary 'Y\6\ҥ)\\\0m1uWpYMy\@?','',0,'?'),(_binary '\{K\)','wp-content/plugins/bizworx-tools/inc/elementor/block-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jp\^i O>',_binary '\b(꾸!\\,5\'p7tD^\Y','',0,'?'),(_binary 'tI[\<=\'H','wp-content/plugins/bizworx-tools/inc/elementor/block-pricing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd<\ )/-\f\t',_binary 'ei\j31\\HkidA\t,Cx\\0','',0,'?'),(_binary '1B\|\B&','wp-content/plugins/bizworx-tools/inc/elementor/block-testimonials.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٴ\\\r~',_binary ' Q?\\mFPU(\\2H݌\1鐦x>\','',0,'?'),(_binary ';\4\u%\c%\"','wp-content/plugins/bizworx-tools/inc/metaboxes/clients-metabox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0U:u\\F\H\_',_binary 'ֆ+\o\\>M\r\\XD\|\r\"1\b\','',0,'?'),(_binary '\6\\0pIrd','wp-content/plugins/bizworx-tools/inc/metaboxes/employees-metabox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gfi͢6ZW\V\g',_binary 'R0QYG\\icȍ)s\0\\\\\$?j','',0,'?'),(_binary '\\\\;\"\\\\','wp-content/plugins/bizworx-tools/inc/metaboxes/testimonials-metabox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm3Q\\Z1G',_binary 'bkZ\&^j\\6\wv\^j\Hg,h\','',0,'?'),(_binary '\6\(#P\\rd','wp-content/plugins/bizworx-tools/inc/post-type-clients.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\+A\'躑(\\',_binary 'u&%댏4V:*19\r?;tUT5\9\\n\','',0,'?'),(_binary 'r\\Z{ty\n\n','wp-content/plugins/bizworx-tools/inc/post-type-employees.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@X\\r\ZL\',_binary 'g,\\\Z T8zq\S7~\b\','',0,'?'),(_binary 'Y7^rX\nL!','wp-content/plugins/bizworx-tools/inc/post-type-testimonials.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'QIZwˈɥ[',_binary 'L\\S\T9\\)͍\]$A\\A\\Z','',0,'?'),(_binary '\NܡX\n\','wp-content/plugins/bizworx-tools/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ןq\Z\19p\',_binary '\R+\'k\n\r\\rIX&2e)U\O\\r\','',0,'?'),(_binary '\c\Uep>','wp-content/plugins/bizworx-tools/js/main.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8ģ0-\[_',_binary 'n\)1-LC=\A_~','',0,'?'),(_binary '\01\J\lޚ$=\!','wp-content/plugins/bizworx-tools/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\25[',_binary 'ΝզX,ɻ,P\\\rNe7\','',0,'?'),(_binary '\r\xO\\{U4\','wp-content/plugins/bizworx-tools/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\0mȅfBČdY',_binary '\ql\Zhǥ?a7\F|DTTb|a\','',0,'?'),(_binary '7ɯi\\;5','wp-content/plugins/bizworx-tools/theme-tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'au{\f\\n',_binary '\\&Nb\Nz\\X\\i{@j@','',0,'?'),(_binary '+\"\\s','wp-content/plugins/contact-form-7/admin/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IGsƇXyԦ\sT',_binary '\"|`\/A@O^\\\\\r\ՠ','',0,'?'),(_binary '\NP<U\\','wp-content/plugins/contact-form-7/admin/css/styles-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\";\\&H\\wpXX',_binary 'uK%2r0\PM\\>\:\<\r\\U\ &','',0,'?'),(_binary '\\\rRШ\<״U;\"','wp-content/plugins/contact-form-7/admin/css/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\Bh#8Y',_binary 'S,\萪G.\,?\\\f%UVVoe','',0,'?'),(_binary 'F\_=^\aE}','wp-content/plugins/contact-form-7/admin/edit-contact-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nVFU\\5@T\',_binary 'Jn\\G\roYD;\]X1\\c[(\l\\0','',0,'?'),(_binary 'H	ڍQ$\?9\','wp-content/plugins/contact-form-7/admin/includes/admin-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\+\Qv\',_binary '\01~S#M*F%l\X\ڒ\l>T\l','',0,'?'),(_binary ';!әA\O\\Z','wp-content/plugins/contact-form-7/admin/includes/class-contact-forms-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\\cI4\\$%',_binary '|(\HE\ק :H.~\V\ީ\\"\0ػ','',0,'?'),(_binary 'n\\\n\ǋ\SH','wp-content/plugins/contact-form-7/admin/includes/config-validator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';ms3BF\n1N\\',_binary 'I;b|HR\\O*\\'߫v\Z(ۉQ-{0','',0,'?'),(_binary '\\9\\3p\^1\','wp-content/plugins/contact-form-7/admin/includes/editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pF\\"\:Dғ\\"',_binary 'b٣oL^-\{$zF\Hrv\v/P','',0,'?'),(_binary '\ws\Ye\s{','wp-content/plugins/contact-form-7/admin/includes/help-tabs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\N\0VÐ\	',_binary 'fl3X)a*[g0\Z\)\W\l\$','',0,'?'),(_binary '++\u\V\67Sc','wp-content/plugins/contact-form-7/admin/includes/tag-generator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '޴Zx/!P֢a\',_binary '6Vyn)7\:n:\\!\\)KQ%\','',0,'?'),(_binary 'W[\\lF*QM','wp-content/plugins/contact-form-7/admin/includes/welcome-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n^eˬ[˫\|QBq',_binary 'LY\$S4\\Z\\( \L§7\Ѡ+m!','',0,'?'),(_binary '>A\X\\as(~','wp-content/plugins/contact-form-7/admin/js/scripts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q\m`N\\Z',_binary '?\\܅ACU\\\\|RʻTت|\n5','',0,'?'),(_binary '\l\Ƀandv\"\\Q','wp-content/plugins/contact-form-7/admin/js/tag-generator.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tyY@\x,\R.;',_binary 'V]\'\m\W3 T\"\\n䄿ôz\~N=','',0,'?'),(_binary '\|\ֵ\_J^\P','wp-content/plugins/contact-form-7/assets/icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\\У!ș\\\/',_binary 'inY\"xge(MǏ\˕\\\\U\\n2%','',0,'?'),(_binary '-%hc\`\\tw\','wp-content/plugins/contact-form-7/assets/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~9\\Nʶ_c\_\',_binary 'y埪\/+/<&p4\o\\ ]o>+^t','',0,'?'),(_binary 'S\;C=r\0U\\\\\|','wp-content/plugins/contact-form-7/includes/block-editor/block-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\NX\WV\"',_binary '\a&&\$cݳ\܅g\ڊ|,4<','',0,'?'),(_binary ' \W\8\ሸ','wp-content/plugins/contact-form-7/includes/block-editor/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pj\"R\1aO\0sq',_binary '\\\5\\\PMy\P\\c\j','',0,'?'),(_binary 'Wkm`^ScV\G','wp-content/plugins/contact-form-7/includes/capabilities.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FΌ6\BMM۟',_binary 'm\\)dVc \U\'\\B\Z\s)GkE','',0,'?'),(_binary '7A`|\'\2`5=','wp-content/plugins/contact-form-7/includes/config-validator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>P1ٻ\Q',_binary '䕄\,\\j\O\m6M(ͦB\O','',0,'?'),(_binary '\\8ѽbv\r','wp-content/plugins/contact-form-7/includes/contact-form-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_# pDd=%wA',_binary 'U\\\\O\Z\n\BYs+8>8㫏','',0,'?'),(_binary 'R0t\]\','wp-content/plugins/contact-form-7/includes/contact-form-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@:#\Z*&d\',_binary '=[\\7\}:,\T+$sw#S\36d','',0,'?'),(_binary '\"@OwQ_ܨ2M','wp-content/plugins/contact-form-7/includes/contact-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o&bL\"N%\BbB\\\',_binary '\0\Wn&\/(C[貼x}vꢐu','',0,'?'),(_binary 'a.Ic\tR\s.','wp-content/plugins/contact-form-7/includes/controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\\d l\"\}',_binary 'O}\\m\F筌|\c\\\b8E[E*)\\','',0,'?'),(_binary '/\s\NF>\6\','wp-content/plugins/contact-form-7/includes/css/styles-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\E1\X_\uA-',_binary '_\M\'\:#iLHuwA{\\\̠@\G','',0,'?'),(_binary '\rb!E\jڵX','wp-content/plugins/contact-form-7/includes/css/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\U\Z\XYO',_binary 'x]p̨1Äљdi~\͖%]e:\','',0,'?'),(_binary 'G\\r\h=^\Z','wp-content/plugins/contact-form-7/includes/file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	\\`\n\\',_binary '\\\\;U^\%w\"\c\\'x\\ZT}\fu8V$j','',0,'?'),(_binary '043p\2\P>\Ҥ\>','wp-content/plugins/contact-form-7/includes/form-tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\T!p\\"R1',_binary 'Z\7\$\yJ?\\+\\EE9wg','',0,'?'),(_binary '=\5^L\\\n-[','wp-content/plugins/contact-form-7/includes/form-tags-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\c\MX\˵\\:\z',_binary '\s\\߷Y^6\'\nSW	A\3\\6\R','',0,'?'),(_binary 'pI:Svu','wp-content/plugins/contact-form-7/includes/formatting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\KJv\'x	\ZPz~',_binary ':l\XD\\9\_\Wg	\\\m','',0,'?'),(_binary 's\\ז:\h\S','wp-content/plugins/contact-form-7/includes/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\Yf5APՌ',_binary 'j\\r\Di/Dbd\Ϩ\#i','',0,'?'),(_binary '\:ӱ`JiL\','wp-content/plugins/contact-form-7/includes/integration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V)2|j*9\\\l\',_binary 'ӵ1Jݦ\\*EJC7-\\D\OH\\\','',0,'?'),(_binary '\`SO٪U&*w\','wp-content/plugins/contact-form-7/includes/js/html5-fallback.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*=\On\]g\z\',_binary ':<QY\\ъ\\4$9/qhD}','',0,'?'),(_binary '\\~\ҙ.\wVo\','wp-content/plugins/contact-form-7/includes/js/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϴ((\\\\\ܦ\',_binary 'dy\f\<Y8VpE/:x	K2g14!LO','',0,'?'),(_binary 'X[⋘Hn\̖	$','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڮ\ψ\BӂLU\\',_binary '8WQFa\~h\Zq>\L\r\\\Q\hܧt\','',0,'?'),(_binary '/D\cl\\ޏ\','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1HE~oI\\',_binary 'C\#rU\07\>{37L\1\\s','',0,'?'),(_binary '0\&\M\Ue2j','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0Vp@,\p',_binary 'mѾO\\'sJ\"\&u7\Jδ\\','',0,'?'),(_binary 'WzY!a\vwQ^ޱ','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\_u	!\#~',_binary 'aoJW?\(~1#u(NSV\s;c\y','',0,'?'),(_binary 'Ed\ZEZw','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '֙r:Cn\"2U',_binary 'Ѱ\\\2\NfZz\Dޯ̇5r\&dJ','',0,'?'),(_binary 'L\ϖ\0\y\"P\\','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^S;xW6-\'Fv3',_binary ']]U\\\[\0uoT\\P\n','',0,'?'),(_binary 'E<V6;NK_lSk','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#imo\[`a',_binary '\{Ere\`љP\\ˊ8\Y','',0,'?'),(_binary '^DV\\\!o$+','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;\`\\x\\;\',_binary '64 \\c\\(\'G\F&\U]b@\"\V0','',0,'?'),(_binary '\n\5\=IK&{\P','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\;\4͛0\\tR',_binary 'KP\Ѣ\\*e>@P*\3\O','',0,'?'),(_binary 'F\8*\"ڹpEm&-\j','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ϝ(a.\0\n1-h',_binary 'n\"X͂\\e\fgn\@\\\\\Hrz\^','',0,'?'),(_binary '+GI]$noR','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G#ͻ\\տz\\',_binary '\\Ǝ\\ȋ%~6\\(\>T5꯮','',0,'?'),(_binary '\L9ԔL\MU\)M\','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$i&e\nMt',_binary '\\p˙\1tp\aXE\lטLXд(؆\','',0,'?'),(_binary 's\2K\nl\Fu/G','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<*\\*\"(\\U\홫',_binary 'U,[PUl\oss\=\\$Ѝe','',0,'?'),(_binary 'T\ak\r\80o,\','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2yE\0\\u\\',_binary '8f\X\l6\(\A\n-\O?8','',0,'?'),(_binary '9\\HM%j&\u','wp-content/plugins/contact-form-7/includes/js/scripts.js',0,_binary 'c\\C\R\i\',_binary 'c\\C\R\i\',_binary ':\\\]\0h4W[\cNK\\\','',0,'?'),(_binary '\)K\W&\'EF%','wp-content/plugins/contact-form-7/includes/l10n.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}Y\*~!F\0\\G',_binary 'b8N!;2\4FSÝ1L\J\\JF\Z ','',0,'?'),(_binary 'Xo\\~_k','wp-content/plugins/contact-form-7/includes/mail.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\b|N.\\3QY',_binary '\񅸪\0({tclYwxݯnܾ	','',0,'?'),(_binary '\4\:\\j;F?\.','wp-content/plugins/contact-form-7/includes/pipe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\\\0,m\\c',_binary '@OZa\N\d\M\7\ӧ\O)=\\','',0,'?'),(_binary '\~Ft\gr','wp-content/plugins/contact-form-7/includes/rest-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\7\\\+8g',_binary '&S\\:EH	t\+\q\ͤ	','',0,'?'),(_binary 'Du\KB\Lk','wp-content/plugins/contact-form-7/includes/shortcodes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڶݥ,RW\r',_binary 'ܚ\OcksC[\\'\\\\Uh\j	4\','',0,'?'),(_binary '2VJ\܌','wp-content/plugins/contact-form-7/includes/special-mail-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#U\.WY̩\\`i',_binary '7)uF\Z\?ͭ\r\%T\*;i\"\\iP0\','',0,'?'),(_binary '?cKl}\g5ᴐ\','wp-content/plugins/contact-form-7/includes/submission.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\#\=\*u',_binary ';Fu:U-$]\@\(|U.\S[\"\','',0,'?'),(_binary '\\0p\WG\r}^\r̈́L','wp-content/plugins/contact-form-7/includes/upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\[2YQ\ݣ\d',_binary '1\\\DvQ5C#\B\#','',0,'?'),(_binary '_\t9@ _)J=_\','wp-content/plugins/contact-form-7/includes/validation-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_ϐ;\-o\/',_binary '\V)sAZn\\~sF\FM\d\)','',0,'?'),(_binary ' \\.g\w\','wp-content/plugins/contact-form-7/includes/validation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\>\\\\\\',_binary 'cͽ98\n4\\Qd\DTK\\TS)','',0,'?'),(_binary '\\N\O\\T\)EH','wp-content/plugins/contact-form-7/languages/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YT&\Zo^GԨ\\}',_binary 'M\\O\(\\rO\v[\/FBA\>tCw','',0,'?'),(_binary '݋rn}z\w\'\','wp-content/plugins/contact-form-7/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xj8%&~i\\K\',_binary '\U\}\{\	6\'-U\\','',0,'?'),(_binary 'M^.\h\\','wp-content/plugins/contact-form-7/load.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \u6\B\\[eo',_binary '?h\\[\\r %%\۩+\c7:\','',0,'?'),(_binary 'a\\nFh #ۈ\\','wp-content/plugins/contact-form-7/modules/acceptance.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\១J\+`',_binary 'TVO\P\nv{\w\',zv}aK=Jh','',0,'?'),(_binary '\ƿ\o\F\h\','wp-content/plugins/contact-form-7/modules/akismet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\e/!o\"a-\N',_binary 'o\rb;8V\R\\+\\U*L\\z\\m','',0,'?'),(_binary '\rvkP-\tGHm','wp-content/plugins/contact-form-7/modules/checkbox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\\J߭ !^9\',_binary 'pw:\\ ^\k\E	}G?uB\)\\Y ','',0,'?'),(_binary '\/\@\0K5V\n\q\','wp-content/plugins/contact-form-7/modules/constant-contact/constant-contact.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')HM$\6G&Υ',_binary '` \\\\\\\\\\\(\\\\a','',0,'?'),(_binary '\\vD\E\|,xͱ','wp-content/plugins/contact-form-7/modules/constant-contact/contact-form-properties.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\\KQ\-(서',_binary '/äf\Ȉnkۗ-?A$\Z&5z-','',0,'?'),(_binary '\~Ta2l\\;6늌','wp-content/plugins/contact-form-7/modules/constant-contact/contact-post-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(E\\\bd\lY\',_binary '\O\\\ZIc\H=\\\<.\r\j\YVJ9','',0,'?'),(_binary '\\>Bp\/','wp-content/plugins/contact-form-7/modules/constant-contact/doi.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T	\\	v\ؼ',_binary '1\\yh4\¹\')xgnQŎWB1h!\','',0,'?'),(_binary 't}}d\/\/}e','wp-content/plugins/contact-form-7/modules/constant-contact/service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dL\>y\\`\;c',_binary '.4e\\X6\ސ?:4\0\\\@\D^\Z ','',0,'?'),(_binary '\a5\2yƖ\Qy','wp-content/plugins/contact-form-7/modules/constant-contact.php',0,_binary 'I9\^\A`@iQ\	',_binary 'I9\^\A`@iQ\	',_binary 'l(_\'fd\j\;\}i\ii','',0,'?'),(_binary '(\,\0[\7\\\34','wp-content/plugins/contact-form-7/modules/count.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SܜIxJA@J\K',_binary '\\'}P\#l\3	U&\"1>ֵ~Dx','',0,'?'),(_binary '\0\@u2\X\','wp-content/plugins/contact-form-7/modules/date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@A7UD\MilS\',_binary 'Y\+\\.mYw{ǔa\7\nǇ\)\\}L','',0,'?'),(_binary '\=\Ɓy柫','wp-content/plugins/contact-form-7/modules/disallowed-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\\"4C\N\\'',_binary '\W޴\\\Dr\A\\>\1z\ﺶ\N2','',0,'?'),(_binary 'NiQg\zǢ\ߚ4','wp-content/plugins/contact-form-7/modules/doi-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\r\q{\\Zp',_binary '\!\W\2\\OJV\\\\"5\.\','',0,'?'),(_binary 'YIE\Tt2L\\]','wp-content/plugins/contact-form-7/modules/file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M=`\o\\V5\J\\',_binary 'Q\Ѻ\\\~\]\>ȣsT	?@','',0,'?'),(_binary 'x\>\\E\\Q;\\','wp-content/plugins/contact-form-7/modules/flamingo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'λ\T\^',_binary 'N$\`\\\\S$\nI\u^دX}H\\0','',0,'?'),(_binary '!\B\\Zl!Z0\','wp-content/plugins/contact-form-7/modules/hidden.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\A8|)6ab\\\\r',_binary 'a9斷x➃\\\ꗘ\\\=m_','',0,'?'),(_binary '=fd\\ӂv\\','wp-content/plugins/contact-form-7/modules/listo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\\\0\\)\{',_binary 'ӈ!t/)lpZ|\\;n˄bS\','',0,'?'),(_binary 'k	\<\(G\w\\','wp-content/plugins/contact-form-7/modules/number.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0HUU\x7\',_binary '\]n\!Z54\\	mdY\ ֹ\r','',0,'?'),(_binary '\Ee\\"^zT\\','wp-content/plugins/contact-form-7/modules/quiz.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\w\0oV\iDt\]\a\',_binary '߻r\"6<kMP\A\\\\(jw0\','',0,'?'),(_binary '#ɴ.\n\I|+\ɼ\','wp-content/plugins/contact-form-7/modules/really-simple-captcha.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0sO`\\\'nQe',_binary '\\'c\\\\e\0Y\ct\\w!L\\07','',0,'?'),(_binary '=ꢣ%\\i','wp-content/plugins/contact-form-7/modules/recaptcha/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\(sm/\#&',_binary 'ɖqv\\ӫ\Z\'4+]\L4M\','',0,'?'),(_binary '\&8fzZgS','wp-content/plugins/contact-form-7/modules/recaptcha/recaptcha.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ntC	\L7J',_binary 'LKQ\\\d\)\:N,ykX_','',0,'?'),(_binary 'c/q$\\\','wp-content/plugins/contact-form-7/modules/recaptcha/script.js',0,_binary 'V	\ZA\\\\cO',_binary 'V	\ZA\\\\cO',_binary 'zA\?nPl\\Bj\\/\'/','',0,'?'),(_binary 'x\\\0>t4n>L','wp-content/plugins/contact-form-7/modules/recaptcha/service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\n\>\Y*\',_binary '\$k\4[\\n9,˭\oB_ex\\³ُ','',0,'?'),(_binary '\\\n\;:\I\\"\@\Oh\','wp-content/plugins/contact-form-7/modules/response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a٤@\\W+\X*\1\',_binary '9H\n\ 6m`\\M\\vL\\ ','',0,'?'),(_binary 'ݺ$;k\\J	al1','wp-content/plugins/contact-form-7/modules/select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZQ\q\D\\3\\',_binary '_omֲ{1\Um[j,*Ï	1\\b_','',0,'?'),(_binary '\~;s5WBmEV','wp-content/plugins/contact-form-7/modules/sendinblue/contact-form-properties.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\VX\\۷DÃ',_binary 'E\L\%8[mi\ˣ\icD.cV','',0,'?'),(_binary '1N-Md\\D0\\','wp-content/plugins/contact-form-7/modules/sendinblue/doi.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\V\raM\"\K',_binary 'HgDM\_hH\و,iY\j','',0,'?'),(_binary '$z\\\Q	\y','wp-content/plugins/contact-form-7/modules/sendinblue/sendinblue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\GD1RbT',_binary '\'gk.iiXD\\\\\A\'\ј','',0,'?'),(_binary '\MTbv\>L~','wp-content/plugins/contact-form-7/modules/sendinblue/service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'7cL\FѪ\w~t',_binary '.\0]k̡x\\\X\!jрDCH;J','',0,'?'),(_binary 'ހ[11bBc\!\','wp-content/plugins/contact-form-7/modules/stripe/api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\t1)F@',_binary '7tn3R\\'\|\\\'Fjo\{+\','',0,'?'),(_binary 'U\h5(\\Z','wp-content/plugins/contact-form-7/modules/stripe/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\{\8<\&!x#\\'',_binary '\ҷ;2\=\kӈ=?\0i81qE\بz9q','',0,'?'),(_binary '\\ԉSַ3*\0h\a','wp-content/plugins/contact-form-7/modules/stripe/service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2R\\\{CYP\',_binary '~\'t\r2C\\A\n`?cXU\"D\֦Qe','',0,'?'),(_binary '\zMj`巂*','wp-content/plugins/contact-form-7/modules/stripe/stripe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\"\n\\\"\i\*\l',_binary 'IU\\\"W \5)RQHzv9(\a,u\0a','',0,'?'),(_binary 'Ȍ\\\\m\{YK\M','wp-content/plugins/contact-form-7/modules/stripe/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\t^ާ3\\M',_binary '=\լ8\x)/\ߓ\}\ѻz@\A','',0,'?'),(_binary 'J?4Yhe!>O','wp-content/plugins/contact-form-7/modules/submit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u߮s\F\W\K',_binary 'r\ɰ\KErm\\<*=/n!\\}=%','',0,'?'),(_binary 'b\N=,\S\\','wp-content/plugins/contact-form-7/modules/text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zdIe`\\j\O',_binary '\-\A\\\	̈\9vZ-\\	p\j4','',0,'?'),(_binary 'r\"-\0EwX','wp-content/plugins/contact-form-7/modules/textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ю)7\!]n\XV',_binary 'o\ǵ\\8\t\'O-y\;	\'ï','',0,'?'),(_binary '6o8NoL;','wp-content/plugins/contact-form-7/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\M\\8\\\9\WW\\',_binary '\\`\KkEqݝ\^CS\\=)\#\0i\','',0,'?'),(_binary '%\&\\}p\\?ہ','wp-content/plugins/contact-form-7/settings.php',0,_binary 'ѾC\\L^\Zv\',_binary 'ѾC\\L^\Zv\',_binary 'J:`\KC<L\\xK\;\\Ǧsc%S','',0,'?'),(_binary '\r\¶2O\2&@','wp-content/plugins/contact-form-7/uninstall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\x2\v0\\r',_binary '\]\C`\\'\\\ŦQ5&f','',0,'?'),(_binary 'kN\(lZfE\"Lm\','wp-content/plugins/contact-form-7/wp-contact-form-7.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=&Z%XM]*?',_binary '\\FO4JN撡\\&\'$\MY','',0,'?'),(_binary 'BՉ\PKmq\r1','wp-content/plugins/easy-facebook-likebox/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\o*n+\/\\',_binary '\0v1\s\N\>cID٦\I\0-','',0,'?'),(_binary '\(\\\ї','wp-content/plugins/easy-facebook-likebox/README.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xIgm\>]\\ԝ\\',_binary '\p\'\B\"\\\\"酗pɁ\\\ڡ)','',0,'?'),(_binary ',\\Tʷ#q\rSg^','wp-content/plugins/easy-facebook-likebox/admin/assets/css/alpha-color-picker.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\\=\\&\*o',_binary 'hq{~ed\roN\+e#Uй','',0,'?'),(_binary 'S\\\tV\\\e','wp-content/plugins/easy-facebook-likebox/admin/assets/css/esf-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Er\*\R>\r',_binary 'le)m\X\6F\\\\N\'O\o$','',0,'?'),(_binary '\"?\np\.=\','wp-content/plugins/easy-facebook-likebox/admin/assets/css/esf-admin.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\\b؂\F-\\Z',_binary 'e񻯍|\\ZF3BZǞ*镆;U\\{','',0,'?'),(_binary '`%\=bcfd{','wp-content/plugins/easy-facebook-likebox/admin/assets/css/esf-animations.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}8,AOZYȇTc\',_binary 'G\\\\̲5-\0\'\a\\>c$\Gǣ>','',0,'?'),(_binary 'z$\r\\\~\0_\rB\','wp-content/plugins/easy-facebook-likebox/admin/assets/css/esf-animations.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ޣDo\UB\0\Ev0\W',_binary '&3W\"\CFe`k\rcq\\r\r:j3@\','',0,'?'),(_binary '\\%ٽhD\=','wp-content/plugins/easy-facebook-likebox/admin/assets/css/espf-search-results.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ֳ]\\O\\\\',_binary '\0\cyxvO?\/c*\!ýEO\','',0,'?'),(_binary 'lcV\\n4\V.\','wp-content/plugins/easy-facebook-likebox/admin/assets/css/espf-search-results.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\fe@,j¸/\ ',_binary 'f\c$+\\\'7/Yfu|\\','',0,'?'),(_binary 'Yj\[\0Ylg\\','wp-content/plugins/easy-facebook-likebox/admin/assets/css/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'o׻\E\|Bs#«','wp-content/plugins/easy-facebook-likebox/admin/assets/fonts/esf-custom-icons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ç\K|Є)\',_binary '5S\\Vyj*E\\\ؑw\svoi8','',0,'?'),(_binary 'T[w\oF:X{R	h','wp-content/plugins/easy-facebook-likebox/admin/assets/fonts/esf-custom-icons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M0?\`E`[',_binary 'vH\,Sʃ\AqZ\\DHU','',0,'?'),(_binary 'E31\|O7','wp-content/plugins/easy-facebook-likebox/admin/assets/fonts/esf-custom-icons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WP[e\X3Eu\',_binary '\V%Es\?u\|)4ӣyxA\'','',0,'?'),(_binary 'v\\/s\\\\o\o','wp-content/plugins/easy-facebook-likebox/admin/assets/fonts/esf-custom-icons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*\Z\ظ0a\\3\\',_binary 'F\\S	F\о\"\"\(ĸ\{d\;t%~','',0,'?'),(_binary '\\Zw\j|\rVK','wp-content/plugins/easy-facebook-likebox/admin/assets/images/facebook-feed-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q[=pD*VI>',_binary '\g6֤_a|eYў\0d͊\\Vn\','',0,'?'),(_binary 'h\o\#6ڲ2BnI\\&','wp-content/plugins/easy-facebook-likebox/admin/assets/images/instagram-feed-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:\\R\"Ś',_binary 'w\`\|@I\0\"܈ךѠeY\\rP\葊0','',0,'?'),(_binary '\\\Z3^\VN\\ro','wp-content/plugins/easy-facebook-likebox/admin/assets/images/likebox-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~<\\"A:\ؓ7\[=',_binary '	z\0\E-4fO~=%\֒4,\Aߝ','',0,'?'),(_binary 'R	~*\{^S\','wp-content/plugins/easy-facebook-likebox/admin/assets/images/plugin-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T[p<\oa=g-',_binary '[p\y-Uyw|M\`\\\@{:\0i\&','',0,'?'),(_binary '\\\0\\k;\s̷(6,','wp-content/plugins/easy-facebook-likebox/admin/assets/images/plugin_icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g}7\\9)\\Z{ ',_binary ')\*\\7\0\b*!Kq\㻭d>.C','',0,'?'),(_binary '\\/\\Z\0a\v','wp-content/plugins/easy-facebook-likebox/admin/assets/js/admin.js',0,_binary '\/&jNe=5^',_binary '\/&jNe=5^',_binary ' &\ƺ45\Ï\7*VՊidF\','',0,'?'),(_binary '\\(\\\\<G0EX','wp-content/plugins/easy-facebook-likebox/admin/assets/js/alpha-color-picker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D_X\\\nw',_binary 'ޖ\!\[T̙R\0P9@!%\"sgnL\2`','',0,'?'),(_binary 'A\'&{y\0@\q\','wp-content/plugins/easy-facebook-likebox/admin/assets/js/clipboard.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\x\r2@',_binary '\._(8ehNf\.D\:^+?\\"\5','',0,'?'),(_binary 'w\\0kGT\\l','wp-content/plugins/easy-facebook-likebox/admin/assets/js/esf-admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ml\5@KpR\\r_',_binary '\iֳ7\\\\N9\u1PúY\\=','',0,'?'),(_binary '\X\m\G\Z6{cH\\','wp-content/plugins/easy-facebook-likebox/admin/assets/js/esf-image-uploader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\e\R-v\ٹɜ\',_binary '2I\"mc`a\\\\>\c\vvz','',0,'?'),(_binary '\|eZ\JK\\=','wp-content/plugins/easy-facebook-likebox/admin/assets/js/espf-search-results.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a,)?lX\:',_binary '^q\l9^j_4\adeӽ04qTX\\','',0,'?'),(_binary ')&\B\]B7\','wp-content/plugins/easy-facebook-likebox/admin/assets/js/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary '\]^pjK\\\~','wp-content/plugins/easy-facebook-likebox/admin/assets/js/materialize.min.js',0,_binary '\\\VbB\',_binary '\\\VbB\',_binary '\a\u=\\Q͢\"hQ\\\\','',0,'?'),(_binary '\H\\M*X\{$','wp-content/plugins/easy-facebook-likebox/admin/assets/scss/esf-admin.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';@\'\\\{',_binary '\{\\h;\OD`\\ะڨ`S+t','',0,'?'),(_binary '\\;ŖUp>\]ۆ','wp-content/plugins/easy-facebook-likebox/admin/assets/scss/esf-animations.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ԉ\!p\3&sX',_binary 'i<FNE\}\\/^\\H&\\~F\C\','',0,'?'),(_binary 'K5Rs{)ֱۊWA','wp-content/plugins/easy-facebook-likebox/admin/assets/scss/espf-search-results.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{NZ)ePxuL=',_binary '\$\?*t\\|Y\__\1ֺ\9.','',0,'?'),(_binary '\3Tͥ-w','wp-content/plugins/easy-facebook-likebox/admin/class-esf-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':F$;\[5\Y;',_binary '\)x\$\$\]\\\\lU\!;\?','',0,'?'),(_binary 'YB\H(D','wp-content/plugins/easy-facebook-likebox/admin/includes/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'oԘԋv=Ԉy\K','wp-content/plugins/easy-facebook-likebox/admin/views/admin.php',0,_binary '}$\H?jt\\\\|',_binary '}$\H?jt\\\\|',_binary '\\Sӝz|\5q쑆\\h(\','',0,'?'),(_binary '\0\s`\Qe\ӳ#[','wp-content/plugins/easy-facebook-likebox/admin/views/feed-settings.php',0,_binary '\\w\2\ќJɳ\X',_binary '\\w\2\ќJɳ\X',_binary 'y\\E#[\;\\\3R˕맟\gСJ','',0,'?'),(_binary '\\s\','wp-content/plugins/easy-facebook-likebox/admin/views/html-admin-page-easy-social-feed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\:\Z\\Uls',_binary 'n_(߭s9\\3\{lO-<mN','',0,'?'),(_binary 'I\\NOv%uJl~f\','wp-content/plugins/easy-facebook-likebox/admin/views/html-admin-page-recommendations.php',0,_binary '_z_5V:d',_binary '_z_5V:d',_binary '_\䌚֐\\\/R^\Kڝ\','',0,'?'),(_binary '\j\\	1\','wp-content/plugins/easy-facebook-likebox/admin/views/html-admin-page-wellcome.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jcy#Ǐ\,\*!',_binary '\"\gsj\-0ۼ\b%j\e6Ե\\','',0,'?'),(_binary 'p\\\ABKIW\','wp-content/plugins/easy-facebook-likebox/admin/views/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary '\eGR??r\\\'','wp-content/plugins/easy-facebook-likebox/admin/views/instructinos.php',0,_binary '\2\3@Ô\',_binary '\2\3@Ô\',_binary 'S[\ZB\41	 +}\rg\\a\챊֋H','',0,'?'),(_binary '(B\k ȪB','wp-content/plugins/easy-facebook-likebox/admin/views/other-plugins.php',0,_binary '\\}-/eLHFq',_binary '\\}-/eLHFq',_binary '|s.\: \A\t1|\\\_+~','',0,'?'),(_binary '\9^\"$lJ\:\','wp-content/plugins/easy-facebook-likebox/admin/views/popup-settings-advanced.php',0,_binary '(nm\pf۶\>x6',_binary '(nm\pf۶\>x6',_binary ',&M\\f\(A\\d㩼Bd6\n\M%','',0,'?'),(_binary '\\W\\b\mW','wp-content/plugins/easy-facebook-likebox/admin/views/popup-settings.php',0,_binary '\RAA,*\\*',_binary '\RAA,*\\*',_binary 'K\GnPI\\\@r\8oBє','',0,'?'),(_binary '?ix\A\\\&s','wp-content/plugins/easy-facebook-likebox/admin/views/support-us.php',0,_binary '59\afb\\\\',_binary '59\afb\\\\',_binary 'A/~s\ku4&\8YzҴ^oI\','',0,'?'),(_binary 'vȺ͚J*N7w','wp-content/plugins/easy-facebook-likebox/assets/fonts/esf-custom-icons.svg',0,_binary '2d\\\˄\y\n\qL',_binary '2d\\\˄\y\n\qL',_binary 'MGy98\FX\t4bS,Q%ys=)!?','',0,'?'),(_binary 'u>~\q|v,','wp-content/plugins/easy-facebook-likebox/assets/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary '\S	N\\$ȦX','wp-content/plugins/easy-facebook-likebox/assets/js/espf-search-results.js',0,_binary '\\%77\"B)A',_binary '\\%77\"B)A',_binary '4;GbP\d\\\\_\ɨ\\\U','',0,'?'),(_binary '\\b%\m\r\	\%g','wp-content/plugins/easy-facebook-likebox/assets/js/fta-admin.js',0,_binary 'y\\\:c,5',_binary 'y\\\:c,5',_binary 'L\5ӱ9\[m\rHO(B\H\\\x[`','',0,'?'),(_binary '|??{9J\U7\ ','wp-content/plugins/easy-facebook-likebox/assets/js/jquery.fancybox.min.js',0,_binary 'I\4?9~\',_binary 'I\4?9~\',_binary '\\̖\ԝq\0yv\} d!O\\_','',0,'?'),(_binary 'k\+\숵 谶\\','wp-content/plugins/easy-facebook-likebox/assets/js/materialize.min.js',0,_binary 'r`KM\nA\\)l',_binary 'r`KM\nA\\)l',_binary '\a\u=\\Q͢\"hQ\\\\','',0,'?'),(_binary '΋,\Z\\\	\Zi','wp-content/plugins/easy-facebook-likebox/assets/js/owl.carousel.min.js',0,_binary '\\%%V\\ix',_binary '\\%%V\\ix',_binary 'RBISyPH Y/\nwe!\eӶ\O\\'','',0,'?'),(_binary '\\O\lo3','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/css/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'Gc/\'y\Z\f&7','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/js/admin.js',0,_binary '\rO\\tC@',_binary '\rO\\tC@',_binary '\X2^7<\\g\mTY16ow݇Κ\','',0,'?'),(_binary 'Xpf\\JJS','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/js/alpha-color-picker.js',0,_binary '\\'O1\U\n\',_binary '\\'O1\U\n\',_binary 'hqQk5\M*\\E\\\'n\\"c\AA#\\','',0,'?'),(_binary '-\G\`\2Z8\Cm','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/js/efbl-likebox-block.js',0,_binary 'Yǵ9\\\퐃\F',_binary 'Yǵ9\\\퐃\F',_binary '`\=gSHs\TɬIjNvA\(D','',0,'?'),(_binary '\0;{73\0?\','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/js/efbl-live-preview.js',0,_binary '\|p\# h@yN',_binary '\|p\# h@yN',_binary 'dOD\(\\T>5!\\q?=:','',0,'?'),(_binary '̘\\\r|k\Kc','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/js/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary '\T	k*i\Q3(','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/js/materialize.min.js',0,_binary '\Z۸1C\\$6\*Hv',_binary '\Z۸1C\\$6\*Hv',_binary '\\H\"%\\[t\7	\j\84','',0,'?'),(_binary '	TE\ne#\d','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/easy-facebook-likebox-admin.php',0,_binary 'L\	W\D\g~',_binary 'L\	W\D\g~',_binary '&={JVXz.T%Uոoq\8aL&\'B\\P','',0,'?'),(_binary '4\\+\K\\\U\3','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/includes/efbl-customizer-extend.php',0,_binary '\ogPx%\\\k7',_binary '\ogPx%\\\k7',_binary ')\\)@\WHUOGNċQ\','',0,'?'),(_binary '6K\'\ރU','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/includes/efbl-customizer.php',0,_binary '\\Zb0w]xC1',_binary '\\Zb0w]xC1',_binary 'aZ\\\%\G4׻\n \\n5n\\3\C','',0,'?'),(_binary 'P?\nq\\{b\]','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/includes/efbl-skins.php',0,_binary '%X\\)<\ȨX',_binary '%X\\)<\ȨX',_binary 'J\"\~q]V8\	\Z\##\W\\N','',0,'?'),(_binary '=\Y\Z\nO7\\3\','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/assets/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary '\r\rRX1K\','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/easy-facebook-likebox.php',0,_binary ':{~z\L=@',_binary ':{~z\L=@',_binary 'X)\ZT톦7n2i\Ze\}8tf ','',0,'?'),(_binary 'j8	̒\KdxR7','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/includes/easy-custom-facebook-feed-widget.php',0,_binary '\mK\9\\~\o潿',_binary '\mK\9\\~\o潿',_binary 'O\lA\V29\нVH\:\\\}\z	(9','',0,'?'),(_binary 'ZjeI\e \DY\\\','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/includes/easy-facebook-likebox-widget.php',0,_binary '\L$D*~\\M',_binary '\L$D*~\\M',_binary '8\\>5rR\`\V^j\]@hu5Fߎ','',0,'?'),(_binary 'z;b\dWh\Z\\','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/includes/easy-facebook-page-plugin-widget.php',0,_binary 'Ra\\\y D~l',_binary 'Ra\\\y D~l',_binary '\&Q {^Z\M\\ab\\\Ǝ/?','',0,'?'),(_binary '\\ATͩ\9oQ\\\	t','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/includes/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'p\J93T!5\','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/css/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'מ\Tp	;\\\!=','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/fonts/fontawesome-webfont.svg',0,_binary '\\9OhMff]>\',_binary '\\9OhMff]>\',_binary 'EVS`$?\aj`)x\0\\+X\K','',0,'?'),(_binary '^jkkiLYn\-f;n\','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'ٟ6f\\\\\','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/js/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'Ql۲N/4\\\n','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/js/jquery.cookie.js',0,_binary '4%6\8\\Z\)\C',_binary '4%6\8\\Z\)\C',_binary 'O\\*\\;M\~\\\rBPc\oǤ\\','',0,'?'),(_binary '\d\"\$:\\nD','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/js/public.js',0,_binary '&hU\\\\x\7E\&',_binary '&hU\\\\x\7E\&',_binary '\`VO\\PuϳPu\K','',0,'?'),(_binary '2*\	\\d<rփ','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/popup/jquery.magnific-popup.min.js',0,_binary '\ʩ|\T\@k',_binary '\ʩ|\T\@k',_binary 'ʂ\)j/Fւ\D\\3r\\\8\','',0,'?'),(_binary ']n\zNY%x','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/easy-facebook-likebox.php',0,_binary '\v3nr	v{2=2\',_binary '\v3nr	v{2=2\',_binary 'Y@\.0\L-|My4qyyce3\r\','',0,'?'),(_binary '>\u\wS{%\','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/includes/Mobile_Detect.php',0,_binary '>\\R\n\q2d\oT',_binary '>\\R\n\q2d\oT',_binary '\K\oq~8\1\\d\>\pj]\\a\\Z(\','',0,'?'),(_binary 'k?ҳ\'.n\;\\\3','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/includes/core-functions.php',0,_binary '٠lBO\|O3n[w\OT-',_binary '٠lBO\|O3n[w\OT-',_binary '|H\U{ܠ\\\\\e0J/wƮ[Љ\','',0,'?'),(_binary 'l\\.!\nYoc\','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/includes/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'Is\ G\\\$','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/views/feed.php',0,_binary 'C-q[y*m8',_binary 'C-q[y*m8',_binary '\\<(.\9\X\\vqd#\9-*','',0,'?'),(_binary '\!g\\CR\J\'','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/views/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary '!>\'\\+8\;','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/views/public.php',0,_binary 'YZ\f|\\bz',_binary 'YZ\f|\\bz',_binary '\H\\Ine\\+\m)\$5#˲L!n;\Z','',0,'?'),(_binary '\0QX\A}\![F','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/views/templates/template-fullwidth.php',0,_binary '*(Z\\'`VETsP',_binary '*(Z\\'`VETsP',_binary ' ̹\'5Ɵ\HϘ8\D\;\Kc\','',0,'?'),(_binary '\M!\ԅr\={','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/views/templates/template-halfwidth.php',0,_binary '*(Z\\'`VETsP',_binary '*(Z\\'`VETsP',_binary ' ̹\'5Ɵ\HϘ8\D\;\Kc\','',0,'?'),(_binary 'K#\\(ph\\','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/views/templates/template-thumbnail.php',0,_binary '*(Z\\'`VETsP',_binary '*(Z\\'`VETsP',_binary ' ̹\'5Ɵ\HϘ8\D\;\Kc\','',0,'?'),(_binary '1\<[s9','wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Dt\M\hс\',_binary '_O7;8Rd\\\h\\0\;\w\\','',0,'?'),(_binary '<X8v?\/\"\wt','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\并xѐ~',_binary ']I\\!Mf\0Ǟ\\O:\\;','',0,'?'),(_binary 'C!5q=f1\Lt\'IL','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/css/admin.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\[[xolu',_binary ']\\\a\p\\9BK\\[٩\S\\','',0,'?'),(_binary '~\/BS~m\'8J','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/css/efbl-customizer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^p\\*á\\\',_binary 'dqF\	\\ҮڽYe\Fq/\oK\\','',0,'?'),(_binary '6\0\\7\tJ','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/css/efbl-customizer.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\NEP\\\?$CR(',_binary 'H\^[wQ3>t\ڞ\\\\\\'W\n=','',0,'?'),(_binary '\>H8!\'&','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/carousel.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&L\\\\Eɦc\',_binary 'Zs`\\qN> \\\\a\n\&.\','',0,'?'),(_binary 'Yc?6}龍܃\','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/facebook-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q7\0AX\ԩ\Y',_binary '&\.9:6\n_`b\\\\«2\Z>}RSLc','',0,'?'),(_binary 'tY0#)ZP\dȀ','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/full.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\\a\J֑`\\',_binary '\|i\#Þy\,cK(s~\s]\\','',0,'?'),(_binary '\g[lu1Ql܊\\','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/grid.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\W\ehM@v\',_binary '=:K\uﭜ\\C\{P\\\0\`>5f','',0,'?'),(_binary '8n/)C','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/half.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fs\`\rt\0D\\',_binary ';\"Ճ\;w\"0\\VMG\\\>\\>','',0,'?'),(_binary '$u0.7}g\','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/masonry.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\\>\2^\\',_binary 'xt\\\\~ݛgވMh~k\F6uK','',0,'?'),(_binary 'g~\;\\"	\\\','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/moderate.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\/\i,\Rs#HY',_binary 'r\餡\6F\E\n@%5\Ҁ7\S\`','',0,'?'),(_binary 'W($&\\Ch\K','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Tn)\R\~,',_binary 'ZR\0\c;\czs\t\Z@}g[\M	q','',0,'?'),(_binary '\8\\\\UߦCnQ|','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/js/admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\/W\Б\yfS',_binary '\J\\\DV\ǙYR\\\Zguu\`\\','',0,'?'),(_binary '\\\*\'','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/js/efbl-live-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\\uW6u/\k',_binary '̯3H\(\e~-ַֽݓ¦X>\\t\','',0,'?'),(_binary '\Ͽi\\`\\@','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/js/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'ME:PXߒNb\','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/scss/admin.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \yB^uՉmϙ',_binary 's	+Ζ{pr[(%B\rd\*\|\','',0,'?'),(_binary '3\Zr@̽\\Zi~\\','wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/scss/efbl-customizer.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\eߔF\\T\9?\ѥ]',_binary 'Ëoj\<hj~{|\\h\s\Xp3!s\','',0,'?'),(_binary 'lf[3=Z\N!','wp-content/plugins/easy-facebook-likebox/facebook/admin/class-easy-facebook-likebox-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y1\xn@o\',_binary '،Mkָ>\\`ۺ\X\k\'hSQj','',0,'?'),(_binary 'p>cHj%D\'If\','wp-content/plugins/easy-facebook-likebox/facebook/admin/includes/efbl-customizer-extend.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\@8\`<\Z5{',_binary 'XZ[\sIFb\=\x\fl_\y\Ѡ','',0,'?'),(_binary 'T*\P0\ڰ8I93\','wp-content/plugins/easy-facebook-likebox/facebook/admin/includes/efbl-customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mw(X\Q.kRd',_binary '?(ks\\\,D7B:Q{Һʒ','',0,'?'),(_binary 'o\h\\\4:\x\','wp-content/plugins/easy-facebook-likebox/facebook/admin/includes/efbl-skins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\nyuw\\ϥQxC',_binary 'c\>HVW\$?Mo#\B:wq\qQ@\8[\','',0,'?'),(_binary '{:;g1dK\z','wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-admin-page-easy-facebook-likebox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LMq\xş\\',_binary '\TU_X{ \[ՀUc4?f','',0,'?'),(_binary '\a<`yc\Ԇ\%','wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-authenticate-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';|Z\&ve+Q\\',_binary '\m2>Sn\?G:rr\\\;\^#H','',0,'?'),(_binary 'B\Zi4\`\Ž\WS','wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-auto-popup-tab.php',0,_binary ']\툄\'\т\0\"',_binary ']\툄\'\т\0\"',_binary '\n<?R\L\c#[*$\g⇻L[b','',0,'?'),(_binary '\\B\a\\\[','wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-clear-cache-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Jハ|\w/',_binary '}R\Ϫ\"Z3~\I\M{Zw>@\}\s','',0,'?'),(_binary '\\\`W0N','wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-how-to-use-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/\\Tv#CiRe',_binary 'go&\\0T\a_u^\\\\\\\Z`@','',0,'?'),(_binary 'n6T\N6m8','wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-likebox-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G?\܏Z\0*I\\\U\',_binary '\n\`\\(\\F\"W\\=\','',0,'?'),(_binary 'p,+0e\sBV','wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-moderate-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\\x0(',_binary '\-4n\r+\d;+@S?\\ib','',0,'?'),(_binary 'R\BH\"\\Q','wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-skins-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\)%NL\w\6',_binary '\\'8<\W;~\\\s4\)\0\y{>ޝ\`\1','',0,'?'),(_binary ';7Ii\\n\C@$|\0ڬ','wp-content/plugins/easy-facebook-likebox/facebook/admin/views/template-moderate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u\Z	X怄\NO\',_binary '\\8>a\\ߴ\\v\a\Z\'|׮coŀY','',0,'?'),(_binary '(\A-Y\_u','wp-content/plugins/easy-facebook-likebox/facebook/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8a@h\Y[\',_binary 'ןSѵ>i-}\Vw>WKQV\'\','',0,'?'),(_binary '\Ǟ1\bƎ>\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/css/easy-facebook-likebox-customizer-style.css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\xr-\w',_binary 'ٔ0\\\\\ޤOZE#\@͇x	Lu\{i\','',0,'?'),(_binary 'e[\\2&a	飝','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/css/easy-facebook-likebox-frontend.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\v㾛J*^#\',_binary 'Np:;\\Yoߖ\_@\j#`\'\>g&\W','',0,'?'),(_binary '\!.Ǵ1a2\}','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/css/easy-facebook-likebox-frontend.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DdmKq\\L`\ZL>',_binary '0l0JVx*/\\\xWa?k','',0,'?'),(_binary '޶%V\v\\\\j','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/css/esf-free-popup.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӛ\\\O\\@*',_binary '\ڏ\z\\4*\\3.\'s^','',0,'?'),(_binary 'n\\H\n`99^','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/css/popup_close.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\9<wڋ\xw',_binary '|\pO~pʨO\:\\oE@m^OQ\','',0,'?'),(_binary 'u\e\n\S7','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/efbl-angry.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ Q{\ʗq',_binary '\k~HY\0\\s\ؤfF<\2\\','',0,'?'),(_binary 'ۂ\2v\z0','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/efbl-haha.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\׀~] =u\',_binary 'v\\\n\@\9\t\Z\jr\\\\','',0,'?'),(_binary '\y\Ȇg-`\Z\l|a','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/efbl-like.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<@\\x@\\\QUL',_binary '\:5hASJ\0k1Z\~}\\FS؆','',0,'?'),(_binary 'G-׼R-\!¸','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/efbl-love.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\\ap',_binary 'b\rW@Vk\\\$\%\!%^\','',0,'?'),(_binary 'vWpzX\\n;b\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/efbl-sad.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+R|\^f	\S\K*c',_binary '(UuC\\\?H\Z\\q\\)\v%ɭ','',0,'?'),(_binary '\\YVc.;B\q','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/efbl-wow.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\^\\0\\:y\n',_binary 'L[,\0\e[>\ݩ\{m+Dh','',0,'?'),(_binary ';G\\0ho\\r','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/feed-placeholder-img.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S\͋$A\rw\ST',_binary '7\4`}\r\10\.\\Ϭ\?p0\{','',0,'?'),(_binary 'vO{9\DdlF\;','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/popup_close.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\9<wڋ\xw',_binary '|\pO~pʨO\:\\oE@m^OQ\','',0,'?'),(_binary 'We\gt=\"\rłH','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'zti1\\\hָ\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/js/esf-free-popup.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(@:\\E/#',_binary '<.\\ң;\oهNb(ƅQI\\SGiK,`','',0,'?'),(_binary '&|>3g\\D\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/js/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'vҴ攎\\V8','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/js/jquery.cookie.js',0,_binary '`>:\?|\\',_binary '`>:\?|\\',_binary '/dp\1 ,\ܡ|[?d\\\\o;','',0,'?'),(_binary 't}\\jҝ6\cf','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/js/jquery.magnific-popup.min.js',0,_binary '\ʩ|\T\@k',_binary '\ʩ|\T\@k',_binary 'ʂ\)j/Fւ\D\\3r\\\8\','',0,'?'),(_binary 'MޢP㪓i\\\{','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/js/public.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'juI\\%)v\\',_binary 'J>oz\]\\\(Z42|\]~\J','',0,'?'),(_binary 'L\=[\|?ʀZ\\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/easy-facebook-likebox-frontend.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '͂	XYՋƷ\<;',_binary 'NU\ɶ!j\\d^\\PRm4j','',0,'?'),(_binary '\0ﵘru==hK','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/_framework.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ﻨ\?1R?z#[',_binary '\\\̏\dEC\nDMLp','',0,'?'),(_binary '\9L\,\[\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/_functions.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q۸lq+༮\nv',_binary '22w`\\\]@Z;\\\ɷ)w\\6\\\','',0,'?'),(_binary '\͐\B\Lj۳)k','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/_grid.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S\\UdDuK\\ڔ',_binary 'j0\\'\ \b\\I\1\\\]DfΝ\\7','',0,'?'),(_binary 'R^[\%\Z\s\\\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/_mixins.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=CYW\mbfV\.r',_binary '3\\cQ\z|G~*\Օ;\ݘj#','',0,'?'),(_binary '=Hݗ+L\|','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/_utilities.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\"%\X\\-\h',_binary '\r\\\\2\L\\_|6\-U\"yO\','',0,'?'),(_binary '\+M\K\\\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/_variables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\K\K\w',_binary '\C\@i\\\'iL5\?03\$+','',0,'?'),(_binary 'R\\E)\_\\C','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_alert.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\s\dj}.0\]A',_binary 'V\\\,ΆoVJ\VVS\\','',0,'?'),(_binary 'Q\\\\(\u\\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_background-variant.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\n\\-\ZX1\',_binary '\fO\\\\\T[}3%xn%>B\\','',0,'?'),(_binary '\\,\e$}H','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_badge.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F;<*U9j\2\\',_binary 'Oc)]g	\[erk޵IQIW\yd','',0,'?'),(_binary 'X\үG\i\0\\\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_border-radius.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SA؎4\	^o]',_binary '1\韧G\'ʄ{O<\0G2R\{\\&','',0,'?'),(_binary '\\2\\0\Nך','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_box-shadow.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4ˉL)$\T\\ ',_binary '\\W}\\\eL\1^\w\def\r`t','',0,'?'),(_binary 'Pxr\\+o2bP','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_breakpoints.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]t45\\\a\\\wm',_binary '[}8/ܟn\\r\\j\]\\Z','',0,'?'),(_binary '\Z\"w@\-N\"D\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_buttons.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ⱦzoq?\',_binary '|\\d\Zh\T\= d\~J\"1\\\'','',0,'?'),(_binary '?RIkg_ynCB*','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_caret.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\aN\\ZI\[\Q',_binary 'Y2\0\ƉaI\\6,\v\\r\6Nɤq\','',0,'?'),(_binary '=*\\`J\'>\\\?','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_clearfix.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӖQL\>V9\n\',_binary '<<=\u\\\Z\3\\\>\ðן\','',0,'?'),(_binary '\P\At\\`','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_float.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rNIw	\^\\\',_binary '.+>acM\nآ?Wa&h)uH\<.\','',0,'?'),(_binary '\HB9K8\m\	','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_forms.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\CH\\\\Г',_binary '%\g\\~\\4> \O\{dݰwH[ױ','',0,'?'),(_binary '\\Ŭ]\:~S\[`','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_gradients.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t5q\d[к\\',_binary 'Y \ʻ\D]\\=\̕\;}y?~d%V?>','',0,'?'),(_binary '\á2\TZ[]W','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_grid-framework.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7O\)%6',_binary '\?mP\\Ѱ\6AH\{Ka2\\$\_','',0,'?'),(_binary '%e\rNY,<$V','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_grid.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uz:DU/Y@o\".',_binary 'l\\\rTu\@\_yM>\\','',0,'?'),(_binary '6_\\X\Z%J\$\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_hover.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɞ@<\D߆',_binary 'L#_\ \\_\zkhn\\\K\h\Wn','',0,'?'),(_binary '#\7O5\\\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_image.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K6\{\Cne\\',_binary '\h\Ѯ͉U{:,_/\U-\\g8yI\0\'','',0,'?'),(_binary '5cVHq\t}\i\\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_list-group.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\=\\[\eٽ*1',_binary ';]\[\^\VSQ\L2%\!׽pM&','',0,'?'),(_binary '\k\\Z(\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_lists.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\J5j\ \8T',_binary 'F\\I\H\Zd`:\"6~\vN\ ','',0,'?'),(_binary '/\h%\`]s\$','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_nav-divider.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&K=\j2)\v\pk5',_binary '\0\\g\K\S]{\v\6\`A\k ','',0,'?'),(_binary 'b$\[\\XI\\V\z*','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_navbar-align.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\~H\>S\0Q\_',_binary '\)쯱\F\f,2Ak<;\\Mv\','',0,'?'),(_binary '\KO\i\\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_pagination.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\07~Z\+^',_binary 'D&o\<\549o;\\\viŌ?\Y','',0,'?'),(_binary '\"Jh\L꯯\\q\'','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_reset-text.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]\\@C',_binary '\n\\\@8HVs\\\\Q&\Ba\\WS,u]\6','',0,'?'),(_binary 'E͞s{\'3.z','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_resize.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\_\\}Z)\',_binary '\{\>|N\\zѦ\\u^Fx','',0,'?'),(_binary '\B\C\\Ξ\\K\M\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_screen-reader.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\0]cGX\	U',_binary '\t_\ns~\i\5c\\rÏ\\\<D\B','',0,'?'),(_binary '\(%\&\\3b諒','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_size.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z\0(Ϣ\j\\r',_binary 'tV\:\\nf3V	\\\rO\\\d\nV$','',0,'?'),(_binary 'w\"\-E\g\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_table-row.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`8(k\Ϙy\^\',_binary '\C\\rWq6,V\[ai;\\tC(*n$','',0,'?'),(_binary '\0B	|5;N\s[*\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_text-emphasis.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SxӲ6h\\\N\',_binary '\'$g\\\۵[\\J\'\Plp$wK\P5c','',0,'?'),(_binary '\\\\2qH\/Ը','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_text-hide.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z\	:j6Z\',_binary '\[#5y\\Zȼ~\\neF','',0,'?'),(_binary 'ѷ\f:\6u\7^?','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_text-truncate.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ZB6E\֬8',_binary 'OJo\O-a\rCΕ\\\\e\\\\0','',0,'?'),(_binary '_x2\\[7۰>\ͥ','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_transition.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\uG\ZQ\\%z',_binary '\rFD\m)+\sqBѠ\','',0,'?'),(_binary '*#\]E<_\0M\_T\0','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_visibility.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1b<&\K\W',_binary '\d@\'7\\'\+Î\P\\\','',0,'?'),(_binary '˦9B\.Wd','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_align.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\\\n\,s\G',_binary '\r\yu\0S\ \ڷ\kOqp','',0,'?'),(_binary '\n=\yh\q\"z\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_clearfix.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7?V_E\W',_binary '\>\O\'\\4HSC\nXq\+0\','',0,'?'),(_binary '>j]}9\Z\\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_display.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zm}6,\\\',_binary '\\\io\!@w60\"\\\|\\_٠','',0,'?'),(_binary '\rnwa)|\I\4','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_flex.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\\[;\`cJC/',_binary '\\e\V\Uq\Q:\רlS	','',0,'?'),(_binary '\\nPOl4\\r-\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_float.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\\،KBB\e*\',_binary 'Nq#lGA/v\P|RG','',0,'?'),(_binary '-|[_H.E[A>','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_position.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%aR\ַ\2*\\',_binary '\rt㈊&AH$3\:r\O#V2D\z','',0,'?'),(_binary '!s\xܣ/+G\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_screenreaders.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\c\"C\2ύJ_\8-',_binary 'p%\\\>\T\芥G=$I#-\"CxE','',0,'?'),(_binary '\\.<[\\$s㋻','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_sizing.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tPv&~bPh\0',_binary '.\WkJ\ dw?a-\3\$','',0,'?'),(_binary 'Ӓj\nXO9$s','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_spacing.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*Q\\'(m^0*',_binary '́wH:[į\\\\x\/؈Ϭd̺','',0,'?'),(_binary '/\Csk\T2','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_text.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\\\\\\k\'\B',_binary 'y	td٫N2+\ui\\c\o	m,','',0,'?'),(_binary '(j\]D\&','wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_visibility.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z*xhE',_binary '\x,+\G\\``,\\"QI>PD\\\Z','',0,'?'),(_binary 'E\\\G\C\rV','wp-content/plugins/easy-facebook-likebox/facebook/frontend/easy-facebook-likebox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U>\any,\gf>!',_binary '#C\rf\\\[|eFp\HCL\"\+h\','',0,'?'),(_binary '\:r\i4za+W','wp-content/plugins/easy-facebook-likebox/facebook/frontend/includes/Mobile_Detect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\[I0\dj\X\\',_binary '޿\\\4\XK\䷇{f\3\\h','',0,'?'),(_binary '\p\j\>P[:\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/includes/core-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F\K8wh\\\}',_binary '<\\D\\\\{V\eC\8\l\W\|I=\','',0,'?'),(_binary 'Á_\ ­\M\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/includes/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'Z\\\\\\شg','wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/feed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\/< \\>\3\\',_binary '\H`s\5\oZ\#\U4_|zܠ','',0,'?'),(_binary '\\f6&PM&\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/html-feed-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`/P\%\0\',_binary '@\O\\\͇\C\s\[2聃a','',0,'?'),(_binary 'C#-\\*\\\V\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/html-feed-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r \\Z',_binary 'w7N-\C\z&AȼtJ\\~?\\','',0,'?'),(_binary '\\\Md$\ѱ̆2','wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/html-feed-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\J\6,=f',_binary 'NRN\.aF^\\AN\ӂ\@','',0,'?'),(_binary '\rv\\\x\\v\0','wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/html-free-popup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\`ն\\z-\\',_binary '٨`\F\}2e\\\Ijh5ԲJ?5U\','',0,'?'),(_binary ',k\\\\y=','wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'u\ƞ\&\\\','wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/public.php',0,_binary '5\\ᒨ\a',_binary '5\\ᒨ\a',_binary '\\eG\@A\=r$	\i\܅iRЛ;\n\.\I}','',0,'?'),(_binary ' sdc]\t|\aFu]','wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/templates/template-fullwidth.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&-\H[\=P\Γ',_binary '?Wy$\/k\\\zSHT\\\z\\4۱\','',0,'?'),(_binary 'mp\\3\r\*5W','wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/templates/template-halfwidth.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w7U\R9f>4\\\',_binary 'U\L\k\z#ɢ?\x\ppTsX%\Kg','',0,'?'),(_binary '\n=C*\'6%Z','wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/templates/template-thumbnail.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qYh	\cvշg#H',_binary '\\	\f\Xp\p~\\\*Y%c\','',0,'?'),(_binary 'f\\J\ٙE\L\\','wp-content/plugins/easy-facebook-likebox/facebook/includes/easy-custom-facebook-feed-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#xrm\\R\'u\',_binary '\Z\J~w!7*3nU\Z\pE\]P\N2','',0,'?'),(_binary '#{\RA\\Zk\\e\','wp-content/plugins/easy-facebook-likebox/facebook/includes/easy-facebook-page-plugin-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\\Zv.\2Qn\n',_binary '~>iW}\i\E` V;&T<oZ','',0,'?'),(_binary '&\0\`{BA߉\'U7','wp-content/plugins/easy-facebook-likebox/facebook/includes/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary '\\*\t\3mW\n\"','wp-content/plugins/easy-facebook-likebox/freemius/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\fp1\ak0t',_binary 'x6\@\\n\qv\dR>\\{8^_\\pQ','',0,'?'),(_binary '̏\\<-V_','wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/account.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QqU\([Rrt',_binary '\\8O9;\}yV\rH\BPOg^P.%','',0,'?'),(_binary '\\\~]\kӳ','wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/add-ons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uT\Z\"`^)\\'',_binary '4G\N\\gK4jc]~Bf\[1f\	','',0,'?'),(_binary 'B\\\4\~\\y','wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/affiliation.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1\r\\*m\',_binary 'v8%\\]\Ոڡ̦?$V\_o#Y\Z\Z\F','',0,'?'),(_binary 'mWn\7Ȕ\\\#','wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/checkout.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZT`Ì\i',_binary 'N5\r\\3u\[\\\&``b*\','',0,'?'),(_binary '(õ\5\9}=','wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/common.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p.0b/',_binary '\\\\M\Pf`ywڢ\2\OLO','',0,'?'),(_binary ',4~p\p\\\f<\q	','wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/connect.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\l;%\T9wo*',_binary 'jݔq\\>~\\Zpzq?Zm\\W','',0,'?'),(_binary '\أɀl\*HM<','wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/debug.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a%\nY {Էfh',_binary '4n8NMpsP\\\7x\\;\iDbe','',0,'?'),(_binary '\<\FѺ#o\\\','wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/dialog-boxes.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\߬\eE^*\<2',_binary 'rOS5j\r](\Pj.\\r9s<s','',0,'?'),(_binary '1o\_?o!','wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/gdpr-optin-notice.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4O\jؙK\r>[@\',_binary 'lXw}8a\Q\\nT\l\\#\\l\\ly\','',0,'?'),(_binary '6=q\3W7w\','wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary ',P\\cbі\t(!','wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/plugins.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\0\0W1:V',_binary '#Gʼ\\R00mAu\\Z\\l','',0,'?'),(_binary '\'֟\\\7\','wp-content/plugins/easy-facebook-likebox/freemius/assets/css/customizer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i0wz\<ذ\sb3',_binary '\ L(\\\L3>A\E\X3	a\','',0,'?'),(_binary 'pP\\O\,\Q','wp-content/plugins/easy-facebook-likebox/freemius/assets/css/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\i\\-Ͱ\{x','wp-content/plugins/easy-facebook-likebox/freemius/assets/img/easy-facebook-likebox.png',0,_binary 'hhXʅ\K_\ֺ',_binary 'hhXʅ\K_\ֺ',_binary 'Q\<\+ݎZ\\P7瑙v504ʶ ','',0,'?'),(_binary '`_HV\/\\','wp-content/plugins/easy-facebook-likebox/freemius/assets/img/esf-featured-post.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T[p<\oa=g-',_binary '[p\y-Uyw|M\`\\\@{:\0i\&','',0,'?'),(_binary '\0u\p:\\{\G\\\','wp-content/plugins/easy-facebook-likebox/freemius/assets/img/esf-multifeed.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hhXʅ\K_\ֺ',_binary 'Q\<\+ݎZ\\P7瑙v504ʶ ','',0,'?'),(_binary '謭\S\\\/4O8','wp-content/plugins/easy-facebook-likebox/freemius/assets/img/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\\h\\wҌL','wp-content/plugins/easy-facebook-likebox/freemius/assets/img/plugin-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Í/\\\nk\\\n8',_binary 'ϚNR\&}\\17\}(̌`I\'V\}\\L)','',0,'?'),(_binary 'ǃ^JMAK\Z\0fhL','wp-content/plugins/easy-facebook-likebox/freemius/assets/img/theme-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\3\o!',_binary '\(\_{\\QP\\\yV\l\jy\B\\~','',0,'?'),(_binary '\\0Nዞ\^P','wp-content/plugins/easy-facebook-likebox/freemius/assets/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'I\ؑf	2ªz','wp-content/plugins/easy-facebook-likebox/freemius/assets/js/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '!\"\<p	`\','wp-content/plugins/easy-facebook-likebox/freemius/assets/js/nojquery.ba-postmessage.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s\\rL\\[\',_binary '\D\\\ZIӡ[۪\\\jcPZgsW','',0,'?'),(_binary '7\\'2N\EhM%\\}','wp-content/plugins/easy-facebook-likebox/freemius/assets/js/nojquery.ba-postmessage.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gI*Bo\\v\\\',_binary ']\ހ\\\+fR\nQ%\נJ>','',0,'?'),(_binary '\\0sQr\UW\\\<','wp-content/plugins/easy-facebook-likebox/freemius/assets/js/postmessage.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e*\&o\'',_binary 'bM\r	{\TT\tװ\\t={\\aϽ#\q9','',0,'?'),(_binary 'Z;Ѐ`\+f\5<%','wp-content/plugins/easy-facebook-likebox/freemius/config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/hq_K©PNP',_binary '\0NG|c\]\\\\d=o\LV\\db','',0,'?'),(_binary ';\@\\f(bX\','wp-content/plugins/easy-facebook-likebox/freemius/includes/class-freemius-abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(E=\n',_binary '\y~#\]C&B+B;\ sÁ`٤W\','',0,'?'),(_binary '	^?\Z%\O\\','wp-content/plugins/easy-facebook-likebox/freemius/includes/class-freemius.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\e;.V',_binary 'PPnDm ̡\#\\Y\\=3','',0,'?'),(_binary '\\\WM\\/','wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-admin-notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`\+tԕ\1#\2',_binary '3c\&Z\XGT$lT.S(\'\ZA\','',0,'?'),(_binary '\:k\M@߽Y','wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g; ܓWU\LN\\',_binary 'ƋC*\u\Y\Bh`NdX+H','',0,'?'),(_binary '\&\֙\Rm,[)','wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-logger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\b\\\\М\\',_binary ']:o\cw]9i@&h\\3\','',0,'?'),(_binary ')\r)\O\ZF','wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\ZREk&\mf\v',_binary '\\'LMZA\F\\c\\yǧ&\8G\:','',0,'?'),(_binary '7+v:k\\\','wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-plugin-updater.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\\r\\!\p%\',_binary 'PY\\\'	w\a\A*\','',0,'?'),(_binary '\smVL\\Z','wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-security.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\Ia*Ġg{,',_binary '\ߑmDn[+A\ 4\,ה\˲P','',0,'?'),(_binary '\\N@g)\!\P\\Z\','wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w	`I\"Q \\',_binary '\?!o2\%>Le\AxH)s$S9\2\Z\Z\\8','',0,'?'),(_binary 'm\e5_C\a\r\G','wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-user-lock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\P;[\\S\\\\\',_binary '\r\K~\r\\9\_\N\r\','',0,'?'),(_binary '5\\'@<ѳJE\'','wp-content/plugins/easy-facebook-likebox/freemius/includes/customizer/class-fs-customizer-support-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\<,E\c\\'\',_binary '\\n=\\vX*zQ~M\&\Z?>','',0,'?'),(_binary '\uh\0Bhc\P','wp-content/plugins/easy-facebook-likebox/freemius/includes/customizer/class-fs-customizer-upsell-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}e3_Z\\\_8e\',_binary 'RBh \\Z\\}\'XiY)\x&sw`t','',0,'?'),(_binary '\?[(wfP','wp-content/plugins/easy-facebook-likebox/freemius/includes/customizer/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '-Ƃ&h\\C,','wp-content/plugins/easy-facebook-likebox/freemius/includes/debug/class-fs-debug-bar-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\\C\\_Kk\',_binary '7\r0P\\\\\\	Aa\ \$\mm\\\','',0,'?'),(_binary '.\_;_7\ȓc%','wp-content/plugins/easy-facebook-likebox/freemius/includes/debug/debug-bar-start.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_Ȳ\ǲ0\~\"',_binary '\Z!\w̃3[\r2\&&\\odl;','',0,'?'),(_binary 'rE0(\I\$<n0','wp-content/plugins/easy-facebook-likebox/freemius/includes/debug/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '>\V\cl[#%','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-affiliate-terms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5gҟ \\U\m-',_binary '[i\X\Q,na\\*\n\\f ¢n\0\6\|','',0,'?'),(_binary '\(\,v\Z\9P4\\ZV','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-affiliate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X&a0iu\FX\V',_binary '|e7NʕQ;ww %\\\','',0,'?'),(_binary 'ܤ5Nvz\`\qV','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-billing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\\DԻ\'\\\t\\',_binary 'X\{\\5\>\T*\y/*\qŪ\\b_njZ','',0,'?'),(_binary 'D͈q\	U)l\ٍ','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-entity.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZU< U\\ߜ',_binary '!\\>/i\lO\\e\	j\tdk','',0,'?'),(_binary '=a\"I\b\/\ p','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-payment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\5sk2\_\2t\=',_binary 'W\8#+\\\"\\/\\)+\Y\\','',0,'?'),(_binary 'g#\/\\\\\\\','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-plugin-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AVӥٵ\ѹi',_binary 'PC*ZL@\D!}\&\{8DwcH:\','',0,'?'),(_binary '[<Fs?#l\\0','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-plugin-license.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!a׊\\"͒Z`',_binary '\šY-,f\0-rC\\\Rm8\.\','',0,'?'),(_binary ';dK!I*57','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-plugin-plan.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'Sc\POH\\\=\b',_binary '\\j\\\\W{\\5\d\WJy[%z\r\','',0,'?'),(_binary 'ϗ\Ȥ\/	','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-plugin-tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\O0H?/\\"',_binary '7\\\/\\Z\\0 8XnP[','',0,'?'),(_binary '\\e\MyZ\','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r׫\m\^]ړ\',_binary '\ݶ\śI\\\\&1\\\K\"Eb,j5&','',0,'?'),(_binary 't2+A\\\\','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-pricing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\rYf\nO7',_binary '\j\\\Z_T\ibD<\DiTV\','',0,'?'),(_binary 'd\\o6KX,\ؘX5t','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-scope-entity.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\}\:Ke\\',_binary '\\$\m\׺K-P\|s\0X2\','',0,'?'),(_binary 'w|:lR\','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-site.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'όA)!G\\塆',_binary '\v\g m#>\#+I!\%\6\Z\X','',0,'?'),(_binary '4\ٌ\$R\\\uF\','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-subscription.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lY26i&h\*',_binary '`ݢj\\\nQ1-U4q\w\n\','',0,'?'),(_binary 'D(vs*Գz\\&>','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9J\Ѹօ\Z&',_binary 'KK8({!\a\\r\M\.z:w\"k^\','',0,'?'),(_binary 'q{\YD\"5Iϩm','wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\KXc\\','wp-content/plugins/easy-facebook-likebox/freemius/includes/fs-core-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\KhHK\j\}',_binary 'c\\l*C\+\ʰ\\\n','',0,'?'),(_binary '0\aP\c5vF!8\\','wp-content/plugins/easy-facebook-likebox/freemius/includes/fs-essential-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^;/oc\_\7i\ZP',_binary '(Q\[v|\;\\\Bh\ee]Uc','',0,'?'),(_binary 'i+\Z\0^C\A\','wp-content/plugins/easy-facebook-likebox/freemius/includes/fs-plugin-info-dialog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0W\"ZL t\r\N\)\',_binary 'GE\"!\j\\\\߾\c&\mح\",','',0,'?'),(_binary '\\\JXF\','wp-content/plugins/easy-facebook-likebox/freemius/includes/i18n.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wA\ՙ\im\a',_binary 'pʧ\5\\=\\aۧU\\\	\\\\\Y','',0,'?'),(_binary '\nf(!~06Έ\ry','wp-content/plugins/easy-facebook-likebox/freemius/includes/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\x--c` Y]_','wp-content/plugins/easy-facebook-likebox/freemius/includes/l10n.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`x\.\\0u\[\'',_binary ' |L\JV>#o\@ՒAu5\','',0,'?'),(_binary '*/u\l\P Q','wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-admin-menu-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4lUE(\}\Ǐ#:',_binary 'lm\9%N\9\թasG\\gw6\','',0,'?'),(_binary 'i\1\\|NG','wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-admin-notice-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\H9#{\?q\\',_binary '\\w{\#\0\2\đnA5P*1 b','',0,'?'),(_binary 'l%\;t\\I\\[','wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-cache-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\0h_+eS4v',_binary 'S\z5\)2姣VTE\4`$a\\bhj','',0,'?'),(_binary '2D^y\"s֟C\','wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-gdpr-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NWē\Kr2\-',_binary '\<0\\TOJ\\n}J.\r\\i\(k','',0,'?'),(_binary '\DI\\h:','wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-key-value-storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K\|;P\9',_binary '\v\Dq\hMU zM3\g~%\','',0,'?'),(_binary 'TQ\=ŉ|\\>','wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-license-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/<\Ȓ\nx[\nF!8',_binary 'أ\nw<<ǋNJ]\\\06\s\g(\F','',0,'?'),(_binary '\\+y3\8q _E\FlP','wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-option-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#lZA\\lRX80\\',_binary 'Erw.]%\\/ j\`\\1\K\rl','',0,'?'),(_binary 'a\Z\\\\YQ\Tr','wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-plan-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S\;CS*',_binary 'okvY\q7M\^\\6[P^\祧','',0,'?'),(_binary '\w}\&P-w','wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-plugin-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']xn>\'*Y>',_binary '1\\<-Ѣ\"%Ƹ^\)=M[\\+o','',0,'?'),(_binary '\_\\\?\\s\Zܙ','wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'Jm=gm؜K^','wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/Exceptions/ArgumentNotExistException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\U*W@c\ü\',_binary 'A\\=F\p\\Oqv\_M<`i\','',0,'?'),(_binary '\L\qz\0_\nz\','wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/Exceptions/EmptyArgumentException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\\\Z\\E-\.',_binary '\\+n,\\\Z\n%l\Z\\\','',0,'?'),(_binary '0A\=\NHu$\S','wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/Exceptions/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\\w\\6`n,X',_binary '\\\ xv\\m hRQ\ڢoee\T','',0,'?'),(_binary 'D\|g,B\n','wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/Exceptions/InvalidArgumentException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';Ra\Bb\',_binary 'AP:+\CF\0=\f\\\QJ*ӢДhq','',0,'?'),(_binary '2e_\\G\"\NYy','wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/Exceptions/OAuthException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"bviݎ\nۉPK\q\',_binary '\$\!b\etS5,\\×\U\@Q3\','',0,'?'),(_binary '%	ۅ\p\*[;\\\','wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/Exceptions/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'I\\\\7̺\\\','wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/FreemiusBase.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A\^+G\\\\',_binary '2\\v!\\\\0\W\s<@\rM\Z\','',0,'?'),(_binary '\kڸ\\Z	\Ya','wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/FreemiusWordPress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\\D5\\[\\)',_binary 'b+`:Pm\#?|\FX&\	b5','',0,'?'),(_binary '`ԟ	H6G\\','wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dS\\Nl3V5\j\"',_binary 'X;\1Mr\G{\\y\\%1\`\\ak[','',0,'?'),(_binary 'V\R\\\rV\\\','wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'Y\\\:[pV1dBa','wp-content/plugins/easy-facebook-likebox/freemius/includes/supplements/fs-essential-functions-1.1.7.1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PICK,8	)\\u',_binary '߾\\ߟ7\|\\ Y:\ƌ','',0,'?'),(_binary 'ڡTu:\n\@e\\\Z','wp-content/plugins/easy-facebook-likebox/freemius/includes/supplements/fs-essential-functions-2.2.1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӻ\\K1Ɛ+',_binary 'X\>k\\Dҳ\Z*\\\$ր','',0,'?'),(_binary '\E6`}$4V(?=\g','wp-content/plugins/easy-facebook-likebox/freemius/includes/supplements/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\x\W\"@d?.W','wp-content/plugins/easy-facebook-likebox/freemius/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'P&\A[oX\\p\J','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-cs_CZ.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_y;\ߡw=\\',_binary '!U4\s\\y\\(\\Bd6\2\Ol','',0,'?'),(_binary '\j\r\\\\\n\(\9','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-da_DK.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ɞ|U~h[\A^',_binary '+D~ڱahXe5z1i\"\','',0,'?'),(_binary '\(\\B;\PlTi','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-en.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`#\AϿq\',_binary '\\n$P|2$5\Y\n~\$\SR/D\','',0,'?'),(_binary '#|da\B\lF\h\','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\XPF[V0~\\',_binary 'Bp8%6\\\L\QnKD܇6,\','',0,'?'),(_binary 'P\r.iCi','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-fr_FR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'soR\\y\\fg|',_binary '%\@!hz\\\޹\;E4WY\Wi9','',0,'?'),(_binary '\o\AE|s\\!','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-he_IL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\8\Ď\+\4P',_binary '!%\Z֗pM݅\n\2A\>|8R','',0,'?'),(_binary '\8*/\\l97\"\\xi','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-hu_HU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X8h+_\Z\X\',_binary 'S*]\0ҕ\rrQRUNw\Mcش\0\','',0,'?'),(_binary 'X\T}R(X\E\b4','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-it_IT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\OB0\k:\o+',_binary 'e(\\:?e\\E\vST_h','',0,'?'),(_binary 'S3|2T\W)e|`','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-ja.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LK\\b\\r\\',_binary '\<\V\\S\\3J@\r\0\P\'\0\\=\P$','',0,'?'),(_binary 'V:\ib\ZL\\','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-nl_NL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+c=Rz;.',_binary 'B0\0G\[\r\V\n)]i\-D\UxC','',0,'?'),(_binary '\1r\\A!\\,;\','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-ru_RU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\H\`U\%\',_binary 'j?\\\§의4.!\h\;4gZN\1','',0,'?'),(_binary 'eY\\\Lj9V','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-ta.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+w\ZC螙/',_binary 'd\\F۸\;\p\Z\#\0Ud\/zF+\','',0,'?'),(_binary 'N\n5w\YZ\','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-zh_CN.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\N\,{{4u(Q\',_binary 'Ja^\\)F~\\ngFvjȀm','',0,'?'),(_binary '(\c|\\:g`\\\\','wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z~\dIse\n',_binary '߃Wg<vv\r~#%\1zȻ','',0,'?'),(_binary ')\\(\\\%\$','wp-content/plugins/easy-facebook-likebox/freemius/languages/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'G\\0-\gl<\\','wp-content/plugins/easy-facebook-likebox/freemius/require.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XA\\\Ӵr&ӟ',_binary '\n@.$\ʫ^phjUnNKlA8e','',0,'?'),(_binary '\\\|7zz\-FɁJ','wp-content/plugins/easy-facebook-likebox/freemius/start.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']^6\Z`e{w',_binary '\N\e.S\/jVJ´٢VU\0S\Zhm\','',0,'?'),(_binary 'IG?h˳oxd\n\Ay','wp-content/plugins/easy-facebook-likebox/freemius/templates/account/billing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jq$_\\P\Q1',_binary 'Ki_;F\=,&\\#b\"r\'\cNL\[','',0,'?'),(_binary '\U\i\@x','wp-content/plugins/easy-facebook-likebox/freemius/templates/account/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'К[D1\8p?Z','wp-content/plugins/easy-facebook-likebox/freemius/templates/account/partials/activate-license-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'keUEÄ9X\/U',_binary ' e\Ba7\*\\r`\@\捴#Gn\','',0,'?'),(_binary 'f\\fŤ\'Uu\','wp-content/plugins/easy-facebook-likebox/freemius/templates/account/partials/addon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-.fvo\a\\\\',_binary 'V\\rAw\\e\\J\Reĭ\8\a\%','',0,'?'),(_binary '\`v2\\\\͟\','wp-content/plugins/easy-facebook-likebox/freemius/templates/account/partials/deactivate-license-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\\\r\㳁1h\',_binary 'hwR\zWZ|3V\\\[A8=','',0,'?'),(_binary '걊{d\\\QfT{$','wp-content/plugins/easy-facebook-likebox/freemius/templates/account/partials/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\\Y\\i\0C?d','wp-content/plugins/easy-facebook-likebox/freemius/templates/account/partials/site.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<x\\X\0X։o',_binary 'd\r\J_Ĩr\U\\~ȹܬ!c\\/!k\','',0,'?'),(_binary ']%JZ\K5c','wp-content/plugins/easy-facebook-likebox/freemius/templates/account/payments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E\,\%\\\',_binary 'x_*QDMїHc![å-\'\d\','',0,'?'),(_binary '}C!RA^L?h6m{','wp-content/plugins/easy-facebook-likebox/freemius/templates/account.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#uRK)\\\',_binary '\6#np\5\\ZD҂lg!\V<r\\N㓁','',0,'?'),(_binary 'MٟegE%M','wp-content/plugins/easy-facebook-likebox/freemius/templates/add-ons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MBm\ٱSqv',_binary '\[>z\*Zq<1/O	\!\','',0,'?'),(_binary 'p*c^#谛','wp-content/plugins/easy-facebook-likebox/freemius/templates/add-trial-to-pricing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5ַרG2\\r\0',_binary '\Zֵ\\sZ\\l@\.T,\#YD','',0,'?'),(_binary 'w\\gަN','wp-content/plugins/easy-facebook-likebox/freemius/templates/admin-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\2t/F\\#',_binary '\\O\Q\Ao-%\\Jd^\\\F+H\l','',0,'?'),(_binary '\-\}!\\r#\[','wp-content/plugins/easy-facebook-likebox/freemius/templates/ajax-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\Q˕P\_$w0',_binary '\$\bj\ZP (\Z\|>壋\\XO','',0,'?'),(_binary 'jt\I,~\\~\\\','wp-content/plugins/easy-facebook-likebox/freemius/templates/auto-installation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y{<s\\"9\'y-F',_binary '_\Uи%+p\\'}5f\\\r@b','',0,'?'),(_binary '\\_6\\\\','wp-content/plugins/easy-facebook-likebox/freemius/templates/checkout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\:\\@!d\$',_binary 'NdmŁ\9\Z\fF\\ւ^6\6F\eǖ\','',0,'?'),(_binary '\څT\rMlDTT','wp-content/plugins/easy-facebook-likebox/freemius/templates/connect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\\\\r\\5\\/0',_binary '?\$!<f\"Wyp&\hV\\'','',0,'?'),(_binary '\\E	\ʕ^m\','wp-content/plugins/easy-facebook-likebox/freemius/templates/contact.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\羲^zKa]\',_binary 'iE\\Պ¦/ۙ\\^8\./X;','',0,'?'),(_binary '@\Ҍ3p$#l','wp-content/plugins/easy-facebook-likebox/freemius/templates/debug/api-calls.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\bx\\\uA\',_binary ':\\&GV\\\\#_\ni','',0,'?'),(_binary '\#	G\Z\r[J$','wp-content/plugins/easy-facebook-likebox/freemius/templates/debug/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '3\o\t\\{\g\','wp-content/plugins/easy-facebook-likebox/freemius/templates/debug/logger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '͟ҜG}\Ŵm',_binary '\ݣ\	]\//\\\Z]\6;r1\>','',0,'?'),(_binary 'l؉\\H;\>rB\','wp-content/plugins/easy-facebook-likebox/freemius/templates/debug/plugins-themes-sync.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$?OxkƩyOȀ',_binary 'ޫw%ei<38ƌK\\rbC0ϼ','',0,'?'),(_binary 'U\#iɯ\%\44\\','wp-content/plugins/easy-facebook-likebox/freemius/templates/debug/scheduled-crons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_yJk0ns/',_binary 'EЅܔ`\\=\[\t5Q<J8;\','',0,'?'),(_binary '&w\\ʹ\4\\O+','wp-content/plugins/easy-facebook-likebox/freemius/templates/debug.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\\rZ6\&C\',_binary '\tη!t\\\\\\\Q\6Jv\Kv','',0,'?'),(_binary '\\U\E܋\rr6','wp-content/plugins/easy-facebook-likebox/freemius/templates/email.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{7\q\\\\B&',_binary 'mJ\fP1(o\43)\n5\β','',0,'?'),(_binary '[Or+Ƿ\\Ccp','wp-content/plugins/easy-facebook-likebox/freemius/templates/firewall-issues-js.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lBfsMVɍ	Y',_binary '49Ջ\\&^\S#\\]4v','',0,'?'),(_binary 'K+ts\\o\','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/affiliation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ȩ\v\(\F\B',_binary '\\]yr\3\\\2s\\'tٔ\P','',0,'?'),(_binary 's`ǥ8L#L','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/data-debug-mode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ҙ?\\_\3N',_binary 'mRӺT\{Rm\0q\n$\\3\OeE','',0,'?'),(_binary '~\F>$\7','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/deactivation/contact.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nYh\<\K',_binary '˅ +Us	;=ls\','',0,'?'),(_binary 'p>\`\\\H','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/deactivation/form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j2\{\\\7',_binary '#r%-!\\(\;{9\\o\','',0,'?'),(_binary 'A\$sx\\0\Tܶ8','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/deactivation/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'K\L@>\\ns~e\o V','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/deactivation/retry-skip.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\V_k\XH\L\',_binary '6ϛUg o\\bzO*6KQxP#\','',0,'?'),(_binary 'w\h\C@BUA\','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '2@C\&]@\u\I\5','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/license-activation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\B\\\}*@%S',_binary 'Ђ\b/E\{8l[\Z\"7\\\','',0,'?'),(_binary '@)xz\HFX\','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/optout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\i]b\\ҙP',_binary '\<UϼtrE\cϿ\\u','',0,'?'),(_binary '\\W\r:e8W(','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/premium-versions-upgrade-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ck\_',_binary '\ \/\-4\蔦<\R\(\n,(\0W','',0,'?'),(_binary '\"\)X\(_\Z','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/premium-versions-upgrade-metadata.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\\fU?d\29\',_binary '0,KbO8Us\\$%q\\8\ \\','',0,'?'),(_binary '>+0>\E\nˀױ','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/resend-key.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|c5]+˂=ѿ',_binary '\\)$co_\Z<L	ؔ7\\\n\N*R\','',0,'?'),(_binary 'Hx\\0\7lˌ','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/subscription-cancellation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0T\A\\kq',_binary '*,*\~\\4&˸̊\3\$\0','',0,'?'),(_binary '\'g\\-\nfJ{','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/trial-start.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&~\Hmo\',_binary '\^͗U\6#\O׫\ɍ\m䭓Dā','',0,'?'),(_binary '\d\cy]\B\7t','wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/user-change.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!ঔ;}*4Mu\Q',_binary ',I};N$<\\\\py/#','',0,'?'),(_binary 'Q\]\\'5	\N<p\h','wp-content/plugins/easy-facebook-likebox/freemius/templates/gdpr-optin-js.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pQ)\=\t{C',_binary '\f \\\t	,am?\*G\','',0,'?'),(_binary '>\1\Z	\r\pz\','wp-content/plugins/easy-facebook-likebox/freemius/templates/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\ \+\\\zQ\S','wp-content/plugins/easy-facebook-likebox/freemius/templates/js/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'L\crA+\0\\\','wp-content/plugins/easy-facebook-likebox/freemius/templates/js/jquery.content-change.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/6E\DΥ8\H',_binary '0\\ ho\x\4HY\\\P9AI','',0,'?'),(_binary '5\ۛR+\\ˎK29','wp-content/plugins/easy-facebook-likebox/freemius/templates/js/open-license-activation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\u<\\3\|DX\\n',_binary '\sу3\W\\~\WPػ;(X','',0,'?'),(_binary '\\iޖ\ӡ~\u','wp-content/plugins/easy-facebook-likebox/freemius/templates/js/style-premium-theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Լ\7%\1_׎\',_binary '͹X_P\\3\pP\`{ ǘI:A','',0,'?'),(_binary '\\)\\\BZũ\','wp-content/plugins/easy-facebook-likebox/freemius/templates/partials/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&\B\_rlJ\'\n)',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'e:a\+\yr\[','wp-content/plugins/easy-facebook-likebox/freemius/templates/partials/network-activation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+pL\\!_漠\\'\\',_binary '\2\Z.?\\0QsSx\r5y=<|\-;*','',0,'?'),(_binary '^\Z\6\\r:\','wp-content/plugins/easy-facebook-likebox/freemius/templates/plugin-icon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\	t\nI~\w',_binary '?&;\0\(ٍb\\gy,S<\','',0,'?'),(_binary '9\,[G\\','wp-content/plugins/easy-facebook-likebox/freemius/templates/plugin-info/description.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4[@Pe=FwT',_binary 'J)S>\	8u#rA\!E\\\\','',0,'?'),(_binary '3\\\ǭv\=\\\Ԁ','wp-content/plugins/easy-facebook-likebox/freemius/templates/plugin-info/features.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Xz}!\UWs!',_binary 'S\\"\00\\t`q.*d1P;Z\c\.9','',0,'?'),(_binary '%J6G\Z(d\w','wp-content/plugins/easy-facebook-likebox/freemius/templates/plugin-info/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary ':4\Z\ޙÌaʇ','wp-content/plugins/easy-facebook-likebox/freemius/templates/plugin-info/screenshots.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e? g4Y\\\]\',_binary '\ɹS\\@\	MH<*7F,\Z','',0,'?'),(_binary 'jK7\\\W\\1w','wp-content/plugins/easy-facebook-likebox/freemius/templates/powered-by.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@f\\Dՠ\"\	G\',_binary 'z\Χ\n\yS\(IY4`7\\','',0,'?'),(_binary '\#[2wTUq\2','wp-content/plugins/easy-facebook-likebox/freemius/templates/pricing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\BnAV\0\|+\j',_binary '(\VA0\OS	!9wa\<\b\','',0,'?'),(_binary '%\{^\\~','wp-content/plugins/easy-facebook-likebox/freemius/templates/secure-https-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+ՁLl3,\D\\',_binary 'b\rp\?\W]ձ-\4\\ˌF\pe','',0,'?'),(_binary '\\\X%rq#F{','wp-content/plugins/easy-facebook-likebox/freemius/templates/sticky-admin-notice-js.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\\#Եzl_,Q',_binary '\\\\<\o\|ۭѝI\~}&җ','',0,'?'),(_binary '\	௹L\\','wp-content/plugins/easy-facebook-likebox/freemius/templates/tabs-capture-js.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\r\Z<\0 ',_binary '@7\\1\ʬܧA\Z{ܘyq$1s)','',0,'?'),(_binary '+;\XJЇbftX눯','wp-content/plugins/easy-facebook-likebox/freemius/templates/tabs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\._fRa\\\#ì',_binary 'b)WR&\4T۫\dv\p\Y>\n\\r','',0,'?'),(_binary '6\Ծn;/{\\','wp-content/plugins/easy-facebook-likebox/frontend/assets/css/esf-custom-fonts.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\\a~ۨ7',_binary '\We\S8=mpr(HM}OliWyV','',0,'?'),(_binary 'cRnQ\ҩ]#_','wp-content/plugins/easy-facebook-likebox/frontend/assets/css/jquery.fancybox.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%)/dł~g&',_binary '\\\v}u\P_.bLIo\"\1\\'!','',0,'?'),(_binary 'V\nJ\Vk','wp-content/plugins/easy-facebook-likebox/frontend/assets/css/owl.carousel.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u*\rD\\06b\\;',_binary 'NZ_Kq\ձ\`\\\d\Iui','',0,'?'),(_binary '\\ЧƧ\\@-','wp-content/plugins/easy-facebook-likebox/frontend/assets/css/owl.theme.default.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YKZg\|p\\r',_binary '\n\O\\/\\ݗ@n\B\l\\ĳ','',0,'?'),(_binary 'Jq\\\Xǻ','wp-content/plugins/easy-facebook-likebox/frontend/assets/fonts/esf-custom-icons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ç\K|Є)\',_binary '5S\\Vyj*E\\\ؑw\svoi8','',0,'?'),(_binary 'G\:`h\@\\\\','wp-content/plugins/easy-facebook-likebox/frontend/assets/fonts/esf-custom-icons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M0?\`E`[',_binary 'vH\,Sʃ\AqZ\\DHU','',0,'?'),(_binary 'j\e\\ra\','wp-content/plugins/easy-facebook-likebox/frontend/assets/fonts/esf-custom-icons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WP[e\X3Eu\',_binary '\V%Es\?u\|)4ӣyxA\'','',0,'?'),(_binary '+\ne\\u\ P[{Ϗ~','wp-content/plugins/easy-facebook-likebox/frontend/assets/fonts/esf-custom-icons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*\Z\ظ0a\\3\\',_binary 'F\\S	F\о\"\"\(ĸ\{d\;t%~','',0,'?'),(_binary 'g\"\1;\Y\ć','wp-content/plugins/easy-facebook-likebox/frontend/assets/fonts/material-icons.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\\z\"\',_binary 'g\*w\cl$\yg\cj\\K\4Y9\֒','',0,'?'),(_binary '\1jS.:','wp-content/plugins/easy-facebook-likebox/frontend/assets/js/imagesloaded.pkgd.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%{rkA1/`',_binary '%Wy\\~\B\GJ\\舍X\\'V\D','',0,'?'),(_binary '\0Ax\','wp-content/plugins/easy-facebook-likebox/frontend/assets/js/jquery.fancybox.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\4?9~\',_binary '\\̖\ԝq\0yv\} d!O\\_','',0,'?'),(_binary 'h>f\(!\\\G','wp-content/plugins/easy-facebook-likebox/frontend/assets/js/owl.carousel.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%%V\\ix',_binary 'RBISyPH Y/\nwe!\eӶ\O\\'','',0,'?'),(_binary 'xcH(h\5&z','wp-content/plugins/easy-facebook-likebox/includes/class-module-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\O\Ƽ\CMG\\$\c',_binary 'Fu\0\!j=\\\'OaPVs','',0,'?'),(_binary '\jG!`\z+\&','wp-content/plugins/easy-facebook-likebox/includes/core-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\@#\\ȟ\ \bWB',_binary 'a\'Q\f1+H\\\w\ZGH4??','',0,'?'),(_binary '\5\_`\MN\ൠ','wp-content/plugins/easy-facebook-likebox/includes/easy-custom-facebook-feed-widget.php',0,_binary 'n\\C[p#H',_binary 'n\\C[p#H',_binary '\ۂ\zB\6T\0T0 vr','',0,'?'),(_binary '\\\%\L[\N','wp-content/plugins/easy-facebook-likebox/includes/easy-facebook-likebox-widget.php',0,_binary 'hύb\p2]LH	h',_binary 'hύb\p2]LH	h',_binary '\\\-\!bm\d\\"\5k:\R\<Nu','',0,'?'),(_binary 'i\B\ijw8sؐ1','wp-content/plugins/easy-facebook-likebox/includes/easy-facebook-page-plugin-widget.php',0,_binary 'p=$i\M',_binary 'p=$i\M',_binary ':Q\=\$܄RS\\\0-s]ۓh','',0,'?'),(_binary 'ܳ^}tww[άob.\\n','wp-content/plugins/easy-facebook-likebox/includes/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary '\5U\\n\(;R\dr','wp-content/plugins/easy-facebook-likebox/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary '2G gCBU[','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/css/esf-insta-admin-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\\\\}%\o\',_binary ')2Ȯ\0bƕ3\\\:27Jb\./','',0,'?'),(_binary '\=\#\\\\a','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/css/esf-insta-admin-style.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\ZZ\\rC@\\l',_binary '\k\*\'5~\\I\\S2\bN\','',0,'?'),(_binary '\7>\\#\?J\2^\r\','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/css/esf-insta-customizer-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x:XEHC#ص?t	',_binary 'L=\Щ\]Q\\\r9Ẃ&\\\\\','',0,'?'),(_binary 'χXߜtࣝ>','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/css/esf-insta-customizer-style.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\8㲡ҏʮVH>',_binary 'ϯGS\[^\A\#>\0u>M\@','',0,'?'),(_binary '\$Bhc\\ihޅ\','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/images/carousel.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\W\(݃\\\'\',_binary '\Zm\P~$\\\:_S3Τ','',0,'?'),(_binary '\\܁sS~\v\v','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/images/full_width.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[ը\_/\l\*^0',_binary 'H\g\\(\Át\9_\\0','',0,'?'),(_binary '\K|Tv@/','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/images/grid.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\H\}tT\,! ',_binary '¡ڿPĴ/i؜\Ä\贱g\Ӓ\+','',0,'?'),(_binary '\\Ey:\0','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/images/half_width.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<$VWr\\,B',_binary 'Ҏ\\@\ֳVo\\\s\\@Bt','',0,'?'),(_binary '*\տ\\`Gi]k','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/images/insta-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o\\-ƿ\}}D',_binary '[K`6\~zV\#jH|O|MP','',0,'?'),(_binary '\\9;\I\r\J\\Z6','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/images/masonary.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\<5u<2U\o',_binary '*j\#c\\ecp\nl\W\\6i','',0,'?'),(_binary 'F~f_\\\\\>','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/js/esf-insta-admin-script.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\h:i\ZY&?7',_binary '`\\B)\1|_\\S\ݺ7eZr&\\;','',0,'?'),(_binary '«\O4uH\o','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/js/esf-insta-live-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uNT\![\e߸\',_binary 'Jk\[\\rwL#\\\4D\ls\\\.\\\','',0,'?'),(_binary 'a\\\r\\D\\{ȓ_','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/scss/esf-insta-admin-style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'м.i=T\DI:\',_binary '\)\h\\NYno\\⫢\\r	','',0,'?'),(_binary 'Io\\`Z\r','wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/scss/esf-insta-customizer-style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't.b\\\<\W',_binary 'Ȟ2nS)Bɐ^+C|\\r\WP&\\','',0,'?'),(_binary '\\TvM:\0S}#\','wp-content/plugins/easy-facebook-likebox/instagram/admin/class-easy-facebook-likebox-instagram-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gޫ\\?\X\0\\',_binary '\"\\i\\6{\\\3ԵiU\\Ŗ!;}\R\\','',0,'?'),(_binary 'IL((Pȍ<	m','wp-content/plugins/easy-facebook-likebox/instagram/admin/includes/class-esf-insta-customizer-extend.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.\Bn\\Q',_binary '$Z\"R\*&\ۙܽ>$t~i;','',0,'?'),(_binary '>Y1\\"i\','wp-content/plugins/easy-facebook-likebox/instagram/admin/includes/class-esf-insta-customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\r^B\',_binary '1سdNE!l_qB	\?N#\ǌ\W','',0,'?'),(_binary 'aV	.\r\=W~','wp-content/plugins/easy-facebook-likebox/instagram/admin/includes/class-esf-insta-skins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3&\¿\ϔ\AlM',_binary 'Y(\&͚Ihz\\'L\\},c\\K\B*','',0,'?'),(_binary '\n#ne\Đ6M\5 u','wp-content/plugins/easy-facebook-likebox/instagram/admin/views/html-admin-page-mif.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O(g\l\^M9C\\­\',_binary 'H\':li\kN\wqb\ɀ}`\','',0,'?'),(_binary '5_\d\\\f@\S','wp-content/plugins/easy-facebook-likebox/instagram/admin/views/html-autenticate-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1[^\^-uh\\Zg',_binary '6\;\\OU\\'``tU#SHQl\\ZE\KO','',0,'?'),(_binary '\\2\+\\ѧ\','wp-content/plugins/easy-facebook-likebox/instagram/admin/views/html-clear-cache-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\	%q9\~Eg\\\Cw\',_binary 'Y%T8\Z/\\\YK78\f\_jVp\\8','',0,'?'),(_binary ']\n\\\\v','wp-content/plugins/easy-facebook-likebox/instagram/admin/views/html-how-to-use-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=t]\n\p',_binary '\	\Ə\g\\ڬ/\qB\\`ձ\','',0,'?'),(_binary '\Pw\W\\\tU','wp-content/plugins/easy-facebook-likebox/instagram/admin/views/html-moderate-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(~\	jcF',_binary '\\JW\\\rؔ@ER\R\;\X:je#x','',0,'?'),(_binary '\\!Q2:\_\f','wp-content/plugins/easy-facebook-likebox/instagram/admin/views/html-skins-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ǵ6\T\'@',_binary '}\$\\\/)\ܺ\\\\wRy\\','',0,'?'),(_binary 'm\'jy/ݑ\Ŷ','wp-content/plugins/easy-facebook-likebox/instagram/admin/views/template-moderate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\7\hKo`',_binary '&\NK\.\"\L<0\ \"\MS$f','',0,'?'),(_binary 'XVz\\\rp','wp-content/plugins/easy-facebook-likebox/instagram/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\	,Z b',_binary 'q{	\!u\\f1\\HiƸsB\x)','',0,'?'),(_binary '7\0O\[f\\\?\.','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/css/esf-insta-customizer-style.css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2gbN=b',_binary '1j`ü䔟\9Z \\\L3\\y\n\'','',0,'?'),(_binary 'l9l\\jN\%\n','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/css/esf-insta-frontend.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z\܆?hѓ\',_binary '\\Ç\/6p\\@S+cf3\=WC\j','',0,'?'),(_binary '\@[P{ ?H\ӕK','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/css/esf-insta-frontend.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Г}\\uq\S',_binary '@\\m\P\xd>Rt\n\rU\\cJ\)\\F\','',0,'?'),(_binary 'KPE:\Ds\L','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/images/esf-insta-video-placeholder.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q/\m*𶏖z\',_binary '4wK܌\w\\T\b\ɏ\1\K','',0,'?'),(_binary '	1t\guS\r\'9c','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/images/insta-stories.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-(^b0\\(y',_binary 'd\7.ߦ[\6\PP\kz\aJc;\'8','',0,'?'),(_binary '\\	\\-\t\\n','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/js/esf-insta-public.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	I\w\\=t\~K\',_binary 'x\\=\ʲU#]-)\\5G{\r$Eta','',0,'?'),(_binary '\t\Q4\L\rKRp','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/esf-insta-frontend.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\~\XN',_binary 'XֿƎU\\o9Ԟ\\\\n06֩ؑz','',0,'?'),(_binary '1t)Z\e\\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/_framework.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6\.iBЛ\\',_binary '\\\̏\dEC\nDMLp','',0,'?'),(_binary '9\Œֳ!p','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/_functions.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q۸lq+༮\nv',_binary '22w`\\\]@Z;\\\ɷ)w\\6\\\','',0,'?'),(_binary '\]VbO>$\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/_grid.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-P1%҅pEr\',_binary '=0\rs\\c)syW\	2\h\GA','',0,'?'),(_binary 'DRLv\⎼','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/_mixins.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=CYW\mbfV\.r',_binary '3\\cQ\z|G~*\Օ;\ݘj#','',0,'?'),(_binary '\wۦ\Z\H\\ކ','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/_utilities.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\"%\X\\-\h',_binary '\r\\\\2\L\\_|6\-U\"yO\','',0,'?'),(_binary 'g#\nǕw5\BV','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/_variables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\K\K\w',_binary '\C\@i\\\'iL5\?03\$+','',0,'?'),(_binary 'P?\1<+\\hG','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_alert.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\s\dj}.0\]A',_binary 'V\\\,ΆoVJ\VVS\\','',0,'?'),(_binary '\l(\\Bć^\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_background-variant.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\n\\-\ZX1\',_binary '\fO\\\\\T[}3%xn%>B\\','',0,'?'),(_binary '_=f\v,(%G\\\r\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_badge.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F;<*U9j\2\\',_binary 'Oc)]g	\[erk޵IQIW\yd','',0,'?'),(_binary '=[\7Hy\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_border-radius.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SA؎4\	^o]',_binary '1\韧G\'ʄ{O<\0G2R\{\\&','',0,'?'),(_binary 'ŝX>U<\+','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_box-shadow.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4ˉL)$\T\\ ',_binary '\\W}\\\eL\1^\w\def\r`t','',0,'?'),(_binary '\E|)\U\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_breakpoints.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]t45\\\a\\\wm',_binary '[}8/ܟn\\r\\j\]\\Z','',0,'?'),(_binary '0`\bn\/G\\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_buttons.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ⱦzoq?\',_binary '|\\d\Zh\T\= d\~J\"1\\\'','',0,'?'),(_binary '+\\OA\\qM','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_caret.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\aN\\ZI\[\Q',_binary 'Y2\0\ƉaI\\6,\v\\r\6Nɤq\','',0,'?'),(_binary '(fR\){\F]\\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_clearfix.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӖQL\>V9\n\',_binary '<<=\u\\\Z\3\\\>\ðן\','',0,'?'),(_binary '\'i\U8}\4\m','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_float.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rNIw	\^\\\',_binary '.+>acM\nآ?Wa&h)uH\<.\','',0,'?'),(_binary ':\\\\\\Ư\<3\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_forms.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\CH\\\\Г',_binary '%\g\\~\\4> \O\{dݰwH[ױ','',0,'?'),(_binary '硢\/_hg#B(p\!','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_gradients.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t5q\d[к\\',_binary 'Y \ʻ\D]\\=\̕\;}y?~d%V?>','',0,'?'),(_binary '[>aP\\Sȋ','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_grid-framework.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-U\uqN',_binary '+[=P$|8?\d\".\0)_oJw\','',0,'?'),(_binary '\\\\\TH\+','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_grid.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uz:DU/Y@o\".',_binary 'l\\\rTu\@\_yM>\\','',0,'?'),(_binary '\h渜W?\\J?3\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_hover.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɞ@<\D߆',_binary 'L#_\ \\_\zkhn\\\K\h\Wn','',0,'?'),(_binary '\x}\SFG\3&{','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_image.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K6\{\Cne\\',_binary '\h\Ѯ͉U{:,_/\U-\\g8yI\0\'','',0,'?'),(_binary 'Sp\H%/','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_list-group.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\=\\[\eٽ*1',_binary ';]\[\^\VSQ\L2%\!׽pM&','',0,'?'),(_binary '\Bg<W\\f\Fup','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_lists.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\J5j\ \8T',_binary 'F\\I\H\Zd`:\"6~\vN\ ','',0,'?'),(_binary 'Dg\9\[*n\!b','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_nav-divider.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&K=\j2)\v\pk5',_binary '\0\\g\K\S]{\v\6\`A\k ','',0,'?'),(_binary 'TuS\W\\{{','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_navbar-align.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\~H\>S\0Q\_',_binary '\)쯱\F\f,2Ak<;\\Mv\','',0,'?'),(_binary 'Mа\\ʪvG','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_pagination.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\07~Z\+^',_binary 'D&o\<\549o;\\\viŌ?\Y','',0,'?'),(_binary 'A5sRm\\D֤\\'','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_reset-text.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]\\@C',_binary '\n\\\@8HVs\\\\Q&\Ba\\WS,u]\6','',0,'?'),(_binary '^\8\\ē\rߴ\</','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_resize.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\_\\}Z)\',_binary '\{\>|N\\zѦ\\u^Fx','',0,'?'),(_binary 'w\\\tn\v\\\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_screen-reader.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\0]cGX\	U',_binary '\t_\ns~\i\5c\\rÏ\\\<D\B','',0,'?'),(_binary '/`?\$l3SÈ~','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_size.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z\0(Ϣ\j\\r',_binary 'tV\:\\nf3V	\\\rO\\\d\nV$','',0,'?'),(_binary '\1\t(+PL','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_table-row.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`8(k\Ϙy\^\',_binary '\C\\rWq6,V\[ai;\\tC(*n$','',0,'?'),(_binary 'QhҔAk\\\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_text-emphasis.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SxӲ6h\\\N\',_binary '\'$g\\\۵[\\J\'\Plp$wK\P5c','',0,'?'),(_binary '-)\Zb\\\d','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_text-hide.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z\	:j6Z\',_binary '\[#5y\\Zȼ~\\neF','',0,'?'),(_binary 'LENUl(>\-6\0!','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_text-truncate.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ZB6E\֬8',_binary 'OJo\O-a\rCΕ\\\\e\\\\0','',0,'?'),(_binary 'nm]uNvBhWۯ','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_transition.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\uG\ZQ\\%z',_binary '\rFD\m)+\sqBѠ\','',0,'?'),(_binary '\@\\Yj\'unX','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_visibility.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1b<&\K\W',_binary '\d@\'7\\'\+Î\P\\\','',0,'?'),(_binary '\>k\Ĳ+h\~','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_align.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.O߁įpԻo`\',_binary 'R\)g\r+\k\\>m\Q\','',0,'?'),(_binary 'Q72z\ƽ9\n','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_clearfix.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Mjĵ0\t-',_binary '\?Êw2\<\.\lO{fZZ/U#','',0,'?'),(_binary '\T.Td\p\L>','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_display.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QYmZ	=\o\',_binary 'x5,\\SΧ2\<t0\:\\\\\\0\','',0,'?'),(_binary '~\6\\ፑ\\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_flex.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ت-E*lꄶJ\H)',_binary '?β\DMa\Lڛ\RI\^\\\<\\','',0,'?'),(_binary ',n[&+`\o\>','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_float.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@*E,gHh\1\',_binary '^\O\aV\\'g\\\E\\@\"PX\ɗ\z','',0,'?'),(_binary 'e|YC믊w/','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_position.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,iF\N\_\',_binary '\sY\P&\riRe\޿\\\\','',0,'?'),(_binary '\QfR\6͈\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_screenreaders.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\i\p3X6o',_binary ':\P\w[V\$0d<[\"o5V','',0,'?'),(_binary '?\"\n\\\&Z','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_sizing.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\kHj#\';\i',_binary '\r؆\ѬK(qBwNKIgt\`Y*\,','',0,'?'),(_binary '!\:=\\IM4S','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_spacing.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0y\嫐\c\\3',_binary 'J\q\3.Y`,]oQ','',0,'?'),(_binary 'r\\~\Vb0]m	{.','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_text.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\n\4p\\\\^^0ֿ',_binary '\\\s\.s4G|\T\'n\\\0\yT\0QQ\C','',0,'?'),(_binary '?,\r(*n\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_visibility.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\	CJ\\O5\[-',_binary 'K\^fӆ0}_ۭ\xͨ\\90M=\'\r','',0,'?'),(_binary '}K\Rx\\Zθ\\\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/class-easy-facebook-likebox-instagram-frontend.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#o\FPJyHu\y`',_binary '.p45S\\\\\`^Ce\\\','',0,'?'),(_binary '\nW.R\\%$t\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/feed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.*iԷ\\0I?',_binary '\\2t\\>\\|h\A\`ϒ?\\','',0,'?'),(_binary '\oQ\Me\F)','wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/html-feed-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qԍ\\`>\\',_binary '\<huf\\Oqh!\]B|\]|','',0,'?'),(_binary '	\r\Ub\ƀ\A\nU','wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/html-feed-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4\ i>3\Y3\',_binary '9\[\SX=\r@4\fj\^knpM#\vCc','',0,'?'),(_binary 'Y@\\n\Z\벿i2','wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/html-post-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nPB\0Q\',_binary 'T&\\Ёf2V/!h\\\nL\<','',0,'?'),(_binary '&OiM.`񞒖\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/html-post-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y)\.\f\#\0\f~',_binary 'ķ@C\mW\6\n\r ],2\r;%\','',0,'?'),(_binary 'k\~\\0D\;','wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/templates/template-carousel copy.php',0,_binary 't\\'G ;Se',_binary 't\\'G ;Se',_binary 'R\(D^&䈵+\nHB%\\ \\ҐE','',0,'?'),(_binary 'lprs\l\/\\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/templates/template-carousel.php',0,_binary 't\\'G ;Se',_binary 't\\'G ;Se',_binary 'R\(D^&䈵+\nHB%\\ \\ҐE','',0,'?'),(_binary 'J/G\jTz\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/templates/template-full_width.php',0,_binary 't\\'G ;Se',_binary 't\\'G ;Se',_binary 'R\(D^&䈵+\nHB%\\ \\ҐE','',0,'?'),(_binary '\+`y\Q\\*-','wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/templates/template-grid.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' NRn\ԣ~8',_binary '\fOoxYm!Tԏ,\ǷqFf','',0,'?'),(_binary '\^\\5$3\x\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/templates/template-half_width.php',0,_binary 't\\'G ;Se',_binary 't\\'G ;Se',_binary 'R\(D^&䈵+\nHB%\\ \\ҐE','',0,'?'),(_binary '<bu!׻S٥ԕ\','wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/templates/template-masonary.php',0,_binary 't\\'G ;Se',_binary 't\\'G ;Se',_binary 'R\(D^&䈵+\nHB%\\ \\ҐE','',0,'?'),(_binary '{\\$kNa~	V\\','wp-content/plugins/easy-facebook-likebox/instagram/includes/esf-insta-helper-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\Nrmmh[\',_binary '|#\WɣVvX\.\r|$W\r+','',0,'?'),(_binary '\">z vk\3Z\ ','wp-content/plugins/easy-facebook-likebox/instagram/includes/esf-instagram-feed-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\?\:\#p\',_binary '|\'D-\\Hp\A\_Y\'UVxnu;7','',0,'?'),(_binary 'nX_ͺ\\0I\1','wp-content/plugins/easy-facebook-likebox/instagram/includes/mif-insta-helper-functions.php',0,_binary 'O\>\Tt\|Bh\',_binary 'O\>\Tt\|Bh\',_binary '\\݅\\3Vh@\\\n=Eocu8}u','',0,'?'),(_binary 'r\q\\"\\','wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-de_DE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6b;b\B\9',_binary 'ؑ)\Άj\1*E7*$R\X}','',0,'?'),(_binary 'i\1\vңְ\\','wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-de_DE.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z/Nv\k-k\',_binary 'є\6|]yEJ\\4K0\0<:\r','',0,'?'),(_binary 'MN\f\\\cV','wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.}\\_5gU\k',_binary '\\\\A\20m\&$\L\\SBZJV','',0,'?'),(_binary '\\7\A)a\ӬF','wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-es_ES.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^jD\\',_binary '\gN7*6j	,Z2\%̥DŸIl\E','',0,'?'),(_binary '\G~\\{\\\|','wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-fr_FR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J@;X\rW\RC\n',_binary 'ES\\I#:dԣ\\\\NmPl','',0,'?'),(_binary '\"\\Y_y<\','wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-fr_FR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\e2Һ;\-',_binary 'I\y\V`V\Oq\ڏ\\\n\:7\Na','',0,'?'),(_binary ':\1߆{k{\Z\','wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-it_IT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I?\\\\2u7',_binary 'e4z?\e|t\\oŐ\J3ǜ\ŵj@3','',0,'?'),(_binary '\\xRh\G\;\Z\#\','wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-it_IT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oڳgK=x\'\\|',_binary '\r\|+yG9\\jM2b^\/xB-\H\V','',0,'?'),(_binary '\j(\\\x\D#','wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-pt_PT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\PzXijV6',_binary '\\>-\\\[Aʬ_\"\3`\n3\7(^','',0,'?'),(_binary '#Mu\\\b}','wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-pt_PT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7G\S\(W̓;&',_binary 'W\N\0!F15}\sWD,G\S\Z\'*]|','',0,'?'),(_binary ')&`wà\L\J','wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TƸ\J^1\0\\',_binary '\\.S7\v$\4_eu\u\a','',0,'?'),(_binary '\:\\y]\"^','wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|6\mTh}\\U',_binary 'Q?Sc\ۯ\\"\XO?\\RB6\','',0,'?'),(_binary 'uM.O\hF\','wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^4UsI/\1\cʜ',_binary '\l\QJ$D.u\A1\ɗ\Z7u\','',0,'?'),(_binary '>r\GS˟\Xǆ','wp-content/plugins/easy-facebook-likebox/languages/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary '\'\'\\xIX\1\ĝ','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/admin/admin.php',0,_binary 'R! \rI	\\\',_binary 'R! \rI	\\\',_binary '*-\DI\qQ\\r\\{$Aa8\V;\"iIN\','',0,'?'),(_binary 'G\8ǀv\"\,\cxA','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/fonts/fontawesome-webfont.svg',0,_binary '$\\!\\\'8\Ϡ\\',_binary '$\\!\\\'8\Ϡ\\',_binary 'EVS`$?\aj`)x\0\\+X\K','',0,'?'),(_binary '\[S\Tf^\ \','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/js/alpha-color-picker.js',0,_binary '\\'O1\U\n\',_binary '\\'O1\U\n\',_binary 'hqQk5\M*\\E\\\'n\\"c\AA#\\','',0,'?'),(_binary '}D00r\\[\','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/js/mif-admin.js',0,_binary '.\Z5jj\߻\rm',_binary '.\Z5jj\߻\rm',_binary '\t\\\ى Z\!\p\r擳Hކ','',0,'?'),(_binary '*<Ph;x\','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/js/mif-custom.js',0,_binary '\6͓k\Z}\4\@W\',_binary '\6͓k\Z}\4\@W\',_binary 'Yc:\U\\Z>\r,+\.__\(g\\$','',0,'?'),(_binary 'Y07}r(\\{Q	','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/js/mif-customizer-custom.js',0,_binary 'ȾO	QQZfMLs\$',_binary 'ȾO	QQZfMLs\$',_binary 'j\\\\\O/]enOKLvf\D','',0,'?'),(_binary '\In{\Ƚ\M>','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/js/mif_live_preview.js',0,_binary 'H\0\7\C*\f',_binary 'H\0\7\C*\f',_binary '7Y\\0/0l\\\*\Xv-zh\\̎','',0,'?'),(_binary '^/86\ʆ\'N\8o','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/js/wp-color-picker-alpha.min.js',0,_binary 'fț\YR{kGʀ\n\'',_binary 'fț\YR{kGʀ\n\'',_binary ',\tklL%fI/GN\բmj:','',0,'?'),(_binary '(B6\9!\\','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/frontend/frontend.php',0,_binary ' 24~u$\֓',_binary ' 24~u$\֓',_binary '\9J%	Cl\\{A\&b\?\H','',0,'?'),(_binary 'cBf\ M\)\G\','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/frontend/templates/template-grid.php',0,_binary '2 	T˫!e\q',_binary '2 	T˫!e\q',_binary '!\\w+\f\fW\\\tm(d96','',0,'?'),(_binary 'MH\x\컌^%','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/includes/customizer.php',0,_binary 'm>!\%\\\\P',_binary 'm>!\%\\\\P',_binary '@1\M6Xw\!\ٺ}1\m+P\YX','',0,'?'),(_binary 'fv8 \:\?\\','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/includes/customizer_extend.php',0,_binary 'b\)\J\f~;S',_binary 'b\)\J\f~;S',_binary '\\K\O?\׏_嬏xDw^\\','',0,'?'),(_binary '@\3FX\\!N3\','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/includes/mif-global-functions.php',0,_binary '婛ɆH\v5Vgϕ',_binary '婛ɆH\v5Vgϕ',_binary 'N\\QPZ},>\n%\\_\\'J\FGĊ','',0,'?'),(_binary 'Mִ3 [\\\\G','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/includes/mif-skins.php',0,_binary 'M\͋IS\>\=)',_binary 'M\͋IS\>\=)',_binary 'P1QL\\G1\vB%\\uM{\\w+','',0,'?'),(_binary '\e\\\\\`\F0\','wp-content/plugins/easy-facebook-likebox/my-instagram-feed/my-instagram-feed.php',0,_binary '\_\\۠\ɃC',_binary '\_\\۠\ɃC',_binary '\oD|Y*MV^\\\Ӑ\H_\8F\','',0,'?'),(_binary '\\#\G\z\','wp-content/plugins/easy-facebook-likebox/public/assets/css/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary '[1\\uƨ\\')','wp-content/plugins/easy-facebook-likebox/public/assets/fonts/fontawesome-webfont.svg',0,_binary '\\9OhMff]>\',_binary '\\9OhMff]>\',_binary 'EVS`$?\aj`)x\0\\+X\K','',0,'?'),(_binary 'ǡ\\\$\\\]','wp-content/plugins/easy-facebook-likebox/public/assets/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary '\c$\ywoOo','wp-content/plugins/easy-facebook-likebox/public/assets/js/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary '\\Ef_\l\v\I\\S','wp-content/plugins/easy-facebook-likebox/public/assets/js/jquery.cookie.js',0,_binary '4%6\8\\Z\)\C',_binary '4%6\8\\Z\)\C',_binary 'O\\*\\;M\~\\\rBPc\oǤ\\','',0,'?'),(_binary '~=\"7	\','wp-content/plugins/easy-facebook-likebox/public/assets/js/public.js',0,_binary '\*\َqnA\,\Fb',_binary '\*\َqnA\,\Fb',_binary '\Zpa\\QR\!\?{Gt߇\\<b\\M\n\','',0,'?'),(_binary '÷!0\2\c\\','wp-content/plugins/easy-facebook-likebox/public/assets/popup/jquery.magnific-popup.js',0,_binary '3y\Wq\.ST\',_binary '3y\Wq\.ST\',_binary 'Dvb\\\Y[\c\,\\.\\\f\Z','',0,'?'),(_binary '\{\cf*VU9@\)r\','wp-content/plugins/easy-facebook-likebox/public/assets/popup/jquery.magnific-popup.min.js',0,_binary '\ʩ|\T\@k',_binary '\ʩ|\T\@k',_binary 'ʂ\)j/Fւ\D\\3r\\\8\','',0,'?'),(_binary '\`\.Pf\s֪','wp-content/plugins/easy-facebook-likebox/public/easy-facebook-likebox.php',0,_binary 'E\˝e\4˟\',_binary 'E\˝e\4˟\',_binary 'Y\i\h/\e:G\=\!K\(ub','',0,'?'),(_binary 'ȵ\\\\ή\\Z\','wp-content/plugins/easy-facebook-likebox/public/includes/Mobile_Detect.php',0,_binary '>\\R\n\q2d\oT',_binary '>\\R\n\q2d\oT',_binary '\K\oq~8\1\\d\>\pj]\\a\\Z(\','',0,'?'),(_binary '8bdx@-RG\j\0{\','wp-content/plugins/easy-facebook-likebox/public/includes/core-functions.php',0,_binary 'B\q\=[`\'\x\',_binary 'B\q\=[`\'\x\',_binary '\Z?8&SG9ӭ\x\rRh0','',0,'?'),(_binary '\\\:\r\\\s\\E','wp-content/plugins/easy-facebook-likebox/public/includes/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'ԉ(\R,f^l','wp-content/plugins/easy-facebook-likebox/public/views/feed.php',0,_binary 'D	Ŕv*\n\\\\S!',_binary 'D	Ŕv*\n\\\\S!',_binary '&m\ނ\\y<~\\\\0	&\-ܱ','',0,'?'),(_binary ';2h\\\\ɨ\\\','wp-content/plugins/easy-facebook-likebox/public/views/index.php',0,_binary '\\{J!u?}\\s',_binary '\\{J!u?}\\s',_binary 'Aũ\`97}b>MH\\\JHh\\|Fj','',0,'?'),(_binary 'hx\l\;!','wp-content/plugins/easy-facebook-likebox/public/views/public.php',0,_binary '\	V&3\'8\KN\',_binary '\	V&3\'8\KN\',_binary '?\V\\\\(I\'X*_Y>\','',0,'?'),(_binary '\\\cr9ͺ','wp-content/plugins/easy-facebook-likebox/uninstall.php',0,_binary 'n_\1B\&C;\+',_binary 'n_\1B\&C;\+',_binary '\\,|K粀\\\0\kL8s5\\5','',0,'?'),(_binary 'Zv2,I\x\q','wp-content/plugins/easy-twitter-feed-widget/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>n\E\/;өZL',_binary '9QFi\x\\\\~Sх\\\\'sLЪ%5\','',0,'?'),(_binary '|\@[\SMڔFw','wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aB\\\̜ls',_binary '\\0]\\/lӚ\k6\>-\\а~','',0,'?'),(_binary '\\\R\s\\n\\\','wp-content/plugins/easy-twitter-feed-widget/inc/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\Ay\؆L\\p',_binary '>\w`\\\0#( Na\$,l\.9\*1','',0,'?'),(_binary '\\[*\TLm9ag','wp-content/plugins/easy-twitter-feed-widget/inc/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xOe\\t\\b\x<',_binary '\\z\SC\\n\\nj-V\G\','',0,'?'),(_binary 'n\\vע\m\\ì\','wp-content/plugins/easy-twitter-feed-widget/inc/settings-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\\\6\?gybh=',_binary '%^a\왴Uԑ(Z9\ą','',0,'?'),(_binary 'M KV(/\\7>\n','wp-content/plugins/easy-twitter-feed-widget/inc/widget-twitter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't0(\&bO-',_binary 'a\"C^>:\\ê4<Q%A\\VU$','',0,'?'),(_binary '>I4\\:?Ӥ!V','wp-content/plugins/easy-twitter-feed-widget/inc/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\\	\\ЇNx\r\',_binary '\@-\~CfZT\\C\u;g\#dhԡ','',0,'?'),(_binary 'ݘV#=]|e6\\','wp-content/plugins/easy-twitter-feed-widget/js/admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\La\\\rp!)',_binary '\\\\\<#\\΀9\\\:0Z\','',0,'?'),(_binary '0ޓи\ʕЗ\V\','wp-content/plugins/easy-twitter-feed-widget/js/cookie.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+Q.b\Z\UB',_binary '\̗4^bYpzIp\kX\D*\\C\&','',0,'?'),(_binary 'QʬaF\\f\0\','wp-content/plugins/easy-twitter-feed-widget/js/easytabs.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\֬l\\y\',_binary '\\l\\`~\\*mF\G}\\\%','',0,'?'),(_binary '\Cl\\=\\6\n\','wp-content/plugins/easy-twitter-feed-widget/js/hashchange.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q~@9\O',_binary '\P\'?gw\\tJ\\F\n','',0,'?'),(_binary '\\\\"\P\\9*h','wp-content/plugins/easy-twitter-feed-widget/js/twitter-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\^ӕs১]\',_binary '(a-堎͝q\ne\2N\j˾\\','',0,'?'),(_binary 'FƮY$\/\?','wp-content/plugins/easy-twitter-feed-widget/languages/do-etfw.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '66\\"8\\0\',_binary 'k\r?k\\\{$\\\0\\XşEuf9','',0,'?'),(_binary '\q\"\(\\\\GӶ+','wp-content/plugins/easy-twitter-feed-widget/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\3\\\F',_binary ']FHp6\\O\@#h:L\\ɠ\@k','',0,'?'),(_binary '\wқj\74<','wp-content/plugins/easy-twitter-feed-widget/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D6\"^Z\Nr\Nn',_binary '$X\#%K\\w\ʒ\Ɗ򟶸\\,\_','',0,'?'),(_binary 'A\"	l\q=G`\0','wp-content/plugins/easy-weather-widget/Gruntfile.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4v\\\\_	',_binary '\\\\&g\#\5\r鄎u&\K?l]Q\\\\r','',0,'?'),(_binary '\\r%\`;B','wp-content/plugins/easy-weather-widget/bower.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '׆\o)\\v\',_binary '\w\7P8~@hf4ei-o\\]]\\\','',0,'?'),(_binary '\y\֣g\(\l\','wp-content/plugins/easy-weather-widget/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_S]\\v\\	\',_binary 'h\\\n\jX%\\UF[p_\b?2{','',0,'?'),(_binary '\`oCxb>jH','wp-content/plugins/easy-weather-widget/composer.lock',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\bP\Nr<0',_binary '*0\^\\u;I\caʕ\ۓ\\\n<','',0,'?'),(_binary 'zІJ\\)Sʇ','wp-content/plugins/easy-weather-widget/css/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rU\'\:{qe\n',_binary '?^{D_׉\\\8\\LW','',0,'?'),(_binary '(~`\>SMn\/','wp-content/plugins/easy-weather-widget/css/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~c\\̩\\\KhU*',_binary '\k\\\\07\\e.d~I+\x,h\i','',0,'?'),(_binary '<~<h\ q\F2)=2','wp-content/plugins/easy-weather-widget/easy-weather-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~CJU0ZVSQmWf',_binary 'rUʦE`2wGn]\\8\)l6\9','',0,'?'),(_binary '$/Į\\6|<D','wp-content/plugins/easy-weather-widget/eww/get/get-weather.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EB;PLH\C',_binary '1%\cg\~\0\o\\\	a\f7\','',0,'?'),(_binary 'ݼ\5f,\{_ߖ','wp-content/plugins/easy-weather-widget/eww/get/open-weather-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ё\\\'}7(?[33',_binary 'C\?\\t5\p\r^N2\\\B,\_#','',0,'?'),(_binary '\x9Ύ\x\Y\\h','wp-content/plugins/easy-weather-widget/eww/icons/icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qЄ\\\ߩ\jJRJ',_binary 'j\\*\\\IRz(Ĳ\X%\\r*','',0,'?'),(_binary 'P\ZƲ\=w\\<_','wp-content/plugins/easy-weather-widget/eww/icons/weather-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\v\"\.^*X',_binary '\.L&7$\^i=S;\\\\#n\LP\','',0,'?'),(_binary 'B̚-$\h$','wp-content/plugins/easy-weather-widget/eww/iocable/iocable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^=\;\'\<\e0X\T',_binary '7e\r)x{$d\>\\Ͷ\6^','',0,'?'),(_binary '\\xH\mn\\_','wp-content/plugins/easy-weather-widget/eww/iocable/registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`W\=V-\\2QH=\N',_binary '-\\\Sg\"\ޑG\+%\n\x(O\\a\"e{','',0,'?'),(_binary 'p|`Xf@걠\rM\\','wp-content/plugins/easy-weather-widget/eww/notice/notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ǒ\\=r\0Vp:t\Z',_binary '\A,\p؉\^뗋J2N{\h}','',0,'?'),(_binary '\G]\K\R#S','wp-content/plugins/easy-weather-widget/eww/settings/open-weather-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\~˯\\8\',_binary 'Y\r\ ,LgFK^\\\9\Մ','',0,'?'),(_binary '\t\\\n\ZZk3','wp-content/plugins/easy-weather-widget/eww/settings/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')g\6W>\',_binary '\\\\\+\=<\\\\0$\#)rD\','',0,'?'),(_binary 'qͥ\ףbP;z\','wp-content/plugins/easy-weather-widget/eww/weather-cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n90a\<\smT',_binary 'l\)NV\\\v\<M\R\\PjS\0ՑkO\0E','',0,'?'),(_binary '\}8c\\\ӦT\{','wp-content/plugins/easy-weather-widget/eww/widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\\0ƸZQl',_binary 'J6׷9eů\\'h鯦,\\\n8\\','',0,'?'),(_binary '则\','wp-content/plugins/easy-weather-widget/external/weather-icons/.bower.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\M\q\\*i+',_binary '];v\&cޙ܏И,\w[]9\NUY\i','',0,'?'),(_binary ')Kׄ\"\d\rKt<0\','wp-content/plugins/easy-weather-widget/external/weather-icons/.gitignore',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\\\\>N5N',_binary '?qfD\\9ҥ\\\\: 못\\\I\','',0,'?'),(_binary '\Ɍ<\"3j\hB1','wp-content/plugins/easy-weather-widget/external/weather-icons/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\ˡ{\s$tb',_binary 'G\fkQR\0\H\+\|o\rn,cJ','',0,'?'),(_binary '\n\\|\co\v','wp-content/plugins/easy-weather-widget/external/weather-icons/bower.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\O=\Is\\',_binary '\R\o%\8\HA\ws\\auwY\"','',0,'?'),(_binary '8\_<ڒ \','wp-content/plugins/easy-weather-widget/external/weather-icons/css/weather-icons-wind.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\\Z69S>S',_binary 'wӊ\rc[F\E,X%60OQ\0\K\','',0,'?'),(_binary 'Eay\)V4A\','wp-content/plugins/easy-weather-widget/external/weather-icons/css/weather-icons-wind.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%xUw{d\\c\"_\r',_binary '\5\Իx\\\6\tG~F>ayYgO','',0,'?'),(_binary '\=B@N\碈\{\','wp-content/plugins/easy-weather-widget/external/weather-icons/css/weather-icons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2tb|,#v',_binary 'rwg:\\@5^tӔ\9\\Y[','',0,'?'),(_binary ']J	J+h\Z','wp-content/plugins/easy-weather-widget/external/weather-icons/css/weather-icons.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UkwߔH\O\\\',_binary 'U\5gz\T{\ \c)k\U\ʤg','',0,'?'),(_binary '&Us\\R\yP\\a','wp-content/plugins/easy-weather-widget/external/weather-icons/font/weathericons-regular-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Keg\k\,\\<\xM',_binary 'zK\.\\6F(~\\pS\7.*1','',0,'?'),(_binary '{\T\\\l^_','wp-content/plugins/easy-weather-widget/external/weather-icons/font/weathericons-regular-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '쯋H)j\\ͮ',_binary '4q	|\\\\\B>\\!5\1R;\pf.','',0,'?'),(_binary 'U\/xlWaYQ','wp-content/plugins/easy-weather-widget/external/weather-icons/font/weathericons-regular-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\*z\t\J',_binary 'Y^\-cF\i\\sֽ\#p\rRf','',0,'?'),(_binary '0\t\6n9\\\"','wp-content/plugins/easy-weather-widget/external/weather-icons/font/weathericons-regular-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\\?#\G!\\',_binary '	\*TW\s%IRw#53Hu=','',0,'?'),(_binary '\r!+;\!@','wp-content/plugins/easy-weather-widget/external/weather-icons/font/weathericons-regular-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ԍx\m3=vBni',_binary '\B\me>Y]qB_\\S\:\L\s4֏','',0,'?'),(_binary ']Դ^S\AG\\','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-beaufort.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.%3wKN\\',_binary '\R`]k9,dD\\bNMKi1}^\\\\','',0,'?'),(_binary '\ \c\<;[A','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-day.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\yS5/lQ?',_binary '뷣;y^Dm\>\\Z\ܡ\\J\\^','',0,'?'),(_binary ',\X%Z\r\3','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-direction.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f\ѳ\9\v\',_binary 'qą=G&N:\\\,\H\eͫ<[*nD','',0,'?'),(_binary 'A\K]K]\\)\\','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-misc.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p00*(\\>89',_binary '8\\5\\nM\VES\Zl\"qFY7','',0,'?'),(_binary 'T\\o\s%Y\\','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-moon-aliases.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '֭\y\=}\U5Y)&',_binary '\潧`\a\v\׹\\\nF:`\J|','',0,'?'),(_binary '\\l|cNm3\z\','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-moon.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\	\@\a\Q\',_binary 'R\\\^\r.f18\8\T\ZhS2\$o\','',0,'?'),(_binary '\\\6\\\\E2X	','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-neutral.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\:\!)Xri',_binary '2AI;)\hRTF\Uc\je~\Y?\HL','',0,'?'),(_binary '\\!8W\rWyH','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-night.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ՏG\pzY',_binary 'R\?L:v\0I\[D6V۔W\s\\l','',0,'?'),(_binary '=k}\3L\\KsS\','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-time.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\rW\\>M⩹',_binary 'I	=yU\V\d˾\簒>r8HE\\','',0,'?'),(_binary 'ɽ5kз\a','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-wind-aliases.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o\\n\*FЗU\n&1',_binary '\S3!<iǐ;y\\"UC\':{FbP','',0,'?'),(_binary '=oOo\R\%\','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-wind-degrees.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\EKquDj\)H',_binary '\[\\\"&x>\(FuKf\r\0M\}','',0,'?'),(_binary '}\J.{O/xd','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-wind.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\˦\\Δ\h\@',_binary '\\:<*\2+A^\\\1\\*Q\\@yY','',0,'?'),(_binary 'g4@V\:EF','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-beaufort.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\,\\xqɣ:',_binary 'xފ\ٯ\n\'7%Z\\҈5k\Z\+\','',0,'?'),(_binary 'k\Ȕּ\":Y$YH','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-day.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\jǢoj\>Bi]޶Ji',_binary 'IJKKd;?\Z\C{#>\\ɃW','',0,'?'),(_binary '\?7*no\g@','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-direction.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\;\r:^#\A~\\',_binary '\_\\72\#p\\\\\\ju2\}q\\','',0,'?'),(_binary 'N\\0EU\q','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-misc.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\\j@L:/\',_binary 'H\\Cn-\(_j\E\Q\<\Z','',0,'?'),(_binary '̸\S\#3$/e}u','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-moon.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\mEl\nZy8\Y',_binary '\`\:/͐/\G̺t<(\=t]+M','',0,'?'),(_binary '\\W\r)xȵ\o','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-neutral.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\S	z\\\U3\',_binary '\2^\O!ڜ\o8\\N,u\\\L`B','',0,'?'),(_binary 'r>\\W.\\\','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-night.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\(J\\hc;~oJS',_binary '\n$\\|I)\ N\{=@Ѓ','',0,'?'),(_binary 'I5\퇂@ܝ`e','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-time.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q%8&\>PQA\',_binary '\ߗnZi\'\qv4;e\\"2y\y','',0,'?'),(_binary 'K?F73\>\uAb\','wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-wind-names.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y̔\L{\2',_binary '\l6\.!\\M<\K@\\gW=\\.B\','',0,'?'),(_binary 'U\~UɅd3?','wp-content/plugins/easy-weather-widget/external/weather-icons/less/mappings/wi-forecast-io.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\sSΜ\^\Lo\',_binary ',1\\%\)\0߶g\\Zc\\>\;J:\\n~','',0,'?'),(_binary ';\\l>\;?kl','wp-content/plugins/easy-weather-widget/external/weather-icons/less/mappings/wi-owm.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u\c{&jZ\1R>\',_binary 'SwzRw\eO\\\PaGч䍼_/3\\E','',0,'?'),(_binary '\\E\\rtydm].\','wp-content/plugins/easy-weather-widget/external/weather-icons/less/mappings/wi-wmo4680.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z썛\\yₗ!4h',_binary '/^O\y*F&\>.T^i&','',0,'?'),(_binary '\R\G\G\ZL\\ώ','wp-content/plugins/easy-weather-widget/external/weather-icons/less/mappings/wi-wunderground.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=0ȣ;)f\a',_binary '-L+H{\\;S@\\','',0,'?'),(_binary 'b\~~\\\vhB0\','wp-content/plugins/easy-weather-widget/external/weather-icons/less/mappings/wi-yahoo.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϛ\\o1@D\ǰ-Y',_binary '\f\~\\E\x\\\.\\n\\3Z\','',0,'?'),(_binary 'Z\dn5f\\ēM','wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons-classes.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l<\\{`i',_binary '<OSEq\\Ŋ\?s\"/]  \\\=','',0,'?'),(_binary '`]p\'d','wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons-core.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\*\m4-B{\W\',_binary '\'DmE\=gb{\:x\\T\F@1','',0,'?'),(_binary 'ضl\nTs','wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons-variables.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0v߇*KyͺYM\',_binary '\R~c^\\NѺ\\W5?z/)\9','',0,'?'),(_binary 's\M#W?\'V\<\','wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons-wind.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\"\C,\\rSS\',_binary ':\\\\f5\V\\&{\\S?t	\'\\h\','',0,'?'),(_binary 'R%\P\d\bh','wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons-wind.min.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\"\C,\\rSS\',_binary ':\\\\f5\V\\&{\\S?t	\'\\h\','',0,'?'),(_binary ';S1\\M|o','wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nm2D3\96\\',_binary ' #\rax\r[f\S0\ЋR;IDSQ5','',0,'?'),(_binary 'œ|5\\\l','wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons.min.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\o/\_\',_binary '~f8) &\Ԣ7u$z\A\ë}\\','',0,'?'),(_binary 's\@W+\%\S;\n','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-beaufort.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\(޹\\g#\',_binary 'I߿\\+\\\(B\`K\q\n_\KX;\}','',0,'?'),(_binary '\\Q}OK&E\~0U','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-day.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'й	\wCD\OR|',_binary 'PވQ\9	\ZG.KJ\\\0!#f$K','',0,'?'),(_binary 'KP褣SVmU%fW','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-direction.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#tSC\F7(\rK\\',_binary 'G\C\B\\n<J\\Z]9\05Vm','',0,'?'),(_binary 'e\\.n\(\+\;','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-misc.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~mE\\fU\G0U\R',_binary '\s!?\\"3\ѕ(qI\ٷ禉o\u$\N','',0,'?'),(_binary '\\\Zr[\l\$͢\','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-moon-aliases.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^	u0xb\Z',_binary '{\0b2Y*t~Y\rxr\\*r\ \','',0,'?'),(_binary '\&\JV\\6ia*X','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-moon.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\\\M0\\&\',_binary '<XeA$;\٨o\.(Y\01bF2\Y*','',0,'?'),(_binary 'Y!c\Ⱦ\<99','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-neutral.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\r\\\}\k\\r',_binary '6l\\nd\\\Z\\E\\nxA[>\','',0,'?'),(_binary '\81&vaen\\+','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-night.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zf(+\\0\',_binary 'G(`=k0T\s5}\\P\:\.\\~`\QJ\','',0,'?'),(_binary '\*\\\F72(','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-time.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\\-Z?I\@B',_binary ',\Z\0\b\(\0٢3\GzM\G|&\l28oB','',0,'?'),(_binary '\X5Bl\3\\','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-wind-aliases.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\}%r\!\',_binary 'Qgő\\wE@\"|\Pˋ\ZE\\Y\\lFC','',0,'?'),(_binary '\\\r%vѓ\Jb\n','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-wind-degrees.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xy8m˳*A׉\',_binary '\-Wp\cͳN\SfT$a\3:\\.','',0,'?'),(_binary 'eA*eXJ\\^[?\','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-wind.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\\:\\',_binary '\I/2-sd[A8\\:-x*\','',0,'?'),(_binary '@\U\o\\\.Gӭ','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-beaufort.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0a\g\-\#',_binary '(D@\+;\\"\\\+>\.\\ڊRJ\','',0,'?'),(_binary 'q\ǌ_Z\\\\\\','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-day.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\l%\\w\s\',_binary 'H\s\mFGp}\[+:D\q\h\\\<\','',0,'?'),(_binary '(\\\\\<`B1L','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-direction.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$N_w\\\jD\\\',_binary 'Xnp\)Q7	@${/\\y\r\^\','',0,'?'),(_binary '~Bq\\J\,\p\\U','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-misc.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=[­Ɍ:',_binary '$\\m#@\"ѱf;L\D	OT\+k\','',0,'?'),(_binary 'x*ma\\U(\ul$','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-moon.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2CL\\\ZcX',_binary 'wd\Z\\rX:\rԐ\\\\:A\\mjN2w\\','',0,'?'),(_binary '\\:8feS&R\\nN$\z','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-neutral.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\56J\Ž\\\',_binary '\':d~֏\d\18\N\'6\n\L\','',0,'?'),(_binary '\\(5I\3&~<c','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-night.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')2\$\)pz\',_binary '|\ՒwSͬ]\Ǔ\g6͆\','',0,'?'),(_binary '`.tjIr3-F\9','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-time.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\cpj^\>\r3&',_binary 'OƊ\um\˯\\rgEpcb','',0,'?'),(_binary '90יF\\\=u\O0\?','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-wind-names.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XˍB\?\V\\6\',_binary '\M9\\j\SW0\C/\@T\ZE','',0,'?'),(_binary '7\I7ǵn\\\s:','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/mappings/wi-forecast-io.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0F9w6a',_binary 'H\'ڦ49e `{hԜv\tj-\','',0,'?'),(_binary '\<\KmVnJ\\\','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/mappings/wi-owm.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z8\\\j\Q\M\\',_binary 'h\\\+\71\a\d\?,\\HK\aSO','',0,'?'),(_binary 'ugc\\q^8\\M','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/mappings/wi-wmo4680.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dب\ٶ\\\',_binary '\nÞ(;\\xa\7\\'\U?a\\a','',0,'?'),(_binary 'M\pPTde\n/\{\','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/mappings/wi-wunderground.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\qc&\E/R\iOJ\',_binary '5`{\i1cKdTav\s#\'w\2j\Ǯ','',0,'?'),(_binary '$\GN\\Zv\\','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/mappings/wi-yahoo.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qq\v!\6V\&\L[',_binary 'B\\;\\\َnBd\ӹ8=\vr\-/\W\','',0,'?'),(_binary 'ے\HE\D\\','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons-classes.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't2i\\H}&MH\',_binary '\\r\\Auϓq\\sZ\\{\B\\','',0,'?'),(_binary 'R\C\\Ә C','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons-core.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\b\MHѱ|\g\',_binary '\\K\J8hN_>\,\GF\r:E\\Z','',0,'?'),(_binary '-芟(\0~\r\','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons-variables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\XX2M\_',_binary 'C@:gň\]P\\\n\Tz\f~\I','',0,'?'),(_binary 'h\\\pU\5\Ȋ\UQ\','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons-wind.min.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\p\\OC]\',_binary 'Q\VETv5%\i)I','',0,'?'),(_binary '\#<\7\X','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons-wind.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\p\\OC]\',_binary 'Q\VETv5%\i)I','',0,'?'),(_binary 'pi\Lg\\\\\\','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons.min.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';&\3tH\4\0\',_binary 'U Pi\BrJ=gMLj\\X\Z_k\\z','',0,'?'),(_binary 'x-\}p\\_`bz@','wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\қ\aQ\Z#',_binary 'M1N1EEbCM\f\X1`O\G˴c','',0,'?'),(_binary '-%\^VA','wp-content/plugins/easy-weather-widget/external/weather-icons/weather-icons-wind.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\\Z69S>S',_binary 'wӊ\rc[F\E,X%60OQ\0\K\','',0,'?'),(_binary 'LS|\nz\\F','wp-content/plugins/easy-weather-widget/external/weather-icons/weather-icons-wind.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%xUw{d\\c\"_\r',_binary '\5\Իx\\\6\tG~F>ayYgO','',0,'?'),(_binary 'PvE/*\G\','wp-content/plugins/easy-weather-widget/external/weather-icons/weather-icons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2tb|,#v',_binary 'rwg:\\@5^tӔ\9\\Y[','',0,'?'),(_binary 'o\/\\\\{\\\','wp-content/plugins/easy-weather-widget/external/weather-icons/weather-icons.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nm2D3\96\\',_binary ' #\rax\r[f\S0\ЋR;IDSQ5','',0,'?'),(_binary '\0Nŉ\fN\r\;','wp-content/plugins/easy-weather-widget/external/weather-icons/weather-icons.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UkwߔH\O\\\',_binary 'U\5gz\T{\ \c)k\U\ʤg','',0,'?'),(_binary '\t\nN6P<<','wp-content/plugins/easy-weather-widget/external/weather-icons/weather-icons.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\қ\aQ\Z#',_binary 'M1N1EEbCM\f\X1`O\G˴c','',0,'?'),(_binary '4\\\o\5','wp-content/plugins/easy-weather-widget/external/weather-icons/weathericons-regular-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Keg\k\,\\<\xM',_binary 'zK\.\\6F(~\\pS\7.*1','',0,'?'),(_binary 'Wy\1\'b}P\s','wp-content/plugins/easy-weather-widget/external/weather-icons/weathericons-regular-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '쯋H)j\\ͮ',_binary '4q	|\\\\\B>\\!5\1R;\pf.','',0,'?'),(_binary '+kKLZ\fV	','wp-content/plugins/easy-weather-widget/external/weather-icons/weathericons-regular-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\*z\t\J',_binary 'Y^\-cF\i\\sֽ\#p\rRf','',0,'?'),(_binary '\&\.\D_D','wp-content/plugins/easy-weather-widget/external/weather-icons/weathericons-regular-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\\?#\G!\\',_binary '	\*TW\s%IRw#53Hu=','',0,'?'),(_binary '\\')L\A<\\T\\','wp-content/plugins/easy-weather-widget/external/weather-icons/weathericons-regular-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ԍx\m3=vBni',_binary '\B\me>Y]qB_\\S\:\L\s4֏','',0,'?'),(_binary 'x\H\7\dmj\Q','wp-content/plugins/easy-weather-widget/languages/easy_weather_widget.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<ێ\1:\\A',_binary '\r:#b_n\{qkcҙ\B&','',0,'?'),(_binary 'ja\#ma:}H','wp-content/plugins/easy-weather-widget/package.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\B\\sZ\|\";',_binary 'D3Qѯ\\z\,U\l\]S\\D{\','',0,'?'),(_binary '\Ro4\\\(t','wp-content/plugins/easy-weather-widget/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<7;\\%on\^',_binary 'Fq\0@gj\\\\kw%\*u\"y','',0,'?'),(_binary '3[\f6\{\\q9','wp-content/plugins/easy-weather-widget/sass/main.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';ra4KXdD',_binary 'S<I[Yd\\΂\8\˩\ 7፹\^r','',0,'?'),(_binary '\\K	/u`\rs\','wp-content/plugins/easy-weather-widget/sass/partials/_imports.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y*{)ɵoO{G\"',_binary 'Й\r\\?R\8X\\D;~f{Za\','',0,'?'),(_binary 'C\{dm\;D\Ƈ','wp-content/plugins/easy-weather-widget/sass/partials/_variables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{BPI{	q,',_binary '\I\\\݂t\\\HOzb\\D\C){','',0,'?'),(_binary '|;	\y\ֳ\d#\~','wp-content/plugins/easy-weather-widget/sass/partials/_widget.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7y2\b֐',_binary '&ӝ&\\uY\\O\o\\CC54<','',0,'?'),(_binary '/{G\0X,\','wp-content/plugins/easy-weather-widget/services.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\nùq	߲\}\`',_binary '\\B޽\Bv&\I32S\\W\ĈmCQ\','',0,'?'),(_binary '\\\\\"f/)k[\d\','wp-content/plugins/easy-weather-widget/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ܮآu\W\\\3',_binary '\\\3\Z/[ZAn\<.}_\\ \+?x','',0,'?'),(_binary 'n%R:ɥ\8r\\\\','wp-content/plugins/easy-weather-widget/translate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zlî\"',_binary '\X\ (P\\*\\Z\'\\\Y','',0,'?'),(_binary '\\0+','wp-content/plugins/easy-weather-widget/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XH5Y\Gl3,7_',_binary 'u\]a\D^ԝ\:%\Dzݸ4','',0,'?'),(_binary 'CA\.\}[dr','wp-content/plugins/easy-weather-widget/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~\1\ηP *\.',_binary '\k\\<.\&\4V\ןp','',0,'?'),(_binary '\\r\e@\n\ߚۿ}\I','wp-content/plugins/easy-weather-widget/vendor/composer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')4FS˼',_binary '\\rO\\\s\\`N\w\Zv','',0,'?'),(_binary '-\X{ \>JD','wp-content/plugins/easy-weather-widget/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\	\&$Kv\',_binary '/O\\\)wO\\\0!\w09qf2\','',0,'?'),(_binary 'C\}\$\Fc2','wp-content/plugins/easy-weather-widget/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ۍ\u\\\H)',_binary '\ZJ1b4V]\~К\ f\!','',0,'?'),(_binary '\x1\"Gy5\f9\','wp-content/plugins/easy-weather-widget/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+UG->m8\\8%\',_binary '#\\\5lZu&=\:!z\\>]\\\_{','',0,'?'),(_binary ' <p\㋥^\NM','wp-content/plugins/easy-weather-widget/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\'\z{\\\f',_binary 'E\n\䶉\G\\.M1\rօ\\j3G2r','',0,'?'),(_binary '~E۱GIĻ','wp-content/plugins/easy-weather-widget/vendor/composer/autoload_static.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{KHڢ\Q\䶉',_binary 'b\\~B\2N\tR\\\k\n\_','',0,'?'),(_binary '	|\017d3I\@','wp-content/plugins/easy-weather-widget/vendor/composer/installed.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\bB:\npS\\\{',_binary ';\\\\(8+6g\{\\\O\5\\\>Nb\0\B+^','',0,'?'),(_binary 'V\\\~\\\b\rص','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/.gitignore',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\'e\#m\\\5',_binary '$-:\e~ #\0g9\nzR_\*Kj','',0,'?'),(_binary 'l=ĺ_AX\Uv','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/.travis.yml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\<Q\\gWjoj',_binary '\\A.\˷a#rcv\ȧKe\m\>\g','',0,'?'),(_binary 'GR\ޡDXE`ԩ','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/CHANGELOG',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\V\\Z%\O>e:2',_binary '׵v8	ob8Kr\;V~	Gu','',0,'?'),(_binary '\xf\\A\\Gm{r','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8cZnP\5\z@?M\',_binary 'e GGa9%$AU\\\j}`\oK\4p','',0,'?'),(_binary 'b\\\\^\\\\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/README.rst',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\iy\\&\|\,',_binary '4b\\\w0&\\\\ɾ\H/aH;','',0,'?'),(_binary 'Tā\ԎF9sq\\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɤKM\\:p\\\"\',_binary '\\rOh\=vtCu\\\vʘ+\\[\42\','',0,'?'),(_binary 'K\\q/^\TkN','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/.gitignore',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&+\\b0',_binary '	\\\eA?l\\'8lo\\`\','',0,'?'),(_binary 'J\0\=h|:\w40\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2+F_b䣲\6غ',_binary 'o׏s_XnF<5ϻ\n8P\\ѷ','',0,'?'),(_binary 'K䮫gfb \\0.','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/config.m4',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	q\1\ֹ\Y\',_binary '\\c|?!!qJٚ0ܜ\]떢i\'','',0,'?'),(_binary '-k1\\@NWO\\`Z\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/config.w32',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[I\p^W\rs',_binary '#\\:\Z%-@2\zQ3-\C)\\A','',0,'?'),(_binary '\_rCu,O\`','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/php_pimple.h',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '쫁x\D\9$',_binary '\lqwm^[㛃˾P\d\V\','',0,'?'),(_binary '\$\\8X\1c{D\"','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/pimple.c',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\\Ze.\\26ef',_binary ']#\2G\\Ȉ\J%[\0.\i\O','',0,'?'),(_binary 'FTs<H͚v9\,','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/pimple_compat.h',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rb@)k\x\\'\Q\',_binary '\;g1S%$\1y\m^-\\\>','',0,'?'),(_binary 'CC\،\u	J*\ZA','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/001.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5[8a\9\c\\\g',_binary '\\g\\"18ų\\Mz%(&8^=u\','',0,'?'),(_binary 'nXDpݱ\\QJ','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/002.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':m\nbh|',_binary '\\<n\o-g\ȍ-|x?:','',0,'?'),(_binary '\\\v18\e','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/003.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\le\\\GOmP',_binary '?\Ļq\\\k[\[z(t˺Pe\\','',0,'?'),(_binary 'y4GkОen։','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/004.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\`.c1\\',_binary '`L\!-\9O^\V=\'\,\\g\\`i','',0,'?'),(_binary '\\\[!\AQe]\"\\r','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/005.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CL\'J@V|',_binary '\< \\\~\m5\rh\jt\qk\\','',0,'?'),(_binary '\r!zO2\\=]&','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/006.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S,a\vi\Z7\',_binary 'Q#\ʡCDf\a\d(VRB\T','',0,'?'),(_binary ' \~RHʦ5m','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/007.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\g\fk\"E\',_binary '[Լ\~%ܵ\\\1\\p̨\.݁\@ۦ+x/','',0,'?'),(_binary 's\\\\\bG)\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/008.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\DˉmG^ꋉ\nh\',_binary 'y^E\nQV\\kZ,\蠅m`\','',0,'?'),(_binary '4cAq\nIU{\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/009.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\?Dp1檸kɁ',_binary '\x\\\u\j\\\fT\,=lE\\\\','',0,'?'),(_binary '.\	a3\gIG\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/010.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_g\\oN݇\$\gu',_binary '|3T_Q\x,`\\FQ-M2T\\Z\0','',0,'?'),(_binary ':wQ/B\\\0Y','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/011.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\<\Q#4Ƭ\\\n',_binary '\y\\m`A 	\&YaKLY:O','',0,'?'),(_binary 'zz2A◮\\\30\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/012.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\\,\\\_@',_binary '\\}\64\\\S-\6yjW\Z\nA\','',0,'?'),(_binary ';Q\rk\rP-\\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/013.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ˇu$ރ.\Ƴ$\',_binary 'R1\\V+\\\-S\\\\T\\'X␑C7','',0,'?'),(_binary 'WӢ\w\rּ]\'e\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/014.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\jz%3/R*Q',_binary '_\0\{	\\"e\\\6J\\_KÁo\\\C\','',0,'?'),(_binary '6jC%c\\6Y\m\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/015.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bl-\Z#\ZEj[',_binary 'oi\\Z:\X\mf\q\I\0\OGяl#d','',0,'?'),(_binary '6l\f|zu\,','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/016.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\HV_~\MX)6',_binary 'I\f*}-yK\?\"\\t\Z\','',0,'?'),(_binary ':\\\\	\r','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/017.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>V!\~\֌',_binary '9U\i\\\\`\1\d錼\c\\','',0,'?'),(_binary 'OUArnS1\!8O%','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/017_1.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\\0\\I',_binary '	FAZylZ\\\\n?y@xQf5F]/','',0,'?'),(_binary 'RtF!!ɲʗ','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/018.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ߓVti_Eo\',_binary 'S׷e\\gAya\\oz\Zz\:\Z%\`\','',0,'?'),(_binary 'Ae,2)Y0ۜ)n\\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/019.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w2nJ3uCi_',_binary '\$PM,urQ\!n\m\Z[1R$B0-@','',0,'?'),(_binary '\\n)h+\0	\\>','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/bench.phpb',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\;i[\.\\r\',_binary '\Ԕ_\P g\\d\\n\p%u\+\','',0,'?'),(_binary 'QL\m\\Yc\ӿT','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/bench_shared.phpb',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a?\h\\櫝\f+V	',_binary 'i8m&0\\gK	\\\zCh\vh\\','',0,'?'),(_binary 'ʹʳ\\G\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/phpunit.xml.dist',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R,0\0\y',_binary '\VfK·:j\{>}\Ίt\O\','',0,'?'),(_binary 'W\\\\\\ \&D','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1N\'B9Z\\	h͛',_binary '\ˬSkPO[4\x\W\5','',0,'?'),(_binary '9ߨ	*\0Җ\Z\7','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/ServiceProviderInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hol\`ASɾ#`\',_binary 'rc\\Q\)c\	H\l\	B','',0,'?'),(_binary 'M\햀ݜ\\H֣*\Z','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Invokable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*K	jR\z',_binary '\\"\Ҵ\0vt\\dH4\5~,#4','',0,'?'),(_binary 'M>2CVl\?7H','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/NonInvokable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\mi\\L\\\wz\e',_binary '\kLu^4Y\\\\j}\X[ޛ\X+ھ','',0,'?'),(_binary '	0i\2\\ \Z','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/PimpleServiceProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\Z\t\\\T\:',_binary 'R\Z͈\\N$\T0;kGBӵ~`WC&\','',0,'?'),(_binary '\\u\b\82͢','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#鬋\\Ɗ\\\"',_binary '^\Z`G}N,N\B\o\\@\ս','',0,'?'),(_binary 'MIb\dO\N6*','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Tests/PimpleServiceProviderInterfaceTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r1\\\]}j\Zg\',_binary 'P1\gY\\Zx	Kkg\\\','',0,'?'),(_binary 'ݬEj8@¢V\\M\\','wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Tests/PimpleTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^3ӝ]\\\j͛g\',_binary '?JJʳ\rD#\. Z1fj|\"+{8\*','',0,'?'),(_binary '\'PP~L5󋡼\#','wp-content/plugins/easy-weather-widget/views/widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\̈́\9\rXh&(e\',_binary 'dyp\0\E\_0\1\6-C\SLuX{','',0,'?'),(_binary 'S\_@ \d\\Wo4','wp-content/plugins/easy-wp-smtp/class-easywpsmtp-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\nI\sZ\\\_\',_binary '\0\\Ƚ>!|Xz\'H\\\A\\\L\v\','',0,'?'),(_binary 'H\\g\\\\y\n\ZhX','wp-content/plugins/easy-wp-smtp/class-easywpsmtp-gag-mailer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(H\sFp6ͬ]KvF',_binary '|\\s,V\\g@JU\NY\Z\C','',0,'?'),(_binary 'ɔ.*\\\5Op\','wp-content/plugins/easy-wp-smtp/class-easywpsmtp-utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TԆ\b)V\\\',_binary 'I6;*\\8\usX\זN\/7a:','',0,'?'),(_binary '-Ln\\\\\R','wp-content/plugins/easy-wp-smtp/css/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary 'x\"%?4\Qi','wp-content/plugins/easy-wp-smtp/css/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|{\¡1-@\',_binary 'U|\{*\GH\)Ż\n8ڧc\','',0,'?'),(_binary '+\\#q/Ԛb<@e','wp-content/plugins/easy-wp-smtp/easy-wp-smtp-admin-menu.php',0,_binary '+ܼ̈,nU!\"',_binary '+ܼ̈,nU!\"',_binary 'ו\\4M\ʛCv\\8y\\w&hC>h\\\','',0,'?'),(_binary ' j?\`\+<`\','wp-content/plugins/easy-wp-smtp/easy-wp-smtp-utils.php',0,_binary '~Q\5\ε',_binary '~Q\5\ε',_binary 'z\!y6wpq\\A\\\\\i\\pG','',0,'?'),(_binary '\ޫ\DEkX\\X\<','wp-content/plugins/easy-wp-smtp/easy-wp-smtp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=g8^W\;R\F',_binary '/z\~~ꀀ\WQf\Co\tf\«\#h?','',0,'?'),(_binary 'tDlh.\~7','wp-content/plugins/easy-wp-smtp/inc/Cryptor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tG(\%\47b\',_binary '_DIŉpN*X\\\QX\BD%6S','',0,'?'),(_binary 'svBT\\ۂ(','wp-content/plugins/easy-wp-smtp/inc/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary ' XcUNO\W᫟\','wp-content/plugins/easy-wp-smtp/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary '\׼q|\','wp-content/plugins/easy-wp-smtp/js/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary 'B	)X\}U\','wp-content/plugins/easy-wp-smtp/js/script.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nPd2&\P\<p\z',_binary '_|\\Z\nGZW#M\9%}\C\xm.!','',0,'?'),(_binary '<\\\\"N\.:\U','wp-content/plugins/easy-wp-smtp/languages/easy-wp-smtp.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\r+\\!`HP9Xr',_binary '7\\2\[\gx\}C*\0||7c','',0,'?'),(_binary 'OT\H&_\ݬ-\','wp-content/plugins/easy-wp-smtp/languages/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary '\<o\\T-P?','wp-content/plugins/easy-wp-smtp/logs/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^͎5MA\0ҳ\',_binary '\\.<:\n\l_\\,L(d2F\\)\yu','',0,'?'),(_binary ']#\}Vuƙ\Zєn;','wp-content/plugins/easy-wp-smtp/logs/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary 'x!\Z\\\0u7|S2<\','wp-content/plugins/easy-wp-smtp/readme.txt',0,_binary 'D\g(\Eb\\d',_binary 'D\g(\Eb\\d',_binary 'q\\!W@\\Ds^I\HH8ΛgfS\	','',0,'?'),(_binary 'בGQe\G\C','wp-content/plugins/easy-wp-smtp/screenshot-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Rd\n\\0D	DR\',_binary 'MG҈9\̊_\g\	\ѭ\M\cՠ\r\Z','',0,'?'),(_binary '6\f\A\xQ','wp-content/plugins/easy-wp-smtp/screenshot-2.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\⭥GC6`,#',_binary 'FnI,~i\n\o\<# \E\r\N$\^','',0,'?'),(_binary 'k\̻;Lb1W0\GJCc','wp-content/plugins/elementor/assets/css/admin-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[]6ҋ.NB',_binary '<\Ű\YqC\l7y\t:HQgD\b\"','',0,'?'),(_binary 'u6\Ԫ\0:hwdÃڏ\','wp-content/plugins/elementor/assets/css/admin-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Xqgo\׷XlK',_binary 'DkڒY:\oՉ>0B_\ (4\\r*','',0,'?'),(_binary 'KBb\}\\l;\','wp-content/plugins/elementor/assets/css/admin-top-bar-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\QkYS\\*\eU',_binary '~gƈSwB\M|\)\rq\\\ͯ','',0,'?'),(_binary '\Zw`+\W','wp-content/plugins/elementor/assets/css/admin-top-bar-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2]\Yڦr\\~j\'\',_binary '7\\!\Q\YGn\\Q\>$mHSݞ?M','',0,'?'),(_binary '-3\w\\W1\f','wp-content/plugins/elementor/assets/css/admin-top-bar.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z?q\	|P\',_binary 'ʊ\r#\\}l5\/dP\ \\','',0,'?'),(_binary 'zD2}9rA1@\','wp-content/plugins/elementor/assets/css/admin-top-bar.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '㩙-\Q~^sd',_binary '5\q\3T@ߎ\'	\IV\WZv','',0,'?'),(_binary '!\p3\\\Xbid\\','wp-content/plugins/elementor/assets/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*u\0m\\`	_*',_binary '\1$j{n\\z!\hƖ9yWT\n\Яq','',0,'?'),(_binary '\^а.mԮe~','wp-content/plugins/elementor/assets/css/admin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k[\NKfX)\Zg\XO',_binary '|\H\8\%ja~ѯW[2|e)\9aڼ\','',0,'?'),(_binary 'r\\j\7\0^','wp-content/plugins/elementor/assets/css/app-base-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)]\C簮j',_binary '\N5R|j$3\\v[O$0nAVb]\','',0,'?'),(_binary 'ZÆ\8\Z\f','wp-content/plugins/elementor/assets/css/app-base-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4\\{\\F\iZ',_binary '\)4J\	/PJH\r/ \P\','',0,'?'),(_binary 'O\\}|6\nz\k%_','wp-content/plugins/elementor/assets/css/app-base.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\KC\"NN-\',_binary 'y[\\'\7\\\\nȂ}tyERG\\НE\\','',0,'?'),(_binary '\_<C3','wp-content/plugins/elementor/assets/css/app-base.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4\\{\\F\iZ',_binary '\)4J\	/PJH\r/ \P\','',0,'?'),(_binary '\\\e\i(#\\\X','wp-content/plugins/elementor/assets/css/app-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M#=\\\'\\qc\\',_binary '<\ӕy0\\ҡƑ\U\\\{І\ k\','',0,'?'),(_binary '4*U\\D|\'\J','wp-content/plugins/elementor/assets/css/app-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kevo9N\0h',_binary '<\|EZޫ\0\^\Q\\ueD_\@1','',0,'?'),(_binary ':̕W\/C(1e','wp-content/plugins/elementor/assets/css/app.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[jo-K6*]',_binary '|\/x\߱/D!\\';CE\6\r+[|F','',0,'?'),(_binary '(\\\\>b\z','wp-content/plugins/elementor/assets/css/app.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9sއ\a%m\==*\',_binary '\^&SW\?#d\*\cy\v#\9S\','',0,'?'),(_binary '\:\ SLܦ\!\','wp-content/plugins/elementor/assets/css/common-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^m\Z\0y<)/ℾ',_binary ' \!9rʵ)\r\0\b+\Fts83\֩\t','',0,'?'),(_binary 'k8\0\y \M','wp-content/plugins/elementor/assets/css/common-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'-9\\Zc\"+`|',_binary 'Z\1U\'#o始FriyIK8`\0\s݂+\','',0,'?'),(_binary 'A<\"}7\\\Kb\߂\','wp-content/plugins/elementor/assets/css/common.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'فƏ`\1TPy',_binary '\o\\\\_\K\C\S@>\n\L\ui','',0,'?'),(_binary 'k\\(//R\rH~','wp-content/plugins/elementor/assets/css/common.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rۇ,f!Ƒ	',_binary '?\H\Z\9-.N\5ss%!Dv0','',0,'?'),(_binary '2(\W*C/OlgH\\','wp-content/plugins/elementor/assets/css/editor-dark-mode.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f\Q\Άz',_binary '\\nȕ\V\$wpf	\\Hclt»','',0,'?'),(_binary '\\`/)\\','wp-content/plugins/elementor/assets/css/editor-dark-mode.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ul\m,\zX\\',_binary '[a[\j\\\!\/7g\Oڭَqq','',0,'?'),(_binary '1uBd\RuI\\r','wp-content/plugins/elementor/assets/css/editor-preview-legacy-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\K\/w:r\',_binary '<c/%=T\״ \Ȇ)i[ȷ','',0,'?'),(_binary '\f\bT7|s','wp-content/plugins/elementor/assets/css/editor-preview-legacy-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%Ȍ/?ŧj\*',_binary '\:\ncR.\HP~\\klVdd\\6Q','',0,'?'),(_binary 'N}\C\\\\0s\ŪV','wp-content/plugins/elementor/assets/css/editor-preview-legacy.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\m~b\+5\',_binary 'V\Z4ww@d\2eq>]ji\\o','',0,'?'),(_binary '\LCr\M[_C','wp-content/plugins/elementor/assets/css/editor-preview-legacy.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%Ȍ/?ŧj\*',_binary '\:\ncR.\HP~\\klVdd\\6Q','',0,'?'),(_binary '4;\Cj#P_\','wp-content/plugins/elementor/assets/css/editor-preview-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ǁ@\\\z\\L˚v',_binary 'JՋe\Ô\n\B_aսbh]H#\.x','',0,'?'),(_binary '|J٠\\\t|\\','wp-content/plugins/elementor/assets/css/editor-preview-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '݉Æ`#yN5',_binary ' w\U8̺n\e\Z4E3`\','',0,'?'),(_binary '\h7Ȇ\\M\n','wp-content/plugins/elementor/assets/css/editor-preview.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\3o$,pS',_binary 't\a\\nP<\\\\'=\K\Sg\h','',0,'?'),(_binary ' \~kѯ}B{','wp-content/plugins/elementor/assets/css/editor-preview.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',Q8qzbu\Z\\ \S',_binary 'PH\\G7y2ZHSy`Ra2\r\\Z4\,V','',0,'?'),(_binary '|\^t<[t\j','wp-content/plugins/elementor/assets/css/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\\AN|(4\s',_binary '_\'\\.Gʄ3	\U\*	\3q#9t\ԇ','',0,'?'),(_binary '\"2)_OH\#!','wp-content/plugins/elementor/assets/css/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AVG\)\\_>',_binary '\ Ttw:y\\_\\\rm,$?`8`','',0,'?'),(_binary '\T\N\\O\\b','wp-content/plugins/elementor/assets/css/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.-P\"#\n\#S',_binary '\\Ǒ\"~0؃\\xcMWPy\','',0,'?'),(_binary ']tmT\ϔl]Kk\\','wp-content/plugins/elementor/assets/css/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\24n\r~i\',_binary '\[f\\\Zp&iT(\\@\nn,h\','',0,'?'),(_binary '\Ҹ<=\\}\|\','wp-content/plugins/elementor/assets/css/frontend-legacy-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'к2\(<\\C\'',_binary '\fg\lQPy\n7Wh`LH\' Ve^\R','',0,'?'),(_binary '}.F\!\\r~\0&','wp-content/plugins/elementor/assets/css/frontend-legacy-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nh\Č5)\˹&',_binary 'U`G8\fd\J89@R\Գp@','',0,'?'),(_binary '\tZ\-!Éܹ','wp-content/plugins/elementor/assets/css/frontend-legacy.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't}\\\H>\/*f\',_binary '\\Z=\\Z\W\D\~;yQ\]9\<cP\\\','',0,'?'),(_binary 'v\S\GFD|\\\\T\','wp-content/plugins/elementor/assets/css/frontend-legacy.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nh\Č5)\˹&',_binary 'U`G8\fd\J89@R\Գp@','',0,'?'),(_binary '*8\0w\3#iV\l','wp-content/plugins/elementor/assets/css/frontend-lite-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\xlE.\>\'s\k',_binary 'ÁYw\y,\@+끽esC>\r9\\\c','',0,'?'),(_binary '\a,\\tf)','wp-content/plugins/elementor/assets/css/frontend-lite-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8Di\w\\^9',_binary '2HE+q\\Z\\\	\FlfXI\\\'՚','',0,'?'),(_binary '+7Ӎ\K&:\ޠvԻ','wp-content/plugins/elementor/assets/css/frontend-lite.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\B,\}Пc\l',_binary '?Bkٱ\ibiJAւqp\1\\Z[e\,','',0,'?'),(_binary '@DযTx\'\!','wp-content/plugins/elementor/assets/css/frontend-lite.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\i\n0\\\@R\ZR',_binary '\XikM\\\S\3\M`H\ZM\\\S\','',0,'?'),(_binary '\/\*NW\\P','wp-content/plugins/elementor/assets/css/frontend-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\[PRﯢ\\/s0',_binary '}!\\\\\S.i~U9+ao\<\','',0,'?'),(_binary '>w\B8aNK[Xc\r','wp-content/plugins/elementor/assets/css/frontend-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\PQ<y\',_binary '\^:J\\ⓓ\ExE\iK.\8cȭ','',0,'?'),(_binary '3FH\\\eQ\','wp-content/plugins/elementor/assets/css/frontend.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]\V',_binary ';$\?\p\\\}D:\\6\\ԓ','',0,'?'),(_binary 'F\`\\G\ff&x','wp-content/plugins/elementor/assets/css/frontend.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iw!HJ}c\nG1',_binary '\^E0\\\\э^kB\ͥ\wn?\\ 4','',0,'?'),(_binary '+\h,\\Z:R;(%N','wp-content/plugins/elementor/assets/css/modules/container-converter/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p\'Oos\\t\j8',_binary ']\+\\Kd^9\\lۛ\\0\RL#\=&N','',0,'?'),(_binary '8zC\\A\\','wp-content/plugins/elementor/assets/css/templates/frontend-legacy-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ǹ)\|B\i',_binary '\?\<)\.\@}\\5m[:M\UD~r','',0,'?'),(_binary '\\h7I2\@','wp-content/plugins/elementor/assets/css/templates/frontend-legacy-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p6لt\P\͒',_binary ' ;\HX+>dk\"\\n\L\\\e','',0,'?'),(_binary 'R\W\0(G\','wp-content/plugins/elementor/assets/css/templates/frontend-legacy.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ǹ)\|B\i',_binary '\?\<)\.\@}\\5m[:M\UD~r','',0,'?'),(_binary 'K\q?6\\6<Kb}\Z','wp-content/plugins/elementor/assets/css/templates/frontend-legacy.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p6لt\P\͒',_binary ' ;\HX+>dk\"\\n\L\\\e','',0,'?'),(_binary '\\\u\lr1\kn','wp-content/plugins/elementor/assets/css/templates/frontend-lite-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~S\so;Y(;\d',_binary 'm\0[\P}8\\\\\r\h9Z\\Saņ\0','',0,'?'),(_binary 'V-sj\cno','wp-content/plugins/elementor/assets/css/templates/frontend-lite-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\*}aN\\u',_binary 't{ BT\j$\m\r&y\cI%Ύ\\','',0,'?'),(_binary '\\\\b\'vXT\n','wp-content/plugins/elementor/assets/css/templates/frontend-lite.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3{\:CS|EA-',_binary 'S\Lw\\\՜\-\Ǉ|~>\,\r\\','',0,'?'),(_binary '~ݺ9i\\U|\\','wp-content/plugins/elementor/assets/css/templates/frontend-lite.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\B<\Y',_binary '\\]wgc\lI7wb}?\','',0,'?'),(_binary '\L\1.-\\yn\','wp-content/plugins/elementor/assets/css/templates/frontend-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6񙹰\7b\\:d',_binary '/)\r\*kNVc\\l̖68,\5\','',0,'?'),(_binary 'ޖ,ΫH\\WD\D','wp-content/plugins/elementor/assets/css/templates/frontend-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\'r\\]\',_binary '\r\\Ohևޥ\\6ܟ֢Ĵ\3\'C','',0,'?'),(_binary 'Ar\\ -\\\U#\'\','wp-content/plugins/elementor/assets/css/templates/frontend.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_j\\\r\L }8!(',_binary 'y\n\@wE\\n~ɭ4\ϨG\EtZb\j','',0,'?'),(_binary '8\V-\ʜA\\','wp-content/plugins/elementor/assets/css/templates/frontend.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\xC\'^}\\礧3',_binary ',N\͇\\r\7\ciT}\ߤf\\\%\<','',0,'?'),(_binary '6\6\apϩ\2c','wp-content/plugins/elementor/assets/css/templates/widget-accordion-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rR\Ƕ\L\>\/	',_binary '>jT|\D\>\#_R7\\s\3','',0,'?'),(_binary 'cU*\\t\~\\\','wp-content/plugins/elementor/assets/css/templates/widget-accordion.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3U\ns܌9=\\',_binary '료a\\Њ\GD|\"V\Zd>\{Ϋq\C','',0,'?'),(_binary 'z2$\\H\','wp-content/plugins/elementor/assets/css/templates/widget-alert-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7m\ʣqjXs\\',_binary ']\ջ)\\q\\Zk:3^mum\Jh','',0,'?'),(_binary 'M\\F','wp-content/plugins/elementor/assets/css/templates/widget-alert.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\nG\\\\r\\\Lȴ',_binary 'v\ӣ7$s\A\\>td.6;;\#','',0,'?'),(_binary 'G`:&w|u.2','wp-content/plugins/elementor/assets/css/templates/widget-icon-box-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w.z_\r2[\\ܤ\I',_binary 'ʖo\\k/\a\QOŰ9\GZ[*⚪','',0,'?'),(_binary 'sFE\!\m\L(U','wp-content/plugins/elementor/assets/css/templates/widget-icon-box.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1׫w#\r',_binary 'N!fv,I}^ B\\ODm\}Ls#','',0,'?'),(_binary 'ѝ\`-0TvyQC@','wp-content/plugins/elementor/assets/css/templates/widget-icon-list-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٌ\`Y>KQF',_binary '|oGR$h~\$a\kr\'ŷ#+ÈTvk\','',0,'?'),(_binary '\*j\\Āhx\0d','wp-content/plugins/elementor/assets/css/templates/widget-icon-list.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i{T{i]\',_binary '\Ơ@\\\]=Ky]zgލI\:','',0,'?'),(_binary '\\|biWpJGf','wp-content/plugins/elementor/assets/css/templates/widget-image-box-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0L\f\7\|z',_binary 'i\~N\\evQԬ\r\i\w\h\','',0,'?'),(_binary 'vz\\,CB\r\@\\'','wp-content/plugins/elementor/assets/css/templates/widget-image-box.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#C_9\\+\)[\s',_binary ']Լl\\\n\Q~Nv\8\V\\r','',0,'?'),(_binary 'L\\)7a\\\4\\n\\ ','wp-content/plugins/elementor/assets/css/templates/widget-image-gallery-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't;\\GO',_binary 'G^7\Wlpx\c.O+\[\n6','',0,'?'),(_binary '\t\М\s!q','wp-content/plugins/elementor/assets/css/templates/widget-image-gallery.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't;\\GO',_binary 'G^7\Wlpx\c.O+\[\n6','',0,'?'),(_binary '\_z\\J*_\hWu','wp-content/plugins/elementor/assets/css/templates/widget-progress-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\֓\\\Nd4\\',_binary 'v69v8\\0{z[7\&;mVdJ\'\\\?r','',0,'?'),(_binary 'f\\Z\\\m','wp-content/plugins/elementor/assets/css/templates/widget-progress.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0A\\]\\	(\',_binary '(??m@\za\Z\Q\]-U\l(?EKtx','',0,'?'),(_binary '\w:\Y`칇','wp-content/plugins/elementor/assets/css/templates/widget-star-rating-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#S8\\\rŅcW\x',_binary 'O\\3?\Ӟ\cjmӛ\\l5q]','',0,'?'),(_binary 'Ǭqw֕rO','wp-content/plugins/elementor/assets/css/templates/widget-star-rating.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VuaPSg\\\\\Z',_binary 'F7ȸ{5JvE)u\w\\8ZE<!','',0,'?'),(_binary '\nש!\\@\\','wp-content/plugins/elementor/assets/css/templates/widget-tabs-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|`R J.%\\',_binary '\m;\\`\nR|0.0RSFW_\','',0,'?'),(_binary 'Q23j\k\y','wp-content/plugins/elementor/assets/css/templates/widget-tabs.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?mxO\EEN',_binary '\,\'\oƎ l>G`3\eLqw','',0,'?'),(_binary '\\rl;E','wp-content/plugins/elementor/assets/css/templates/widget-toggle-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\A\V\Fu',_binary 'O6}M\h{\\&BM\N\\"ݲ\\\\','',0,'?'),(_binary 'u\&\A;\kp4n','wp-content/plugins/elementor/assets/css/templates/widget-toggle.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A.OEi5D',_binary '\^Wa|/rd>QCH\\Y;h;H\\@S','',0,'?'),(_binary 'sƓ\\DOj\\\\','wp-content/plugins/elementor/assets/css/widget-accordion-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7g\\\y\<s+Y',_binary '+{4\P^y\uc[I\0\\nX','',0,'?'),(_binary 'X\\QDӨpH\ʯ','wp-content/plugins/elementor/assets/css/widget-accordion.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4zO\nx',_binary '-\\\;~!q\LLF\(v\\','',0,'?'),(_binary ':vL|[?΃i','wp-content/plugins/elementor/assets/css/widget-alert-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|\0<@n8\\ze>',_binary 'e&|rϿ\P*\/¹\4!\'|U*\\\w','',0,'?'),(_binary '%\h\2\d9\a','wp-content/plugins/elementor/assets/css/widget-alert.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~}d\\>\\\\s',_binary '\\p\R^E@6͖|U\\"O}GOq','',0,'?'),(_binary 'z\{:Ψ\ߠl','wp-content/plugins/elementor/assets/css/widget-counter-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1L+V\`Je\gS',_binary '\w)/\D\Q\\w\ʖ!\','',0,'?'),(_binary '	L=R0\\݃T','wp-content/plugins/elementor/assets/css/widget-counter.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[^o3ӷ8ᐋ\',_binary '\&3*\R^ǨCg@n[\Oq','',0,'?'),(_binary 'J\\\\\\x\','wp-content/plugins/elementor/assets/css/widget-divider-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\\8xBx@ٝ',_binary '\*\"+Cq\'/ZĨdN,\.&\W73\G','',0,'?'),(_binary '/v\\JYi','wp-content/plugins/elementor/assets/css/widget-divider.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\\8xBx@ٝ',_binary '\*\"+Cq\'/ZĨdN,\.&\W73\G','',0,'?'),(_binary 'MZ\\\\_Ӻ','wp-content/plugins/elementor/assets/css/widget-google_maps-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nL@B&,\eJ',_binary '}:hȱۺцF~\^p&\?\LR','',0,'?'),(_binary 'ѶɷzHC\'00w*','wp-content/plugins/elementor/assets/css/widget-google_maps.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nL@B&,\eJ',_binary '}:hȱۺцF~\^p&\?\LR','',0,'?'),(_binary '\Z\\7\s\\в\\','wp-content/plugins/elementor/assets/css/widget-heading-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\uc+=\6(2e%',_binary '!-#$2uE{\\?a\)\]1%M','',0,'?'),(_binary '\d\0Z\l\\:','wp-content/plugins/elementor/assets/css/widget-heading.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\uc+=\6(2e%',_binary '!-#$2uE{\\?a\)\]1%M','',0,'?'),(_binary '\\\'	\δP+!\','wp-content/plugins/elementor/assets/css/widget-icon-box-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.\a\E\\i?s_',_binary '\d,\\\d\o\#\&q\BAWWX=`','',0,'?'),(_binary 'b\\\\&f0WM\/;\','wp-content/plugins/elementor/assets/css/widget-icon-box.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@~eW\Qt㌮37\',_binary 'AW\%+\r\\34\t_\\\c','',0,'?'),(_binary '|P_\;\y&I','wp-content/plugins/elementor/assets/css/widget-icon-list-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\sf\_\ZID\x',_binary ']ǃ[\=\j,e\+\\m\H','',0,'?'),(_binary 'j\wK+]P\nc2W\','wp-content/plugins/elementor/assets/css/widget-icon-list.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@ߓ\|涤',_binary '\\\Km\r6\K)!w+\BFM','',0,'?'),(_binary '6\j\n?\\\V#','wp-content/plugins/elementor/assets/css/widget-image-box-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\\MM=\Ê$',_binary ' ZWӹ\,ؐa\\\`u-.\\Z','',0,'?'),(_binary '=\@e\G1˺','wp-content/plugins/elementor/assets/css/widget-image-box.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\%6\\\\å}oM\\',_binary ')TC\\\]HjV9T@\Z)xJ\\n\','',0,'?'),(_binary '\H.w\\Qސ','wp-content/plugins/elementor/assets/css/widget-image-carousel-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\$\b+\\,!P',_binary '\e\d\C\χ<k\\i2dwb\L\','',0,'?'),(_binary '|19\u\ͬ','wp-content/plugins/elementor/assets/css/widget-image-carousel.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\$\b+\\,!P',_binary '\e\d\C\χ<k\\i2dwb\L\','',0,'?'),(_binary '\~򩨖K]^','wp-content/plugins/elementor/assets/css/widget-image-gallery-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=ǰ\h\2FB\7M',_binary '|Wx{\01\\Ҧ\\+]n\m\RSkg\B','',0,'?'),(_binary 'kZ\\\-G\0C','wp-content/plugins/elementor/assets/css/widget-image-gallery.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=ǰ\h\2FB\7M',_binary '|Wx{\01\\Ҧ\\+]n\m\RSkg\B','',0,'?'),(_binary 'ppQVװ\\8','wp-content/plugins/elementor/assets/css/widget-image-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\\\BE=\rk\',_binary '\wM\\Hh\K%\f\GQ\S	\','',0,'?'),(_binary '8\\)8k \\\l','wp-content/plugins/elementor/assets/css/widget-image.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\\\BE=\rk\',_binary '\wM\\Hh\K%\f\GQ\S	\','',0,'?'),(_binary '\\1OK~ww','wp-content/plugins/elementor/assets/css/widget-menu-anchor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Yd\$\)?X',_binary '`l \Q9\\$\;Q\s1	\"t؁i%\5','',0,'?'),(_binary '5~\?\rQo2%c3q','wp-content/plugins/elementor/assets/css/widget-menu-anchor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Yd\$\)?X',_binary '`l \Q9\\$\;Q\s1	\"t؁i%\5','',0,'?'),(_binary 'e\na\%o\E\','wp-content/plugins/elementor/assets/css/widget-progress-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2*!k\Q_3L%a',_binary 'k\\,\\9q\Z\)\SIz\\\\$\<tڠv','',0,'?'),(_binary '\86?b%`','wp-content/plugins/elementor/assets/css/widget-progress.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'OrKNa\p\@f!!',_binary '\݁\\Z\\޴\0i\\\L?2\\k','',0,'?'),(_binary '/`\\v}C\','wp-content/plugins/elementor/assets/css/widget-social-icons-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iBOq\@*\I',_binary 'ky]\ş\RZ{ւ\\\?j\#VN2','',0,'?'),(_binary '\\&+=\[?\b!\','wp-content/plugins/elementor/assets/css/widget-social-icons.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iBOq\@*\I',_binary 'ky]\ş\RZ{ւ\\\?j\#VN2','',0,'?'),(_binary '!L\i!<[`\X#','wp-content/plugins/elementor/assets/css/widget-spacer-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H7ޖ\Ȉ\',_binary 'V\Zr6\s\&L\9\Hm\Z}\\n׮\S','',0,'?'),(_binary '\O\[\\O>\*','wp-content/plugins/elementor/assets/css/widget-spacer.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H7ޖ\Ȉ\',_binary 'V\Zr6\s\&L\9\Hm\Z}\\n׮\S','',0,'?'),(_binary 't\~$\r','wp-content/plugins/elementor/assets/css/widget-star-rating-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r#\'vꟕCV',_binary '\\@E\6\"dJ@ADAqʒ%\j','',0,'?'),(_binary '!	>oU䦍\^','wp-content/plugins/elementor/assets/css/widget-star-rating.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ⱥd~R2Y\\?',_binary '\\\+g*\쑮\"\\\i\r2lŜ','',0,'?'),(_binary '.fâ\\\\mݻ','wp-content/plugins/elementor/assets/css/widget-tabs-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	!̫y\h5',_binary '|\h=\Zcf\tǚ\/\{\SMR\(','',0,'?'),(_binary '阮[\̛~\ہr','wp-content/plugins/elementor/assets/css/widget-tabs.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '✛\r꼁\\r5\\6/\r#',_binary 'ITP\\jɑ]\h\WcE`{t}l','',0,'?'),(_binary '\WF\REE\4\0','wp-content/plugins/elementor/assets/css/widget-testimonial-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|cK\$=H`!',_binary '\)\K\\\4\O/7Y=m$Z92(\ft\','',0,'?'),(_binary '\*7~*\hP','wp-content/plugins/elementor/assets/css/widget-testimonial.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S%#A\14\Qֿ\\\',_binary '\ZJߓF\t<hy\\\s','',0,'?'),(_binary '\zo\)qym','wp-content/plugins/elementor/assets/css/widget-text-editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '({\g\\\Z3FȘ',_binary '\]\D6,y\\"SUY*\]\>\O\iU/','',0,'?'),(_binary '	UǞ_\R[k\','wp-content/plugins/elementor/assets/css/widget-text-editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\|aoҀ\".\\a',_binary '\\Ba&&#H!^\qyː2\!u','',0,'?'),(_binary 'C|#7\=\\q<V','wp-content/plugins/elementor/assets/css/widget-toggle-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\JO~\Vv1\^',_binary '#\\\\vIYڋ4\:\,\]\Z?K\','',0,'?'),(_binary '-\HJ\!4|`\','wp-content/plugins/elementor/assets/css/widget-toggle.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'chUyl\\7BtZ',_binary 'bW\|\\0\\&/Gݺä\\\\\\F ','',0,'?'),(_binary '#\FǎE\r\:','wp-content/plugins/elementor/assets/css/widget-video-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}0I\\\b\S%8\\'',_binary 'X_\{{\\S\.k\\0\\"څ\߈','',0,'?'),(_binary '7Q \mPX\\\\\','wp-content/plugins/elementor/assets/css/widget-video.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}0I\\\b\S%8\\'',_binary 'X_\{{\\S\.k\\0\\"څ\߈','',0,'?'),(_binary '3=\\n\8\8Os','wp-content/plugins/elementor/assets/data/responsive-widgets.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\!\\\b\\\\',_binary ']cNU)?}K\4\i\@G\\\\Z(y\','',0,'?'),(_binary '\rRnmӆ\\\E\','wp-content/plugins/elementor/assets/images/ajax-loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\S\0WjȂ/m\b',_binary '\m׋IWGP\]c.\z	\\48\\','',0,'?'),(_binary 'HQe$tg\V\X\;','wp-content/plugins/elementor/assets/images/app/onboarding/Blank_Canvas.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XJ\e\Q\wy;0',_binary 'UL}\Sى	G\3b\6\bO\','',0,'?'),(_binary 'XZ?מ6L\帝 ','wp-content/plugins/elementor/assets/images/app/onboarding/Blank_Preview.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\\Z}\}bE^',_binary '\\n\4\K&I\v\%H\ۺC|\ɩ','',0,'?'),(_binary '-i\O\soz\\\','wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Account.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I?\B_{\: V',_binary '4\3y\\r~AlE߄F\4f6\>\\S','',0,'?'),(_binary '.\(!>L@-K#','wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Hello.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>e9\\'\\Ce',_binary '\\\\rxe\ߥ:G>\n=)^\'-','',0,'?'),(_binary '\\\r=\ІEHͧk','wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Setup.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\\nTM\\ۺ',_binary '\n\b	ԘeҺ\e)\\v\.\{s&)','',0,'?'),(_binary 'h塸 \Ҳf\\','wp-content/plugins/elementor/assets/images/app/onboarding/Library.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{\\BTwQ\\',_binary 'gĬ\\0*<O|\5\Sj=\%\\\-$׉','',0,'?'),(_binary '\(S\Y+\+N','wp-content/plugins/elementor/assets/images/app/site-editor/archive.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F+v\&${\#ġ\',_binary '^\Hڿo\\R\\D5\g\A\FQ\GB','',0,'?'),(_binary ']WBt.\\\y3\M\\','wp-content/plugins/elementor/assets/images/app/site-editor/error-404.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '͇\P)\\Ȋ\\f',_binary '.\Þ\"m\r\ك\|]`\\\c','',0,'?'),(_binary '?:\(Q&s7\8','wp-content/plugins/elementor/assets/images/app/site-editor/footer.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\g{\Vk6Fzk',_binary 'i\#\B@\\\"ўo\enRnhVElW\','',0,'?'),(_binary 'iG0_W3bmex','wp-content/plugins/elementor/assets/images/app/site-editor/header.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gA\"a.3m;s3\',_binary 'WD\֘\0\9J\\"P\`(\\\v)','',0,'?'),(_binary 'з\\xg\A+dNy','wp-content/plugins/elementor/assets/images/app/site-editor/product.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݦ	Ү\Tǁ@\ق',_binary 'J0NWעzȍp5N\\\_+\EXE','',0,'?'),(_binary '1~\\]\'5j','wp-content/plugins/elementor/assets/images/app/site-editor/products.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\'\\P_\\',_binary '\n4Pb\̨YMsW\}!\55RKA','',0,'?'),(_binary '(C\r\Fl\>\\qp','wp-content/plugins/elementor/assets/images/app/site-editor/search-results.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~ҡ:\e\\\^\2l',_binary '. nP\h:Y䋰Xd\0\$\)`\09','',0,'?'),(_binary ':\\'J?Y>c\','wp-content/plugins/elementor/assets/images/app/site-editor/single-page.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@M\\k\6Qd',_binary 'W\TH\rvv\\0F\\\\\\rm\\n\','',0,'?'),(_binary 'FV\nhL3\<o<','wp-content/plugins/elementor/assets/images/app/site-editor/single-post.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%0m\r\H\\g(',_binary '\N\\ \e]Is\Gic]\c\\QR\\Ay\ZB','',0,'?'),(_binary 'tڭ\R\"LAа','wp-content/plugins/elementor/assets/images/blur.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϸV\Zغ^l\[\\',_binary 'Ufua3ct\ϧK{a<\\\Z9o4','',0,'?'),(_binary '(\\+_\V\FOW-','wp-content/plugins/elementor/assets/images/contrast.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qʕ\j\R\\M',_binary '>Lձ\M\aq*&m9	\I|+Ժϕ#\\','',0,'?'),(_binary '\k<ċ$͓','wp-content/plugins/elementor/assets/images/eyedropper.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qkh\	,n\)x+~',_binary 'O\\ˮ$|d\int-P\\<+\̜C','',0,'?'),(_binary 'p8\w#\<\\7','wp-content/plugins/elementor/assets/images/go-pro-wp-dashboard.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rlK\rd%Zۺ.',_binary 'wp(\\m1Kߔ{\?Y:m\o\\','',0,'?'),(_binary '1\\XR\5_u\,q','wp-content/plugins/elementor/assets/images/go-pro.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƌ<;\\;~',_binary '\\9\r\U*	ɥW\ Ɏ\0q\yv','',0,'?'),(_binary '\\%\\\\m','wp-content/plugins/elementor/assets/images/information.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\'\s\A\\;\\p\',_binary '\"\'M\r\ڼ1\\`\'\_\Q\7si油\','',0,'?'),(_binary ':9oW\'`=\N\нz)','wp-content/plugins/elementor/assets/images/library-connect/left-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*\c\0\n\\{b>',_binary '\\\=P\\3GO\9K]V\,\\H\','',0,'?'),(_binary '\\a\u7J\D\\\"Bu\','wp-content/plugins/elementor/assets/images/library-connect/left-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\yx\\c~\ک[',_binary 'c`\`E\\'\\\G\\P\$_@-\n','',0,'?'),(_binary 'n\?q7\\0Z:0','wp-content/plugins/elementor/assets/images/library-connect/right-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c$\\Z\+\.GD/',_binary '\8\U\\0\ΠHl~Y*\\\X\\aI','',0,'?'),(_binary '<0H\ǯ\L\\\x*','wp-content/plugins/elementor/assets/images/library-connect/right-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|c~maE\\\.9\',_binary '\'\r\|\ ˅^IۏC\n p','',0,'?'),(_binary 'z[B-(66','wp-content/plugins/elementor/assets/images/logo-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\F^S=]gb\\z',_binary 'k\Yi\\\]^19k\"\>\\і','',0,'?'),(_binary '\E\\r<4<J;I','wp-content/plugins/elementor/assets/images/logo-panel.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\c\\py\0y',_binary 'mM\P8XawZ\2\\O\,c=\:\HS\-0`','',0,'?'),(_binary '9>ڄQ$;\U','wp-content/plugins/elementor/assets/images/logo-platform.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k~>sL[',_binary 'fKi\㐮\\\vf1ƈyõ.f\ȍa','',0,'?'),(_binary '\6fݞA\5O\\Ĭ','wp-content/plugins/elementor/assets/images/no-search-results.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\WF\<+\\e',_binary '[\~\;Ll a:9*\#\\\\','',0,'?'),(_binary '&\/Q\ݥ(\F\','wp-content/plugins/elementor/assets/images/placeholder.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\j\\y\?1%\b\A\',_binary '!KKZ\'\9\&K.p!x+S|6N~R','',0,'?'),(_binary 'F7	|\\\_','wp-content/plugins/elementor/assets/js/04f4d467c8355e0cce98.bundle.js',0,_binary '#\B\\\\\p\',_binary '#\B\\\\\p\',_binary '$J&J\W\H\?Y#NŧL\\n','',0,'?'),(_binary '\]+4?\e\','wp-content/plugins/elementor/assets/js/06ad222c8807f0a951da.bundle.js',0,_binary '-\\8]\r@?S',_binary '-\\8]\r@?S',_binary '\Q\\\ʻg\:̺gT;:[\M*J4\J:\5','',0,'?'),(_binary '}a\\9Nbx','wp-content/plugins/elementor/assets/js/08d1cbe58c0b0bcb962d.bundle.js',0,_binary 'Q`tu\\\c',_binary 'Q`tu\\\c',_binary 'EУ_N\%5=\\\A\!\~rA_jX\','',0,'?'),(_binary '	cm~\\Wdn\a:','wp-content/plugins/elementor/assets/js/186b2d7ee7ced8771b23.bundle.js',0,_binary '\´\VM\N22l',_binary '\´\VM\N22l',_binary 'q\s2\]\DJXF:O\\dOa\\c\\','',0,'?'),(_binary 'qx8T\]','wp-content/plugins/elementor/assets/js/2a775af436b1a0d06b1d.bundle.js',0,_binary '\\\\\A\1\I]I',_binary '\\\\\A\1\I]I',_binary '\һ\ٹ\\¾\\\y\0A\\}dCAgB6B','',0,'?'),(_binary 'SJH\\Y%[\\\A{<','wp-content/plugins/elementor/assets/js/332fad402f0e9760e45f.bundle.js',0,_binary 'i\\\e\e1g\ٴ',_binary 'i\\\e\e1g\ٴ',_binary '\\1\Iv}`\ntg2\\bGe\Wc','',0,'?'),(_binary '\r@k7#\tm\)¾','wp-content/plugins/elementor/assets/js/3d9686bea0cd5be6e707.bundle.js',0,_binary '(8Y<P)#0',_binary '(8Y<P)#0',_binary '\M^W	J@Z>ɌBWE\#\','',0,'?'),(_binary 'Z@bP\[e\_P	\@','wp-content/plugins/elementor/assets/js/5144b4f922b4b77e2d1f.bundle.min.js',0,_binary '\\\M2ӓ\	њ',_binary '\\\M2ӓ\	њ',_binary '*ɲ@xøx{\]ĈԏJ\q\\@)f','',0,'?'),(_binary 'Xr[y-r\\f&','wp-content/plugins/elementor/assets/js/6b76acc9eaf52001d003.bundle.js',0,_binary 'g C3vmvN^\N',_binary 'g C3vmvN^\N',_binary '\%\g>\\Z\\nk\QoZ\\*\?\','',0,'?'),(_binary '`/\\7\\9\o=#B','wp-content/plugins/elementor/assets/js/accordion.1840403ce81de408c749.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WgĖ8$\G#B',_binary 'n\+\A\B\s\ܹ_d\\uw\\ \,','',0,'?'),(_binary 'tJ\\d|\D ','wp-content/plugins/elementor/assets/js/accordion.4d3ad59e593fbb4bbbf2.bundle.js',0,_binary '\\\j\\9@Qyt',_binary '\\\j\\9@Qyt',_binary '\itcT\Ω\8g\P\	+2<\\','',0,'?'),(_binary '%\\\ĩ1钛z6\s\','wp-content/plugins/elementor/assets/js/accordion.5824c4bc9e26d54f2918.bundle.js',0,_binary 'v\vl\\g]*\w',_binary 'v\vl\\g]*\w',_binary '\)>	P~XPh\rkvT\.V\\"\\v','',0,'?'),(_binary 'IokQ逪|C','wp-content/plugins/elementor/assets/js/accordion.65404faba4ceb9d9d0db.bundle.min.js',0,_binary '\[52e\B',_binary '\[52e\B',_binary '\\\9\ˋ\\E\\\\:Th\(cj\','',0,'?'),(_binary '\\\\M\ѥ\[\Z','wp-content/plugins/elementor/assets/js/accordion.839112600fade8979d16.bundle.min.js',0,_binary '\\\z\\Y} \',_binary '\\\z\\Y} \',_binary '\`ϑ\xZ꘷ɥ\Z\0?y\^','',0,'?'),(_binary 'A\\}(;$\y','wp-content/plugins/elementor/assets/js/accordion.8676521a2e6ad8c65c84.bundle.min.js',0,_binary '\ɧۦק\\on',_binary '\ɧۦק\\on',_binary '\Zb\I\!t$8U[\\++\\\\VB\V','',0,'?'),(_binary 'ě`.\\DX\W}','wp-content/plugins/elementor/assets/js/accordion.959b6d3705116b2a55b1.bundle.min.js',0,_binary 'w\P}\rWBox\',_binary 'w\P}\rWBox\',_binary '\U˖\BvF%zْ<\\9얮qzP','',0,'?'),(_binary '\\I\w\^EIZ\','wp-content/plugins/elementor/assets/js/accordion.a037e351fac33e9c9dfc.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\_\\XAkI-',_binary 'z\4L5Te6\>m:[*hgLԵ3g\\\','',0,'?'),(_binary '3\NM\s\R\\\w','wp-content/plugins/elementor/assets/js/accordion.b68e6c976682017e4ff2.bundle.min.js',0,_binary 'p\0>m\\\x@yb',_binary 'p\0>m\\\x@yb',_binary '\p\0S\0\E\d\\h\m\V\\\!','',0,'?'),(_binary '/\P|-\B\H\c\\','wp-content/plugins/elementor/assets/js/accordion.d2a56deea36e79f3c000.bundle.js',0,_binary '‒\\\98Ϸ',_binary '‒\\\98Ϸ',_binary '(1h?\ʆOuL\&bӾ\\\Ǔ','',0,'?'),(_binary '%7+\\a\&','wp-content/plugins/elementor/assets/js/accordion.e9e0c47570d3bc2ea472.bundle.js',0,_binary '\\\-\<\P',_binary '\\\-\<\P',_binary '\nc<\\\\0Áiv..N+\&','',0,'?'),(_binary '%\hI,\Ϣ','wp-content/plugins/elementor/assets/js/accordion.fb811bbb2beff11fae3c.bundle.min.js',0,_binary 'gZAy3!l#bweH',_binary 'gZAy3!l#bweH',_binary 'ˑ\맡Ltt,-W* \\%Ē\','',0,'?'),(_binary 'kAjyD\C1\\','wp-content/plugins/elementor/assets/js/admin-bar.js',0,_binary 'NiH\\n~\TdA',_binary 'NiH\\n~\TdA',_binary '\\\\E@(p\Ma\\ɗ\Z!\\P\l','',0,'?'),(_binary ']\\Q_D 	y','wp-content/plugins/elementor/assets/js/admin-bar.min.js',0,_binary '-I\\\\k\iQ\\N',_binary '-I\\\\k\iQ\\N',_binary 'ዃm\\p6\\-Q^\\/CI','',0,'?'),(_binary '(\g&飣ƍ@$','wp-content/plugins/elementor/assets/js/admin-feedback.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\*\\Ǒ\',_binary '-	Kя\o\"\ٽ\\K\و,>fvMM/+>','',0,'?'),(_binary 'zXt3coܩ/8O','wp-content/plugins/elementor/assets/js/admin-feedback.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I\0TM5\?K\'\Z-',_binary 'cf\ɿ1([7!ǐOhf3	p\','',0,'?'),(_binary 'PLot\0a\J\mbc\','wp-content/plugins/elementor/assets/js/admin-modules.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ,Bŷ\_',_binary 'į7 U\&1n\q\R\\\(G\)7\<','',0,'?'),(_binary 'y\\Aؽ\ܟl','wp-content/plugins/elementor/assets/js/admin-modules.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\J\\\8f;\GD',_binary '; O\ᗎH\\е7\˘m\ee','',0,'?'),(_binary '\\\^\@P/\\nR\'','wp-content/plugins/elementor/assets/js/admin-top-bar.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\\\\-	~\\&lW',_binary '\̀\z\\\d7AQp\r?L','',0,'?'),(_binary '_Ҕ#_\\T','wp-content/plugins/elementor/assets/js/admin-top-bar.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k,\\\_-)=2w\o',_binary '[\\uf?2BN}!ܪr\|y','',0,'?'),(_binary ':\:a\E\Ģ\','wp-content/plugins/elementor/assets/js/admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8!:\[\=s',_binary ')\C4Bz#4= ;¾\\r\','',0,'?'),(_binary 'f\&\\"=Z$','wp-content/plugins/elementor/assets/js/admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\</G_\\+G3',_binary 'Zy\\ZiQ\$r.\nE<\Z,d','',0,'?'),(_binary '\n!7s\\b!\F\W','wp-content/plugins/elementor/assets/js/alert.124c2442b8a696597f9e.bundle.min.js',0,_binary 'z\0+T,\\\\',_binary 'z\0+T,\\\\',_binary ';kCt/\)\W!\.`\\p8\\&\\','',0,'?'),(_binary '?S\Zߍ^)','wp-content/plugins/elementor/assets/js/alert.170eb40d830a3ae2d4a2.bundle.js',0,_binary '8Vr\}=>-',_binary '8Vr\}=>-',_binary '\\\\b\\\\\|G\s;\\~\\\{\Rw\','',0,'?'),(_binary 'PO\\qS.\\','wp-content/plugins/elementor/assets/js/alert.1ddc787a09e65acb8bd5.bundle.js',0,_binary 'ښ{$e8\*\-R',_binary 'ښ{$e8\*\-R',_binary '\\Z#\\#\Pж} \nt\E\,C=\','',0,'?'),(_binary 'F\\\i<Vuխ','wp-content/plugins/elementor/assets/js/alert.85332a4bfb582d516461.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ˬ%*\\\\s\0',_binary 'k;Ϙ\\\\\rJ\]ytq\8MηM','',0,'?'),(_binary '\s3\Js\0\)','wp-content/plugins/elementor/assets/js/alert.cbc2a0fee74ee3ed0419.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\ZWJ\\\\!~',_binary '^o\ߥ<h\F\_l	/9㈡@`\\\','',0,'?'),(_binary '۬Ym	sV\ZH4\','wp-content/plugins/elementor/assets/js/alert.f04b9d16129bc8aa4cdc.bundle.js',0,_binary '\\ZzI\\',_binary '\\ZzI\\',_binary 'Oz\#>mcևQ\D\\S]\	$)\'','',0,'?'),(_binary '\\\\v\q?\\m','wp-content/plugins/elementor/assets/js/alert.f4e7a6df1283698dea78.bundle.min.js',0,_binary '<GK!MaU\\rg\\\',_binary '<GK!MaU\\rg\\\',_binary 'ҭ3NRxM\!qZ4L$^l糇dн_','',0,'?'),(_binary 'O\1kD\4G0r\','wp-content/plugins/elementor/assets/js/app-loader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G5|\zxS*\Zr\$',_binary '\>s\l\7\ġ<\WKU;y]\+b. L`','',0,'?'),(_binary '3\\:\Wt\\/ ','wp-content/plugins/elementor/assets/js/app-loader.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '؎ͼ5LXۘH',_binary '\ڑ2fj\/\n\3\"E[NJak9','',0,'?'),(_binary '\\\C扑1\\\̷N','wp-content/plugins/elementor/assets/js/app-packages.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë\\L!.\n',_binary '\\7_dy1\\m\<\a=\\\]NX','',0,'?'),(_binary '\\\f\=rQ\\','wp-content/plugins/elementor/assets/js/app-packages.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\g\sgby{1\j',_binary '\D\\\yZX\\rdZ\q-2\\N','',0,'?'),(_binary ';P֩RGD\','wp-content/plugins/elementor/assets/js/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&|<[\I\',_binary '\l\fDG\\0\\\a9p\\nX3\\','',0,'?'),(_binary '\Z	Ӈ;X','wp-content/plugins/elementor/assets/js/app.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8}AD|ܒ7&я',_binary 'Q\\q\\>K\0B\5\\\','',0,'?'),(_binary 'ÑwH\\+qF','wp-content/plugins/elementor/assets/js/app.min.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\S\\q>aq,F',_binary 'eV܅y@y\^tf \0H{\\5\e\','',0,'?'),(_binary '_I=Q','wp-content/plugins/elementor/assets/js/b5be57139d4edd0d5633.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɍ֑\\׼\JKU',_binary '`\	)	E19꼕Ge\_eS\1\c\','',0,'?'),(_binary '\Z\B啾6]t\װ\','wp-content/plugins/elementor/assets/js/b652ef4fbfb3884eba25.bundle.js',0,_binary 'G\\;\zrJ\P;',_binary 'G\\;\zrJ\P;',_binary '\r\Z\\O\AN)\Ϊ_f','',0,'?'),(_binary '\\Q\\\N}\','wp-content/plugins/elementor/assets/js/b97f47714e4b947a72df.bundle.min.js',0,_binary 'z\㧫\̉r\Ӕ\\r',_binary 'z\㧫\̉r\Ӕ\\r',_binary '<\ьc\\ڊ\3=<\UfUÿ\','',0,'?'),(_binary 'tm}\\?j5ƶk','wp-content/plugins/elementor/assets/js/beta-tester.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{z-g\# \',_binary '\0\D*vj7\=W#:$0fmf:','',0,'?'),(_binary '*N|\ra 6','wp-content/plugins/elementor/assets/js/beta-tester.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/,hr\\"\!=Oe',_binary 'L\)am\\6\U\e?\\'A8q\.','',0,'?'),(_binary '\넬C3r[Tk4,','wp-content/plugins/elementor/assets/js/ca765d3d36b3dc8d6a1b.bundle.min.js',0,_binary 'QM\*\Gk=do\}',_binary 'QM\*\Gk=do\}',_binary '\\a_R~H\[\\Ja:\','',0,'?'),(_binary '\\M|!g\rBXp','wp-content/plugins/elementor/assets/js/common-modules.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5#~]W9ׁ\D\݀\',_binary '\ez\{z\ڼ^\<=bk0ڙ#','',0,'?'),(_binary 'mHC#-\\'\$.','wp-content/plugins/elementor/assets/js/common-modules.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\o\t\Ֆ\'',_binary '@^Q\CE\\Cc+JkZZm\Ga\\wn','',0,'?'),(_binary 'c\Ѥ\h,b\\5L','wp-content/plugins/elementor/assets/js/common.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%q\(o8\\',_binary 'S\\"R\-\:P\\ނDleA\','',0,'?'),(_binary 'F\\v\Զ\ObЌ^{','wp-content/plugins/elementor/assets/js/common.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8)\C}ݩ\',_binary 'cOXfL\il+?d\\1;\\3Xj','',0,'?'),(_binary '\rB>5=\\\!','wp-content/plugins/elementor/assets/js/container-converter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$8\Z~\f-\\\',_binary 'o\\\GD}9\%@w5ܑXiDA=\Z','',0,'?'),(_binary '\O\\y\\'!\0\b','wp-content/plugins/elementor/assets/js/container-converter.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KW%4\d|%',_binary '\n~`߭\ށjqLlY)\\^','',0,'?'),(_binary ']|\ZR\R\\\]ǐx','wp-content/plugins/elementor/assets/js/container.e026b16a99db8a3987c9.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\PNo.\0',_binary '@\M\5\\^\\ R\7<l','',0,'?'),(_binary '%T˟8\n\\qj','wp-content/plugins/elementor/assets/js/container.f3a37a5bf3c787312748.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^K\\}mr>,B',_binary '8\\\:4p\<I\Yt.\\N*bnu','',0,'?'),(_binary '?\9\\\nC~k\3Y','wp-content/plugins/elementor/assets/js/counter.02cef29c589e742d4c8c.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\sǖ4؊\',_binary '[\}\\e\\\sl>nd\3o','',0,'?'),(_binary '{چ\\ ҍ\i','wp-content/plugins/elementor/assets/js/counter.1bf6011c2ab9506880c2.bundle.min.js',0,_binary '\m?\Y\8\e\',_binary '\m?\Y\8\e\',_binary 'k\%\\%@;\d_\z<f\\Z:e\%','',0,'?'),(_binary 'f2ׯmS+\\','wp-content/plugins/elementor/assets/js/counter.2ca7575441c085aa54eb.bundle.js',0,_binary 'RRY/$L٨kay',_binary 'RRY/$L٨kay',_binary '+X\\U]\\r\,\p߂h\','',0,'?'),(_binary 'E{~\\\f\\Ri^\u','wp-content/plugins/elementor/assets/js/counter.48db25dfc685896cf5c2.bundle.min.js',0,_binary '`a-\mI{7\\\',_binary '`a-\mI{7\\\',_binary '\Pގ\\kxgee%&+|\r\	\','',0,'?'),(_binary 'Wy-c\@/ \uŊp','wp-content/plugins/elementor/assets/js/counter.651270dd8ea8d31d348e.bundle.js',0,_binary 'ހ4\[\\ve)F\',_binary 'ހ4\[\\ve)F\',_binary 'He\pE\\U\܇\%)G\ ~\/\|.','',0,'?'),(_binary '^skK\K\N1\"\','wp-content/plugins/elementor/assets/js/counter.699093eac935b541cdfe.bundle.js',0,_binary ']\{\i.\Ήr',_binary ']\{\i.\Ήr',_binary 'V\\!\߈\\\v=kF\1\6rDp\p\\\','',0,'?'),(_binary '\\DFKQ\;GFyL','wp-content/plugins/elementor/assets/js/counter.99f87b466b69ef909f39.bundle.min.js',0,_binary 'DB\\rz',_binary 'DB\\rz',_binary '(U\\G\+\\5\_ٷ','',0,'?'),(_binary '\a`\\+\U','wp-content/plugins/elementor/assets/js/counter.b452600865ffc51a6ea0.bundle.js',0,_binary '\Z\l>?i\\x',_binary '\Z\l>?i\\x',_binary 'n:=\\\;\1DLr\\15 z01','',0,'?'),(_binary '&\?\ZvDz','wp-content/plugins/elementor/assets/js/counter.c75eea9549b9f8026ad8.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\? M\\hP4ض',_binary '^>r2\)\/#\0RGY\\\\\0\\P&','',0,'?'),(_binary '\?\J\}*O','wp-content/plugins/elementor/assets/js/d44a57c594ce7771dd50.bundle.min.js',0,_binary '}3=Ǹ]\\o\឴',_binary '}3=Ǹ]\\o\឴',_binary '\	\1.W\pC !h\\"*d`4','',0,'?'),(_binary 'Gv\kS\e\\3w(','wp-content/plugins/elementor/assets/js/e304e36749de7c8a2673.bundle.js',0,_binary '᠁)\\\j1',_binary '᠁)\\\j1',_binary 'ۑP\R8\\\\\\\','',0,'?'),(_binary 'ME<\e!\\j\\','wp-content/plugins/elementor/assets/js/editor-document.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\$=b:\wҌp9Ec',_binary 'Ļɺ#}-\\\\\ID2c-X0#\\r^','',0,'?'),(_binary 'Ɲ\f\n\Z\\0C]','wp-content/plugins/elementor/assets/js/editor-document.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\n\SP\\)i',_binary 'T\A\!\:芍(:F\k\\\(]U?\','',0,'?'),(_binary '>\*nҺsɠ','wp-content/plugins/elementor/assets/js/editor-modules.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[SΥy',_binary '\"ԇÜ\\\w\m=o\\\Z`Xǀ','',0,'?'),(_binary '`hu\[Ǯ\','wp-content/plugins/elementor/assets/js/editor-modules.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u֒\>:d٦ػ\\',_binary 'مh\V\[JU-s(M>>\-z\[\\','',0,'?'),(_binary 'R\%0i\1V%','wp-content/plugins/elementor/assets/js/editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<R\S/a\,\"b\',_binary '\i\AR&,k#\R:*\vd\\\','',0,'?'),(_binary 'p\նvI^ؒ&\\&;\:','wp-content/plugins/elementor/assets/js/editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\bg\\\\U\',_binary '\Gt\u(ݘP\\v\\\Z\VE\cN','',0,'?'),(_binary 'X\!\	\\\#N\z','wp-content/plugins/elementor/assets/js/eef3c049bd1b690f0777.bundle.min.js',0,_binary '@\@^\y\`@Ļ',_binary '@\@^\y\`@Ļ',_binary 'X4<y״4\\ܒ\4%S\','',0,'?'),(_binary 'ɢE\\\\GNj\\','wp-content/plugins/elementor/assets/js/elementor-admin-bar.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ŝ4\\e\bZ\Q',_binary '8\\wf^V-!\=\\h1#Ta','',0,'?'),(_binary '\cK=*\GI7!','wp-content/plugins/elementor/assets/js/elementor-admin-bar.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '){Yi~\\\\\',_binary '~n2_\\rAY/\yL5M掂\|','',0,'?'),(_binary '\\\)\>\M_[_\','wp-content/plugins/elementor/assets/js/fe4cf752908671676148.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\\\\\\8\\ѩ+',_binary '\a\nT\ޕ捵$Yu@\+\\\\','',0,'?'),(_binary '顗H\`\k\\!U','wp-content/plugins/elementor/assets/js/frontend-modules.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6+*8\]?d5n',_binary 'V\\%\u\\+\WL!U\\\^\`','',0,'?'),(_binary '0!\AF<;I\pC','wp-content/plugins/elementor/assets/js/frontend-modules.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-LV\#\Lf4',_binary '=\~(U7\6z6\B\\.\\','',0,'?'),(_binary 'ЩD\\=)@?','wp-content/plugins/elementor/assets/js/frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\J\;pJ0\x\q',_binary '\\\\\si\ꠤ\bvih\⁃}!','',0,'?'),(_binary 'r~@afx.\\Q\','wp-content/plugins/elementor/assets/js/frontend.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6N\A\\O\',_binary '\.S[\\A\nw=7\o6b','',0,'?'),(_binary '}Bo{vi\׸','wp-content/plugins/elementor/assets/js/gutenberg.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\cd\QL\\Du\R',_binary '\۱Κ4\Ă$\\^zꯛ][wQT','',0,'?'),(_binary 't=O\\+\\kz%B','wp-content/plugins/elementor/assets/js/gutenberg.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\)s,.\\,\-!',_binary '-\\m(Ä\4&Wdƀ\e\\M;','',0,'?'),(_binary '\0[\o\\jLp\','wp-content/plugins/elementor/assets/js/image-carousel.024943eec9daaabea9ff.bundle.js',0,_binary '!x;poЏ\\',_binary '!x;poЏ\\',_binary '́hл^\\K@,\Djr\#\\Fd\\','',0,'?'),(_binary '->\NY\pnU>[O}L','wp-content/plugins/elementor/assets/js/image-carousel.11194c4f02ba1ff5ad84.bundle.js',0,_binary '㤓STP\{\f\"',_binary '㤓STP\{\f\"',_binary '0}sH\"\\2![3^N\V.9','',0,'?'),(_binary 'Vj*\\c\','wp-content/plugins/elementor/assets/js/image-carousel.1b452908acbb55e3c0c3.bundle.js',0,_binary 'P6G,XmH{\\rx',_binary 'P6G,XmH{\\rx',_binary ']G!\\\K\o1Qi\R\\','',0,'?'),(_binary '\\"%چo\Z)/b\','wp-content/plugins/elementor/assets/js/image-carousel.69ddd4d316491de45fe3.bundle.js',0,_binary '\ɛU,uV\Y',_binary '\ɛU,uV\Y',_binary 'ٽ)l\n6|^\		77*vZrk\\M','',0,'?'),(_binary ']\ґ\\06Xri=','wp-content/plugins/elementor/assets/js/image-carousel.a219e39506aaca30e58d.bundle.min.js',0,_binary '\\V\1\\\R',_binary '\\V\1\\\R',_binary 'X^:\\HV\#\F\\0VcA^','',0,'?'),(_binary '@\"E&\\\','wp-content/plugins/elementor/assets/js/image-carousel.a28b09480555b287b42a.bundle.js',0,_binary '\[\-I\v_',_binary '\[\-I\v_',_binary 'dUue\_Qa\0\0\zJj2\','',0,'?'),(_binary ')\$)xZ\v\','wp-content/plugins/elementor/assets/js/image-carousel.b69ea9450ea7e942e017.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1<Z\B=9V#;',_binary '6dJ\KZ\n%\L\Zg;\x5k?~z\ߜ#K\`','',0,'?'),(_binary '\\\r\\|oLV','wp-content/plugins/elementor/assets/js/image-carousel.b8262c12a4b2954dac64.bundle.min.js',0,_binary '*j1Qp\A\\\\Y',_binary '*j1Qp\A\\\\Y',_binary '\0ʒ$!(W0 \80\s\d0\\','',0,'?'),(_binary 'X#\J\.\Bíg','wp-content/plugins/elementor/assets/js/image-carousel.bd7aab19c9d934b7c505.bundle.min.js',0,_binary 'nF\\i\:P',_binary 'nF\\i\:P',_binary '`DRdt \iz$a\8EEZ\$J\%\{\sm\','',0,'?'),(_binary '\/k\L\r\]4','wp-content/plugins/elementor/assets/js/image-carousel.db284b09c0f8a8f1c44d.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\B{R\\G',_binary 'w\\K/_n\WSJ\\G\8u\C{}','',0,'?'),(_binary 'WR\V0G\8b2\\r','wp-content/plugins/elementor/assets/js/image-carousel.f9dc73796adfb21bb945.bundle.min.js',0,_binary '\&z0у\\\X%\/',_binary '\&z0у\\\X%\/',_binary '\0\\P8dy\+t痊_\n','',0,'?'),(_binary 'B9P~wܭ+\0]\'\dy','wp-content/plugins/elementor/assets/js/kit-library.192658d419d728def980.bundle.js',0,_binary '_DY\\"\\n\um9',_binary '_DY\\"\\n\um9',_binary 'c}\Ry<\o_\d\Y4}d\ϸT\','',0,'?'),(_binary '\\RH]W\0e\0gs','wp-content/plugins/elementor/assets/js/kit-library.4391d962692aeecda55f.bundle.js',0,_binary '#\Zm\\0 #3',_binary '#\Zm\\0 #3',_binary 'hk!}\\\$i*5A\hˇׅ\\B\Z\d\','',0,'?'),(_binary '\~!le\~s','wp-content/plugins/elementor/assets/js/kit-library.4a93dd22359db6c3e7f9.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#^f02!S.jC\',_binary '\\\\\r.\-p\CB\4xs\\:','',0,'?'),(_binary 'M*ANmO7\\','wp-content/plugins/elementor/assets/js/kit-library.4b8e9bb062f992326c78.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\f\>\&k\s',_binary '\\k\?/\2lR}Gt\ZV\\nk]\a','',0,'?'),(_binary 'tE\lҢ\ \','wp-content/plugins/elementor/assets/js/kit-library.4eda348f8f5f0f19b874.bundle.js',0,_binary '\JqXȨk䶎r?',_binary '\JqXȨk䶎r?',_binary '\#%=,Lz۩\p\\\-\\?wg\','',0,'?'),(_binary 'I\Z\>IR\O','wp-content/plugins/elementor/assets/js/kit-library.5a50da4cd15721a1e2c8.bundle.min.js',0,_binary 'ǝ\hP\\"iq',_binary 'ǝ\hP\\"iq',_binary '~G\Ǟp8\>\Zm\n<ike:E(','',0,'?'),(_binary '5&__\r\\x9\"\ޣ','wp-content/plugins/elementor/assets/js/kit-library.7543b3ffe24a282ade79.bundle.min.js',0,_binary 'Z#\\-\\^Iګ\',_binary 'Z#\\-\\^Iګ\',_binary '\'4\"\M\d-E\0\\_.=','',0,'?'),(_binary 'd{\\aoQl\\1=	','wp-content/plugins/elementor/assets/js/kit-library.79bbce90dedf8ef30a5c.bundle.js',0,_binary 'Մi(j%G-N\',_binary 'Մi(j%G-N\',_binary ';\/\nQ}+$ܹ<\\\\T\QA','',0,'?'),(_binary 'A1\\\r}Ν\\{\','wp-content/plugins/elementor/assets/js/kit-library.7bad398eee7cff3ed84e.bundle.min.js',0,_binary 'HM\r:\@\l',_binary 'HM\r:\@\l',_binary '\"05Rq&Jg\g?vr\D\Xu\','',0,'?'),(_binary '0nrc[<\\\"\','wp-content/plugins/elementor/assets/js/kit-library.c4cfb8ed94556f2a5f03.bundle.min.js',0,_binary '2o>^0Bb\g\',_binary '2o>^0Bb\g\',_binary '\g\?\]\@[78	=yN\T','',0,'?'),(_binary '\'A)@\>\\\\','wp-content/plugins/elementor/assets/js/kit-library.cec432a3607640dc0ff8.bundle.js',0,_binary 'yŇWc\81\J!\\'\',_binary 'yŇWc\81\J!\\'\',_binary '\\\\ؼԞ;-t\4h\̍\\)','',0,'?'),(_binary 'Ǭ\b\ows\)','wp-content/plugins/elementor/assets/js/kit-library.d3688acfaab28676a99c.bundle.js',0,_binary 'g_\\\'\~M\\a~',_binary 'g_\\\'\~M\\a~',_binary 'meHB\Wg\Z\=W\\V\\`\jMQ8b\','',0,'?'),(_binary '\-rN5!2','wp-content/plugins/elementor/assets/js/kit-library.e61c291a7b6bbc946eeb.bundle.min.js',0,_binary 'z	v\?iy$J\\',_binary 'z	v\?iy$J\\',_binary 'NV)=\Aq\agx\E\z\=','',0,'?'),(_binary '\xˈm\~&#-\\','wp-content/plugins/elementor/assets/js/kit-library.ff8b7666b0383d3520cf.bundle.min.js',0,_binary '?OTʞu\FvYg3',_binary '?OTʞu\FvYg3',_binary '\\=0	\M%MU\Өr\*\\f\1.yʹW','',0,'?'),(_binary 'o\\1X\]-','wp-content/plugins/elementor/assets/js/lightbox.2231a3a329cf455714aa.bundle.min.js',0,_binary '&GМ\\\\7\\\\',_binary '&GМ\\\\7\\\\',_binary '7\\)\\{*\"\ͩZmry\0W\\','',0,'?'),(_binary 'av.DJ>	\\f\','wp-content/plugins/elementor/assets/js/lightbox.23e39ac2830dfb4ca6a7.bundle.min.js',0,_binary '0)pC~Q\rEvs',_binary '0)pC~Q\rEvs',_binary 'p\\\YAc\D\rܷ\?y','',0,'?'),(_binary 'V{\]\"99}̇','wp-content/plugins/elementor/assets/js/lightbox.2b2c155d6ec60974d8c4.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\CJ$1\Ɯ\n',_binary '7\;\\}g\; ޭ\\4\3>Yu׈','',0,'?'),(_binary 'Wr$`ݾ\\z\','wp-content/plugins/elementor/assets/js/lightbox.32bd6e1d10abf17b8ef7.bundle.min.js',0,_binary '\x7aM\\Ɓ',_binary '\x7aM\\Ɓ',_binary 'Y\n>Qj\<S\\\n$	\\~[%nOQL','',0,'?'),(_binary '\n!\\J}yQ\','wp-content/plugins/elementor/assets/js/lightbox.48b7d7dfa0c8ff9ab7ae.bundle.js',0,_binary 't\}\n\\\r\'\"18:=G',_binary 't\}\n\\\r\'\"18:=G',_binary '\1	\\\_]퐒{,\nY0\_','',0,'?'),(_binary 'Cd\Ӈ\,㽧g\','wp-content/plugins/elementor/assets/js/lightbox.4edaddeb1ee4dc2db60f.bundle.min.js',0,_binary '\R,îk{\@!\',_binary '\R,îk{\@!\',_binary 'L\\p\{\g\j\\֮\ӥ);','',0,'?'),(_binary '\r\(\\\r8dn_\','wp-content/plugins/elementor/assets/js/lightbox.543c64a356c981ed0346.bundle.min.js',0,_binary '@\\f7\I,\',_binary '@\\f7\I,\',_binary '(˳5h\.7@\`\ҔE\','',0,'?'),(_binary '0\\ၶm0>\\{G','wp-content/plugins/elementor/assets/js/lightbox.6d271ee2884330dee283.bundle.js',0,_binary '(tş\*	2$`\r\',_binary '(tş\*	2$`\r\',_binary 'f\\u\\|&\\"ݼFb3q)\c','',0,'?'),(_binary '̞\b\vf\','wp-content/plugins/elementor/assets/js/lightbox.8a1eb52b79d1a1dbbdfc.bundle.js',0,_binary 'i\ծH\\B\ӳ\',_binary 'i\ծH\\B\ӳ\',_binary '0f~?\#aF\\ĩoFI\\"90','',0,'?'),(_binary 'v4kF%\F8\','wp-content/plugins/elementor/assets/js/lightbox.8c3d45f71a9a1ecd69fc.bundle.js',0,_binary '97r\\k4',_binary '97r\\k4',_binary '@\(\\J\"Ft1+\r9}','',0,'?'),(_binary 'b>g䯦i\\Q+','wp-content/plugins/elementor/assets/js/lightbox.adc17e3be937246718ee.bundle.js',0,_binary '\\A\&w\ȭUX',_binary '\\A\&w\ȭUX',_binary '7\:\\C\$\\\e\','',0,'?'),(_binary 'd2\zy9DBQ7','wp-content/plugins/elementor/assets/js/lightbox.b6f606e0fc3fa233788b.bundle.js',0,_binary '̞f\DrK',_binary '̞f\DrK',_binary 'd\\䤞OFj!\\"c\\\\\\NN;\','',0,'?'),(_binary '\\\I	ym\','wp-content/plugins/elementor/assets/js/lightbox.c3bb4b95635c5e3ad984.bundle.min.js',0,_binary 'h}˵\"\J3Z\+\r\',_binary 'h}˵\"\J3Z\+\r\',_binary '\lN1JIWy\nh\sT\2zi','',0,'?'),(_binary '\wfH\\'b\8\','wp-content/plugins/elementor/assets/js/lightbox.c404a8ad323d6ea31d40.bundle.min.js',0,_binary '\rU4N]R\-P\'9',_binary '\rU4N]R\-P\'9',_binary 'I\J@!\rOFe/lJe3*z','',0,'?'),(_binary '\n\ritZ\9a7','wp-content/plugins/elementor/assets/js/lightbox.d4a78ec3282d5785504d.bundle.js',0,_binary '\hkC\'m09',_binary '\hkC\'m09',_binary 'Xo\h\IXp\*}\^&k$\r\r\'','',0,'?'),(_binary 'qXi	\r\߬9\','wp-content/plugins/elementor/assets/js/lightbox.ebe1fa827623232b9cd6.bundle.js',0,_binary 'B?2%m\"_\',_binary 'B?2%m\"_\',_binary '6\QE\"}\'\\ѽ&;\\r\d6\}','',0,'?'),(_binary 'ZֆE2˷','wp-content/plugins/elementor/assets/js/lightbox.fe7d7981b2527f42f605.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n]$\WN\uHA\)\',_binary '\,ED\@\>\JUG\h]\I\\\','',0,'?'),(_binary '1\2~Y\J\\','wp-content/plugins/elementor/assets/js/new-template.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\4gu&*_@',_binary ' \`b@7;fVf@	\FT\7\{:\>','',0,'?'),(_binary '@\`\\>%\\E\\c\','wp-content/plugins/elementor/assets/js/new-template.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\uI\f\?+\.`',_binary 'O\x\n\N\'\;),\g\'@Qn\[:uر','',0,'?'),(_binary 'Gz\n!Q\X5\\Z','wp-content/plugins/elementor/assets/js/onboarding.6a289d52dcf568139a7d.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\OQ2\\nI&4j\\',_binary 'nԆQJ*塤5\H5\c|M\Š','',0,'?'),(_binary '|\\\Y[T`)!T','wp-content/plugins/elementor/assets/js/onboarding.eff243c8052ee52943bc.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zU\F\==',_binary 'gQ\\o\,\rE\\\0s\3\K\S\Tl2\','',0,'?'),(_binary '\\_/,%y:!\','wp-content/plugins/elementor/assets/js/preloaded-elements-handlers.js',0,_binary 'A=\Ա\{s$mS\',_binary 'A=\Ա\{s$mS\',_binary '\\0n\\rCܭ\΢۩ϴ\\0Z97\','',0,'?'),(_binary 'd;T,\ZX','wp-content/plugins/elementor/assets/js/preloaded-elements-handlers.min.js',0,_binary '\n]|÷gJ;`',_binary '\n]|÷gJ;`',_binary '.b\	@JDMqp\0U}?\4YO','',0,'?'),(_binary 'le^<\"FGndtv','wp-content/plugins/elementor/assets/js/preloaded-modules.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6LJ\\\\R\J\',_binary '\ײr\\ٯv&\m\\\lot','',0,'?'),(_binary '7?;\\\!\G','wp-content/plugins/elementor/assets/js/preloaded-modules.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Gߚ5\ە$8',_binary '\\a\\\ԣ.\$3\\W+1~!y!','',0,'?'),(_binary ':\0D\n\d<K~h','wp-content/plugins/elementor/assets/js/preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\\8\1wL',_binary '3\\.\\o\[\\K\ד>\\\Yh\\\!\n','',0,'?'),(_binary '\}c51\\\hC','wp-content/plugins/elementor/assets/js/preview.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0y\q\\\Z;',_binary '\\)\\\\[ˬl\3\npd\\}\5','',0,'?'),(_binary '\#\\?\O]\m','wp-content/plugins/elementor/assets/js/progress.2f915ff369cd52d14d21.bundle.min.js',0,_binary '}4\{\\n#\',_binary '}4\{\\n#\',_binary 'j;Ltru}Fʣ\\0e\0l\P\_o*?','',0,'?'),(_binary '\-xjjK\','wp-content/plugins/elementor/assets/js/progress.4079971c3240c226b858.bundle.min.js',0,_binary 'g:$j\(',_binary 'g:$j\(',_binary '۝b#F\\|0뱳r`9.nZ\Zz>','',0,'?'),(_binary 'u!\\\1\','wp-content/plugins/elementor/assets/js/progress.5306267e0436c8de4985.bundle.js',0,_binary '$\\zOfɡ\n\l',_binary '$\\zOfɡ\n\l',_binary '\\8\?̻Z\qYf$U\G','',0,'?'),(_binary 'x_\Cy\ֵ\紧\','wp-content/plugins/elementor/assets/js/progress.62211c8098d91fc19c5f.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\R]6R_c\\f',_binary '\Z:#\\\%ѵ6ub;\tl\','',0,'?'),(_binary 'a\CY0C\#\','wp-content/plugins/elementor/assets/js/progress.ca55d33bb06cee4e6f02.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s \V:O',_binary '\'\n\\Z\ 8\b\6\;4\=\\t\\WJ','',0,'?'),(_binary '!H\[Ϳh\4f','wp-content/plugins/elementor/assets/js/progress.f88c14a27e3da5dcc9d8.bundle.js',0,_binary '\)*@\ʥmY\9@\/',_binary '\)*@\ʥmY\9@\/',_binary ';Y\\Q&3BFE\ysU\\0b\f','',0,'?'),(_binary 'G\RG<wƅ\','wp-content/plugins/elementor/assets/js/progress.fdb2dcfacfca36a9033a.bundle.js',0,_binary 'P61\oUo',_binary 'P61\oUo',_binary '	~HN\bg㈛v\{','',0,'?'),(_binary '\rvm\ZXI[@lqv|','wp-content/plugins/elementor/assets/js/tabs.15f07d9d6dd3819c0562.bundle.min.js',0,_binary 'x/\GAi^\/\\',_binary 'x/\GAi^\/\\',_binary 'Q*\\̤\t\\\r\!MZ\WG\\\,\cg','',0,'?'),(_binary '\l\\#\nt,U\','wp-content/plugins/elementor/assets/js/tabs.37d5b4877cdb51ea91e9.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ʃ\a\e~\g~CX\',_binary 'V\/_ȑG/\$Q\}Ѿ8\Č/U','',0,'?'),(_binary '\lZ_QgWӓb8\\','wp-content/plugins/elementor/assets/js/tabs.3cbd8fbb28141b6e445d.bundle.min.js',0,_binary ':ry_:\',_binary ':ry_:\',_binary 'X\nv\i8\\]\nT\&zP','',0,'?'),(_binary '\\~\/\\骏^zev','wp-content/plugins/elementor/assets/js/tabs.49f0a48abbd6fc4749fb.bundle.min.js',0,_binary 'AiBVϢK6N\',_binary 'AiBVϢK6N\',_binary 'ַ{V16\\}m\n,yNpJJOj-','',0,'?'),(_binary 'Q\ML?K*53\g\r','wp-content/plugins/elementor/assets/js/tabs.50864c9249aa8a87126a.bundle.min.js',0,_binary '7\^sN&\',_binary '7\^sN&\',_binary '%\\d_\p!k\{>\\\\\EӤm\p\A','',0,'?'),(_binary 'Gq\\\YM\:\','wp-content/plugins/elementor/assets/js/tabs.919de637ad8cbee0f46d.bundle.js',0,_binary 'YWzQPq\rdq\',_binary 'YWzQPq\rdq\',_binary '*;&ɾΑÙ\M0\ʍםY\\.~\rZ','',0,'?'),(_binary '}/o*ݖΌZ8\','wp-content/plugins/elementor/assets/js/tabs.973c14c2ee401e66e192.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9G\ӦRgS\C',_binary '\r\\n\\\\RK\3\A3\R\\\','',0,'?'),(_binary 'IE$\ϯ\?9','wp-content/plugins/elementor/assets/js/tabs.ad5db6c2e7715f4a853c.bundle.min.js',0,_binary '\\\\\\A\&#A',_binary '\\\\\\A\&#A',_binary '\إаnME$\\ߔ\.:~4ˎf\ZZ','',0,'?'),(_binary '\dYw3\rkg','wp-content/plugins/elementor/assets/js/tabs.b7bd957161644e810d53.bundle.js',0,_binary '\0\\\\"5q\',_binary '\0\\\\"5q\',_binary '\;+8Yk={l\ݎ:X\u\n<\','',0,'?'),(_binary '\2Gq(<\'\w','wp-content/plugins/elementor/assets/js/tabs.cd05b61e107cc58d1be9.bundle.min.js',0,_binary 'gMw\F>\',_binary 'gMw\F>\',_binary 'tf\\X\#A!\cnE\\\\\9>\v','',0,'?'),(_binary '4w\h{5a*H','wp-content/plugins/elementor/assets/js/tabs.dd06203f51f30e1494d2.bundle.js',0,_binary '@43U6\',_binary '@43U6\',_binary ';h\\\\8G\0\Df\؇Z@T','',0,'?'),(_binary '\\Ze շ=U\|\$','wp-content/plugins/elementor/assets/js/tabs.e9db15b9aa8a58bcf375.bundle.js',0,_binary 'I	M\\\W6\bPd',_binary 'I	M\\\W6\bPd',_binary '\0w:#Vü\YA\\3IIS\r\','',0,'?'),(_binary 'G>ơ8&s\','wp-content/plugins/elementor/assets/js/text-editor.00896c8bf19481643415.bundle.js',0,_binary 'Q\\V٣/GB#B\0t ',_binary 'Q\\V٣/GB#B\0t ',_binary '\\eg	\L\\\\\&CoCW|68','',0,'?'),(_binary '1;\\z\Fk\r\{','wp-content/plugins/elementor/assets/js/text-editor.289ae80d76f0c5abea44.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z}P|\\n',_binary '\l\\# l9\W\d\E\\}\\R','',0,'?'),(_binary '8rقǷ\i`\M','wp-content/plugins/elementor/assets/js/text-editor.533215eb763ebfb3a70c.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DA\O\ʊ\n',_binary 'cT\\\qށ\50<5+\cW\\W <','',0,'?'),(_binary '?q!\#Q3\(f','wp-content/plugins/elementor/assets/js/text-editor.723f26db489b3ec260a7.bundle.js',0,_binary '쫽Ev`\xJ\0|k\\0',_binary '쫽Ev`\xJ\0|k\\0',_binary '!\$!\*D\\\\F\D|\$t\c','',0,'?'),(_binary 'n\!zSO\\','wp-content/plugins/elementor/assets/js/text-editor.9efe2dca043f0f618897.bundle.min.js',0,_binary '\\" {ȷڬ\\b|',_binary '\\" {ȷڬ\\b|',_binary '\<g\-x~͜},\)LH\NB','',0,'?'),(_binary '[\;W\\W','wp-content/plugins/elementor/assets/js/text-editor.a8434931ecdcd5ff7589.bundle.js',0,_binary '?yc,k/}qNIGڴ',_binary '?yc,k/}qNIGڴ',_binary 'F1m\\]*\y1\\Q	\@\"\\"v\','',0,'?'),(_binary '\+OC(?e\}٦?`8','wp-content/plugins/elementor/assets/js/text-editor.aed713532404e88b2deb.bundle.min.js',0,_binary '\GNנ_AW',_binary '\GNנ_AW',_binary '\\\B^\*]uɺ\n	\U60\mmD\&\','',0,'?'),(_binary '\\\ϼ>\˃s~At','wp-content/plugins/elementor/assets/js/text-path.0688aa8e3e86381ca6a7.bundle.min.js',0,_binary '{\-N\t%U',_binary '{\-N\t%U',_binary '\[m\\S\}\"o\\\\ʡ :؂\m','',0,'?'),(_binary ';b\c7Y6!','wp-content/plugins/elementor/assets/js/text-path.15d47ed8e5e3031f9610.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k&\"\sδ\T%@f',_binary '\93r)\j}\\\rE[\ZՃD\#<','',0,'?'),(_binary ')a=\\"-<,-@h}','wp-content/plugins/elementor/assets/js/text-path.15daa9710b97d5cf86b9.bundle.min.js',0,_binary 'qf{=n4.\r.',_binary 'qf{=n4.\r.',_binary '\\[C)N(p\*UI\؄\S','',0,'?'),(_binary '\CsWF\\ͻC','wp-content/plugins/elementor/assets/js/text-path.4ba996cf50a07303b250.bundle.min.js',0,_binary '9u!Y\!N;[\Z\\',_binary '9u!Y\!N;[\Z\\',_binary 'U\"N\\"[]Ǚ\9\\M7{\:ɯ\!)\"','',0,'?'),(_binary 'r,\%u\;\z\\','wp-content/plugins/elementor/assets/js/text-path.9870c437945d934efed3.bundle.js',0,_binary 'O\^%\\JQD\',_binary 'O\^%\\JQD\',_binary '\\f\\_\\Y(l3$ʢ\\F\ZDC\"','',0,'?'),(_binary 'E\FwNe_Tj','wp-content/plugins/elementor/assets/js/text-path.9b3ece1b692d34d012b5.bundle.js',0,_binary '\:hO$\\/Z\E',_binary '\:hO$\\/Z\E',_binary '\'#m-\\`\5~[&NVL\rh\!','',0,'?'),(_binary '\]\y\p\','wp-content/plugins/elementor/assets/js/text-path.9f18ebdea5ac00d653e5.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"ͱ4Q/b\.C',_binary 'uIm`]}}\\`!\'寲Lr&','',0,'?'),(_binary '\\W\\'Ыw\"swH','wp-content/plugins/elementor/assets/js/text-path.a25111b02271055ec181.bundle.js',0,_binary '\\,\\-\\\1',_binary '\\,\\-\\\1',_binary '\aݹ\oCr+}?\mp\\X5\"\0<u\H2\','',0,'?'),(_binary '[\	\\>\2}kģ0','wp-content/plugins/elementor/assets/js/text-path.fb1264c8db00088e9b55.bundle.js',0,_binary '\\2%\[1V8W',_binary '\\2%\[1V8W',_binary '\YHCZᥜka:\v\;fx,V\*I','',0,'?'),(_binary '\\斩>\y\\c','wp-content/plugins/elementor/assets/js/toggle.0a46fb67671fe53a2bb0.bundle.min.js',0,_binary '\\\TO\\'{\`y',_binary '\\\TO\\'{\`y',_binary '\]´yK,\s\<5\'Cr3P','',0,'?'),(_binary 'ag\\ӼOˎ\','wp-content/plugins/elementor/assets/js/toggle.0b9ce025bedc8ed28c59.bundle.min.js',0,_binary '\9\\P\:\\!6',_binary '\9\\P\:\\!6',_binary '\Qrι\\>\@y,\v)6\	','',0,'?'),(_binary '1\$\L)9P$\0\','wp-content/plugins/elementor/assets/js/toggle.1aca60f44e355cb43256.bundle.min.js',0,_binary '\|?E<_I_:r',_binary '\|?E<_I_:r',_binary '\\e\\zӇ\\"_g<M$`J','',0,'?'),(_binary '	\5ԑ\\0zz','wp-content/plugins/elementor/assets/js/toggle.56f8ace4b1e830c02fc5.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\e\\\J\&G3lv+',_binary '@䯈\!%\7[eX4\$\6\#bT\','',0,'?'),(_binary '\fR\_~l\\\X','wp-content/plugins/elementor/assets/js/toggle.5e8aae8d1c1e897e9b4e.bundle.js',0,_binary '\\\He_\'',_binary '\\\He_\'',_binary '\0SRi\\~ \u\O\\i\s','',0,'?'),(_binary 'RۦC֨\"','wp-content/plugins/elementor/assets/js/toggle.66e1aea86557ee6b7fd9.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\?-\xV',_binary 'بerЕj=<6BR&l\\\','',0,'?'),(_binary 'Ő\\\\.`\C','wp-content/plugins/elementor/assets/js/toggle.720329fccfaf33458a48.bundle.js',0,_binary '@\rɟRé\#\\',_binary '@\rɟRé\#\\',_binary '\"裹N\0^SmO\. \\L)\\','',0,'?'),(_binary '\\n;\?\9\'\\%l','wp-content/plugins/elementor/assets/js/toggle.a162573f28e7250ff5ea.bundle.js',0,_binary 'g \@J\n/\vޔ',_binary 'g \@J\n/\vޔ',_binary '\\Z\*7$\\r\\5H\\3?\\\i','',0,'?'),(_binary '&VU\،\!\O,5ǳ','wp-content/plugins/elementor/assets/js/toggle.a68998644ff1108cb9c7.bundle.min.js',0,_binary '\30\\\ZG)bFb',_binary '\30\\\ZG)bFb',_binary ']\6.\`73\L\\\\\','',0,'?'),(_binary '\W.X\_B؇\','wp-content/plugins/elementor/assets/js/toggle.ac82dafbd4b75739bfe6.bundle.min.js',0,_binary '\\\*P $n}\\0\'',_binary '\\\*P $n}\\0\'',_binary '\|p\q\r\Z0\|\t\rʅܽ\\Iy','',0,'?'),(_binary 'M\\\n4\\n\','wp-content/plugins/elementor/assets/js/toggle.b64b2f116c93ef441684.bundle.min.js',0,_binary '{<iMOm_&R',_binary '{<iMOm_&R',_binary 'O1]\_\\\!\\nM\\{fh\\yT\','',0,'?'),(_binary 'qc_-Mh\b','wp-content/plugins/elementor/assets/js/toggle.f62080504158ea96ac4c.bundle.js',0,_binary 'A\\y1\~>v\#',_binary 'A\\y1\~>v\#',_binary '\e\&E\53ކZ\Dߕs1)\u','',0,'?'),(_binary '\$dwFr\!p','wp-content/plugins/elementor/assets/js/video.0b0142741907d3f9479c.bundle.js',0,_binary '\\\\[Y$\rX\',_binary '\\\\[Y$\rX\',_binary '-bc\"rdU=[x\&~n\\ީV[6','',0,'?'),(_binary '\E:S<\\^qX','wp-content/plugins/elementor/assets/js/video.0c909a3169306097e21d.bundle.min.js',0,_binary 'hno:\%!6',_binary 'hno:\%!6',_binary '@\\\;L\\eXBf\u?n\h~S2\\rQ','',0,'?'),(_binary '*®#X7i~','wp-content/plugins/elementor/assets/js/video.1a44ef088849d6949ada.bundle.min.js',0,_binary '\\/w\\00hUF(}\',_binary '\\/w\\00hUF(}\',_binary 'w\ny|mP|X>\on+\̀\\\NK','',0,'?'),(_binary '\r\|sM*^-','wp-content/plugins/elementor/assets/js/video.23e1cdebdfd14868267e.bundle.js',0,_binary '\\\'\\N\¯',_binary '\\\'\\N\¯',_binary '\f8j{z/۶\\́\\UR:','',0,'?'),(_binary '+&IO\\"`qgu\U','wp-content/plugins/elementor/assets/js/video.255c225d20f04576d1bf.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R	Q\\<',_binary '\s2\JRyvC2&$c\9<\[','',0,'?'),(_binary 'wBCaL\bзU	\y(','wp-content/plugins/elementor/assets/js/video.2758712351ae04e49a20.bundle.min.js',0,_binary '\nʶQU\'\\\:9\\d',_binary '\nʶQU\'\\\:9\\d',_binary '8x\\z}\\!	-ϛ\r\r@*kIn\\','',0,'?'),(_binary '\Z\a|JdJ-\P','wp-content/plugins/elementor/assets/js/video.2be65474f4a78954309a.bundle.min.js',0,_binary '!2+L\Uܫ5G\',_binary '!2+L\Uܫ5G\',_binary '\nO-\'j\~)\K򌯂\D','',0,'?'),(_binary 'o=@@','wp-content/plugins/elementor/assets/js/video.4867cd778fc28aa3d2f9.bundle.js',0,_binary 'RD\2S\\\\\',_binary 'RD\2S\\\\\',_binary '	8۽~\r\9_jubUz(gW\\','',0,'?'),(_binary '\\na?\S>eE~','wp-content/plugins/elementor/assets/js/video.505da250f982d8f15187.bundle.min.js',0,_binary 'OR=}/\.L\',_binary 'OR=}/\.L\',_binary ';#\p\"\\fk\\Zwnq\\F#`\E','',0,'?'),(_binary '\\\\0tag\n','wp-content/plugins/elementor/assets/js/video.509fb0e07b97e0f603d7.bundle.js',0,_binary 'I L!S\v/\.-',_binary 'I L!S\v/\.-',_binary 'z: .1Sx\'̰\>Ck\P','',0,'?'),(_binary '\m/\=:uF\_ӽI','wp-content/plugins/elementor/assets/js/video.538c918ef3a630d7c0e6.bundle.js',0,_binary '`sUm릚f\"',_binary '`sUm릚f\"',_binary 'VĐ{w\\k\\xrc\\\q\$x','',0,'?'),(_binary '坋`q\g̖\\I','wp-content/plugins/elementor/assets/js/video.7eb6cacb5dcc1e3e8551.bundle.js',0,_binary 'X\X[J*Q|\0',_binary 'X\X[J*Q|\0',_binary 'Xs}bbG֎\l\\?ا','',0,'?'),(_binary '\CBTBY\A','wp-content/plugins/elementor/assets/js/video.857532146b3808241d1e.bundle.min.js',0,_binary '\\HJ~\"JKD:4',_binary '\\HJ~\"JKD:4',_binary '\";\\-\Tk\\}\RgÔ\q\','',0,'?'),(_binary 'syxv:Af\\\','wp-content/plugins/elementor/assets/js/video.a67431c1becbede4d80c.bundle.js',0,_binary 'd\*J\\,tc',_binary 'd\*J\\,tc',_binary 'L\HOToߍ*C\M3\l\\طC\Ĳ\','',0,'?'),(_binary 'u-\8av\\\','wp-content/plugins/elementor/assets/js/video.cadfb803f731eda62363.bundle.min.js',0,_binary 'ܤAZ\\G876\',_binary 'ܤAZ\\G876\',_binary 'd\.;I\YZ_V\\\^?Zu%.i','',0,'?'),(_binary '\ߨ~K\DXs\3\n;','wp-content/plugins/elementor/assets/js/video.d86bfd0676264945e968.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\_>\ŶNdXɸ',_binary 'KyzcE\V\Ou\;\43[;na','',0,'?'),(_binary '\SD\o\"|G\0\\','wp-content/plugins/elementor/assets/js/video.dce2e6c0483ecadec74b.bundle.js',0,_binary '\ӯL:\7\rTGH',_binary '\ӯL:\7\rTGH',_binary '\\Q\iF\bj\iu\0o	i),:\','',0,'?'),(_binary '9\W\\\ZZB=K?(@','wp-content/plugins/elementor/assets/js/web-cli.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0hQG\l',_binary 'ت=\\F\\Id1g\b>`H\Ziڳ','',0,'?'),(_binary 'u\dEI\|lgv\0','wp-content/plugins/elementor/assets/js/web-cli.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ƀ=sE\S1P',_binary '\}kG \0j:U\޷}s8`','',0,'?'),(_binary '\\sUwu\P׍	','wp-content/plugins/elementor/assets/js/webpack.runtime.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"vrz\\rOXJ',_binary '\%>>44㭰?+WpH\!(y','',0,'?'),(_binary '7nsd:5^v0','wp-content/plugins/elementor/assets/js/webpack.runtime.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r2\fR\un\',_binary '\s.K\n3aеߓs\j#qA','',0,'?'),(_binary 'x\0Lb\\(+','wp-content/plugins/elementor/assets/js/wp-audio.2332b719d144261993a3.bundle.min.js',0,_binary '\E>\\V\\v}e4',_binary '\E>\\V\\v}e4',_binary 'M\i%\\a,g\܌|2՞1\Ҏ\",\','',0,'?'),(_binary '2\QvLe\,','wp-content/plugins/elementor/assets/js/wp-audio.75f0ced143febb8cd31a.bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J\\֮\\>',_binary '\1@\:p\\t\r\0\\(Ï\|P\؊\}','',0,'?'),(_binary 'f\\&>)oi\\\r','wp-content/plugins/elementor/assets/js/wp-audio.8d458e51b4543ed99c04.bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\[,\̺\',_binary '{D\G67Su\.\5\AhZr\>','',0,'?'),(_binary 'rx\O\nN>{\\\U\'','wp-content/plugins/elementor/assets/js/wp-audio.de344657de8b792ed9b0.bundle.js',0,_binary '\n\\\\g\\L{o\n',_binary '\n\\\\g\\L{o\n',_binary '\O\Oi;LE\6QUp*q\u\vY','',0,'?'),(_binary 'x-\dT\Ae\辰','wp-content/plugins/elementor/assets/lib/animate.css/animate-config.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\4\\\}!#t\Ӡ',_binary '\{l\\\%!\\g~3Q\\s5Xzn','',0,'?'),(_binary '\W$H\D\!;1D','wp-content/plugins/elementor/assets/lib/animate.css/animate.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\3\G;KE\\',_binary 'a;8#\\"\0M0ܤ̨\\K[\Z2 ','',0,'?'),(_binary 'P%h~\g\\r	','wp-content/plugins/elementor/assets/lib/animate.css/animate.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\gSOR\ry-\',_binary '\K\C6#\\3ur\\Ť7\\\\|\'','',0,'?'),(_binary '\r\?@ۘ\\N\\l','wp-content/plugins/elementor/assets/lib/animations/animations.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FUDpl \"\l=',_binary '\\sG[\ֶWa|ֆۆ\AZ\ۊ','',0,'?'),(_binary 'AM>\\n\^P@\g','wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&\\k	A5',_binary 'L$\\3\\\eR\4ڥ1G=\r\\','',0,'?'),(_binary 'E~Xd\Qh\\','wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Vѩ\n,\\',_binary '<!Z\\\\h\tb\\\xN\r\','',0,'?'),(_binary '\I\[5\F\?=\','wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[W\\kg\A\0\᳨5',_binary 'kl!=R\\"No\u\Z\i\:Z','',0,'?'),(_binary 'E\w\\BdRy,6','wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\NuHG\7\',_binary '_\^*\Z\\V\!\\@cM;','',0,'?'),(_binary 'YЙi\z#OŭIˤ8','wp-content/plugins/elementor/assets/lib/color-thief/color-thief.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Γ\a7',_binary '\NYk\\<|\ƞ Z\\8y֝\\op','',0,'?'),(_binary '=@,\\Zd','wp-content/plugins/elementor/assets/lib/dialog/dialog.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ؿ\"\?_:X\sN',_binary '#\-\]赀@Sx\n#\_\s0AF\JH','',0,'?'),(_binary '\\n\/\\\\\D','wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\PoO6K\u=\\',_binary 'Fs]\Ux\m\\`S7˲\'|\g\','',0,'?'),(_binary '!\9G\~q\n1r','wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\/ćg\\\\',_binary '\'Zr\\	m\\j[2\"\OՂ]Y\B5','',0,'?'),(_binary 'V;Am)\','wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0).\\j{!',_binary '\\!8Jfdk\\Fw\,\kH\L\oM>\"','',0,'?'),(_binary '\E?\'y\ޫ\\y\l','wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']K\Ʀe;\1\',_binary '9$~\J	WVQe\'<.wgl}\z\3','',0,'?'),(_binary '#bǦ\\\S~8Ǹ','wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̂\P[7>n6v',_binary '\/H\'w\'\'iEA\\t@*{ʷ\0d4C','',0,'?'),(_binary 'U/dʼ{\Z\L\','wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;%\Pۈx\i',_binary 'T\2[cʠ\-ƃ\F[?1m\\؞K[uZ','',0,'?'),(_binary '6PO\RA','wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '馈\\\)>ebO\',_binary 'zπEL\:\fxSٺ-\Uz|\\0i','',0,'?'),(_binary '_\\ps\\\w','wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'koi:D\6x-\7,Y',_binary '&dh\9AeqSڠ\+^\BF\\7a\','',0,'?'),(_binary '=\Vr=\XȞ','wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\w1\)\\+\',_binary 'Wnڗw3\I\\$l\\Ylnf`\ߧİ','',0,'?'),(_binary '\G5F^\Ե\ZN','wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H}\\\\2\.eD\',_binary 'WR|u\a\\z1J_\ɠTlUA\','',0,'?'),(_binary '\\\ߥ\rW?]','wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P10I䴡\'}_\u',_binary '5?DFYđeH\	m/\\nƛ\(','',0,'?'),(_binary 'Np@֑m/^_','wp-content/plugins/elementor/assets/lib/eicons/eicons.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%=\,\\VZ',_binary '\(<\y*\\<Ͷ\o\Z\|4','',0,'?'),(_binary '\Ry\*\\e3\','wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\\"\[D˓\\{',_binary '\\\'_t?xӟ7\ZKB׍\bj0;','',0,'?'),(_binary '~\\N@\ls','wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\\ecy~\H\\ϓN',_binary '\7ʐYU_p\1\"Fe&J\Z)\n\\','',0,'?'),(_binary 'nW5{\\g\','wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\LR?4\\\$b',_binary '\\&Q\\\y\2?$^I\Z?JcTӜr]l9c\','',0,'?'),(_binary '}k=\0\E\\|','wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!ے6{u\f\',_binary '\]l\>S\;1J*$y@w\im<&qX','',0,'?'),(_binary '8*r=\7@(\\D\','wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\D\do]:Փ',_binary '~\\4\#\v3\"\	4p߱q\\\\','',0,'?'),(_binary '\rD趗N-I\nP^','wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڛ踪/$pt\*',_binary '/\{\NZ	QIT\\ް΂RxKC3','',0,'?'),(_binary '\L\\rPl\0H	','wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eȹhU`',_binary '\CW!..fh1\#\u\r\'0`Щ','',0,'?'),(_binary '2\E5X6fB>K','wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-#,9\[=<',_binary 'a\$R\0rq\\\)\kh','',0,'?'),(_binary '̆\cj<<\{$','wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~)\28>a=Bu\o8',_binary '\\]m`ɯq)\tx1|$Cu^\','',0,'?'),(_binary 'y.i%sX-Rs\}','wp-content/plugins/elementor/assets/lib/font-awesome/css/all.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R)\r}\J\t1L)\',_binary '}mbX(4\ǝ8W3\/<F-\F\\yΚ','',0,'?'),(_binary '\{;9\ɛ6bob겕','wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tW5\\\',_binary '\	}0/Ѥ^\?j&\ʪ\\?	\\A','',0,'?'),(_binary 'Xd\\,p8yD<;\"q','wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jLmrc\',_binary 'R\/VN>ObΜw^k\\^\\'3','',0,'?'),(_binary 'Q@9Few#+\!','wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NCó\\[\', ,\',_binary '\Х҇\HhFݥ\\mP\A\maexH','',0,'?'),(_binary 'ňbemo\','wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\=ռQC\LK&i',_binary '\\}\˹t$\)\ʦP\1~܀\','',0,'?'),(_binary 'U߷\ 3Wi\\\"\Z\','wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\{BYD\%',_binary '\\qa#T0\Tn=\\8X\nBg%΀L','',0,'?'),(_binary 'ic{0\h8N\G\\','wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)M҉anz;\$',_binary 'ˏa@\\\ֆ\"\бg\]\0\s{3u','',0,'?'),(_binary '*.^3=(\vw\ZH','wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\н\d];F\',_binary 'ip[\[\	WY61x茇o\֝','',0,'?'),(_binary 'Q\XgI\?S~)','wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\Vnbɰ\\\2v\0a',_binary '#\r\^sspzm-+d?UL6A\c','',0,'?'),(_binary ' &LoԜ\3','wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>XoՂ盺ĺ]',_binary 'n\\\T\q3\]U=\b2OA\\Fx\F]\','',0,'?'),(_binary '\J\{eA !','wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7Di\ɵ],|!N',_binary '\[\`(\кp\\\\ZM\\"\\\\\	j\$','',0,'?'),(_binary '4\\h4m	V1\\\\	','wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\k;pS+w',_binary 'T<\s1c; uKa\4\?\','',0,'?'),(_binary 'b \!z\@\n&+-矶','wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\lv\"lH\n',_binary '\\\\eݴEN&fԡ\>Bo6\H\\ZJ%D8','',0,'?'),(_binary '\ߎ\r.g&\\','wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!&#wJ\Z\\dF',_binary 'G\}\\NAY򝷚 M-\\b\7','',0,'?'),(_binary '&\|\0Ԧ\\Z\','wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\	sL%\\\\b',_binary '\o\E\`2\@\0DA+	\c)\\\!^','',0,'?'),(_binary '\\O\K5\D\\\\\\r','wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\g\\5O\5>s',_binary '\\:\hp\\Au.kGCsH\a','',0,'?'),(_binary '\'ƿCy\M0ЍJ÷T','wp-content/plugins/elementor/assets/lib/font-awesome/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\'\]>\\v\\2\\\ZM',_binary 'qoO$K]g3\nÒѐ\~\(R','',0,'?'),(_binary '\C䠷T	f ','wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gOP҇č\\',_binary '\~8 ir\\nPp\n2\5DahBzP','',0,'?'),(_binary '?\Ve\\oP','wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\murI1G\',_binary 'Lr7D@y\ɂ]NK(\ti\G9\\Tm=','',0,'?'),(_binary 'u\\ZQ\\\'\','wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hq\\A\i',_binary '	q68xօ\\\s\rN~.Zخ[\"','',0,'?'),(_binary 's\Wg\OTUjsB\]','wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nq*\\ZF)2',_binary '\&4\"\rQjX\mN\"\\?Po\\\\\?','',0,'?'),(_binary '۳Wk\pD-+\rm','wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\\\ 6>',_binary '\@⣂L\EQ\\(ieq[N|&\Ð\','',0,'?'),(_binary '\y̐\o!','wp-content/plugins/elementor/assets/lib/font-awesome/js/brands.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"Y\+}\5\Z䞁!\',_binary '\\\q	\	)\\\fmn@v\\\̭R<\'Pr','',0,'?'),(_binary '\c+%L\4j+g9,s','wp-content/plugins/elementor/assets/lib/font-awesome/js/regular.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bnق\\\1%K',_binary '\f2\݁H\.\LFU\}<\\-s\\','',0,'?'),(_binary '	L\9ᐛ\7fy','wp-content/plugins/elementor/assets/lib/font-awesome/js/solid.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\5&\eg\0\\Y',_binary '?\\\JOSȹ7vf\*wɅx','',0,'?'),(_binary 'a\e1AY\Z\;c','wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\EY,Ct',_binary '\n\r\D\I>lЍ~\r\\\A\\\\\o\','',0,'?'),(_binary '\\n\\k}\r\\'FԪ','wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z]\\np\\\\͇۪fk\',_binary '\9\\\L\Kt\K&\\q(M;s/IJ','',0,'?'),(_binary 'xܟ\\\B\\I','wp-content/plugins/elementor/assets/lib/font-awesome/json/brands.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u\\yb$\\H\',_binary '[\\\\\w94mpjIz\\%\[[WY','',0,'?'),(_binary '\\Gc?F9UY','wp-content/plugins/elementor/assets/lib/font-awesome/json/regular.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(\\}\\\K+`n>',_binary 'xkF\\.\\2\i9!ttD&}','',0,'?'),(_binary '\Zo\|;<\nd\','wp-content/plugins/elementor/assets/lib/font-awesome/json/solid.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q!om_ɮy/\\',_binary '$\"\ f֊Œ\\D\\d ^\֓1\%','',0,'?'),(_binary '3(Kl\]\Y\','wp-content/plugins/elementor/assets/lib/font-awesome/migration/mapping.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=H95<&\',_binary '\\g3xa\wȔ\R?\8\!p?\\\\','',0,'?'),(_binary '\w`y_\r޹]','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\hD\\a[Jh\)',_binary '\\:ɓܵO[\Md7\b\]\ni\4ߙ\\(','',0,'?'),(_binary 'Hc8\4rU\rr','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\R6/d\mItؑ',_binary 'b\_\a\0׾M_I\x','',0,'?'),(_binary 's\d\^gn\e]o','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\4pZܮR!',_binary 'HIf\~q\ \Z)\L\O\\\\\?[yd=$4','',0,'?'),(_binary '[1\X\j]Ȋv\','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	V\>\$Y\L}',_binary '$o\\\Tl\[88\\\T GtM\ς\','',0,'?'),(_binary '\ȕкDj\','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0v\>\$\}',_binary '\Kt\89\L7;\XY\\\RiD\','',0,'?'),(_binary '\x^\d&\a\ΉK','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v0H=԰Ć9ҬTP',_binary 'V!g$X\M\ӈṇQђ\!UO','',0,'?'),(_binary 'I1\\\T-\\q\\','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(EϦ\"=\\',_binary '\0	̀\\\poD\WT\\<J\jD','',0,'?'),(_binary '2np\7;)\\\','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ws!9\o0',_binary '܅\\#|ǘѱVa\K?J\0%KI_Vt','',0,'?'),(_binary '\<A!\"TM?\wy\','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q$\P\'ǂi\ٕc\',_binary '\\-UAT\:8|\H\ɤH>\0\k\\','',0,'?'),(_binary '5\\+i{yu','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#.R&	z(\@f',_binary '6ޗ\O\"R)\\[C\\n\q,\\x9','',0,'?'),(_binary '\\ri_%%2\r\(T','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\\\!Q->pUA9',_binary 'oF^g\\ZN:\\\ZN^\\n\s\\a\R{2','',0,'?'),(_binary '\q3\+0<I','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7l\U=\',_binary '\\Pzbb\\G[Z\{!','',0,'?'),(_binary 'D\9\0ޟ(Н','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`^גl\*\\-9=',_binary '^\r;%	Qp\Ƞ8\^\','',0,'?'),(_binary '0y¥\\êG\','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|6\l[*\',_binary '\\n\\\\h	\~	ve5(\','',0,'?'),(_binary '\\\b`\\3n','wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'\\\\r+7\',_binary '9ڇ~\=\\q\+\\Y2j\Ѧ','',0,'?'),(_binary 'kVBE/;o\\>','wp-content/plugins/elementor/assets/lib/hover/hover.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	z\˫\r\',_binary 'WZ1引\Q7M_\ܔNK\AY\2\Gag','',0,'?'),(_binary 'jD\E+\','wp-content/plugins/elementor/assets/lib/hover/hover.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\X]2\\L\\',_binary '~rS/\\ү\n|i)z\+y','',0,'?'),(_binary 'c2\}\Hb`M]','wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\\v6\0HL\',_binary 'b\\Z\/;$+\]\⸫X\ZN\͸f','',0,'?'),(_binary '9hlD\M\Xr\','wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;\\\|F\R;\',_binary 'rZe9(\\U\򎴀\\qiI\@','',0,'?'),(_binary 'B俿zܗ1zãb:','wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '13\˭\\\7',_binary '\HI|G\f8Ӓs\nCq}\','',0,'?'),(_binary '\\r\\!\\\!mJ\Zm','wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\35\di#\e%+\',_binary '\'\\\Qi1m直\ʱp۫%VͅD','',0,'?'),(_binary '\\jk\\\\\\nD\','wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\eډ\B\=',_binary '{P;n2*Rpۖ>8Og\\XGz\D=I%','',0,'?'),(_binary '5I\\\','wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\:d\\|\"',_binary '/630\'kA\\"u ~2\ia\/','',0,'?'),(_binary '\{Ҁ\nh\\'g)0s\\','wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F8`?y\ZXW\{',_binary 'gac}JF\lZ\\`StM\\ϵc6F','',0,'?'),(_binary '\\"݆GI\hN^','wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#ZfY\{CͼA-\P\',_binary '\\6cu\\rQ:\$3\l','',0,'?'),(_binary '\nH@\!(\\y5p','wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \ve\7\\ʛנ=',_binary '!he\d\e։Swر~n\\\I!x','',0,'?'),(_binary 'yl\Bc\DǊ','wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MC\>j\SF',_binary 'BӤhUg/38M=\\\oiu\','',0,'?'),(_binary '\~@f\R?$[\u','wp-content/plugins/elementor/assets/lib/nouislider/nouislider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'obgyЮ',_binary '\ּ!)\\$z]btR˕\h','',0,'?'),(_binary 'm\ћx}\omv\"','wp-content/plugins/elementor/assets/lib/nouislider/nouislider.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ݽD\\*\<R\[',_binary 'xy:\\\Ly\HG\Z\\z\қҦ\','',0,'?'),(_binary '*1\\hX\f#\\\','wp-content/plugins/elementor/assets/lib/nprogress/nprogress.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\\wB{U\\\\D',_binary '\8j\;\\S\Yc\\X\XaؐA\','',0,'?'),(_binary 'R`!\H´H\\"6','wp-content/plugins/elementor/assets/lib/nprogress/nprogress.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o3\\',_binary 'R,\`\LW\x\jǽ\n\Py','',0,'?'),(_binary '3sKU\\"H<s','wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\\90qD\',_binary 'C\? ʍ*\\\Qcߪ2\0\10','',0,'?'),(_binary '7 R\\꺢V\T\','wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\n\\\',_binary '\\kֶ<P*+uD\\>\%\','',0,'?'),(_binary '1}\%6\\\p9c','wp-content/plugins/elementor/assets/lib/perfect-scrollbar/perfect-scrollbar.jquery.js',0,_binary '\:\\T[Ģ',_binary '\:\\T[Ģ',_binary 'ŹaD_\nQOy\/p\/\','',0,'?'),(_binary 'G#}ɥfb\\\','wp-content/plugins/elementor/assets/lib/perfect-scrollbar/perfect-scrollbar.jquery.min.js',0,_binary '\T\\뼍fC3P',_binary '\T\\뼍fC3P',_binary '<k\gO&\ tBr$(\'4A\Ey','',0,'?'),(_binary '=uBC\6\֞E+','wp-content/plugins/elementor/assets/lib/perfect-scrollbar/perfect-scrollbar.js',0,_binary 'J\,\ذ`An \',_binary 'J\,\ذ`An \',_binary '\e=\JwR\\(\','',0,'?'),(_binary '\K1\Ú\>','wp-content/plugins/elementor/assets/lib/perfect-scrollbar/perfect-scrollbar.min.js',0,_binary '4uO\\;k-\`YXN',_binary '4uO\\;k-\`YXN',_binary '\\\P]7\\QC{/\r\\','',0,'?'),(_binary 'B~f\TzؕmE8','wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{U\\ƚ	W',_binary 'e1\>\x\xK\Mլ`lYt\\os','',0,'?'),(_binary 'Yѿ~y\r~','wp-content/plugins/elementor/assets/lib/pickr/themes/monolith.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\Z\\\0\t\M\\',_binary '|\"6`l}(ԓ7\\uM','',0,'?'),(_binary '1\Ůx]a\'vq/\9\','wp-content/plugins/elementor/assets/lib/share-link/share-link.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ғ\/\\aa3',_binary '\z\Z\QDM=l,2\\ܒ','',0,'?'),(_binary 'H\\7%T~_\0%D','wp-content/plugins/elementor/assets/lib/share-link/share-link.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T){\e',_binary '^<\&\ݥ\e9Ŋ\Cy>\KU','',0,'?'),(_binary 'v$m\\8','wp-content/plugins/elementor/assets/lib/slick/slick.js',0,_binary '>Kkq`:XG',_binary '>Kkq`:XG',_binary 'ePt7\\nGGC_\`ʄ\s=\ϾS Vu*3\Z','',0,'?'),(_binary 'n\Bti<\	','wp-content/plugins/elementor/assets/lib/slick/slick.min.js',0,_binary 'զtD\qYeyݡ!',_binary 'զtD\qYeyݡ!',_binary '#@\ᣧ3\\\\\V\S,[\vBԃ\Ƶ','',0,'?'),(_binary '60n\\\.?','wp-content/plugins/elementor/assets/lib/swiper/swiper.jquery.js',0,_binary '\P\\"ϮZ-',_binary '\P\\"ϮZ-',_binary '\e\)\I\+\?\n\}\0ki\|єy','',0,'?'),(_binary 'T7xgxEɗ','wp-content/plugins/elementor/assets/lib/swiper/swiper.jquery.min.js',0,_binary '\0\76\A\r6}7je$\',_binary '\0\76\A\r6}7je$\',_binary 'CAo|y$ͣ̽r\\\x<\\)\Zͧ','',0,'?'),(_binary 'bC>\n%\','wp-content/plugins/elementor/assets/lib/swiper/swiper.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OM}\ťXp\\ĵZ',_binary '\R׀^U~z܏\'}甛\L#\'\','',0,'?'),(_binary '\#@RkۼY','wp-content/plugins/elementor/assets/lib/swiper/swiper.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+~}e\\hZ',_binary 'ْ؄T \\'Y!Q\O3Dos\%\Y\͘','',0,'?'),(_binary '&r~6װ\@cu','wp-content/plugins/elementor/assets/lib/tipsy/tipsy.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&Y\\`\WŪ\',_binary '51\r*6i$^|P\M\ݚg^\\rz\\\\\','',0,'?'),(_binary '6\\\Vu+\N\5\','wp-content/plugins/elementor/assets/lib/tipsy/tipsy.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0U*E\\8\"h@',_binary 'y\70FfV\n\\~\g\\\=\\\2:\	j','',0,'?'),(_binary 'YBB;:~%','wp-content/plugins/elementor/assets/lib/waypoints/waypoints-for-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1tPo\D',_binary '9\rO:r\\ =\M6\0\lݡќP\-~','',0,'?'),(_binary 'o\0A\\\Eve/','wp-content/plugins/elementor/assets/lib/waypoints/waypoints.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̀2\\\JJ/V\\',_binary '\y,^D\\ƀ\HTF\Fp\Zs\m`\s','',0,'?'),(_binary '\τ\ݧJ\\m','wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\VTs_~',_binary 'b֗.Q!\\!ꎣE','',0,'?'),(_binary '@\ԮXtQ[','wp-content/plugins/elementor/assets/lib/wp-color-picker/wp-color-picker-alpha.js',0,_binary 'iU\A\'?\xe-\',_binary 'iU\A\'?\xe-\',_binary 'I\4ew\r\Z0\H9Vؽ\Ç\+XȻ','',0,'?'),(_binary 'a\\\+\б[ֲ:','wp-content/plugins/elementor/assets/lib/wp-color-picker/wp-color-picker-alpha.min.js',0,_binary '{\\\K\a\'&\\v',_binary '{\\\K\a\'&\\v',_binary 'm\0\]z|\\F|ۇ\}_ѝz;\\','',0,'?'),(_binary '9]Z\\C3\Z<5','wp-content/plugins/elementor/assets/mask-shapes/blob.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\\qDcp\X8 \\0',_binary 'Y,\ѝ\\\y\\\«n\Z*\_Y','',0,'?'),(_binary '_=\\gM\','wp-content/plugins/elementor/assets/mask-shapes/circle.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\b\\O\\\\9',_binary 'Z\`\v3\M(\\rQ+\U\\\h4,','',0,'?'),(_binary 'ο\8zh\\!\ڂ','wp-content/plugins/elementor/assets/mask-shapes/flower.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uc=$_M\.\6z\\',_binary 'Z+\bŽ\n\:\\h7B\\\l\\\C\\3','',0,'?'),(_binary 'bS]hRgϐP','wp-content/plugins/elementor/assets/mask-shapes/hexagon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.f$b6\\\O6<f',_binary '\^5[\2[E,\ˀY\\>\BO۔I\0\','',0,'?'),(_binary '\uN;KS\<\R','wp-content/plugins/elementor/assets/mask-shapes/sketch.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';z>\qb',_binary 'RڂC %\\`}]v\*J w\9Y]s','',0,'?'),(_binary '}9jK\\c`S\','wp-content/plugins/elementor/assets/mask-shapes/triangle.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\\\\'9k',_binary '[[1\\KA~R*p\W1qꄐ\r\Df','',0,'?'),(_binary '*DJ\7y\','wp-content/plugins/elementor/assets/shapes/arrow-negative.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x^(Ƥ٧\\0\',_binary 'm2\0>4ɽ\\\\,c\\U\"_o','',0,'?'),(_binary 'y\\\S`\\}Sw5','wp-content/plugins/elementor/assets/shapes/arrow.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F~z\٨w\Cy\',_binary '7hq\07\n\"e%Sl]g\','',0,'?'),(_binary 'l;p\	#P\%','wp-content/plugins/elementor/assets/shapes/book-negative.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\Ҟ\v?jgv\+9',_binary 'YMw{\\z\5Lyh,\Z7\E\\*[c','',0,'?'),(_binary 'PxF`\\c\[e7','wp-content/plugins/elementor/assets/shapes/book.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\Utc׎f:O9~',_binary 'Щ)\\|X\\\I\s߄ZK++ԔVi','',0,'?'),(_binary 'V\\Z\'[#(\ZG\','wp-content/plugins/elementor/assets/shapes/clouds-negative.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ƞ\l\\\'[\.V\',_binary 'HWmL\لǨdޟ)㰳X','',0,'?'),(_binary 'Ǚ\\G4|@Z/A','wp-content/plugins/elementor/assets/shapes/clouds.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J4\^\u\R\5g\',_binary '\u\Z\\nDAc\l̢\V\','',0,'?'),(_binary '!\\\sV\}\-J','wp-content/plugins/elementor/assets/shapes/curve-asymmetrical-negative.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƫi\\d\',_binary '߯3/ Mq\\35\ƌo\\=S\','',0,'?'),(_binary '`\M\ajjCE\','wp-content/plugins/elementor/assets/shapes/curve-asymmetrical.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\r\H-p\\'uM',_binary '*\\"\(\'wX3\Zl^\0:\4q<;\\','',0,'?'),(_binary '	\J\D뇁e96','wp-content/plugins/elementor/assets/shapes/curve-negative.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wlN_\\Wh',_binary '쌩\&\\\\\\L{\1c@L`k\r~','',0,'?'),(_binary '\81\TȄ\{<','wp-content/plugins/elementor/assets/shapes/curve.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G$\"\Ykg(.\_vn',_binary '˶D\=E\,כ','',0,'?'),(_binary '\ޡ\\wGub\\','wp-content/plugins/elementor/assets/shapes/drops-negative.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	Sl_yք\',_binary 'QW\g\ݱq\7˰5\"\\.Fº','',0,'?'),(_binary '辎0+Ny\:\<h','wp-content/plugins/elementor/assets/shapes/drops.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Yz\\6\;y',_binary 'T~v\P3\&tW-\	\TNqA','',0,'?'),(_binary '\0\F\~?\	\','wp-content/plugins/elementor/assets/shapes/mountains.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0Pq%\@\\u\\"O\\',_binary '\\\\\\}Îׯ<pݭ\\#X','',0,'?'),(_binary '~I]:}tV\','wp-content/plugins/elementor/assets/shapes/opacity-fan.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>gg\Npd\\n',_binary 'Ȥ\n\\޼;;ԛmh(&ɪ>\\\\','',0,'?'),(_binary '\\QL-\ri>JI@A','wp-content/plugins/elementor/assets/shapes/opacity-tilt.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\XyC품\yP5\',_binary '&\\\Srp\Z\0\|m\KX\s\Ë\^\$','',0,'?'),(_binary 'S\\\1\&\\','wp-content/plugins/elementor/assets/shapes/pyramids-negative.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nS=sU+ \Z',_binary 'BVz͋(?i1h\a	\S#\n','',0,'?'),(_binary '\I\\\˖ӚW','wp-content/plugins/elementor/assets/shapes/pyramids.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e2Ø\5E\D<W',_binary '	@^\|Tj\vU\\'\,\2GM','',0,'?'),(_binary '\14\R\\\','wp-content/plugins/elementor/assets/shapes/split-negative.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\H\C@/)',_binary '\=$c(^\5\C\#\L2z\\\','',0,'?'),(_binary 'wT8΋ zY\','wp-content/plugins/elementor/assets/shapes/split.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N?\춈B,\\',_binary 'eC\a\\\f6\AXM\\2','',0,'?'),(_binary ': \ʺH\n!\r','wp-content/plugins/elementor/assets/shapes/tilt.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\\nM\t	\mV ',_binary '\т\!!\:b\$_\:\/\e\','',0,'?'),(_binary 'uw\\\¶7\\r','wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical-negative.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '냴}\S\j2Miׁ',_binary '/\~~\Y~w\qaжIY\n%2m}C}w','',0,'?'),(_binary '\w\\\\\Ѳ7ET\d','wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7:\Dy}1_QQ\',_binary 'jo\0ݕ\m%;9wyn;)\','',0,'?'),(_binary '`?\\C\\f\r\','wp-content/plugins/elementor/assets/shapes/triangle-negative.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\G`xHC\08`E',_binary '\=\Yk3\\0\3\\\\\\U}\i','',0,'?'),(_binary 'Z̥3,^\\CxTt','wp-content/plugins/elementor/assets/shapes/triangle.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Lpʛ/5\7=',_binary '\\\\{vHK\G\A F^G\\2','',0,'?'),(_binary 'xHzOF&9\0\Q\','wp-content/plugins/elementor/assets/shapes/wave-brush.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\A9+3\!',_binary '_`ܬ\"T\r\vUo@)2F?\W.~4V\5','',0,'?'),(_binary 'QX,\"9\dvk','wp-content/plugins/elementor/assets/shapes/waves-negative.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\JOV\O:\GHf',_binary 'U\ҵ^{\bޡ\\0\|]\Se7mn','',0,'?'),(_binary '!\?s\4{Khh','wp-content/plugins/elementor/assets/shapes/waves-pattern.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l4\1\\K\y)d\',_binary '\'\'$r\'\+M?In\Cc\h\\\ݲ\\\A','',0,'?'),(_binary 'יuM60\\BJ\','wp-content/plugins/elementor/assets/shapes/waves.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\jX\\\Y\BP',_binary '!SkU54{U\2A\\]~[@ghfZ','',0,'?'),(_binary '2\-\-\gy\5','wp-content/plugins/elementor/assets/shapes/zigzag.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/G\@\?\\0:{Q',_binary 'N\\*\w|	S\̦x\\<\J:\k\T ','',0,'?'),(_binary '\}\ʭ\BМ\r','wp-content/plugins/elementor/assets/svg-paths/arc.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\"`Kl]Vr\\&4',_binary '\\n;xF#\\\\o\3(~ٙV','',0,'?'),(_binary '\=\q\\\\\gB\\dc','wp-content/plugins/elementor/assets/svg-paths/circle.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' |o!\r\^QTy',_binary 'PfI<dP\UyUK-eX\pu\','',0,'?'),(_binary '\n\0\ںA\\z\\R','wp-content/plugins/elementor/assets/svg-paths/line.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\w\\W\"|_\ࢸ',_binary '#ܵmꫣ\`\\ּ\\;P\x*z\5','',0,'?'),(_binary '\\'(T\"~mU\c\','wp-content/plugins/elementor/assets/svg-paths/oval.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϥ\g\\֮\Cz',_binary '\\'\\\[t^\U\[\n\-^FZ6xa;L','',0,'?'),(_binary '\\\yw;\\\=\','wp-content/plugins/elementor/assets/svg-paths/spiral.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')ȒQN-\gSǓ˸',_binary '\!\\3ͷ}CSSL:\&y\','',0,'?'),(_binary '|\\tA#\rA*','wp-content/plugins/elementor/assets/svg-paths/wave.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\m\\\5$N~\X0I',_binary '\\tKr\\\ٙf\nPd\ m','',0,'?'),(_binary '%\\ܰү\T\\ǈ','wp-content/plugins/elementor/commitlint.config.js',0,_binary '\\\$jԛ]\<\?\',_binary '\\\$jԛ]\<\?\',_binary 'ɐ\Z	\]|wE\T\r36W\\','',0,'?'),(_binary 'ebV}%C}S','wp-content/plugins/elementor/core/admin/admin-notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\0\a\\\m\"2',_binary '߸dH,\\|-\Y\p\7\r','',0,'?'),(_binary '{=\\'q</-V\v','wp-content/plugins/elementor/core/admin/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\i\0/\zx?h\',_binary '\KDrmE\krCk\/ʽE','',0,'?'),(_binary '{\\#\(Z\0<\','wp-content/plugins/elementor/core/admin/canary-deployment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\"\WE0[',_binary 'Cz\sh4\{\σJF	\','',0,'?'),(_binary '6\b5\\?s\\_','wp-content/plugins/elementor/core/admin/feedback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')i\?\R;R0\\',_binary '&}\|\6\Z\kv\"\f\"\rds`\l','',0,'?'),(_binary '\dޏcJ\Q','wp-content/plugins/elementor/core/admin/menu/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\Z\r6Vq$.[\',_binary '\Y(\7p\Z撂\\\\\Gt`\y\M\','',0,'?'),(_binary ',¬;RM~\\\\\N','wp-content/plugins/elementor/core/admin/menu/main.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\\Z\\\E',_binary '/Wmk\v\\m<͸z3	','',0,'?'),(_binary '\݊\,','wp-content/plugins/elementor/core/admin/notices/base-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L`\4Ϯ-d?7\\\',_binary '\!Rq\r	\\\4>ÿT\\r\\"!DiX\\)','',0,'?'),(_binary '\\UrDJs[FɎnD','wp-content/plugins/elementor/core/admin/notices/elementor-dev-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VM\W\\\Jk\0',_binary '\\ˊ-\I\\.s_\\j+iH\','',0,'?'),(_binary '\U6[!63r/\','wp-content/plugins/elementor/core/admin/notices/update-php-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')7\1\t\F',_binary '\Un6Jٳ\ngZ޻]\8̹\sF','',0,'?'),(_binary 'ۡ\\A\','wp-content/plugins/elementor/core/admin/ui/components/button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z>(',_binary '!\oG\e	\0\~U-h4BR>\\\n0EJ','',0,'?'),(_binary 'KmFz\$%\\"g\\ąS','wp-content/plugins/elementor/core/app/app.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-DKbI.',_binary '<~\M\@neU\n`A뿷ߚ&*4[','',0,'?'),(_binary '\\cz6\','wp-content/plugins/elementor/core/app/modules/import-export/compatibility/base-adapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_g͙s>\',_binary 'Sk+p\\\UZ\\	6O,\\B<ֱd','',0,'?'),(_binary '\7M\"\\}s\','wp-content/plugins/elementor/core/app/modules/import-export/compatibility/envato.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '∅\\nQJ{^',_binary 'IRW1}\\\,RJ\0g\\\\-n','',0,'?'),(_binary '<!\\(zO;2*','wp-content/plugins/elementor/core/app/modules/import-export/compatibility/kit-library.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Fv\XP\ZΕ\"',_binary 'Ѱ\>\+>\\0i	A7#\\T5rEi','',0,'?'),(_binary 'r\ϻž\\\a','wp-content/plugins/elementor/core/app/modules/import-export/directories/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\2\-vKz\\\0\\7',_binary '9hfq-Thvj\Z-\:\mlW\','',0,'?'),(_binary 'm\\Ԕ\΍.\~','wp-content/plugins/elementor/core/app/modules/import-export/directories/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O~\\`J\0\H&%f\',_binary 't\"VL\\|\dƔ\c	S9\','',0,'?'),(_binary ')@\l7\%b','wp-content/plugins/elementor/core/app/modules/import-export/directories/custom-post-type-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&&\\h\}\\pB',_binary '/V_uO\0ڳζlKǄ{)Wg\\0\ny\\nȱ','',0,'?'),(_binary '\/\n\˴sS\k\\','wp-content/plugins/elementor/core/app/modules/import-export/directories/plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kjj\lsAݽs',_binary '#➾rK#q\\,óEA\;,>\swIm','',0,'?'),(_binary 'c6\0\1)bk.^D\','wp-content/plugins/elementor/core/app/modules/import-export/directories/post-type.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ώ\\r^||,\\',_binary '*ѧF\\'R|\}_~\0#Ky\\','',0,'?'),(_binary '\"\\W\chL','wp-content/plugins/elementor/core/app/modules/import-export/directories/root.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\&\\8 Z.&',_binary '4sZz\\\۪\\\ҙ\0\!AӚ-Nx3','',0,'?'),(_binary '\	Q\\','wp-content/plugins/elementor/core/app/modules/import-export/directories/templates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\m\0\ND\B',_binary 'VQ/I5(V2}Y8VZu\XGCڀڡ','',0,'?'),(_binary 'M3\vr-&.\7t','wp-content/plugins/elementor/core/app/modules/import-export/directories/wp-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\GF(\ZƱt\x(L',_binary 'u/\,)\'\F55\s\dBdTG@\\\\\:','',0,'?'),(_binary '}\\u\u|\d--h','wp-content/plugins/elementor/core/app/modules/import-export/directories/wp-custom-post-type-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' T\u>\4',_binary 'N\"	\\?Ț6\\vbݫ\}F\\','',0,'?'),(_binary '\Z\\\	]\\\','wp-content/plugins/elementor/core/app/modules/import-export/directories/wp-post-type.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q18p7\:',_binary '\UFr\?{|+Ͽ }f]\','',0,'?'),(_binary ',\T]\,\n5u?6','wp-content/plugins/elementor/core/app/modules/import-export/export.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݠ\)T\g\\ã',_binary 'Z2\ʨ\"\f|\ߢ\\Q5,!.ټ\\\','',0,'?'),(_binary '/~\v\%ۮ_','wp-content/plugins/elementor/core/app/modules/import-export/import.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\xn\\\\',_binary '@[\\ڻ\0-mi\8NUAdR)n','',0,'?'),(_binary '۝=\2c\\1','wp-content/plugins/elementor/core/app/modules/import-export/iterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.y\\u\,-\\',_binary '&J\ݗQ\~j֥\\nOB\\\\:-\Ƕ(','',0,'?'),(_binary '.ʁl\I\|\R5','wp-content/plugins/elementor/core/app/modules/import-export/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\C\{QA1D\',_binary 'g&+\Om<\2\r7Oi\Zn>_KVHz\','',0,'?'),(_binary '28U!/1Tl&\','wp-content/plugins/elementor/core/app/modules/import-export/wp-cli.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\>H\9:~X\	\S',_binary '.+6\g/8/\nNz\z\i.*		2\p=\\G','',0,'?'),(_binary 'W\\\0\Yr','wp-content/plugins/elementor/core/app/modules/kit-library/connect/kit-library.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\#\=\O\\\',_binary '=OdD\\Zvm\tvka\$.0','',0,'?'),(_binary '\r\/R)Sj\N\','wp-content/plugins/elementor/core/app/modules/kit-library/data/base-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\y\\fQ0l\\',_binary '\03zbpH\\5\\K	N\\~9\R','',0,'?'),(_binary '\\rFQW\\#','wp-content/plugins/elementor/core/app/modules/kit-library/data/exceptions/wp-error-exception.php',0,_binary '\X\u.2\h\.y',_binary '\X\u.2\h\.y',_binary '\/\(f6\\a\ĝ8ʆm\0o','',0,'?'),(_binary 'u\C	rە\H\\E','wp-content/plugins/elementor/core/app/modules/kit-library/data/kits/controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>#wWc8S',_binary '\\R\#id\\WaJ9,~N\\','',0,'?'),(_binary '\Z>:vnŃ\\\\W3','wp-content/plugins/elementor/core/app/modules/kit-library/data/kits/endpoints/download-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+æ\OĴ؏\\^(',_binary '\\Jʽ	s)S \\0Eڇ5*\d)\'n\','',0,'?'),(_binary '\y\Q5S\"\','wp-content/plugins/elementor/core/app/modules/kit-library/data/kits/endpoints/favorites.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\b+޼\\doW\\r',_binary '.@W*SjV\\#\s/pJ\"','',0,'?'),(_binary '\ė\\iM\\','wp-content/plugins/elementor/core/app/modules/kit-library/data/kits/endpoints/index.php',0,_binary 'OX4r\n\\6g\μa',_binary 'OX4r\n\\6g\μa',_binary 'z)kx\\F\hpP^\Y	\\Ӟ3~5rYV9','',0,'?'),(_binary '\@\œ\rR@}zBm','wp-content/plugins/elementor/core/app/modules/kit-library/data/repository.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\\u/)\Zxcj(',_binary '}\\n:YZNs|\(\$JB\\\{+%','',0,'?'),(_binary '\\9|ڭl\@','wp-content/plugins/elementor/core/app/modules/kit-library/data/taxonomies/controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\/c\ʴ웍e7',_binary '\F[ކ_+9OXU\\XɅEuy','',0,'?'),(_binary 'Y}}ˑ4\\A\u-','wp-content/plugins/elementor/core/app/modules/kit-library/data/taxonomies/endpoints/index.php',0,_binary '@{\j\\yäy@q',_binary '@{\j\\yäy@q',_binary '\ܖl*#\R	4\\vX\\Lס','',0,'?'),(_binary 'B-\\MR','wp-content/plugins/elementor/core/app/modules/kit-library/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\VL	Վt5*\)',_binary 'o\w\#S\-D\a/\]v\\?\.;','',0,'?'),(_binary 'Q\\;z\','wp-content/plugins/elementor/core/app/modules/onboarding/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h	Q\x\\5\q3_\',_binary '\\E\\ZC\\6\ԓ fN\ ','',0,'?'),(_binary '/d\r\~4\\','wp-content/plugins/elementor/core/app/modules/site-editor/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýi15^\"BUO',_binary '\=\qQO\I-aG`Q\/ZՍ5u~','',0,'?'),(_binary 'U\V\\A9&\ҭ','wp-content/plugins/elementor/core/app/view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N15\eUq[<\',_binary '\\Z\"\\\BTAA8\\b)\\ʯ\Nso\y','',0,'?'),(_binary '\|ߗ\\GE','wp-content/plugins/elementor/core/base/app.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '؀>i\\\a0[',_binary '\\\1d\"\/5\\c1$}\\0','',0,'?'),(_binary 'HL\\<Կ\9','wp-content/plugins/elementor/core/base/background-process/wp-async-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.\əHj\n˱P\\',_binary '\\G2O\z\\\2\d\r\\U\[$','',0,'?'),(_binary '\%h3\Dh\','wp-content/plugins/elementor/core/base/background-process/wp-background-process.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\a\ŉ\\j\"2\',_binary '!|\P^=\\\2xTHRT\\v\\\','',0,'?'),(_binary '_I\\\\͵٩ep\','wp-content/plugins/elementor/core/base/background-task-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gO4\s殚\&w',_binary 'D\w*HBTH)\S}\\ȁ','',0,'?'),(_binary ']FD>%Pw\ӽ','wp-content/plugins/elementor/core/base/background-task.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hפa)Y~',_binary '.U#!\\0`MkH.O\GS','',0,'?'),(_binary '@@0\(Pv\\','wp-content/plugins/elementor/core/base/base-object.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0ly@ظ6\\',_binary 'k²\\\\\\\7\KR|r1','',0,'?'),(_binary 'ȑ-\a\FU^d','wp-content/plugins/elementor/core/base/db-upgrades-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\}p\\=^',_binary 'YJ\,\-a\0b\[(K:r\8?^','',0,'?'),(_binary '\\gP7\\(U\','wp-content/plugins/elementor/core/base/document.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k\\n\-\6',_binary 'gS\Z\\:>wLJ>\\','',0,'?'),(_binary 'qMH\,\Xb,\Zډ','wp-content/plugins/elementor/core/base/elements-iteration-actions/assets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\oF\\"\',_binary '\'gW3\xe.\z;\>N\F\cq','',0,'?'),(_binary '@K\Q\\Q\QC7\e\Z','wp-content/plugins/elementor/core/base/elements-iteration-actions/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\G\\\\nO\',_binary 'q҆\\4̅\U.Ժ_ﲮ\','',0,'?'),(_binary '\甾ɘTu\\77\;','wp-content/plugins/elementor/core/base/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iA\\V',_binary '\\V\IЀ,/ \\\\\\㡵f\','',0,'?'),(_binary '\/+\mr\\','wp-content/plugins/elementor/core/breakpoints/breakpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '栜4+*\Z_u;{\',_binary 'I/s8ֽ _y\\\\rյ','',0,'?'),(_binary 'V_\18o	Y<\Z<','wp-content/plugins/elementor/core/breakpoints/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[I50_S',_binary 'O\_\\\\ݕmv\\\\]ؽ\Fw\\r','',0,'?'),(_binary '1\3\ E	\\','wp-content/plugins/elementor/core/common/app.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I=I\\rϫ&X\\Ƨ',_binary '\\?N]4MFĲIT3]\\2UZ\~\/\','',0,'?'),(_binary 'T/\\fUjݵ :','wp-content/plugins/elementor/core/common/modules/ajax/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G&ir\n\}\"ژ4',_binary 'v\\׆\hRmze\*\"\ܗ;_','',0,'?'),(_binary '\']\\$m$\6,\y6','wp-content/plugins/elementor/core/common/modules/connect/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}ڭ\\\zq# ]',_binary 'χx0\k~4\8y.\,~m cz','',0,'?'),(_binary 'M\MN>-qxC\','wp-content/plugins/elementor/core/common/modules/connect/apps/base-app.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5RО+\ϰA\k',_binary '\\d\櫲6yo\\5z\&\','',0,'?'),(_binary 'T-e<zF\','wp-content/plugins/elementor/core/common/modules/connect/apps/base-user-app.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ge^8I\[x',_binary 's}\O\t/AƳUm37\\r','',0,'?'),(_binary '<,MR-zjFD@\','wp-content/plugins/elementor/core/common/modules/connect/apps/common-app.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JS\b\`?\e9',_binary '@w\\\bM|\\\i,4\-`|\&','',0,'?'),(_binary '|\ts\\KC','wp-content/plugins/elementor/core/common/modules/connect/apps/connect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\\\A\\B',_binary '	G/z暶\\\SR\\hbI.\[\,;\','',0,'?'),(_binary '\076\\\ڙ\h','wp-content/plugins/elementor/core/common/modules/connect/apps/library.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\\[9\\',_binary '\\ZH\\ZCA-9\z_b\fq','',0,'?'),(_binary ';q]L\e-؋\\','wp-content/plugins/elementor/core/common/modules/connect/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\d\|m\OI+vc\\n',_binary '/l+OSo\n\/%q8`\\u\?\A{','',0,'?'),(_binary 'P\`,\ZcU\뱶)','wp-content/plugins/elementor/core/common/modules/event-tracker/data/controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\)\"\9^\\rX',_binary '\9\r_[}\<^\\\~W}\\P!&\~y','',0,'?'),(_binary 'v\\a\\`dQ','wp-content/plugins/elementor/core/common/modules/event-tracker/db.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$&^p~s\=^Z',_binary 'T\%=\8䬬]1v\JiN_醥\','',0,'?'),(_binary '0\Oq0\\YQN','wp-content/plugins/elementor/core/common/modules/event-tracker/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\\\Uळݭ?\',_binary '?\\I\\\\~{OL5lo3Ŀp','',0,'?'),(_binary '\\ D\m\\%','wp-content/plugins/elementor/core/common/modules/event-tracker/personal-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\;Y\\~ϣ',_binary '\;\Wɞ㣌S\n\N\UP\iI0Sv\n','',0,'?'),(_binary '\\0\s,\ӄ=,','wp-content/plugins/elementor/core/common/modules/finder/base-category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\r*\4\CP\\I',_binary '~S\F\ʄ\r\G\\24p@\\\s','',0,'?'),(_binary ' 1\H\ޞxHb','wp-content/plugins/elementor/core/common/modules/finder/categories/create.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BwC\6M<o1.',_binary 'qve\܅H\r\\o%G1g','',0,'?'),(_binary '͗ճf:o)','wp-content/plugins/elementor/core/common/modules/finder/categories/edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Iw}\	\K\k',_binary '\p,\E\0?\oq\\\\w\_/V','',0,'?'),(_binary '[\A\6a(&A\"','wp-content/plugins/elementor/core/common/modules/finder/categories/general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ F\\\i\ ',_binary 'sٗ\&^kwY\on7[\r+\0\'\','',0,'?'),(_binary '\0t\\+o\\\*','wp-content/plugins/elementor/core/common/modules/finder/categories/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ų z\U01',_binary '߫\\*tȞ[AČ;]\nH\\Ԋ(s','',0,'?'),(_binary 'Pv\gI\x\S\P\','wp-content/plugins/elementor/core/common/modules/finder/categories/site.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'trKV\u<&b',_binary 'BbB?G\Q\I<B!H\\^\+d\S;','',0,'?'),(_binary '\\Z\\\\0p\@\D','wp-content/plugins/elementor/core/common/modules/finder/categories/tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=֩@\\X',_binary '{R\\\4L\Rf\\8\\^{-t&','',0,'?'),(_binary '`bGY\\\!\ǱӉ\"','wp-content/plugins/elementor/core/common/modules/finder/categories-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\s\O\0\\tb',_binary 'Zxx)xaS\䳆\\	gGV\8\ܛvv\g','',0,'?'),(_binary 'Z\rdWKrg\!te܈','wp-content/plugins/elementor/core/common/modules/finder/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's01\1\Ĕ\&\',_binary '	Np\>rs\wu\7\\\LG\','',0,'?'),(_binary '~\\zXFWV -','wp-content/plugins/elementor/core/common/modules/finder/template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|n\8`\\"ʓ5',_binary '\B~\Ze>\'v{\Ps\PP\Q\Q','',0,'?'),(_binary '!\\\\&\\\\na;','wp-content/plugins/elementor/core/debug/classes/htaccess.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gq\\\p1\\\7\"',_binary '鄴q\*Q\V@hI\\\\-W\','',0,'?'),(_binary 'q]\\C(S~','wp-content/plugins/elementor/core/debug/classes/inspection-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\L',_binary 'ҳ\r&\%\ij$g\\r.\%L>','',0,'?'),(_binary 'T\,\BE\^\ï#r','wp-content/plugins/elementor/core/debug/classes/theme-missing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y$\pn|Ӭ',_binary 'm\\",{LJ?S\\V|\	B\\J\s[\yp+','',0,'?'),(_binary '\\\LL\\=\#2','wp-content/plugins/elementor/core/debug/inspector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g}ᛆ\EXy',_binary '#<\q)\}r \E.R\\wA/E\0','',0,'?'),(_binary ' GZ3ApkY\"','wp-content/plugins/elementor/core/debug/loading-inspection-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+XM\^\!,M9Iy',_binary '\\Z\\\rf\\\xT~y(u#\^E','',0,'?'),(_binary 'CtqJ\>\Ŭ闉','wp-content/plugins/elementor/core/document-types/page-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9P=e\\̲',_binary '\r\\)3N/1>$\3}W\ִʂ׶','',0,'?'),(_binary 'D\Aya\','wp-content/plugins/elementor/core/document-types/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '88\\Di4\a',_binary '8\\?j\ɍ\4==y(ٓ\\Z\g','',0,'?'),(_binary 'n\\C)l\\y','wp-content/plugins/elementor/core/document-types/post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c	T$iB{\gѳ',_binary 'שô\]wǰϷY\\\0}\o̍*','',0,'?'),(_binary 'ɻ\r\t条\=k','wp-content/plugins/elementor/core/documents-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':J\\r\'RC',_binary 'N]I\\0Y\Z$\\5V@Uo1\','',0,'?'),(_binary 'Fm&g\r[X_','wp-content/plugins/elementor/core/dynamic-tags/base-tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L\h	1V\&=\',_binary '0\p{\\\9Ϯz&*g9҉\7rʝׇ','',0,'?'),(_binary ']4j^wˌ\','wp-content/plugins/elementor/core/dynamic-tags/data-tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!laeNP\5{\',_binary '\Zh%\\r{}Ѽ>M\8<]ӻ(\','',0,'?'),(_binary '\J`X&5T\','wp-content/plugins/elementor/core/dynamic-tags/dynamic-css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1-8g{)\\\Z`\',_binary '\)gVr:蚞ƞ\O\"?\\	\DY :N','',0,'?'),(_binary 'Ԧ\z\_+>i\ ','wp-content/plugins/elementor/core/dynamic-tags/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H샻s!\\	',_binary '\yrD\k- -\\'\\\KEG','',0,'?'),(_binary 'G \\\u:\\','wp-content/plugins/elementor/core/dynamic-tags/tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\/ak󗠟B\',_binary '<\3v5\?D\\Wֱ V3+<&8','',0,'?'),(_binary '\\\,U_p\$','wp-content/plugins/elementor/core/editor/data/globals/controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\\9\ï\t\',_binary 'f?`$%\\\$\=\g\-w7\\\$r','',0,'?'),(_binary 'c@iyFaY\\bK','wp-content/plugins/elementor/core/editor/data/globals/endpoints/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\&FR\\XBVN$',_binary '\0rl\7L\\\\pK\(A\k3OB\4','',0,'?'),(_binary '%I#3<g\Z','wp-content/plugins/elementor/core/editor/data/globals/endpoints/colors.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XJ*0߮S\k',_binary 'l\\22ٽO\\a)۝\YLw\h\aK\n','',0,'?'),(_binary 'S\|\\\O\t','wp-content/plugins/elementor/core/editor/data/globals/endpoints/index.php',0,_binary 'Ȕkp8\rN#\\',_binary 'Ȕkp8\rN#\\',_binary '\z|Y)~Pbf.N<\͆кH','',0,'?'),(_binary '\$\SK Eכ','wp-content/plugins/elementor/core/editor/data/globals/endpoints/typography.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\r\?V',_binary '.{Z2036V\\\ms\\I 4/V\0','',0,'?'),(_binary '1Y\\N}c~&','wp-content/plugins/elementor/core/editor/editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V]gv`s\\\s',_binary '/Ї\\\3 >)\\}\64gS\\','',0,'?'),(_binary 'f\\],VDv\','wp-content/plugins/elementor/core/editor/notice-bar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\P1EZ~HYg?\',_binary 'SS(|+}ϐ\8y<L\pSKt','',0,'?'),(_binary '?rC&%\\\\£','wp-content/plugins/elementor/core/experiments/experiments-reporter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p	\t4Mk\\Z\\',_binary '߁ܬ&FL\\"\\\\84\Z`D6\\"x,X','',0,'?'),(_binary 'S\r\\؟!K','wp-content/plugins/elementor/core/experiments/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u`\\\cL\\\?',_binary 'W>գ\\F}+){I\۴\\\\\9\','',0,'?'),(_binary '7^\gPyKy','wp-content/plugins/elementor/core/experiments/wp-cli.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7S\\\^\ŋf(-',_binary 'Y>\א\\\\.`\45e\>L9R\','',0,'?'),(_binary '\\0\KN!t\','wp-content/plugins/elementor/core/files/assets/files-upload-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l!\J\\FKv1\\',_binary '޺6/\M.\\Q\\\y\\nKl8','',0,'?'),(_binary '\\`	Ž1 \`e\7','wp-content/plugins/elementor/core/files/assets/json/json-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{qDͨ\\b',_binary 'Ea\c{\-4u}\\)\'i$\BKl#\.&','',0,'?'),(_binary '\Vr\Ⅽ\ֺ\g&','wp-content/plugins/elementor/core/files/assets/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ϟ#\: fUls',_binary 'M,y[\[ĝ6?\\H\0.\\Ю','',0,'?'),(_binary '4r)F\G!\\1','wp-content/plugins/elementor/core/files/assets/svg/svg-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\N\H7wG\C',_binary 'ICM=\\X[E!<\\j\6,N6\*','',0,'?'),(_binary '\ŗEs.9\0<\q','wp-content/plugins/elementor/core/files/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N>?\Y\9Ew\',_binary ')\|\:\\\0~^$\I\rhn!#^I8ݠ','',0,'?'),(_binary '	gbϗ \','wp-content/plugins/elementor/core/files/css/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u?}օ\8',_binary 'ٖ\\m40ΌJ\ \\\80\"I\ՒD/','',0,'?'),(_binary 'i\h\\\B\','wp-content/plugins/elementor/core/files/css/global-css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G,5=\\z\\r\\\',_binary '\Lʰ\5\%\r2ΝŠ\\Z\Z+^l\','',0,'?'),(_binary 'f\\\\\E䣄','wp-content/plugins/elementor/core/files/css/post-local-cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\:uҊ/&\uRw',_binary '&\஌D\v\([L%`\%.\R','',0,'?'),(_binary 'ɘ\\\\\ɿ\\'\','wp-content/plugins/elementor/core/files/css/post-preview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UH1\P)\TL|\',_binary '|/3\\`\CddD\\ND\\','',0,'?'),(_binary 's?\\ojz','wp-content/plugins/elementor/core/files/css/post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\^;\ӍOЩ=',_binary 'Xl 2\~/@t9\2\4\<@','',0,'?'),(_binary '\UhgM dnQ','wp-content/plugins/elementor/core/files/file-types/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Og\\(\ԷtV',_binary '͊}3;e\`q\\\P\"~O~.N\','',0,'?'),(_binary 'k\\uυ\'؍3\','wp-content/plugins/elementor/core/files/file-types/json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Mg?\\bu',_binary 'd\ݥ\N\}\\0S \\\hܜG','',0,'?'),(_binary '.3v\YdjM','wp-content/plugins/elementor/core/files/file-types/svg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':e/ee8`.',_binary '\\v\,y\P\Rfۚ@\\a\\G\\','',0,'?'),(_binary ')\\IB\v\/\ׂ','wp-content/plugins/elementor/core/files/file-types/zip.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kXʯЖ\\`\\	',_binary '\c~B\,\%.^0HU\c/c\\T&;','',0,'?'),(_binary 'D !1gq\\t%Z','wp-content/plugins/elementor/core/files/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\qۼ\<anI\C',_binary ' n\0\T3gl\\C\-0<Z5:ݤC!^','',0,'?'),(_binary 'x\	4dF\\b`','wp-content/plugins/elementor/core/files/uploads-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\e2\"iu\\Z=U\',_binary '9\4\tznlZU\)î`	','',0,'?'),(_binary 'D\]&&9!\Jԥ','wp-content/plugins/elementor/core/frontend/render-mode-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L/V\~\\',_binary 'pt-\\o3\\|O\\r\\"b\D','',0,'?'),(_binary '\I6+\\%','wp-content/plugins/elementor/core/frontend/render-modes/render-mode-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.wI7Z\Wf}b>hn',_binary '!\\\e\B/kC9-YbQ\RH\\\','',0,'?'),(_binary '\BZ\S>\\xꨏ\','wp-content/plugins/elementor/core/frontend/render-modes/render-mode-normal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ң6Oi3i\.',_binary 'y:\*B\Mi}(\ \$܄/','',0,'?'),(_binary '\I#\\)\\ˁ\\','wp-content/plugins/elementor/core/kits/controls/repeater.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\\\\\\ѥ7M',_binary 'SQ6AK&J}\\3K\\ xڦd>','',0,'?'),(_binary '5,6C=\\\UnKH','wp-content/plugins/elementor/core/kits/documents/kit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\\3\0]\"\',_binary '/ sb,\u<j*\}\F}\񺋖','',0,'?'),(_binary '\Z\\mg\r3BڭP','wp-content/plugins/elementor/core/kits/documents/tabs/global-colors.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nW_O\0\\\',_binary 'Ѳ\%\G(\\å\\\y^S}h,2','',0,'?'),(_binary '[J\\\\`\X','wp-content/plugins/elementor/core/kits/documents/tabs/global-typography.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/$\r&Z\y?\',_binary 'e)sedW.%ǿʽME\\MeȻ','',0,'?'),(_binary 'B|\?jx>M','wp-content/plugins/elementor/core/kits/documents/tabs/settings-background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\P)\m]\N8,!',_binary '\!	\I_B\զ\Na\I#Nt_+rh\','',0,'?'),(_binary '\\WJfzi\n`','wp-content/plugins/elementor/core/kits/documents/tabs/settings-custom-css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\\Z.\\nd]1յ܅',_binary ']\bQFi\00\EV\vE6\1*Lqݭ#','',0,'?'),(_binary '\\\\JA\r','wp-content/plugins/elementor/core/kits/documents/tabs/settings-layout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's4}\\Z@ˣrj',_binary 'aw? \4\\%[x\\N90\\Vf\','',0,'?'),(_binary '±!\{Q\:\\?.','wp-content/plugins/elementor/core/kits/documents/tabs/settings-lightbox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\ZB\\Zyݘבuh',_binary '\Wnh\k:ď\\ \\[\Yt\n\W\I_\\','',0,'?'),(_binary 'Ƶ -9\cD\','wp-content/plugins/elementor/core/kits/documents/tabs/settings-page-transitions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\Wr\r',_binary '\Mכ\/mܙq\\\\.\`Q)^\\\','',0,'?'),(_binary '9yW\\\7#\\i','wp-content/plugins/elementor/core/kits/documents/tabs/settings-site-identity.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\b&Q\\m\D5\c',_binary '\>\r\\"J\y%/b]%[^\\r\\\','',0,'?'),(_binary 'ebK\&uK','wp-content/plugins/elementor/core/kits/documents/tabs/tab-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V6At\x}\\6d0@',_binary '\4s\4\!(\\B\Z)Ab\Wr5','',0,'?'),(_binary '\\bV]\\z)\@','wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9AݻϦͲ\\Z\a',_binary '\0N8\\UG<Yy\.bPm.}?','',0,'?'),(_binary '8r\F\y\^0v','wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-form-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\\0}F\',_binary '\x\AqtS\eؽ\\EbG٣{Oih','',0,'?'),(_binary '<\LZ\UʢǞ\\EL\\','wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-images.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\e\Z\V]O\W\6',_binary '\\ψ \Y\CG3\|J}J\R\','',0,'?'),(_binary '\\0\\\nY9#c\܌]','wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-typography.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\rV,\dj\\\e',_binary 'sDS\p\\8\D^E\\l~\h\n\j','',0,'?'),(_binary '/WL:\\6W叧\F','wp-content/plugins/elementor/core/kits/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\S\p',_binary '\+S+T/>~*Pg#\=\\(!\f','',0,'?'),(_binary '-`*ڕWY=\֐o','wp-content/plugins/elementor/core/kits/views/panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\ \HP;\\IL\\',_binary 'G4?\\\~.\rNh\','',0,'?'),(_binary 'A,tw \'dߞ','wp-content/plugins/elementor/core/kits/views/trash-kit-confirmation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\x+`Q\,',_binary 'u\{me\1Ě_\0\ RXb;','',0,'?'),(_binary '\rӧش\2*t-#[)','wp-content/plugins/elementor/core/logger/items/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'г\\ M\J\\',_binary '\\\rޱ\\(|c˖\\JL^%z\[\','',0,'?'),(_binary '\q)yj\`I\','wp-content/plugins/elementor/core/logger/items/file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Y0C@:b=P5y',_binary '\N\:.&h*E\\N(\~Ѭ M','',0,'?'),(_binary 'I.E(#S\','wp-content/plugins/elementor/core/logger/items/js.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ѷc\Z+=8\*6',_binary 'Ňx*EA\\\a\3ΕAWɔ\0C\*IT\/','',0,'?'),(_binary 'zxڮ\h,8xv','wp-content/plugins/elementor/core/logger/items/log-item-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\!\\B\A',_binary '\k;W&7yÉ\5?߉\2\Z\-','',0,'?'),(_binary '\\A\<c&LcZa\Z','wp-content/plugins/elementor/core/logger/items/php.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\\\nGGe\\',_binary '\{\\\\Z\0?\\Z\oP_Y^*\\x','',0,'?'),(_binary 'I|>Z\q','wp-content/plugins/elementor/core/logger/log-reporter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^b\rh;\j\\Z\',_binary '\\\(r\\\\v1<\+~r6\u.\n','',0,'?'),(_binary 'l\G&\3](]/','wp-content/plugins/elementor/core/logger/loggers/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[T\;\\\4#\\|S',_binary '\`\\N\\\k4?\͐)JQ\Z˃mG\0','',0,'?'),(_binary 'W4\\\\n8O\\','wp-content/plugins/elementor/core/logger/loggers/db.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EmRɧ\\\	5',_binary '!k5BC\a\{\\0\\<\b-y4d','',0,'?'),(_binary '%p\Cu@Q','wp-content/plugins/elementor/core/logger/loggers/logger-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0ד\L\rD\\\aև',_binary '_\?\\N\)\"\^J+\'L0=\b\<2','',0,'?'),(_binary 'ƨ\\\Mr\}yґ','wp-content/plugins/elementor/core/logger/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I;\>5`a\n<',_binary '\Z\\'\r\\~\K\IeU\\xel{\','',0,'?'),(_binary 'ծn\\@u:\]\u\','wp-content/plugins/elementor/core/modules-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\KCΗބl}^',_binary '\0d\\3\\z*,/\'s[\\D^aQS','',0,'?'),(_binary '_\>Ef\','wp-content/plugins/elementor/core/page-assets/data-managers/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<|I\cҀ',_binary '\\Wճ9\Zp	@\m:\\\Z\Y\<','',0,'?'),(_binary '!0~iVΡ','wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\2\\P4!M[',_binary '\\A	Zz|2\\\#\\\u\','',0,'?'),(_binary '$\Z\=\'w@\\u','wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/e-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t\\\|}\n',_binary '\r>wݬ@<+\4iޓQ\PR\','',0,'?'),(_binary 'z\Ɠ\$Z\4\\','wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/font-awesome.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\cJz(\\O5\',_binary '\\\";\\\OuU\ [>&	A\!','',0,'?'),(_binary 'XZA\ʃ\\\n\Va\','wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\\Y\9D^',_binary '\/$|<HI]\\\Te	0e','',0,'?'),(_binary '\\C+\+yi\'}Xʨ','wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg.php',0,_binary '\\rbw\\\Z<\',_binary '\\rbw\\\Z<\',_binary '3<ʕC\Uy\_kƻ\M7X4\','',0,'?'),(_binary 'ԩ\=F\騝4D\','wp-content/plugins/elementor/core/page-assets/data-managers/responsive-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\\^r+\0NY',_binary '\`h;\Ψ\Z\gf\0t?]\Ӥjv','',0,'?'),(_binary '\ BK}ܨ\\','wp-content/plugins/elementor/core/page-assets/data-managers/widgets-css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZK{>Wn	z\\',_binary '\\fR\^?#\\,\V\\n_D3*R','',0,'?'),(_binary '\"\OM\\\0Bٲ:','wp-content/plugins/elementor/core/page-assets/loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\XX\HԽC,\',_binary '؊\*o\\R&z\/b\Y\)\Lk','',0,'?'),(_binary '9Gyϗ]YV[\rPk','wp-content/plugins/elementor/core/page-assets/managers/font-icon-svg/base.php',0,_binary '\d:Z0Hˌ\\',_binary '\d:Z0Hˌ\\',_binary '\\\\fx^Kp6	m8F\0\ZZ\\s','',0,'?'),(_binary 'c#8P\|','wp-content/plugins/elementor/core/page-assets/managers/font-icon-svg/font-awesome.php',0,_binary '~477\昨xN&xm',_binary '~477\昨xN&xm',_binary '\Ԍju\.JG\0m($}/޿QAHg','',0,'?'),(_binary '|\lk|','wp-content/plugins/elementor/core/page-assets/managers/font-icon-svg/manager.php',0,_binary '\ZY[\p\',_binary '\ZY[\p\',_binary '۰,ې\2\04R\,ˢ*Xm\(-u\\','',0,'?'),(_binary '\\P*\'','wp-content/plugins/elementor/core/responsive/files/frontend.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\j<\\=\\',_binary 'L+ZY{|&p{\\\"ka\\D|K','',0,'?'),(_binary '\n\`o \\ݘr\','wp-content/plugins/elementor/core/responsive/responsive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(L\3\',_binary 'X\\$\\rE\c3e!\2~	}\Z)\"m','',0,'?'),(_binary 'm51\\Zp:8\\\0=','wp-content/plugins/elementor/core/role-manager/role-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O 0MpW\"\\0\*W',_binary 'rC:\\O\\὚Yx\Rz\\3;\\','',0,'?'),(_binary '\\u,d\rP .32','wp-content/plugins/elementor/core/schemes/base-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ms\'C\0}\0\\ךkC',_binary '\0I\\\ZcѼ\\JC@cB','',0,'?'),(_binary 'd;|\\\3\~','wp-content/plugins/elementor/core/schemes/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\MV\n\6\Ocz',_binary 'lJ\RBTK)\E_\%Fa\Z\`','',0,'?'),(_binary '\\K<v=n)','wp-content/plugins/elementor/core/schemes/color-picker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"O\;:Z\\T)^',_binary '\\DT73\On\ď\GEf޲g=\','',0,'?'),(_binary 'j\k+ Ԥ]W\','wp-content/plugins/elementor/core/schemes/color.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\\.\\Z?US\\',_binary '\C8kc#\u\nA|J0:o7mֻN)','',0,'?'),(_binary 'xmA\On`\)V\','wp-content/plugins/elementor/core/schemes/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2\\mTR	}c\A',_binary 'ț}e\tZQl9\0Rg	v~\蜹','',0,'?'),(_binary '\Zj\\pcieG','wp-content/plugins/elementor/core/schemes/typography.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5F͝m1C~rQ,',_binary 'OԵ@k`\\=mc\\m\	%','',0,'?'),(_binary '{K\Ǎ:R,$1\','wp-content/plugins/elementor/core/settings/base/css-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\:Ȑ\]\c',_binary '\/\\\\PS|!7YӞ\\\l\\Kbܵ@','',0,'?'),(_binary 'Vl\\?','wp-content/plugins/elementor/core/settings/base/css-model.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӳ0\y\\GrȄW\',_binary '36_mS\C\LiivQB8\'bL#Y','',0,'?'),(_binary '|W>\\nxʧ\yT{\','wp-content/plugins/elementor/core/settings/base/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TQ^)\*',_binary '⿕(\<k,\;\*\/κ\C\\T\e','',0,'?'),(_binary '=5\\9\','wp-content/plugins/elementor/core/settings/base/model.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kj\v}\?',_binary '?\\\*\.\\v\\lOX$jRÙ\','',0,'?'),(_binary '㇖`\\(k\"\\\','wp-content/plugins/elementor/core/settings/editor-preferences/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\R%\\l\8{G',_binary '+Fhu%ڈa׵:\q\>;e6\8h','',0,'?'),(_binary '\z\Ni\or\#\(','wp-content/plugins/elementor/core/settings/editor-preferences/model.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\R\AQ@\r',_binary '\ߵ}\=.sVGz۳ |Z⭚ܨǸuʷ','',0,'?'),(_binary '\\S\\O6jH\ZR\_\n','wp-content/plugins/elementor/core/settings/general/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\񬉠\'7pq',_binary '\T<S\02/EF\*L\nT\F\ٿ','',0,'?'),(_binary '}r\\3\r<\r\rS9','wp-content/plugins/elementor/core/settings/general/model.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kܱ\\&9h\6\',_binary 'nPd\%ɰUyk\\ūb\\\','',0,'?'),(_binary 'V4=<\8\\X\','wp-content/plugins/elementor/core/settings/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Igou)\',_binary '?\5YA\r(_)\\\v\U,}Pw','',0,'?'),(_binary 'I2e\\灨?D	','wp-content/plugins/elementor/core/settings/page/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SEц\r3\Cb\\0\',_binary '\=\$2\;w\\L\\ow\"^\\2\Z\G\','',0,'?'),(_binary '\\\\8:&v[\_)','wp-content/plugins/elementor/core/settings/page/model.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6̞&\"bL	',_binary '\i5\W@^@\\{B\0{c,ce\˓','',0,'?'),(_binary '$\\%\Z\dϽ','wp-content/plugins/elementor/core/upgrade/custom-tasks-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`BrBYH\\"\Z\r',_binary '0u\0T:\\\\|V\G1ާi\z`','',0,'?'),(_binary '\ISLȲ\q(','wp-content/plugins/elementor/core/upgrade/custom-tasks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GZ*\1B\d',_binary '?@~M9WB)bX1B\f\\X\\}','',0,'?'),(_binary '}<ˈ2\s\r','wp-content/plugins/elementor/core/upgrade/elementor-3-re-migrate-globals.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\[Z\< )\=D',_binary '\-[Y\P\ѯW/ƈg	\\\K!\\v','',0,'?'),(_binary '\%xz:\"yKj0','wp-content/plugins/elementor/core/upgrade/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~wa}m\K*C\',_binary '1\s\\n(\T\\\3\UyW','',0,'?'),(_binary '\"\\\O~\','wp-content/plugins/elementor/core/upgrade/task.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2o)e0\i\.kGP',_binary 'A;\\K~\\\h\'\1^\~^7/','',0,'?'),(_binary 'OPTp}b\rj','wp-content/plugins/elementor/core/upgrade/updater.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ǹ.2b\S@\(',_binary '\<NV\s \[R\!Jrtl\Tf\\','',0,'?'),(_binary '0Ji̒\,8_\\','wp-content/plugins/elementor/core/upgrade/upgrade-utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Yze\a\/',_binary '[\\\\\\ƀ]\\Y\t\V0Ay*','',0,'?'),(_binary '\\Ž\u\ \','wp-content/plugins/elementor/core/upgrade/upgrades.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\|\"5\\d\',_binary '9\\\N\}T6SfPEVv=7yGw','',0,'?'),(_binary '\b\îσϮ>2|}','wp-content/plugins/elementor/core/utils/collection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\\8\\8ηh',_binary '\{f=\-ai=Uӛ/3}\n\M','',0,'?'),(_binary 'ʜ;2-QST+','wp-content/plugins/elementor/core/utils/exceptions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' V@\QTl',_binary '<xt>\\&\\"q\u\o/m6TE\','',0,'?'),(_binary 'NVˮm\D','wp-content/plugins/elementor/core/utils/http.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ؒ>\҄\\1Kc6`',_binary '+\Z\\OΝ\ay#\@#fQ{\T\\\-<','',0,'?'),(_binary 'b\\~E?l','wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-regex.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7VJd7\\s/x0ĄZ~',_binary '\{ŷ\\^۾_	c6D\$\','',0,'?'),(_binary '~+Z\˙6\\[zp','wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-simple-xml.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~WbfilaSnA\.e',_binary 'Ȑi\Zg5^\I\%I[0GP;w\p\P','',0,'?'),(_binary 'lə\\\\R\0\','wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-xml.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӊ\\\Pu&',_binary '\S&8j\ĲǽCѩױ\\','',0,'?'),(_binary 'oDL\J\Uv\\$\','wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\qE/\/\bd',_binary 'SЖ\箝&O\oa?@0,F\F\"+','',0,'?'),(_binary '\\\\ǲE\"T\0O%|','wp-content/plugins/elementor/core/utils/import-export/wp-exporter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P\$Z\`5dϺ',_binary '\'8t\Euf~\cgI/7G\+\^','',0,'?'),(_binary 'e\m\\\rD','wp-content/plugins/elementor/core/utils/import-export/wp-import.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\\>{\))\J',_binary 'acǶ\6\\\[\\\sxKS^$+','',0,'?'),(_binary '+Y47\2ue\','wp-content/plugins/elementor/core/utils/static-collection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~a \\G\t',_binary '6\C^Ο\)\s܉ߖ?','',0,'?'),(_binary 'ю)3C\pLٜ0=','wp-content/plugins/elementor/core/utils/str.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\`\\6y\JO\&h',_binary ',Ɉ\gݴ\̬\?}\\\\9R\P','',0,'?'),(_binary ';\\\-\_ND\\','wp-content/plugins/elementor/core/utils/version.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\\ozMΆ|ǈ\',_binary ':\Z\u~1CQ\"\\Zǥ<\B\	','',0,'?'),(_binary 'D`\\0BQ\z-E','wp-content/plugins/elementor/core/wp-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',hT\hz',_binary '*f\\D(CiCm$\?\|nŰc\\MM','',0,'?'),(_binary '\k/ZVb[jdNK\','wp-content/plugins/elementor/data/base/controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\h)Anp',_binary 'pq?f4޷MY`mEy-Cs@\:W','',0,'?'),(_binary '\"\\,=K\\1x','wp-content/plugins/elementor/data/base/endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rʨ\NcOu~',_binary '\!\}v\'\\0@\D$=KHG5\9a\=-','',0,'?'),(_binary '\H\錄8\f\Vn','wp-content/plugins/elementor/data/base/processor/after.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\A<Qc',_binary 'ux1\aP\FOIG]5p^\\A\'T\\','',0,'?'),(_binary '\&\\cNX.xqZ','wp-content/plugins/elementor/data/base/processor/before.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\\nF@ߛS\M',_binary '\J\\Px\\D|8{Y\ngv','',0,'?'),(_binary '\\\m\]\1','wp-content/plugins/elementor/data/base/processor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\'VC\\\0\',_binary 'BwiY y.\N\]FT\n0\`k\w\o\','',0,'?'),(_binary '1x*ڶ\>`;1.','wp-content/plugins/elementor/data/base/sub-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FJ\X\\ͮM)',_binary '`\+y\\\\֧]fN\\','',0,'?'),(_binary '_\5\Z$Ɵ\r?\','wp-content/plugins/elementor/data/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\n\)2\',_binary 'E\3\\N\`\@\n\*\\\rV 	D','',0,'?'),(_binary ' ~y\\~\I\_2^','wp-content/plugins/elementor/data/v2/base/base-route.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']8HŝR/|py',_binary 'kOhsO=1\Ƅ Ӥ\(I[bL\','',0,'?'),(_binary '@[\?0\c\\wǶ[','wp-content/plugins/elementor/data/v2/base/controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\'R\x! OC=',_binary '8bdGӀv\@xsyS\f\t','',0,'?'),(_binary '{Q.\0n\eϲ\[\','wp-content/plugins/elementor/data/v2/base/endpoint/index/all-children.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;|3\č',_binary '1\7N6 cxi\\f (&lt','',0,'?'),(_binary 'H\ZIj\"\r\"+[A','wp-content/plugins/elementor/data/v2/base/endpoint/index/sub-index-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nV؜\sp/\\w',_binary '9\xK&e\\0J!>]v\oZ?[y͗b|\0\','',0,'?'),(_binary '鶏T\"B\\\\','wp-content/plugins/elementor/data/v2/base/endpoint/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\t\\I',_binary ')6F,\\n&\\\Z\\\e','',0,'?'),(_binary '˓:mǦ\Ŧv','wp-content/plugins/elementor/data/v2/base/endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\pNjGVa\٢\\|',_binary 'w\	t( \"\$\t\\\\#]@y','',0,'?'),(_binary '\\\^\x.w\a$\*','wp-content/plugins/elementor/data/v2/base/exceptions/data-exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Uy\\̥\H\-',_binary '>y,ʣ\\;\)hK\\9d_u?+,','',0,'?'),(_binary '\ë\xO\ F\\\\','wp-content/plugins/elementor/data/v2/base/exceptions/error-404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T/\+X<H3Y/',_binary 'U\ȿlӛ\My\o\XӼ_us\'\"P','',0,'?'),(_binary 'PE\\J','wp-content/plugins/elementor/data/v2/base/exceptions/error-500.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1򄙽6\Z',_binary 'o&/\ў!}:bL\Z\J\','',0,'?'),(_binary '1\`!ߧA5\6','wp-content/plugins/elementor/data/v2/base/exceptions/wp-error-exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X­O\͚',_binary 'g\\ӷRFF.0Lo\7nPƪ\\1w','',0,'?'),(_binary '`цH.\g)I\8','wp-content/plugins/elementor/data/v2/base/processor/after.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(nq~\Z\F2x',_binary '4\\\SO\R\'ֻD\~(궉\$:\','',0,'?'),(_binary 'c!P=Pv$','wp-content/plugins/elementor/data/v2/base/processor/before.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*.e!Ҙg',_binary 'J\ E\\R//\\r?q\[lX','',0,'?'),(_binary '\s\x\\\6\+','wp-content/plugins/elementor/data/v2/base/processor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w\0\n@s',_binary '&BR?\}\\0]B/|\~j\8\','',0,'?'),(_binary '1C6\l?W\','wp-content/plugins/elementor/data/v2/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n4LoŁ_)ӝ',_binary '/vH\@!YΜ}\A%-\','',0,'?'),(_binary 'dC˟ˀ2uzk','wp-content/plugins/elementor/elementor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TY(Y8\	',_binary '{u$8BI#5A\KiOCR\s`Mۦ\Z\','',0,'?'),(_binary '\\n\y\x\\h\\G','wp-content/plugins/elementor/includes/admin-templates/beta-tester.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xʄ\e]\*R\(',_binary '\r򞤇B#\3_gl\\\ҰlFE\\\','',0,'?'),(_binary '+M66\0Cg؍%\"','wp-content/plugins/elementor/includes/admin-templates/new-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M۩ŋ\-_g=\\r\\',_binary '\H}1m\\\\D\\\6$','',0,'?'),(_binary 'oR\S\I\rVʽƘe','wp-content/plugins/elementor/includes/api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\Ѹ\8\|00',_binary 'r\\"\0;%%\<n\2΢ԙ','',0,'?'),(_binary 'VQ;\'\\~\\n\','wp-content/plugins/elementor/includes/autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\\1tr:<8',_binary 'lM焠*	UW+\7?\\\F\"H#','',0,'?'),(_binary '\\\Va	\	6O','wp-content/plugins/elementor/includes/base/controls-stack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\k\hy\j՝',_binary 'S\y 1\)\ݿMvi2\E(e\\xN(','',0,'?'),(_binary '\QnB2Zl\䭑y','wp-content/plugins/elementor/includes/base/element-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ux)\YD\\%OmA',_binary '!\nY\\\\J\]\r4A|\Z5\mL\;\\9\\','',0,'?'),(_binary '\n\;E t\09\','wp-content/plugins/elementor/includes/base/skin-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q(p⢯PJ<S[+$',_binary 'c+G\\6I}j\\6\Dt12%Q\','',0,'?'),(_binary '.8y4@\n\\B(|','wp-content/plugins/elementor/includes/base/sub-controls-stack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r{ a!ԇ{\Z',_binary 'Ol~׮l\\&]\\4<\1X&R\1','',0,'?'),(_binary 'I\2SB)9~\','wp-content/plugins/elementor/includes/base/widget-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u;\Z셠\',_binary '\H\\\\\/\\K\p2\7Ԗ\\\c','',0,'?'),(_binary 'MG;t\V9','wp-content/plugins/elementor/includes/beta-testers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʸ\B\" \',_binary '\QjrX\\\\\nl\"J׌Ò\\\l\9','',0,'?'),(_binary '?e.\EJ\g\g\\FN','wp-content/plugins/elementor/includes/compatibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[m&\|IJc\0`\\',_binary '`\j\\ZQtN|?Y\{:|#\*Lv','',0,'?'),(_binary 'zϒ\B\\\\Z\','wp-content/plugins/elementor/includes/conditions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!U\Z]o=+[xJOs',_binary '\H?\`20N1\rh\":\','',0,'?'),(_binary 'gxF6U?g\þ','wp-content/plugins/elementor/includes/controls/animation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\\\mob{',_binary 'Mֽ:\r/\x.QN\Pt\[:L\\\','',0,'?'),(_binary '\U,\\Y\䶼0','wp-content/plugins/elementor/includes/controls/base-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\8C\7\nQD\=',_binary '4N\?Z\z@\\0[i$UV\2\c\Ӡ8','',0,'?'),(_binary 'd\B\Úc\ն','wp-content/plugins/elementor/includes/controls/base-icon-font.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f\\\ղ\\\݆',_binary '9\4$q\n4\\%\9\\_Y\\0\','',0,'?'),(_binary 'I@<T\x)7\Z','wp-content/plugins/elementor/includes/controls/base-multiple.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~fddU\}E',_binary '4yw\\F\|;1\\dA\G+.','',0,'?'),(_binary '@@=	G?7\','wp-content/plugins/elementor/includes/controls/base-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\F\LR{Ȓ!\',_binary '\ه7۩s։\\=\c%*\'','',0,'?'),(_binary 'є\bl/\\\@\N]','wp-content/plugins/elementor/includes/controls/base-units.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\`{7.9',_binary 'E\l9\S^ ֛( \nNbH\G}`','',0,'?'),(_binary 'K 7\*<̴\2$Ti','wp-content/plugins/elementor/includes/controls/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\x]l[s jF',_binary ':Չ+\n\\y!\c)\{W˘)\*\','',0,'?'),(_binary ')\rAUrM\\\! \','wp-content/plugins/elementor/includes/controls/box-shadow.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E$D\92P^0W\',_binary 'Fv\\\qąPY3\κ\\\\\\','',0,'?'),(_binary '>z2	ې<\\','wp-content/plugins/elementor/includes/controls/button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\\Y\\p\\M\ԓ',_binary '>X7\\%= r\\\\\G\LϞ\\X','',0,'?'),(_binary '#\nd\e&+Rs\','wp-content/plugins/elementor/includes/controls/choose.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7d\"~W-\zś%',_binary 'P\Zޢ9j\͈z\Xx\MZV~\\\:\\','',0,'?'),(_binary '\VV\F=/\Q(q\'\3','wp-content/plugins/elementor/includes/controls/code.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\#sߎ\u&k',_binary '\\A\F\ɺy\$?<q\','',0,'?'),(_binary '7\]s','wp-content/plugins/elementor/includes/controls/color.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\DE7>i\0σ\6!',_binary '&xM\G\\&8\V\+R.\qW\&\H','',0,'?'),(_binary '3v<	t`\C9Ɵ\','wp-content/plugins/elementor/includes/controls/date-time.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\|5T6t˜H',_binary 'y\\6\\p\K\-UG\ԏ\(\2L<','',0,'?'),(_binary '\{\Js\}sG`','wp-content/plugins/elementor/includes/controls/deprecated-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']$0cܾFYÙ',_binary 'ON\iI}\\ZK?\M\g{\\','',0,'?'),(_binary 'lSlaPkF,(F','wp-content/plugins/elementor/includes/controls/dimensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Oh\\pd쎐\fy',_binary '\1ѮogUQ\lFA>\}mFT\^','',0,'?'),(_binary '\m\rw3 \U','wp-content/plugins/elementor/includes/controls/divider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tމ\B,\E?\!\np',_binary '~\LGu)ʂ6|\\:m\\~\v\','',0,'?'),(_binary 'J#\t\W}$','wp-content/plugins/elementor/includes/controls/exit-animation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z /)!23Mч%4',_binary 'N\zocD{	)(X;\g\\','',0,'?'),(_binary '\\y+IǢ\Ѡ,@S','wp-content/plugins/elementor/includes/controls/font.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\\]rYINs\r\{',_binary 'G:5;\n\)\a\@ K\\1n<E\','',0,'?'),(_binary 'w\\,	1u\\/v','wp-content/plugins/elementor/includes/controls/gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\,hb@u\\\',_binary '\/r\-\c\F6\\\~>\T~,','',0,'?'),(_binary 'D\Lu\3\axB?','wp-content/plugins/elementor/includes/controls/groups/background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`EQgz@n\\B-\',_binary '΂\\	ݶ#zx=c\%*\a`\\\j','',0,'?'),(_binary '\pG\-G\','wp-content/plugins/elementor/includes/controls/groups/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\y\[zNu\0t\',_binary 'D\\\6^͵}\im\Mt3','',0,'?'),(_binary '\b{q;|2\\(\','wp-content/plugins/elementor/includes/controls/groups/border.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r\\0\-@ͨ',_binary 'ˊ-\c׸\\\(%\Q5T\<E?j','',0,'?'),(_binary 'kQ\Kү|\','wp-content/plugins/elementor/includes/controls/groups/box-shadow.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G_	dBQK\*^O',_binary 'Ou\ƶDXU˼\\^ݲ$K::>','',0,'?'),(_binary 'Ɂ\\\r\~\"!\j\','wp-content/plugins/elementor/includes/controls/groups/css-filter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*\{GZ\ol',_binary '*)\ 9\J\AP\\vt\Z\ʘL\'\r)^6','',0,'?'),(_binary '\4\\\\"^|\Y','wp-content/plugins/elementor/includes/controls/groups/flex-container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0Ʋ\+Q\\X',_binary ']$׺m\\}\3j\V\0\\n\\!U','',0,'?'),(_binary 'r7>F	s\"\)\','wp-content/plugins/elementor/includes/controls/groups/flex-item.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lތ)$qrA',_binary 'W\Z	d\\|h\˰!\Ϟ\gA\hΎ\;','',0,'?'),(_binary '0\\=\o\;','wp-content/plugins/elementor/includes/controls/groups/image-size.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_[\G\\bN\\\j',_binary '\vɯo+R\	Dk#Zry\.O','',0,'?'),(_binary '@.m<\\?\_\h','wp-content/plugins/elementor/includes/controls/groups/text-shadow.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\Wk\\F7',_binary '\{\\A(҉6MLqKU#e4\Srv\|','',0,'?'),(_binary '[ޥ\\.c8)Wn#\','wp-content/plugins/elementor/includes/controls/groups/text-stroke.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sh\j?[9',_binary '_OWH\\^o\\\xPr\'˸','',0,'?'),(_binary '\5\d>\\"h\Q\','wp-content/plugins/elementor/includes/controls/groups/typography.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Z\1Fl<\',_binary 'o	x\Z\\a2t\Ս\\\C(}®','',0,'?'),(_binary '\\"\Zca\<\*','wp-content/plugins/elementor/includes/controls/heading.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̓+@\\\>\',_binary '\FB\Z^|P\'Z2y}\\\\	\','',0,'?'),(_binary 'U6P\\\f\x\\','wp-content/plugins/elementor/includes/controls/hidden.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z?Ur.b\\	',_binary '1\$!Z!\9e\\{An\\ҍHë','',0,'?'),(_binary '\T{\2\Z\Z8EF','wp-content/plugins/elementor/includes/controls/hover-animation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9YR\L\\"1\\܎\n',_binary 'Ͽ=ص\u	GD\R~{B\?u\!','',0,'?'),(_binary 'AzT,V\z\R\!cg\\','wp-content/plugins/elementor/includes/controls/icon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)9?\vA\\',_binary '\g\ko\~g$\&h\rsXFOA˴,','',0,'?'),(_binary '\\'sV̻W	\g','wp-content/plugins/elementor/includes/controls/icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z;\ f<	\\V',_binary '=-WW\\\/wq\Dدu8\gk\K@ِ\','',0,'?'),(_binary '(,b\-e\0}9y','wp-content/plugins/elementor/includes/controls/image-dimensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\\>\\%K',_binary '@\k\d\\\\\\\\\\Kh;0f y','',0,'?'),(_binary '񟽀[uN`?\ֻ','wp-content/plugins/elementor/includes/controls/media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AtZ\KX]',_binary 'f(\AB\0`\\'\\Z\\(\n}\FG*','',0,'?'),(_binary '\XCl\g','wp-content/plugins/elementor/includes/controls/number.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\\77\)m̈́',_binary 'X\\"o\'0\\.e\I0ǐ`kq\;dGϣ2\n7','',0,'?'),(_binary '\LtGp\\i	w','wp-content/plugins/elementor/includes/controls/order.php',0,_binary 'm\F&p1y&Rq\',_binary 'm\F&p1y&Rq\',_binary '3 \1Dtr\\Lj!\Z\*\U`D','',0,'?'),(_binary '+x9:H\0CX{)y','wp-content/plugins/elementor/includes/controls/popover-toggle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W@(\F1GBM`',_binary 'A\?3&fL\p8&\\\8#\8\\','',0,'?'),(_binary 'wI\S\U\8+$','wp-content/plugins/elementor/includes/controls/raw-html.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\T\\j$m',_binary '\/oyvj\|Y6J\;r`_\\\]\','',0,'?'),(_binary ',\\M\\\p;1','wp-content/plugins/elementor/includes/controls/repeater.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"][צi7ƞ',_binary 'Vy\a\3\hrETY-\\kurj^\~/ `','',0,'?'),(_binary '\u\*\!\\r','wp-content/plugins/elementor/includes/controls/section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0 \Ҥb\#zI',_binary '\H\KZ\0\\K\\\"l\5\0','',0,'?'),(_binary '4ʍ[ƠC\Z\Q','wp-content/plugins/elementor/includes/controls/select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\qT.F~\\\}',_binary 'cr\xF9>ҨVߘ\\X\'\','',0,'?'),(_binary '0\\\-\\\>$U','wp-content/plugins/elementor/includes/controls/select2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C3ש\\cp\0',_binary '.->\P0z\9\\H\\Z%Q	\\K(','',0,'?'),(_binary '\\\E\'\Hg\C\\\','wp-content/plugins/elementor/includes/controls/slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nNU\\\SAx',_binary 'CD5\gg>Yd\\\jznג\řkhxW#','',0,'?'),(_binary 'G \j#_I','wp-content/plugins/elementor/includes/controls/structure.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ޫ\&6X1\jn',_binary '\Vz\\.ZZ\*Yum>\'X(\ ','',0,'?'),(_binary 'K\y\]!\YeD\','wp-content/plugins/elementor/includes/controls/switcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!\9G9z/C',_binary 'a\L\nTQ+7˫\\.\3\dߞ\Z\4X\Q','',0,'?'),(_binary '\(\\c`\\,\m','wp-content/plugins/elementor/includes/controls/tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\ZI\{F\;E',_binary '\^\\+U\\\\gX\{9\U\\','',0,'?'),(_binary 'MqJ;T0}\\\ۇ','wp-content/plugins/elementor/includes/controls/tabs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`*w\qa1\',_binary ',G\.\|f\K/\\5/Fu\','',0,'?'),(_binary '\0Ufdw(y\'\','wp-content/plugins/elementor/includes/controls/text-shadow.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\.\',_binary '\q^\ti\`\.j4ܶ%\%\<4','',0,'?'),(_binary 'sji[\+\\','wp-content/plugins/elementor/includes/controls/text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\8\\\O\&}\',_binary '	\\IKq\L\l:\\Mp\\\','',0,'?'),(_binary 'q\;.\,x2VH\e','wp-content/plugins/elementor/includes/controls/textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xC\\n\m\"E\0\\',_binary '\VX4B\\\k\$.\\V\8-$Y','',0,'?'),(_binary '\ba\l\4拲N\','wp-content/plugins/elementor/includes/controls/url.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\FZo7ܧ\vc\c',_binary '\\B\&\6${q\a\','',0,'?'),(_binary '\")\\(@Wt','wp-content/plugins/elementor/includes/controls/wp-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j`YJ3\QR',_binary '\&\L\o\J\e⯅=\|\nn\','',0,'?'),(_binary '\\?Ψc\<Vb`','wp-content/plugins/elementor/includes/controls/wysiwyg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F(\,}[3.}\',_binary '.#Aj\nrBgiW_?xX+I\\:\','',0,'?'),(_binary 'xw[oeX\:','wp-content/plugins/elementor/includes/db.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i(7w\,#\\\\[',_binary ':7\]]b\Z\XkZ\>9z\G4Y','',0,'?'),(_binary '6 \@A\(n','wp-content/plugins/elementor/includes/debug/debug-reporter.php',0,_binary '_00\\Q\=\',_binary '_00\\Q\=\',_binary 'G\7\!l\s\\\=Ul\ĘmlP\{[','',0,'?'),(_binary '\!\&L\\|','wp-content/plugins/elementor/includes/debug/debug.php',0,_binary 'X&\\A\\|\|\=',_binary 'X&\\A\\|\|\=',_binary '\\"utt\~<Fޏ$\[P~\Y\','',0,'?'),(_binary '\n,yЉʸ\#','wp-content/plugins/elementor/includes/editor-templates/editor-wrapper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+Y\C{\\\Ӥ',_binary 'mh{ώa|\[\\\\kHE\AweK','',0,'?'),(_binary '+,5[\!vx','wp-content/plugins/elementor/includes/editor-templates/global.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L\r\7u]eNR',_binary '$w\	K6&\'Sx\\\\!\i\\\','',0,'?'),(_binary '/\\j\!~B`\*|','wp-content/plugins/elementor/includes/editor-templates/hotkeys.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\lwZ	\\Z\͝ ',_binary '@_,?d\\>?O?o[	R[[\\','',0,'?'),(_binary 'f\\k;LmcҾx1','wp-content/plugins/elementor/includes/editor-templates/library-layout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\֍-Om\BN\@',_binary 'g\\i\ghR3Zz:!\I\nU','',0,'?'),(_binary 'K䧿\11!M','wp-content/plugins/elementor/includes/editor-templates/navigator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\3ך\a6V8jo',_binary '/\?!\\M#\͚\Z^\{0vc\\c','',0,'?'),(_binary '\s2\034$k','wp-content/plugins/elementor/includes/editor-templates/panel-elements.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\-\\\+6u\,I\',_binary '\\䁾K/!\emo\'w\";\\r4B.4I.','',0,'?'),(_binary 'm%pi\ƗY\Z','wp-content/plugins/elementor/includes/editor-templates/panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\\dI\+',_binary '\\rt|/\Y^\?\\e\\Z7E~','',0,'?'),(_binary '畲*	z,l8؁','wp-content/plugins/elementor/includes/editor-templates/repeater.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2L\\,\\-{\\',_binary 'OEܷ_²\:xo{Ւ%f\Q\\+\','',0,'?'),(_binary ' m.\\0[ϫ','wp-content/plugins/elementor/includes/editor-templates/responsive-bar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\\0T]J\|fԁw\',_binary 'r\%nn\\\\Tu8$7;5\p\','',0,'?'),(_binary '\:\C\"1\\\*','wp-content/plugins/elementor/includes/editor-templates/templates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\F\\\\\fE',_binary '=b>,\\\$}\\IQp\(\\g','',0,'?'),(_binary '/[i\o1&Z','wp-content/plugins/elementor/includes/editor.php',0,_binary '\\d!!\"\\\\\',_binary '\\d!!\"\\\\\',_binary '\Lk\E3q\_ԭ\\Pmt','',0,'?'),(_binary 'xf\V\{F\̕*\','wp-content/plugins/elementor/includes/elements/column.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Hr7=;H?V\',_binary 'j2;k\/ᔭ=\4rѣ7s','',0,'?'),(_binary 'om\\\p\rS','wp-content/plugins/elementor/includes/elements/container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yEW\r\'Jc\',_binary '=f6}b/5Fz-M\\h!\n{\b','',0,'?'),(_binary '\rqw\Aț','wp-content/plugins/elementor/includes/elements/repeater.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\2Rܜ\rPaW2A',_binary 'P\GTkj\j{\7\*<\XEܐ\','',0,'?'),(_binary '\n\Ic?\0nvH\','wp-content/plugins/elementor/includes/elements/section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$g+\\TL:',_binary '1[\\"l\\6k<E\nHɭ','',0,'?'),(_binary 'Z3\X*Sd\\0\','wp-content/plugins/elementor/includes/embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#hR+\<O(',_binary 'ȭz\V@\XvO\(\o\В)}۸\Fg\k','',0,'?'),(_binary '\\\X\\\M>)','wp-content/plugins/elementor/includes/fonts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\0Tg\.\\kJ',_binary '\ăQm`$謐k\\XqS2\wi2:','',0,'?'),(_binary '=\\\by|/\,\r\','wp-content/plugins/elementor/includes/frontend.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<hyH\µ\q\Pa',_binary 'c\.\i\\\{\8\fr\\','',0,'?'),(_binary '\\7]\Z\@,\\/T','wp-content/plugins/elementor/includes/heartbeat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C$UFu\\n\',_binary 'Ѵi\:\\W~%n\'ACEp4z\гP\b\','',0,'?'),(_binary '\E\\e1qp','wp-content/plugins/elementor/includes/interfaces/group-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\~iS\B!VZ',_binary '\\\\Z;+\ùf\yh\\\','',0,'?'),(_binary '@|\\\<4Oc]_','wp-content/plugins/elementor/includes/interfaces/scheme.php',0,_binary 'Ҟ\=	\"\\\\\',_binary 'Ҟ\=	\"\\\\\',_binary '\\jˤ\\xCѤn+:/\\mLNho\','',0,'?'),(_binary 'BYD\?\u9!C,','wp-content/plugins/elementor/includes/libraries/bfi-thumb/bfi-thumb.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(u=\,i,\',_binary 'CR\\\\\\>ɥ9,','',0,'?'),(_binary 'ab<\\\` ','wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-async-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|\u\\F#\"{',_binary '\(\P\@\"!{\A){h]ĖЦ\'y\	7X','',0,'?'),(_binary 'йB0Ч3\p@R܍','wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-background-process.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T;\\\๫zG',_binary '84C\5-\.I@.\2\r$`0̌','',0,'?'),(_binary 'c&&\\,iLm\\','wp-content/plugins/elementor/includes/maintenance-mode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\B\p&G\',_binary '?\t`\\iI|J-\Ӹ9s\i\','',0,'?'),(_binary 'E	\\b;(?~w','wp-content/plugins/elementor/includes/maintenance.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\Mh۔LR\\',_binary ']~<^G/z\n\A4t\\\\Ahڔ','',0,'?'),(_binary 'O\th`\0T\bg\'','wp-content/plugins/elementor/includes/managers/controls.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<q-\n\\\\0\\',_binary '_:\$\P6@]z\\Tӑ\sB\:oo','',0,'?'),(_binary 'VXZ\\Ӿ\]@','wp-content/plugins/elementor/includes/managers/elements.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p88\"wZ',_binary 's\B\(Z쥻\y\\7\J̓a\@','',0,'?'),(_binary '\Z\H\cr5\L','wp-content/plugins/elementor/includes/managers/icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	xR\V\-^\J\'',_binary 'ƕ\f0\F t^g_$7	\d8&.','',0,'?'),(_binary '	\;6]Z\I\ab\','wp-content/plugins/elementor/includes/managers/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>\\\/\މ',_binary '\\뛓R~mg\+P5P\0|c\\\\m','',0,'?'),(_binary '5b?en:>,','wp-content/plugins/elementor/includes/managers/schemes.php',0,_binary '\\	r\7ڡ\Z}Q\L',_binary '\\	r\7ڡ\Z}Q\L',_binary 'YgMr\X\3\@֛\CotyY\','',0,'?'),(_binary 'A[=$\(0y\\\','wp-content/plugins/elementor/includes/managers/skins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\&\k\#䃉`',_binary '\\0QUa\oKgv\ \E;9\~\"j+Z','',0,'?'),(_binary '_,\\gc\/\','wp-content/plugins/elementor/includes/managers/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '΋-[Fn\',_binary 'ϓr4\zErx\\}KENY\HP;\','',0,'?'),(_binary '\OzV2\q\{\','wp-content/plugins/elementor/includes/managers/wordpress-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\cA\\\/\[\',_binary '\\,i\\\sQ\O\\/,<Y0\0^L~O','',0,'?'),(_binary '\A>\c\r\\7UعK:','wp-content/plugins/elementor/includes/plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '阹xq\bqY\=',_binary '&\lMO)u\\\\d\PV-\T\0\','',0,'?'),(_binary '\Zc١\:SI,T@O','wp-content/plugins/elementor/includes/preview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'$Et{J\y$',_binary '#\@\La\\%d]\d)\ZR~\Q\R\\\','',0,'?'),(_binary '\\3\(92\','wp-content/plugins/elementor/includes/rollback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\n_D\0[B\\nU',_binary 'q?\v\wa\Z	_+^X\rv\','',0,'?'),(_binary '\%\\c\\\u','wp-content/plugins/elementor/includes/schemes/base.php',0,_binary 'QR}\\l]HV\)',_binary 'QR}\\l]HV\)',_binary '\&ي\9`\\\"\p\\*\\\Ts\.I\','',0,'?'),(_binary 'e֧\rn\JOv','wp-content/plugins/elementor/includes/schemes/color-picker.php',0,_binary '\Wy2\\g\[\']',_binary '\Wy2\\g\[\']',_binary ':⍚X5\-*79\r','',0,'?'),(_binary 'fƬL=\rLOGm}','wp-content/plugins/elementor/includes/schemes/color.php',0,_binary 'Os\\\8˸e \',_binary 'Os\\\8˸e \',_binary 'y\[\!c2\vE\!0)s\>','',0,'?'),(_binary '\9*0\\?DW','wp-content/plugins/elementor/includes/schemes/typography.php',0,_binary 'gz\\\q',_binary 'gz\\\q',_binary '/tTd\\B\g)\\	\*談','',0,'?'),(_binary '\5Ҥ\Z\\\\','wp-content/plugins/elementor/includes/settings/controls.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '23\0$\U+\NSU',_binary '֯$\0ȗ\g\\CN\\F\E\\Z\?|Gy{e&I','',0,'?'),(_binary '˥+̚\\\\\','wp-content/plugins/elementor/includes/settings/settings-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&q&3\y',_binary '\\/(\\\03$\@\.ea?AAa','',0,'?'),(_binary '>Vnh\\?i','wp-content/plugins/elementor/includes/settings/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'emF\]:y',_binary '0,dGz\\I}P,\D{\|گ\~\%','',0,'?'),(_binary '\\T\\\\2\\n','wp-content/plugins/elementor/includes/settings/system-info/classes/abstracts/base-reporter.php',0,_binary 'I!g,\r\i\%gP',_binary 'I!g,\r\i\%gP',_binary 'SS҅\C\Z}\%\I\U-\;\1m\ ','',0,'?'),(_binary '\]Nkǋ\)\','wp-content/plugins/elementor/includes/settings/system-info/classes/mu-plugins.php',0,_binary 'C\Yc8\s\"Wi',_binary 'C\Yc8\s\"Wi',_binary '/\\KRI\s?d(\\\R݉\\wN\\\\K','',0,'?'),(_binary 'Ŧ.a!A^','wp-content/plugins/elementor/includes/settings/system-info/classes/network-plugins.php',0,_binary '.B\a킣\l\CP',_binary '.B\a킣\l\CP',_binary '>\Ξ\g\\\bѪ{W\(O*\J&','',0,'?'),(_binary '\'k\ʦjo\\\vr}','wp-content/plugins/elementor/includes/settings/system-info/classes/plugins.php',0,_binary '\\\V?R\\\',_binary '\\\V?R\\\',_binary 'w5/I\r7#68G/\\0iў|u?GH','',0,'?'),(_binary '\[\\o90.[\','wp-content/plugins/elementor/includes/settings/system-info/classes/server.php',0,_binary '+G*&/?m&\"wwY',_binary '+G*&/?m&\"wwY',_binary '\\\\0 r\\\-\\\r\]p\0w\\\','',0,'?'),(_binary '\\\\nd]4','wp-content/plugins/elementor/includes/settings/system-info/classes/theme.php',0,_binary '25\n})Fp	',_binary '25\n})Fp	',_binary '}ejg\HU폷\-O\t\}\\\','',0,'?'),(_binary ');.\V\\!94z','wp-content/plugins/elementor/includes/settings/system-info/classes/user.php',0,_binary '\0\]uYv\	',_binary '\0\]uYv\	',_binary '#Ns\'C\'~\U@d0\\ѻ\Z\b','',0,'?'),(_binary '\+@\Z}\wfu:\','wp-content/plugins/elementor/includes/settings/system-info/classes/wordpress.php',0,_binary '۸1\_TQ\̔\ն',_binary '۸1\_TQ\̔\ն',_binary 'U]+~\50k[D.\\=<&\ѣWO','',0,'?'),(_binary '|\ݟ\\TtOw\e','wp-content/plugins/elementor/includes/settings/system-info/helpers/model-helper.php',0,_binary 'Y\n\e&f,1',_binary 'Y\n\e&f,1',_binary '\05(pJ	\\4WGj\z!\?\ߩ\xVO','',0,'?'),(_binary '^rnIq\8\\r','wp-content/plugins/elementor/includes/settings/system-info/main.php',0,_binary '\rIY4\"!o]VZ',_binary '\rIY4\"!o]VZ',_binary 'x`\\MV3\z\!}<}ZTl\Z\&,','',0,'?'),(_binary '\\\\&I\E\','wp-content/plugins/elementor/includes/settings/system-info/templates/html.php',0,_binary '7Pn\fB	\C\\\',_binary '7Pn\fB	\C\\\',_binary '\Z6\\6\"z\\΅T\\Zzm\k@','',0,'?'),(_binary '܂7@vT	}a\֯','wp-content/plugins/elementor/includes/settings/system-info/templates/raw.php',0,_binary '\\~\*Jwe\',_binary '\\~\*Jwe\',_binary '\"Gq\\vɡV\s~>dϫ8','',0,'?'),(_binary 'V\'P\+\}\rа|}','wp-content/plugins/elementor/includes/settings/tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/6I\\t',_binary 'U\\\QzQ_\\r@|Rd\S{\I','',0,'?'),(_binary 'u{\]P\"%\ԁ8[','wp-content/plugins/elementor/includes/settings/validations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\[\\\rqZ\+',_binary '\*lb\\oZ`E\\\c;\ }n\/','',0,'?'),(_binary 'ZuBIY\\\','wp-content/plugins/elementor/includes/shapes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wL\:\fE\R',_binary 'W\\\yuG\>H*F\05ڿ,\D ~6\','',0,'?'),(_binary 'F?;Le\\','wp-content/plugins/elementor/includes/stylesheet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \B\bLR0h*ʧ6',_binary '\m\\X\f\\A[#a&*\HL)\','',0,'?'),(_binary 'U\SAJc\lw\','wp-content/plugins/elementor/includes/template-library/classes/class-import-images.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',UPQ+ ,ϓ\"\',_binary '\+\\Ӏ\0\DO\\\ޢw6&\'h%\','',0,'?'),(_binary '\'6}f\$\N^^','wp-content/plugins/elementor/includes/template-library/data/controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\0O\-\\q\\',_binary 'w\0\C2\S_L]\u\0`Q\rbA.','',0,'?'),(_binary '\2:.\Gޤ8e\','wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XMޗ\\Z8Y)D',_binary 'OڬDd\\,\5}\\۩S5\'c\r','',0,'?'),(_binary 'Z-2K\n:','wp-content/plugins/elementor/includes/template-library/manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\7\C',_binary '1\\\A\\\{#%RʡjK]\\K','',0,'?'),(_binary ']`Za\\\5ԋ','wp-content/plugins/elementor/includes/template-library/sources/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A$T2\`\\4',_binary 'CA\s;\\\"kZ!r\<	\','',0,'?'),(_binary 'yrqhd.mK(@~E','wp-content/plugins/elementor/includes/template-library/sources/local.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\\9\\\\\\ݠO',_binary 'X1\h\0p~\r\U\'{(\,\\','',0,'?'),(_binary '\\[d\K߳\\','wp-content/plugins/elementor/includes/template-library/sources/remote.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\15c\A|et<\r',_binary 'p\W@\){͢\6.10\k]\\%\n+','',0,'?'),(_binary ';\8^\r<CUVD','wp-content/plugins/elementor/includes/tracker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\m/\K\Q\Gm~W2',_binary '$I5I\\;$\\ZIu\\i','',0,'?'),(_binary '\T!\\>\?X','wp-content/plugins/elementor/includes/upgrades.php',0,_binary '\\\gN2fl\"ا*',_binary '\\\gN2fl\"ا*',_binary '\\e.q)q7\\0\\ 1k\G9*M\n','',0,'?'),(_binary 'A \@Ϊ~X\0\2','wp-content/plugins/elementor/includes/user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\W)?8Dl!\\=yŦ',_binary 'q7\<F].\/9\2lr,~,','',0,'?'),(_binary '\Mֻ\\ZV`ͭ\\6','wp-content/plugins/elementor/includes/utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*˳d\Zw&',_binary 'EZ\RQ:\BF\\\\\rLi;\	','',0,'?'),(_binary 'K\\5\$rE\p\','wp-content/plugins/elementor/includes/widgets/accordion.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$o,\1\!	<',_binary '\]?6\d\\<1)X)_C\^s','',0,'?'),(_binary 'XQ-\\S\r\]\\','wp-content/plugins/elementor/includes/widgets/alert.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\I:Mha<4s',_binary '\\񚗝\(^k\\li\\'Y\C%A\\\','',0,'?'),(_binary 'D\C tI#\\','wp-content/plugins/elementor/includes/widgets/audio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\cu9@#Wճ',_binary '\\r7Ɲ\i\a\%4̭73\Dp\\\'q','',0,'?'),(_binary '$\Ztz\\tWm','wp-content/plugins/elementor/includes/widgets/button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ď\_;!#\',_binary '\&#\\\\\ئ\\Z\z(t_\q6d','',0,'?'),(_binary '\(\"/󝜈fa','wp-content/plugins/elementor/includes/widgets/common.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4\noQsE]\.\',_binary 'O(r4H\\\jܹ\K|\ktE9J','',0,'?'),(_binary '\ZMpx\\և\J','wp-content/plugins/elementor/includes/widgets/counter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\q@ze\Irr9',_binary 'E\\\A\PSk0.l\Z\\i','',0,'?'),(_binary '\\\\\Bt','wp-content/plugins/elementor/includes/widgets/divider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\\\\L\!oP^\"',_binary '\\P\7\!nБ{\\V/\\lIKK?','',0,'?'),(_binary '\/\ZGa\n\0E`','wp-content/plugins/elementor/includes/widgets/google-maps.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q곥!w\;\\3u\',_binary '\r\!uQNuƟ&\"Q61hz\8','',0,'?'),(_binary '\\Z^-5A\By','wp-content/plugins/elementor/includes/widgets/heading.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]U\}\.\\'	',_binary '\\=\\3t?\\\`&#MgxPQ[I','',0,'?'),(_binary '\\<\7dt5:\'\','wp-content/plugins/elementor/includes/widgets/html.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0dAo\\\{4\\0',_binary '\*\\w\:BC\\KJK_\\\1\\ж','',0,'?'),(_binary '\\\adT@.','wp-content/plugins/elementor/includes/widgets/icon-box.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~^\gT\絽ʊ,',_binary '?6F\0ua\r\1I\;8\'B\\','',0,'?'),(_binary '5\\01Τ<\}Mƹ\"','wp-content/plugins/elementor/includes/widgets/icon-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w\md2U-\',_binary '\}\|[\DԥB\\~d\\Q\΋\\\ܢ<','',0,'?'),(_binary 'Y\x^\z\,U\','wp-content/plugins/elementor/includes/widgets/icon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.:]\\\u܈C',_binary '	Q\\QN?\R&*\\q[3ha\','',0,'?'),(_binary '\F\\\$Ⱦ]\0\2','wp-content/plugins/elementor/includes/widgets/image-box.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\!x@	\',_binary 'Y\Z9\E\Zӂ\"\\\	\RCs+l\','',0,'?'),(_binary '_\ͭ3ҟ\?\','wp-content/plugins/elementor/includes/widgets/image-carousel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zIK\T\<h!@m',_binary 'O	\!w1+ސS\\	R\14\"Id$?\','',0,'?'),(_binary 'y\b\hU^a\ɚ','wp-content/plugins/elementor/includes/widgets/image-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\'s\+s8\\\5y9',_binary '\ۋ\BO;O>l0\Κ.Ӷx(0#','',0,'?'),(_binary '\\L`\R\`ו*','wp-content/plugins/elementor/includes/widgets/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dd6\'[\\\H\J	',_binary 'N6k\\\H.r7-]\-D\tg㖇\','',0,'?'),(_binary '\pR\\\\xB','wp-content/plugins/elementor/includes/widgets/inner-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K\\-َ\'d',_binary 'Q!zTPŵϏjj\=TG\D\0\W%Q','',0,'?'),(_binary 'g{\bq\\\w\','wp-content/plugins/elementor/includes/widgets/menu-anchor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\fE?꟥\\',_binary 'aWX\wz	Ma0Q\	\\Q5\ ē','',0,'?'),(_binary '\M\Z\Q','wp-content/plugins/elementor/includes/widgets/progress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uC{)Sg4\',_binary '\.u\T\i2U,\(֐\W׎I>\','',0,'?'),(_binary '@js\x%\@\"','wp-content/plugins/elementor/includes/widgets/read-more.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\M\. A\\{',_binary '3u\\5\Bc\yK\\"&w\','',0,'?'),(_binary '\Z\2\n\\)ULE','wp-content/plugins/elementor/includes/widgets/shortcode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XJٮ(a\\װE;',_binary '\s\\\u;|x5y\\42:[P\R\\=','',0,'?'),(_binary '\H0o>\4\C^N','wp-content/plugins/elementor/includes/widgets/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`ӵ;d{HœJ',_binary '\0yk51\Õ50\ ͻ\/tI\$S\','',0,'?'),(_binary '\\\%x!J?\2','wp-content/plugins/elementor/includes/widgets/social-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ŏl$դ&U!',_binary 'b7TW2l\'pr/\`MAPN\','',0,'?'),(_binary '\D\eq\\fK.','wp-content/plugins/elementor/includes/widgets/spacer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\\48$',_binary '%\&\\)_],X<\]L\+\\"i\"','',0,'?'),(_binary 'F+\D{\zX\\','wp-content/plugins/elementor/includes/widgets/star-rating.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\$\r/إve\r',_binary 'Xwg\\\sj=	,\tO}n%-u*\L','',0,'?'),(_binary '\]g#՗\\\','wp-content/plugins/elementor/includes/widgets/tabs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:z!U3\\\\',_binary 'J#p\\\cgyB\\\v>#@ju\A','',0,'?'),(_binary '\jG0%\LS\rt','wp-content/plugins/elementor/includes/widgets/testimonial.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\T\^P)( 	',_binary 'Q\\\\\CU\o\\\EƼ陁qvI','',0,'?'),(_binary 'ܒ\r\r1w57x','wp-content/plugins/elementor/includes/widgets/text-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\n\\\<\=\H|\\',_binary '9r\n\8ƌbh\D\\߮@,\\|r5o\\','',0,'?'),(_binary ',-מYa(\,\','wp-content/plugins/elementor/includes/widgets/toggle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N)\\r\S7h`,\CO',_binary 'K\*ExNcj\1l;0ذՠ\u\'','',0,'?'),(_binary '\n\}@6\eh','wp-content/plugins/elementor/includes/widgets/traits/button-trait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\QbFj\\lB\',_binary '\3Ø\PSh	\\"P\=P!\'','',0,'?'),(_binary '[<ےRa\*2','wp-content/plugins/elementor/includes/widgets/video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	<J\+Z/&',_binary 'w\" \W\\\'f;\\0#W%e0C1(\','',0,'?'),(_binary 's\V\fk\F\+','wp-content/plugins/elementor/includes/widgets/wordpress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JT)Uy2\\BJ\n\',_binary '1̦p\\\݌綶S*\\޽?\\','',0,'?'),(_binary 'X\\"m\@\Q\|\','wp-content/plugins/elementor/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"9sF:t\\rG\',_binary '\F}Ռ\OX\\\\\	##','',0,'?'),(_binary 't\\D	Zt ^\r7','wp-content/plugins/elementor/modules/admin-bar/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R^)*\d \G',_binary '\~qy0&<Z.ˁG\\M@c^عJ?*','',0,'?'),(_binary '$tExO#7\j{ ','wp-content/plugins/elementor/modules/admin-top-bar/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mr\P[%',_binary '\\0\07B4D|_\*Y\\d\\\0I\','',0,'?'),(_binary 'O\fP١\\C(kJ','wp-content/plugins/elementor/modules/compatibility-tag/base-module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<mmPVepA',_binary 'Ϩc\A(,ι\\I\0\\rlz\t\ˎ','',0,'?'),(_binary '=\f/\)','wp-content/plugins/elementor/modules/compatibility-tag/compatibility-tag-report.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\J\+\nGhe',_binary '\5*]\.h<Ĝ:Ax78DGY!0\','',0,'?'),(_binary 'Q\e\@W\'1b','wp-content/plugins/elementor/modules/compatibility-tag/compatibility-tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\39B\Zq\\99\',_binary '\nJe\0E@0Hlc{\Z6y	]\\\\\ru\r','',0,'?'),(_binary 'X\\;BG4o\\','wp-content/plugins/elementor/modules/compatibility-tag/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Wٟ\$Vb\g',_binary 'TW}τW\G\i덛ňՁcuC[T\\','',0,'?'),(_binary '\cEJ_#W\\}[','wp-content/plugins/elementor/modules/compatibility-tag/views/plugin-update-message-compatibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '܀m\Zӆyl\1fЫ',_binary '\5\z|\U\8k%\\_\XH!ƻz\n	','',0,'?'),(_binary 'g\_\\\\\\V8\]','wp-content/plugins/elementor/modules/container-converter/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ypbK;+tcQ\\',_binary 'od\G*\-X9\	\	b\CM\','',0,'?'),(_binary '\h<n}P~lm\1\\\'','wp-content/plugins/elementor/modules/dev-tools/deprecation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}BoƇQb',_binary 'W5\Zz\Z3Bj?\`\6\0\C[SXƼE\T\','',0,'?'),(_binary 'P\n\0\Ig&@','wp-content/plugins/elementor/modules/dev-tools/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\K\\6\q$',_binary '~HхG}؞EɅ}ѵ\8\\޳M','',0,'?'),(_binary '\FN6};ƮD\\','wp-content/plugins/elementor/modules/dynamic-tags/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r-[rRf3ѳ',_binary '\ݬ\\\ɷKm\Y\{\N\)\R','',0,'?'),(_binary '4ľ\\9f	Ήt\','wp-content/plugins/elementor/modules/elements-color-picker/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M*\\n\g\\g\\',_binary 'W\5\\5bm8\','',0,'?'),(_binary '\0/\\9Y=\y','wp-content/plugins/elementor/modules/favorites/controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\Vz\%Q(\',_binary '_\77m72\\=\811h\b\\u','',0,'?'),(_binary '-\\\\\"`\tr','wp-content/plugins/elementor/modules/favorites/favorites-type.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\.\r\-@5\',_binary '`\\jaǉ3\$b\1\JC\'\','',0,'?'),(_binary '71\E\\\\\8','wp-content/plugins/elementor/modules/favorites/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\x\6\%jZ\0\',_binary 'V\U9irvھc`\1\6m\\\?V% \','',0,'?'),(_binary '\Y8\jCG\#','wp-content/plugins/elementor/modules/favorites/types/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\(0\nM',_binary '96\JSx\?pC]\n\=#@ц(','',0,'?'),(_binary '~G꒦Wv_y','wp-content/plugins/elementor/modules/gutenberg/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'еr^\)\'\s\\\',_binary '\}±JsR\\\2h&P\"\?;\(\r','',0,'?'),(_binary '\ЖY$b+\\\i','wp-content/plugins/elementor/modules/history/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\0\gT-5e',_binary '.hw\nHi	0\BD2W	XSA\N','',0,'?'),(_binary '7K\gE5ݻ','wp-content/plugins/elementor/modules/history/revisions-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\+qMd\@\"Y\v',_binary '=r\K\Ӌlw\*~dP^7fxUU8','',0,'?'),(_binary '&W^\Z7ɿ\n`\X\"\','wp-content/plugins/elementor/modules/history/views/history-panel-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	<tGG\\\\72U\r',_binary 'nz\:\\Qz\[\X2\L*:&A3','',0,'?'),(_binary 'r\\0Q@\sή','wp-content/plugins/elementor/modules/history/views/revisions-panel-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ƿ=X\\r\',_binary 'O\a\rE3]!\\\\pwZ%@@9\#','',0,'?'),(_binary ',\\\\}9i\\j\y*','wp-content/plugins/elementor/modules/landing-pages/documents/landing-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8$υ\"\\n\',_binary '\\r\وR\\Z\n6D>o\AP2\\@','',0,'?'),(_binary '\\x:*{u\\','wp-content/plugins/elementor/modules/landing-pages/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\K\P\',_binary '\a\"]\#1\M	I\^tس|6)\\\#Q','',0,'?'),(_binary 'Ԁ\jEj\Zp+o','wp-content/plugins/elementor/modules/library/documents/container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`9\X=',_binary '2\\&\B\'3Yxc\p\\	ٝXI','',0,'?'),(_binary '@w6fJfZBؾ\'','wp-content/plugins/elementor/modules/library/documents/library-document.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>5~]\\=:+j׹',_binary '\3 !\\r>x\5|f\','',0,'?'),(_binary 'm^\'\Zxd~\\I','wp-content/plugins/elementor/modules/library/documents/not-supported.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'af\'\ .Tη̑\0',_binary '\\i7{W\!\DXA\q?Y:W8 /Ms','',0,'?'),(_binary 'q,W\ڪ$wĤ@','wp-content/plugins/elementor/modules/library/documents/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nk\E͕8\!\{/\\\',_binary 'k\[v\ I\M#}7 U7\\','',0,'?'),(_binary '5R#\\M}tN','wp-content/plugins/elementor/modules/library/documents/section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j@\ҽ8n\:ע',_binary '{\bЙ #\\Ăbrrٜ\\8f:','',0,'?'),(_binary '}\Jԍ&\ZqZ\\','wp-content/plugins/elementor/modules/library/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' JE#\\וQTf',_binary 'ez\93؅\\H\C\:`\\	','',0,'?'),(_binary '\r\.\\}T(K\\n','wp-content/plugins/elementor/modules/library/traits/library.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'S 4B++i~',_binary '%FI\\_\\\\w0\\;R$=\','',0,'?'),(_binary '(GLl#BQ','wp-content/plugins/elementor/modules/library/user-favorites.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\\\\7\\P',_binary '\.\l\:\\\\\2\\>[5w)È','',0,'?'),(_binary '9\'2\\|\X>\\','wp-content/plugins/elementor/modules/page-templates/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1rWko\\iB\S\',_binary 'h`R\"Lx\QLBV\\\z!>\ݳST','',0,'?'),(_binary '\y\YIbQf\0','wp-content/plugins/elementor/modules/page-templates/templates/canvas.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\\8u\MMpJ\/',_binary '{\ư\҅x\ۄ\d}p$ɹ\%c\%','',0,'?'),(_binary '\6\'Enf+\Zkv`','wp-content/plugins/elementor/modules/page-templates/templates/header-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\^$N0ك',_binary '\E˓=d7\\T`[SHY\\\','',0,'?'),(_binary '\ص6_䋉\\\'','wp-content/plugins/elementor/modules/safe-mode/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	oo\\F\>>޹',_binary '\P1L䩎hJx\}\\7d+\܄\'@h','',0,'?'),(_binary '(\s\O8J\\\','wp-content/plugins/elementor/modules/safe-mode/mu-plugin/elementor-safe-mode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\E\\˴t\\',_binary '@y\r\:$\y.(\\\1\uH%\ȁMv','',0,'?'),(_binary '7[j=LcBr\ro9','wp-content/plugins/elementor/modules/shapes/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̾P>=\?',_binary 'To\N͋xE\\v[\&r v','',0,'?'),(_binary '\\l\.W','wp-content/plugins/elementor/modules/shapes/widgets/text-path.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HDi\0r=i/',_binary '\f\ʕkI͐\\\\b\\q{=Z26ʠ','',0,'?'),(_binary '\06\\e@VpID','wp-content/plugins/elementor/modules/system-info/helpers/model-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd;Gg\`',_binary 't%TKCy%ejN\\t\Ok\\\ԒF\','',0,'?'),(_binary '\Ĩ=8\@_\rr+\r','wp-content/plugins/elementor/modules/system-info/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\\m;\>(_',_binary '\m@9ʍ\1\\\amMk?rh\\$\n','',0,'?'),(_binary 'Gn\Z;\>*sdt','wp-content/plugins/elementor/modules/system-info/reporters/base-plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹\\T[-\j\.Cb',_binary 'GBҙ\\"(\A\\0p^bʙ</J\uW2F','',0,'?'),(_binary '\/+F\XD`fP!','wp-content/plugins/elementor/modules/system-info/reporters/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~V#Opπ',_binary 'S\.\d\]\Y-\	QNJ\\0i>r\r\\','',0,'?'),(_binary 'Lz	6\hQ\W\7','wp-content/plugins/elementor/modules/system-info/reporters/mu-plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WJ%joE\\%^(',_binary 'jR~\@O\[?\\\9:','',0,'?'),(_binary '\洮|/&JOR|','wp-content/plugins/elementor/modules/system-info/reporters/network-plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\\=\\nPhQf',_binary '숋 \\\0z\\Zg\WTM\\\c<5&LZz\\\','',0,'?'),(_binary '<Ґp\r\˟\','wp-content/plugins/elementor/modules/system-info/reporters/plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\8б0*\\',_binary 'z2\\\5R󛖡ӫ\g8\!\\ -','',0,'?'),(_binary 'X[Fnĭz\τU	\\','wp-content/plugins/elementor/modules/system-info/reporters/server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q\[\]`b\',_binary '\_yUnf!\=\0t\6	<)\\a\P','',0,'?'),(_binary '\`K\E\#t]{&','wp-content/plugins/elementor/modules/system-info/reporters/theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\AW\\'\rg\\֭',_binary '\Ofp\w-O`h\;Ho62_\E','',0,'?'),(_binary '\\t|\ry\\0\\o','wp-content/plugins/elementor/modules/system-info/reporters/user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?ìtzO(\;\',_binary '7\\%\\\ʸΰ\]`\\\R2\n','',0,'?'),(_binary '\Z\r\jA\}\s,<\S','wp-content/plugins/elementor/modules/system-info/reporters/wordpress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\r4kp\=S\',_binary '\nd>1poAlMN\zR\ZװI\0Z\','',0,'?'),(_binary 'n\̦z18:g','wp-content/plugins/elementor/modules/system-info/templates/html.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nܚֲd%k\\',_binary '#GuVҲ*H	:6E]tP|\','',0,'?'),(_binary '`1\\7\\\*\\g\\','wp-content/plugins/elementor/modules/system-info/templates/raw.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7TX1\\\\\WV',_binary '5\U\ܺ\%27c$8w\\\','',0,'?'),(_binary '\J\\\n\s\K׳k\\\','wp-content/plugins/elementor/modules/usage/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\h%R$\w\7kV\',_binary 'ܲ\#0\M9Lh\\2b\ZϬ\','',0,'?'),(_binary 'Z)\?v\\\z0\F','wp-content/plugins/elementor/modules/usage/usage-reporter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5kx\Z\F\3\\s#o',_binary '\\\ږ߯\_S\ܟ1Xg\"','',0,'?'),(_binary '\\S׮财','wp-content/plugins/elementor/modules/web-cli/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\g\d\N^)\\OU0',_binary '\Kcq+tܱ.\\\6&C\\\Q\','',0,'?'),(_binary '~\$Gj\9\P\\','wp-content/plugins/elementor/modules/wp-cli/cli-logger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\jC\\p遇r',_binary 'A:^1#q:|%Pl\91:[Eӆ','',0,'?'),(_binary '\N\eC\R,\rF \\e','wp-content/plugins/elementor/modules/wp-cli/command.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sud\	O\ui\0a',_binary '\=#\ۍ\jA&\\ЩԽ\n`\\M\d','',0,'?'),(_binary 'S~KʌS','wp-content/plugins/elementor/modules/wp-cli/library.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4l|Ө\uVA~>!',_binary '؁^\\\\\\γ\\c\D8','',0,'?'),(_binary 'F,\6\\\<mIq\nN','wp-content/plugins/elementor/modules/wp-cli/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\CZ+/\,',_binary 'co\Cɨdt\Rni\\k\\\\r\','',0,'?'),(_binary '\[V\\/t\Wqm','wp-content/plugins/elementor/modules/wp-cli/update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x1\uy\\\8-|n\D',_binary '\Q#\smCH\B9\"򯙜Nw','',0,'?'),(_binary 'Njj(\\;`\+','wp-content/plugins/elementor/packages/elementor-ui/components/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|̜\&\k\Z\\',_binary ')\\@W,wH*#\s\0h\*\0\r\r','',0,'?'),(_binary '\T\#\\\\|#\W','wp-content/plugins/elementor/packages/elementor-ui/components/ui/heading.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LƖ*(T\[+?',_binary ';\`_\)\,Aâ*\A_L\2]','',0,'?'),(_binary '\4y\i@@/?>','wp-content/plugins/elementor/packages/elementor-ui/components/ui/text.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WaN\Lhu',_binary 'Чh^\Z\=\7\_RG\,M>t/','',0,'?'),(_binary '\E\'\R,x\\=\\I','wp-content/plugins/elementor/packages/elementor-ui/components/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6˜v8|Y}j\',_binary '\ûi\\B.K	\Uoq2 P\0','',0,'?'),(_binary '\\Ѻp\}\lw','wp-content/plugins/elementor/packages/elementor-ui/styles/_data/colors/palette.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$vy\-p\\G[',_binary '/\\\o\\\\W0\\~1E=\\0_','',0,'?'),(_binary '\\-2 m?m<3j@o','wp-content/plugins/elementor/packages/elementor-ui/styles/_data/font/font-weight.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0숵З\e\\XO',_binary 'f\a\\')g\\&KW\~\>\6','',0,'?'),(_binary '\\.\\ֹPyte','wp-content/plugins/elementor/packages/elementor-ui/styles/_data/spacing/spacing.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'is4[\8^H3=\'',_binary 'CcP|\4R\ä8;\\'7@\n\ԤF@','',0,'?'),(_binary '\^ѷ\3\I0','wp-content/plugins/elementor/packages/elementor-ui/styles/_data/typography/typography.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\Ǹ\_]f,',_binary 'iJS]\B:y&p\\w\N','',0,'?'),(_binary '	x7 \lm)ˌ','wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/colors/dark-tints.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z.e!\XWu\s',_binary 'k?Pf\	\\\{ddT\\\nۀL\','',0,'?'),(_binary '(whT\0jb@U','wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/colors/theme-colors.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Iei)_na\\"u',_binary 'o25\r\f\%]\"81?\\[6|','',0,'?'),(_binary '2Z\_a{ho\','wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/colors/tints.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\ׯJ\N\J\ZĚd',_binary 'Ww-:\1u\\\U\x\\\\"~$A','',0,'?'),(_binary '_P\F\7އ7+','wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/font/font-weight.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '69pue5a\kV',_binary 'p\._u\ݣyX\E+6S\З\뎌','',0,'?'),(_binary '\\<͟2\\e5.c\','wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/spacing/spacing.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\q	\\C\=V\',_binary 'C[arzUH\\ZW\rsv0+\[*G_\)>','',0,'?'),(_binary 'k{~j\E\\\wd','wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/typography/heading.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\T\&@&T\	I\\',_binary '\\O/ԲA8iO%-\9\ˊ\\','',0,'?'),(_binary 'U8\yĖFi\BD\','wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/typography/line-height.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tBɚd\˄:1\K',_binary 'mKS\3\e<|/u\Z\c۫.,Z','',0,'?'),(_binary '\\\&FqC\r\','wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/typography/size.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '50y(<@',_binary '\\\\\j*\\\PL5F\\mw;Q\ZE\:','',0,'?'),(_binary '\SX\QtQ\R\a[:5]','wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/typography/text.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.@\{lD3\M\',_binary '\39צJ@ѧvy\\\o,\W^O \\','',0,'?'),(_binary 'Y}`eHz','wp-content/plugins/elementor/packages/elementor-ui/styles/heading.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=xNl\#W=\$',_binary '@`\\]*\z*	]n\\\\\K\[\\o<Z','',0,'?'),(_binary '\a7\sw\\ \s','wp-content/plugins/elementor/packages/elementor-ui/styles/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>|G\zCq\\7TL',_binary '\\$[7\<\r\\\׽Jӿ\\\ͬ','',0,'?'),(_binary '\&Z3\\X\ez\e\','wp-content/plugins/elementor/packages/elementor-ui/styles/text.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\rjElXԎ\i>',_binary '	Piu0c\\\7#\\FbK\','',0,'?'),(_binary 'zF, \i\j','wp-content/plugins/elementor/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?Ё_	i\c',_binary ')1\E\i\rqUdtCjvkL\\;','',0,'?'),(_binary 'P\b{\ZO\'','wp-content/plugins/elementor-pro/assets/js/3333af8bf530102aec5b.bundle.js',0,_binary 'L\!fܧ̻\ɼ\n\',_binary 'L\!fܧ̻\ɼ\n\',_binary 'RK\P\6È|kS}<\]\|ޖQQ\','',0,'?'),(_binary 'FD\\Z`N\B\\r\','wp-content/plugins/elementor-pro/assets/js/admin.js',0,_binary 'n#4&t\IAs$\',_binary 'n#4&t\IAs$\',_binary 'H?J^.y\ciޑr\i\\[5K6%','',0,'?'),(_binary '145!b\#X','wp-content/plugins/elementor-pro/assets/js/admin.min.js',0,_binary '\T6\\<N:',_binary '\T6\\<N:',_binary '`9-(1\\Ze\0qsN\0JH\','',0,'?'),(_binary 'X^dȠ\#\Õ\d','wp-content/plugins/elementor-pro/assets/js/animated-headline.0cdf629ebd9eaf373218.bundle.min.js',0,_binary 'U\n\E\\SvQ',_binary 'U\n\E\\SvQ',_binary '\oYlf\\0\YybfMʚ\\o\\\Kh	','',0,'?'),(_binary '\QOǺ71\Z\','wp-content/plugins/elementor-pro/assets/js/animated-headline.c48ffcc42cf8e1937b79.bundle.js',0,_binary '\7\uNZ\\YS9i4',_binary '\7\uNZ\\YS9i4',_binary 'Ȉ\YvI;\P\ҤA=ߔD\r:\_','',0,'?'),(_binary 'Ɛ8s\ށf','wp-content/plugins/elementor-pro/assets/js/app.js',0,_binary ')V\\\\@K,	\a\',_binary ')V\\\\@K,	\a\',_binary 'ՙdA\\\3Q\{6\{A5xbCqk\','',0,'?'),(_binary '.a	3\JZR\'ɏ$','wp-content/plugins/elementor-pro/assets/js/app.min.js',0,_binary '\ZlV,\n\n?2\',_binary '\ZlV,\n\n?2\',_binary '\\~\\\\\\\na\\7W\XH@\','',0,'?'),(_binary '\{\~\\','wp-content/plugins/elementor-pro/assets/js/archive-posts.c5bfd0c6126737964ea3.bundle.js',0,_binary '\l\VA\};nQC',_binary '\l\VA\};nQC',_binary 'Ose8G͂@	h{ˢ8H@ɺ\\\0\NI!','',0,'?'),(_binary '\\i\Zz\\\,֔\','wp-content/plugins/elementor-pro/assets/js/archive-posts.fd5949b12eae1d836370.bundle.min.js',0,_binary 'LTЩ9\j\X8i',_binary 'LTЩ9\j\X8i',_binary 'lCDcU\r~+\Bȍzo:O\N\D\Q','',0,'?'),(_binary '6n<x.\o','wp-content/plugins/elementor-pro/assets/js/carousel.df077bfcc92a01b2a71b.bundle.js',0,_binary ']\"U\Y2',_binary ']\"U\Y2',_binary '\\0\Zt_\\gId\\\\\34L','',0,'?'),(_binary 'g\\:[\\','wp-content/plugins/elementor-pro/assets/js/carousel.eda8fd12a8a6bac88fbc.bundle.min.js',0,_binary '~\\\\\\F\\s',_binary '~\\\\\\F\\s',_binary '\//\-`G\\\~9IyK~\Z\f:炩','',0,'?'),(_binary '^Ei\"I٣\\̓/','wp-content/plugins/elementor-pro/assets/js/code-highlight.36c6ab32da7b5cd4cf39.bundle.js',0,_binary 'D,\e\4wyN`\',_binary 'D,\e\4wyN`\',_binary '\\\\$o\\'Y\P\X\Z&[\^m\','',0,'?'),(_binary 's\UϪu\A','wp-content/plugins/elementor-pro/assets/js/code-highlight.980168b9b4c79600c41c.bundle.min.js',0,_binary 'sXf\F[5l/\~\K',_binary 'sXf\F[5l/\~\K',_binary 'osa<\\ĳ[CXV\;\yYM','',0,'?'),(_binary '\\Z\n콫X\	eT\','wp-content/plugins/elementor-pro/assets/js/countdown.bb46c1fe3c44d539dcc5.bundle.min.js',0,_binary 'ַk9\7i{۠:',_binary 'ַk9\7i{۠:',_binary '\W\'x:(7;\~\r\|pj`g(JhL','',0,'?'),(_binary '\\V\}\n$cѩ\,g','wp-content/plugins/elementor-pro/assets/js/countdown.e8b325f6654ba38a5606.bundle.js',0,_binary '	\j\\jE=NH+r=\.I',_binary '	\j\\jE=NH+r=\.I',_binary 'm\\\\\\0\v\(\\\LZI\0l\0','',0,'?'),(_binary 'q2\<Mn\r','wp-content/plugins/elementor-pro/assets/js/custom-code.js',0,_binary 'kɣ9@VW\٢\',_binary 'kɣ9@VW\٢\',_binary ']\n0\r\uea֛g\1\(\\\\\E','',0,'?'),(_binary 'p\\\\SдGs','wp-content/plugins/elementor-pro/assets/js/custom-code.min.js',0,_binary '\\-S\/7\r\r}gKa',_binary '\\-S\/7\r\r}gKa',_binary '\Z\\$\\Tw\|D.697	\\(Pr\<','',0,'?'),(_binary '\Zj\\K5c삒\\i=','wp-content/plugins/elementor-pro/assets/js/editor.js',0,_binary 'ޮ\\\_T\ϸ',_binary 'ޮ\\\_T\ϸ',_binary '\=@Ϥ\AYمÁfu\\՟(eE','',0,'?'),(_binary 'n]wsNF*\>','wp-content/plugins/elementor-pro/assets/js/editor.min.js',0,_binary '.a\\\P\\e',_binary '.a\\\P\\e',_binary '\VF\ꡇ\sL\\m^Bs]\<3M.','',0,'?'),(_binary 'Dp\0n}\~','wp-content/plugins/elementor-pro/assets/js/elements-handlers.js',0,_binary '\\0Q\\\Y&1[]\\\?',_binary '\\0Q\\\Y&1[]\\\?',_binary '\vZ\\\\)\_o\r\"\)j;\','',0,'?'),(_binary 'Qz[Q\(X\p]','wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js',0,_binary '\r(\\\Z0א\',_binary '\r(\\\Z0א\',_binary '1\ \A\0\\rpbO,q\&Z\\ bI','',0,'?'),(_binary 'X\[/\iɒ!\'\','wp-content/plugins/elementor-pro/assets/js/form-submission-admin.js',0,_binary '\"I:T_\\[T^/F',_binary '\"I:T_\\[T^/F',_binary 'G\"E!?\'9E\ScX\\\\'8\h\','',0,'?'),(_binary '8\\@\abE\ ','wp-content/plugins/elementor-pro/assets/js/form-submission-admin.min.js',0,_binary 'e\u\[5\f\K',_binary 'e\u\[5\f\K',_binary '4%P\iWԲ,ʨ6C=\0;v6\.ݮ','',0,'?'),(_binary ',z\\\FnhfI:','wp-content/plugins/elementor-pro/assets/js/form.a1a56dc07903de7da0f4.bundle.js',0,_binary 'apT\F]y.@\\',_binary 'apT\F]y.@\\',_binary '\%FK2n\?r\{\\Z(2\W6n','',0,'?'),(_binary '	\\F\݌\','wp-content/plugins/elementor-pro/assets/js/form.dd13e7aa247581b7c347.bundle.min.js',0,_binary '\"\=O\=\s&',_binary '\"\=O\=\s&',_binary '\%?n\\qygT\.\','',0,'?'),(_binary '\j\\\\\\<','wp-content/plugins/elementor-pro/assets/js/frontend.js',0,_binary '\\\ST:\\\O\r',_binary '\\\ST:\\\O\r',_binary '\/\am\B$\\\M=\)¢','',0,'?'),(_binary 'n[\dma[!`՟}','wp-content/plugins/elementor-pro/assets/js/frontend.min.js',0,_binary '\\$\+\\)t?',_binary '\\$\+\\)t?',_binary '\\h{^sA\ٱ\7\@+*V','',0,'?'),(_binary 'TI\Ch[I\\h','wp-content/plugins/elementor-pro/assets/js/gallery.044b1c02fe2971304f4b.bundle.js',0,_binary 'pk\m9^]@Lo\',_binary 'pk\m9^]@Lo\',_binary '\c\Β\T?=v\\a\5\K)a0J','',0,'?'),(_binary '\|p\ת\0ے\\','wp-content/plugins/elementor-pro/assets/js/gallery.553ce77143c8a6c9fb2f.bundle.min.js',0,_binary 'N\Z-GX\QMv\Z',_binary 'N\Z-GX\QMv\Z',_binary '>n\S5\\9\\\0\I\NiM\\u6','',0,'?'),(_binary '\TC(\r\\R','wp-content/plugins/elementor-pro/assets/js/hotspot.6e5f8367844f92a2df4d.bundle.js',0,_binary 'hgZ,tG\r+vǛ\"',_binary 'hgZ,tG\r+vǛ\"',_binary '\rP\\'\"\r\`F^#5\hZ','',0,'?'),(_binary '7:a{\?$\\\\Z7','wp-content/plugins/elementor-pro/assets/js/hotspot.87f8b120d01ef70bdf13.bundle.min.js',0,_binary 'K\-֛\'\\n6\O\',_binary 'K\-֛\'\\n6\O\',_binary 'D,\0Λ\?7>\ʤ\\7i\!u\','',0,'?'),(_binary '\!\\C\\>\v\','wp-content/plugins/elementor-pro/assets/js/jszip.vendor.8911033537a0c9d6e5f8.bundle.js',0,_binary '\ߕ3\\m\\\*u',_binary '\ߕ3\\m\\\*u',_binary 'C:rYO\\+\\(Bd\2ԁ>','',0,'?'),(_binary '\5\\\\%\\\CAD','wp-content/plugins/elementor-pro/assets/js/jszip.vendor.9ec53381c344ee903f3e.bundle.min.js',0,_binary '\\)\\(T',_binary '\\)\\(T',_binary 'T\\DU#B\B\̓9\u\hŘ@e','',0,'?'),(_binary 'B&`\A(cD6\u\','wp-content/plugins/elementor-pro/assets/js/jszip.vendor.9ec53381c344ee903f3e.bundle.min.js.LICENSE.txt',0,_binary '_EA/}=\r3',_binary '_EA/}=\r3',_binary '_dL5r?P\Y\#\F\_U','',0,'?'),(_binary '@\EWڻQ\W\Z	','wp-content/plugins/elementor-pro/assets/js/lottie.56eeeacd4e8b45bf0e69.bundle.js',0,_binary 'ѫ\AϤx\w\_yg',_binary 'ѫ\AϤx\w\_yg',_binary '\[ad\دmWR?^)\Bg8v<h?\','',0,'?'),(_binary 'hz65\-\֞Bc','wp-content/plugins/elementor-pro/assets/js/lottie.b602d6a1c68e229db197.bundle.min.js',0,_binary '74\V	\f=Y^',_binary '74\V	\f=Y^',_binary '!Dr\;S\\\\ug\I\\3NgyI4-t','',0,'?'),(_binary 'W\\\9,&2\','wp-content/plugins/elementor-pro/assets/js/media-carousel.9201a4f4bc7f4cb6a7c2.bundle.min.js',0,_binary 'ߢ~\*LBh',_binary 'ߢ~\*LBh',_binary 'U\rg:Ec\F,IP\\M\\ʒ\A\rM}','',0,'?'),(_binary '&ʍ.Y\#u','wp-content/plugins/elementor-pro/assets/js/media-carousel.c358c67478f0b64157d8.bundle.js',0,_binary '>ɵ.\\\%\me\V',_binary '>ɵ.\\\%\me\V',_binary '\ں=\\\8K\90`Vp߶\','',0,'?'),(_binary 'ux\<\s;J>\','wp-content/plugins/elementor-pro/assets/js/nav-menu.1047f3cf542aebc7eea1.bundle.js',0,_binary '\8\u\	EY>>)\',_binary '\8\u\	EY>>)\',_binary 'g\cWjA3x{\fБu','',0,'?'),(_binary 'w8\rr`Xo\\','wp-content/plugins/elementor-pro/assets/js/nav-menu.45545c0d5772c620c9fc.bundle.min.js',0,_binary '1\tw/e\p',_binary '1\tw/e\p',_binary '\9Lȧ\]\RQ73Ġfu\Ύ','',0,'?'),(_binary '(\\jV\\>B0|	','wp-content/plugins/elementor-pro/assets/js/paypal-button.b2f7547fbb7a974af793.bundle.min.js',0,_binary '\	%Ws\͡\\j',_binary '\	%Ws\͡\\j',_binary 'r2Q\(\{\3\+[w%\\#','',0,'?'),(_binary '\\bض\.я^˝p','wp-content/plugins/elementor-pro/assets/js/paypal-button.e7bc00be6d37a75afa94.bundle.js',0,_binary '\Z\\]B\c\nZ2q	',_binary '\Z\\]B\c\nZ2q	',_binary 'k\l\\!]0nx\.HQ\\(x$','',0,'?'),(_binary '\"X:gp8tL\áLŞ','wp-content/plugins/elementor-pro/assets/js/popup.11f78f8460dfd624d6fd.bundle.js',0,_binary '\\\\ŏp}\\\$d',_binary '\\\\ŏp}\\\$d',_binary '\W`1-Gi\/l\U=5¹p\\P\n\\','',0,'?'),(_binary '>*\OĘn>','wp-content/plugins/elementor-pro/assets/js/popup.502330d9929af9beeefd.bundle.min.js',0,_binary 'LLSlua	;-\_',_binary 'LLSlua	;-\_',_binary 'W{\:\;\(\J-vb7p/촜\cz\\l\','',0,'?'),(_binary 'I\\ޑ6hh','wp-content/plugins/elementor-pro/assets/js/portfolio.1753cf6f95efb460cd6c.bundle.js',0,_binary 'CN9t&\f?_P~p',_binary 'CN9t&\f?_P~p',_binary 'O\\\7\*\~a\+|`f F\0E~','',0,'?'),(_binary '\\"\o\\\Ȱ`\iJ\"','wp-content/plugins/elementor-pro/assets/js/portfolio.7e41bde7ebd3c1195e2a.bundle.min.js',0,_binary 'Go?,\\w8\YK',_binary 'Go?,\\w8\YK',_binary '+g\\B\k\\F\C͊ \\i#\','',0,'?'),(_binary '4\\rf$z\nςM,\\','wp-content/plugins/elementor-pro/assets/js/posts.2850ece7b8987a6bff85.bundle.min.js',0,_binary '\ٿz7\\45\',_binary '\ٿz7\\45\',_binary 'png;k!~\*avֶ1\p\/\','',0,'?'),(_binary '~\\8K\\nNT','wp-content/plugins/elementor-pro/assets/js/posts.4b4834181e0158037844.bundle.js',0,_binary 'xKxD;,',_binary 'xKxD;,',_binary '\-~\,\Ӽ~슊\I]5K','',0,'?'),(_binary '\ \'.>\\.9\','wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.js',0,_binary 'ƌ\+βDQ\',_binary 'ƌ\+βDQ\',_binary 'M!k\\\Y\I\Z<J\\'r\0Fءd=QI;\','',0,'?'),(_binary '\\\U\~\\ɺſ(\P','wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js',0,_binary '\+J(p\n6',_binary '\+J(p\n6',_binary '9-DN>\>s4d\|]|;\|#:4F\f\eY','',0,'?'),(_binary '$\\0c׭U\&&\','wp-content/plugins/elementor-pro/assets/js/preview.js',0,_binary '/\Z~\7T\\5',_binary '/\Z~\7T\\5',_binary '\\+IZ9\\+\&^\nѼS]_>6:6','',0,'?'),(_binary '<3\w,\9\oG','wp-content/plugins/elementor-pro/assets/js/preview.min.js',0,_binary 'I#\n1/\!:\S0W|',_binary 'I#\n1/\!:\S0W|',_binary '\+R\\Fm\9\.DvLHz\]ŝ','',0,'?'),(_binary '\r\$	\b\]h|\\\','wp-content/plugins/elementor-pro/assets/js/qunit-tests.js',0,_binary '붱\\vQɂES\ڶ',_binary '붱\\vQɂES\ڶ',_binary 'uy\ױ\|V\z&6F\\\h\!\ء','',0,'?'),(_binary 'G\nl\rri\d%\0+	','wp-content/plugins/elementor-pro/assets/js/qunit-tests.min.js',0,_binary 'j\"k\ k\'\\',_binary 'j\"k\ k\'\\',_binary '\\Y\t\1\"r\\D7\r\r\n\s*\','',0,'?'),(_binary '\G0(\',\"\\3\','wp-content/plugins/elementor-pro/assets/js/screenshot.js',0,_binary 'LHp3\i\>~X',_binary 'LHp3\i\>~X',_binary '{\\+p\n\K\\Q,\629=.','',0,'?'),(_binary '\\/I8s=\','wp-content/plugins/elementor-pro/assets/js/screenshot.min.js',0,_binary '^?\na׸{x!\dq-$',_binary '^?\na׸{x!\dq-$',_binary 'J\)\K]\\Bc\\O1\m]*','',0,'?'),(_binary '_``c\\@3','wp-content/plugins/elementor-pro/assets/js/search-form.3930197ed1faa52a1ca6.bundle.js',0,_binary '\?j\@\Z\\\q',_binary '\?j\@\Z\\\q',_binary 'n\\\b\S\M\b4<aޙ\\\Zt&v\','',0,'?'),(_binary '\0(Ү\\Q7>\',','wp-content/plugins/elementor-pro/assets/js/search-form.69e3551a94b182780302.bundle.min.js',0,_binary '5\`\P\D9p\',_binary '5\`\P\D9p\',_binary '\3\gd5i).+\\\B7i\B]/\=2','',0,'?'),(_binary '38)@\҂p>+I','wp-content/plugins/elementor-pro/assets/js/share-buttons.90bff2e73000d4e3f189.bundle.min.js',0,_binary '\\-{\'z\>\1\',_binary '\\-{\'z\>\1\',_binary 'V\Cboj;cwb\}[~;<9sH`','',0,'?'),(_binary '3\ŉ<ο\?\','wp-content/plugins/elementor-pro/assets/js/share-buttons.a4ac583614766c17243b.bundle.js',0,_binary 'Jnʓ\\0\"fSnp\',_binary 'Jnʓ\\0\"fSnp\',_binary '\K\'\8_\\]ƸSk,)$#$;\\','',0,'?'),(_binary '\g\r\\Xh\i܁h\Z','wp-content/plugins/elementor-pro/assets/js/slides.805ab056f4b77290515e.bundle.min.js',0,_binary '\\΍߯ν\ޛM',_binary '\\΍߯ν\ޛM',_binary '߶\\E\Y\~&!\HdhNHΛ<3','',0,'?'),(_binary 'w:7VJp.\\?o','wp-content/plugins/elementor-pro/assets/js/slides.b404bc7083be41fc917c.bundle.js',0,_binary 'Y\E\\7p5\',_binary 'Y\E\\7p5\',_binary '\؛\Ԡa\\c<\ZE\Eꢫp^F','',0,'?'),(_binary '3{Y\b\a\','wp-content/plugins/elementor-pro/assets/js/social.248e7d2278f85735e210.bundle.js',0,_binary '\^f|\[\@Ï\~',_binary '\^f|\[\@Ï\~',_binary ' ;1să\\0J;X5:I\[Uez','',0,'?'),(_binary '{ϙ/)U}]U','wp-content/plugins/elementor-pro/assets/js/social.313de86242bbec8993a6.bundle.min.js',0,_binary 'd%܃r$\\',_binary 'd%܃r$\\',_binary '4|Ȉn:\r>Q\\ps\);\-Dʘ\'\','',0,'?'),(_binary '\S3\NFcp\','wp-content/plugins/elementor-pro/assets/js/table-of-contents.18b2bc609c0761e78803.bundle.min.js',0,_binary 'fP\+ΪD%m\\',_binary 'fP\+ΪD%m\\',_binary 'r\0\\<н\<\E\Mׄ@з*NO=','',0,'?'),(_binary '܀mtu\k3i~Cg','wp-content/plugins/elementor-pro/assets/js/table-of-contents.c40874e82fb2b6d09547.bundle.js',0,_binary 'tSX*wQ\\\',_binary 'tSX*wQ\\\',_binary '\E\UR<,\\עqa\I%','',0,'?'),(_binary 'XY\2\"r\\-_\','wp-content/plugins/elementor-pro/assets/js/video-playlist.1b36054052aa15db889b.bundle.js',0,_binary 'D)\L{Β8\kR\d',_binary 'D)\L{Β8\kR\d',_binary '\ӏ\r\\!W\W\'ͫ\\Y,%C','',0,'?'),(_binary '\ZB}oٸ\]-\KL','wp-content/plugins/elementor-pro/assets/js/video-playlist.57fa9ca0ce034c2ac255.bundle.min.js',0,_binary 'e\p+h-\Qox=',_binary 'e\p+h-\Qox=',_binary '؝2 )l}h\\D{ܒ˴S擏l\','',0,'?'),(_binary 's9\(S*n9{','wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.js',0,_binary '\\<>+z\+a\nd',_binary '\\<>+z\+a\nd',_binary 'LEɔ\\\\\\N9\0\\y3Q`r6\\','',0,'?'),(_binary '	Q\\7\Zz9`-','wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js',0,_binary 'ڐf\o_\O(\2E\h',_binary 'ڐf\o_\O(\2E\h',_binary '\/\G\ZW\X	hj]\:$\\r\\\\<','',0,'?'),(_binary '\\I\)\\a','wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.a0ca3c5b1b1fbd100eae.bundle.min.js',0,_binary '﫫\1\\t#\',_binary '﫫\1\\t#\',_binary '\\s=׋\\EcĬ$B\n\\ZQT\Z','',0,'?'),(_binary ' ꟡˴7vn\Q\\t','wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.c85790f6adbf4d37d78a.bundle.js',0,_binary '\o\"d\Z\'Z馟',_binary '\o\"d\Z\'Z馟',_binary '\_{.\xzI9\_G7s\\\o_B','',0,'?'),(_binary 'hƷ-BH$ \a','wp-content/plugins/elementor-pro/assets/lib/dom-to-image/js/dom-to-image.js',0,_binary 'c2@d\9nŢ\',_binary 'c2@d\9nŢ\',_binary '=:|V\r\sG\tG\','',0,'?'),(_binary 'M&&\Dk\ۆ','wp-content/plugins/elementor-pro/assets/lib/dom-to-image/js/dom-to-image.min.js',0,_binary '\\\]G',_binary '\\\]G',_binary '~\8$7iÐ)\r	\\','',0,'?'),(_binary '\ns\\Z&9Ʋ\\M','wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/brands.js',0,_binary '袛[\\h&',_binary '袛[\\h&',_binary '\ Ulo\r}?4\=8̕]\46	4d&x','',0,'?'),(_binary '/\[MVZS`\?','wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/duotone.js',0,_binary '\\aǧ\6+G;Nr\',_binary '\\aǧ\6+G;Nr\',_binary '\0j\\\r\YC*|h=\]D','',0,'?'),(_binary '\\rU\¥\\SB\e','wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/light.js',0,_binary '\\aǧ\6+G;Nr\',_binary '\\aǧ\6+G;Nr\',_binary '\0j\\\r\YC*|h=\]D','',0,'?'),(_binary 'y\\"O\}\7g\','wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/regular.js',0,_binary '\\aǧ\6+G;Nr\',_binary '\\aǧ\6+G;Nr\',_binary '\0j\\\r\YC*|h=\]D','',0,'?'),(_binary '\\ir\h&{s','wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/solid.js',0,_binary '\\aǧ\6+G;Nr\',_binary '\\aǧ\6+G;Nr\',_binary '\0j\\\r\YC*|h=\]D','',0,'?'),(_binary '>\h\n(\zp\I','wp-content/plugins/elementor-pro/assets/lib/html2canvas/js/html2canvas.js',0,_binary '*klum\\\\',_binary '*klum\\\\',_binary '7%.2[\ǣglhJ<\S\n\V','',0,'?'),(_binary '\N\gZ[\ō]W','wp-content/plugins/elementor-pro/assets/lib/html2canvas/js/html2canvas.min.js',0,_binary 'tk@ũ\\Ahk',_binary 'tk@ũ\\Ahk',_binary ':H\	\[8\\)8%\\\5~XO6\\','',0,'?'),(_binary '\䜀_Pu\\','wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.js',0,_binary '\|\w\솜c,B^0',_binary '\|\w\솜c,B^0',_binary '\n-³\\I\p\@5Z\"os0\\\Rp쩉','',0,'?'),(_binary '_\I,U~\06\','wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.min.js',0,_binary '\uO\#1u\\\',_binary '\uO\#1u\\\',_binary '\	%㻱\,+E{\*i\]\\nN&3','',0,'?'),(_binary 'qjpQ\*sK}\','wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.js',0,_binary 'X~]\\\\ \uI',_binary 'X~]\\\\ \uI',_binary '\%ؘSgaDJvX\a\kWZg\','',0,'?'),(_binary '`\kV\|E>x\5\','wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js',0,_binary 'd\\0\>R\}*\RX',_binary 'd\\0\>R\}*\RX',_binary 'fCc3z^qEی\\\e*Ծ.\+5y^','',0,'?'),(_binary 'Ƌ%\h}\\t\','wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.js',0,_binary 'lhh\2\\iF',_binary 'lhh\2\\iF',_binary 'I\\ԼqGIR%xM\Z\˴E\\H','',0,'?'),(_binary 'X,GnU&^p\\\@g','wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js',0,_binary '\j!\\æ\',_binary '\j!\\æ\',_binary '\\Z3\\>m!cU5\jEM\B[R&H\\0','',0,'?'),(_binary '\R5\_\J9@','wp-content/plugins/elementor-pro/base/base-widget-trait.php',0,_binary 'a\Z\\\L5Wp',_binary 'a\Z\\\L5Wp',_binary 'R%\y^L\r\RE9C\'\b1\\Z\Eq','',0,'?'),(_binary '\n%\\\'\o>Tuӝ','wp-content/plugins/elementor-pro/base/base-widget.php',0,_binary 'G\~qV6\\V',_binary 'G\~qV6\\V',_binary 'm\[B;\\aU\nti\\','',0,'?'),(_binary '\ҁm^\kפ\\\"S','wp-content/plugins/elementor-pro/base/module-base.php',0,_binary '[j3OPpEq',_binary '[j3OPpEq',_binary '\n\˪]\i\(6\\I@\3	X[X','',0,'?'),(_binary '\\d\"%\v\,','wp-content/plugins/elementor-pro/core/admin/admin.php',0,_binary 'ޔ]9\ a)q6*',_binary 'ޔ]9\ a)q6*',_binary '\"T3\rӬa\NW)/Xѵsńchr_w1','',0,'?'),(_binary '/Z\\\d\\Z\"+\','wp-content/plugins/elementor-pro/core/admin/canary-deployment.php',0,_binary '\K\a9T\\Vb\',_binary '\K\a9T\\Vb\',_binary '\a0\3z\B\%\av}\\"5ɪ','',0,'?'),(_binary '\\A\{}','wp-content/plugins/elementor-pro/core/app/app.php',0,_binary '\0\AwiĒF[)H ',_binary '\0\AwiĒF[)H ',_binary '.\\o\\ѬT\\Gﶴnh&\lg','',0,'?'),(_binary '\53\\zln9X','wp-content/plugins/elementor-pro/core/app/assets/js/index.js',0,_binary '=Z\\t4m\\\<)',_binary '=Z\\t4m\\\<)',_binary '\'FԮ\gZ)\gxzq\[\\Z\rl>Zom','',0,'?'),(_binary '\\)0%a','wp-content/plugins/elementor-pro/core/app/modules/kit-library/module.php',0,_binary '/{Ï5\vx,=s',_binary '/{Ï5\vx,=s',_binary '\\r\`oDvȒ\ǆ\d60L\\ԓ\\','',0,'?'),(_binary '\4\\<\ϾDVi-','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms/indicator-bullet.js',0,_binary '-Ӟ*\!\$;ؑ',_binary '-Ӟ*\!\$;ؑ',_binary '\K!>\:Y\\B\\ź\\{L\\'L. ','',0,'?'),(_binary 'e\\w1f1>@>','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms/preview-iframe.js',0,_binary 'χh-\u;:\\',_binary 'χh-\u;:\\',_binary '+\\%\\'j\\\Q\0PE\+˄\-f','',0,'?'),(_binary '>Ut3bi3\\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/base-context.js',0,_binary 'T\*?F|',_binary 'T\*?F|',_binary '\\P,\\5y;+\|\Z2BmAae]L','',0,'?'),(_binary '5\\yy\0\\\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/conditions.js',0,_binary '\nA\Gx\d\kñ',_binary '\nA\Gx\d\kñ',_binary '\ZJCTI1#)\?%U{\	f\\\z','',0,'?'),(_binary '7\ \7\2PFxC\w','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/models/condition.js',0,_binary '(\\]v;x\\0>',_binary '(\\]v;x\\0>',_binary 'A9wQ\(k\i#:\\t?\-\B\Gz\_','',0,'?'),(_binary 'S\'\e^is\υ/','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/services/conditions-config.js',0,_binary '\PA[K6\B|',_binary '\PA[K6\B|',_binary '7-M޸\/yЄ+j\\p\\"`','',0,'?'),(_binary 'uxJ®Fyp0','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/templates.js',0,_binary '=;\nޕq-s4Y',_binary '=;\nޕq-s4Y',_binary '\\C\1ćkD\6\م2{\!>\#TȾ','',0,'?'),(_binary '.\ľV\(s\N^m','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/conditions-config.js',0,_binary '\"2\Z8_+~e\ɏ',_binary '\"2\Z8_+~e\ɏ',_binary 'h\w \c$=\'i^f\\?{\aV\\q\ؾ\','',0,'?'),(_binary '+ȴ\\n>\nb=	','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/index.js',0,_binary '\:x\{V\\\yo1',_binary '\:x\{V\\\yo1',_binary 'Rw\~\Z\\@\Ivs<@/\\W9','',0,'?'),(_binary 'j/ֻ߫I%`Wd\0','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates-conditions-conflicts.js',0,_binary 'S\09Hh\`x\r',_binary 'S\09Hh\`x\r',_binary '\܅|Veu\rqD>\3\`\\pK.;I','',0,'?'),(_binary '☑n\\P.\Z\,','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates-conditions.js',0,_binary 'i!\D\n.R8\',_binary 'i!\D\n.R8\',_binary 'K4JIᶖnYKM܍ܣD\.\!\\d\P','',0,'?'),(_binary 'X\oȜ%s!ܣ','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates.js',0,_binary 'ʱ\\n!Dkn\',_binary 'ʱ\\n!Dkn\',_binary '\mLtyǰxHSx\,0],T΀v','',0,'?'),(_binary '\\\1\u\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/component.js',0,_binary ';d1𗗀Awm',_binary ';d1𗗀Awm',_binary 'ޠ밗I\D&<b	\F	\#','',0,'?'),(_binary '\זk\\\TKB\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/editor.js',0,_binary '\\\0ȡT\J',_binary '\\\0ȡT\J',_binary 'E}\>p#,ۜ\\d\i!{c*7\5','',0,'?'),(_binary '8GT\\\Z\У8\s','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/hooks/use-templates-screenshot.js',0,_binary 'hg\0+Ud5ku',_binary 'hg\0+Ud5ku',_binary 'Di{w\^cd*\	\r\,ń\/','',0,'?'),(_binary '-\\\Py)YEJ','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/back-button.js',0,_binary '	\m\*\\<\',_binary '	\m\*\\<\',_binary 'U\oh\usn(aP\`Y<ovsp','',0,'?'),(_binary '\\0\\{u%T\1?\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-body.js',0,_binary '.#>\G(\^\\	',_binary '.#>\G(\^\\	',_binary 'R\\n,\232a\\FL4gyǨfz\','',0,'?'),(_binary '˴\rpLNG\·','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-footer.js',0,_binary 's\\dvҦ',_binary 's\\dvҦ',_binary 'yH;\\\'x\r\Ô0q\Dř<Z42p','',0,'?'),(_binary '(8\l\\\\\\(','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-header.js',0,_binary '\\\\\\\',_binary '\\\\\\\',_binary '[r\ha\sV\@Nr]blֶL\\\$r','',0,'?'),(_binary '\<\P?˱qUJ6','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-thumbnail.js',0,_binary '\}Bj\X\0\',_binary '\}Bj\X\0\',_binary 'Qp\W\ӛ\\*\\X\,\$,\\v','',0,'?'),(_binary '\nTa\\%\v','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template.js',0,_binary '9\\?!\FE.\\vU',_binary '9\\?!\FE.\\vU',_binary 'JyBJ\̋PD*Fg\~a\r:\!.?','',0,'?'),(_binary 'v|Twm`au\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/organisms/site-templates.js',0,_binary '\\~b\Ȭ,h',_binary '\\~b\Ȭ,h',_binary 'J\8\:\\\\,زű\-\ii\\p\','',0,'?'),(_binary 'p\s\-\'CMЯ','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/add-new.js',0,_binary '$\m\n\Lm\{',_binary '$\m\n\Lm\{',_binary 'Qn\\\g\z\ZCEC\\z\\\\\|','',0,'?'),(_binary '8\NWPQMgyav','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-conflicts.js',0,_binary '~t9\\k',_binary '~t9\\k',_binary 'zq\\K\)8\\; \r\\\\VF,\E','',0,'?'),(_binary '\\\n\\^|J\\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-name.js',0,_binary 'w4~0\yٸBC',_binary 'w4~0\yٸBC',_binary 'ahFZMn_Jj\lMId5\&\nm\Y79','',0,'?'),(_binary 'ؙr\pj@ѨI[\\:','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-sub-id.js',0,_binary 'c\\\\\dPc\1\',_binary 'c\\\\\dPc\1\',_binary ',(\p4^+$\\!|\+','',0,'?'),(_binary 'Ih\\dC{n?','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-sub.js',0,_binary '\\k5#u\Ψᦽ',_binary '\\k5#u\Ψᦽ',_binary 'B\#K\$\\\c\0\-\c\vwgg\E','',0,'?'),(_binary '\\'*\w','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-type.js',0,_binary '\Z\p,|\\\$\3?o',_binary '\Z\p,|\\\$\3?o',_binary '\pf\E\76;F\{T\\c:f(','',0,'?'),(_binary 'M\Ifia`\\0]-','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/conditions-rows.js',0,_binary 'XU49\\\',_binary 'XU49\\\',_binary 'mXY-2\ \m\?P~u\Պ\m','',0,'?'),(_binary '\(g+0\~\Fq','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/conditions.js',0,_binary ',pcGq\\j',_binary ',pcGq\\j',_binary 'E/\nf\4F]ZOuZ KaAZB6:=','',0,'?'),(_binary '0&\ \Z\W','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/import.js',0,_binary '\n@p{Qa\\D7\',_binary '\n@p{Qa\\D7\',_binary 'P\\"\@\沉~]C\;(eO\Y\\\','',0,'?'),(_binary '(Fc.}W\{ F\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/template-type.js',0,_binary '}q/E\N&\\',_binary '}q/E\N&\\',_binary 'CY#]\ߙ*\޼hW7zX \Ϗu\','',0,'?'),(_binary 'iHGY҄M\\\z\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/templates.js',0,_binary 'dv9~I\ZM',_binary 'dv9~I\ZM',_binary '5\\\nQs eݽ:n xXÑ$ab9VU@','',0,'?'),(_binary '嬪BDUL r?0','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialog-delete.js',0,_binary '*.ݑf2',_binary '*.ݑf2',_binary '%_1\\"[\\\\rZ\\\\DRțZ \','',0,'?'),(_binary '\]vy','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialog-rename.js',0,_binary 'TE(r\6؉$\Fp=',_binary 'TE(r\6؉$\Fp=',_binary '-Ñ /\(\\\\r1*\'\y\\\3[\\'\','',0,'?'),(_binary '\;Dt+Yqec','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialogs-and-buttons.js',0,_binary '\@K\iY0\\',_binary '\@K\iY0\\',_binary ' Lș^\\o\\'&.\#W\614~\\\\','',0,'?'),(_binary '	U\(;]\\)','wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/site-editor.js',0,_binary 'Y-Ҍ\\p<(Љ\k',_binary 'Y-Ҍ\\p<(Љ\k',_binary 'h\:\>\\\\כ=?{oEY\','',0,'?'),(_binary '\n.I\\\\\\\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/controller.php',0,_binary '\m\ʒm#',_binary '\m\ʒm#',_binary ':\s\|&S\,\\0*d\\Z~f\\#','',0,'?'),(_binary '*/M\>\BTL\o','wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/base-endpoint.php',0,_binary 'MuͬR!\/raU',_binary 'MuͬR!\/raU',_binary 'oJ5D\n׋ۘZ_eօ\o&nX','',0,'?'),(_binary ':TKHi\c\q\\\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/conditions-config.php',0,_binary '\\%oR\ZBT',_binary '\\%oR\ZBT',_binary '\Q\\V!\\74(E\\\qG\'','',0,'?'),(_binary 'o<\\3!]\Z','wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/template-types.php',0,_binary '\	@c]r\\N\fQv(',_binary '\	@c]r\\N\fQv(',_binary 'ׯ\Z<\ZMؿ\r*\\-8L','',0,'?'),(_binary '\${\m\	z\Kt:','wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates-conditions-conflicts.php',0,_binary 'ba\@o\#d',_binary 'ba\@o\#d',_binary '<)qָ\\Ne/Yr\\\)Ӣ\:\\\Z\\','',0,'?'),(_binary '\\C5\2ycǎ','wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates-conditions.php',0,_binary '\\~\nA\\'W\0`',_binary '\\~\nA\\'W\0`',_binary 'lQB \{_T\\\"?\\\/X','',0,'?'),(_binary ')%\\n]i$\#','wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php',0,_binary '\ۨ\\\nFJ\|',_binary '\ۨ\\\nFJ\|',_binary 'Ce\:e*ߔ\+ހF⮠	','',0,'?'),(_binary '\/\\j\D\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/responses/lock-error-response.php',0,_binary '\\\"8~*\,g',_binary '\\\"8~*\,g',_binary '\<ۖX\/t;\\7\X}\}3s','',0,'?'),(_binary 'Q\\KP`0\\l/n\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/module.php',0,_binary '\\'\\\\\6\',_binary '\\'\\\\\6\',_binary '\\|\7p\rVh<{}55om%\nĆ\H\','',0,'?'),(_binary 'L봈ڒA#uPܾ\','wp-content/plugins/elementor-pro/core/app/modules/site-editor/render-mode-template-preview.php',0,_binary 'Sكz3{\\|%',_binary 'Sكz3{\\|%',_binary 'f\\wwf\ZRi.h!rԬLHYO\T&','',0,'?'),(_binary '\\4&N%\\ZFu\\','wp-content/plugins/elementor-pro/core/connect/apps/activate.php',0,_binary '\rK	/j\\Rh}\',_binary '\rK	/j\\Rh}\',_binary 'KE\)Z\ӑ	r\B\r@Q=I/:\n\\n鷦','',0,'?'),(_binary 'r.\")\_p*x','wp-content/plugins/elementor-pro/core/connect/manager.php',0,_binary 'H\Ѝ7\KNa\\W',_binary 'H\Ѝ7\KNa\\W',_binary '\3`\|H\}7\:\8\;h4\\"z\','',0,'?'),(_binary 'ws\\[7\U\v','wp-content/plugins/elementor-pro/core/editor/editor.php',0,_binary '-|zQ3O\0Qz',_binary '-|zQ3O\0Qz',_binary 'G\o4c\\5\\\\9em-\b','',0,'?'),(_binary 'zrY]ңbG\\\\','wp-content/plugins/elementor-pro/core/editor/notice-bar.php',0,_binary 'L\0$\٨\\Э',_binary 'L\0$\٨\\Э',_binary '&ΧTvA`\0\\\v5\\\\','',0,'?'),(_binary 'eV/Pĵמ','wp-content/plugins/elementor-pro/core/editor/template.php',0,_binary '3\\\ r\G',_binary '3\\\ r\G',_binary 'Cg\\\Q_\\\EV̓5r!)\\7t\','',0,'?'),(_binary '4\g)X\{\\-','wp-content/plugins/elementor-pro/core/modules-manager.php',0,_binary 'ͻ\\	\>(',_binary 'ͻ\\	\>(',_binary '2\n$\Ո!\\\I-\	\\\(\','',0,'?'),(_binary '\u\\l\H\\\','wp-content/plugins/elementor-pro/core/preview/preview.php',0,_binary '.Ư(\FrWr',_binary '.Ư(\FrWr',_binary '\?P\C9XF|\*\\|+ʗy@j2','',0,'?'),(_binary 'MB~o\\z\\r2J,\','wp-content/plugins/elementor-pro/core/upgrade/manager.php',0,_binary '\nq\\\I',_binary '\nq\\\I',_binary 'p>\"x\\\4\\n\Xx\;a\\<\;','',0,'?'),(_binary '6ֳ>\ӢX_f','wp-content/plugins/elementor-pro/core/upgrade/upgrades.php',0,_binary '9Z\Ue+',_binary '9Z\Ue+',_binary ',%c\Z\\p\`h3_\\8\\~~84','',0,'?'),(_binary 'o\U1\.oℊ\0','wp-content/plugins/elementor-pro/core/utils.php',0,_binary '2a+W\b#D\',_binary '2a+W\b#D\',_binary '^X\\M\%q\L\=\\Ŕ\\r[\','',0,'?'),(_binary '\2$==CYK','wp-content/plugins/elementor-pro/data/base/controller.php',0,_binary 'w\T\Xy\\\\ڬ[',_binary 'w\T\Xy\\\\ڬ[',_binary 'i*DmIyU\J\cJ2\Zإ\R','',0,'?'),(_binary '\\\|˳ұN-9˚u\t','wp-content/plugins/elementor-pro/data/base/endpoint.php',0,_binary '{\'XU\Lr9PY\\'',_binary '{\'XU\Lr9PY\\'',_binary 'YPFo\FRzhE1>>厉y)phS','',0,'?'),(_binary '\?lӑ\','wp-content/plugins/elementor-pro/docs/modules/payments/classes/payment-button.php.md',0,_binary '\\\&\0M]',_binary '\\\&\0M]',_binary '~o>ÔF7I,\i1fc$*kNK`','',0,'?'),(_binary 'iӮ8;\]\'\','wp-content/plugins/elementor-pro/docs/modules/payments/widgets/paypal-button.php.md',0,_binary 'k\@A*^\0|\',_binary 'k\@A*^\0|\',_binary '~\[\\o\\l\IؐMǷ;Wpdyۀ','',0,'?'),(_binary '\M`\u_\A','wp-content/plugins/elementor-pro/elementor-pro.php',0,_binary '\db,5\\\]',_binary '\db,5\\\]',_binary '>TC3O+y\\\%\teN\^','',0,'?'),(_binary 'c6,\\MȈb','wp-content/plugins/elementor-pro/karma.conf.js',0,_binary '$YHg#CvYQ\',_binary '$YHg#CvYQ\',_binary 'uۓ=	\0\ZuPܒE\F','',0,'?'),(_binary 'Y\\\&\jos!T','wp-content/plugins/elementor-pro/license/admin.php',0,_binary '{MF\h\Z\\Ew1&',_binary '{MF\h\Z\\Ew1&',_binary '\\(.\\#*\#~Zz\ͱchc','',0,'?'),(_binary '\\׵l\d','wp-content/plugins/elementor-pro/license/api.php',0,_binary 'V\\_<mտX\\',_binary 'V\\_<mտX\\',_binary '\CZn\(\mZR-\ncK6\\N2>C\W\\','',0,'?'),(_binary '\n\s7a\n[w-\','wp-content/plugins/elementor-pro/license/updater.php',0,_binary 'p9\t\">#\5\',_binary 'p9\t\">#\5\',_binary 'A\F\fE\@z*\nN/A*\rr\1\+a','',0,'?'),(_binary '@x\J$u\rZ\\w','wp-content/plugins/elementor-pro/modules/animated-headline/module.php',0,_binary 'q0\ⴝ^b	ۂv,',_binary 'q0\ⴝ^b	ۂv,',_binary '\l\}\I44i\fەSZQI8\\W\N','',0,'?'),(_binary 'ӪBR3\\7\%F\u','wp-content/plugins/elementor-pro/modules/animated-headline/widgets/animated-headline.php',0,_binary '\\>OTJ<\j`/',_binary '\\>OTJ<\j`/',_binary 'Q&\\\`H=r\\*','',0,'?'),(_binary '\1\\D_\^*S','wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/custom-fonts.php',0,_binary '|\O\\\\\r7',_binary '|\O\\\\\r7',_binary 'B\0C;HYM\\S}\\M\g2\]\\','',0,'?'),(_binary 'wNp,1!\'MUՉ\:Q','wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/typekit-fonts.php',0,_binary 'iE7^\0ɯh7\\f\'',_binary 'iE7^\0ɯh7\\f\'',_binary '25_\`V\fl)dSF(b\\','',0,'?'),(_binary 'A\_\W1\n@Wx\H','wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts-manager.php',0,_binary '\G]\\`Df',_binary '\G]\\`Df',_binary '|m=\']k\\\*w\"\x4i	ܧ','',0,'?'),(_binary 'Z\\[\,C\Z\\','wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/custom-icons.php',0,_binary 'q:\QLΤ\޼\\',_binary 'q:\QLΤ\޼\\',_binary '=vq/X\\$z\\!?« >Cx Az','',0,'?'),(_binary '\\\\=\\\r?6\\t','wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/font-awesome-pro.php',0,_binary 'A+$\ZnC\\x\쯨AR',_binary 'A+$\ZnC\\x\쯨AR',_binary '\Ў\\)\u%wc:R\Om9%\r}ĪkkD\}','',0,'?'),(_binary '6\q\)\\R\\','wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/fontastic.php',0,_binary '}?\\ݿ\\D̫\'4',_binary '}?\\ݿ\\D̫\'4',_binary 'ek\\kP\\O#(xg\ɦ\\\P\','',0,'?'),(_binary 'i?\+GJ\J9-KV','wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/fontello.php',0,_binary '|\\\>\\QL8_\',_binary '|\\\>\\QL8_\',_binary 'M1ό_\\=\\[\\"~@O7(&','',0,'?'),(_binary '\sT[Ի#g\@\','wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/icomoon.php',0,_binary '\\B|=I\\',_binary '\\B|=I\\',_binary 'N\x*V-\nH\\\\ Oxk\@','',0,'?'),(_binary '+\D_	\\6,\\2','wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/icon-set-base.php',0,_binary '\ؐEa\Ո\',_binary '\ؐEa\Ո\',_binary '3z\c\0n&\\\#\A`l-0\&\$','',0,'?'),(_binary '1(s=\\{\','wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/templates.php',0,_binary 'Eg\_ð$y@',_binary 'Eg\_ð$y@',_binary '\\\\\\>XGu~Ѵ`\\w+[[\Z','',0,'?'),(_binary '8\\6[Pk07~}','wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons-manager.php',0,_binary '\y \C\Lv\0T0',_binary '\y \C\Lv\0T0',_binary '_\9vwjP$M>\\U\\\mܝ40\s','',0,'?'),(_binary '\N6Q5\d\r#','wp-content/plugins/elementor-pro/modules/assets-manager/classes/assets-base.php',0,_binary '׋\:%R`#\',_binary '׋\:%R`#\',_binary '}WA\\\3\rfj>Op3l','',0,'?'),(_binary 'B\c\0lM\0\\\','wp-content/plugins/elementor-pro/modules/assets-manager/classes/font-base.php',0,_binary '\Sp\t',_binary '\Sp\t',_binary 'x|\r4\\IM!\F\Z\\/+]uIi','',0,'?'),(_binary '/\ H9\EA','wp-content/plugins/elementor-pro/modules/assets-manager/module.php',0,_binary '0\5\X\q\\\K',_binary '0\5\X\q\\\K',_binary 'n`\\\MRNj\|\\F};xNZ\nB(','',0,'?'),(_binary '\\%Lul\g\j/','wp-content/plugins/elementor-pro/modules/blockquote/module.php',0,_binary '\ҧS\\:Q];E\',_binary '\ҧS\\:Q];E\',_binary '\\e\0\0\ZYd\n\9StG\x\lY[`\\','',0,'?'),(_binary ':\>b\]','wp-content/plugins/elementor-pro/modules/blockquote/widgets/blockquote.php',0,_binary '\\Rp\T\Da\ێX',_binary '\\Rp\T\Da\ێX',_binary '\O57H\\ښƨLE\nT	\\>O\ZK^I','',0,'?'),(_binary 'K\>\\W\:*>.','wp-content/plugins/elementor-pro/modules/call-to-action/module.php',0,_binary 'E\F\Pm',_binary 'E\F\Pm',_binary 'cR~\s?P\0\Z<vlC\n\[i>7o','',0,'?'),(_binary '\3*͋ˢ!6\\','wp-content/plugins/elementor-pro/modules/call-to-action/widgets/call-to-action.php',0,_binary '\~\\$܉y\3; ',_binary '\~\\$܉y\3; ',_binary '҇\;-\6KlkmJ\Y9a\\\','',0,'?'),(_binary 'Lq\LD\\\\9','wp-content/plugins/elementor-pro/modules/carousel/module.php',0,_binary '!\\ԟ	{\i',_binary '!\\ԟ	{\i',_binary 'x]\0(\1zZ۫Sl\\Pϓ','',0,'?'),(_binary 'L\|\\\-\Z)\','wp-content/plugins/elementor-pro/modules/carousel/widgets/base.php',0,_binary '\ci :s\',_binary '\ci :s\',_binary '\Z\-m\Z3w\\\.6\1{\\gz\Z6','',0,'?'),(_binary '\\n\5z\PE4Z\','wp-content/plugins/elementor-pro/modules/carousel/widgets/media-carousel.php',0,_binary 'FMR\#qޣ9Kf',_binary 'FMR\#qޣ9Kf',_binary '	kϓ*e^\39\\;\]!C\\2\r\','',0,'?'),(_binary '\u(\̪٭ADb','wp-content/plugins/elementor-pro/modules/carousel/widgets/reviews.php',0,_binary '\&c\5s\UHP',_binary '\&c\5s\UHP',_binary '\i0}\ĴP@fw,Hia\Ā\`\J','',0,'?'),(_binary 'v?lMx1\$\Mq1','wp-content/plugins/elementor-pro/modules/carousel/widgets/testimonial-carousel.php',0,_binary 'zl~\\Ts',_binary 'zl~\\Ts',_binary '.lS_s\w7)\\m\p\o','',0,'?'),(_binary '\"\m܁\Q\','wp-content/plugins/elementor-pro/modules/code-highlight/module.php',0,_binary 'ZQ\]%\̵\',_binary 'ZQ\]%\̵\',_binary '>eYVש9C5՟\\Sx\^\:`\o','',0,'?'),(_binary '{^\\[Hyo4','wp-content/plugins/elementor-pro/modules/code-highlight/widgets/code-highlight.php',0,_binary '#\\&Yy\0b\',_binary '#\\&Yy\0b\',_binary 'J^\\\$i\J{\\\\n\	*R\\\&','',0,'?'),(_binary '\Љ7\\5\&^','wp-content/plugins/elementor-pro/modules/compatibility-tag/compatibility-tag-component.php',0,_binary 'Tdh^_m\+\9',_binary 'Tdh^_m\+\9',_binary '\0∧.\\^V\Ħyx\0\_Њ\','',0,'?'),(_binary '\"y\UP=ēt\\\\','wp-content/plugins/elementor-pro/modules/compatibility-tag/module.php',0,_binary 'h\7(N<k9u',_binary 'h\7(N<k9u',_binary 'iad\0\Mˢ<P?P\p\\','',0,'?'),(_binary '\\ȐFf۳\0E>','wp-content/plugins/elementor-pro/modules/countdown/module.php',0,_binary 'BZ\lI\U\\RO]',_binary 'BZ\lI\U\\RO]',_binary ':	\\J\JZwD\\C(]bs!_','',0,'?'),(_binary '\\z\Ąj\"+-','wp-content/plugins/elementor-pro/modules/countdown/widgets/countdown.php',0,_binary '\l{\ٓ\\',_binary '\l{\ٓ\\',_binary '=T\GG k\poqJ\Z\\\\r\\r\h','',0,'?'),(_binary '\\"On\\(\M5\','wp-content/plugins/elementor-pro/modules/custom-attributes/module.php',0,_binary '\78χP*tD\/\',_binary '\78χP*tD\/\',_binary 'x|zJ࿋!EE\\T\ao\n9|\6\'','',0,'?'),(_binary '7s\JL3[;\','wp-content/plugins/elementor-pro/modules/custom-code/custom-code-metabox.php',0,_binary '֮\HO3cu8(',_binary '֮\HO3cu8(',_binary 'q>cA\ܡ\\\ u\\\#\\\\','',0,'?'),(_binary '%sqm!W\\\4','wp-content/plugins/elementor-pro/modules/custom-code/document.php',0,_binary 'Ş@\Zk\/vDsN',_binary 'Ş@\Zk\/vDsN',_binary '\`2\r\\\\"C8\5\\\Wp5D','',0,'?'),(_binary 'b)\)\!V.:\','wp-content/plugins/elementor-pro/modules/custom-code/module.php',0,_binary 'Ǩ\qz?vxO\J',_binary 'Ǩ\qz?vxO\J',_binary '\\\\663g?B\Z%\0\\hj~x4F','',0,'?'),(_binary 'ѬpF軹䝛爝	','wp-content/plugins/elementor-pro/modules/custom-css/module.php',0,_binary 'r]\#OFo\',_binary 'r]\#OFo\',_binary '~k\2\\d\L\\?\\rqcK\L','',0,'?'),(_binary ']ނִ\&iU','wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/module.php',0,_binary 'R,\W\S\~\f',_binary 'R,\W\S\~\f',_binary 'D6w\G\4\E\\o\\\'.e\n','',0,'?'),(_binary '+H\*@\@w2\','wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-color.php',0,_binary 'z\&|.{\vچk˝',_binary 'z\&|.{\vچk˝',_binary '\D\^d?\;\%z\\n\	Kp\'','',0,'?'),(_binary '\<\P\Ӭ\r','wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-file.php',0,_binary '@F|b`1\\')',_binary '@F|b`1\\')',_binary '\}j&\$Z֛\X.\Z\\%\\>^<','',0,'?'),(_binary '\h\6\\\t5\\O)','wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-gallery.php',0,_binary 'έK\\\\<\\\C',_binary 'έK\\\\<\\\C',_binary '\w\\\q¢\S&bi2/\f\J','',0,'?'),(_binary 'uO\s\"\\6+\\\','wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-image.php',0,_binary '\<\#b\t\T',_binary '\<\#b\t\T',_binary '$kU:B\E\N\f?i\\j>\,S=E','',0,'?'),(_binary 'E:\4\xp','wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-number.php',0,_binary 'x\\\\nC;\r\r긮^7',_binary 'x\\\\nC;\r\r긮^7',_binary '}\\\\1\\7\Ϡ=\!\','',0,'?'),(_binary '؅ \P;\fD7','wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-text.php',0,_binary '\\n\\r\|9\Z[\-\2v',_binary '\\n\\r\|9\Z[\-\2v',_binary '\	-mh\'yB\\75ɋunD0\]_\\'','',0,'?'),(_binary 'A\ȧ,\\-){S','wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-url.php',0,_binary '\\H\HpA',_binary '\\H\HpA',_binary '3\?e\\J\\	\\\rc\\','',0,'?'),(_binary '\OB5\r','wp-content/plugins/elementor-pro/modules/dynamic-tags/module.php',0,_binary '\#9dne锡o',_binary '\#9dne锡o',_binary '|t{T\i}yP\FݎMf\a7V#\r\r\\','',0,'?'),(_binary '\0B\	\\X.)Q\\"','wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/module.php',0,_binary 'Q\Z>\r \Z\:}<+	*e',_binary 'Q\Z>\r \Z\:}<+	*e',_binary '@\H\)̢ZV~zո^cM\WSji\','',0,'?'),(_binary '\\މ#9\\\\','wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-base.php',0,_binary 'jL\\#\\\߇\',_binary 'jL\\#\\\߇\',_binary '\Z\\K\O\e\n\2\X2\k\!%\{','',0,'?'),(_binary 'zm5:h.\Y','wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-date.php',0,_binary 'Pk\\*\WEYj+',_binary 'Pk\\*\WEYj+',_binary 'P\a\\V邀S\i7S^\','',0,'?'),(_binary '/q\n\[\\|\\\8','wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-gallery.php',0,_binary 'p\'1G)G\\;\0',_binary 'p\'1G)G\\;\0',_binary '\R|W;\>\\A\Z`r.(i','',0,'?'),(_binary '[vip\\\h\\:\','wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-image.php',0,_binary 'UۄcbUa\,',_binary 'UۄcbUa\,',_binary 'Z\\w\	Wj\S7V\(,\\݃\\Ҙ7D','',0,'?'),(_binary 'VqH*\3\\0/œJ','wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-numeric.php',0,_binary '~Ց\\\Ѹ\',_binary '~Ց\\\Ѹ\',_binary 'Nu;\#\ݮG\\\\iޖ\\','',0,'?'),(_binary '\\0_NН\v\g','wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-text.php',0,_binary '\1&\\<\?.\',_binary '\1&\\<\?.\',_binary 'K$L\8_|{v&_\ۉ1\?','',0,'?'),(_binary '-N~wYoU','wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-url.php',0,_binary '\jJ	i\r\\',_binary '\jJ	i\r\\',_binary '+bN\%mi\n\K\6\|)m','',0,'?'),(_binary '\n\@G\'Σ\n\\','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-description.php',0,_binary '\e:p!ڪ߼\\n',_binary '\e:p!ڪ߼\\n',_binary '=;;|Z\Z*r\H8\\*Qn\.\\U','',0,'?'),(_binary 'eTm>F\\\+HN','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-meta.php',0,_binary '\n\iZtt$\"̺\',_binary '\n\iZtt$\"̺\',_binary 'bD<*nE?\\\rĚ%XpdbV','',0,'?'),(_binary '\\zR\\\','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-title.php',0,_binary '+8eZLo\Z\\;\',_binary '+8eZLo\Z\\;\',_binary '\@\|Ԩ#+|\(ݓ$ޛTLpe\b\0','',0,'?'),(_binary '\ڄk\\\\i\^','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-url.php',0,_binary 'Q\'X\n0/|jp\U',_binary 'Q\'X\n0/|jp\U',_binary 'ǌۼP\\vmM\@O)\\\D6\J\1\','',0,'?'),(_binary 'E\y<h_\\\\','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-info.php',0,_binary 'M\jt\|݂\҅',_binary 'M\jt\|݂\҅',_binary 'V\o%9QD*Gtp\E\WRRd$','',0,'?'),(_binary '\;Ol6\ԙN[','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-meta.php',0,_binary 'Pi}ŵŵ',_binary 'Pi}ŵŵ',_binary ',\1j\/\!`\01\D!\9ڽ|','',0,'?'),(_binary '\\\n\0\%f\6','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-name.php',0,_binary '#8@\\\3vG\m\\?q\\',_binary '#8@\\\3vG\m\\?q\\',_binary '8W&\\'\\\$\$N\-S\\xX|?&\Af\','',0,'?'),(_binary '\\{nq,j(x','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-profile-picture.php',0,_binary '\\9i\}-\\|\'\',_binary '\\9i\}-\\|\'\',_binary ',v\6\"\ڭ*\ 8\\r\D','',0,'?'),(_binary '\\ZչT5?\\\','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-url.php',0,_binary '\\r5\\\y`\',_binary '\\r5\\\y`\',_binary 'gi圇\\K	-\A\\\\Bbw','',0,'?'),(_binary '+pLw\\#47TO\','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/data-tag.php',0,_binary 'CaD\\n\Xx\\r\\=a',_binary 'CaD\\n\Xx\\r\\=a',_binary '\3\=*%01\\j5\1}Te','',0,'?'),(_binary '\0[\0SO\\vٛ','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/tag-trait.php',0,_binary 'dMV\0S\\ni\\P\',_binary 'dMV\0S\\ni\\P\',_binary '\3w\re1\1s`Z\pQ\*.7HH\6\"','',0,'?'),(_binary ' mZ\䒯','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/tag.php',0,_binary 'm\bpط~\Ǚ',_binary 'm\bpط~\Ǚ',_binary '\>\.z.)\zH/\\|r\KN\?h+J3','',0,'?'),(_binary '\l/\E\ֺZ\x4','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/comments-number.php',0,_binary 'RvҒI3\\n',_binary 'RvҒI3\\n',_binary '<v=\rw\\\h\_a\\H\"','',0,'?'),(_binary '	=%fB*\;QJ','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/comments-url.php',0,_binary 'ظj7̺\#',_binary 'ظj7̺\#',_binary '_\\\zeFB\kE\(\'\r>iG\n5\\Q\','',0,'?'),(_binary '\\%Q{\\F\\}32','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/contact-url.php',0,_binary 'NU\%품&',_binary 'NU\%품&',_binary '>ǂ%p)88\\P~\3','',0,'?'),(_binary '[hBx\a\):\n','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/current-date-time.php',0,_binary '\\[w֏\	\\)\\',_binary '\\[w֏\	\\)\\',_binary 'č2\-\0\\v\\\\es\5','',0,'?'),(_binary '\5;{˄9\s\','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/featured-image-data.php',0,_binary '#I8Al\))\\\',_binary '#I8Al\))\\\',_binary 'a\\ZU;hZ\'ڼfkœ\">U\','',0,'?'),(_binary ']lMJ\\lY5','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/internal-url.php',0,_binary 'u\V@\w[\$',_binary 'u\V@\w[\$',_binary 'E=+9/PS=_\S0&Ϟқ<Or','',0,'?'),(_binary '\QH\\7\Ǜ\C9N5','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/lightbox.php',0,_binary '\\\d(\oD lT,',_binary '\\\d(\oD lT,',_binary 'l8\\ld~\SZO\"\\\}\','',0,'?'),(_binary '\"\}\`\ΐ\\\\\','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/page-title.php',0,_binary '\V\0\[H\Z\`',_binary '\V\0\[H\Z\`',_binary '\W4P\XڈO\?̮~\˰G˿q\','',0,'?'),(_binary '\ư$3\^]\\mT','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-custom-field.php',0,_binary '\"\nU:WF8ڴ\\',_binary '\"\nU:WF8ڴ\\',_binary 't_ +\|&$	jLq','',0,'?'),(_binary 'T\\7\t','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-date.php',0,_binary 'g\0bKO\	Y',_binary 'g\0bKO\	Y',_binary '))m-Ʈv6\mH\+\%cʼ\L:','',0,'?'),(_binary '\hi\\n͓?\','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-excerpt.php',0,_binary 'C\;\l\\w׾0\',_binary 'C\;\l\\w׾0\',_binary '[\n=\\\n!\\Z7!C{z\e\`\','',0,'?'),(_binary 'X\\ߎe\K','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-featured-image.php',0,_binary '\\f\/=\g\ȴ',_binary '\\f\/=\g\ȴ',_binary '\\LՊ-3\H\Z*ō(D[F祤I\i','',0,'?'),(_binary '95\6\p\\T\','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-gallery.php',0,_binary '\[\\yB\$5.\ZR',_binary '\[\\yB\$5.\ZR',_binary '|\i.k\&+)\@)\kսN\\\\<','',0,'?'),(_binary '\\"C1\\$','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-id.php',0,_binary '\\w\()A\\*\;',_binary '\\w\()A\\*\;',_binary '\)<7˻\r8bƷ-&$\D\npD6\\','',0,'?'),(_binary '$\\\GE\','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-terms.php',0,_binary ')Kf89\AF\\',_binary ')Kf89\AF\\',_binary '\o\qe\a\\$F>kY3KIϼ<','',0,'?'),(_binary 'D\Z\N9Wr}M\K','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-time.php',0,_binary '\\\\E\\ˌ',_binary '\\\\E\\ˌ',_binary '\Ȫ!T\L!\Qyt8\{\R=(=]ht\$','',0,'?'),(_binary '\S\*\\ɠ\߅','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-title.php',0,_binary '4\\#\YJ=\AO',_binary '4\\#\YJ=\AO',_binary 'U	\	ﭐj.w8\ա~\iD+*\\"','',0,'?'),(_binary 'il\MթOU5?','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-url.php',0,_binary '&\\W|p\\b\\[0',_binary '&\\W|p\\b\\[0',_binary 'c?\0z/h\r\+CulK\,ÉE\7','',0,'?'),(_binary '\r|S\"|\n<\'\\\r\"','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/request-parameter.php',0,_binary 'Z\%d\\Eױ',_binary 'Z\%d\\Eױ',_binary '\\:1v\H\7\\r\\8\','',0,'?'),(_binary '\0Z>\\\\f\','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/shortcode.php',0,_binary '\WϡjJX\}',_binary '\WϡjJX\}',_binary '\lnӷ:\n\\\\FGA\C-5nk\l&','',0,'?'),(_binary '\SXw6Mߠ-','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-logo.php',0,_binary 'O%\\3\r\\',_binary 'O%\\3\r\\',_binary 'k\<}/Ui\A\}\\>u\<X\'\ʱ','',0,'?'),(_binary '˜AtA\0ÑeZb\','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-tagline.php',0,_binary '\Z\A3e_*j\\6~',_binary '\Z\A3e_*j\\6~',_binary '\';H\_ᄱ3eI\n\\','',0,'?'),(_binary 'CbtmZ\\g','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-title.php',0,_binary 'yi$ep\\L\',_binary 'yi$ep\\L\',_binary '{Q2\05\9-<\۞綟\*אM\','',0,'?'),(_binary '-pKk\F\"!\"\Z','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-url.php',0,_binary 'q7F\vlHf5\w',_binary 'q7F\vlHf5\w',_binary '\p0cLxj\\Aɍ)A\eJw͌n','',0,'?'),(_binary 'HF\jcw Uwj\','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/user-info.php',0,_binary '\[u3bsi\t\',_binary '\[u3bsi\t\',_binary 'j\Zq{l\\\\'\\#ϴe\\Cd','',0,'?'),(_binary '\0\,ʨ7|0\Ev-','wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/user-profile-picture.php',0,_binary '[\*NP%:',_binary '[\*NP%:',_binary '^O\`dH~\.@sWz\\v\\','',0,'?'),(_binary '\R\" 3\ɩT','wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/module.php',0,_binary '\&\%<o\D?)\"[',_binary '\&\%<o\D?)\"[',_binary '\UyH\\r\dͼ\=\\\Wu','',0,'?'),(_binary '*\\$)\\bh','wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-base.php',0,_binary 'ȴ\\\\\JZ`\9\"L',_binary 'ȴ\\\\\JZ`\9\"L',_binary '\됪{\Gkr~d:Q\\\\)','',0,'?'),(_binary 'o2lY-؍x\','wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-date.php',0,_binary '2\%(\E\n\',_binary '2\%(\E\n\',_binary '\\B\|\\मr:\fQO\Rȫ?$$~Mh}9','',0,'?'),(_binary 'Svd\\O\\\c\M','wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-gallery.php',0,_binary 'D1ĕ\ߔq\'\\WNZ',_binary 'D1ĕ\ߔq\'\\WNZ',_binary '80{\?#;dEΌ8\uB4Y\K\m','',0,'?'),(_binary 'P\}\r%?0','wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-image.php',0,_binary '\\\$:\c]',_binary '\\\$:\c]',_binary '\u!B\֜q]\\R8Ty\\\\0','',0,'?'),(_binary 'Ji)#k	ͷoJ\','wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-text.php',0,_binary ';J&fxe\',_binary ';J&fxe\',_binary '\Q\B\h\\S~	#U3\\']D\\','',0,'?'),(_binary '?94\bR\Ok\\n','wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-url.php',0,_binary '\E\I\\\r1j',_binary '\E\I\\\r1j',_binary '$.y0E\U_\"r-,sE\ιT9T\m\xF4','',0,'?'),(_binary '\`D\N\'h\d','wp-content/plugins/elementor-pro/modules/flip-box/module.php',0,_binary '\$eG!\W.\\',_binary '\$eG!\W.\\',_binary '5Q\\\\\\ӷ\\j\8\+\\\tW[','',0,'?'),(_binary '8\m\\5ٳ/','wp-content/plugins/elementor-pro/modules/flip-box/widgets/flip-box.php',0,_binary '\I\xEA%Nip%',_binary '\I\xEA%Nip%',_binary 'tY\asx\>fU\d\/~to','',0,'?'),(_binary '	\^w\0;\\"D\','wp-content/plugins/elementor-pro/modules/forms/actions/activecampaign.php',0,_binary '{\˱mR\k',_binary '{\˱mR\k',_binary '\d}\5q!p~\I*\>3\\?a\','',0,'?'),(_binary 'V\HR6%?\r','wp-content/plugins/elementor-pro/modules/forms/actions/activity-log.php',0,_binary 'S\7\\d\\\02',_binary 'S\7\\d\\\02',_binary '\\&(\3=jFXz!\Nq\0!	(!7M','',0,'?'),(_binary '|pHӠSnRZ:{','wp-content/plugins/elementor-pro/modules/forms/actions/cf7db.php',0,_binary '\LhN\Mk',_binary '\LhN\Mk',_binary '\I\p~T&\\"%\V1_}=AO\','',0,'?'),(_binary '|=\/A-?mn\\\','wp-content/plugins/elementor-pro/modules/forms/actions/convertkit.php',0,_binary '#XO\i׼\#',_binary '#XO\i׼\#',_binary '}Jn\\m:p\,\$\yeng\','',0,'?'),(_binary '3\P\S\\0ڏ{U3=','wp-content/plugins/elementor-pro/modules/forms/actions/discord.php',0,_binary 'VM\\Qstc\\\A_',_binary 'VM\\Qstc\\\A_',_binary '[j\KI\\8]\\rQ\01M\"\n\\','',0,'?'),(_binary '\Hw\!\\\\9Z<ts','wp-content/plugins/elementor-pro/modules/forms/actions/drip.php',0,_binary '\Z++Cc\8\\^v\',_binary '\Z++Cc\8\\^v\',_binary 'HT#s\uuSG\\-/|\f\L','',0,'?'),(_binary 'X.[\\R.l=\\Z','wp-content/plugins/elementor-pro/modules/forms/actions/email.php',0,_binary '\5K&uX\nl=\\',_binary '\5K&uX\nl=\\',_binary '	~\w\i?xFG\o\lB\\_','',0,'?'),(_binary 's\c&MUYXp\\\','wp-content/plugins/elementor-pro/modules/forms/actions/email2.php',0,_binary '\ʨI\HT[\#7',_binary '\ʨI\HT[\#7',_binary '7#\x+C?\@\0\豔\kX\?5','',0,'?'),(_binary '{u\U','wp-content/plugins/elementor-pro/modules/forms/actions/getresponse.php',0,_binary 'z\Ŀ\6D\\}x',_binary 'z\Ŀ\6D\\}x',_binary 'u\}\Sފ\"\n<\.C4\\\PeL','',0,'?'),(_binary '}~\@x%\\qk\','wp-content/plugins/elementor-pro/modules/forms/actions/mailchimp.php',0,_binary 'v\f\RZ',_binary 'v\f\RZ',_binary 'Y`WU#n\n\@Os\Fը?6\Gu\\\\','',0,'?'),(_binary '\>;5w{tD!\','wp-content/plugins/elementor-pro/modules/forms/actions/mailerlite.php',0,_binary '\J8o `Ri0	TP',_binary '\J8o `Ri0	TP',_binary '\G \/{\1iߋ$\\4M\\','',0,'?'),(_binary 'nYq#\\(H1>ty\\','wp-content/plugins/elementor-pro/modules/forms/actions/mailpoet.php',0,_binary '6\S	\{\MW\\',_binary '6\S	\{\MW\\',_binary '\\rm;VH\Z2:\Υs\d,\~\\Q+!4','',0,'?'),(_binary ' M u{<ݵ\Z','wp-content/plugins/elementor-pro/modules/forms/actions/mailpoet3.php',0,_binary 'У\a\\\C\',_binary 'У\a\\\C\',_binary 'l)\J\\\A\U$\9Y@\r\=\\kΫ','',0,'?'),(_binary 'dÎ%V\\\\','wp-content/plugins/elementor-pro/modules/forms/actions/redirect.php',0,_binary '6Ib\9\\4ی\'Y',_binary '6Ib\9\\4ی\'Y',_binary 'D;PFEtǫgR{\|OX\\\(\V\\t*7,','',0,'?'),(_binary 'R\ʪQ\ \\\'gQ/','wp-content/plugins/elementor-pro/modules/forms/actions/slack.php',0,_binary 'olM΀j%^\"$wm\',_binary 'olM΀j%^\"$wm\',_binary 'q8`J\-\gG\\T=&\y\\','',0,'?'),(_binary 'L\\\0\o\3\\\[','wp-content/plugins/elementor-pro/modules/forms/actions/webhook.php',0,_binary 'p\\|p`}',_binary 'p\\|p`}',_binary 'rs3M\0\=_	ׅTQ}:G8פA','',0,'?'),(_binary 'Һj5\\Ž_y','wp-content/plugins/elementor-pro/modules/forms/classes/action-base.php',0,_binary 'ѭNPV\\R\r%B\',_binary 'ѭNPV\\R\r%B\',_binary 'B=H\\mNO~_w\h\f/$4\p\','',0,'?'),(_binary 'a?UT\\','wp-content/plugins/elementor-pro/modules/forms/classes/activecampaign-handler.php',0,_binary '\L}V<\\g\',_binary '\L}V<\\g\',_binary '3\6\\\\PžM^\i}A\\WXY','',0,'?'),(_binary '\\=\\$','wp-content/plugins/elementor-pro/modules/forms/classes/ajax-handler.php',0,_binary '7QP\ʅ\i',_binary '7QP\ʅ\i',_binary 'vSMO\\Hmn$\\r]:ƣ4','',0,'?'),(_binary '\	\FAagф]\','wp-content/plugins/elementor-pro/modules/forms/classes/convertkit-handler.php',0,_binary 'tL\\\eEn',_binary 'tL\\\eEn',_binary '\n\6Vw!GD\O_qԲ\\\\	7\','',0,'?'),(_binary 'Cz+Z+Ļs/@','wp-content/plugins/elementor-pro/modules/forms/classes/drip-handler.php',0,_binary '/\P\"Kar\HT@\',_binary '/\P\"Kar\HT@\',_binary '0\Pm\\i\\?0c:ģ\\x\^','',0,'?'),(_binary '騷RᴦQ\\'G','wp-content/plugins/elementor-pro/modules/forms/classes/form-base.php',0,_binary 'b\m\'cav9\-',_binary 'b\m\'cav9\-',_binary 'Zm\2\a\\%ȁA\\:1\\\ġ\','',0,'?'),(_binary 'gu6]݂?\\\','wp-content/plugins/elementor-pro/modules/forms/classes/form-record.php',0,_binary '\j\L\.\xI',_binary '\j\L\.\xI',_binary '묻	\7\r9U糟\ؑ\ʺ','',0,'?'),(_binary 'V\_AhEB\ZGZG','wp-content/plugins/elementor-pro/modules/forms/classes/getresponse-handler.php',0,_binary '`\LH\%Jy',_binary '`\LH\%Jy',_binary ',6\\h8\\r\Z&3\zV9','',0,'?'),(_binary '0\F3XfD:','wp-content/plugins/elementor-pro/modules/forms/classes/honeypot-handler.php',0,_binary '<$	w\\\\\\',_binary '<$	w\\\\\\',_binary '\%\\m~lRE\+k\\V\\GVl\\\	','',0,'?'),(_binary '%/([\}\|}\g1','wp-content/plugins/elementor-pro/modules/forms/classes/integration-base.php',0,_binary 'd%]ʄo*S',_binary 'd%]ʄo*S',_binary 'hi3zWӽL\\\\\CB\\s\r\'1','',0,'?'),(_binary '\\w\J fHю\2','wp-content/plugins/elementor-pro/modules/forms/classes/mailchimp-handler.php',0,_binary '\Ҭ\X;HҔA',_binary '\Ҭ\X;HҔA',_binary '֑%o9\7 u\0Њ\`x\[8Ӂ\>3','',0,'?'),(_binary 'SJʕ\\Jl','wp-content/plugins/elementor-pro/modules/forms/classes/mailerlite-handler.php',0,_binary '\Yx&9|)C',_binary '\Yx&9|)C',_binary '\lfo+\w2Ǚ\,so\\r\','',0,'?'),(_binary '\4A4DJm{\','wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-handler.php',0,_binary '\=\28\\r',_binary '\=\28\\r',_binary '\(\;6lǁ0\\+ߢ\nLݢg','',0,'?'),(_binary 'ޱ\v\\c\\','wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-v3-handler.php',0,_binary '\(:\]i\\mus',_binary '\(:\]i\\mus',_binary 'S\]Fk9:[\\tK\ań=\'\"?D\:L','',0,'?'),(_binary 'R\Olv=h}X\nf','wp-content/plugins/elementor-pro/modules/forms/classes/rest-client.php',0,_binary 'Jn\"\K4\\\U|)Á\Z',_binary 'Jn\"\K4\\\U|)Á\Z',_binary '=QjnY+\]\Q\(\\0f2(\','',0,'?'),(_binary '\M\(xiJ\\\\R','wp-content/plugins/elementor-pro/modules/forms/controls/fields-map.php',0,_binary '\\!\zg_>\>',_binary '\\!\zg_>\>',_binary '\kHQn\\\dcǖ*~ҧ\\I\,\','',0,'?'),(_binary '\k\G\&\\_W<^l','wp-content/plugins/elementor-pro/modules/forms/controls/fields-repeater.php',0,_binary ',\WnKz\\Bz',_binary ',\WnKz\\Bz',_binary '̮ڨ\0kܾYUf*e\\r\`ĵ\\\','',0,'?'),(_binary 'ӕ\B5\\np','wp-content/plugins/elementor-pro/modules/forms/fields/acceptance.php',0,_binary 'w/\\dh誧l',_binary 'w/\\dh誧l',_binary '\Q#\\ّ\>њV\\rN','',0,'?'),(_binary 'a3\\\\Y','wp-content/plugins/elementor-pro/modules/forms/fields/date.php',0,_binary '#\\~L\Ÿ\\f',_binary '#\\~L\Ÿ\\f',_binary '\\ɰ\\U\K\"\b\'\\\\"3\\\ \\','',0,'?'),(_binary 'va:S\M	oiV/','wp-content/plugins/elementor-pro/modules/forms/fields/field-base.php',0,_binary '\\0\$ϴ\#',_binary '\\0\$ϴ\#',_binary 'ݞy\j\'3?/\Z*\\Tc\:\Ҙ?Yv\r','',0,'?'),(_binary 'ߧ}eT\\\u&\\','wp-content/plugins/elementor-pro/modules/forms/fields/number.php',0,_binary '9d\\"\3mv\',_binary '9d\\"\3mv\',_binary 'o+jy9bh\\av\j;)1\x2','',0,'?'),(_binary '\rvs\ޓ[~f2c\\','wp-content/plugins/elementor-pro/modules/forms/fields/step.php',0,_binary 'bD\ʪֈG@/uf\',_binary 'bD\ʪֈG@/uf\',_binary '2)!H0V*0:>$\u\\n\k8\O9\','',0,'?'),(_binary 'q\\?CXC\\\"N','wp-content/plugins/elementor-pro/modules/forms/fields/tel.php',0,_binary '<\H+U\ܬv',_binary '<\H+U\ܬv',_binary '\0EL\G\T;\`\\\C3\"\>f','',0,'?'),(_binary 'N|\X]<X#/|\','wp-content/plugins/elementor-pro/modules/forms/fields/time.php',0,_binary '\np\\Ԡ\@n(\\',_binary '\np\\Ԡ\@n(\\',_binary ']#	\:\E:l9J0X̽T=4QA','',0,'?'),(_binary 'Ej\\\z\E\','wp-content/plugins/elementor-pro/modules/forms/fields/upload.php',0,_binary 'm;SDop\',_binary 'm;SDop\',_binary '?F)%ܶ[\pC\\u9\Z\','',0,'?'),(_binary 'n\ɴ*9\9x^','wp-content/plugins/elementor-pro/modules/forms/module.php',0,_binary 'ըEcRoU$',_binary 'ըEcRoU$',_binary 'a\	@\\\\\\\\W\\OtHb\\%\\\qM}','',0,'?'),(_binary 'Om-\\\AmR\\\u\b','wp-content/plugins/elementor-pro/modules/forms/submissions/actions/save-to-database.php',0,_binary 'A;6 \9\t \\C\',_binary 'A;6 \9\t \\C\',_binary '\\nAjbӀ\mkxcLz{$\','',0,'?'),(_binary 'eyT Q \\(','wp-content/plugins/elementor-pro/modules/forms/submissions/component.php',0,_binary '\|\\\\^P0\Z\X\\',_binary '\|\\\\^P0\Z\X\\',_binary '0[\E\'\\P\J\f]\n\h\LXi\','',0,'?'),(_binary '͘{YE^\d2\','wp-content/plugins/elementor-pro/modules/forms/submissions/data/controller.php',0,_binary '\\RMi\t\}V!',_binary '\\RMi\t\}V!',_binary '`^[KzSu@\\|.rbhn\','',0,'?'),(_binary 'ds_N$Ŷ7\.2','wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/export.php',0,_binary 'Z;\r9tٽ',_binary 'Z;\r9tٽ',_binary '.\;v\\Z\2B\]P\· \|\\k\E','',0,'?'),(_binary '50ăg=aa\\','wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/forms-index.php',0,_binary '\f\\\2:=]U>\',_binary '\f\\\2:=]U>\',_binary 'V\r/(i&JA((/b\5\*jA	','',0,'?'),(_binary '^EàV&\v\\rV','wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/index.php',0,_binary 'I\pX\	\\\\D\Z\',_binary 'I\pX\	\\\\D\Z\',_binary '\gZ(\P$~\^ۃ~~\Z','',0,'?'),(_binary 's#\D*b\G?!\Si','wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/referer.php',0,_binary '\\by\+ ',_binary '\\by\+ ',_binary 'edx\~\ 4@u-\npK-U \R ?U','',0,'?'),(_binary '\Z6u\r}ߘ\i\\','wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/restore.php',0,_binary '\\|\zUJΠ~\\SqE',_binary '\\|\zUJΠ~\\SqE',_binary 'J(ɛ:J\SmVx\y\rPaIGz_晝7','',0,'?'),(_binary ')2J{\:\p#','wp-content/plugins/elementor-pro/modules/forms/submissions/data/forms-controller.php',0,_binary 'N\DVڰ\Z#\UM\O',_binary 'N\DVڰ\Z#\UM\O',_binary '\z- K	!.qR\a\0>e\m\\','',0,'?'),(_binary 'KОǎ{^TGw\G','wp-content/plugins/elementor-pro/modules/forms/submissions/data/responses/query-failed-response.php',0,_binary '\9J{b\&j]X',_binary '\9J{b\&j]X',_binary '{+\rOv&ڑ̌p\V8\:\Ò{\\9?','',0,'?'),(_binary '%/<\%\\\vz','wp-content/plugins/elementor-pro/modules/forms/submissions/database/entities/form-snapshot.php',0,_binary '\m\`c\x\Me:',_binary '\m\`c\x\Me:',_binary '=\)\.r4|ש\)\=.p*g\z%*\','',0,'?'),(_binary 'U2YRF1w\','wp-content/plugins/elementor-pro/modules/forms/submissions/database/migration.php',0,_binary '5\\(_is',_binary '5\\(_is',_binary 'Qq.[\`\Bx\0\4d]\k\r0','',0,'?'),(_binary '\8OZh?={?u^','wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/base-migration.php',0,_binary 'B\\.踋)\\\\',_binary 'B\\.踋)\\\\',_binary '\_Cp]o\\E\hR\\\\+\'ûy\\','',0,'?'),(_binary 'u>\hs\\\uVs\5\','wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/fix-indexes.php',0,_binary '2LE\R@PhP\',_binary '2LE\R@PhP\',_binary 'o<\ʋ\eМDE\R\|\\\I>cX\','',0,'?'),(_binary 'rz_}v\0\\\2\','wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/initial.php',0,_binary '\\f\\\V\TW\\',_binary '\\f\\\V\TW\\',_binary '6[;e\\P\t%Ϗ0\\4','',0,'?'),(_binary 'LT\"C~\[~Uс','wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/referer-extra.php',0,_binary 'P\M\!i z-\<	',_binary 'P\M\!i z-\<	',_binary ' BӭOG4`vOm\\\\N,\r','',0,'?'),(_binary '\\\\'u}\fP߃T','wp-content/plugins/elementor-pro/modules/forms/submissions/database/query.php',0,_binary 'j\	\G>M',_binary 'j\	\G>M',_binary 'N \$A\\r3^\=!G\?\\\\L\J','',0,'?'),(_binary 'u\ZYA GMU6)','wp-content/plugins/elementor-pro/modules/forms/submissions/database/repositories/form-snapshot-repository.php',0,_binary 'TS\8\SI\\x<t',_binary 'TS\8\SI\\x<t',_binary 'Jb\GJ]\\ׁ,70ʅ-\\r\\','',0,'?'),(_binary '#>3N4\ÏI<kD','wp-content/plugins/elementor-pro/modules/forms/submissions/export/csv-export.php',0,_binary 'es3җ؂\\\',_binary 'es3җ؂\\\',_binary 'u}sxYX!\/ٗ\\șr68pr','',0,'?'),(_binary '1,UB[\0\','wp-content/plugins/elementor-pro/modules/forms/submissions/personal-data.php',0,_binary '/\DZD\n\`\\_܃',_binary '/\DZD\n\`\\_܃',_binary '\4\\\\RC5_eH(Y\\?E\\"4e','',0,'?'),(_binary 'CG([\wJ$V_\','wp-content/plugins/elementor-pro/modules/forms/widgets/form.php',0,_binary 'kͭǓd(\\0\˚8\\',_binary 'kͭǓd(\\0\˚8\\',_binary '\]\j\\>Vs:\\)\n,\z:\C4','',0,'?'),(_binary '\\9\\\ղK','wp-content/plugins/elementor-pro/modules/forms/widgets/login.php',0,_binary '_1i\Z]EpS\\\',_binary '_1i\Z]EpS\\\',_binary '1sCK,T\_˵&R+Qa\\\[>\r\<\s','',0,'?'),(_binary '\ \\`\Zr\w','wp-content/plugins/elementor-pro/modules/gallery/module.php',0,_binary '\\\00\V\l',_binary '\\\00\V\l',_binary '\E\\\"\\Rg\ #)Y*٣]\\ݬSb','',0,'?'),(_binary 'sL\wѥa?\','wp-content/plugins/elementor-pro/modules/gallery/widgets/gallery.php',0,_binary '\n\\\+^\\c\r',_binary '\n\\\+^\\c\r',_binary '\nX\ĵ\n3\\+Y̎K\0\\\\Z@\7','',0,'?'),(_binary '}3\\"jx\V\','wp-content/plugins/elementor-pro/modules/global-widget/documents/widget.php',0,_binary 'A\'͓D\Z\k\',_binary 'A\'͓D\Z\k\',_binary '*\Dj\7\\Qv\"z=\j\d\','',0,'?'),(_binary '+\Md\}`\ \\B','wp-content/plugins/elementor-pro/modules/global-widget/module.php',0,_binary 'Q\V\G\!&\قy',_binary 'Q\V\G\!&\قy',_binary '4[\\\&R-B0S`x0JV`\]\Z','',0,'?'),(_binary '_\k6\i\nxw}','wp-content/plugins/elementor-pro/modules/global-widget/views/panel-template.php',0,_binary 'p9C\B\\\\',_binary 'p9C\B\\\\',_binary '-mIe\\\\\qBKRi\ӯ\\7}','',0,'?'),(_binary 'v\\h~9XS\x-','wp-content/plugins/elementor-pro/modules/global-widget/widgets/global-widget.php',0,_binary 'n[ڧW_	,A',_binary 'n[ڧW_	,A',_binary '\\;kO\.\Lx$\ө,Nv\ξb','',0,'?'),(_binary 'yKkڻ ~dȭd','wp-content/plugins/elementor-pro/modules/hotspot/module.php',0,_binary '\h8\%0:r=',_binary '\h8\%0:r=',_binary '/z\0\!Ej;\q\~\\\jz\%Ԅ','',0,'?'),(_binary 'Pݸ \ׯl\\14','wp-content/plugins/elementor-pro/modules/hotspot/widgets/hotspot.php',0,_binary '\CkCɿYNou\z(',_binary '\CkCɿYNou\z(',_binary '``UUtEϳI\r\\M\G\H\\\Z','',0,'?'),(_binary '\D\m\Zg\E','wp-content/plugins/elementor-pro/modules/library/classes/shortcode.php',0,_binary 'j>[x.*\\',_binary 'j>[x.*\\',_binary '\W\]+]Dmѻ&\*\\\x$yǌ\\','',0,'?'),(_binary '\ ٫\\ZsYP\ei\','wp-content/plugins/elementor-pro/modules/library/module.php',0,_binary ' %i\_M7\',_binary ' %i\_M7\',_binary 'vдF\Y`\\z)_\?s\\9.\( 6ai\b\P','',0,'?'),(_binary '\\Q\G','wp-content/plugins/elementor-pro/modules/library/widgets/template.php',0,_binary '\\{Xacg0\',_binary '\\{Xacg0\',_binary '\\?}\ڪQ\\~\ڹQR\;\䠽E','',0,'?'),(_binary 'E*\\n7viۣ','wp-content/plugins/elementor-pro/modules/library/wp-widgets/elementor-library.php',0,_binary '\\\\ZF)>v',_binary '\\\\ZF)>v',_binary '\\aT=XC$;\6{l','',0,'?'),(_binary ' \\EV\\1','wp-content/plugins/elementor-pro/modules/license/module.php',0,_binary '\\r8s\'6X\y-T\',_binary '\\r8s\'6X\y-T\',_binary '2nɒ,ñ\\\@T\r*\.yv\','',0,'?'),(_binary 'k1\\\M	\'','wp-content/plugins/elementor-pro/modules/lottie/module.php',0,_binary '\'jR%#O',_binary '\'jR%#O',_binary '\vٹ\Lߠ\٠Θؒ\\,\\'hqh\ZcX','',0,'?'),(_binary '\t1̬Du+\8E0','wp-content/plugins/elementor-pro/modules/lottie/widgets/lottie.php',0,_binary 'QG }Ig	Lk\\"',_binary 'QG }Ig	Lk\\"',_binary 'm\\z@\[ȭ2y\	W\K%','',0,'?'),(_binary '}\t7,\OI$dj\','wp-content/plugins/elementor-pro/modules/motion-fx/controls-group.php',0,_binary 'M\\q[g-&-\',_binary 'M\\q[g-&-\',_binary '\\vz\0ÿǶ\\kD*\','',0,'?'),(_binary ',\r)(\\h?','wp-content/plugins/elementor-pro/modules/motion-fx/module.php',0,_binary '\r.\\=\I',_binary '\r.\\=\I',_binary '\Nt\ێ\c C\lhr\v\>c~','',0,'?'),(_binary '\e\3C\)8\\0','wp-content/plugins/elementor-pro/modules/nav-menu/module.php',0,_binary ']-\\(r\\',_binary ']-\\(r\\',_binary 'r\D$r\A\\\ڳ\..\\\cĖ\.ص','',0,'?'),(_binary 'k\\\j\Yt%\lm','wp-content/plugins/elementor-pro/modules/nav-menu/widgets/nav-menu.php',0,_binary '\\'3\ҩ',_binary '\\'3\ҩ',_binary '3exV\_u8Ȟ\j{\\l3w/','',0,'?'),(_binary 'X\0K]A=jp&\0','wp-content/plugins/elementor-pro/modules/payments/classes/payment-button.php',0,_binary '\A\\\\\\͇x4',_binary '\A\\\\\\͇x4',_binary 'oս݋\&$Z6~\-Ŕu=t/Nv*','',0,'?'),(_binary '\\[N\Xw}\uZ\n','wp-content/plugins/elementor-pro/modules/payments/module.php',0,_binary 'm).\\N/Y\֟',_binary 'm).\\N/Y\֟',_binary '\ly\\נ!Nuա\\i\Xw\\h\\\\','',0,'?'),(_binary '-j^\yp}4X$I','wp-content/plugins/elementor-pro/modules/payments/widgets/paypal-button.php',0,_binary 'ub<\0\\Od\I',_binary 'ub<\0\\Od\I',_binary '2\G\n\|I\\H?\\Oy\ߘ\','',0,'?'),(_binary '\\$\d<	;\','wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/browsers.svg',0,_binary 'hrGGEJ1\L\',_binary 'hrGGEJ1\L\',_binary '\.\/\6ZvK+\','',0,'?'),(_binary 'J	ˠ\nhBTizg','wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/devices.svg',0,_binary 'B\-xh\x\8)\\',_binary 'B\-xh\x\8)\\',_binary '\H^>`\\hi5w*A&b\,\	8-','',0,'?'),(_binary 'ru\b\Ep=]\','wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/logged_in.svg',0,_binary '\J\\\x\(',_binary '\J\\\x\(',_binary ',\n\ֳFGt_]\K\?ۨ熼','',0,'?'),(_binary 'ydg!F2|	m\\','wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/page_views.svg',0,_binary '\r)2\\x',_binary '\r)2\\x',_binary 'F>ݞ\\5`T0j( rLr\T}_','',0,'?'),(_binary '\!ΕER޿ۧ','wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/sessions.svg',0,_binary 'B\h#;-f\"\\#Ŷy',_binary 'B\h#;-f\"\\#Ŷy',_binary '\\\\AÕ-\sc\ \\(\zP\&^\RnQ','',0,'?'),(_binary '\Z~^^\\Y\j','wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/sources.svg',0,_binary 'O]\\t$\8 2E',_binary 'O]\\t$\8 2E',_binary '/\\m\3dghcc+bR^黥\(','',0,'?'),(_binary '\p\\\\\\}_#!','wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/times.svg',0,_binary 'n-GLʜs',_binary 'n-GLʜs',_binary '\#\iR\\tGy\b\?b!tq)nox','',0,'?'),(_binary 'RK(F^d\C','wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/url.svg',0,_binary 'V\%r\\Z\=M\-',_binary 'V\%r\\Z\=M\-',_binary 'q\H\\?X\r\\X\\0A>j.\Q\','',0,'?'),(_binary '\)v\Λ\\U\$','wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/visits.svg',0,_binary 'n-GLʜs',_binary 'n-GLʜs',_binary '\#\iR\\tGy\b\?b!tq)nox','',0,'?'),(_binary ' {m\nܣ\\eR)','wp-content/plugins/elementor-pro/modules/popup/assets/images/timing-tab.svg',0,_binary '\!*\9Ɗ4lLb',_binary '\!*\9Ɗ4lLb',_binary '\nĳ\s!\nou*Y;\\\\X%3y\".W\\q','',0,'?'),(_binary '\gG ZHt\\','wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/click.svg',0,_binary 'lDZ]\\\r|5f/-8',_binary 'lDZ]\\\r|5f/-8',_binary '\^\\SF:ә9\\\J\g\\\'q\n','',0,'?'),(_binary 'f؄\$\[7|J\','wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/exit_intent.svg',0,_binary '܏Yeix',_binary '܏Yeix',_binary 'k!c\,YRg\u\\W`I&\;\޴\U','',0,'?'),(_binary 'Y2\t\\\V>','wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/inactivity.svg',0,_binary 'Nq\N\"p赺g$',_binary 'Nq\N\"p赺g$',_binary '\P3𧦡&Y]\\NZ&\\":+\"K%*','',0,'?'),(_binary 'fX\^[MS\\L','wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/page_load.svg',0,_binary 'Mvˁ\\'\N\\\',_binary 'Mvˁ\\'\N\\\',_binary '\[\Cl\\D\:7z\'j\\XQ\r\X\0\','',0,'?'),(_binary '>وky\\n\\rz\','wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/scrolling.svg',0,_binary '\n)G\'NΣ',_binary '\n)G\'NΣ',_binary 'w:PۭhƷ\bn\[\\R\=Ls\ndb\','',0,'?'),(_binary 'Y\T\n*7v\]\PF#','wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/scrolling_to.svg',0,_binary 'R\n\A\\O;n',_binary 'R\n\A\\O;n',_binary '\7dz7;-/I\xkah	\\\Q\MC','',0,'?'),(_binary '@\\A?,\@\','wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers-tab.svg',0,_binary '\|3`JHrߜ',_binary '\|3`JHrߜ',_binary ';c\pg+\\QpTs\+\\\x\4','',0,'?'),(_binary '\Jh#Q:Tn\jh','wp-content/plugins/elementor-pro/modules/popup/display-settings/base.php',0,_binary 'G/\ \ܤ#\r',_binary 'G/\ \ܤ#\r',_binary 'Ͱh\Ϲ\\\)\	)\\RF;E]5\r','',0,'?'),(_binary 'S X\\}AV','wp-content/plugins/elementor-pro/modules/popup/display-settings/timing.php',0,_binary 'G\0H2w\r(',_binary 'G\0H2w\r(',_binary 'Rf|\\\\\,R\\9\\抡u\gL\','',0,'?'),(_binary 'Qa2#f}\\>','wp-content/plugins/elementor-pro/modules/popup/display-settings/triggers.php',0,_binary 'W/bqTn\s\Cy',_binary 'W/bqTn\s\Cy',_binary '[\չ8&ߞ\\(49){\Q\yn','',0,'?'),(_binary '\\G\\1ƀ\\0','wp-content/plugins/elementor-pro/modules/popup/document.php',0,_binary '\\M%TO',_binary '\\M%TO',_binary '\\\{\̓\;:\3\\9\7N\j@\nB\\','',0,'?'),(_binary 'c=_!\\p\\','wp-content/plugins/elementor-pro/modules/popup/form-action.php',0,_binary 'r\\qS`\6aG',_binary 'r\\qS`\6aG',_binary '\s,$gȤ\\\er^Ε\\꺎5','',0,'?'),(_binary 'x\\\\EAe}>','wp-content/plugins/elementor-pro/modules/popup/module.php',0,_binary '}Rd\p9wyrS;Z',_binary '}Rd\p9wyrS;Z',_binary 'j\\\0\n\\K\\\\!Bյ0\x','',0,'?'),(_binary '\\Wp3<\\Z\y\"','wp-content/plugins/elementor-pro/modules/popup/tag.php',0,_binary 'uj7\]Q=}\0S',_binary 'uj7\]Q=}\0S',_binary ',qA\)\\y\\\N9̇ם\6L\Q','',0,'?'),(_binary 'g<CX\'s\AN\\\','wp-content/plugins/elementor-pro/modules/posts/module.php',0,_binary '\$\\WGR-ڶ',_binary '\$\\WGR-ڶ',_binary '\_EB	6j\ \tXK\YUk','',0,'?'),(_binary '\\%H\\\	U`','wp-content/plugins/elementor-pro/modules/posts/skins/skin-base.php',0,_binary 'Mƿ?W?\r\Z,әr\',_binary 'Mƿ?W?\r\Z,әr\',_binary 'KG\\:6\\\DvӐ3ܡOeu\\0VrJ','',0,'?'),(_binary '=}h\0)pbTj5\0','wp-content/plugins/elementor-pro/modules/posts/skins/skin-cards.php',0,_binary 'Aww\\\\r+',_binary 'Aww\\\\r+',_binary 'l?\:\\6r$	Gr`\\"=s\%ɺ\\*','',0,'?'),(_binary '7=\!\ѥU\','wp-content/plugins/elementor-pro/modules/posts/skins/skin-classic.php',0,_binary 'ȇ\J$$\',_binary 'ȇ\J$$\',_binary 'Tv,i\\7\\r>fz,\HU~ir?9&Z c','',0,'?'),(_binary ' \\-W>1 i\Zr\\','wp-content/plugins/elementor-pro/modules/posts/skins/skin-content-base.php',0,_binary 'c9\٭\'1X\Z\z',_binary 'c9\٭\'1X\Z\z',_binary '\7Ir\\~\p#ܱ(\4ձ&#\κA>','',0,'?'),(_binary '\E\M\\\p','wp-content/plugins/elementor-pro/modules/posts/skins/skin-full-content.php',0,_binary 'y{Uj\Vl&(U_',_binary 'y{Uj\Vl&(U_',_binary 'n\\rF	j\'h\7\Z\ِ\A\7J.\\~5','',0,'?'),(_binary '\\GԈ{\n\\'','wp-content/plugins/elementor-pro/modules/posts/widgets/portfolio.php',0,_binary '\p1\\'o\Hr\r',_binary '\p1\\'o\Hr\r',_binary '_\ni᝴~\0w\<sr\	\\\"\','',0,'?'),(_binary '&Փ[\4y*','wp-content/plugins/elementor-pro/modules/posts/widgets/posts-base.php',0,_binary '\-Q^>\+}\',_binary '\-Q^>\+}\',_binary 'yK\f+#ⱪo(\.\\\ߠ᥆n%b','',0,'?'),(_binary 'u\+\F\G','wp-content/plugins/elementor-pro/modules/posts/widgets/posts.php',0,_binary '	\o`\?!m\r[\D',_binary '	\o`\?!m\r[\D',_binary 'LYA\S^\\r\,\Z\\(.\.B','',0,'?'),(_binary '4a(#^\\m','wp-content/plugins/elementor-pro/modules/pricing/module.php',0,_binary '+<˹I\Xs\',_binary '+<˹I\Xs\',_binary 'qA^v@\e0\nxl\Z@I\e8\U\','',0,'?'),(_binary '2%B̾Uq	e0','wp-content/plugins/elementor-pro/modules/pricing/widgets/price-list.php',0,_binary '\4G.\\C$\\\"?w',_binary '\4G.\\C$\\\"?w',_binary 'ThX\\\?z\I\'80m${RcLR','',0,'?'),(_binary '\dr΋\j\\'Y\\R','wp-content/plugins/elementor-pro/modules/pricing/widgets/price-table.php',0,_binary 'B]B\p\t>q\',_binary 'B]B\p\t>q\',_binary '\Uqt@7\\\BfB\ᘩ&9o\k\\','',0,'?'),(_binary '\\:t\cpC+(','wp-content/plugins/elementor-pro/modules/query-control/classes/elementor-post-query.php',0,_binary '\>Лj\\Gy*hK',_binary '\>Лj\\Gy*hK',_binary '3c\F\\\Ϻ\\b\@r\S)','',0,'?'),(_binary '[)\G\ny\vJI','wp-content/plugins/elementor-pro/modules/query-control/classes/elementor-related-query.php',0,_binary '.5w8.bdט',_binary '.5w8.bdט',_binary '_w\Z\Nn\\E2\V;h(y\\.\','',0,'?'),(_binary '\\Ê6P\\0-\b','wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-posts.php',0,_binary 'F\o\\\Z\/',_binary 'F\o\\\Z\/',_binary '_\SP\	a{f<~D0A\\vS\','',0,'?'),(_binary ']nbx','wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-query.php',0,_binary '\ΰ\)19ו^',_binary '\ΰ\)19ו^',_binary '\\4j1t<#\uyGʗ\Ͼ\0\\\dm','',0,'?'),(_binary '\vOxk\5\','wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-related.php',0,_binary ')ݱo4\1@U	',_binary ')ݱo4\1@U	',_binary '~\ZE\]W\X8\ZD\\1lG\r\','',0,'?'),(_binary '&y\qG\\\~\r','wp-content/plugins/elementor-pro/modules/query-control/controls/query.php',0,_binary '\b\h9\~\',_binary '\b\h9\~\',_binary '>Kn\3#\\Z~\zֿvT)ׂޅ7\\','',0,'?'),(_binary '\\\!jG\4e#o','wp-content/plugins/elementor-pro/modules/query-control/module.php',0,_binary '߱PҺPW-j&\'\',_binary '߱PҺPW-j&\'\',_binary '\\\E^SO$q\H\.\Z\\#`ێ','',0,'?'),(_binary 'xi%\U2WeS\\','wp-content/plugins/elementor-pro/modules/role-manager/module.php',0,_binary 'Ԍ,}	RI1\l\'\',_binary 'Ԍ,}	RI1\l\'\',_binary '\im\S8\χ}F\)\q(\I\<T','',0,'?'),(_binary '=2%\)^ςv\\0','wp-content/plugins/elementor-pro/modules/screenshots/module.php',0,_binary '~\~:bb',_binary '~\~:bb',_binary 'ku\=\\\\q\ޕ0\lKD\\΅\\~','',0,'?'),(_binary '/\D\oW0\b^\','wp-content/plugins/elementor-pro/modules/screenshots/render-mode-screenshot.php',0,_binary 'x􀰅+\.}\nDx0',_binary 'x􀰅+\.}\nDx0',_binary '9&\\\3\\l\\U\r%2S0\\','',0,'?'),(_binary 'idOҮ\a','wp-content/plugins/elementor-pro/modules/screenshots/screenshot.php',0,_binary 'ʶJ\\Z\3zjl[\\',_binary 'ʶJ\\Z\3zjl[\\',_binary '#f\\/K;C`\\b\$\\\'X5#:X','',0,'?'),(_binary 'c(y\Fz!r\\\','wp-content/plugins/elementor-pro/modules/share-buttons/module.php',0,_binary '\\N(\\nK',_binary '\\N(\\nK',_binary '1c\\n\\\^o\\\D\k˙3<ǧ','',0,'?'),(_binary '\\p\<%*#\\','wp-content/plugins/elementor-pro/modules/share-buttons/widgets/share-buttons.php',0,_binary 'kc\\\'\u\\KA-',_binary 'kc\\\'\u\\KA-',_binary '0\N,\'\"\	eL<\\[*^\6̇\','',0,'?'),(_binary '$[R.B\\@\','wp-content/plugins/elementor-pro/modules/slides/module.php',0,_binary '&?\\'2:\I\Qko\',_binary '&?\\'2:\I\Qko\',_binary 'O<\ѱwX6\r&\\ZBO\0>','',0,'?'),(_binary 'M\\s\xТ^\{)׸\','wp-content/plugins/elementor-pro/modules/slides/widgets/slides.php',0,_binary '˕1x\rfw\+c',_binary '˕1x\rfw\+c',_binary 'BCȓ3ࣳw\hS!\J\T\c\n','',0,'?'),(_binary ')>\ _\Q\r','wp-content/plugins/elementor-pro/modules/social/classes/facebook-sdk-manager.php',0,_binary '\Uk7]>Ot\',_binary '\Uk7]>Ot\',_binary '5\#ŒuEȗιg\!\Z','',0,'?'),(_binary 'H#ލ$Y\C|CZ\','wp-content/plugins/elementor-pro/modules/social/module.php',0,_binary 'c0\L\\l',_binary 'c0\L\\l',_binary '&\\l1\\cJJ8_\r :ǘ\','',0,'?'),(_binary 'nB_\\R\u~','wp-content/plugins/elementor-pro/modules/social/widgets/facebook-button.php',0,_binary '`z=Js^\(',_binary '`z=Js^\(',_binary '\\4\\Ejn[iv\ԓ\sԛ#R7\5\','',0,'?'),(_binary 'oZu\\\on','wp-content/plugins/elementor-pro/modules/social/widgets/facebook-comments.php',0,_binary '\}{x4_9\',_binary '\}{x4_9\',_binary 'j\?Pg\Z;{\hClc\Z\n','',0,'?'),(_binary '~!x%\ \y','wp-content/plugins/elementor-pro/modules/social/widgets/facebook-embed.php',0,_binary 'De\KL\RSJ',_binary 'De\KL\RSJ',_binary '/e<\,\b\"+{\_\\Q*:4','',0,'?'),(_binary '7(K\UJ\&n\\\','wp-content/plugins/elementor-pro/modules/social/widgets/facebook-page.php',0,_binary '\aT\Y\\'AK',_binary '\aT\Y\\'AK',_binary 'Z=g\u-NR`pa\\\j:\&횩[I','',0,'?'),(_binary ']\A/?\Z\^!S','wp-content/plugins/elementor-pro/modules/sticky/module.php',0,_binary '\`\\\0z#\',_binary '\`\\\0z#\',_binary '\ZGWuhkg|y\\\\\\CW$\a','',0,'?'),(_binary '\\d\*)4\8c\A','wp-content/plugins/elementor-pro/modules/table-of-contents/module.php',0,_binary '\xD\PgQ!\\ok',_binary '\xD\PgQ!\\ok',_binary '\\\rm\'\r֧\+dw\(4\na~ˎ','',0,'?'),(_binary 'iiO\s\`\m0<,\;','wp-content/plugins/elementor-pro/modules/table-of-contents/widgets/table-of-contents.php',0,_binary '\\ҷ\\\[\\',_binary '\\ҷ\\\[\\',_binary 'd\\r3.v\	4d\a\h9-]-h\M','',0,'?'),(_binary '=\\:\T\r^^Lg','wp-content/plugins/elementor-pro/modules/theme-builder/api.php',0,_binary 'yek\\tق\\',_binary 'yek\\tق\\',_binary 'A\\0k\ɴV\0\\\\E\\t:','',0,'?'),(_binary '9\Z\J\\~\\\\H','wp-content/plugins/elementor-pro/modules/theme-builder/assets/images/conditions-tab.svg',0,_binary 's0F\\n#6|',_binary 's0F\\n#6|',_binary '\rU\19N]\2@8	p	\^4-tis%å','',0,'?'),(_binary 'z\O|\ch\ѵ\w','wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-cache.php',0,_binary 'm@\ p\\7\X',_binary 'm@\ p\\7\X',_binary 'Y\\r\@A/bW\{fHb\\\_\\Y','',0,'?'),(_binary '\\a&\ls{1)0','wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php',0,_binary 'tR)\e\\\NUI-D',_binary 'tR)\e\\\NUI-D',_binary '\\*Mc..\\,\\\\V;\\`Q\\h\','',0,'?'),(_binary '\@89H\\J\','wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-repeater.php',0,_binary '\0-\\e\?s\n\\s\0',_binary '\0-\\e\?s\n\\s\0',_binary 'TI\֟\\5!\\\\f($uK','',0,'?'),(_binary '\nyj?@J0\','wp-content/plugins/elementor-pro/modules/theme-builder/classes/locations-manager.php',0,_binary 'bð×3J<A|\n\"',_binary 'bð×3J<A|\n\"',_binary 'x̹\\Mb\\Z~l\\r\++\_m{`\','',0,'?'),(_binary '\\>0!F\\\Z','wp-content/plugins/elementor-pro/modules/theme-builder/classes/preview-manager.php',0,_binary '}\z:\[\',_binary '}\z:\[\',_binary '! \V\:\d\\\D\K\\\LZJz,','',0,'?'),(_binary '\5Py=\\\\6','wp-content/plugins/elementor-pro/modules/theme-builder/classes/template-conditions.php',0,_binary 'd\>pg\l\nR\',_binary 'd\>pg\l\nR\',_binary 'Æ*R\\\\N\0n!}i\8\'vל*','',0,'?'),(_binary 'bq\kQ!\','wp-content/plugins/elementor-pro/modules/theme-builder/classes/templates-types-manager.php',0,_binary '4Ϟ\	m6|[M\',_binary '4Ϟ\	m6|[M\',_binary 'ۜ;!\qyvڅ\Q>?Qzɚ\Z\r-HzC\Z\','',0,'?'),(_binary 'D4\V&}H\4\3\','wp-content/plugins/elementor-pro/modules/theme-builder/classes/theme-support.php',0,_binary 'm\RD\x7Ė\Z\',_binary 'm\RD\x7Ė\Z\',_binary ';/wf\n\\"F\<c:\\ZkNl\\\r','',0,'?'),(_binary 'juR@]ܜ+3~9\i','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/any-child-of-term.php',0,_binary 'Gf	\?\\\',_binary 'Gf	\?\\\',_binary 'LD\Zofuh/iUԡ^쌱]\۝A\0','',0,'?'),(_binary ' \K1\','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/any-child-of.php',0,_binary '\\YT:\\v\',_binary '\\YT:\\v\',_binary 'sG\\\\Y\7^~Fy{1\-k\p\r/\M','',0,'?'),(_binary '\\\}\Q@q\f\','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/archive.php',0,_binary '^\\5\0&\\\\\k',_binary '^\\5\0&\\\\\k',_binary 'l\W2Cv3F:\\\&<d\7w#\x\3\','',0,'?'),(_binary 'R<V\\Z\иE','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/author.php',0,_binary '֕\\nœ\\'9޴\J\',_binary '֕\\nœ\\'9޴\J\',_binary 'P)s\˴큼j7vR!L\','',0,'?'),(_binary 'wZ\^\/\֥ɽ','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/by-author.php',0,_binary '\"rk\-g\0\`',_binary '\"rk\-g\0\`',_binary '#iL\ύ${\\?6$\'x6RcjUUE\','',0,'?'),(_binary 'O+V;\0\}yUC1','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/child-of-term.php',0,_binary ':r­TV\7N%',_binary ':r­TV\7N%',_binary 'H4gAbã\#\\C\nV뺥&uMs\','',0,'?'),(_binary ':\]W\7','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/child-of.php',0,_binary 'gEh\Ɏ[$K\r\',_binary 'gEh\Ɏ[$K\r\',_binary ' \O\=)=AxAk\=x/40\h-','',0,'?'),(_binary '\\Zwy:[u`o?\','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/condition-base.php',0,_binary '\+l/\\'F\>\\9r',_binary '\+l/\\'F\>\\9r',_binary '>\j4\\Ȣ_]yh\!\y\\\\6','',0,'?'),(_binary 'mize\Kx\ӐMl','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/date.php',0,_binary ' τ]1߆ڔ',_binary ' τ]1߆ڔ',_binary 'yjM\\f[KQҘj\Z=\\\8','',0,'?'),(_binary 'U7\>b~\Z\\"\\<','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/front-page.php',0,_binary '\:\*%\\K\/\"])',_binary '\:\*%\\K\/\"])',_binary 'S\+PJ\sa~9o`|k?\1b\','',0,'?'),(_binary 'cxf\\\r','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/general.php',0,_binary 'j b(HЇ\N@6',_binary 'j b(HЇ\N@6',_binary '`\Y=	\^y\U\ӰI# u-\\(\','',0,'?'),(_binary '˔i\\\tȖq\','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/in-sub-term.php',0,_binary 's\\r\A\-',_binary 's\\r\A\-',_binary ':UG\`wg[\w\\\/[2Z1','',0,'?'),(_binary 'MD/\"\0\ï','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/in-taxonomy.php',0,_binary '\~J|s@\%o',_binary '\~J|s@\%o',_binary 'C&N\ޓC{Ë\jX Bl6o$_','',0,'?'),(_binary '\˪l[=c\"V-','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/not-found404.php',0,_binary '.\\\D\$߻\',_binary '.\\\D\$߻\',_binary '\vQ\\qr9*-\e\I8T\g˙	','',0,'?'),(_binary 'W\qc\.\g','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post-type-archive.php',0,_binary 'H\\0c\D-\\c',_binary 'H\\0c\D-\\c',_binary '\\\%xH1eʎf4M4=\"K!!','',0,'?'),(_binary 'IH\i>-\r˟\\	m','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post-type-by-author.php',0,_binary 'ڃ\"j9\V\X:R',_binary 'ڃ\"j9\V\X:R',_binary 'D	\[.\\r5xɭ\Y\\a<\\rw','',0,'?'),(_binary 'j2\\;\ng{0E0\','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post.php',0,_binary '\T\jҺ	\	I',_binary '\T\jҺ	\	I',_binary 'WH$\uESH\Cm','',0,'?'),(_binary '#\r-n\g','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/search.php',0,_binary '\j\\h\ngWN\',_binary '\j\\h\ngWN\',_binary 'zEpW\HY\\0!dXP\\/T\ny\\c','',0,'?'),(_binary '\Q\\0!\;\J','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/singular.php',0,_binary 'f\5.Թ)s\~',_binary 'f\5.Թ)s\~',_binary 'Cu8FƤ\'\\n\A\S\0\@_^]@_\L\'','',0,'?'),(_binary 'v\\b!D\㝻s','wp-content/plugins/elementor-pro/modules/theme-builder/conditions/taxonomy.php',0,_binary '^\"i\rævzFE',_binary '^\"i\rævzFE',_binary 'S>{V2\nAM:\\\rY\&\Z\e','',0,'?'),(_binary '\KD\'*\\^Ặ','wp-content/plugins/elementor-pro/modules/theme-builder/documents/archive-single-base.php',0,_binary 'Xˎ\]̑)7',_binary 'Xˎ\]̑)7',_binary '\hj(\6!+\\Akn3˪\P\\\','',0,'?'),(_binary '^T_[$Z\{pK\','wp-content/plugins/elementor-pro/modules/theme-builder/documents/archive.php',0,_binary '\MX[5r\\\\',_binary '\MX[5r\\\\',_binary '\}2\oec0\\Poܮw?\|`\l','',0,'?'),(_binary '\Ӵ:\\DkZ\x\','wp-content/plugins/elementor-pro/modules/theme-builder/documents/error-404.php',0,_binary '0sޛM<Gp',_binary '0sޛM<Gp',_binary '\l\S,A\\JF\Co\k\:','',0,'?'),(_binary '\[\\\ݒ8U\i\\Q','wp-content/plugins/elementor-pro/modules/theme-builder/documents/footer.php',0,_binary 'LAK\\lځA\',_binary 'LAK\\lځA\',_binary '/\\$ԠBܚ\\:\jd\5\','',0,'?'),(_binary '7\\Tn!U\n\n\','wp-content/plugins/elementor-pro/modules/theme-builder/documents/header-footer-base.php',0,_binary ',}n\+eR8E<;',_binary ',}n\+eR8E<;',_binary '\\\\\{-]	\"ǲ\Z\4\\E>','',0,'?'),(_binary '5?x+b\\\=J\','wp-content/plugins/elementor-pro/modules/theme-builder/documents/header.php',0,_binary '\(A:L\\\\\',_binary '\(A:L\\\\\',_binary '\rVݡX\3\(2F7\Z\LX0<','',0,'?'),(_binary '\(\^\d7P~y1a','wp-content/plugins/elementor-pro/modules/theme-builder/documents/search-results.php',0,_binary '0P\\%͹\\j',_binary '0P\\%͹\\j',_binary ' *]؈\!\^ -h\\\ɉԫ8\','',0,'?'),(_binary 'wKd#Iq\F\\!','wp-content/plugins/elementor-pro/modules/theme-builder/documents/section.php',0,_binary 'XiY\-m\<<V',_binary 'XiY\-m\<<V',_binary 'zLJ\O\n\KeQ\\\[Om\\\','',0,'?'),(_binary '/>bYy\X\\20','wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-base.php',0,_binary 'f!I\pfm(',_binary 'f!I\pfm(',_binary 'v\<\\@]]G\cj\[n\~!','',0,'?'),(_binary '-l	n̎i.V\\','wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-page.php',0,_binary '؎\\Hfhv\\\\nL',_binary '؎\\Hfhv\\\\nL',_binary ']0%{I$\%\r-R_','',0,'?'),(_binary '0\\F\\O\','wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-post.php',0,_binary 'm\=NpvJ\\'!=',_binary 'm\=NpvJ\\'!=',_binary 'hH`\>\\\\ei2U\\*\A$iS','',0,'?'),(_binary 'q\ӣJ~F\\1\O','wp-content/plugins/elementor-pro/modules/theme-builder/documents/single.php',0,_binary '\n\P5,\\\\\',_binary '\n\P5,\\\\\',_binary '/pٹ&`^0lPR\3\\\^UcIB]','',0,'?'),(_binary 'v]cI\}\\æ{','wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-document.php',0,_binary 'G\t-dA\'1B',_binary 'G\t-dA\'1B',_binary '=b\1\\\\rLXL\\Oq6r\@(','',0,'?'),(_binary 'X\z\9h0t\','wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-page-document.php',0,_binary 'Q	6\`',_binary 'Q	6\`',_binary '\^jaHgBtHRv)\)y!Vm\5','',0,'?'),(_binary '\\׺y\8\','wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-section-document.php',0,_binary '\\)\iCQ\*B0<\Y',_binary '\\)\iCQ\*B0<\Y',_binary 'o\R\\\]d\,i\J\L\','',0,'?'),(_binary 'q\U	\nF\x','wp-content/plugins/elementor-pro/modules/theme-builder/module.php',0,_binary '\\\{\4\\%',_binary '\\\{\4\\%',_binary 'au܈С%Xv\0K\\'\\\\@K\jE','',0,'?'),(_binary 'pJ҅\GRṕP\\','wp-content/plugins/elementor-pro/modules/theme-builder/skins/post-comments-skin-classic.php',0,_binary 'Ľ\\v,\ȯ[\',_binary 'Ľ\\v,\ȯ[\',_binary '.Sw)Tl%\Z\\IEn\','',0,'?'),(_binary 'oY\n-(\q,V\=','wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-base.php',0,_binary '\\8\rӮ9ѕ\',_binary '\\8\rӮ9ѕ\',_binary 'i\Ō!\iٴ\@\\	{m\'\#','',0,'?'),(_binary '\sS%\jT\','wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-cards.php',0,_binary '\\\\Z0\L \\',_binary '\\\\Z0\L \\',_binary '~^&X\"MCc\\\l>\\\\\1\f\','',0,'?'),(_binary '\4\g`\F','wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-classic.php',0,_binary '\\pu}Di\Z\"\:',_binary '\\pu}Di\Z\"\:',_binary 'o\^\>z6l\\UyxHد\GK\nVRT','',0,'?'),(_binary 'U6\"+}yYs','wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-full-content.php',0,_binary ',\S\C\\\\{',_binary ',\S\C\\\\{',_binary '\r\hJQH\'˩	\1bә\\\ȓhoEE','',0,'?'),(_binary '9\\`̻\$Q\Z','wp-content/plugins/elementor-pro/modules/theme-builder/theme-support/generate-press-theme-support.php',0,_binary '\\\kC\Φt1',_binary '\\\kC\Φt1',_binary 'Z,Jmq\\BZ\(\\b\\\\¡2\?','',0,'?'),(_binary 'P\Ibx','wp-content/plugins/elementor-pro/modules/theme-builder/theme-support/safe-mode-theme-support.php',0,_binary '/f\ZdH!7$\s',_binary '/f\ZdH!7$\s',_binary '\\o\E+\9V\Q &<\0\l|','',0,'?'),(_binary '\n!9V\Qs7=','wp-content/plugins/elementor-pro/modules/theme-builder/views/comments-template.php',0,_binary 'E;\0\M&\\',_binary 'E;\0\M&\\',_binary 'ϋtT.\<\\'\Zq)d\'\Y','',0,'?'),(_binary '\\rm\_\\x','wp-content/plugins/elementor-pro/modules/theme-builder/views/panel-template.php',0,_binary '{\\0_\R\\',_binary '{\\0_\R\\',_binary 'ҧ\\	WX>6vV\PTb\\?\~%ge|\','',0,'?'),(_binary 'X\%\N9Y\bB','wp-content/plugins/elementor-pro/modules/theme-builder/views/theme-support-footer.php',0,_binary '`Y;	\\\\\Z\\H',_binary '`Y;	\\\\\Z\\H',_binary 'gFi|\8\-k:\\GTNa\/4','',0,'?'),(_binary 'rQ\;J\\RM\','wp-content/plugins/elementor-pro/modules/theme-builder/views/theme-support-header.php',0,_binary '\\r\\}mC#87&',_binary '\\r\\}mC#87&',_binary '\\L^8)2WnK2&j\TT\\Y5Dq','',0,'?'),(_binary 'fu5}0\l8g\','wp-content/plugins/elementor-pro/modules/theme-builder/widgets/archive-posts.php',0,_binary 'jcoREᆻ)\',_binary 'jcoREᆻ)\',_binary '\11LX\w\A\nb.Q~C>U','',0,'?'),(_binary 'WTn\Ԏy\^ޖ\','wp-content/plugins/elementor-pro/modules/theme-builder/widgets/archive-title.php',0,_binary 'W8\"U׿TpTݮ',_binary 'W8\"U׿TpTݮ',_binary 'H\i\\\Ԟ\|B\w\kCo\n3\Zȼ\','',0,'?'),(_binary '\~\q\:ӄ\\','wp-content/plugins/elementor-pro/modules/theme-builder/widgets/page-title.php',0,_binary '\=P\2IKlO$x',_binary '\=P\2IKlO$x',_binary '>\'\ojuPD:\h>ArА\','',0,'?'),(_binary ';Tbʹ\(@','wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-content.php',0,_binary '\(\>-!w$\\\r',_binary '\(\>-!w$\\\r',_binary '\e\IT:07\r\F\e?87\rV1AL','',0,'?'),(_binary '\ۺ\ޅ;\\\'','wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-excerpt.php',0,_binary 'm\E\tN\\R\˦&j',_binary 'm\E\tN\\R\˦&j',_binary '\Jv\~\\Zgn^\b |Qn)9Ðςp\u','',0,'?'),(_binary '.\a$ה\'m','wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-featured-image.php',0,_binary '\tF\\'`\ɋ;\M',_binary '\tF\\'`\ɋ;\M',_binary 'Qhܞ\EI\x|@ۜ\LT\446','',0,'?'),(_binary 'n@\u\،^X\\X\','wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-title.php',0,_binary '\js\\nC/\',_binary '\js\\nC/\',_binary 'E,(\ڃ pz/\\\3rU ,äʎX','',0,'?'),(_binary 'oZ\E\A*\','wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-logo.php',0,_binary 'h\]І\(Amk\U',_binary 'h\]І\(Amk\U',_binary 'gr\!7{Oy\h\W+\\\nՈۡSy\\','',0,'?'),(_binary '3@<\J\uI','wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-title.php',0,_binary '\,\F\!w\/\',_binary '\,\F\!w\/\',_binary '\wEB\X ޵z}\Z!5\[kT','',0,'?'),(_binary 'B\_Q\fe9\JA','wp-content/plugins/elementor-pro/modules/theme-builder/widgets/title-widget-base.php',0,_binary 'ҟr\i\s\f|',_binary 'ҟr\i\s\f|',_binary 'Վ86O_\\\\Z/\=p\/<ӟA <+','',0,'?'),(_binary 'D\\\f \PQb]\','wp-content/plugins/elementor-pro/modules/theme-elements/module.php',0,_binary '\\\A+$Cݭ=Q0',_binary '\\\A+$Cݭ=Q0',_binary '\#(31:\ݽ\'. ھ0_\','',0,'?'),(_binary '5|\9O\\	g@','wp-content/plugins/elementor-pro/modules/theme-elements/widgets/author-box.php',0,_binary '+˲\r$\"J-\',_binary '+˲\r$\"J-\',_binary '\nT\*|OZTNRL\1h#)G!','',0,'?'),(_binary 'T\\\Zs	|\K^\','wp-content/plugins/elementor-pro/modules/theme-elements/widgets/base.php',0,_binary 'M3n뮁7\'R-Rȿ-',_binary 'M3n뮁7\'R-Rȿ-',_binary '¤\؜ywҪʦmt\qZsN','',0,'?'),(_binary '4M〘N~4\Z_','wp-content/plugins/elementor-pro/modules/theme-elements/widgets/breadcrumbs.php',0,_binary '@\\X\\ˣtT:\',_binary '@\\X\\ˣtT:\',_binary 'SA\KV\\0`\Sy\AY\Tk','',0,'?'),(_binary 'UW8\$\e\','wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-comments.php',0,_binary '*K`~	0j\3V\',_binary '*K`~	0j\3V\',_binary 'T\\\b\;2%>\n\UmHO?\\\`ԩ','',0,'?'),(_binary '|ďHfwJck(#','wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-info.php',0,_binary ']Y\n$8W/\V',_binary ']Y\n$8W/\V',_binary '?|\\(ka\<󀋄c\Z	\E\','',0,'?'),(_binary '}\8\\	/cѵc','wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-navigation.php',0,_binary 'BnH\N2N\'\0q\',_binary 'BnH\N2N\'\0q\',_binary '\0~Q2\{\\\\\\(\0v~7\1qH9','',0,'?'),(_binary '`B7o\6I>j6dF','wp-content/plugins/elementor-pro/modules/theme-elements/widgets/search-form.php',0,_binary 'y xrٰ[\&\ӏ',_binary 'y xrٰ[\&\ӏ',_binary 'a\\O;$%Xq\eZ0E$yF','',0,'?'),(_binary 'r\of:\gX\'','wp-content/plugins/elementor-pro/modules/theme-elements/widgets/sitemap.php',0,_binary '$\#)X',_binary '$\#)X',_binary '	-(Ҩ\*\-:\H(xĒ\Z\?>M\\','',0,'?'),(_binary 'v\\\\\O\\'gI:','wp-content/plugins/elementor-pro/modules/usage/module.php',0,_binary 'Ѕ+S[]0n\0os',_binary 'Ѕ+S[]0n\0os',_binary '8\\"{\Z1F*M1\Zprz&dʫIz\\','',0,'?'),(_binary 'ɏ\B:\\O\','wp-content/plugins/elementor-pro/modules/video-playlist/module.php',0,_binary 'JOU{ꮜ>\^}',_binary 'JOU{ꮜ>\^}',_binary 'W	\>,\Qk܌f\GUi\L\','',0,'?'),(_binary 'N\/ܗ\\ ','wp-content/plugins/elementor-pro/modules/video-playlist/widgets/video-playlist.php',0,_binary 'iR\,D\\f!q',_binary 'iR\,D\\f!q',_binary 'BAcA7=^\?\fp+V@\>','',0,'?'),(_binary '.\ŉ\i','wp-content/plugins/elementor-pro/modules/woocommerce/classes/base-products-renderer.php',0,_binary '>	uF\%\\',_binary '>	uF\%\\',_binary '\(a\]C^/Rk\Z6)\','',0,'?'),(_binary '\z]\\\6\2L\','wp-content/plugins/elementor-pro/modules/woocommerce/classes/current-query-renderer.php',0,_binary '?I\\\r#ş~r״',_binary '?I\\\r#ş~r״',_binary '\\-\4\n\m\\V\m\ҭzJ','',0,'?'),(_binary '|\ :ᒼ\\','wp-content/plugins/elementor-pro/modules/woocommerce/classes/products-renderer.php',0,_binary ']7Mli\\',_binary ']7Mli\\',_binary 'W8\\L\Z\/F6\\PetA6M\usZ','',0,'?'),(_binary '\O\\u\F\%@','wp-content/plugins/elementor-pro/modules/woocommerce/conditions/product-archive.php',0,_binary '\x9\s\\',_binary '\x9\s\\',_binary '-&\B\\Ŗ\j \\c\-E\y:7ts]4','',0,'?'),(_binary '%^\X\\o\','wp-content/plugins/elementor-pro/modules/woocommerce/conditions/product-search.php',0,_binary 'F\jW]pM\=',_binary 'F\jW]pM\=',_binary '\\8 Ne *\%%k\f\\ޙ\\_k','',0,'?'),(_binary 'N\0m\\*\<!rY>','wp-content/plugins/elementor-pro/modules/woocommerce/conditions/shop-page.php',0,_binary '\nǂdŅ\\"*\',_binary '\nǂdŅ\\"*\',_binary '\8sJZ%00v\{Z\*Ա`\\|1','',0,'?'),(_binary ')\6=\\Z9&N','wp-content/plugins/elementor-pro/modules/woocommerce/conditions/woocommerce.php',0,_binary '\\>+vW\WjS|',_binary '\\>+vW\WjS|',_binary 'ƨ8\d\z)*e\\"Pl{','',0,'?'),(_binary 'T\\t2\\i\'<','wp-content/plugins/elementor-pro/modules/woocommerce/documents/product-archive.php',0,_binary '#k,ۀdº\\'',_binary '#k,ۀdº\\'',_binary '\`\\1dX\q{ӊ%O0\BF<8','',0,'?'),(_binary '	[\?O\'-dG','wp-content/plugins/elementor-pro/modules/woocommerce/documents/product-post.php',0,_binary '\ի\\U\k',_binary '\ի\\U\k',_binary '\˳\\B*م~[qx\+C\\\]\\\F=\n','',0,'?'),(_binary '=ߜ\\N,','wp-content/plugins/elementor-pro/modules/woocommerce/documents/product.php',0,_binary '\'\H#6(,|(\\2',_binary '\'\H#6(,|(\\2',_binary '(\$\h0	`V\\ۼ\,1\\\e^','',0,'?'),(_binary '\\\'\2\\\~ ','wp-content/plugins/elementor-pro/modules/woocommerce/module.php',0,_binary 'W5}{\`*X̋Y',_binary 'W5}{\`*X̋Y',_binary '2Ƕ\m\\\\HjvVk\\g\a\','',0,'?'),(_binary '	&#fmʷ\pѯ\','wp-content/plugins/elementor-pro/modules/woocommerce/skins/skin-classic.php',0,_binary '`\so\\J',_binary '`\so\\J',_binary '\0|&.\\*O\~Ă\\w\r[','',0,'?'),(_binary 'O\\}ܸUy,\','wp-content/plugins/elementor-pro/modules/woocommerce/tags/base-data-tag.php',0,_binary 'ƙ\%k_\`]}á\',_binary 'ƙ\%k_\`]}á\',_binary 'So-QUNʔ\nW\4\\ Q\p\\_\r','',0,'?'),(_binary '78yw\\\J\î','wp-content/plugins/elementor-pro/modules/woocommerce/tags/base-tag.php',0,_binary '5W\P}^\\Ȣ',_binary '5W\P}^\\Ȣ',_binary '{U Y\\"V\n<\\jTd\\\\\\','',0,'?'),(_binary 'K\\+@{2!u9','wp-content/plugins/elementor-pro/modules/woocommerce/tags/category-image.php',0,_binary '`\\(5^m',_binary '`\\(5^m',_binary '\u\\"xwoc9:\0zC\7','',0,'?'),(_binary 'B\W\\\w\0','wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-gallery.php',0,_binary 'X\LΌ\Ղy,n',_binary 'X\LΌ\Ղy,n',_binary '\\w\,\\\u\Կnv\jt[K\r=#f','',0,'?'),(_binary 'Y .Q&o\,','wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-image.php',0,_binary 'B\iǑ\n(ĮïY',_binary 'B\iǑ\n(ĮïY',_binary 'H!LR\\\\\;$,\W`n','',0,'?'),(_binary 'z,Me\'qJ!Z','wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-price.php',0,_binary '\(FJ̲\r',_binary '\(FJ̲\r',_binary 'Y\zíqΧ#Ϡs\@y<\\5y\O7Y','',0,'?'),(_binary '/\/ʾg\\\b{1','wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-rating.php',0,_binary '\̽\i0`ȵj\\Y\',_binary '\̽\i0`ȵj\\Y\',_binary 'H\\\\$\#F\'vA\\\\@<S\','',0,'?'),(_binary '&\\"#E\\F\','wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-sale.php',0,_binary '\\Œ\\\A\\',_binary '\\Œ\\\A\\',_binary 'J\-(\B\\,\W\ҝK\s\','',0,'?'),(_binary '\\0\\M\\\\\','wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-short-description.php',0,_binary 'tl\x\'ʸ\'Qi',_binary 'tl\x\'ʸ\'Qi',_binary '\ZG\0	1hGk\\Ď0\^','',0,'?'),(_binary '`\"٣\\3\]|\\','wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-sku.php',0,_binary 'ց\r\y^r\=F',_binary 'ց\r\y^r\=F',_binary '\gt\B\R\_a3:n\QO\]u`','',0,'?'),(_binary '14+\\\l\\\\','wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-stock.php',0,_binary '.\*\9Je[',_binary '.\*\9Je[',_binary 'cyԂDĨjathOyV<̊\>u','',0,'?'),(_binary 's=\n\ߪ<aMa$','wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-terms.php',0,_binary '\b\\(0	@\t\',_binary '\b\\(0	@\t\',_binary 'dlL6mG\\h\?J\8ھ?ao','',0,'?'),(_binary '\GC!4|`','wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-title.php',0,_binary '\\\\Zk0VjS\'&\5\',_binary '\\\\Zk0VjS\'&\5\',_binary '猙=\0}P1R\9\t\-\|w\','',0,'?'),(_binary '\ny>\BYA','wp-content/plugins/elementor-pro/modules/woocommerce/wc-templates/cart/mini-cart.php',0,_binary 'A\xD\ӾI\4\Z',_binary 'A\xD\ӾI\4\Z',_binary '\Cj_\][#9:\\*\'iT\\[/\','',0,'?'),(_binary '̫j\\9Q\','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/add-to-cart.php',0,_binary '\Nן$\\\\ix\Z',_binary '\Nן$\\\\ix\Z',_binary ']\kҔحYqz\\\W\0]5\r','',0,'?'),(_binary '\ZkQPu1S','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-description.php',0,_binary 'P\`p\>Z\(\\l\\/S',_binary 'P\`p\>Z\(\\l\\/S',_binary 'np}\Ρ.hp^@\C\rg\B\͖^\\{','',0,'?'),(_binary '\Z^rD\\','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-products-deprecated.php',0,_binary 'L\\ƪaY9',_binary 'L\\ƪaY9',_binary ' \2\{۝-\n;0Rpߡm;','',0,'?'),(_binary '\LoȵVp+bH','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-products.php',0,_binary '/r\{{n\\\',_binary '/r\{{n\\\',_binary '\\\\\\9.\$t$g\\0\#?\0\}','',0,'?'),(_binary '!#Z\/y읨\s','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/base-widget.php',0,_binary 'Xa\P\ٴ-	',_binary 'Xa\P\ٴ-	',_binary '\\\\\0\_b	\'d\\u\\\\\r(\','',0,'?'),(_binary 'S\\l\\:\>','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/breadcrumb.php',0,_binary ')RE\h|\IC\',_binary ')RE\h|\IC\',_binary '^Pitݪi4\+\'Y`ZB2ȴd#','',0,'?'),(_binary '1L(	?\',օM#','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/categories.php',0,_binary 'l3FA#\\H\\',_binary 'l3FA#\\H\\',_binary '\-\9p3\}\Z\<pE\Zw25','',0,'?'),(_binary '\\I\4Pb\\Z\','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/category-image.php',0,_binary '\W=q\\lmPꇮ',_binary '\W=q\\lmPꇮ',_binary '>a(TTh\zZ\\\w9\\Fx','',0,'?'),(_binary '\ljT3ԼE_tk','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/elements.php',0,_binary '\^,K\0\\\	{*\',_binary '\^,K\0\\\	{*\',_binary 'J(]\\*wE)C\=z\x\"}\n','',0,'?'),(_binary '|	4PTqJ&/[S','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/menu-cart.php',0,_binary '?`-\<\\',_binary '?`-\<\\',_binary '\l48\~\\\Z\N}g\K8*#8','',0,'?'),(_binary 'm\\Mp?i','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-add-to-cart.php',0,_binary 'lK@,n\4\\',_binary 'lK@,n\4\\',_binary 'R\5\dU\r$9z;]H\I$q\71P','',0,'?'),(_binary '\n\Ɖ%%\\eԖ','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-additional-information.php',0,_binary '\\0\F\ssU\\\'',_binary '\\0\F\ssU\\\'',_binary 'D\\[}\kf\\'uWwX!<','',0,'?'),(_binary '\6Nϫ\|\G%8\','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-content.php',0,_binary '\F2\'\\j+\i$',_binary '\F2\'\\j+\i$',_binary 'l|\\[\\y\r\\uZ\l\H\m\o\/{','',0,'?'),(_binary '\\_)Vsg\\\-','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-data-tabs.php',0,_binary '07\ڄm\\p\<',_binary '07\ڄm\\p\<',_binary '\\\Ұ\nM\%3Qh\y\EELh','',0,'?'),(_binary ';bҡB\\\к','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-images.php',0,_binary '\=:.ې8\r[(',_binary '\=:.ې8\r[(',_binary '\"3YԙӀbN\~\?Xǅ\\','',0,'?'),(_binary 'fߨ+Ĕ\\0E\\.pݔ','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-meta.php',0,_binary '\\\żkW\n\\Β\',_binary '\\\żkW\n\\Β\',_binary 'x\hMش\YF$\̜V\w\4?j','',0,'?'),(_binary '_\r(q<^6G_s\\','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-price.php',0,_binary '\\5\\\\\6',_binary '\\5\\\\\6',_binary '\\bw%{\ݵ4(\YLe1\6\','',0,'?'),(_binary '̆tokJ\rwcw','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-rating.php',0,_binary 'yZ9Eʸ',_binary 'yZ9Eʸ',_binary 'h$~%\V)(/)EmS\A?#\rRw5XH','',0,'?'),(_binary '\/z\8\Й','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-related.php',0,_binary '3\rL\\{Q\3e',_binary '3\rL\\{Q\3e',_binary '׍?hZ׏\\Hh5ʹ\\\','',0,'?'),(_binary '&b>QC2\-','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-short-description.php',0,_binary 'tq(WPVBp\\0\',_binary 'tq(WPVBp\\0\',_binary '-gm=\fw_\WiE;\\A9\\\yIзJ3\','',0,'?'),(_binary '[\c\`I)\"','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-stock.php',0,_binary 'oZ\c#\\FQ\T',_binary 'oZ\c#\\FQ\T',_binary '\\FD\\ޗ|ì\Z5\'\,Opkʶ\\B','',0,'?'),(_binary 'Qn3X?A\Z\\-','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-title.php',0,_binary '\ey\\y\O\\'',_binary '\ey\\y\O\\'',_binary 'r	\\BgK&.XV\\\Q\=y5\n','',0,'?'),(_binary 'Ɖ\{\\\\'d}\\','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-upsell.php',0,_binary '׉\r<\rw_U66ؼ',_binary '׉\r<\rw_U66ؼ',_binary '\(l.Yg\<0\80KR\\u\\\n7','',0,'?'),(_binary 'r	ڨ[KU&\Z]T','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products-base.php',0,_binary '5\\Px<\\`',_binary '5\\Px<\\`',_binary '<:Me\7sMOSP\`\','',0,'?'),(_binary '\f\\a;\\7F','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products-deprecated.php',0,_binary '޿Z\>=\\6>T',_binary '޿Z\>=\\6>T',_binary 'Q]X\G	\\"ҧ\\8a\YǏp3s,qA','',0,'?'),(_binary 'j\՚Pp)m\','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products.php',0,_binary 'ܟ\&\=I;\L\',_binary 'ܟ\&\=I;\L\',_binary '5\\\\⦈?\\\p6ߊ1;A?\&\Z','',0,'?'),(_binary ': \aN_\\rv5_','wp-content/plugins/elementor-pro/modules/woocommerce/widgets/single-elements.php',0,_binary '\"f\c战Rbr',_binary '\"f\c战Rbr',_binary 'q\ɾ\\֘ᙓ\\DM\\^=֕\\E\\','',0,'?'),(_binary '\\T\PEN85Kjx','wp-content/plugins/elementor-pro/modules/wp-cli/license-command.php',0,_binary 'ї\_L\\H',_binary 'ї\_L\\H',_binary 's\[\\\n[yRCnoh\kP:tW','',0,'?'),(_binary ']pX\Gg%j\0}A','wp-content/plugins/elementor-pro/modules/wp-cli/module.php',0,_binary '?mV.?ģ\\\\,\',_binary '?mV.?ģ\\\\,\',_binary 'Ub\!\3\5!K(͋c\\K2J\'v8[','',0,'?'),(_binary 'kIT\I$)Ȁ','wp-content/plugins/elementor-pro/modules/wp-cli/update.php',0,_binary '\\\S\nJZ2\u\',_binary '\\\S\nJZ2\u\',_binary 'ځgKy\y\\\lp$aK\\\\L','',0,'?'),(_binary 'LM\nJ1\\\(\\l\','wp-content/plugins/elementor-pro/plugin.php',0,_binary '\\\\i\\\P\\\.',_binary '\\\\i\\\P\\\.',_binary '\\ZC|x=PtxUE\\Pm\\\\l\\\','',0,'?'),(_binary '[ZD\\"\ޯ','wp-content/plugins/facebook-pagelike-widget/FacebookLocales.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\"^?\\r6WBm',_binary '\\5n\q/G	S Q\r;ݺM7Q#\ne','',0,'?'),(_binary 'j((6M_\\W!','wp-content/plugins/facebook-pagelike-widget/assets/css/add-review.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\c\n3#X\\\Z$z',_binary '\cB\\\{\*\A\\.\!/3\[','',0,'?'),(_binary '6y\s5C]ڠ\i','wp-content/plugins/facebook-pagelike-widget/facebook_widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!tQ\d\_\a)\\',_binary 'Y\T\y:5\8k2W[+\\','',0,'?'),(_binary 'j}ʸn#n|2\.','wp-content/plugins/facebook-pagelike-widget/facebook_widget.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R}%;yp\\\rZ',_binary '\nXyV\j@\RZ\k>@y,zbS?','',0,'?'),(_binary 'J!IO\\\ݷC\','wp-content/plugins/facebook-pagelike-widget/fb.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9F)X\1\\_^F',_binary '/C\\0\K\3KGc\\Zkv\\\c.\\Z','',0,'?'),(_binary '\Q+\$dq	0n2','wp-content/plugins/facebook-pagelike-widget/fb_class.php',0,_binary '\\04N\x\;\',_binary '\\04N\x\;\',_binary '5\\\#\\@\ZW-7\M\ZAn	pс','',0,'?'),(_binary '~[9(\nӚ[8f','wp-content/plugins/facebook-pagelike-widget/includes/add-review.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Rб\	\\d+AE',_binary ')t@+\}={\n\'W{8\S\ڸwg','',0,'?'),(_binary '@7\\\5\9侎p','wp-content/plugins/facebook-pagelike-widget/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q--8\\r\Z\N',_binary 'bԐ\;\(\XD6 E\\	8`јz\=','',0,'?'),(_binary 'M\p0\AKR','wp-content/plugins/facebook-pagelike-widget/readme.txt',0,_binary '\\H?ɱ\*@',_binary '\\H?ɱ\*@',_binary '轢*!\2o⼄ۺ*\\\ݑݸu','',0,'?'),(_binary '|ЛL(p\\\"`!a','wp-content/plugins/facebook-pagelike-widget/screenshot-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c6\\'.\53+J',_binary ':HmM\U\\<Zy\.tdlLU\la\\\ \','',0,'?'),(_binary '9d<\T<RNn','wp-content/plugins/facebook-pagelike-widget/screenshot-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Pjmu.şQ\n\1\L',_binary '3\\Af\W\x\͋\\r\P','',0,'?'),(_binary 'SUd\.yv\Ig_','wp-content/plugins/facebook-pagelike-widget/screenshot-3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',fj\Й	[\w\',_binary 'Msb\'\Q\9Qr@\0eg\28Ҡ','',0,'?'),(_binary '\n\H\Ƣ>幗','wp-content/plugins/facebook-pagelike-widget/short_code.php',0,_binary 'D#!\\@\',_binary 'D#!\\@\',_binary '?33-]y\4{iKI\','',0,'?'),(_binary 'GzS\Z\3]\','wp-content/plugins/hello-dolly/hello.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ME\~wI \\\',_binary '*Ԅ9/\f6FA\e}\\%\	\ \؋e','',0,'?'),(_binary '\rF\-t{xݧt\','wp-content/plugins/hello-dolly/readme.txt',0,_binary '\P\9Nˮ\i',_binary '\P\9Nˮ\i',_binary 'ֲLXaic_\/\\)E>3\{\\A\\h','',0,'?'),(_binary 'puwSɴ0','wp-content/plugins/hello.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E\t5\0\\\P\\w',_binary 'fs	u\c~\\0b\\\\I\&5)','',0,'?'),(_binary '\\\\\0*\W\\','wp-content/plugins/index.php',0,_binary 'gD,V\=\\\bP',_binary 'gD,V\=\\\bP',_binary 'k~	UH\Z\xP\\Ā<;X','',0,'?'),(_binary '5\/i3[j\','wp-content/plugins/issuu-panel/assets/js/document-update.js',0,_binary '\ݨ}S9ʆ2?|',_binary '\ݨ}S9ʆ2?|',_binary '2F*CDY(Or^yuy\N7@gS\','',0,'?'),(_binary '$%Z\Z\\)\','wp-content/plugins/issuu-panel/assets/js/document-update.min.js',0,_binary '\li^X\\A',_binary '\li^X\\A',_binary '\\>c=J\\oR6C\\5\f','',0,'?'),(_binary '\\x8{\))jT','wp-content/plugins/issuu-panel/assets/js/document-upload.js',0,_binary '\$<\"\Cy=qq',_binary '\$<\"\Cy=qq',_binary '?QU+B^%\øWnsƢ\ZQ\Է\^u~S','',0,'?'),(_binary 'ڭǏ5\nE\i)Q','wp-content/plugins/issuu-panel/assets/js/document-upload.min.js',0,_binary '&<\'7\$Z\',_binary '&<\'7\$Z\',_binary 'r\\X <\0$	y\\K\d\','',0,'?'),(_binary '=up&	ѣ;}6','wp-content/plugins/issuu-panel/assets/js/document-url-upload.js',0,_binary '\ݨ}S9ʆ2?|',_binary '\ݨ}S9ʆ2?|',_binary '2F*CDY(Or^yuy\N7@gS\','',0,'?'),(_binary 'LdVFK\M%,','wp-content/plugins/issuu-panel/assets/js/document-url-upload.min.js',0,_binary '\li^X\\A',_binary '\li^X\\A',_binary '\\>c=J\\oR6C\\5\f','',0,'?'),(_binary 'ǚ\\n\\\\\\$\','wp-content/plugins/issuu-panel/assets/js/issuu-panel-reader.js',0,_binary 'sq\5\\\\ic',_binary 'sq\5\\\\ic',_binary 'bI	Ө\f\ğO0\J睟+b','',0,'?'),(_binary '><\;\SxZ','wp-content/plugins/issuu-panel/assets/js/issuu-panel-reader.min.js',0,_binary '\UD\pNN\\\y\',_binary '\UD\pNN\\\y\',_binary '\\\5\oPc\:W\*(}\L\','',0,'?'),(_binary 'C֥\тg0','wp-content/plugins/issuu-panel/assets/js/replace-tags-p.js',0,_binary '#\W$Y',_binary '#\W$Y',_binary 'Dϱ\kH\ld \\W3\!=+J.\5\\','',0,'?'),(_binary 'ް\\\Y>LºF','wp-content/plugins/issuu-panel/assets/js/replace-tags-p.min.js',0,_binary '\\']@29d\M\K',_binary '\\']@29d\M\K',_binary '\p\r![\\\3O-JJvN','',0,'?'),(_binary '\n\'BbLV\x,\"~','wp-content/plugins/issuu-panel/assets/js/swfobject/swfobject.js',0,_binary '*T?:T\\\Z\U;I',_binary '*T?:T\\\Z\U;I',_binary '\*PɃ\(jч\IC\!w̾\q\O3_','',0,'?'),(_binary 'CU꾸\\\R\Ex','wp-content/plugins/issuu-panel/assets/js/tinymce-button.js',0,_binary 'f<:2!׆̃MG',_binary 'f<:2!׆̃MG',_binary 'dd,\]:sY>\\Ly<%\\Z9O,\Ғ*\','',0,'?'),(_binary 'ȾYp}\3\\\\','wp-content/plugins/issuu-panel/includes/classes/class.issuupanel.php',0,_binary 'i/\S\7DAo',_binary 'i/\S\7DAo',_binary 'e\5\r\0g\:FË\0;Y%\\nb ','',0,'?'),(_binary '\2$/\\E\\-َ','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelaction.php',0,_binary '\+u3*',_binary '\+u3*',_binary '=i:45\=\tW\\q{;\0\\|o@:','',0,'?'),(_binary '*\m\Zf\|;m\2}','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelcachemanager.php',0,_binary ',\c\\ѡ]yϷ_',_binary ',\c\\ѡ]yϷ_',_binary '\n\p\_\٢q\\0᜻q\h\?\','',0,'?'),(_binary '@r	H?os\\R','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelcatcher.php',0,_binary '&vs^l\y\\o',_binary '&vs^l\y\\o',_binary '\\0\rA\3\'NaW\\33Chi(\\$C\\\','',0,'?'),(_binary 'viS]j\k\0\P\3,l','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelconfig.php',0,_binary 'z\\\\ray/\\',_binary 'z\\\\ray/\\',_binary '\\}\\#\\9d\\Z\:˯6\\','',0,'?'),(_binary '\>u|2P\"\0s\n','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelcron.php',0,_binary '\E\9,~\\',_binary '\E\9,~\\',_binary '\>)*6`ó\\Ϧ\\wG`\0]e\D\)','',0,'?'),(_binary '\B\V/ؙ~','wp-content/plugins/issuu-panel/includes/classes/class.issuupaneldebug.php',0,_binary '\_l\H\'Y\ P\մ',_binary '\_l\H\'Y\ P\մ',_binary 'f9\\\\r0?=*/<\r\+\K\C ','',0,'?'),(_binary '\Zy\0`\;\\\','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelfilter.php',0,_binary '-{\\Zh\ŕ',_binary '-{\\Zh\ŕ',_binary '%\ڎYq\LHOc%cWl\-qq=ڌ7','',0,'?'),(_binary '\\r\\\]\\j\\\\','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelfoldercacheentity.php',0,_binary '\l\|^^\\)o{',_binary '\l\|^^\\)o{',_binary 'RWag\9Gb\ًHO\Fa\.\>','',0,'?'),(_binary '}!\0\Nev׊\0','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelfoldercacheentitymanager.php',0,_binary 'p\a~P^&\0e5p\ ',_binary 'p\a~P^&\0e5p\ ',_binary 'm3\nd6c{mߘ\\"\\\k7\h','',0,'?'),(_binary '+\nG\\ڇ@\','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelhookmanager.php',0,_binary '\"I\D\\"(',_binary '\"I\D\\"(',_binary 'b,o\%\\T=x7\A\\ѓTJ\\','',0,'?'),(_binary 'x1`/\72:','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelinitplugin.php',0,_binary '\\\\\[\:\$\',_binary '\\\\\[\:\$\',_binary '蠣l\\D\6睘\Rڃ\\_\I','',0,'?'),(_binary '!J[\4LN\u\|\nT4','wp-content/plugins/issuu-panel/includes/classes/class.issuupaneloptionentity.php',0,_binary '\k\\\EJ\c<\Z',_binary '\k\\\EJ\c<\Z',_binary 'qQ\&o B\Z\s/i\+A&]\\t޾.','',0,'?'),(_binary '\i\D\\gr','wp-content/plugins/issuu-panel/includes/classes/class.issuupaneloptionentitymanager.php',0,_binary '\@\{\;.\\=%',_binary '\@\{\;.\\=%',_binary '\\vXnR\QNp{>\\G\b\\\m	T.(b','',0,'?'),(_binary '˞;hUSc\fD\E','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelpaginate.php',0,_binary '\\,9\R\I',_binary '\\,9\R\I',_binary '\'\d\	D4\O2\\\[\\e\\','',0,'?'),(_binary '\\|\*~a\ֻB!','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelpluginmanager.php',0,_binary 'g딺-E6}\\B+',_binary 'g딺-E6}\\B+',_binary 'lޢHtE-JR\vI}\\QɣLy','',0,'?'),(_binary ',H{/\"\PNx	.','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelscripts.php',0,_binary '*u\ok)\:@',_binary '*u\ok)\:@',_binary '7c%R+TBd\\3=|osRw,','',0,'?'),(_binary '\c0\\\\\y\','wp-content/plugins/issuu-panel/includes/classes/class.issuupanelsubmenu.php',0,_binary '?\HX\\rt',_binary '?\HX\\rt',_binary '*[ӹթ|Q$tq\0@=B\=V56;H\ \','',0,'?'),(_binary 'L^#D>r\','wp-content/plugins/issuu-panel/includes/classes/class.issuupaneltinymcebutton.php',0,_binary '\\,bLV@UG\b\\"',_binary '\\,bLV@UG\b\\"',_binary '\'\\\\*H\,-|uo 98\"K\W\','',0,'?'),(_binary 'i\0wٳ\\\\H.','wp-content/plugins/issuu-panel/includes/functions.php',0,_binary '\g|aU{N|Ax\\',_binary '\g|aU{N|Ax\\',_binary 'F^Ӑ\\P \OG9&\ä\\\\$','',0,'?'),(_binary '\r@-Ce1U','wp-content/plugins/issuu-panel/includes/interfaces/interface.issuupanelhook.php',0,_binary 'Ma42rI}3\\#\\\',_binary 'Ma42rI}3\\#\\\',_binary '#\n\û\1\"c)\?)V2_)S','',0,'?'),(_binary 'vh\yz{e\&7\ױ','wp-content/plugins/issuu-panel/includes/interfaces/interface.issuupanelpage.php',0,_binary 'X\5ci%; \F8N\',_binary 'X\5ci%; \F8N\',_binary 'B{B\5pʐ%\n,%\\Ъ3\SA','',0,'?'),(_binary 'Kg<^\Z\\\','wp-content/plugins/issuu-panel/includes/interfaces/interface.issuupanelservice.php',0,_binary 'D\(Uk\]\\nM4>\',_binary 'D\(Uk\]\\nM4>\',_binary '0Gƥ@t\\cc\\&`^7K0','',0,'?'),(_binary 'a?u0z;.','wp-content/plugins/issuu-panel/includes/listeners/class.issuupanelajaxrequestlistener.php',0,_binary 'T\r\\\g<',_binary 'T\r\\\g<',_binary '^ike\`tQ\hM),\h\x;a\煼','',0,'?'),(_binary 'E\"ؤZR2\_i\\','wp-content/plugins/issuu-panel/includes/listeners/class.issuupaneldocumentlistener.php',0,_binary 'C\s&sq9Ƭ\',_binary 'C\s&sq9Ƭ\',_binary '\DO<\\\i},\teW\#\m','',0,'?'),(_binary '\f\\R\\S','wp-content/plugins/issuu-panel/includes/listeners/class.issuupanelfoldercachelistener.php',0,_binary 'K\\Q\	\9p9`\Se',_binary 'K\\Q\	\9p9`\Se',_binary '\i\\/\\\"*=\\"\ٗ\'J\"SaB','',0,'?'),(_binary 'Ed*%\rīdr`\','wp-content/plugins/issuu-panel/includes/listeners/class.issuupanelfolderlistener.php',0,_binary '\.\T\\&\',_binary '\.\T\\&\',_binary '!\jb\7=\pE\!T\\'%f\)1 \q\T]\','',0,'?'),(_binary 'x\\\	?w@{','wp-content/plugins/issuu-panel/includes/listeners/class.issuupanelloglistener.php',0,_binary 'W˰K]K).Bcp',_binary 'W˰K]K).Bcp',_binary '4߅;p\'\\a$\9E=ͽ\\','',0,'?'),(_binary '\\ٸ\f)','wp-content/plugins/issuu-panel/includes/listeners/class.issuupanelpluginconfiglistener.php',0,_binary 'þƉ,\\\yq\\',_binary 'þƉ,\\\yq\\',_binary 'K?8\\4p\2hzR\:To','',0,'?'),(_binary 'd_YK9\"T?','wp-content/plugins/issuu-panel/includes/listeners/class.issuupanelupdatedatalistener.php',0,_binary '\pԚ\Q0\',_binary '\pԚ\Q0\',_binary 'cԋ1\\\vjO\0\\ ?L_\\~l\\nVj\','',0,'?'),(_binary '&|dIRKc\[o','wp-content/plugins/issuu-panel/includes/mobile-detect/Mobile_Detect.php',0,_binary '\\E)줨)g',_binary '\\E)줨)g',_binary 'H\Â\bj\d9^`H\:\\Kj','',0,'?'),(_binary '\Q\\\\rp}Q`\\.','wp-content/plugins/issuu-panel/includes/reader/class.issuupanelsimplereader.php',0,_binary 'qA:^\ǟ9\\',_binary 'qA:^\ǟ9\\',_binary '\"!]z+\k?a\\?\(2\<_BCBR','',0,'?'),(_binary '\zT\	\\ݰ<O','wp-content/plugins/issuu-panel/includes/reader/js/jquery.issuupanelreader.js',0,_binary ')\ҕ@2*KI\\0[',_binary ')\ҕ@2*KI\\0[',_binary 'kz%4nl \t\\cۈ\\3w畀f','',0,'?'),(_binary 'Z\0\\6\\\z\','wp-content/plugins/issuu-panel/includes/reader/js/jquery.issuupanelreader.min.js',0,_binary 'Hz1fP\*\wY',_binary 'Hz1fP\*\wY',_binary 'ж4Z1\艠<#˳\\N\2Fc','',0,'?'),(_binary '\Z=b\r\/\\P;P','wp-content/plugins/issuu-panel/includes/reader/reader.phtml',0,_binary '\'gӕ\\%FGf-0+^',_binary '\'gӕ\\%FGf-0+^',_binary 'k>	\ n\\g;\K۶%5','',0,'?'),(_binary '\KK\ E\GI','wp-content/plugins/issuu-panel/index.php',0,_binary 'm-l8\%\\j\\]',_binary 'm-l8\%\\j\\]',_binary 'ߙx;U\W@p\ZF\-\Y\\','',0,'?'),(_binary '+0\&|BDQ\[\n','wp-content/plugins/issuu-panel/issuu-panel.php',0,_binary '\+p*\\*.\\',_binary '\+p*\\*.\\',_binary '#\Ir鑂2\敾E\ҫL\','',0,'?'),(_binary '6\<&\n0\]cmD','wp-content/plugins/issuu-panel/issuuservice-lib/bootstrap.php',0,_binary 'ڠ\w\Z\'\',_binary 'ڠ\w\Z\'\',_binary '\\b\\Qu\nd\ʽ\\\i﷣?\','',0,'?'),(_binary '~KJ\le\\\','wp-content/plugins/issuu-panel/issuuservice-lib/lib/class.issuubookmark.php',0,_binary '\\Z\bw\s\Z\r#',_binary '\\Z\bw\s\Z\r#',_binary '\#}D\~OlC$\`\0}\V\#jf[̥\\','',0,'?'),(_binary '.\م\Ot\\Ȯ\','wp-content/plugins/issuu-panel/issuuservice-lib/lib/class.issuudocument.php',0,_binary 'U z[R\AZ\Z',_binary 'U z[R\AZ\Z',_binary '\Z%&d$p\\'eda\^?y>}H	ςN/','',0,'?'),(_binary 'G\͙@b\\','wp-content/plugins/issuu-panel/issuuservice-lib/lib/class.issuudocumentembed.php',0,_binary ']Z}h\1\▫F',_binary ']Z}h\1\▫F',_binary 'a_s_\ѡ5\<\\FVA\/\0\\m=\\','',0,'?'),(_binary '\'\K\@-/콲','wp-content/plugins/issuu-panel/issuuservice-lib/lib/class.issuufolder.php',0,_binary '\\ICPx7yÿ',_binary '\\ICPx7yÿ',_binary 'wj	f\\Vq?\\\\)\еC\Ә\"','',0,'?'),(_binary '\-\E\\\\g`','wp-content/plugins/issuu-panel/issuuservice-lib/lib/class.issuuserviceapi.php',0,_binary '\J\\\\#O',_binary '\J\\\\#O',_binary '4\\	᳸\5x\&\A8h2on\B','',0,'?'),(_binary 'pDռ\','wp-content/plugins/issuu-panel/menu/about/config.php',0,_binary 'A\cP\D\C}\\Z:',_binary 'A\cP\D\C}\\Z:',_binary '\\m<\A\\O_\3\g\0\nӻn','',0,'?'),(_binary '\\\C\\'\\!}\\\','wp-content/plugins/issuu-panel/menu/about/page.php',0,_binary '\"\'\x̍\ѩ\1',_binary '\"\'\x̍\ѩ\1',_binary '&r\Z\~䯯>8BZɦCӲ\"s\','',0,'?'),(_binary '=[I\AN\\\','wp-content/plugins/issuu-panel/menu/document/config.php',0,_binary '١\P]IgG\O}',_binary '١\P]IgG\O}',_binary 'FBu3(N\&\^Caj̈́FDá\','',0,'?'),(_binary 'Vf\\俢\p2','wp-content/plugins/issuu-panel/menu/document/document-list.php',0,_binary ':{*OS|g}\\`',_binary ':{*OS|g}\\`',_binary 'S6T\ =/\\\Q!\p*Ji\e\H\','',0,'?'),(_binary ']R\a\\\\\\\\R','wp-content/plugins/issuu-panel/menu/document/forms/update.php',0,_binary '\\\$LCFjFק۴',_binary '\\\$LCFjFק۴',_binary '\ˆV\\V4U*\J\Ѱ\{:\\\;','',0,'?'),(_binary '\XX.\uatjb\\"','wp-content/plugins/issuu-panel/menu/document/forms/upload.php',0,_binary 'iL˳Y7-\`\</\\',_binary 'iL˳Y7-\`\</\\',_binary '(H5\'N)\UL\!#w\\R\Q\00o\','',0,'?'),(_binary '+umݒ(!+v\\al','wp-content/plugins/issuu-panel/menu/document/forms/url-upload.php',0,_binary 'i\ \\$־|\',_binary 'i\ \\$־|\',_binary ' |\\Me0q\޺wl\\\\\ߑ;e%','',0,'?'),(_binary '\'\\\OɈ\;XP;','wp-content/plugins/issuu-panel/menu/folder/config.php',0,_binary '\\\u+\\\Z',_binary '\\\u+\\\Z',_binary 'kh\\r	\p#cR\yiE\'PEE\g`\','',0,'?'),(_binary 'g\\|R\֗\\\Ò','wp-content/plugins/issuu-panel/menu/folder/folder-list.php',0,_binary '[\(e+\0t냡q\',_binary '[\(e+\0t냡q\',_binary 'p\\'\>3OQfၛ\e\\R5h+','',0,'?'),(_binary '\\6\T@\ܤH34$','wp-content/plugins/issuu-panel/menu/folder/forms/add.php',0,_binary 'Qa䶯z_Em\',_binary 'Qa䶯z_Em\',_binary '4TA\"Xv+̂\hOZb&E͐\f)\','',0,'?'),(_binary 'P@	5~WU\0','wp-content/plugins/issuu-panel/menu/folder/forms/update.php',0,_binary '\jz\Km2?Z',_binary '\jz\Km2?Z',_binary 'ɪs[c|\\\\,\:\fQ:9k','',0,'?'),(_binary 'áW\H1\\\\','wp-content/plugins/issuu-panel/menu/main/config.php',0,_binary '6{>;',_binary '6{>;',_binary '{\0U:M\\\T\öR\s\d=h6[\C','',0,'?'),(_binary 'hoz\2\\p8H7','wp-content/plugins/issuu-panel/menu/main/page.phtml',0,_binary '[oW7\r_d\ZܫO\s',_binary '[oW7\r_d\ZܫO\s',_binary '\T\7\4\0)?\)=+@F\\ץ;)','',0,'?'),(_binary 'kX*aBڡpe','wp-content/plugins/issuu-panel/shortcode/class.issuupanelshortcodegenerator.php',0,_binary '49\/u2\\\\7W',_binary '49\/u2\\\\7W',_binary 'I\-ꇣ\XR\EEWpt\WU\n','',0,'?'),(_binary 'dQ¿HVV%\','wp-content/plugins/issuu-panel/shortcode/class.issuupanelshortcodes.php',0,_binary 'y䨋<\//j\b\\',_binary 'y䨋<\//j\b\\',_binary '\-AEz˥ 1ۓt`@^@ҫϱ{\','',0,'?'),(_binary '\\\Ht!','wp-content/plugins/issuu-panel/shortcode/document-list.php',0,_binary '\ą°*\\n(\&\',_binary '\ą°*\\n(\&\',_binary '\\"-{ȋ	S\4B2\\C','',0,'?'),(_binary 'EF\\ZP\dT\','wp-content/plugins/issuu-panel/shortcode/folder-list.php',0,_binary 'x\'y\"7\\\"',_binary 'x\'y\"7\\\"',_binary '\\i~\\+:+\|kn$c^N#\ȑ\','',0,'?'),(_binary ']\rN%7p\8\','wp-content/plugins/issuu-panel/shortcode/generator.php',0,_binary '\}ɤL\f<ްs',_binary '\}ɤL\f<ްs',_binary 'p\\R\EOC)ϳ\'\oz]\rWՒ\S','',0,'?'),(_binary 'E\r\0\\\\:=o','wp-content/plugins/issuu-panel/shortcode/the-last-document-folder.php',0,_binary 'CJØj}\qT&',_binary 'CJØj}\qT&',_binary 'd\\\xͣ<kj\\\\]5z)?\q,ߨ','',0,'?'),(_binary '\y\	\Ԣs2tx','wp-content/plugins/issuu-panel/shortcode/the-last-document.php',0,_binary 'W\O\\9bO\',_binary 'W\O\\9bO\',_binary '<\\\?4`T!^\>\r\KK\0\ng\Ȼ','',0,'?'),(_binary 'K\Uj*37jhr\ytLc','wp-content/plugins/issuu-panel/widget/class.issuupanelwidget.php',0,_binary 'á~d\Y\\b',_binary 'á~d\Y\\b',_binary '\\7\UOp\\\(\\\\־j\F3+','',0,'?'),(_binary '5\a/:%P$H','wp-content/plugins/issuu-panel/widget/forms/last-document-shortcode.phtml',0,_binary '\\pȾ|az`\\C\',_binary '\\pȾ|az`\\C\',_binary '\S\-rk	\\\|p\u-\\]\r\)**','',0,'?'),(_binary ':\\z4:k]\G\Z','wp-content/plugins/jetpack/3rd-party/3rd-party.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!ijCo\\".',_binary 'qH\9(\]6)\r\\HA\'M|`','',0,'?'),(_binary '>bb\r\\!\Z','wp-content/plugins/jetpack/3rd-party/bbpress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'כϐ\\\m*?\w',_binary '\Z\\\s0ǹID\\y\(Z*m\e\\\L','',0,'?'),(_binary 'A`=\\\','wp-content/plugins/jetpack/3rd-party/beaverbuilder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b}\\\۲o\\\r',_binary '\\n\\\\82\\d\=d#c\%!2','',0,'?'),(_binary '\L,\,33\?','wp-content/plugins/jetpack/3rd-party/bitly.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\PJ&\\\',_binary 'ӫXm 1r[T#ۓ)\vgy>/T','',0,'?'),(_binary 'x~\v,yGR%h`','wp-content/plugins/jetpack/3rd-party/buddypress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\SjuT̸\2=\\\',_binary '\\\4\\ri]8C\\RZEܧ','',0,'?'),(_binary '\\ci\\Z\\R?Ӡ^','wp-content/plugins/jetpack/3rd-party/class-domain-mapping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']RgЫF\',_binary '=zr\\M޶B\\\r\9c]\','',0,'?'),(_binary '\x\5Z','wp-content/plugins/jetpack/3rd-party/class-jetpack-bbpress-rest-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5DtT|H\'\',_binary '\ \\0`UR*\f_,)\kf\\\','',0,'?'),(_binary '_0jm\\@\\','wp-content/plugins/jetpack/3rd-party/class-jetpack-crm-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$r\)z\\F\\'1',_binary '1\m5\\\\K<\,t@','',0,'?'),(_binary '\n\G;e]u\\\@|>|','wp-content/plugins/jetpack/3rd-party/class-jetpack-modules-overrides.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\Hm(-i\\',_binary 'u9Aq]6k_\rn\\gmk\\','',0,'?'),(_binary '\\Zt$4P,\\','wp-content/plugins/jetpack/3rd-party/class.jetpack-amp-support.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\)\\r炚\]>^',_binary 'C\Gr\r\k\::=z ^~$\%eI','',0,'?'),(_binary '\\	1\:Q׹{','wp-content/plugins/jetpack/3rd-party/class.jetpack-modules-overrides.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kj)\kj[\\,\0',_binary '\ZNҽ%]+\KIS0NKh\2I','',0,'?'),(_binary '(\\9s\_Q','wp-content/plugins/jetpack/3rd-party/creative-mail.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N@Ip܂\Z4',_binary '+i\\r5\h\3\k;\D\{','',0,'?'),(_binary '\ӇH\A\o1','wp-content/plugins/jetpack/3rd-party/crowdsignal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-\\Vٻ\\\:',_binary '\Zx.\T\p&\9kLBG6=x','',0,'?'),(_binary 'Eun*Vz)\\\','wp-content/plugins/jetpack/3rd-party/debug-bar/class-jetpack-search-debug-bar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1\A\r\"9\',_binary 'hM%\yco	h\\ȸ(|','',0,'?'),(_binary 'B\\P\=','wp-content/plugins/jetpack/3rd-party/debug-bar/class.jetpack-search-debug-bar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H19\'\-\*t\W\',_binary '%\+ݳ%N\n~\A3&|<¼B[','',0,'?'),(_binary '\\Gh\u\\hA\\"','wp-content/plugins/jetpack/3rd-party/debug-bar/debug-bar.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\`?@[\ލ8\\',_binary '\YJ\SpU|>\\+qn:\\','',0,'?'),(_binary '\ ,Sû\0-B%','wp-content/plugins/jetpack/3rd-party/debug-bar/debug-bar.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"+߬o^kI4j\,*\',_binary ')\\\M?Yc\r|3\S\njܥ\','',0,'?'),(_binary 'D\\0\hfZ]','wp-content/plugins/jetpack/3rd-party/debug-bar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N)W|6H\n',_binary '8}Sp;\'v_\:\VE*r\"5Q\\\z','',0,'?'),(_binary 'T\'`-۝O\V4','wp-content/plugins/jetpack/3rd-party/domain-mapping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?p\',_binary '\.Ň\r\\?}Au\4:*?5KY','',0,'?'),(_binary '\AKR\DԐ','wp-content/plugins/jetpack/3rd-party/jetpack-backup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\f\\'\4\=\ww',_binary 'NT\\L\\v\*$\\\\\1.;\"','',0,'?'),(_binary '\rq-KB\~I\\\\','wp-content/plugins/jetpack/3rd-party/jetpack-boost.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B(rl\\me\r\"{\',_binary '\FeCVyQl`\QȁP\g\','',0,'?'),(_binary '\\ݣ\\	\dv\'','wp-content/plugins/jetpack/3rd-party/polldaddy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',yg\Ü\\~',_binary 'Zv\\\0\\WTgC\o\|\\rn','',0,'?'),(_binary ' B:\< )\0\\Gh','wp-content/plugins/jetpack/3rd-party/qtranslate-x.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mҏ\rO\\t',_binary '\\w\\OW\4\\O1:\\\Fp\V\0^','',0,'?'),(_binary '5\_\\~,-','wp-content/plugins/jetpack/3rd-party/vaultpress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\J\]0\\\\'\',_binary '2_\ŝr\=\"4u0\޳l΃\\GF\}\0','',0,'?'),(_binary '\Y\\\v\ z','wp-content/plugins/jetpack/3rd-party/web-stories.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q6*ܶrjU14\\',_binary '`:\\8̳\\\\?~݅F\\`Rha','',0,'?'),(_binary 'y\z\Y2ҋ)Q','wp-content/plugins/jetpack/3rd-party/woocommerce-services.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j\}\\\N\M\0',_binary 'O^\[\!˧9/\\|Q=Rv','',0,'?'),(_binary 'WiTN\#\\=','wp-content/plugins/jetpack/3rd-party/woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\b\-\\pbo%',_binary '[^o\\f6}\\aeg㆟\\p\\','',0,'?'),(_binary '=cz x\\(\','wp-content/plugins/jetpack/3rd-party/wpml.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\\6\\Z<~\',_binary 'DؗE\ZE\\\^\\N.JXe\','',0,'?'),(_binary '\AJ_i','wp-content/plugins/jetpack/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kA\Fy\"ĝ\8\',_binary 'Xy\0\\n80pKsN\\\+]˞\\\','',0,'?'),(_binary '^-V߁2Q\]ĕ','wp-content/plugins/jetpack/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '9RbC0\kk7','wp-content/plugins/jetpack/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'ģ\n\\2v\H','wp-content/plugins/jetpack/_inc/accessible-focus.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}Mw#$m_ٞ\',_binary '\\f\0t_t\v\p\h9<ﳩh#^','',0,'?'),(_binary 'j{$MlO\nTϱ@','wp-content/plugins/jetpack/_inc/blocks/263.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I\t\	!}\\a',_binary 'r\fhdU!\\\д%k>dzV7\R\\_f\\','',0,'?'),(_binary '\&\Lg\nҐO','wp-content/plugins/jetpack/_inc/blocks/279.eaf0dc5c7f63a13ef5c0.js',0,_binary '\Z\8a!\\\\',_binary '\Z\8a!\\\\',_binary 'G)\\\,!O/\<\nGv\6\@@','',0,'?'),(_binary '\y55\\0Imŧ','wp-content/plugins/jetpack/_inc/blocks/778.js',0,_binary '$\Y\@\Rk\\',_binary '$\Y\@\Rk\\',_binary '\Z$(_\x\{9q(\	\W\ń','',0,'?'),(_binary ':\L}\_\)','wp-content/plugins/jetpack/_inc/blocks/788.14064aefb46e9e64d8d5.js',0,_binary '~\8@&):uS\#',_binary '~\8@&):uS\#',_binary '\\3p^\\XJhMk\p\g(\P\','',0,'?'),(_binary '\BzKϒ<#y\j','wp-content/plugins/jetpack/_inc/blocks/860.js',0,_binary 'Hg9!	d\\',_binary 'Hg9!	d\\',_binary '\X\f䘲ܣ>\\\]s-<|','',0,'?'),(_binary 'wQ?YB\,\b\+\','wp-content/plugins/jetpack/_inc/blocks/business-hours/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '٣PC1d)',_binary '\<\\0\Z\3Jg?\\2\\Ź \\','',0,'?'),(_binary '𖷍/!n2\\P','wp-content/plugins/jetpack/_inc/blocks/business-hours/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\r{\\Y\',_binary 'UB$4C\\Z\a\n\pڔ\\J','',0,'?'),(_binary '\k@\n\>\,x{N\','wp-content/plugins/jetpack/_inc/blocks/business-hours/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"h\.-\\\\\0]',_binary 'F!h\d\\\E\rt=\I\|\\','',0,'?'),(_binary '\\\m\_\_FIA\','wp-content/plugins/jetpack/_inc/blocks/business-hours/view.min.asset.php',0,_binary '\c\3\NQhB\\',_binary '\c\3\NQhB\\',_binary '2Q@>\g\i\\5OC+,Y\C\\\0j','',0,'?'),(_binary '\\"\"\hx\/\','wp-content/plugins/jetpack/_inc/blocks/business-hours/view.min.js',0,_binary 'm4A\\i\8',_binary 'm4A\\i\8',_binary '\z`ЊM\ǁ\Γ\e\O\','',0,'?'),(_binary '\{\dTlELgu','wp-content/plugins/jetpack/_inc/blocks/business-hours/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\unخ\׹S\',_binary 'X,5x4\\n\\˅A\rm\cP˥\I\\\','',0,'?'),(_binary 'ۍ\Z\TZ	M\\ߝ','wp-content/plugins/jetpack/_inc/blocks/button/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n;#\tpAt\6',_binary 'K\\-m\X2[!|\b','',0,'?'),(_binary '\\΀B\\1G$','wp-content/plugins/jetpack/_inc/blocks/button/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\6f_֟I5e',_binary 'EX\UzYL4d\$\r6<\rh,\Dn viN','',0,'?'),(_binary '%H:h\	\','wp-content/plugins/jetpack/_inc/blocks/button/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"h\.-\\\\\0]',_binary 'F!h\d\\\E\rt=\I\|\\','',0,'?'),(_binary 'C? \"9\b.\ \','wp-content/plugins/jetpack/_inc/blocks/button/view.min.asset.php',0,_binary 'UaiJ;.C*dw',_binary 'UaiJ;.C*dw',_binary '\qHRY\r3 8t͆\:kD\\','',0,'?'),(_binary 'Aqf]°\\;','wp-content/plugins/jetpack/_inc/blocks/button/view.min.js',0,_binary 'm4A\\i\8',_binary 'm4A\\i\8',_binary '\z`ЊM\ǁ\Γ\e\O\','',0,'?'),(_binary '~\>\k F\Ǜ]','wp-content/plugins/jetpack/_inc/blocks/button/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\6f_֟I5e',_binary 'EX\UzYL4d\$\r6<\rh,\Dn viN','',0,'?'),(_binary '\7\.%\\n\\','wp-content/plugins/jetpack/_inc/blocks/calendly/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\A+N\1~\M',_binary 'eC0O\t\\ó\Iu*ՐhtZ6t}','',0,'?'),(_binary '\\\	ENƲ2\','wp-content/plugins/jetpack/_inc/blocks/calendly/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\t};\x\\1',_binary '\n$	G-,m\amnn\\\S;V\%@)[\','',0,'?'),(_binary 'R\)%$#_Y&\]','wp-content/plugins/jetpack/_inc/blocks/calendly/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"h\.-\\\\\0]',_binary 'F!h\d\\\E\rt=\I\|\\','',0,'?'),(_binary '\G\p/\ ǩ^\\n','wp-content/plugins/jetpack/_inc/blocks/calendly/view.min.asset.php',0,_binary '\G2\q\K5ceY\~',_binary '\G2\q\K5ceY\~',_binary '\x~ca\zd\nHxu2w\\0','',0,'?'),(_binary '+CMI\J%ԁ%','wp-content/plugins/jetpack/_inc/blocks/calendly/view.min.js',0,_binary 'm4A\\i\8',_binary 'm4A\\i\8',_binary '\z`ЊM\ǁ\Γ\e\O\','',0,'?'),(_binary 'Ao{D\UR\\(*','wp-content/plugins/jetpack/_inc/blocks/calendly/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\t};\x\\1',_binary '\n$	G-,m\amnn\\\S;V\%@)[\','',0,'?'),(_binary 'F$Xr\\k\\','wp-content/plugins/jetpack/_inc/blocks/components.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&ǿ\"9\W',_binary 'Mv\\'yB>e\$\\[@B\Z\','',0,'?'),(_binary 'Ϧ\'Wmr6\s\','wp-content/plugins/jetpack/_inc/blocks/components.js',0,_binary '81\_\d',_binary '81\_\d',_binary '-~\\\\[<V\nqa@vበ\Ӵ\T','',0,'?'),(_binary 'O2X\\M\5\','wp-content/plugins/jetpack/_inc/blocks/components.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J1@\\;\\n\n',_binary '<\.U޺\!\E]WZ\ŒjK0','',0,'?'),(_binary 'ro\Z\\$lDD','wp-content/plugins/jetpack/_inc/blocks/components.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`eׄ\"-ܕ',_binary 'E*\tX\|G-c\\[J\'DF\sb;9\V','',0,'?'),(_binary '܈y\0XFk\zh	','wp-content/plugins/jetpack/_inc/blocks/contact-info/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#bwzݞ;+',_binary '\\'\6z\*\0!~\A\\\0I\','',0,'?'),(_binary 'U\85O2F]q','wp-content/plugins/jetpack/_inc/blocks/contact-info/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+sx=c2U-Ng',_binary '\iB3\\o\\'׃;;\C}ߔC','',0,'?'),(_binary '7B U:6(MF','wp-content/plugins/jetpack/_inc/blocks/contact-info/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"h\.-\\\\\0]',_binary 'F!h\d\\\E\rt=\I\|\\','',0,'?'),(_binary 'ͽ_\[\0;Y','wp-content/plugins/jetpack/_inc/blocks/contact-info/view.min.asset.php',0,_binary '\=\\(\XB\* s\',_binary '\=\\(\XB\* s\',_binary ']%b\,A`ҿc\\\\Cej0`sw','',0,'?'),(_binary '+\\nzx~BQp','wp-content/plugins/jetpack/_inc/blocks/contact-info/view.min.js',0,_binary 'm4A\\i\8',_binary 'm4A\\i\8',_binary '\z`ЊM\ǁ\Γ\e\O\','',0,'?'),(_binary 't&)(ƍn\c<c','wp-content/plugins/jetpack/_inc/blocks/contact-info/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+sx=c2U-Ng',_binary '\iB3\\o\\'׃;;\C}ߔC','',0,'?'),(_binary 'p\"O\Om\rAL\','wp-content/plugins/jetpack/_inc/blocks/dialogue/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\|\!,eF\R`',_binary 'pa\\s\Z=\yqX2_@','',0,'?'),(_binary '[m\V\{\X(3T','wp-content/plugins/jetpack/_inc/blocks/dialogue/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\|\.	\\KVO	',_binary '\%\fA\f`B-\\\\]\!','',0,'?'),(_binary 'AM\\tӮ\','wp-content/plugins/jetpack/_inc/blocks/dialogue/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gmx\"o\6\}\\',_binary '8\\ɖlž\)&\8.6\f\Z6','',0,'?'),(_binary 'e\{\\\K\','wp-content/plugins/jetpack/_inc/blocks/dialogue/view.min.asset.php',0,_binary '\ܙ=lW\_',_binary '\ܙ=lW\_',_binary '~/5\\9 \nzM\CH\D+9\4\/','',0,'?'),(_binary '\;tV\Z\,i\\\','wp-content/plugins/jetpack/_inc/blocks/dialogue/view.min.js',0,_binary 'HW|Н\9t',_binary 'HW|Н\9t',_binary '\jV\}\r\"2=6\r9yXt\.*a\A','',0,'?'),(_binary '\8V:+zν\ns','wp-content/plugins/jetpack/_inc/blocks/dialogue/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\Es\\a\rg+\3',_binary 'L\$lcGJ9}b\A\\Z\>}\s','',0,'?'),(_binary '\i\\\9~u(SeH\n','wp-content/plugins/jetpack/_inc/blocks/donations/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@ RpL\n\r\\\\)M',_binary '~\\N8\{\\\f>C6\\'\<wA\','',0,'?'),(_binary '10D૞Yiʥd','wp-content/plugins/jetpack/_inc/blocks/donations/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\q(\e8)',_binary '0m\e\-X(\\>Ņ?\N\\','',0,'?'),(_binary 'NG?T-\K\\t','wp-content/plugins/jetpack/_inc/blocks/donations/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\\\n\S',_binary '\\\b\n\'O%S/S/۸ncc/\','',0,'?'),(_binary '-2\\v/3\(','wp-content/plugins/jetpack/_inc/blocks/donations/view.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-Dj\L+;7a\L\',_binary '}l%\\\'kP(\\\\)\\3XW\$V','',0,'?'),(_binary 'P\\0\\','wp-content/plugins/jetpack/_inc/blocks/donations/view.min.asset.php',0,_binary '!!ޢ cQ',_binary '!!ޢ cQ',_binary '\+Sɉ2\Ĩ΃\-\\7\\Za\vU','',0,'?'),(_binary 'M\4<,j\r\\','wp-content/plugins/jetpack/_inc/blocks/donations/view.min.js',0,_binary 'ט\\\В',_binary 'ט\\\В',_binary 'X\?Y}~I]\`@Sk\F\`','',0,'?'),(_binary '	\\nI\i!h*','wp-content/plugins/jetpack/_inc/blocks/donations/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\!\]-z\Ǌ',_binary ' \-CTȚ\=\*\	p_>\\ω:\c:','',0,'?'),(_binary '\0S\"{7gCT\\)','wp-content/plugins/jetpack/_inc/blocks/editor-assets/mapbox-gl-1.13.0.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',xRt׈t^Sn1',_binary '1lPa\\\y	U?%9kj\oZ','',0,'?'),(_binary ':\!cվ{=څeY?','wp-content/plugins/jetpack/_inc/blocks/editor-assets/mapbox-gl-1.13.0.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\'A2ݖ\\W*\0',_binary ':B\\ަ¸\\XU\:;:/g[Ay>O=Z','',0,'?'),(_binary '\\j\ZP&v>쵷','wp-content/plugins/jetpack/_inc/blocks/editor-beta.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\*6(\S\\\',_binary 'ۖ\B(h\\\gzmKԸnXt\4\','',0,'?'),(_binary 'M\Yh\ݽ$e\/','wp-content/plugins/jetpack/_inc/blocks/editor-beta.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\">΍BƊ}j\i',_binary 'p`\{\\ʀp\1OHl8\\O\Z','',0,'?'),(_binary '\%o\o܃30','wp-content/plugins/jetpack/_inc/blocks/editor-beta.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\W\0\'ZP@S\\',_binary '\)y\Aj[\o\\\cF`','',0,'?'),(_binary 'm\r\\\"@G\','wp-content/plugins/jetpack/_inc/blocks/editor-beta.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7]ȹנW|e\;',_binary 'T8\\z\q\*r\#\\4)]UQ\y','',0,'?'),(_binary 'mjU	&/\I܃6','wp-content/plugins/jetpack/_inc/blocks/editor-beta.min.asset.php',0,_binary '1/+>ӴTрsN\!',_binary '1/+>ӴTрsN\!',_binary '\\\F*\\\B\;\{\\\\8I\','',0,'?'),(_binary '`\P\\*[\','wp-content/plugins/jetpack/_inc/blocks/editor-beta.min.js',0,_binary 'S\\^*%',_binary 'S\\^*%',_binary 'zxǉ W\\-w\&\\\.aw\~V\0','',0,'?'),(_binary 'y̾\ti\0#\~Ӟ)','wp-content/plugins/jetpack/_inc/blocks/editor-beta.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|5?wgJJtRX\\',_binary '	Y\*\"\C\07}c\2nA0\ Z!m','',0,'?'),(_binary '\6uza\U(<T','wp-content/plugins/jetpack/_inc/blocks/editor-experimental.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oͧK\⟃mh\Z',_binary '\T\\'\S\\5\"X\Z\\7yfjO\h','',0,'?'),(_binary 'e-(&_%b\`ϗ\?<','wp-content/plugins/jetpack/_inc/blocks/editor-experimental.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\\0^!hCd\\',_binary '\F|ze\Ѝ{\v\Eު\r]','',0,'?'),(_binary '\\0us4g\(Z|z\'','wp-content/plugins/jetpack/_inc/blocks/editor-experimental.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\Zy\\Q\'k \\ԇ',_binary '\5\\Kҫ\\\(,\\!4D\e`o$','',0,'?'),(_binary '\\uy<Ȣ	t','wp-content/plugins/jetpack/_inc/blocks/editor-experimental.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7]ȹנW|e\;',_binary 'T8\\z\q\*r\#\\4)]UQ\y','',0,'?'),(_binary '`h8}0\\\','wp-content/plugins/jetpack/_inc/blocks/editor-experimental.min.asset.php',0,_binary '\"X?\DBf^',_binary '\"X?\DBf^',_binary '#Ǫ䙨>\\\KH\\,<\%։\\','',0,'?'),(_binary 'aW`-\0\Mj','wp-content/plugins/jetpack/_inc/blocks/editor-experimental.min.js',0,_binary '/hTn̢M\:,\ذ',_binary '/hTn̢M\:,\ذ',_binary '߷\i\\\0\%=y\B\XfX؉L#','',0,'?'),(_binary '\j\,G*w\\','wp-content/plugins/jetpack/_inc/blocks/editor-experimental.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\ῤUwi\Z7',_binary '\!d87[+^?\Bߏ+\\൙\\','',0,'?'),(_binary ';\\O\F~38','wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\rB\JWѱo [\',_binary 'c]\3w\\A\W\WyIS4\j\\\','',0,'?'),(_binary '=c\¸Y','wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\D<ڠL#,-',_binary '\\\L^\\ڪ\\<\\\?(z\Z\\\g\','',0,'?'),(_binary '\Ft\D\\ՙ\','wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\t!\\\v3Pg \b',_binary '%Uŧb_)|Ŵ <y\P\\"@9\e','',0,'?'),(_binary '\q\Fi|\rO','wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7]ȹנW|e\;',_binary 'T8\\z\q\*r\#\\4)]UQ\y','',0,'?'),(_binary 'L-\أT\=Z;','wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.min.asset.php',0,_binary '\\7\\\=\Ng\0',_binary '\\7\\\=\Ng\0',_binary '\,\Z7\H\c*StuWYvQ\\','',0,'?'),(_binary 'l_ZqjѲ\K!','wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.min.js',0,_binary '\H\?\d\:_\',_binary '\H\?\d\:_\',_binary '5\\˿\;\\\\n:ʒrMae','',0,'?'),(_binary '&Z\P\\\\Y)3','wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-YI\\\o-\:',_binary 'O{\]\n\\O>\g\Ztx`p}]','',0,'?'),(_binary '~\\˖\rB\&\\','wp-content/plugins/jetpack/_inc/blocks/editor.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5ߞ\NϱiA6U',_binary '1s#^QV;\\\Q\8^\٫c\\p\\\N','',0,'?'),(_binary 'RK1XG`\;','wp-content/plugins/jetpack/_inc/blocks/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')db.#口\\',_binary '\37pg\0j\<`\0J\=SP\\G\>B','',0,'?'),(_binary 'f5H4şf\աN\','wp-content/plugins/jetpack/_inc/blocks/editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.2͉\nӼ$y4N ',_binary '+`0,G*vXN/\\'<O\w\\3\0','',0,'?'),(_binary 'r\8-@','wp-content/plugins/jetpack/_inc/blocks/editor.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7]ȹנW|e\;',_binary 'T8\\z\q\*r\#\\4)]UQ\y','',0,'?'),(_binary '\3]Y{\:cb\Y','wp-content/plugins/jetpack/_inc/blocks/editor.min.asset.php',0,_binary '\	\)\6\t}/\"\\',_binary '\	\)\6\t}/\"\\',_binary '4\qڐ\\'Tw\T4a\0\mӟ?\\G','',0,'?'),(_binary 'ݥ׭\Zh.\q\n\\','wp-content/plugins/jetpack/_inc/blocks/editor.min.js',0,_binary '\DU6\K\\\'',_binary '\DU6\K\\\'',_binary '(\g#م\{2񉀽\'\\rrJ','',0,'?'),(_binary '\*\0\'\\\\\)','wp-content/plugins/jetpack/_inc/blocks/editor.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Dy\"..\0Ѧ',_binary '\\ZTK\0\|gD	֔\\A#\COAӺ\','',0,'?'),(_binary '(\7\@p','wp-content/plugins/jetpack/_inc/blocks/eventbrite/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\hM`<F*',_binary 'n?\5+s,99B\	݃ :q\*:?ס-\"','',0,'?'),(_binary 'E\ؿ\\NWսar','wp-content/plugins/jetpack/_inc/blocks/eventbrite/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Afw\[z\"\L\',_binary '}*/\\K\<\*\\eUJ\\f\','',0,'?'),(_binary 'gp3\F\͂+B','wp-content/plugins/jetpack/_inc/blocks/eventbrite/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"h\.-\\\\\0]',_binary 'F!h\d\\\E\rt=\I\|\\','',0,'?'),(_binary 'u\k]fD\mg\X\:','wp-content/plugins/jetpack/_inc/blocks/eventbrite/view.min.asset.php',0,_binary '\yM&^b`*|f',_binary '\yM&^b`*|f',_binary 'rT\RQ\rJ\\G[\\%$n\n.\K','',0,'?'),(_binary 'Q~?\\8T\'\@<H','wp-content/plugins/jetpack/_inc/blocks/eventbrite/view.min.js',0,_binary 'm4A\\i\8',_binary 'm4A\\i\8',_binary '\z`ЊM\ǁ\Γ\e\O\','',0,'?'),(_binary 'MZ|\sd\G`','wp-content/plugins/jetpack/_inc/blocks/eventbrite/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˬE/<;+8ǌ',_binary 'k.rL0@\\\JGD4=\Z2p\\?_ߋa[','',0,'?'),(_binary '\nΏz\5g[q\u','wp-content/plugins/jetpack/_inc/blocks/frontend-nudge.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6ŔcgrlLu',_binary '\Q\;ܡ\u+0ֲ\\ZäJ\}!i','',0,'?'),(_binary '\0WW$\\\\\j','wp-content/plugins/jetpack/_inc/blocks/gif/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\QC>sD`\',_binary '\\]E\U	 \UUxypK\\7','',0,'?'),(_binary '\~\I\\~)(f?2','wp-content/plugins/jetpack/_inc/blocks/gif/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xޮ\s\5n-\'',_binary ';^\v\0=3+|\86\\\\bzŜ@','',0,'?'),(_binary 'O\\\X\\\','wp-content/plugins/jetpack/_inc/blocks/gif/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"h\.-\\\\\0]',_binary 'F!h\d\\\E\rt=\I\|\\','',0,'?'),(_binary '40.qn\>x\3','wp-content/plugins/jetpack/_inc/blocks/gif/view.min.asset.php',0,_binary '/\HC\C>\\z\e',_binary '/\HC\C>\\z\e',_binary '\\\\/@Z\(x#\O\LYe3^<\','',0,'?'),(_binary ';;^\`pbZe','wp-content/plugins/jetpack/_inc/blocks/gif/view.min.js',0,_binary 'm4A\\i\8',_binary 'm4A\\i\8',_binary '\z`ЊM\ǁ\Γ\e\O\','',0,'?'),(_binary 'jA\萙\\r','wp-content/plugins/jetpack/_inc/blocks/gif/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\=(Jc6\f 7',_binary '\x#\ܿ\\|\\T','',0,'?'),(_binary '8\z\\R\@\n','wp-content/plugins/jetpack/_inc/blocks/google-calendar/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wu\(\od.O\',_binary '\/D\VF$l)2\"ՖC(a\','',0,'?'),(_binary '\Eg\\5[\','wp-content/plugins/jetpack/_inc/blocks/google-calendar/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\Ta\#I5BR',_binary 'ش8\\\O\Z\3XP\goxK\w\rwiq','',0,'?'),(_binary 'ë=\!\e5v&\ZF5','wp-content/plugins/jetpack/_inc/blocks/google-calendar/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"h\.-\\\\\0]',_binary 'F!h\d\\\E\rt=\I\|\\','',0,'?'),(_binary '2*3g]\%9b)','wp-content/plugins/jetpack/_inc/blocks/google-calendar/view.min.asset.php',0,_binary '\kiIʃl^',_binary '\kiIʃl^',_binary 'm\\F8h;\w\KB\N{\ʽs','',0,'?'),(_binary '\B[w\'\kF','wp-content/plugins/jetpack/_inc/blocks/google-calendar/view.min.js',0,_binary 'm4A\\i\8',_binary 'm4A\\i\8',_binary '\z`ЊM\ǁ\Γ\e\O\','',0,'?'),(_binary '|;\^1[RE\B\\','wp-content/plugins/jetpack/_inc/blocks/google-calendar/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\Ta\#I5BR',_binary 'ش8\\\O\Z\3XP\goxK\w\rwiq','',0,'?'),(_binary '\\\C','wp-content/plugins/jetpack/_inc/blocks/image-compare/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lC[\qx\q\',_binary 'D\\\-8\\O=l-ꈽ>\f3pP\;','',0,'?'),(_binary 'Lڥ\ 	b\','wp-content/plugins/jetpack/_inc/blocks/image-compare/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\3h-\7]f\',_binary 'hg\E\c\OF\T\ng#8\\\\\','',0,'?'),(_binary ':;y*w\$\','wp-content/plugins/jetpack/_inc/blocks/image-compare/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Oy\ޑ-;5r^\',_binary '$/A!z\\\n6F6I~qtg\z\.[X\\\','',0,'?'),(_binary '\^ٳ=j\2]6','wp-content/plugins/jetpack/_inc/blocks/image-compare/view.min.asset.php',0,_binary 'N\\\M\pog\'\nN',_binary 'N\\\M\pog\'\nN',_binary 'i\n\Q	\w,\\M\iY\\n.\','',0,'?'),(_binary '\%4#h%','wp-content/plugins/jetpack/_inc/blocks/image-compare/view.min.js',0,_binary 'S˝-\\Z\n:x',_binary 'S˝-\\Z\n:x',_binary '\kP0YXWNs@L:\0\\\m\','',0,'?'),(_binary 'J\~rwev\','wp-content/plugins/jetpack/_inc/blocks/image-compare/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}\U\\S\9c\\S',_binary '\pݥV\k\a:~\"\Z\xD4','',0,'?'),(_binary 'ʧ\?\\"-ن','wp-content/plugins/jetpack/_inc/blocks/images/eventbrite-in-page-example-c351ec80e4dd5d39433d.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Sο#xb\'j',_binary 'ILp\'{\ZL8\pj6q\q\ݪ4\i','',0,'?'),(_binary 'P\\\F\1T\x˄0','wp-content/plugins/jetpack/_inc/blocks/images/example_160x600-ccbc594f54431dafa70d.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\e\\\KoA\\\M\',_binary 'b\\y0,\\\3$S\jL','',0,'?'),(_binary '\\r\\\7|\N:','wp-content/plugins/jetpack/_inc/blocks/images/example_300x250-5b93e8174f02d48c40b7.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!.V\¬˽t,\Y',_binary '\fs%i9\%7\\\\nfWB\\Qƪ:\Z','',0,'?'),(_binary '\0閪Z\\(','wp-content/plugins/jetpack/_inc/blocks/images/example_320x50-7110edf045141630a222.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s_Aг!b8',_binary '[nmU81W\\\\l|j>|R,5\9s','',0,'?'),(_binary 'L\n#CT\\\Ֆ\\p5c','wp-content/plugins/jetpack/_inc/blocks/images/example_728x90-d9de384932330b92e1c3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+0~4:\0t-',_binary '\K\\rPF\\um0\a\\j\#g','',0,'?'),(_binary '\"gʍ1o\	\wY','wp-content/plugins/jetpack/_inc/blocks/images/img-example-after-d6db862c442c24ad1c63.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',H<\\\e^4g\',_binary '\8a*9\\\7\\\[\T\2\\\m','',0,'?'),(_binary 'I\^s\\Io\\_\\'','wp-content/plugins/jetpack/_inc/blocks/images/img-example-before-4592b4656108c1429614.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\Zj ظ',_binary '$\ofǡ\\'颪.\kE\.\[_啾gI\.','',0,'?'),(_binary '\\\Z\\P\\a\bfH','wp-content/plugins/jetpack/_inc/blocks/images/map-preview-97bda80ebb6981457630.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\X}\؅}\\\\\',_binary 'A0\*\ш~\2PD7uM\2\','',0,'?'),(_binary '&\0\\>5{O\I\\\\Z','wp-content/plugins/jetpack/_inc/blocks/images/map-theme_black_and_white-b6ad81a7dd09d09fb34d.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YF\Mgmn4\\3',_binary '~NE\\S\2Sc|\[N\\ |','',0,'?'),(_binary '~\8Je#Z\\'','wp-content/plugins/jetpack/_inc/blocks/images/map-theme_default-b53ccdf170e5ac873ff0.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\DY*Z_8$',_binary 'B\n\+w`\Ǣ߲?\\\\\M','',0,'?'),(_binary '\\YA\~\r;\\\','wp-content/plugins/jetpack/_inc/blocks/images/map-theme_satellite-cc50c608e244f90d18dc.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M)P/6+\'W~',_binary '\7^y;Ts\L\\\"򦚏\v','',0,'?'),(_binary '\Gm&\\3ig\\','wp-content/plugins/jetpack/_inc/blocks/images/map-theme_terrain-ac291441b3461820747d.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+nl	\\Xe;\\',_binary '\v\\Ss.\ĠWn=\8YL,q\\cT)','',0,'?'),(_binary '^R:!\Cv','wp-content/plugins/jetpack/_inc/blocks/images/oval-3cc7669d571aef4e12f34b349e42d390.svg',0,_binary '<\fW\Z\N\K4BӐ',_binary '<\fW\Z\N\K4BӐ',_binary '\JFC*yW\Ll\\\t\\\','',0,'?'),(_binary 'B`aj\A r`+\f','wp-content/plugins/jetpack/_inc/blocks/images/oval-5f1d889983a8747472c7.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\fW\Z\N\K4BӐ',_binary '\JFC*yW\Ll\\\t\\\','',0,'?'),(_binary 'n\_;\S\\K','wp-content/plugins/jetpack/_inc/blocks/images/paypal-button-2x-62cd99bcc3acbd1ff504.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\"\0 ?|a1j',_binary '\.\r6I)\r%\a)(Wl\"\҇B','',0,'?'),(_binary 't\)\˧#\p%(\'','wp-content/plugins/jetpack/_inc/blocks/images/paypal-button-a51d6c3207b0a904edb7.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3oQ\H\D\n\u\v',_binary '*\Ѭ#\lOʠEĉkQEW\0vn#','',0,'?'),(_binary '9D\++qC[8\\','wp-content/plugins/jetpack/_inc/blocks/images/simple-payments_example-1-0273eeccd8d120df4984.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\fn@ҌVN\\\6',_binary 'KT\hFnW7\\Zڈ<\l>!7','',0,'?'),(_binary '\@jj\\n\wծ[B\','wp-content/plugins/jetpack/_inc/blocks/images/slideshow_example-1-07a3f164621235df0419.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\"\Z\K\E_\',_binary '\Ό\\0\C\\~<_r!D51v*@典','',0,'?'),(_binary 'k\(rUz\'U|\','wp-content/plugins/jetpack/_inc/blocks/images/slideshow_example-2-2ee401e47066229bdac5.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\Y\S/^q(M',_binary 'D\~D{\\\c	!9!,\7b','',0,'?'),(_binary '\"v\nI7b8','wp-content/plugins/jetpack/_inc/blocks/images/slideshow_example-3-0682afca66c485f17ff6.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uϫOK+d',_binary 's_AUC5vI;\\J%ȿ\";1mZk&','',0,'?'),(_binary 'K\=\','wp-content/plugins/jetpack/_inc/blocks/images/story_example-1-716db2e4f5a074d302f7.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\\E\Ȱ\',_binary ',\r=\o\6b6<V\\'S\\R','',0,'?'),(_binary '2\)\a\9\{w1','wp-content/plugins/jetpack/_inc/blocks/images/tiled-gallery_example-1-d2817eb0e669267ab3eb.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$\|\)@\\򊩦\',_binary '\\A\i5\7Bi\5\]t<Ȟ\'\\b','',0,'?'),(_binary '9Ώܥ\B','wp-content/plugins/jetpack/_inc/blocks/images/tiled-gallery_example-2-7d8f0cf8e262f0112691.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h}sf\Y2K#hϒ',_binary '4\0i\Xӱ3\nȔ\\R\n','',0,'?'),(_binary '\Vo\{\2<Ƹ','wp-content/plugins/jetpack/_inc/blocks/images/tiled-gallery_example-3-07a3f164621235df0419.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\"\Z\K\E_\',_binary '\Ό\\0\C\\~<_r!D51v*@典','',0,'?'),(_binary '.ͻz]\|\\\','wp-content/plugins/jetpack/_inc/blocks/images/tiled-gallery_example-4-2ee401e47066229bdac5.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\Y\S/^q(M',_binary 'D\~D{\\\c	!9!,\7b','',0,'?'),(_binary '*Ow7Z\wr\ऴ	X','wp-content/plugins/jetpack/_inc/blocks/images/tiled-gallery_example-5-a1935fd9cf1181168d90.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\C6?\'J7\\r\T',_binary 'W\l3\\\Z\i\Y$(\n\u,fՔS\m','',0,'?'),(_binary 'ƿ\Uw\I\M2\sl','wp-content/plugins/jetpack/_inc/blocks/images/tiled-gallery_example-6-9f9d39c6af0fb4b0d99c.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yrFf\܉F',_binary '\\\^\C\OgJ\)\ƌC{N\0\6','',0,'?'),(_binary '\\2p/3kn\x','wp-content/plugins/jetpack/_inc/blocks/images/upgrade-illustration-4f15d75a961111384b907965c2e4e168.svg',0,_binary 'O\Z8Kye\\\h',_binary 'O\Z8Kye\\\h',_binary '6~	DIZ\|(z\\;\u*\-;','',0,'?'),(_binary 'W\X\$~','wp-content/plugins/jetpack/_inc/blocks/images/upgrade-illustration-5b3059f7101ac37f4339.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\Z8Kye\\\h',_binary '6~	DIZ\|(z\\;\u*\-;','',0,'?'),(_binary 'Ө5/-\','wp-content/plugins/jetpack/_inc/blocks/images/upgrade-illustration-7779cb4960d6719c723e09cb51a732f7.svg',0,_binary 'wy\I`\qr>	\Q2\',_binary 'wy\I`\qr>	\Q2\',_binary 'G\\*U\0s\$`g\@\r͋QO{\J','',0,'?'),(_binary 't\C\w-\'\\j','wp-content/plugins/jetpack/_inc/blocks/images/videopress-block-example-image-da9ef73787adca8896f2.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\Qi0Զ\\^',_binary '(dݞS\'F\	`g\uzN3\\n\\0\','',0,'?'),(_binary '\q\\3\\@\Z\','wp-content/plugins/jetpack/_inc/blocks/index.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\V$C\>j\m\\',_binary 'ݙ.x\0Joe\\)/\rY\H','',0,'?'),(_binary '[QfotzV\=','wp-content/plugins/jetpack/_inc/blocks/instagram-gallery/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9@x\\B,YW',_binary '\=M\\1o\\nxS]+ht','',0,'?'),(_binary 's\|WPq\LW\P#','wp-content/plugins/jetpack/_inc/blocks/instagram-gallery/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\\+cW/\c\',_binary 'p\0\`\\0\\62\@\\0f-,\\t\،','',0,'?'),(_binary '\zGE b\\f','wp-content/plugins/jetpack/_inc/blocks/instagram-gallery/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"h\.-\\\\\0]',_binary 'F!h\d\\\E\rt=\I\|\\','',0,'?'),(_binary 'qvŻ\!d3','wp-content/plugins/jetpack/_inc/blocks/instagram-gallery/view.min.asset.php',0,_binary '\\1k\'Y 2_',_binary '\\1k\'Y 2_',_binary '\UL\bth\"\1w(\F','',0,'?'),(_binary 'SC#y@|/NŠ','wp-content/plugins/jetpack/_inc/blocks/instagram-gallery/view.min.js',0,_binary 'm4A\\i\8',_binary 'm4A\\i\8',_binary '\z`ЊM\ǁ\Γ\e\O\','',0,'?'),(_binary 'wKwm\@\<ɤd','wp-content/plugins/jetpack/_inc/blocks/instagram-gallery/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\\+cW/\c\',_binary 'p\0\`\\0\\62\@\\0f-,\\t\،','',0,'?'),(_binary '\b\2C\eG','wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\\?\9TwJ\',_binary '6\5C\+?5\*1etiF}gY\\k\\\','',0,'?'),(_binary '&FDci\5X\5','wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\G\ʣ\<\	~i',_binary '1OY \ݻc[\J\U\\ӓE\','',0,'?'),(_binary 'X`g\\v\\%5','wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wzU{̡\2\,',_binary '<5vа\'\QGw\\k\{A\j\aT=߃','',0,'?'),(_binary 'U.Af\3M\9','wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.min.asset.php',0,_binary 'de\"=\n}\r\0',_binary 'de\"=\n}\r\0',_binary '\H\\r\Z\u\\\\\k','',0,'?'),(_binary '&\w-|팹\U','wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.min.js',0,_binary ',\\x<(	y\{',_binary ',\\x<(	y\{',_binary '\r\\\0W\.تI\\Y\\\tac<','',0,'?'),(_binary '\0\03ێ<\rFs	^Q@','wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\G\ʣ\<\	~i',_binary '1OY \ݻc[\J\U\\ӓE\','',0,'?'),(_binary 'KuQ\9\Uv+Qf','wp-content/plugins/jetpack/_inc/blocks/map/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!q,\ޖ',_binary 'ԝ\\\N\$\ԊtQcوd\Ρ\;;','',0,'?'),(_binary '\07\\\\\\}\aޞ','wp-content/plugins/jetpack/_inc/blocks/map/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\큳Ryb\s\r\\',_binary ',\X\GqkL\&o8up\=fh','',0,'?'),(_binary 'a\\\En\E}\[4`','wp-content/plugins/jetpack/_inc/blocks/map/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]\!\s\^S',_binary '[e\m	>\jݱS`qj\\<HX\w','',0,'?'),(_binary '{.\۶oo\4={]ZWw','wp-content/plugins/jetpack/_inc/blocks/map/view.min.asset.php',0,_binary '\'\\8k\zSsu',_binary '\'\\8k\zSsu',_binary 'N\K2/(\\e\\J\9/','',0,'?'),(_binary '\\\\npj\\^K\','wp-content/plugins/jetpack/_inc/blocks/map/view.min.js',0,_binary ']\0\n?\\D8',_binary ']\0\n?\\D8',_binary 'wS\Ț\()\s\"5\.(','',0,'?'),(_binary '\{T\o !','wp-content/plugins/jetpack/_inc/blocks/map/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{k{Mga|f/',_binary '5^\v\NI\p_;\\d~YCt\\\','',0,'?'),(_binary '롊\5ҫm','wp-content/plugins/jetpack/_inc/blocks/opentable/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\>V\*BP\\>3e',_binary 'gO1&\\Pڹ\W\e:ٔ\r\r(\se','',0,'?'),(_binary 'dM\\Z?\NS*^ٰ\\','wp-content/plugins/jetpack/_inc/blocks/opentable/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iGC\ZA\AI',_binary '\\rczi7Ť0!\\\\G1\N\y','',0,'?'),(_binary 'f^l\lQ','wp-content/plugins/jetpack/_inc/blocks/opentable/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"h\.-\\\\\0]',_binary 'F!h\d\\\E\rt=\I\|\\','',0,'?'),(_binary '!Һ׼Ĩ\*\uO(','wp-content/plugins/jetpack/_inc/blocks/opentable/view.min.asset.php',0,_binary 'KP$˖B\P\\\\',_binary 'KP$˖B\P\\\\',_binary '\\Tn\ahʒd{\^A\U\{JTm\r','',0,'?'),(_binary '\"\\\3J\ɲM!','wp-content/plugins/jetpack/_inc/blocks/opentable/view.min.js',0,_binary 'm4A\\i\8',_binary 'm4A\\i\8',_binary '\z`ЊM\ǁ\Γ\e\O\','',0,'?'),(_binary 'Y6\U\\k\FB','wp-content/plugins/jetpack/_inc/blocks/opentable/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's%UCm\$\~wU\',_binary 'I3y()\\WL$}\P2\H;ʭvz','',0,'?'),(_binary '\\ \|c>3\Jm\7','wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڤ\\\"$K\	\nN',_binary '\\hS5J \|\m\饃U\~\P˫3+F','',0,'?'),(_binary '\$uF\	{k\\','wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ǝ}\\)ƵG',_binary 'ҙ\\A۶/\!\P4\\RS\$','',0,'?'),(_binary 'I	J}#*\lG,݀','wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\UD=ם,ܽ!\'6',_binary 'e+\SWS0]\\3\\"&\2\	>j0\','',0,'?'),(_binary '~6\:\\\','wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R4pa\\]@V\\\',_binary '\\\iS&8FgߌX\'J-\6hf8km','',0,'?'),(_binary '\4\27v\\T.;','wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.min.asset.php',0,_binary '\4|c\	d@KJp',_binary '\4|c\	d@KJp',_binary 'h\$uJ\f[\r\ \\\G4+\J>֏','',0,'?'),(_binary 'd9H:\vVܱ\\','wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.min.js',0,_binary '96\]ƺܤ#',_binary '96\]ƺܤ#',_binary 'LMVQU\%C\\\l\\\=hAWL','',0,'?'),(_binary 'rN~\\D\nGl','wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\/ls(\n\\E¦',_binary 'et\}\\skT\ݬ\\܄fsoM_\','',0,'?'),(_binary '-P\\X1\\\\\','wp-content/plugins/jetpack/_inc/blocks/premium-content/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4\\0>\/A\(',_binary '_4\\'mFZKz\Y*\\'Q\','',0,'?'),(_binary '\\n݂H$8\Hu','wp-content/plugins/jetpack/_inc/blocks/premium-content/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\b>^W\\\',_binary '\\\.ػNm2n֞\e2\:\*Kl\)\','',0,'?'),(_binary '\\\u=\\\\rO\'\','wp-content/plugins/jetpack/_inc/blocks/premium-content/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\h;=U1\"vum',_binary 'L҄r:\l\l\\D\;C9\\ \','',0,'?'),(_binary 'J\é^\f\n|azJ','wp-content/plugins/jetpack/_inc/blocks/premium-content/view.min.asset.php',0,_binary '-\U?z3`ٽ\',_binary '-\U?z3`ٽ\',_binary 'OoLv!{\q#\_ܬGK8\9','',0,'?'),(_binary 's\0>@͂r\\FUY','wp-content/plugins/jetpack/_inc/blocks/premium-content/view.min.js',0,_binary 'DxXnA\&ҲV\',_binary 'DxXnA\&ҲV\',_binary '-}x\]Z\"|\"%\X\\\X','',0,'?'),(_binary '\\h\@\+쮗;\','wp-content/plugins/jetpack/_inc/blocks/premium-content/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\,G\\r\S#',_binary 'p:		eG\ʦs\\mi\Z(A@#\@\0','',0,'?'),(_binary '(\mn\\','wp-content/plugins/jetpack/_inc/blocks/rating-star/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\[R.\r\\',_binary '9\yv\\~\6B\-^XY͐t4͞Qi#\','',0,'?'),(_binary 'haj>_Q¢Ҷ^','wp-content/plugins/jetpack/_inc/blocks/rating-star/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nc`\q\[oo\?',_binary 'K\\\vGnBxd\\O\ \\\	','',0,'?'),(_binary '\<\آ\\J+e\=&B\','wp-content/plugins/jetpack/_inc/blocks/rating-star/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"h\.-\\\\\0]',_binary 'F!h\d\\\E\rt=\I\|\\','',0,'?'),(_binary 's\n\\3Y*Ϧz','wp-content/plugins/jetpack/_inc/blocks/rating-star/view.min.asset.php',0,_binary '\q\\|\\Z+\Z{',_binary '\q\\|\\Z+\Z{',_binary '\el\p:tJ{c9\\A\SU\~qu3\','',0,'?'),(_binary 'YN5\gTw+\.0','wp-content/plugins/jetpack/_inc/blocks/rating-star/view.min.js',0,_binary 'm4A\\i\8',_binary 'm4A\\i\8',_binary '\z`ЊM\ǁ\Γ\e\O\','',0,'?'),(_binary '9\ĿAz\\\>\V\','wp-content/plugins/jetpack/_inc/blocks/rating-star/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\Fld\\HD6}',_binary '9/}\\\ZNNg\^!\C\n\?\mAn\%[x','',0,'?'),(_binary 'Ǆ-9ZMI\S\','wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*-\Zo\0\O\',_binary ']\\\\d~p?^\\)\_*lr','',0,'?'),(_binary ']\<ch\','wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YD0oZ\9i\Z',_binary 'ܰ\Fyu\n\\Vx\nw\'>	\rn)Dmΐ1֞','',0,'?'),(_binary '\ o\\r54TK','wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\4~*{N <O',_binary '\\n\ןf\\l7^`e\iDݵU','',0,'?'),(_binary 'h˺\\]\#!','wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.min.asset.php',0,_binary 'r6jO\RDe\u',_binary 'r6jO\RDe\u',_binary 't0\#KV%\WQȭF1*#jt\','',0,'?'),(_binary '{ $>\ٵ:0\','wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.min.js',0,_binary 'a\_\2@~eCw567\',_binary 'a\_\2@~eCw567\',_binary 'LbP$\\'\\!=Ks㊬\gH','',0,'?'),(_binary '\r9\?VTD\{','wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YD0oZ\9i\Z',_binary 'ܰ\Fyu\n\\Vx\nw\'>	\rn)Dmΐ1֞','',0,'?'),(_binary 'M\03q(*}x\5S','wp-content/plugins/jetpack/_inc/blocks/repeat-visitor/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6u9N̠\',_binary '\I#7\lH@\cQCi5\ZWed\','',0,'?'),(_binary 'C8\q{f\','wp-content/plugins/jetpack/_inc/blocks/repeat-visitor/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?%\\r?\>ӳ\',_binary '*,`X\0l2\ZP=!exHO`],','',0,'?'),(_binary 'QM\N\;m(\;','wp-content/plugins/jetpack/_inc/blocks/repeat-visitor/view.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Wt\\\[\W',_binary 'NX\Y\\M2\̕\{/\\^\\\\y','',0,'?'),(_binary 'Zf\\\C\\\','wp-content/plugins/jetpack/_inc/blocks/repeat-visitor/view.min.asset.php',0,_binary '\~#$o\Z\8T\8\',_binary '\~#$o\Z\8T\8\',_binary '\\r!\\hB}=cWB\j\r%Iq','',0,'?'),(_binary 'K\CVm$k!e;','wp-content/plugins/jetpack/_inc/blocks/repeat-visitor/view.min.js',0,_binary 'ͻ.Lsãu?\'\\Z\',_binary 'ͻ.Lsãu?\'\\Z\',_binary '\n4\t#\e[P\*\?>\\:&\L\','',0,'?'),(_binary 'T\Z\㼏JY','wp-content/plugins/jetpack/_inc/blocks/revue/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`u\\\>E',_binary 'm\֔\I\\Fr\\0\7\\','',0,'?'),(_binary 'e\f\Q-PsU','wp-content/plugins/jetpack/_inc/blocks/revue/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N9E\\\',_binary '\\\Zďg )>l\\p6.\u\','',0,'?'),(_binary '\\nҿOmſ4','wp-content/plugins/jetpack/_inc/blocks/revue/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\\\w\ϯ-3h\\',_binary '\'\\\\1󀇨VZQS\ڊ\'5i=\#','',0,'?'),(_binary 'd\\zogP)Dj','wp-content/plugins/jetpack/_inc/blocks/revue/view.min.asset.php',0,_binary 'ȷ\X@$p\'	',_binary 'ȷ\X@$p\'	',_binary 'ӺK\`āX\=Pu\XN`','',0,'?'),(_binary '\\[S\>J\\','wp-content/plugins/jetpack/_inc/blocks/revue/view.min.js',0,_binary '7H\8\\ZM\'\ِ듴',_binary '7H\8\\ZM\'\ِ듴',_binary 'Û.\"*íe\$\\\AxuMM:63qk','',0,'?'),(_binary 'ce\\K_d.pGz	\\','wp-content/plugins/jetpack/_inc/blocks/revue/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N9E\\\',_binary '\\\Zďg )>l\\p6.\u\','',0,'?'),(_binary '7T\&-~Kv','wp-content/plugins/jetpack/_inc/blocks/send-a-message/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b#8%N{\1	z',_binary '>`\:\&a>E\CjNMsW#\b','',0,'?'),(_binary '\w\XNVv\\\oq','wp-content/plugins/jetpack/_inc/blocks/send-a-message/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\t7.í\\',_binary '|\0\\f@Cn\\B꺆\2ImS\','',0,'?'),(_binary 'V+4\r*[\#+I\#\;\','wp-content/plugins/jetpack/_inc/blocks/send-a-message/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"h\.-\\\\\0]',_binary 'F!h\d\\\E\rt=\I\|\\','',0,'?'),(_binary 'H\xz8\y|r ','wp-content/plugins/jetpack/_inc/blocks/send-a-message/view.min.asset.php',0,_binary 'f\"`盼*D\oYT\r',_binary 'f\"`盼*D\oYT\r',_binary 'zJ֞8zl;\\b$!nrʢ\\\','',0,'?'),(_binary 'X~b\\\IE\ъh\','wp-content/plugins/jetpack/_inc/blocks/send-a-message/view.min.js',0,_binary 'm4A\\i\8',_binary 'm4A\\i\8',_binary '\z`ЊM\ǁ\Γ\e\O\','',0,'?'),(_binary 'fR\\DdTUz[','wp-content/plugins/jetpack/_inc/blocks/send-a-message/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Do\RNYjaA',_binary '\\x\n:\g+^hD	\q\/j*\Z8','',0,'?'),(_binary '}Ó\ZP\\nar','wp-content/plugins/jetpack/_inc/blocks/send-a-message/whatsapp-button/view.asset.php',0,_binary '/FIcŝ=5\\Z',_binary '/FIcŝ=5\\Z',_binary '&\\\Z\\vfOʝ\\r\H\AJl','',0,'?'),(_binary 'E\U>l\пW`ې\V','wp-content/plugins/jetpack/_inc/blocks/send-a-message/whatsapp-button/view.js',0,_binary '$p(w\ny4',_binary '$p(w\ny4',_binary '\Rjfp$\Zո>7^\Nn','',0,'?'),(_binary 'RebEZ\\\\w7m+N','wp-content/plugins/jetpack/_inc/blocks/slideshow/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\hX\m&\ک!',_binary '	M\Cv=V\\Z\0t\\`*o\\\M9>_\\0','',0,'?'),(_binary 'zįo<j~G&+C','wp-content/plugins/jetpack/_inc/blocks/slideshow/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̅оѼa\As\',_binary '\s>ҭ<^RREI)i\\##ސ[','',0,'?'),(_binary 'e;\XI\a','wp-content/plugins/jetpack/_inc/blocks/slideshow/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʵ`jfz(O',_binary 'vM\,\KZ婤\=SO\\n>p\','',0,'?'),(_binary '\]\Zx\r>9wkh\ž1;','wp-content/plugins/jetpack/_inc/blocks/slideshow/view.min.asset.php',0,_binary '\P7-\'Qd\\0\\:',_binary '\P7-\'Qd\\0\\:',_binary '\\\n!m\qjJ\^YQ\\n \B ض','',0,'?'),(_binary ' \\\n\O\Lm','wp-content/plugins/jetpack/_inc/blocks/slideshow/view.min.js',0,_binary '\=CZ(\'ᑁ\L\\X\',_binary '\=CZ(\'ᑁ\L\\X\',_binary '[/vN\\\Tf@ސzQc\L\X\\','',0,'?'),(_binary '٧	\H51\Z\	!\\','wp-content/plugins/jetpack/_inc/blocks/slideshow/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.6.h\Z\nW',_binary '炨\npv\\R{\ѸswG\r_?U\rIFV','',0,'?'),(_binary '|K;:OH<Rc','wp-content/plugins/jetpack/_inc/blocks/story/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r(\\0\\o^mW',_binary 'j\9mgf\0)^%\\ZCH\\nr4\','',0,'?'),(_binary '\\bR\еo\\','wp-content/plugins/jetpack/_inc/blocks/story/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?É`,i\_\"\',_binary '\_zo~qnA|r\fA\j_\CW','',0,'?'),(_binary 'o\lʋI_=ri','wp-content/plugins/jetpack/_inc/blocks/story/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'UU\\d',_binary '\3.Xq\]I\\뽜\ځ0\8=\','',0,'?'),(_binary '!=\\\x*c$\W','wp-content/plugins/jetpack/_inc/blocks/story/view.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R4pa\\]@V\\\',_binary '\\\iS&8FgߌX\'J-\6hf8km','',0,'?'),(_binary '\=\\0Y\'J1$\\','wp-content/plugins/jetpack/_inc/blocks/story/view.min.asset.php',0,_binary '\?\Z[AF\b\':w',_binary '\?\Z[AF\b\':w',_binary 'o\\DEܟ=\Z3Ϥmt\)Ӿ\','',0,'?'),(_binary 'ɭ:l\0\\?\HL5','wp-content/plugins/jetpack/_inc/blocks/story/view.min.js',0,_binary 'z6\:\0\H\0kh9',_binary 'z6\:\0\H\0kh9',_binary 'ųZQwk8hr\U\\\9D)d\Yf','',0,'?'),(_binary '\\\\':ݚ\\po','wp-content/plugins/jetpack/_inc/blocks/story/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Fm>\P\m(',_binary 'zR{\\:\\4\f\gMȩ?J\z','',0,'?'),(_binary 'g\0\\gfL]','wp-content/plugins/jetpack/_inc/blocks/stripe-nudge.html',0,_binary 'Uv\@\\r\\K',_binary 'Uv\@\\r\\K',_binary '\C\ʩmL\D	2+}Q?\MHI','',0,'?'),(_binary 'Nתpak6\\\0Z','wp-content/plugins/jetpack/_inc/blocks/subscriptions/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Tz&r/#ԹR',_binary 'E$[\/1\?\@ݣx\'\\\ݧ','',0,'?'),(_binary '\kFXvb	\w\\m','wp-content/plugins/jetpack/_inc/blocks/subscriptions/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\-s;8zP',_binary '\,q5gd(cobѓ\gO\׃p\\?','',0,'?'),(_binary '\Ο\\#MO','wp-content/plugins/jetpack/_inc/blocks/subscriptions/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"h\.-\\\\\0]',_binary 'F!h\d\\\E\rt=\I\|\\','',0,'?'),(_binary '>4cXV$+S','wp-content/plugins/jetpack/_inc/blocks/subscriptions/view.min.asset.php',0,_binary 'ZFC._*\\\Z:\',_binary 'ZFC._*\\\Z:\',_binary 'VixYSv\P5!\0Y\Պ%ޝ','',0,'?'),(_binary 'F]\9\D8','wp-content/plugins/jetpack/_inc/blocks/subscriptions/view.min.js',0,_binary 'm4A\\i\8',_binary 'm4A\\i\8',_binary '\z`ЊM\ǁ\Γ\e\O\','',0,'?'),(_binary '\8\\Ve\\\9','wp-content/plugins/jetpack/_inc/blocks/subscriptions/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A|:4GA\\4Q\x',_binary 'k@qK\l-*\<vۈ','',0,'?'),(_binary '\\f\N<b_2}\','wp-content/plugins/jetpack/_inc/blocks/swiper.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Lz\^\Tkŗ5\\',_binary 'NiN\R\\\~8\kC\Q\ҋ\\','',0,'?'),(_binary '\\:2y\\0\\^','wp-content/plugins/jetpack/_inc/blocks/swiper.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H.\\n\g\^j\1@\',_binary 'z\Ǵo\VC1\\\\n\s\rŲ\\','',0,'?'),(_binary '=O6E5:\^\c','wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\8l\',_binary 'eGF\x04z62Z5h`6|','',0,'?'),(_binary '	Zp\&\ZGW','wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\*8K\\{B\'i\',_binary 'C}8m\@[\\E<y]_\t\GX','',0,'?'),(_binary 'r_a\A','wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʀY@)\E\1<',_binary '/\\\\\f`Hם	nj\\F\*l4','',0,'?'),(_binary 'MmY?\"\\\\C\','wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.min.asset.php',0,_binary '\\ZF\\\0hf',_binary '\\ZF\\\0hf',_binary 'wp&Y\@\\U\\\YN3[\\P:','',0,'?'),(_binary '6;-tn6XM\\\'a`','wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.min.js',0,_binary '.7\|B',_binary '.7\|B',_binary '^\>0\\{ui;{1Z\\	_OcXU}z\\','',0,'?'),(_binary 'j-0mX\n`[\F\','wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8/T\\\烼\MF',_binary '9\'^\\\nAJE\ s\۞{kdPV','',0,'?'),(_binary '69\\|>Ô#E\\','wp-content/plugins/jetpack/_inc/blocks/upgrade-nudge.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5]Cg:`R\0ܟ',_binary '-\T6sƅH\'\~\[׶^Ys\\r\/','',0,'?'),(_binary '\\\&~5i\\','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.04e03ac043566852ef07.js',0,_binary 'B\`g,=\Vf\\',_binary 'B\`g,=\Vf\\',_binary '\ת-b\'\\,\\y)l]Ju\~','',0,'?'),(_binary 'F[\\\b\\!,\\','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.1239e27c56411388bad5.js',0,_binary '?\r]PЕyA\n',_binary '?\r]PЕyA\n',_binary '	^K\a\c-\\i2\\\̭P\"\','',0,'?'),(_binary '\m\4#ytѬ','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.2c2e1671860a4cf5d781.js',0,_binary '[\\0\ᕖm;\RV',_binary '[\\0\ᕖm;\RV',_binary 's\\'0كa7Һe4\aB\ra%@x8\a','',0,'?'),(_binary '\\\$\e?9]\1','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.3a045592d603a85f6d0e.js',0,_binary 'fi]5\ep\2y\',_binary 'fi]5\ep\2y\',_binary '\\\cf\\\4M\n ΥՋ?\','',0,'?'),(_binary '\EPj!\Z\rZ\l:','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.4248de861021fc1e7e3f.js',0,_binary '\\f\\#\X\\w',_binary '\\f\\#\X\\w',_binary '|\c\\nKJ\\Bc\]\49s\O/R\','',0,'?'),(_binary '\';;R\ضD\\m\','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.58efaceccd1518ed2c94.js',0,_binary '[zT-\\%I',_binary '[zT-\\%I',_binary '\OJ\K\ɧ\k1\T%+\\\.\Zԃڧ\H)\','',0,'?'),(_binary '1,(KtAc\'o~','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.755f84ecfa921e241e69.js',0,_binary 'Ò\e/!\\Z\z',_binary 'Ò\e/!\\Z\z',_binary ':=V\\7xoȳ1\ \\0Ġ\\"u\^','',0,'?'),(_binary 'w\[\+^\9\','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.75a983ae51de51cf9b97.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\r\+\s{\\rE',_binary '\F:\\\C\i \k\LU\Z?\\','',0,'?'),(_binary '\\\/\^\\r\\\','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.75a983ae51de51cf9b97.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\P#EBϺ\\\\\',_binary '~5\\\ZK2\Θ\ա\\\~<	v','',0,'?'),(_binary '9ɹ\&\rJn!','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.75a983ae51de51cf9b97.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A=f\n\[H',_binary 't֐c&C!\\S\\G	\-\\\hw\u\','',0,'?'),(_binary '%l,@\ظR1\\\','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.944556a764fd3aa446d5.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\r\+\s{\\rE',_binary '\F:\\\C\i \k\LU\Z?\\','',0,'?'),(_binary ')֥\~i\\W','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.944556a764fd3aa446d5.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\\c#[y\y%#',_binary '\0\\Cos\wry>p 3d:E\	)oU ','',0,'?'),(_binary 'e<GŃ	7\X','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.944556a764fd3aa446d5.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A=f\n\[H',_binary 't֐c&C!\\S\\G	\-\\\hw\u\','',0,'?'),(_binary 'Ɓ+\/>\','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.a7c1e95b8ead018349bf.js',0,_binary '\O#׌\]lL^\t',_binary '\O#׌\]lL^\t',_binary '!sE\\\\\\EU\e9:2\Zt׀\\\>`[\`','',0,'?'),(_binary 'ІY\Plq~','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.a885ed76fb87153f02ab.js',0,_binary '\Z\HtA\>\\͞',_binary '\Z\HtA\>\\͞',_binary '5&1)ыhh)\\i\\!h\Ѷ\\:\\yLM<H\','',0,'?'),(_binary 'B-\"2\n\\18\','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.ac1295a42dde74f83fe2.js',0,_binary 'ˮ\\\ȴ\3',_binary 'ˮ\\\ȴ\3',_binary '\BWۢK*uw}Y\1\0ۥYA^\\H)','',0,'?'),(_binary '\\'j\\\.Y֨k\','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.bc7535a1f167717130ba.js',0,_binary 'YNOȱ\\',_binary 'YNOȱ\\',_binary '\zyo\\Oe\\gx>uЯ7\"z','',0,'?'),(_binary 'u*.y\\\"X<','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.bfac31067355202ba5b7.js',0,_binary ':Q\#] 7D',_binary ':Q\#] 7D',_binary '\ӳ?1\&\K\\ɈJ','',0,'?'),(_binary ']BN\\5\\\C','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.c47a73a369b133a00458.js',0,_binary '\ʏ\;`=vu',_binary '\ʏ\;`=vu',_binary '\nZ\V[*\Oq>{y`n\+B:\i\L','',0,'?'),(_binary '[8F&\\\7','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.da7c87f2fad3626889f8.js',0,_binary '\"\PR\&\'b\@ta',_binary '\"\PR\&\'b\@ta',_binary 'A}0\1\{\\vǄ9\>G\f\rp1','',0,'?'),(_binary '=	;\\','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.dcd007ee1e7d338a363e.js',0,_binary 'ODȆ\=n=J\1',_binary 'ODȆ\=n=J\1',_binary 'dff\C\BP\\1\׏Ex󓟛\"oc','',0,'?'),(_binary ')>5\>M\=?ACR','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.e4eff6d734deaf135b94.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\}\Wa\9\\y',_binary 'H\w\ڵ\\+l\^qdXf\\yӇH','',0,'?'),(_binary 'mڳ7\\\)\&o?','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.e4eff6d734deaf135b94.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƛ\@\Xd\',_binary 'g1\6\\\7\\ʘM\lh\\i4\\w','',0,'?'),(_binary 'l\\\\W=','wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.e4eff6d734deaf135b94.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E+j\\F\\\N\\)|',_binary 'b8\\҇\eJv\0\0E\\\!\}\','',0,'?'),(_binary 'wgDP\xw,\0H','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.0a3d8e29d43db6127a68.js',0,_binary '\-;¾M\^\i',_binary '\-;¾M\^\i',_binary 'G\bQJĪf},\9g\\n|\\7v	','',0,'?'),(_binary 'X<?\&Mk\0','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.11ce8ade2c6d2dbe0b77.js',0,_binary 'YL\\0\j\'ΰ!',_binary 'YL\\0\j\'ΰ!',_binary ' \0FTga\]Z\Z=','',0,'?'),(_binary 'U\\\\x\','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.17b5bcc416832d7a0c9e.js',0,_binary 'RK#\\m`A3\+',_binary 'RK#\\m`A3\+',_binary 'l\"N\p\\\?+3FI)U`\7\\	x\\cfY','',0,'?'),(_binary 'wVT\\\'\_','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.1b546e229f7e01fd913e.js',0,_binary '\\\\|\j}a',_binary '\\\\|\j}a',_binary '1+C\X\1j\%|_\\@','',0,'?'),(_binary '\0\\\a(/]\z9','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.23fd414831f3de8536b3.js',0,_binary '>\\ߺ0-7\jk',_binary '>\\ߺ0-7\jk',_binary ')\<}\\l\r\/\\\"HrrS\P\.','',0,'?'),(_binary 'm5\KXF۸}%\I','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.2459755ebeb4b00099c8.js',0,_binary '\\]/\m\\\r׃M	\',_binary '\\]/\m\\\r׃M	\',_binary '&p\kk+x\ƑFUq\%&+6	+P1O','',0,'?'),(_binary 'Kf\K_>KU]@I\','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.40d61c1ef8d2dec3a865.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NLJ+\0\\\\',_binary '\7>\h\r;BzS\V\j\\\','',0,'?'),(_binary '|n4*& A\H2\0','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.40d61c1ef8d2dec3a865.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nf\\Z\\\NCfCV&',_binary '\bs.\WmL}y[Kp]d;\\\GX\','',0,'?'),(_binary ',\n4\\\0uG\iD','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.40d61c1ef8d2dec3a865.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f:⍝U6:\c3',_binary '\\&o/PIF	\\w1\'RfswRA','',0,'?'),(_binary '\02wqxVW\\2[','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.4fd6c7e1c96b229b54d4.js',0,_binary 'K]/!6m99N\<',_binary 'K]/!6m99N\<',_binary '찭m\|J\\\/|J\\n:zra:\','',0,'?'),(_binary '٥\?PhMBڻ','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.6c77cf0f0df648fd416c.js',0,_binary '\\2OY\ZF\:=*\',_binary '\\2OY\ZF\:=*\',_binary '\	\\𑼡N\\.\Rcqp$ʿ\Yg','',0,'?'),(_binary '\T*bs&cɷ9\','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.8065ce623abb09aeb822.js',0,_binary 'Tw\r.50\Hc',_binary 'Tw\r.50\Hc',_binary '5\!SZǖF-<\e*\_󣪤\N','',0,'?'),(_binary '31\W\\\\b\\"\7[','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.86b80b8b1cc951f50101.js',0,_binary 'Jn\P7\tv8\',_binary 'Jn\P7\tv8\',_binary '3`5\\$m[\\x28û pq\','',0,'?'),(_binary 'UԈ\^\qc}\','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.90af53d1918781529c41.js',0,_binary 'ޗTFsK\P\',_binary 'ޗTFsK\P\',_binary '\y\"M-\J\~\IRN\,Ç','',0,'?'),(_binary '\\Rl\Z&sK\U\Q','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.91f23bda140fb9ba4bea.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\[\'a1㣻m_',_binary 'ܸ\\q{f!PMk2M\{q\a>','',0,'?'),(_binary 'ǂc7ܛ\\nܴ','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.91f23bda140fb9ba4bea.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=.@M΁h1ڿ',_binary '~O\\N\\4%4M\\0\t\\yY\v','',0,'?'),(_binary '6\M#r^Z','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.91f23bda140fb9ba4bea.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\(\4^,\\ZÚ\Z',_binary '@uA\\щ	t\\{V','',0,'?'),(_binary '43\Ǧ\\<}R','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.9abc30e87cced29e581f.js',0,_binary '!L\m\Z\KI1',_binary '!L\m\Z\KI1',_binary '0&\\I\"zջ\n\TZ\\ˎY','',0,'?'),(_binary '\x}_G\\#6','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.b75f5142f545a3c930e7.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NLJ+\0\\\\',_binary '\7>\h\r;BzS\V\j\\\','',0,'?'),(_binary '\|iV==\'\\','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.b75f5142f545a3c930e7.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\;Kv7A9be',_binary '4\\"ʦD%`\Z \\ki\\Rg@\\"L\X)','',0,'?'),(_binary '+\\9\\Z%\','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.b75f5142f545a3c930e7.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f:⍝U6:\c3',_binary '\\&o/PIF	\\w1\'RfswRA','',0,'?'),(_binary '\0.\n8CkIs&{\.h','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.ca03362195b614e03692.js',0,_binary 'S\\TV\\\T\Bj',_binary 'S\\TV\\\T\Bj',_binary '\\zxμ*Ą\\j\(\n;\ɹ\}','',0,'?'),(_binary '\r\\	r]\m\&w@Ú','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.cb62edabc93862de3784.js',0,_binary 'ϟ\7Ld!U\"S\',_binary 'ϟ\7Ld!U\"S\',_binary 'eEKZ&W47LU\竑\\\Ql\z\=\)6\','',0,'?'),(_binary 'i胎ef\F.','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.cd0051244a89c7367b0b.js',0,_binary 'i!اу%\\l\\',_binary 'i!اу%\\l\\',_binary '\LIM \@\QK;ݮ9YW\nڟn','',0,'?'),(_binary '\";?ыȱ\>','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.ddb6eb1f9dce558a2a68.js',0,_binary 'Sÿ!ϻw:@^v',_binary 'Sÿ!ϻw:@^v',_binary 'kz`t[\!\i?ZS\1|','',0,'?'),(_binary 'ݦzX\sǭOw\','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.e3d919805dd5d74f6537.js',0,_binary '\n.C+Dg',_binary '\n.C+Dg',_binary '\\"[MVVh\'pM\%\\n	͢C\\\C{','',0,'?'),(_binary '@V/\]\D$\p','wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.ed9ded845f6a7a8142ff.js',0,_binary 'ySY%\Ԕ\r\\υ',_binary 'ySY%\Ԕ\r\\υ',_binary '\\\Nm\r\H\Lr<4f]=Vb','',0,'?'),(_binary '?\,-\x\C\','wp-content/plugins/jetpack/_inc/build/accessible-focus.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hc\2\Z;C\{',_binary '+\i&z\\\MC\b!m\0\E2\k7','',0,'?'),(_binary '6ҽwޢ{\Z/\\J','wp-content/plugins/jetpack/_inc/build/accessible-focus.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7aDX{UO֎',_binary '%\h\,s\la, ^|\\\5','',0,'?'),(_binary 'P[\i\\\\a~','wp-content/plugins/jetpack/_inc/build/admin.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\f+o\Ĳ',_binary '\0ؐh\P޻g\@\?n3U\\<\d','',0,'?'),(_binary '\\ZE|m\=:rA','wp-content/plugins/jetpack/_inc/build/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\\\VSuGnr^\a',_binary 'q\+˃\7\0G\n\ utYu5\S','',0,'?'),(_binary '$\]oI`\\*','wp-content/plugins/jetpack/_inc/build/admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;!_r_jYP\s',_binary 'Lo\rojJ\\!{qA1^Ҙ`','',0,'?'),(_binary 'Hjw#\\\qYNt','wp-content/plugins/jetpack/_inc/build/admin.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\\\$L}EF$9Μ',_binary '\_ar[\UAf\\v!\M\SF8W<n','',0,'?'),(_binary 'xI`I\텅	\ۜ','wp-content/plugins/jetpack/_inc/build/admin.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\qy\fӒϕ\=',_binary 'g\B<э\_\i\9b\\\\'\0\','',0,'?'),(_binary '\2~@|5Ъ\\{E','wp-content/plugins/jetpack/_inc/build/carousel/jetpack-carousel.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\=\rz\{I',_binary '!\YZ\\ub\u!\ZVݾÏB1\_','',0,'?'),(_binary 'l\]Q\n','wp-content/plugins/jetpack/_inc/build/carousel/jetpack-carousel.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wU\\0G\G\Z\B',_binary 'tP!:\vȾ\\\F\{\:6\-f	','',0,'?'),(_binary ',,\[,\2+tz\\','wp-content/plugins/jetpack/_inc/build/carousel/swiper-bundle.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\M\'Хe=',_binary 'R\\\"S`\{$B(rINg^wgw','',0,'?'),(_binary '̉R\ZڟܧYA','wp-content/plugins/jetpack/_inc/build/carousel/swiper-bundle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o{\Ť\n\ ',_binary '\̓s/.hѹ\\\tX\k\'[HF\\f','',0,'?'),(_binary 'Պ\\\Ui\\\U\','wp-content/plugins/jetpack/_inc/build/carousel/swiper-bundle.min.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\_2=x\\\]r',_binary '\.-eV+ˡj\GmbJE\%m)Z qe\J9','',0,'?'),(_binary '_\B\ˤl\\0=','wp-content/plugins/jetpack/_inc/build/comment-likes/comment-like-count.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]+>\KB6\\\Z',_binary '\\ZV%,R\"V\{\Y\/\%\','',0,'?'),(_binary 'v&\\vC\\-\Z>&','wp-content/plugins/jetpack/_inc/build/comment-likes/comment-like-count.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\vK\6d\\',_binary '\H]\\Л[\\$e\p3\\Wȁ>\','',0,'?'),(_binary '\uwg\\\нF\(','wp-content/plugins/jetpack/_inc/build/connect-button.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dZc1{:\/ڗE',_binary '\\ \4\glT\\Mb$7Eq\\Њ','',0,'?'),(_binary '\\y\L\\MAD','wp-content/plugins/jetpack/_inc/build/connect-button.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r0\?Kɲl',_binary 'C\_.\nd\;)\7\\&%7\)w\h\=','',0,'?'),(_binary ']Zp^Ő ǟ-','wp-content/plugins/jetpack/_inc/build/contact-form/js/editor-view.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '٢`52{iO',_binary '\U\\ZҊoe\NSGJ\s\t\\s','',0,'?'),(_binary 'lv\nOZ\g;S\','wp-content/plugins/jetpack/_inc/build/contact-form/js/editor-view.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Êl\\ß\\\\',_binary 'x\\ZLm\ڤT/\*×0C&Q\\"p\&J\','',0,'?'),(_binary '2f\q\\\\l','wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-admin.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']ڧd\\2〪\\\',_binary '%,\r=|\\\a\n\\{a(X#\o̦','',0,'?'),(_binary '\r\!\"Jwrd;','wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5y\7\\"s\fщ: Y',_binary 'k0\\u\?JصL\\:v\\*\z','',0,'?'),(_binary '$\}\_m`[~\','wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-frontend.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aH%)we\}\ԜH',_binary '\\\I5.Aܩ\r\F!u\*T\v','',0,'?'),(_binary '\{i	\̨','wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-frontend.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ٳÿ\wB\Vϭ',_binary '7ƶ\\\T\\8\6}\D\r\ц\\f','',0,'?'),(_binary '5t\"\^\ <طN','wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c_xܬ\ \D',_binary '\f)LppT\\r\\\l~:q\','',0,'?'),(_binary '\\"K@q<\\J','wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nf\|1efަ3\',_binary 'CnVR\-\n\6>$\\\BI5\E','',0,'?'),(_binary 'Q\W\nݜ\\By¡','wp-content/plugins/jetpack/_inc/build/contact-form/js/tinymce-plugin-form-button.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\o`\	c|o\'\',_binary 'T\\Z\\Sk-Pa	Pˣ\R','',0,'?'),(_binary 'j\\]\?t','wp-content/plugins/jetpack/_inc/build/contact-form/js/tinymce-plugin-form-button.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.%c\Zٚ\-\',_binary '#]?\5r_?s\CJl\eol2\$\\\','',0,'?'),(_binary 'x\Һ9>','wp-content/plugins/jetpack/_inc/build/crowdsignal-shortcode.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '֊\c \yUH\',_binary 'k\\ub3\G̘1\̩;U˧hs61\','',0,'?'),(_binary '%7\qu\\yN\\0','wp-content/plugins/jetpack/_inc/build/crowdsignal-shortcode.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X7h/\"\DN;',_binary '\\P\S!d\n%\꫃JwG*\0\`','',0,'?'),(_binary 'm~\c6\ʄ\^a','wp-content/plugins/jetpack/_inc/build/crowdsignal-survey.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʴ\c\n;\iY',_binary '~\\X\\{keW&M]\+\\&','',0,'?'),(_binary '\\t\r\"f\f|','wp-content/plugins/jetpack/_inc/build/crowdsignal-survey.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VāS\\nu\0',_binary '87i\\,amA\\.;\4Y\{u\\2-\Z','',0,'?'),(_binary '\2M\\'zz\p','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css-preview.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '50\0I\\\"5',_binary '[a1#\U\wI؋F^=sF)*\>D\','',0,'?'),(_binary ',WvVE\2:Z','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css-preview.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=>\\f\y\p\',_binary '7.<\\Tφh^v=7\x+Yy\\','',0,'?'),(_binary 'eP|ȣL\ZZcK','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.core-4.9.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\oi\/\=RBO5\(',_binary '\aa\Fb<.\0\\2q\}l\I\','',0,'?'),(_binary '?\7[;[\K;','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.core-4.9.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'قzĝ*(',_binary '\f$t;\\\`C\;\\rv\L','',0,'?'),(_binary 'L6\\(\\5\U','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\rzAw|a\27\\\',_binary '\\\\r\\y3kpE\bD\H2{','',0,'?'),(_binary 'vNAk5\\\0','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&ą\ԍc	\Fb',_binary '\h\0Zp%\0H\e\\d9?:.','',0,'?'),(_binary '7\\G47-o.\#','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/css-editor.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\mE	\ĎYQ1\<\',_binary '\X!(Uj	\)f\3!@S/헙7c<','',0,'?'),(_binary '\";W4MW(3','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/css-editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IS\H3\"\\\j',_binary 'C	i1#F\\Uy\j]c\^\{[~o','',0,'?'),(_binary 'ѩO\S\0q:M\n','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/use-codemirror.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_0\5S',_binary ']E\֞aT_\\fu\}g\h°K\r\\"\]&\','',0,'?'),(_binary '\\Jo[}{փ\nU','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/use-codemirror.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g۴\x^j_',_binary '!\\"^\"X\\B9\&R^\%y\p','',0,'?'),(_binary '\S\Z[\\','wp-content/plugins/jetpack/_inc/build/custom-post-types/comics/comics.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@\h%\6\',_binary '0.9S\$\u\<1H|*\i','',0,'?'),(_binary '\~\8V\%\I\e','wp-content/plugins/jetpack/_inc/build/custom-post-types/comics/comics.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ed\nA#Q',_binary '1	΁QB\0\\b?Se7%8>\%','',0,'?'),(_binary '\|\\|jd\','wp-content/plugins/jetpack/_inc/build/custom-post-types/js/many-items.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~T\\Б\M|\\',_binary ':Lg@1_j{7G)A\WGHr\Zl','',0,'?'),(_binary '\[\0d\7𯔽','wp-content/plugins/jetpack/_inc/build/custom-post-types/js/many-items.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_v@N\dEb',_binary '\\\Ы1X\{xg5;N\ʈ\Dt۞','',0,'?'),(_binary '\)e{\\0V0Σ\Z!','wp-content/plugins/jetpack/_inc/build/custom-post-types/js/menu-checkboxes.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K/rJ\D9\ڄB',_binary '(Έ\9{9\\Z\\\\\\A\','',0,'?'),(_binary '}U/%=ki\m \\','wp-content/plugins/jetpack/_inc/build/custom-post-types/js/menu-checkboxes.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T}t/|\\\Z\',_binary '34\÷\t0\(y۽lR\\}\"\ZK\\','',0,'?'),(_binary 'eXVއ2{&#;','wp-content/plugins/jetpack/_inc/build/custom-post-types/js/nova-drag-drop.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1Gd\ұd2&',_binary '\O\_}\I\\xj\Zܳ*vq\"p\\','',0,'?'),(_binary 'k7@dh\nY7*ʃ\~','wp-content/plugins/jetpack/_inc/build/custom-post-types/js/nova-drag-drop.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qL\\n\\5\Sߠn',_binary '=	{B\F]\e\0\6','',0,'?'),(_binary '\\\\nF\)W\CA','wp-content/plugins/jetpack/_inc/build/facebook-embed.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'avN\\\r',_binary 'Gx۳\\fH\;\n\'$V\3\q\ڄ','',0,'?'),(_binary 'E׳!nf\','wp-content/plugins/jetpack/_inc/build/facebook-embed.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/~!y\ڬ1<[q\\',_binary '3-nO\\6. A^\\\"HN\\fXVI','',0,'?'),(_binary ':\\8|\>','wp-content/plugins/jetpack/_inc/build/gallery-settings.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l˸*V\\pbA$',_binary '\Yel\~ߩCD\"\8\b\\','',0,'?'),(_binary 'k5j;\\+\\\','wp-content/plugins/jetpack/_inc/build/gallery-settings.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5TPsZ\/30',_binary '|!\\1ӻ\\\I\\\Ph?ePez','',0,'?'),(_binary '\J\X#c!ͣ','wp-content/plugins/jetpack/_inc/build/idc-notice.min.js',0,_binary 'Cv\5&I\fU',_binary 'Cv\5&I\fU',_binary 'CD\,J\17\\zjBk|\\]ҁbV','',0,'?'),(_binary 'ANR\"ٺld\=','wp-content/plugins/jetpack/_inc/build/images/boost-8ea10be101c586380d89.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'slbQ\U1/',_binary '\L6R\%M6\ĴԆKG\D&iV&\\rB\8','',0,'?'),(_binary '\S\\\\\M','wp-content/plugins/jetpack/_inc/build/images/cloud-d0f9b0f863bc1adcc03e.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'H\}4oS%\nn\\',_binary 'w{\>p\@t1\M40n<\+nDFS','',0,'?'),(_binary 'ˀa\0\\\p]','wp-content/plugins/jetpack/_inc/build/images/disconnect-confirm-dc9fe8f5c68cfd1320e0.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ɛo)\Ǖ;]',_binary '>;ئ\'\\eq4\ȵоU\','',0,'?'),(_binary '@\HP\9\j25`IÆ','wp-content/plugins/jetpack/_inc/build/images/disconnect-thanks-5873bfac56a9bd7322cd.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\Z\0z\"0\!3G',_binary '_\r\\W\hՊ]\\0\rwȝ\\\\h','',0,'?'),(_binary '@iG|\_:\3r\','wp-content/plugins/jetpack/_inc/build/images/green-star-b0ac6af62d4c43bd4d04ca6abb9c2e83.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\-LCM\j.',_binary 'Rͷ@Kz\\B%H\J>Y\,9ѩ>\','',0,'?'),(_binary 'hS?wve+\*\a\\\m','wp-content/plugins/jetpack/_inc/build/images/jetpack-anti-spam-b118b4c6a814c557be29797c60df3d33.svg',0,_binary 'ƨ\W)y|`\=3',_binary 'ƨ\W)y|`\=3',_binary '4\\GOM\+\\Zld\me\2+d\','',0,'?'),(_binary 'Zq<\[\-\\\/\','wp-content/plugins/jetpack/_inc/build/images/jetpack-anti-spam-v2-2b60b188ed4f5b2c25b923be1166fdc0.svg',0,_binary '+`\O[,%#f',_binary '+`\O[,%#f',_binary '\$\Y\|\&󐫈+\noJhc\[','',0,'?'),(_binary 'O,8,\\4j\\(','wp-content/plugins/jetpack/_inc/build/images/jetpack-anti-spam-v2-darkblue-3465774241b3cf0c97cdfc872f399ce0.svg',0,_binary '4ewBA\\/9\',_binary '4ewBA\\/9\',_binary 'Iu\.\\nH\b-\\=\\=\)@cD','',0,'?'),(_binary 'g3՜\\Z','wp-content/plugins/jetpack/_inc/build/images/jetpack-backup-a5adb7d10cc442d19f9b24b4541bc1e1.svg',0,_binary '\\Bџ$T\',_binary '\\Bџ$T\',_binary '\Mw\l\8\\l\\c?!C\W#2{I՗','',0,'?'),(_binary 'jb\\fMP0W\','wp-content/plugins/jetpack/_inc/build/images/jetpack-backup-v2-0ea2a25527bf121bde2903779680bced.svg',0,_binary 'U\'\)w\',_binary 'U\'\)w\',_binary 'A\e|h2&\nt\k\\rt8','',0,'?'),(_binary '}(m\1Wc)42=\Ng','wp-content/plugins/jetpack/_inc/build/images/jetpack-backup-v2-darkblue-64717239bc74ba6fe94f86066b675f7e.svg',0,_binary 'dqr9to\Okg_~',_binary 'dqr9to\Okg_~',_binary '	AI2>Sc\\\D\*еݟD\?','',0,'?'),(_binary '&9=G\Hӊq z','wp-content/plugins/jetpack/_inc/build/images/jetpack-complete-v2-2ca7acdd4768b17a59c79933892e61d9.svg',0,_binary ',\GhzYǙ3.a\',_binary ',\GhzYǙ3.a\',_binary 'l\>\B\"`\\N=ҡ]ԳC','',0,'?'),(_binary '7\>6zPQ\=5\"rd9','wp-content/plugins/jetpack/_inc/build/images/jetpack-crm-v2-darkblue-4641dbe0ebb0c3a1f2e1914ff1daab1e.svg',0,_binary 'FA\\\á\\O\ګ',_binary 'FA\\\á\\O\ګ',_binary 'i=4#8}/\LO/\\\\}GB\\<(','',0,'?'),(_binary '­\3\r\^\\\7\','wp-content/plugins/jetpack/_inc/build/images/jetpack-crm-v2-dc761535a22c204facab557450617b8c.svg',0,_binary '\v5, OUtPa{',_binary '\v5, OUtPa{',_binary 'k`0f]maQ\\*u\\Z\)e\r\h\J\Z','',0,'?'),(_binary 'Q*\n4-^\\\Zj9','wp-content/plugins/jetpack/_inc/build/images/jetpack-free-44df53d327c1bd1a398ed53effdcb296.svg',0,_binary 'D\S\\'\Z9\>ܲ',_binary 'D\S\\'\Z9\>ܲ',_binary '\\\\܉MޮUGnG|\\J_\07Cz?~\\','',0,'?'),(_binary '\䔱\\6\0q\H\rq','wp-content/plugins/jetpack/_inc/build/images/jetpack-personal-db67581ec6621cabbe3aa1a32167b521.svg',0,_binary '\gX\b:!g!',_binary '\gX\b:!g!',_binary '˝?}X\`2VuǷ\\\+r<2E\\\-','',0,'?'),(_binary '!{d\\j	A=	','wp-content/plugins/jetpack/_inc/build/images/jetpack-premium-a2cd099cefe19078e7034dbcdfa0e580.svg',0,_binary '\	\\x\Mߠ\',_binary '\	\\x\Mߠ\',_binary ';lRf\x(\fG\\_=3\0\ 3|h','',0,'?'),(_binary '嗋rr\n\'$&','wp-content/plugins/jetpack/_inc/build/images/jetpack-professional-2b66b1c5cc0d544101d5a0579679be94.svg',0,_binary '+f\\\rTAՠWy',_binary '+f\\\rTAՠWy',_binary '`$\Z\'+\\\\Z10tK\MϞo\','',0,'?'),(_binary '\\dҧ!\",','wp-content/plugins/jetpack/_inc/build/images/jetpack-scan-7935956200af22932207966dcf605a6c.svg',0,_binary 'y5b\0\"\"m\`Zl',_binary 'y5b\0\"\"m\`Zl',_binary '_\\\\Tb`Ds8ݐ\\*\\\o','',0,'?'),(_binary '\\\Qky\0','wp-content/plugins/jetpack/_inc/build/images/jetpack-scan-v2-6ac0b79f0107a8b73e5bc5531a6d7e67.svg',0,_binary 'j>[\S\Zm~g',_binary 'j>[\S\Zm~g',_binary 's$\\=r`;~B\L\RL_o\\J\\\"','',0,'?'),(_binary '\7\\%v>l','wp-content/plugins/jetpack/_inc/build/images/jetpack-scan-v2-darkblue-00ca7fc6b666a195edbf93f9d333ccd7.svg',0,_binary '\0\ƶf\3\\',_binary '\0\ƶf\3\\',_binary 'YfbT~\\s*Z&(0驕v\\/','',0,'?'),(_binary '12\%c,[WR\|e','wp-content/plugins/jetpack/_inc/build/images/jetpack-search-45c9a662b22709cb514351313329aa23.svg',0,_binary 'Eɦb\'	\QCQ13)#',_binary 'Eɦb\'	\QCQ13)#',_binary ')\\\"F\w\\g\{\\\\\D\vb','',0,'?'),(_binary ';i\o&uJH\F\m\\-\','wp-content/plugins/jetpack/_inc/build/images/jetpack-search-v2-darkblue-42081c8626e98f52cf6bf3ec223cd2e1.svg',0,_binary 'B&\R\k\\\"<\\',_binary 'B&\R\k\\\"<\\',_binary 'Q\\+AC\Gf\r\C9o6P\\\\nՐ\','',0,'?'),(_binary 'c\X\\\YY-+fP\','wp-content/plugins/jetpack/_inc/build/images/jetpack-search-v2-f4abb08dde5f846c2243bc6e9e14dc37.svg',0,_binary '\\_l\"Cn\7',_binary '\\_l\"Cn\7',_binary '|\0\a\\\؃à+R\M p}{I\'','',0,'?'),(_binary '\5Kmu\'oC','wp-content/plugins/jetpack/_inc/build/images/jetpack-security-v2-1ffacfda6dd5ff3073bd9468bfe3b4fd.svg',0,_binary '\\m\0sh\',_binary '\\m\0sh\',_binary '*\\\rK3$՜\\c\%BF\'\4>\\','',0,'?'),(_binary '3X\ī\EE0L','wp-content/plugins/jetpack/_inc/build/images/people-c8df8440a2897e6d0eba.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\r\8@\p<\P\',_binary 'GLt\S\0=yt\n\F\M \\fM)','',0,'?'),(_binary '1\q\0}a','wp-content/plugins/jetpack/_inc/build/images/remove-bug-aa23c420a6e6394d5787.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k$\\0V\X}\\0_',_binary 'aر\\#\\̍\O{.\rj	\90p\\H\','',0,'?'),(_binary '\];A8~\p^}','wp-content/plugins/jetpack/_inc/build/images/shield-bb27f10b1ca957261b8d.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$^#?2PWHГ',_binary 'f\0hE\.\\K\㢝PX','',0,'?'),(_binary '\+\\qQ\\','wp-content/plugins/jetpack/_inc/build/images/shield-with-check-b59b7e859cf937a15a0e.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\sQ\\\\Z\',_binary '\4 %\iu\Z\l]\Y\"`%&+\','',0,'?'),(_binary '#CP\{u\bշ\','wp-content/plugins/jetpack/_inc/build/images/wpcom-blogger-dda7d9d51abfb03c2bf4265bb5634fb8.svg',0,_binary 'ݧ\\\Z<+\&[cO',_binary 'ݧ\\\Z<+\&[cO',_binary '+&5z\E\\H\N\@%\','',0,'?'),(_binary '\s`\5/\D\fd3','wp-content/plugins/jetpack/_inc/build/images/wpcom-business-12b92201de1ad0bd052f4a3affb7c82c.svg',0,_binary '\"\\Zн/J:\,',_binary '\"\\Zн/J:\,',_binary '\/}6/lo\ˢ\\P\\\(\Q9n','',0,'?'),(_binary '\>I3z\87','wp-content/plugins/jetpack/_inc/build/images/wpcom-ecommerce-469d904d4dfb0cf3540d7bfa200ccff2.svg',0,_binary 'FMM\T\r{ \\',_binary 'FMM\T\r{ \\',_binary 'eƲ\\֖\}:$r֥\|vLa_p\0\2','',0,'?'),(_binary 'm\\\\\ôaNk','wp-content/plugins/jetpack/_inc/build/images/wpcom-free-c26bd117f464670d89b2168207bf9939.svg',0,_binary '\k\\dg\r9',_binary '\k\\dg\r9',_binary 'i!d\j\h\0ֹ\:V\ڲ\\Yy\\\ui\e','',0,'?'),(_binary '\\N\"_\\b҇L','wp-content/plugins/jetpack/_inc/build/images/wpcom-personal-af68afffe22447c06bbb3c20c94db1a3.svg',0,_binary 'h\$Gk< \M',_binary 'h\$Gk< \M',_binary '/Q]15Uhf،. \?n\(Y$','',0,'?'),(_binary '\u\5r\ދ\O\S]\','wp-content/plugins/jetpack/_inc/build/images/wpcom-premium-38838ffe196a3ad6ba3784059707ee25.svg',0,_binary '8j:ֺ7\%',_binary '8j:ֺ7\%',_binary '-.hxL\hRO\Z+\Lz|Ӭ	k]','',0,'?'),(_binary '\\0Ua\\׸\y{z\ n','wp-content/plugins/jetpack/_inc/build/infinite-scroll/infinity-customizer.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Nx\\Dmp8W\',_binary '#[\wB ~n92qMw\!\V}h\\\/','',0,'?'),(_binary '\8Af%Xج\','wp-content/plugins/jetpack/_inc/build/infinite-scroll/infinity-customizer.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\\E\\a\v\Rr',_binary 'sOҔutS\6\Ȧ*\BVM\\','',0,'?'),(_binary '˘}ZO\Z@Z\','wp-content/plugins/jetpack/_inc/build/infinite-scroll/infinity.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PkJ \z\T\5t',_binary 'ʉmxLO8\\k\6@#`ʦ+\9=1f','',0,'?'),(_binary 'fK;Ck~4!ЗɈ','wp-content/plugins/jetpack/_inc/build/infinite-scroll/infinity.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@ei9S}~\',_binary 'êq\\\\V\rUomB\e7J\\8','',0,'?'),(_binary '\\N\U3Cb\ݾay','wp-content/plugins/jetpack/_inc/build/instant-search/407.js',0,_binary '2T\raK\\Qhg#',_binary '2T\raK\\Qhg#',_binary '݈cͱ\"\P7ۻy\\\ZEo8岠\','',0,'?'),(_binary '\\ej\\#+£\\','wp-content/plugins/jetpack/_inc/build/instant-search/407.js.LICENSE.txt',0,_binary 'o\S\\q>aq,F',_binary 'o\S\\q>aq,F',_binary 'eV܅y@y\^tf \0H{\\5\e\','',0,'?'),(_binary '=fB\\_ҟ9\N\}','wp-content/plugins/jetpack/_inc/build/instant-search/605.js',0,_binary 'hs-y+-IR',_binary 'hs-y+-IR',_binary 'Hu\?\ՑU0Ӭ\'\Q߃C\y\','',0,'?'),(_binary '\4\kD\8~ʍ','wp-content/plugins/jetpack/_inc/build/instant-search/605.js.LICENSE.txt',0,_binary 'o\S\\q>aq,F',_binary 'o\S\\q>aq,F',_binary 'eV܅y@y\^tf \0H{\\5\e\','',0,'?'),(_binary '\\0*\.`\J9\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-52.min.js',0,_binary 'dd\Ni	s,\	\',_binary 'dd\Ni	s,\	\',_binary '\\J\6(\>J=U\%YH\\1G','',0,'?'),(_binary 'O{~*\\Ud\\3a','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.asset.php',0,_binary '\ؔVl$\\\Z\G&y0',_binary '\ؔVl$\\\Z\G&y0',_binary '\\\kU\ac3\\O\\ҹ`','',0,'?'),(_binary '_IP-H\\U\1j}\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.bundle.asset.php',0,_binary 'cO\\鯮 Y',_binary 'cO\\鯮 Y',_binary 'Wt2\0FGqq6^%+V[a','',0,'?'),(_binary '\\.lrt$I\';','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.bundle.js',0,_binary '\kșoh,]`#b',_binary '\kșoh,]`#b',_binary '-\'̴\\Z闄+T6x\ܝ\i\0;br\Ä\Z\ro','',0,'?'),(_binary '{,bXcN\\Z\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.js',0,_binary '\Vz\u\\',_binary '\Vz\u\\',_binary '\$-\(;:\#Mpd\T\nUc\\L\\ṭ?O5','',0,'?'),(_binary '\\wFə\\r\N','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.js.LICENSE.txt',0,_binary 'c#=!}\',_binary 'c#=!}\',_binary 'w\\N|kRt=\\\\<2!\2\\','',0,'?'),(_binary '\:n\AL\T麑,','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.min.asset.php',0,_binary 'Y5_\8X\',_binary 'Y5_\8X\',_binary '3k\ڗn\OUQ󉝄m!/D','',0,'?'),(_binary '\uGcn)e\zS','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.min.js',0,_binary 'uʼQ\0rU3\ a2',_binary 'uʼQ\0rU3\ a2',_binary 'l`xY\2*\\זDWi','',0,'?'),(_binary '\\\\\qѪ\\TT','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-ie11-polyfill-loader.bundle.asset.php',0,_binary '{S\nS\{\>\Kt',_binary '{S\nS\{\>\Kt',_binary '\lO\z\\\\![Nx棈\\.a','',0,'?'),(_binary '7\0b=','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-ie11-polyfill-loader.bundle.js',0,_binary '<~p+ͅ^<\',_binary '<~p+ͅ^<\',_binary 'U\\;а\Z\bā\؄\ow\\G','',0,'?'),(_binary 'l<\\sh[\\l\\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-ie11-polyfill-payload.bundle.asset.php',0,_binary '1{LO0\ցl\',_binary '1{LO0\ցl\',_binary 'kzeS8->{\\:Jǹ|āJV','',0,'?'),(_binary '\d\\8a\\}Z','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-ie11-polyfill-payload.bundle.js',0,_binary 'Q|\1&c\/^L',_binary 'Q|\1&c\/^L',_binary 'm?\"x\qoVĕMq\+{\','',0,'?'),(_binary '\[\5,S;\|#*','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-main.asset.php',0,_binary '\\#YT\,\',_binary '\\#YT\,\',_binary 'U-~\Z*I&{:\\Z]\p]?i:kq\\,','',0,'?'),(_binary '/\&\n\Di\a','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-main.bundle.asset.php',0,_binary '7.\aFU`\~\`',_binary '7.\aFU`\~\`',_binary '\/\׋\	\N5\\j{\0\mU','',0,'?'),(_binary '\\]\\L\ng','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-main.bundle.js',0,_binary 'QY\UBrbتAGYTq',_binary 'QY\UBrbتAGYTq',_binary '\nG\\P\DW[\Z\/+0E|\\L\','',0,'?'),(_binary 'X\mO>S\\lX','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-main.bundle.min.asset.php',0,_binary '\&\%3;I\ܜY5',_binary '\&\%3;I\ܜY5',_binary '\Z\\r0\ ;imilxJOPè/\rA\','',0,'?'),(_binary 'P\ս\qrh\\	(t','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-main.bundle.min.js',0,_binary '*#\d\M3YS\\',_binary '*#\d\M3YS\\',_binary '\o_\\`|N|\\Z\")5!Nj\r','',0,'?'),(_binary '\=z\\\y\B','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-main.js',0,_binary 'H}	lzr\\cLR',_binary 'H}	lzr\\cLR',_binary '팆٧Ԉ+	kD\\\\|7~i:!زN','',0,'?'),(_binary '$il8(\\?\ޓ','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.bundle.asset.php',0,_binary '9uA}<\\QM\~',_binary '9uA}<\\QM\~',_binary 'T\n\){D>\\>_/\ʙ\\̝uq\3Bc','',0,'?'),(_binary 'e]h){\KF?T','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.bundle.js',0,_binary '\\9@[7?\O(K\d',_binary '\\9@[7?\O(K\d',_binary 'dGpDſ3Kqq\'ǫ{B\ƺ,','',0,'?'),(_binary 'S\-\\sF;\x\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-1-26fd3bc862e3521d00a8.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z.\\0\tՐ\e',_binary '\\T\f\\(z\\#ش\nG\ɫU\?','',0,'?'),(_binary 'a+\ZZ[d\iw\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-1-743842878eceecda1571.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',#\\0e\"yp\i\.\y<~',_binary '|s+M\\ZT\q)\"xC\l\\\+\','',0,'?'),(_binary '9u	:\Z¯(\\C\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-1-e052740f2f86553f7f9c.js',0,_binary '\z.\\0\tՐ\e',_binary '\z.\\0\tՐ\e',_binary '\\T\f\\(z\\#ش\nG\ɫU\?','',0,'?'),(_binary 's\!%\0\\V>','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-1-ea13ceea008ed3f40c5d.js',0,_binary 'Y(\7\\ e,4jE',_binary 'Y(\7\\ e,4jE',_binary '(_l%Ő\6\'\+{\o_6\\+\','',0,'?'),(_binary '*/\aP\47D<}\-','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-1-f4300f48331e2183fdd9.js',0,_binary 'Xr_y\#U	v\f',_binary 'Xr_y\#U	v\f',_binary ':X\rB ~V\rr\E]ؿ.\G@\','',0,'?'),(_binary '(r\"\\&Hhc\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-270.e200588ee02c9e4e229e.min.js',0,_binary '\w\ic}\^',_binary '\w\ic}\^',_binary '6\#\D\\\\\S\\Z\"\n\'\7К(','',0,'?'),(_binary '69`F\\\M','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-270.js',0,_binary '\p\\R|@d/ǣ',_binary '\p\\R|@d/ǣ',_binary '\\\i\QK`}u&\J\\k;z\X\'ƒ','',0,'?'),(_binary 'UvұN\9\C?4','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-270.min.js',0,_binary '\w\ic}\^',_binary '\w\ic}\^',_binary '6\#\D\\\\\S\\Z\"\n\'\7К(','',0,'?'),(_binary 'ʆm\\=\\2C\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-3-0650b8da2a9ba2461f3f.js',0,_binary '7Lk\yB@M\',_binary '7Lk\yB@M\',_binary '&\i&R\\7|\/Z\	R','',0,'?'),(_binary '\;5ׯ@>\\\9\x','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-3-aa4556b3f21c2d031ef1.js',0,_binary '3gm\_C\7h\ĭ',_binary '3gm\_C\7h\ĭ',_binary '\y<C\ϫc2îI_M\','',0,'?'),(_binary 'i H~$݂ptv','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-4-1a2821bfb803906d5e27.js',0,_binary '\B\\09Ǹ\P',_binary '\B\\09Ǹ\P',_binary '\H\q?\O\˃١j\\eyl&c1\\','',0,'?'),(_binary '\GON\%Z\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-4-67380477921bd9a7ae19.js',0,_binary '\B\\09Ǹ\P',_binary '\B\\09Ǹ\P',_binary '\H\q?\O\˃١j\\eyl&c1\\','',0,'?'),(_binary '\*:\p!mMώY','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-4-a33f06a486a7f4249d33.js',0,_binary 'y1\0r\4N\',_binary 'y1\0r\4N\',_binary 'k\al#q&\ӕ0`\\'\|{Y','',0,'?'),(_binary '\|W\n\́\vŠ','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-4-a35aa49a0dfc317ef141.js',0,_binary 'x \09\\@',_binary 'x \09\\@',_binary '8\Z\wg\Ce6߈\:P\(\PZ','',0,'?'),(_binary '{%\;\'\\+<','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-4-a3bf71e65929a9be598a.js',0,_binary 'y1\0r\4N\',_binary 'y1\0r\4N\',_binary 'k\al#q&\ӕ0`\\'\|{Y','',0,'?'),(_binary '\pYۙ\\[\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-4-ab48f4d457506a7fcab7.js',0,_binary 'y1\0r\4N\',_binary 'y1\0r\4N\',_binary 'k\al#q&\ӕ0`\\'\|{Y','',0,'?'),(_binary 'f\߯\,Tw4\,\h\{','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-52-0d626d46cc567b31f6e1.min.js',0,_binary '\Y\e`aSW\',_binary '\Y\e`aSW\',_binary 'S,\k\%Fn\=vj\S\\34#\ەmj','',0,'?'),(_binary 'ꎘ(t\`A%\-Rd','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-81-0d626d46cc567b31f6e1.min.js',0,_binary 'ӏ\Jo\\#n\',_binary 'ӏ\Jo\\#n\',_binary '?p\D%H5tj\Yk\\\p\ɝ|','',0,'?'),(_binary '\\`\U=\fr\\\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-81-0d626d46cc567b31f6e1.min.js.LICENSE.txt',0,_binary 'o\S\\q>aq,F',_binary 'o\S\\q>aq,F',_binary 'eV܅y@y\^tf \0H{\\5\e\','',0,'?'),(_binary 'l@n\\xwE/Rs','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-0d626d46cc567b31f6e1.min.js',0,_binary 'VN0\T\^\\\Z\\g',_binary 'VN0\T\^\\\Z\\g',_binary '\\Beo#4?\n\ч\4tPx\~','',0,'?'),(_binary '\g\\\+\+\Z\u','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-1a2821bfb803906d5e27.js',0,_binary '\̜\\Z\\\\۴Uq\',_binary '\̜\\Z\\\\۴Uq\',_binary '2ߓ\\\qA\2\\\\fHjg\#\'\\m>','',0,'?'),(_binary '{ebZ\n\iL','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-67380477921bd9a7ae19.js',0,_binary '\'/>6\ȇ7ɪ\q',_binary '\'/>6\ȇ7ɪ\q',_binary '&I!\Z\\@M\b\N\','',0,'?'),(_binary '\\jX\Sb\!\Zd','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-a33f06a486a7f4249d33.js',0,_binary ',-\ncAM(U\ZP',_binary ',-\ncAM(U\ZP',_binary 'K%N\yijĽ7\;QCQs','',0,'?'),(_binary '\3\\0~c\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-a35aa49a0dfc317ef141.js',0,_binary '\j3,\0{',_binary '\j3,\0{',_binary '\1aF4Ϳ\u\\\\\X2\B\','',0,'?'),(_binary 'C\\@\5tP','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-a3bf71e65929a9be598a.js',0,_binary '\5\<c3D(\',_binary '\5\<c3D(\',_binary '\\0ς6\u\RO\*\Z*Y\cZ]\n\\*','',0,'?'),(_binary '\ UT]3qf','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-ab48f4d457506a7fcab7.js',0,_binary '\~Y^*y\3bT',_binary '\~Y^*y\3bT',_binary 'զ;98\S\b\P\E\\\\0F\5҆9','',0,'?'),(_binary '\<.Kȗ\`t\\\\ې','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload.75dacdd368237a38d5eb.min.js',0,_binary ' \	\hs\,\;X',_binary ' \	\hs\,\;X',_binary '>mBVQ\筗>]\\篟JS\Ό#','',0,'?'),(_binary 'G\`9\Y0׌VX','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload.885bc75706af563a7288.min.js',0,_binary '8\m	\:\!',_binary '8\m	\:\!',_binary '}\b%\\\\0Jn\Zx=ж\\\','',0,'?'),(_binary 'w,\c(\,#\','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload.js',0,_binary '\NB\0\\\}',_binary '\NB\0\\\}',_binary 'FS߼\$\\ڊ\.\ɽ~\]\iC','',0,'?'),(_binary 'Y\rEݖaŠUƢ','wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload.min.js',0,_binary ' \	\hs\,\;X',_binary ' \	\hs\,\;X',_binary '>mBVQ\筗>]\\篟JS\Ό#','',0,'?'),(_binary '\`\\9f[\\','wp-content/plugins/jetpack/_inc/build/jetpack-admin.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C~vC|=HO=',_binary '@\_\`a\\(^RF\n.h\\gk\','',0,'?'),(_binary '\\eCp\\dD\','wp-content/plugins/jetpack/_inc/build/jetpack-admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\TMu\\ԧ>2',_binary '\F\_p|$\i\ٞX{s^O','',0,'?'),(_binary 'B\\\w\k3 \\\\\\','wp-content/plugins/jetpack/_inc/build/jetpack-connection-banner.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\\\ni9r\\ƺq',_binary '\ǮxOO\"\\\nF+{l_d|\V\0\X],','',0,'?'),(_binary '\ct\\\}','wp-content/plugins/jetpack/_inc/build/jetpack-connection-banner.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0,\}\\QM\~o\\:',_binary '\nT\,\\\b%\.gc\\4\0e\\','',0,'?'),(_binary '6\"r}\E\p:\','wp-content/plugins/jetpack/_inc/build/jetpack-deactivate-dialog.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?H\\K\'\jy>',_binary '\\EӴk<n!%\\*\Zai[\-j\\Sُ','',0,'?'),(_binary 'Q\\Gh\/lU\@X\\','wp-content/plugins/jetpack/_inc/build/jetpack-deactivate-dialog.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ʻ\AЖ;R\\',_binary 'Ġnf*:\ˣ쫴j\\Kc\yg\\{\','',0,'?'),(_binary '!M\n-Vv\]\0@','wp-content/plugins/jetpack/_inc/build/jetpack-jitm.min.js',0,_binary '\ID\3C',_binary '\ID\3C',_binary '\s\]V\ZPH\tRdL?[\\)ՈuC','',0,'?'),(_binary '\ox\d3gG;+','wp-content/plugins/jetpack/_inc/build/jetpack-modules.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\\@]n\\Hg',_binary '\\Oj%\\\ΎЧ\6.:m_h\\[\','',0,'?'),(_binary '\\N\c&:\\','wp-content/plugins/jetpack/_inc/build/jetpack-modules.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\*\\~#\"ӗ',_binary '\Ҁ<\{V#O4`T\^A1','',0,'?'),(_binary '\Id}`u\\%','wp-content/plugins/jetpack/_inc/build/jetpack-modules.models.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9ȃE\ZAnyU\',_binary '\2)\8S\Z\;Ǎ2VQ\^,\ \','',0,'?'),(_binary '\l*\\.\M\\hC','wp-content/plugins/jetpack/_inc/build/jetpack-modules.models.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\\5M\J=',_binary '\\ÞРDB\>D*\.~\.\\0*ncQ','',0,'?'),(_binary 'zݜV\0p\\9\0%~(','wp-content/plugins/jetpack/_inc/build/jetpack-modules.views.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'It1[\\\t,',_binary ']\\m&B{Ψ\e\n\,Y\\\\\\\O','',0,'?'),(_binary '!ds\\\rZ\\c-\','wp-content/plugins/jetpack/_inc/build/jetpack-modules.views.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\1>n\aW ',_binary '8\T2~\\6|͘گ8\D\-','',0,'?'),(_binary 'h\ߚ匰\\Ȟ~AGP','wp-content/plugins/jetpack/_inc/build/jetpack-recommendations-banner.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\dd.P\^TO8,',_binary '\!t9\^\rЛjQ^\F۫G\2','',0,'?'),(_binary 'X\Ɓ\\v\p','wp-content/plugins/jetpack/_inc/build/jetpack-recommendations-banner.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\۲j\\@\]%\',_binary '\z\h\r\OR\==TV \\nuaJN','',0,'?'),(_binary 'icНm\&y+G\','wp-content/plugins/jetpack/_inc/build/jetpack-wizard-banner.min.js',0,_binary 'h\:H_\E!z!',_binary 'h\:H_\E!z!',_binary '\Z_\E,TE\\n.5o\'S\/ī\%','',0,'?'),(_binary 'a\tىp!BrA\','wp-content/plugins/jetpack/_inc/build/jquery.jetpack-resize.min.js',0,_binary 'I\Oj\6J\&\R\5',_binary 'I\Oj\6J\&\R\5',_binary '\^	:}@{?\'St\,ɰIC\:\Z\','',0,'?'),(_binary '\T/5\~YDz\','wp-content/plugins/jetpack/_inc/build/jquery.spin.min.js',0,_binary '\\Z\*7\ǣ',_binary '\\Z\*7\ǣ',_binary 'e\\{&O\8=Ap\A\&c5h^$̙','',0,'?'),(_binary 'z@\NSP\5Y\','wp-content/plugins/jetpack/_inc/build/lazy-images/js/lazy-images.min.js',0,_binary '$.>h\g\\	z)$',_binary '$.>h\g\\	z)$',_binary 'eZ#98\ Fi\5gڍ\ϱ\c\\7G\','',0,'?'),(_binary '=SKB+(- e;q','wp-content/plugins/jetpack/_inc/build/likes/post-count-jetpack.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\6:\\:\"',_binary 'Ga&3Sa\ꡅG44amE\\\'B\','',0,'?'),(_binary 'Rz\\^oHmJT{','wp-content/plugins/jetpack/_inc/build/likes/post-count-jetpack.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zOh\0\	\\R\YC',_binary 'Q$\ \ڬe\\'w\\!!\0͌','',0,'?'),(_binary '\\|^l\	c\\\\','wp-content/plugins/jetpack/_inc/build/likes/post-count.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\\ŕ\e',_binary '!!\#x^B\\Z;~\G¦O\	kм`\','',0,'?'),(_binary '\\\5g\\v','wp-content/plugins/jetpack/_inc/build/likes/post-count.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8!3\b:Y	',_binary '\IIb/p\\\\w%$?\8v\}','',0,'?'),(_binary 'v\nf\n\*\','wp-content/plugins/jetpack/_inc/build/likes/queuehandler.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ey2HA\;ډnW\',_binary 'ZW2\Zb)\Q\\\\\ fN','',0,'?'),(_binary '\n<%\PK [oЭ','wp-content/plugins/jetpack/_inc/build/likes/queuehandler.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5Eh\\E',_binary '}zp\}9e28\YI:|8j;%3R\','',0,'?'),(_binary 'A\\q@?B\_6\\,\','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/aquatic/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K`w|\R\n\"q\\',_binary 'WhX\\Tk\6+\|\\0!(kx-e','',0,'?'),(_binary 'w@嶟Ӕ\u\','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/blue/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T&\\ԭ	Qo[',_binary '\nN\0t $[2C~\\硳OA\6','',0,'?'),(_binary 'hF6\9N^','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/classic-blue/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'czT\?\0W\:kY`',_binary '	i\"\\kkxpr\\Mja6-cx#	','',0,'?'),(_binary '\V\te	\\q%W','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/classic-bright/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ۊ~\d-=89{u\][',_binary '\p B\>\WO~i=sQo\$\KJ\','',0,'?'),(_binary '%\bŕKKO','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/classic-dark/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\Zul\j$J',_binary '\^ż\V4\\\Ro@\dU`L\0m','',0,'?'),(_binary 'd	a\{排K','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/coffee/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fҽ\\\u)d',_binary 'l\\cuܛZ\K?JK\.','',0,'?'),(_binary '\\^{fVj\\\','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/contrast/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\Q\\\\y\\',_binary '\-\VnfċC#\iG[%Γ\%','',0,'?'),(_binary '\Z\*y\\Gz\[\b','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/ectoplasm/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=r\SܮS]z\',_binary '\L\/6]ŭn\o%pVaX\\l\','',0,'?'),(_binary '\ӟP\"\T\bT','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/fresh/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#9u|\њ\ \',_binary '\Kvβ\\E;\\M@BZ\H9Dn\','',0,'?'),(_binary 'O\\\"/\oR\(','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/light/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Х\h\\ ',_binary 'K\\0l@VE\L\\\yXႮFN\0\\Z','',0,'?'),(_binary 'DE\\҇qYt','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/midnight/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wydeg\ҥ\\`2\\',_binary '[\\l\u<\\ׯP		2&/M\\\n','',0,'?'),(_binary '\wD\"\ G\Qx\l','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/modern/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T1E\ݟ\ ',_binary 'vX~aW\{CM:ʓDw_7Zvd\p\\\','',0,'?'),(_binary 'sOwDZ&\\t\','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/nightfall/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '} ;\\o\vbV',_binary 'Ы1_z^ư*B\8-\\z\"\n','',0,'?'),(_binary '[쁃L9i\M','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/ocean/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\h.\\0\'',_binary '@n¶.fd}\&|TЕ\R,\0\\','',0,'?'),(_binary '6:\c \&\\cz','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/powder-snow/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\$Xtɋ\ʮrPU',_binary '׏X\r/T6\%\γ)<\087\=\','',0,'?'),(_binary 'ɛ	4\,\LC','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/sakura/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X8*\\\{;\r܎',_binary '0\9ew\ŝn\A]dYxĦg','',0,'?'),(_binary '$Tm9*P\ZT','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/sunrise/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4\\q',_binary '\;\*C\\\ (ѓ?>8\\"|\Pk\\','',0,'?'),(_binary 'FQQTE\{cG','wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/sunset/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\ 3\@XDʴG',_binary 'j\rn	h\:\Aa^*xlRg\ўr%','',0,'?'),(_binary '\M\\.wyv','wp-content/plugins/jetpack/_inc/build/masterbar/admin-menu/admin-menu.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\\Ci\'DCB4\',_binary '\!k\\pG$O% HK^5y\ZlWa','',0,'?'),(_binary 'uԊ8\$\Qb\\J','wp-content/plugins/jetpack/_inc/build/masterbar/admin-menu/admin-menu.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\R\Fl\\\',_binary '\\\C78\'\Ac\\+M\\\n_7\','',0,'?'),(_binary '\fQch5톜\Z/\','wp-content/plugins/jetpack/_inc/build/masterbar/masterbar/tracks-events.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\Pk\05ieZ\\',_binary 'їa\\Z?;IB\\ܓ\\\"\u\r\\','',0,'?'),(_binary '\\,璴k\','wp-content/plugins/jetpack/_inc/build/masterbar/masterbar/tracks-events.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qf07f\6\G.\\',_binary '\3ש׷o/w\\'%0k6X\\=Sg','',0,'?'),(_binary '\\\\\Bc~\Z/','wp-content/plugins/jetpack/_inc/build/masterbar/nudges/additional-css/js/additional-css.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`NŁ[\\0N\',_binary 'U\jD*F\'\D\"a|\@8)s','',0,'?'),(_binary '\2WJπ','wp-content/plugins/jetpack/_inc/build/masterbar/nudges/additional-css/js/additional-css.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϒz\z>\\\9',_binary '9\/<\w\\9I\8\\\]E:D\Bx','',0,'?'),(_binary '\\0.0}}\T\','wp-content/plugins/jetpack/_inc/build/masterbar/tracks-events.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GHK\RGSq',_binary '\$w?䖥_\.\y\<.','',0,'?'),(_binary 'N:\Ek\&j`y\\\','wp-content/plugins/jetpack/_inc/build/minileven/theme/pub/minileven/js/small-menu.min.js',0,_binary '\\~\\\\\\\%\Z',_binary '\\~\\\\\\\%\Z',_binary '\!`y>\(0+~+\YT\l\'\','',0,'?'),(_binary '\m\\\\\>9','wp-content/plugins/jetpack/_inc/build/photon/photon.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\\6\',_binary '\x6c{cg%8\\\$$$ùW.a^Dh\>','',0,'?'),(_binary 'R\%q9}~\\F\">','wp-content/plugins/jetpack/_inc/build/photon/photon.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$bj\E;\_\~l]N',_binary '8Ÿ\\;)^z1,a5)\Ƽ;\	Y','',0,'?'),(_binary '`P\\\0\n','wp-content/plugins/jetpack/_inc/build/plugins-page.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D[Q\[;_\cf\B\',_binary '6c(fz_;<\G*mN1\TlCo\F\','',0,'?'),(_binary '޿ۗ\1_y\g','wp-content/plugins/jetpack/_inc/build/plugins-page.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n7ќd.r7Y\\\',_binary '\\=\\\obN	2m\\\f8>`bαP','',0,'?'),(_binary '#=\\5\'\\՝','wp-content/plugins/jetpack/_inc/build/plugins-page.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u&s&:cS\np',_binary 'g\"\KIMD$*W\P\\\ďV\^Kϫ\\\<','',0,'?'),(_binary '@\\\r\@E;Ta\','wp-content/plugins/jetpack/_inc/build/plugins-page.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C\er$u\\\|\',_binary '\Z\\\s\q\k[\o\v)\\W$w\Cd*','',0,'?'),(_binary '{h˭V`\n/C\=\\','wp-content/plugins/jetpack/_inc/build/plugins-page.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')yLT(-\#',_binary '\]c\n\ht/ܞQs\A\\<	0\nc*','',0,'?'),(_binary '!^T\=?M\','wp-content/plugins/jetpack/_inc/build/polldaddy-shortcode.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\|ɻR@{Q',_binary 'ru<zx)$t,8s\yL] TTm4\q<ȥ_','',0,'?'),(_binary '\CL]5dM','wp-content/plugins/jetpack/_inc/build/polldaddy-shortcode.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hh\\0\\\P\\\',_binary '\Sq\Q#%B2\\|e\','',0,'?'),(_binary '@%9\"\Z#&R0$','wp-content/plugins/jetpack/_inc/build/postmessage.min.js',0,_binary '\ftc$\8\\#',_binary '\ftc$\8\\#',_binary '$`Лp\\r\\r:Բ\O̮BuP','',0,'?'),(_binary 'K\\9v','wp-content/plugins/jetpack/_inc/build/related-posts/related-posts-customizer.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Љ͇+SF\TS\',_binary '\r\F+\a\R\(\\r\.X\Q\\','',0,'?'),(_binary 'P]Bft\','wp-content/plugins/jetpack/_inc/build/related-posts/related-posts-customizer.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L9z\\z',_binary '\NCܯb\\oNquT/ɪ\"(\?','',0,'?'),(_binary 'mt\q\\\e\s\{','wp-content/plugins/jetpack/_inc/build/related-posts/related-posts.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\Eý{\\Rt\\\',_binary '~T+\\\/\'\x\]O50L/ƵO2\','',0,'?'),(_binary '\5eŘ[wI<.O','wp-content/plugins/jetpack/_inc/build/related-posts/related-posts.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\V\SXNlOU(o',_binary '\'\\\\!\nZ(!.\\*0~\','',0,'?'),(_binary 't/\\QG۟D\"\7','wp-content/plugins/jetpack/_inc/build/scan/admin-bar-notice.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\gt݇)\p<r\\!',_binary 'TF9ߢc\\\JɩM<]Ȳ','',0,'?'),(_binary 'j6DǇ\w\`\','wp-content/plugins/jetpack/_inc/build/scan/admin-bar-notice.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[A\nmK\g\\',_binary 'ɲo\ͭ(Ƅn34<(\\"ȋھ','',0,'?'),(_binary '?\\EY>\Zľ>i','wp-content/plugins/jetpack/_inc/build/search-dashboard.asset.php',0,_binary 'j\\F\!v5e\\',_binary 'j\\F\!v5e\\',_binary 'o}x\UO0h\\Xf?\\9\m>','',0,'?'),(_binary 'x|Bj>1_VF\\','wp-content/plugins/jetpack/_inc/build/search-dashboard.js',0,_binary '|,+ށF\*\\\\Q',_binary '|,+ށF\*\\\\Q',_binary '\Ү[\>+@+bzHG4^\rx','',0,'?'),(_binary 'Or0F\v\\\;','wp-content/plugins/jetpack/_inc/build/search-dashboard.js.LICENSE.txt',0,_binary '$8ן:忼\"\'\'n|',_binary '$8ן:忼\"\'\'n|',_binary '\\j9\\\n&\\A6\u,桻؊7!','',0,'?'),(_binary '\\?\rT%\\NFL','wp-content/plugins/jetpack/_inc/build/sharedaddy/admin-sharing.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ud7vX{\"\|',_binary '\*\A=tcC\2Si\F%\n','',0,'?'),(_binary 'i\w8\_	\m-@e\','wp-content/plugins/jetpack/_inc/build/sharedaddy/admin-sharing.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\\f\!L\'',_binary '	p\A\\\\2\A}2vL\n	E','',0,'?'),(_binary 'uN؊tqq\`]\n','wp-content/plugins/jetpack/_inc/build/sharedaddy/sharing.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\R\\\\\\l',_binary '\L~\߆Ф\nW>YI:%B`4:g\','',0,'?'),(_binary 'ZVK@h\,Մ','wp-content/plugins/jetpack/_inc/build/sharedaddy/sharing.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ѬP^\9<\W',_binary 's\ZC\\\>\r\\2I\VZ\\','',0,'?'),(_binary 'k`[\ޮ\ѕn?}\','wp-content/plugins/jetpack/_inc/build/shortcodes/js/brightcove.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vđ{\c2\f[\B',_binary '\0M{AM][\Nhz5\D׬y@:\\"','',0,'?'),(_binary '\\n[\E$\~','wp-content/plugins/jetpack/_inc/build/shortcodes/js/brightcove.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7d.\`5l\X\',_binary '\\\\"]Ot%_jaf\<7\	_ ;w엞','',0,'?'),(_binary '\_nD\\n\X','wp-content/plugins/jetpack/_inc/build/shortcodes/js/gist.min.js',0,_binary ')p\2c-O \\w$',_binary ')p\2c-O \\w$',_binary '\\:`@f\﹀r/fm\Q8#~i\n\\=','',0,'?'),(_binary '݆R-qOM','wp-content/plugins/jetpack/_inc/build/shortcodes/js/instagram.min.js',0,_binary 'Za\\7fCwH\',_binary 'Za\\7fCwH\',_binary '\o\nOSO\\S\\\"wI\`\[2o\','',0,'?'),(_binary 'l\\:\e<4\r','wp-content/plugins/jetpack/_inc/build/shortcodes/js/jmpress.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\x>uaz#Q\\\',_binary 'Em\f3\ƒ(;s避hc\iы~\','',0,'?'),(_binary '\s4\r2\Eo I7l','wp-content/plugins/jetpack/_inc/build/shortcodes/js/jmpress.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%ފ:\E\\',_binary '\NFJ\dJ_\\^rc\Y\\G\n\8','',0,'?'),(_binary 'u^\@\X?\Zya','wp-content/plugins/jetpack/_inc/build/shortcodes/js/jmpress.min.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=5\(e\\ۖ&oh$',_binary '\\ąaF\CZ,\\'#\\"ţ\0^-','',0,'?'),(_binary '\6\IR\id\[\','wp-content/plugins/jetpack/_inc/build/shortcodes/js/main.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\b\GBAS',_binary '.\\||Kg\{2Az߀\\WVB','',0,'?'),(_binary '܂!N\Nc;h\','wp-content/plugins/jetpack/_inc/build/shortcodes/js/main.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\fS\\aNь\'!',_binary 'Er,B\\\)\\\LQL\\"\Z^\0\\Z\\C','',0,'?'),(_binary 'Z\0y\xGƝ\'R\Z\n','wp-content/plugins/jetpack/_inc/build/shortcodes/js/quiz.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\nF\I{W\\AH',_binary 'f!m9<\8]o\\Wsy8\z\\O','',0,'?'),(_binary ',G!\'w&\":\|\Q	|','wp-content/plugins/jetpack/_inc/build/shortcodes/js/quiz.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\bx\ X-PC',_binary '\G$Xo7%dX\}kKfr\\','',0,'?'),(_binary '\ͷ\\ /|d V','wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes-printthis.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Zl\0oI\\u\}\\\',_binary 'F\_]\nВ-I4(t]\hFa0ka\\N','',0,'?'),(_binary 'd\\\0\\','wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes-printthis.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\\\\OB\\aL~ߎ',_binary 'qXw\0Jy\fVhERyt<\\\~\nV\\O','',0,'?'),(_binary '\e\nK&T˙\\','wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes-printthis.min.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4b\٦P>',_binary '\nͶ#B[iEr\\#\>\','',0,'?'),(_binary '蓺UZ\I\~w\<','wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-^\Hh\͈Q\\Z1Q',_binary '{ׅ\>}UT5wMZ~.\V,\','',0,'?'),(_binary 'X\K\OXӓ\rD \','wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H\\R\\?UO',_binary '\n\\V8,,\|\\#3l\\1t\\\Aw','',0,'?'),(_binary '\ZUW~2\Q\\\\\','wp-content/plugins/jetpack/_inc/build/shortcodes/js/slideshow-shortcode.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZS\|t>$c\\Fe',_binary '&%\X\9\~݀7T\Z\\\V;V\#0[\lA\','',0,'?'),(_binary 'ړ \3\\٧\F','wp-content/plugins/jetpack/_inc/build/shortcodes/js/slideshow-shortcode.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FiC\\6\W\׺\',_binary '.b*ۤWJlcg\^*\','',0,'?'),(_binary '3\0\\iC7E\n4+','wp-content/plugins/jetpack/_inc/build/spin.min.js',0,_binary '4ۍ;\\L4lۃ\',_binary '4ۍ;\\L4lۃ\',_binary 'V)dk}\\fNr\b˹_op.\p','',0,'?'),(_binary 'K3\'\X\\\;`\p\n','wp-content/plugins/jetpack/_inc/build/static-noscript-notice.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':w\_s1G3\\',_binary 'r\[J1\<\\_3\n\9-A\a>','',0,'?'),(_binary 'Y\؃\*p\','wp-content/plugins/jetpack/_inc/build/static-version-notice.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\\\OM4sٿ',_binary '\1)OSyt1U_\2AJ=\\6y`\\','',0,'?'),(_binary '\\Wb.d3\Z\V\D\','wp-content/plugins/jetpack/_inc/build/static.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0@j[\_\xa',_binary 'i\_\0\\\R\Zܝ','',0,'?'),(_binary '\QIg\ʍF\(&','wp-content/plugins/jetpack/_inc/build/static.js',0,_binary 'Frp\-]\\#\\',_binary 'Frp\-]\\#\\',_binary '\Mb\\#ˢ	sM?K\\\0:0\Z','',0,'?'),(_binary 'rma\Gd\W\Z','wp-content/plugins/jetpack/_inc/build/static.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B1T\2fKh{jcFv',_binary '\@{\\\0G\s\^\`X\\r<\PMd6\','',0,'?'),(_binary '[h3X;|\t7VV','wp-content/plugins/jetpack/_inc/build/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\\\>E\\2+\',_binary '4BkijrѢ켪UF\"D@~\\HL','',0,'?'),(_binary '\\lZ/-`7`','wp-content/plugins/jetpack/_inc/build/style.min.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\9\)\\0\ ',_binary 'd\ g\\\V\9O+\\\pf+o','',0,'?'),(_binary '쀘i@v\\sda\D','wp-content/plugins/jetpack/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\e@/\$\',_binary '9a\B\vTl\\/(i(\\\O*1\7`Y','',0,'?'),(_binary 'Gt\8x\','wp-content/plugins/jetpack/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v|\ұ]foy',_binary '۰Z\\\ho\n`\\C\\\Ѷd\\GG\\r','',0,'?'),(_binary '\zl#]Q\\\r','wp-content/plugins/jetpack/_inc/build/twitter-timeline.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\\JDXm',_binary '{!h;\W.\\|\\\Xqi\)','',0,'?'),(_binary 'L1x\B\\7','wp-content/plugins/jetpack/_inc/build/twitter-timeline.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\\msg.\\',_binary 'i&?cr\\J\noń\\	k}(\J)','',0,'?'),(_binary '-k8c\Zu:[vV','wp-content/plugins/jetpack/_inc/build/videopress/js/editor-view.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n5\rϼ\i|!',_binary '\w2\Je\ǳ\8Y\f\\rw\LNv','',0,'?'),(_binary 'l\.>\,D\\','wp-content/plugins/jetpack/_inc/build/videopress/js/editor-view.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\dϷ\Ǘ\\\\',_binary 'hO\\H\+&SM<]ۇK0\E\\eNm','',0,'?'),(_binary 'Y֎ܗvй]m\','wp-content/plugins/jetpack/_inc/build/videopress/js/gutenberg-video-upload.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\hW?',_binary '}Ī8פ(\\\h+q8P\\0-\n*','',0,'?'),(_binary '\׾}hbV@_88\q','wp-content/plugins/jetpack/_inc/build/videopress/js/gutenberg-video-upload.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9W\\Пu\\I',_binary 'S$\RF*8\\\\\\4s⢬\O\\','',0,'?'),(_binary '\\\\v~oj\x\K','wp-content/plugins/jetpack/_inc/build/videopress/js/media-video-widget-extensions.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t\\0\ ԩA7',_binary '.\]\\>\9\rRcڱZ\\\\h','',0,'?'),(_binary '`UL*RALf\wl\m','wp-content/plugins/jetpack/_inc/build/videopress/js/media-video-widget-extensions.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rj(\1@)',_binary '<\J\\\R\ZO\")\\\0Fo','',0,'?'),(_binary '}\F\\zߏot\\U/.\','wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-plupload.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2{P.ʶ,\\2\0',_binary '\9zߎ=\n\\\o\D\\w\=','',0,'?'),(_binary 'n-(\\n~ܗ1\','wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-plupload.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\$\\s|:X2',_binary '\haɭ	ir8\,I\J\"f	','',0,'?'),(_binary '%\o\\D\Ð\A\Z\','wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-uploader.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<Kl=(2Lm.',_binary 'N4ʇX@\1B\\u\yy\\r>\U\]','',0,'?'),(_binary '\S*6\A\\\\6v\','wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-uploader.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\	\^%2gס\',_binary '/nβz\+1\:\]\H\\','',0,'?'),(_binary 'OXqn\\v1','wp-content/plugins/jetpack/_inc/build/widget-visibility/editor/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&w\0Qva_/>',_binary '^[SOԏ/bY@i\\t\XZm','',0,'?'),(_binary 'cc\]\0\','wp-content/plugins/jetpack/_inc/build/widget-visibility/editor/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R~7\T+<\RTμ',_binary '4\3\\8\_$\0\|(?\\\Ƒ1fa','',0,'?'),(_binary '-\\9VϠ\\','wp-content/plugins/jetpack/_inc/build/widget-visibility/editor/index.min.asset.php',0,_binary 'zMTG\\Im*ӛ\r0',_binary 'zMTG\\Im*ӛ\r0',_binary '\\dc\g8m\\r&\\ݳ}%\ؒH4\cN\','',0,'?'),(_binary '\f\Ė\Zype;','wp-content/plugins/jetpack/_inc/build/widget-visibility/editor/index.min.js',0,_binary '9X0+ub),o!m',_binary '9X0+ub),o!m',_binary '\5\^O\\-\G.S?\r','',0,'?'),(_binary 'I4yj\\C&\','wp-content/plugins/jetpack/_inc/build/widget-visibility/widget-conditions/widget-conditions.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>7Ɵ\\\$\8\',_binary '\qB\/4\\>\(\\\\\','',0,'?'),(_binary 'jSl\0@-\@','wp-content/plugins/jetpack/_inc/build/widget-visibility/widget-conditions/widget-conditions.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\PIqݽ\YZ',_binary 'Rȣ\0P\\̝s%[\\~\m (+\\','',0,'?'),(_binary '\rR\\*4','wp-content/plugins/jetpack/_inc/build/widgets/contact-info/contact-info-admin.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~#JxoJ\BQ\\K',_binary '\\\I[p)\0\חY\ϊ\J	','',0,'?'),(_binary '>t\0\v_6{\Z','wp-content/plugins/jetpack/_inc/build/widgets/contact-info/contact-info-admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%g&\"\\8',_binary 'Ttءu.\:+\ \n\\ZQ\','',0,'?'),(_binary 'i{Pk\{ki\r','wp-content/plugins/jetpack/_inc/build/widgets/customizer-utils.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8١,\\LY\\`V',_binary '\&\\М[`v\7\'b=HY1\ڱ','',0,'?'),(_binary '\\'аj\\S\$%+','wp-content/plugins/jetpack/_inc/build/widgets/customizer-utils.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\\|J.\\W\',_binary 'P0׻J\\;\\Z\\5D(])~/Yk','',0,'?'),(_binary 'DUێ|:\_Ց?`+\#','wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law-admin.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L\\hA8\\\',_binary '4\G\23MK\ ~\Đ\m\\=P4','',0,'?'),(_binary '\\J2P\\oHܧO','wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law-admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\Q\\0UTH\\\q',_binary '*̶L\\\\$$9><\$\\Z\','',0,'?'),(_binary '\ʑ)\pEBP\"e/I','wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]C\u\G\M\',_binary '\?\(\p\\~%Vf-\3\9}\','',0,'?'),(_binary 'ܙ\z\\\%e','wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\n3p\v^Nd;%',_binary 'd\M\\gh$<|\nz|J\Z\p','',0,'?'),(_binary '5V\O.\֠\','wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/admin.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\3`\P~R ',_binary 'ɰ\@?\.;`,a挈\Zkΰ\\n0i','',0,'?'),(_binary '˝\r.cDRz\','wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ɟ4\?x\',_binary '}J>p)K\\\\h>PQKr`s$f','',0,'?'),(_binary '(\\\.$e\r','wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/gallery.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\\\\}[\ZN\?a',_binary '\\ik\[\mcϽݚ\"c]\\lpS\\','',0,'?'),(_binary '2\\YuLo\\0\Z','wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/gallery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nON5~\Z%n',_binary 's\iP\xY6\,K\Q\S\N)\e','',0,'?'),(_binary 'lK\V\\kL,\"_K\','wp-content/plugins/jetpack/_inc/build/widgets/google-translate/google-translate.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\eL\\,u\ Q',_binary 'Od\7S:|޿\\ԑ7\v\=mb','',0,'?'),(_binary 'ED\W\\\r	B','wp-content/plugins/jetpack/_inc/build/widgets/google-translate/google-translate.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\r=dPo',_binary '맽9\OqO8?\Ct\i`z\-44','',0,'?'),(_binary '052OR\"\','wp-content/plugins/jetpack/_inc/build/widgets/milestone/admin.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wt>tː\/',_binary 'v*#QW\\\g(7Se\it`sҋEY','',0,'?'),(_binary 'Y\rPh2\n\T\7[','wp-content/plugins/jetpack/_inc/build/widgets/milestone/admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BZ\P,*/;$N;',_binary '-7\X?\\KLe\\RQ\O^(\J\','',0,'?'),(_binary 'N:\?Y+Oֱ%q\+','wp-content/plugins/jetpack/_inc/build/widgets/milestone/milestone.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\i\R6\0_',_binary '\l\OHsC\rX\\\gjp\~\rJ','',0,'?'),(_binary '	\\i\\Q}','wp-content/plugins/jetpack/_inc/build/widgets/milestone/milestone.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@txr6O\|U',_binary '\!Z\\"\\`x\Et\5\\*AB)','',0,'?'),(_binary '=x{ǁ\g\l\\','wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget-admin.min.asset.php',0,_binary '\qE>\ohOQ',_binary '\qE>\ohOQ',_binary '\67/W\䦓(ثr\\UFJ\\2s','',0,'?'),(_binary '4K\wn\ҟ̻!\ǑQ','wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget-admin.min.js',0,_binary 'E\Ɩ,\\R磊\f',_binary 'E\Ɩ,\\R磊\f',_binary '(Ȗ0\amo~Մܖ\y\o','',0,'?'),(_binary '\\\r\\\Lr\0\\','wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget.min.asset.php',0,_binary '\"\ZB8\rG',_binary '\"\ZB8\rG',_binary '57\'\\Q\(y0%:ūT\\\ͽr\:','',0,'?'),(_binary '#S\\\Ь\\\\[\\','wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget.min.js',0,_binary '}MZl\"&X%P',_binary '}MZl\"&X%P',_binary 'e=l\\\S\0ff\*Yޫ\\2\*','',0,'?'),(_binary '\\;<\!9\ցS','wp-content/plugins/jetpack/_inc/build/widgets/simple-payments/customizer.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\AJ?\Ab&',_binary 'n^Y]	*[W[7\\ѫ5\p','',0,'?'),(_binary 'VkՌ\:F\h4\!','wp-content/plugins/jetpack/_inc/build/widgets/simple-payments/customizer.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~s\c\\\"t',_binary '\J\U\j\Q儔J~c_\.u','',0,'?'),(_binary '\T\\'\#k\~?','wp-content/plugins/jetpack/_inc/build/widgets/social-icons/social-icons-admin.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#Ta\\\,g\)_',_binary 'ـ}R\Kp\l \\'xϥ3=\Zg9XeA','',0,'?'),(_binary 'OGx\=5L\\	','wp-content/plugins/jetpack/_inc/build/widgets/social-icons/social-icons-admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B\/\n\e',_binary '\\%~\\\7\]\Ya\!\g@9','',0,'?'),(_binary '\J.\4\RV\','wp-content/plugins/jetpack/_inc/build/widgets/twitter-timeline-admin.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\fzHa-`\S\\O)',_binary '>6Γ]=P^;\\(~\A\0\:\97t\r','',0,'?'),(_binary '.\$3~zvJ\-','wp-content/plugins/jetpack/_inc/build/widgets/twitter-timeline-admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\\n4',_binary 'k9lE-Z%P\\mP\֢_\'\]4','',0,'?'),(_binary '1T}~\pYI\;','wp-content/plugins/jetpack/_inc/build/wordads/js/wordads-ccpa.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~CI)\\\0\QRK,',_binary '\A++\ߊ\B\\v9b$$','',0,'?'),(_binary '?»F\]T57\','wp-content/plugins/jetpack/_inc/build/wordads/js/wordads-ccpa.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4c!\{\a!\\\\Y',_binary '[|/\\ԯi8𙉙/\\0jN','',0,'?'),(_binary '\\\\\]	*\Z\ ','wp-content/plugins/jetpack/_inc/class.jetpack-provision.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\+,*\',_binary 'Ҵjn◷hH	f\\#\\"(','',0,'?'),(_binary 'YDH\L\왐','wp-content/plugins/jetpack/_inc/connect-button.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˨c7~\\0¢^',_binary 'HO`,\O\<|M%\\(,','',0,'?'),(_binary '\\\nĿ\E\{\?R','wp-content/plugins/jetpack/_inc/crowdsignal-shortcode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sk\ĭ\zzM\',_binary 'C%bwϗ\nkB}\\)\r\\\+\L\\\','',0,'?'),(_binary '\b{(\n\s_\','wp-content/plugins/jetpack/_inc/crowdsignal-survey.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q`V\\y\n627\E',_binary '\ȴ1S)tKyneà\A\i\I~','',0,'?'),(_binary 'ө	N\8\eq\\/','wp-content/plugins/jetpack/_inc/facebook-embed.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\0\f%+\:\',_binary '&3F,ծd[F+\Q\e/\\&R','',0,'?'),(_binary '^\Cc\\-7$M','wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&f\*t>\FK\\',_binary 'nF첵dDց\8Y\\61\"˾\>G','',0,'?'),(_binary 'U\J','wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5<Ȝe^\ų',_binary '͍@3D\rR	d|\g\'\tˡ_Z','',0,'?'),(_binary ';!\{,','wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\8\n\q\',_binary 'dZ/a>_D\*\'x#\\*\\>','',0,'?'),(_binary 'E7\\\y\B','wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{c\Ϟ\9wm',_binary 'iUiL\*3\\8xR\RyRE','',0,'?'),(_binary ';k\0ʏ\r','wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ts\q\\/',_binary '=p\\ZXfm?k\	=\ͽ\\'\','',0,'?'),(_binary '\;y2e\ƀ','wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\69\\'\ݚ;\',_binary '\ҺC	-Pc\)D\ׁR|+\Px\+','',0,'?'),(_binary '\}%c1IdDaBc','wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\\6X\}\n',_binary ' *[\0tfZӞNs;\H/$HIY','',0,'?'),(_binary '#\^\;S\TN΅\','wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+x2\bhI',_binary '0tfc$x\\\\C\ubBfȈ\Z\WM\','',0,'?'),(_binary 'خF\h','wp-content/plugins/jetpack/_inc/footer.php',0,_binary 'Vw1p̺\',_binary 'Vw1p̺\',_binary '\P\9Sd[A%wf=l','',0,'?'),(_binary '[:8\<\\1b\0\,','wp-content/plugins/jetpack/_inc/gallery-settings.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\njWEïx?nk-\v',_binary 'b%+\#dQ)f\&\\','',0,'?'),(_binary ',jΆ\[],)s\v','wp-content/plugins/jetpack/_inc/genericons/COPYING.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B;\a`GԢމ',_binary '\+P4\g.\\{\\\^W\/![qu','',0,'?'),(_binary '\4\&\n4\v','wp-content/plugins/jetpack/_inc/genericons/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\Mi\\HjJBc',_binary '\0v1\s\N\>cID٦\I\0-','',0,'?'),(_binary 'M\l\|\O','wp-content/plugins/jetpack/_inc/genericons/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\6\\\V\0\\\\',_binary 'ҕRw\&8J\ie@\\<M\}<,\"/d','',0,'?'),(_binary '\%\W;\	pXha','wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sө\n/;]s>',_binary '4+_\[\\\\qpv,\{\l\\','',0,'?'),(_binary '^9o=>h\P\aW','wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')ld*Z\\\b\',_binary '(\5\\\&HFI7l24=}`j\V\\\Bj4)\','',0,'?'),(_binary '\+P}iw\','wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\' N깛\\V',_binary '?ǵ_-ϟ\\b7b\Z	\'fp>UG\0','',0,'?'),(_binary '9S\\a\d\','wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\;(H\\-Jhtx',_binary ';\m\}\\\\\\e(~y0m=},','',0,'?'),(_binary '\\Be\~\S\4\ke\','wp-content/plugins/jetpack/_inc/genericons/genericons/genericons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\r\6\\Xwx\M',_binary ')\\@ \ѵvP4\\W*Y\\'\-c\|','',0,'?'),(_binary 'tdM\JQn\','wp-content/plugins/jetpack/_inc/genericons/genericons/rtl/genericons-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y+`ɏ#YgIK\',_binary '\J\4xރ\MA\\\\"+','',0,'?'),(_binary 'd\|1[\]tFU','wp-content/plugins/jetpack/_inc/genericons/genericons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\\NiJf\\\"Ԛ',_binary ':ӍL0VH\5\\'~\0\5	GO\\\\\\','',0,'?'),(_binary '\\&\Y\Z?\','wp-content/plugins/jetpack/_inc/genericons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?mtLa\e\\1',_binary 'R%\Wfn\4\4\F;jF\ϝ>\','',0,'?'),(_binary '28\p7fu\','wp-content/plugins/jetpack/_inc/header.php',0,_binary '\\/J_\(iX\KC',_binary '\\/J_\(iX\KC',_binary 'vvS0ĳPi\`[YYeWlӜ[','',0,'?'),(_binary ':\AW\z\l.\گ','wp-content/plugins/jetpack/_inc/idc-notice.js',0,_binary '\YY?;i\h\`',_binary '\YY?;i\h\`',_binary '\0|\&\#WP)\F\\','',0,'?'),(_binary '\x\8=\IVyf','wp-content/plugins/jetpack/_inc/jetpack-admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9\\\\* {i',_binary '|~:XA\\]KA1B\\\\h	-\0Ug','',0,'?'),(_binary '\H\'~]ڽ5 ','wp-content/plugins/jetpack/_inc/jetpack-connection-banner.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\\\КI\hk',_binary '~#e	\䁍Z\\GC6\[ʙbN5%\','',0,'?'),(_binary '\\\Z\kptk\\','wp-content/plugins/jetpack/_inc/jetpack-deactivate-dialog.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J\"50^\',_binary 'O-qͲg\\\1eMz^^yO^\g\$','',0,'?'),(_binary '\^$4@gK1f','wp-content/plugins/jetpack/_inc/jetpack-jitm.js',0,_binary 'Ԕ\.\\{Zژd\H',_binary 'Ԕ\.\\{Zژd\H',_binary '-Aas=\Z\[$\B\\\!\\%\7-o\\','',0,'?'),(_binary '\J#\\n\Z\"܁\\X','wp-content/plugins/jetpack/_inc/jetpack-modules.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Rj\\. ʭ\\[o',_binary '\[M#\<t\sm![g Cܯ#','',0,'?'),(_binary 'xx\\,\\\\2&Wnt','wp-content/plugins/jetpack/_inc/jetpack-modules.models.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_]9-|\l\\U\\\Z',_binary '\	}\y\s\p\ry\\\s\ܯj+L','',0,'?'),(_binary 'ws\\Vj+/c','wp-content/plugins/jetpack/_inc/jetpack-modules.views.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\uC\\s㖍lE',_binary 'fG8,\;F\TU)9jfc^\','',0,'?'),(_binary 'K\\;\(}w','wp-content/plugins/jetpack/_inc/jetpack-recommendations-banner.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\eS\S7ƅaޏ\Ҡ',_binary '2q1*1X\\)\'i+\\\\\I6,V\\\L_','',0,'?'),(_binary '>\j*\"}\Ԉ\\','wp-content/plugins/jetpack/_inc/jetpack-server-sandbox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M\ӹ\"\"\+5]',_binary '7$	G^SLztH\DKwy\Ȍ\F','',0,'?'),(_binary 'JՂ7K\>k\rQ','wp-content/plugins/jetpack/_inc/jetpack-strings.php',0,_binary 'R\\:F=3\C&LR',_binary 'R\\:F=3\C&LR',_binary '\'t\IUd\=⃕:\|R\03dCu\nz','',0,'?'),(_binary 's\?\G#\p','wp-content/plugins/jetpack/_inc/jetpack-wizard-banner.js',0,_binary '\\f_{\nX\\"\ZS\5CF~',_binary '\\f_{\nX\\"\ZS\5CF~',_binary '-\\s\x:-i_+\\\?','',0,'?'),(_binary 'pð\rzjDcHl','wp-content/plugins/jetpack/_inc/jquery.jetpack-resize.js',0,_binary '\>{Q<\'p\r5hh',_binary '\>{Q<\'p\r5hh',_binary 'cy6OYt\*+2\q\f\\V=b\s','',0,'?'),(_binary 'gD,\gg߿EW\','wp-content/plugins/jetpack/_inc/jquery.spin.js',0,_binary 'rw\\\#A',_binary 'rw\\\#A',_binary '3X2;:q\\gؗ\%\RGC붚J\v','',0,'?'),(_binary '\\\%#\#','wp-content/plugins/jetpack/_inc/lib/admin-pages/class-jetpack-about-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0M\B;\Z͖UU\',_binary '[\렁\"\\G\9\.\jGK,/\','',0,'?'),(_binary '\[\\Ũٓ','wp-content/plugins/jetpack/_inc/lib/admin-pages/class-jetpack-redux-state-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\CB^[A\'\l\\',_binary 'q\ɇk/̤\ E\r\]H-h7','',0,'?'),(_binary 'Z9\\\\O\ݘ\','wp-content/plugins/jetpack/_inc/lib/admin-pages/class-jetpack-search-dashboard-page.php',0,_binary '.\X\b냉)G',_binary '.\X\b냉)G',_binary '\\0i\0kz;e\52_\c%C\\\v-Q','',0,'?'),(_binary 'sxr\~ r\','wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-admin-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X$;?\0\#',_binary 'XS\\\;\{˨ĄPg;V\"\\Uw','',0,'?'),(_binary '\G\^ ܆\\\\Z','wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-landing-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I#\\\\"*\',_binary '^r\fP\\G`\\z:r\M\\g2\\','',0,'?'),(_binary '\V;.\n6ɩ','wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';CV(\ao\g',_binary 'B\N\\u\ߗ-ٰJ$A͖D\','',0,'?'),(_binary '\\\:cO֫O\','wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-settings-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(n`)\rtDP\}L',_binary 'u%.mQ\<\	D?m\r6\nh\mWRB','',0,'?'),(_binary '\\\\etvWء','wp-content/plugins/jetpack/_inc/lib/class-jetpack-currencies.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6e\^{\\\I',_binary '~)&4DRA\\'Mx\\\f\\u\','',0,'?'),(_binary '3!y\ْRq','wp-content/plugins/jetpack/_inc/lib/class-jetpack-instagram-gallery-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cAk\o\\\\f\',_binary '\M\\\r琣R=u\\6\)~\-','',0,'?'),(_binary ' W7\C\{w','wp-content/plugins/jetpack/_inc/lib/class-jetpack-mapbox-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\[\ \W,rm\ǀ',_binary '{AN\/Hf\0=S,\Ce2!c\\\O\\','',0,'?'),(_binary 'jb\rt\U.\Q2\Lt','wp-content/plugins/jetpack/_inc/lib/class-jetpack-podcast-feed-locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mSz\\A[Fh16',_binary '\PU\lR\&	5p\)5j4G\Gx','',0,'?'),(_binary '\"\\,yE\n','wp-content/plugins/jetpack/_inc/lib/class-jetpack-podcast-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@3Eʝ\쿯\Y\{',_binary 'fm|&H\.I\޾L\\6̋?\W6','',0,'?'),(_binary '\Ig?b]\n\q','wp-content/plugins/jetpack/_inc/lib/class-jetpack-recommendations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%x\\e\6\5>\',_binary '\\P	!u\\^SJ\\\ԢI','',0,'?'),(_binary '\"\2Q\\$\\A\','wp-content/plugins/jetpack/_inc/lib/class-jetpack-tweetstorm-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\02вf\\\\%\/',_binary '\n~\0H\\HghZs\0	\4g.\}','',0,'?'),(_binary 'B3 \\t3\(&\\b%','wp-content/plugins/jetpack/_inc/lib/class-jetpack-wizard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɒ|\'_\\C)S',_binary '9\\®\\8]\{zRz	/ \4z','',0,'?'),(_binary '\7\\nnu:K\','wp-content/plugins/jetpack/_inc/lib/class.color.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q<  Q4\h8',_binary '\2]oc\%θ\Zu\əI\/<iy{','',0,'?'),(_binary 'hϩ\N\\D\V+	','wp-content/plugins/jetpack/_inc/lib/class.core-rest-api-endpoints.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K\j\\Q\r',_binary '\\\I~\=mXH*t\\q\Q\B,Ւ(H_g','',0,'?'),(_binary '\R:\Jｑ{\','wp-content/plugins/jetpack/_inc/lib/class.jetpack-automatic-install-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\(JN\\-	p',_binary '̧\sfK9~\wU\\o\5)<:ڷ','',0,'?'),(_binary 'Zˏ*,gT\|TEN','wp-content/plugins/jetpack/_inc/lib/class.jetpack-iframe-embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4]iMa\e9',_binary 'PVQϯ\[S\\BB]nԱ\\','',0,'?'),(_binary '>\d\\BB\Q>\=','wp-content/plugins/jetpack/_inc/lib/class.jetpack-keyring-service-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\z%\\\rZǱ~',_binary 'ծ\\rlR\\_Ey3V\w\lp?$<\"','',0,'?'),(_binary 'ʂ(\P@','wp-content/plugins/jetpack/_inc/lib/class.jetpack-password-checker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\\۔\rj\ZX+n',_binary '\\+kۑ,\F4\\`b/\43\\0z\\','',0,'?'),(_binary '\0b؏\n9\-+\','wp-content/plugins/jetpack/_inc/lib/class.jetpack-photon-image-sizes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y3+?\:K\'',_binary 'U-~hPRs\UŊ%@S;Ɠ\'1\2','',0,'?'),(_binary '\0caޓ@E*/H̜','wp-content/plugins/jetpack/_inc/lib/class.jetpack-photon-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\k#-S.\\_\',_binary 'i6\;\\/%\\B\\\}o','',0,'?'),(_binary '\\(\\}v\\'\99','wp-content/plugins/jetpack/_inc/lib/class.jetpack-search-performance-logger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$\HH3ԏ%X',_binary '.X\t\\\럝SR!\w\\','',0,'?'),(_binary ':[\yp\8','wp-content/plugins/jetpack/_inc/lib/class.media-extractor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f$\\\ʵE\@\\$',_binary '\\\*&ONو\\u\"Ζ@0ʞ֔\\\','',0,'?'),(_binary 'rY=ak\nZWSr','wp-content/plugins/jetpack/_inc/lib/class.media-summary.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\|X\\=ŕ\\{',_binary 'Q ̗4\a󶆟\\evĴo%\ͮ\','',0,'?'),(_binary '9ngv\\0\*ErX','wp-content/plugins/jetpack/_inc/lib/class.media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\x\n\'\n\6\',_binary '))L\n\	ri|\\;H[i\\x\B','',0,'?'),(_binary '՚\\(\\\\*K\','wp-content/plugins/jetpack/_inc/lib/components.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u硨ݵ\'.	',_binary 'V\Fۂ\nJ?n3:Z(:Xo{dd˸','',0,'?'),(_binary 'z\!\n\ቾD*kz/','wp-content/plugins/jetpack/_inc/lib/core-api/class-wpcom-rest-field-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\b\TƷ?X<',_binary '8\ْ\C\>\j\\.v3ϥB8me9','',0,'?'),(_binary '[\rSt\r!N9','wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-module-endpoints.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\҉\Yf}+\\N',_binary '\A=\B\\BP%Ew@ݓ\\.?\','',0,'?'),(_binary 'e9\Uf\Z\\Vt\','wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-site-endpoints.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HK@x\\0',_binary '_kIY$XB/j\\B\t\珚\','',0,'?'),(_binary '\r\,`j`7I	n\"Y','wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-widgets-endpoints.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\06t<X*U',_binary 'k0݊:\\m\6\P/\s','',0,'?'),(_binary 'Q\n-\d\\a\\[','wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-xmlrpc-consumer-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\xWB\\kF\Z',_binary '諮Cr[\\Ѓ@B\\M\㗭9','',0,'?'),(_binary '|x\\%\\\`{y','wp-content/plugins/jetpack/_inc/lib/core-api/load-wpcom-endpoints.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<K5}B\\.\6!V',_binary 'h\fVw\\'#F\Dzw\!o1.MRB','',0,'?'),(_binary '#8Se\\0\\"\\','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/business-hours.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\L\?\ULUB',_binary 'c8J%Er3`\*%0\\'\0\|qȥ\0\','',0,'?'),(_binary 'WKUNxu,v,̫','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-admin-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\S\iS\\խ<',_binary ' V4\0Y@([\U4&\Z-\\\j\\bC`p\','',0,'?'),(_binary 'o\, \E\TX','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-external-media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	zN\',_binary 'ߟA\m\502\AS\4󱋬\\]\','',0,'?'),(_binary 'w\\\\\rђ\\Z','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-instagram-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\EXPF\:}&Վ4',_binary '\Hm\<\rt\<\0tUעk,\#Ԗ','',0,'?'),(_binary '³n|>UP\','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-mailchimp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CVŋ\o?K',_binary 'yasa)izt\pQ\]\vU{+`\','',0,'?'),(_binary 'g\h\Z\Y\u݉ǀC\\','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-podcast-player.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<!.ϝ\[a	',_binary '\0\;\\  ?\\[ϬA\e`R','',0,'?'),(_binary '\\k\"\\	}\0\$','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-publicize-share-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rJQ\\I}$',_binary 'ў\\\C_\O|sz6PƁ,\\o\%\$\','',0,'?'),(_binary '?\\\\+\\?&','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-resolve-redirect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\'5\Tfv|RP',_binary '\\0\"\`\\ \pIgJRU5mV|{WH','',0,'?'),(_binary '	Xvm\B\n\W5V','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A\\\\\aU',_binary 'y|\l.OZsM\z w\۟wE','',0,'?'),(_binary '<\h6yb0','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-transient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r0/Z\\0\a\',_binary 'W9ԃ\1<E\\#\'G+\\','',0,'?'),(_binary '\C\iبc\\','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-tweetstorm-gather.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '֞,oJd~ȉr',_binary 'Z7ơ\*1R\<,6U\\\\CIc\','',0,'?'),(_binary '޺_\wӦRn','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-tweetstorm-parse.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7³r9d\\',_binary 'ą\\\Ge\\w\0x\S`\\tjK\\K^','',0,'?'),(_binary '{\:\5\ܖܱL\`','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-videopress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\5ō\\ZTMh',_binary '/tq&\\.@?\H\P\p\ҍ0\;','',0,'?'),(_binary '<\\\{	\,','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/gutenberg-available-extensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';Y[TCE\ZO\',_binary '\n#$x(\\agrWr\\E~*@ݙjy','',0,'?'),(_binary '4\N\-rΘHo=','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/hello.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'قl~\噊d',_binary 'Vⅎ\W\\Z EPa}!eSc߮','',0,'?'),(_binary 'Km\\L>\\\-ɡ','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/memberships.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n2\.?u]zl,',_binary '\W\\o\mifVB\kb\C٥y','',0,'?'),(_binary 'WFY\\\7F\zX\','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/publicize-connection-test-results.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\M;%\Y',_binary '\G\"bK]\)Zf+tK\EB\:H\\\@r','',0,'?'),(_binary ';\ \\\*$\\','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/publicize-connections.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9q\Ց\\\\',_binary 'VP\n\n?	+Nz\\\\ڮ\D;','',0,'?'),(_binary '2y5v\b\\oL','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/publicize-services.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\6C\0yxyk',_binary '\\5[/Z9cE6\e\>l','',0,'?'),(_binary '\\\/j','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/service-api-keys.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\꼃\UaYҳ_',_binary ')Zx\SiȎ\8t#<U\\J5מC\Nc','',0,'?'),(_binary '\,$/ȁ<@UMr','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/sites-posts-featured-media-url.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}s[a9\|\Fg',_binary '\O+7@q\aϏ3҃]/ \`\`qdam','',0,'?'),(_binary '\ZR\W\\\\\X\u','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/subscribers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0xB\Z\0zQE\c',_binary 'K(\\\dƍ\x҅\4{xUg\S','',0,'?'),(_binary 'p@svj\Q\\','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-fields/attachment-fields-videopress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#͔&(\\N\\X',_binary 'r\t\\\\Wp|ߊv\KQvOՒ\\.','',0,'?'),(_binary '\_ʌ=Ū\\<\\\\','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-fields/class-wpcom-rest-api-v2-attachment-videopress-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ж\t\G\\'035',_binary '=H\r\n\NS.Q\tGYjr\','',0,'?'),(_binary '\\c\qQC\h\\','wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-fields/post-fields-publicize-connections.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\5\5wYFs',_binary 'VQ\Ο\lƪ59S\bV\L \>','',0,'?'),(_binary 'i\	\w\ \on','wp-content/plugins/jetpack/_inc/lib/debugger/0-load.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\1Z#,\\E\"\',_binary '@\aI\[8+B\8}\\vg[\','',0,'?'),(_binary '.DF	bz(\\\','wp-content/plugins/jetpack/_inc/lib/debugger/class-jetpack-cxn-test-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']d\&\Y\<o\\!',_binary '{\ŞPU\:\\4\(\0>p\\\&s','',0,'?'),(_binary '\\\\\'\\\\\7\\0d-\','wp-content/plugins/jetpack/_inc/lib/debugger/class-jetpack-cxn-tests.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm<K\5>\\\\ \',_binary 'S~!;dpD\7U,\|.\H\(hiA\r\','',0,'?'),(_binary 'avB6\O:W','wp-content/plugins/jetpack/_inc/lib/debugger/class-jetpack-debug-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+;SlM]M5\',_binary 'aj7\\\5@|,y\R1\A\;o\#\n','',0,'?'),(_binary '\? \\j','wp-content/plugins/jetpack/_inc/lib/debugger/class-jetpack-debugger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^u\Ca?\ZP\v',_binary 'G\'Q\sz\\"	\^W\r6\\'My\','',0,'?'),(_binary '\r_\k\=\(XDҭ','wp-content/plugins/jetpack/_inc/lib/debugger/debug-functions-for-php53.php',0,_binary 'vz\B\8B\',_binary 'vz\B\8B\',_binary 'mb({N{\9\n]6\\*.','',0,'?'),(_binary '	5\{~w\\\ \\','wp-content/plugins/jetpack/_inc/lib/debugger/debug-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\;:-ԃ`t\'\\',_binary '\\%;֛7U)\\6\rX)\Mh`p?z','',0,'?'),(_binary 'u\O7\MV','wp-content/plugins/jetpack/_inc/lib/debugger/jetpack-debugger-site-health.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\\NP$`\}X',_binary '\7O|\\#j\0{[!I%`q2#T%l\E\M','',0,'?'),(_binary '.7\kQ[@\\.','wp-content/plugins/jetpack/_inc/lib/debugger/jetpack-debugger-site-health.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٰc3d@\[T',_binary '\ܯ{\[EX\1\\ph7\(\w`\U7N','',0,'?'),(_binary 'rp^j\\9,)$H','wp-content/plugins/jetpack/_inc/lib/debugger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%]3zG\g\'T',_binary '=*4=m\t\\k|nUI\ɟ\܁}\y','',0,'?'),(_binary '#\6;	Nf\\','wp-content/plugins/jetpack/_inc/lib/functions.wp-notify.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\h/zg1\Қ\',_binary ']\n\E\\T\AbF\d\U\}CDBD','',0,'?'),(_binary '\U+\0e-\:4yK\l|\','wp-content/plugins/jetpack/_inc/lib/icalendar-reader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ٴ\TDoPS&\\',_binary '\P[;F\\-M0\\^\Uyfdv','',0,'?'),(_binary '?jV\-{\\\\\','wp-content/plugins/jetpack/_inc/lib/jetpack-wpes-query-builder/jetpack-wpes-query-builder.php',0,_binary 'a\~o:Qhq\vnq',_binary 'a\~o:Qhq\vnq',_binary 'F\O\\\OXv\\\\\\','',0,'?'),(_binary '.y;\^sorLawb','wp-content/plugins/jetpack/_inc/lib/jetpack-wpes-query-builder/jetpack-wpes-query-parser.php',0,_binary '\uxF\sIJ\',_binary '\uxF\sIJ\',_binary 'n\3vu8V~h\߁\?QzwM\\R\b\','',0,'?'),(_binary ']n\\"C=ߵ\v','wp-content/plugins/jetpack/_inc/lib/markdown/0-load.php',0,_binary '\(ZKà\\df',_binary '\(ZKà\\df',_binary '\r{\ǚƬMԆ#n^U\8ybզD\n/	','',0,'?'),(_binary '\6(T@V3','wp-content/plugins/jetpack/_inc/lib/markdown/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5d`w\\U\\\\\',_binary '&\\\Y\h\u\A\n؝v','',0,'?'),(_binary '`\K׋ZڅT','wp-content/plugins/jetpack/_inc/lib/markdown/extra.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iA2p\\}|(\}',_binary '~zG\\!;RR\CT\U^Ziw&e\','',0,'?'),(_binary '\B%\A0\n\\e\','wp-content/plugins/jetpack/_inc/lib/markdown/gfm.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vgV\lTE@\',_binary 'sE\O\Kn\)\R>R\\\B7\x\','',0,'?'),(_binary ',ڒډs\2QH!','wp-content/plugins/jetpack/_inc/lib/markdown.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mNf`t\v%\\',_binary '\KP\\"y6Yߴ*\\_iЧ0%s\Rݍ\-','',0,'?'),(_binary '\^1^M/\\w,K','wp-content/plugins/jetpack/_inc/lib/plans.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wmx\\\%\^~\',_binary '\%\"Q\\I\\p\\H%QM޾','',0,'?'),(_binary 'L\G3	\\\','wp-content/plugins/jetpack/_inc/lib/plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\\O\\Qk\*',_binary 'Ʊ9Y\-l \u`YQ3\Q7S]\','',0,'?'),(_binary 'Q\݅\\'!U','wp-content/plugins/jetpack/_inc/lib/tonesque.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݣ\'U\Q{.a5\ ',_binary 'I9,\l <sv\\^ny\HR\Tʲ\','',0,'?'),(_binary ':YX2[\;\\','wp-content/plugins/jetpack/_inc/lib/tracks/tracks-ajax.js',0,_binary '_y\\Y\Y\\0A\G',_binary '_y\\Y\Y\\0A\G',_binary '\\j81=d\\Zў5m\rJ','',0,'?'),(_binary 'CV\AQp^M;\b\r','wp-content/plugins/jetpack/_inc/lib/tracks/tracks-callables.js',0,_binary '\GP!lIa՝q\',_binary '\GP!lIa՝q\',_binary '\ADJEC5K7x2T\4\;\','',0,'?'),(_binary 'V^Aj怬\6`\0\','wp-content/plugins/jetpack/_inc/lib/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xa:c\\t\i',_binary 'R\/F\\,/\\"\B஘8#Se7\zB\','',0,'?'),(_binary 'v<R\,|`','wp-content/plugins/jetpack/_inc/polldaddy-shortcode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\TX-\,kL ',_binary '橃\R~\\@\\4\%!0򞲘\\pt','',0,'?'),(_binary '\Z=G\$U\','wp-content/plugins/jetpack/_inc/postmessage.js',0,_binary '\P\{\_U?K',_binary '\P\{\_U?K',_binary '\\n沆*\Lhԝ\\l\$','',0,'?'),(_binary 'q5H$O','wp-content/plugins/jetpack/_inc/social-logos/social-logos.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\邎ly1\\y\',_binary '7=3wB\j`Q\9\I5\\\7!f\','',0,'?'),(_binary 'MJ+1*u*\\','wp-content/plugins/jetpack/_inc/social-logos/social-logos.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rc\&[fFR\',_binary '\D\\'\6hJ\Y\N5\\3\U','',0,'?'),(_binary '`\0E2z5]m?','wp-content/plugins/jetpack/_inc/social-logos/social-logos.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\\.\\:ʺ/',_binary ':Z8~\)\HJ?\>\X\lq','',0,'?'),(_binary '\\=\0\@;	\k','wp-content/plugins/jetpack/_inc/social-logos/social-logos.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\|F{h\\\8;',_binary 'H$a<8\h!.JRyueJ\\\','',0,'?'),(_binary '\\0\-\G\)\f','wp-content/plugins/jetpack/_inc/social-logos/social-logos.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wZ3\I\{\v5',_binary '&Ε찉\\\x\N\~^ϧ­AM','',0,'?'),(_binary '~P\z\-;','wp-content/plugins/jetpack/_inc/social-logos/social-logos.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\\6V)6}\`\z',_binary '\UZ	\+\\\#;0+J\\6\M\;X\','',0,'?'),(_binary '\\\oI;U0EQg?g','wp-content/plugins/jetpack/_inc/social-logos/social-logos.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7҂\$u\c<e\',_binary '\9 !iu\\'\l\)\i\\\q\rժT','',0,'?'),(_binary 'N|<.P\a-\`\','wp-content/plugins/jetpack/_inc/social-logos.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\\0XZYs\_d8',_binary '\n\\Xx\\=\#&\0Hs\'Ӽw','',0,'?'),(_binary '\Lgb\Z\','wp-content/plugins/jetpack/_inc/spin.js',0,_binary '\$&\5,ī;\K',_binary '\$&\5,ī;\K',_binary 'ъ\vSS**<\\a\fF\dUij','',0,'?'),(_binary '_JlzLtB	','wp-content/plugins/jetpack/_inc/twitter-timeline.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\<\΋_RE!af',_binary 'O\\\a\\U\uJ\\<I\Z\U!~','',0,'?'),(_binary 'i@փ!-\Q\>Z<','wp-content/plugins/jetpack/bin/build-asset-cdn-json.php',0,_binary 'a\olL\=v\EǙ<',_binary 'a\olL\=v\EǙ<',_binary 'J\ֳ˳\nKW\{F\\\`ʍ','',0,'?'),(_binary '\ԁC\]\\','wp-content/plugins/jetpack/class-jetpack-connection-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\\xG\Qf\g',_binary 'fEQ	g\	\zUNc\0\E=','',0,'?'),(_binary '\@r\\"a&LD','wp-content/plugins/jetpack/class-jetpack-pre-connection-jitms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6z\W+KyM\4]G',_binary '\?0\Zy\:^j>\GKܣs><','',0,'?'),(_binary 'xj҆\?\{\T','wp-content/plugins/jetpack/class-jetpack-recommendations-banner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@E\`S,\}O\Z\\',_binary '\0L\\\\nQs4\ҫ\P7V\\\','',0,'?'),(_binary '<\\\\x/L','wp-content/plugins/jetpack/class-jetpack-stats-dashboard-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!{j\YT\ݒ',_binary '\6\r5f\v\i\"X\\\JJ\','',0,'?'),(_binary 'yE\Tj\ZK','wp-content/plugins/jetpack/class-jetpack-wizard-banner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɒ|\'_\\C)S',_binary '9\\®\\8]\{zRz	/ \4z','',0,'?'),(_binary '\\\\<\Y4ov','wp-content/plugins/jetpack/class-jetpack-xmlrpc-methods.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\\nku2<',_binary 'q\4O[Oa*(\8fªU.\J_6\\CP','',0,'?'),(_binary 'In\\r;]\_n9','wp-content/plugins/jetpack/class.frame-nonce-preview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',23\Gc\',_binary '\訮pB)\z\-4Bh-\X\<','',0,'?'),(_binary '\pȩ\H\&cwX','wp-content/plugins/jetpack/class.jetpack-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QܤLŭ#ά>',_binary 'K{\)\Jx~(\fpX\6ETA\','',0,'?'),(_binary '\\h^q\\\q>-','wp-content/plugins/jetpack/class.jetpack-affiliate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|-X+vE\\(',_binary '\\҉	T\F#\q\04\}\\<\\','',0,'?'),(_binary '\ʵ\qw>\\','wp-content/plugins/jetpack/class.jetpack-autoupdate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\\xJ\0ɐ',_binary 'C\mc>\(\I\$\0\N\!\','',0,'?'),(_binary 'm[>L:Ti\0\0','wp-content/plugins/jetpack/class.jetpack-bbpress-json-api-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'vHåp6C\'\\',_binary '\9il\w3R0\\.\%!flZaw\','',0,'?'),(_binary '\ـEx\b&nU\\\','wp-content/plugins/jetpack/class.jetpack-bbpress-json-api.compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\K\ZR\k[sF',_binary '.}Sk(V\X(ΪWo \.\\1[\y\','',0,'?'),(_binary '\\Ma\D^\#\\&<','wp-content/plugins/jetpack/class.jetpack-cli.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '۝\rIf\r\Z\\',_binary '9\\b(1\r+jo{Ϥd0\.\ؿ\\*','',0,'?'),(_binary 'l)\\\\\y 1T]','wp-content/plugins/jetpack/class.jetpack-client-server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fZ||U\\Z\-\\',_binary 'JQ\\\ny&\Gow\8\Q BqX\Q@\^','',0,'?'),(_binary '`?9\Z\G\V','wp-content/plugins/jetpack/class.jetpack-connection-banner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ܡ\mqJ',_binary 'o\\>\t>v\0O}%O͚Z\\\','',0,'?'),(_binary 'xʈ\Z@)ѫ\wb2\n','wp-content/plugins/jetpack/class.jetpack-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z!w.\\T\y\Z#',_binary ':x\~P8\ѝ,\"5@bt.\\0$','',0,'?'),(_binary '\/\\\-W@','wp-content/plugins/jetpack/class.jetpack-debugger.php',0,_binary '@\}.\P',_binary '@\}.\P',_binary '\P\9Sd[A%wf=l','',0,'?'),(_binary '\8u`\zP}*\','wp-content/plugins/jetpack/class.jetpack-error.php',0,_binary '+\?\6&\&\\{kI',_binary '+\?\6&\&\\{kI',_binary '\	\A;\c#T-˻ajp\N\\dA','',0,'?'),(_binary 'xȀN;;H#\$\|','wp-content/plugins/jetpack/class.jetpack-gutenberg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ه6Kt<EZ\s',_binary '{9_0{a\ǢWӉ~i\*YbFS','',0,'?'),(_binary '\x{̮\̐o','wp-content/plugins/jetpack/class.jetpack-heartbeat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\SXLD\\\\',_binary '\n\Ō\\ܪld[A\\\\\בcZi','',0,'?'),(_binary '\\BGۍVFL\\[','wp-content/plugins/jetpack/class.jetpack-idc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8K>\\o\rp\H',_binary '*p.Gn3z\Y\\8\\\,ɁG<Z','',0,'?'),(_binary 's\zg{[=\nZ\','wp-content/plugins/jetpack/class.jetpack-ixr-client.php',0,_binary 'k\3v\nM4',_binary 'k\3v\nM4',_binary '\O-|5M.!\j`.aj\vt','',0,'?'),(_binary '\'octh9\N \\?C','wp-content/plugins/jetpack/class.jetpack-modules-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\0\}o\\\r',_binary 'rR?N.\i\\[b\Ȱ̤\Xc\k','',0,'?'),(_binary 'R\"9\\/\\Z3','wp-content/plugins/jetpack/class.jetpack-network-sites-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\rL\\I\P\*',_binary 'j\踋\ٛ\O&Ԧ\!33d','',0,'?'),(_binary '\,j*\MM\Pp','wp-content/plugins/jetpack/class.jetpack-network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'noҰՃl\ikM\',_binary '-àv\ \ry\%\0g\rh\,\a','',0,'?'),(_binary '\9:/\3\3]\H\','wp-content/plugins/jetpack/class.jetpack-plan.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QD#F\CjZS',_binary '8	\,(Nh<a\_Yifp\jo~','',0,'?'),(_binary '\\87(-äzR\','wp-content/plugins/jetpack/class.jetpack-post-images.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&%\8\a]N\\J\',_binary '\1mˮSLU\\\\00(?\NDF\}','',0,'?'),(_binary '@d\x|\\p$\\','wp-content/plugins/jetpack/class.jetpack-twitter-cards.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\؞I\\w\',_binary ' ]o]\\F\Xe\y\\ڴ','',0,'?'),(_binary '=-!-Ӫ.\D֫\','wp-content/plugins/jetpack/class.jetpack-user-agent.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\JgSCh\SkkQ',_binary ':\2_ϵ\*iū\\!9^|E\cz','',0,'?'),(_binary '\Vx%FX\r\\','wp-content/plugins/jetpack/class.jetpack-xmlrpc-server.php',0,_binary '\c\\{\m1',_binary '\c\\{\m1',_binary '(4;\;>\\:ЮB\ߜS','',0,'?'),(_binary '\onSkM}\\','wp-content/plugins/jetpack/class.jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zݢ)\tPki:\',_binary '\\':b\\Ƿu\'O}\`7/V\\nB{','',0,'?'),(_binary '\\Tf!ꎇ$','wp-content/plugins/jetpack/class.json-api-endpoints.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	E&\k\Zz\',_binary '\5.\\0p\:\2\QT\\R\m#c\}\','',0,'?'),(_binary '\\\$@;Ѡ','wp-content/plugins/jetpack/class.json-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ǵv\IZy',_binary 'mS﬚nCB\ƭ)\u\v h\U\lwl','',0,'?'),(_binary 'VDgi\A̐g','wp-content/plugins/jetpack/class.photon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\Dbʂ\0\ 9\r\',_binary '\\\\J\\F\%\V>*ϐD\\rCʪ[','',0,'?'),(_binary 'kf+c40|\\\\\\Z','wp-content/plugins/jetpack/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_u> \\I7J\\',_binary '4(Zh\c?G1P&z\03HM>Ma0b|\Q','',0,'?'),(_binary 'b\\.\[\8W8','wp-content/plugins/jetpack/css/cleanslate-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G\&\d\A\֟O',_binary '>]\"\\JWY[a+sEc4,l?$','',0,'?'),(_binary 'qb|[\ΕWE\0\','wp-content/plugins/jetpack/css/cleanslate-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`c-v\Cz\"ʯ\\',_binary '\\ S~%{y|$k\\\6\k\/ެ\','',0,'?'),(_binary '\,l\ŵt9','wp-content/plugins/jetpack/css/cleanslate.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڇ\㽄H\{%N*',_binary '[\q\\\<]p\\0z+Nf	̇\G;\','',0,'?'),(_binary '*xo\q\\\r\','wp-content/plugins/jetpack/css/cleanslate.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\y CiRIns',_binary '\HRlҫ\\$\\{*ȉ֔F\^\1\Z','',0,'?'),(_binary '$Z\E7\\\i*','wp-content/plugins/jetpack/css/dashboard-widget-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\A`#F\\Zp\@Yl',_binary 'JH\\6>6\\H\\\q\','',0,'?'),(_binary ' \\!VЊ97\Yv','wp-content/plugins/jetpack/css/dashboard-widget-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mh,˴w\<\0yH#',_binary '\\оc\l\B#\\n)\rP+Q\\a\*A_','',0,'?'),(_binary '#4r0\ܹ\A3','wp-content/plugins/jetpack/css/dashboard-widget.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Р#õJ\93\',_binary 'V):Hʱg\BίӒ\^\\V\\nc','',0,'?'),(_binary '\b\\U\+ld.','wp-content/plugins/jetpack/css/dashboard-widget.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\e\&+L15k\0,',_binary '\\X1\d6Aֱ}\1	\"z6Y','',0,'?'),(_binary '\\\\'\0;0$p\ݨ','wp-content/plugins/jetpack/css/jetpack-admin-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c7\*L',_binary '6raq\8\N\fO;]mW\QK.>','',0,'?'),(_binary '\|XKzn>S','wp-content/plugins/jetpack/css/jetpack-admin-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\lʱe\\ں_}\',_binary '4wm\'T>u\\1\x\!h=>\Z?','',0,'?'),(_binary 'TN\c\0=n','wp-content/plugins/jetpack/css/jetpack-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sNe\s\\߇(',_binary 'j~\\(<\KuWeq/{]y\&M w*','',0,'?'),(_binary 'H5\\^/\Qe\\K','wp-content/plugins/jetpack/css/jetpack-admin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6B,K?I',_binary 'qC9t9\ھۡ;O\RqE\','',0,'?'),(_binary 'M$\r\22x\8','wp-content/plugins/jetpack/css/jetpack-banners-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\\\B&º\',_binary 'G%c_A9\7-͝|V\ѕ\#g','',0,'?'),(_binary 'M\	@\/\-_}','wp-content/plugins/jetpack/css/jetpack-banners-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӽ\\\\G\"N\',_binary '\\Xxu\D.Y\\\\\L\}\\J','',0,'?'),(_binary '\n*	ѹV!y7\Yxh\','wp-content/plugins/jetpack/css/jetpack-banners.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\'R\96',_binary 'Ylk\\$\\h\n(\\oj\E','',0,'?'),(_binary '\3jk\\H\\HB','wp-content/plugins/jetpack/css/jetpack-banners.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w,H\;0խ.6%',_binary 'MVL厺A\{:I:\B!a\\!','',0,'?'),(_binary '8\\*^\.\','wp-content/plugins/jetpack/css/jetpack-connect-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')ZYD\h9j3E',_binary 'W\6\xlM	/0rv[_9o\\e','',0,'?'),(_binary '\\\\BT53q','wp-content/plugins/jetpack/css/jetpack-connect-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aet\0M,~\e',_binary 'ܐN\D\9O\L\\\ <ط\\	','',0,'?'),(_binary '\hebı#.s','wp-content/plugins/jetpack/css/jetpack-connect.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@\Ɖ¨d\',_binary '#|tY\pݮ*3Y\\\\zT퀬C\\\n','',0,'?'),(_binary ')ٍЍFXf\%','wp-content/plugins/jetpack/css/jetpack-connect.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aet\0M,~\e',_binary 'ܐN\D\9O\L\\\ <ط\\	','',0,'?'),(_binary 'o\\s-l\r\','wp-content/plugins/jetpack/css/jetpack-deactivate-dialog-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?&Pkau\\',_binary 'D\!M}R\*\\CE\x:\.]\aR \v','',0,'?'),(_binary 'Jm\.q&\*','wp-content/plugins/jetpack/css/jetpack-deactivate-dialog-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\^1\a\0\z',_binary '4WX\\\\rɿ\݀\da\nY֛\_\','',0,'?'),(_binary '>?`\+i','wp-content/plugins/jetpack/css/jetpack-deactivate-dialog.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e}lQ\\'\;3?',_binary '\>:v$\\ۛ\tk<\\\oZ)\\c(','',0,'?'),(_binary 'o|[R\^?\!\nw','wp-content/plugins/jetpack/css/jetpack-deactivate-dialog.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j^`VbcgĠP',_binary 'A2=39\0t\TnB0\','',0,'?'),(_binary '\\n=*=#\rBL','wp-content/plugins/jetpack/css/jetpack-icons-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\RK_/Mʑ`\'G',_binary '!v\\\u\Z\]LZFR\0א=ϖ\5\+x̺','',0,'?'),(_binary 'UvBPB\\2\','wp-content/plugins/jetpack/css/jetpack-icons-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f\,F655Y\YX',_binary '\]4gI\ \\\\\\\T_H\\'Z6ya','',0,'?'),(_binary '~YzB9\\U\\3','wp-content/plugins/jetpack/css/jetpack-icons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XPD89\D[Q<',_binary 'r\<aGf_lW\H%`\"A{l\','',0,'?'),(_binary 'W\b\s\'\f\\','wp-content/plugins/jetpack/css/jetpack-icons.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f\,F655Y\YX',_binary '\]4gI\ \\\\\\\T_H\\'Z6ya','',0,'?'),(_binary '\\*RL\\OeF','wp-content/plugins/jetpack/css/jetpack-recommendations-banner-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C]	\a\u&\ǔ',_binary '\KZK	dv\\9Ǭ8m]_\M;','',0,'?'),(_binary '\\$\PI\\I\\','wp-content/plugins/jetpack/css/jetpack-recommendations-banner-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v1`\#1r2>',_binary '\\Z[	{=҄\\\\\MyBϋ*)','',0,'?'),(_binary '\06\\nC4U\','wp-content/plugins/jetpack/css/jetpack-recommendations-banner.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rҢ.E\\0PT\_',_binary '\pF~ݓdd?\A-I\1YZ\x\','',0,'?'),(_binary ',\".\S\\1','wp-content/plugins/jetpack/css/jetpack-recommendations-banner.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '֛u5\#\Z<\,',_binary '\\f^$|\\t̌ƚxd\1gý','',0,'?'),(_binary '\3~\n\n\fF\\','wp-content/plugins/jetpack/css/jetpack-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '),AUel',_binary '\V\b\\H\xZ\\I%Q,nZODU','',0,'?'),(_binary '	/-O\ct\','wp-content/plugins/jetpack/css/jetpack.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+XD\<7\\4',_binary '\*ygh\n\9C\{4D\_;[\\"f.','',0,'?'),(_binary 'i@\\rha\ZOh','wp-content/plugins/jetpack/css/wordads-ccpa-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2jk\^ME.?',_binary '\a\\ɓ:\\;Be	r','',0,'?'),(_binary '*v\Oz\0\J\','wp-content/plugins/jetpack/css/wordads-ccpa-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\xboêa\'',_binary '\\RmL\\\ݯ\\o$_\.s\I\\Z','',0,'?'),(_binary '%{T\ZUm]m\ri]','wp-content/plugins/jetpack/css/wordads-ccpa.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\Z5e=_qe{\',_binary '\\s	\lJ;\r4ۺX5\\T=YF\\'*k\','',0,'?'),(_binary ';\Zef\Nd=Z','wp-content/plugins/jetpack/css/wordads-ccpa.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LrqJ\\/u',_binary '?p\#eQ\˻Jc\n%\\v|NBį2I\v\','',0,'?'),(_binary '\\VѸ\V\	\','wp-content/plugins/jetpack/extensions/blocks/amazon/amazon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c(&Dp.t:NO',_binary '}\\ko\]y\\\㗾N\"\\n\','',0,'?'),(_binary '(N\9h~/:zB\n','wp-content/plugins/jetpack/extensions/blocks/anchor-fm/anchor-fm.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	Ȅ-=}\&',_binary '6Y\!\2\'\=\\A;4\r\\\\ŋ\\','',0,'?'),(_binary '\\b\<+&\\\T','wp-content/plugins/jetpack/extensions/blocks/business-hours/business-hours.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\~hL\r	oЀ\',_binary '\\\Hrho}\>}\"&9\5\\Rg','',0,'?'),(_binary '掟\3\t\','wp-content/plugins/jetpack/extensions/blocks/button/button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\IW݀m\4',_binary '\\\4U\no\\\ۦ\E,\m0↙\','',0,'?'),(_binary 'n\1\.uϦ	/\%','wp-content/plugins/jetpack/extensions/blocks/calendly/calendly.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n%B~\\;\Z\\v',_binary 'h@$)\nyXJe䱂y\ѵp\7nͻ%','',0,'?'),(_binary '8\:\5\w?\\n\g\','wp-content/plugins/jetpack/extensions/blocks/contact-info/class-jetpack-contact-info-block.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qܦRCuV\'\\&',_binary 'b\A/\w%\\\\-e\\4T','',0,'?'),(_binary '7qǸ9T\G\07ſ','wp-content/plugins/jetpack/extensions/blocks/contact-info/contact-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\]2kW-\\KS\n',_binary '7TS$!bY0\n\F\]\'\Cڪ','',0,'?'),(_binary 's\#\[O*ն$E','wp-content/plugins/jetpack/extensions/blocks/conversation/conversation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H X!\W\\#K',_binary 'u֢A=,(⁼\4A]\@]\H1@\~','',0,'?'),(_binary '	&H\;}mM×#\y','wp-content/plugins/jetpack/extensions/blocks/dialogue/dialogue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>zES̍\x|61g',_binary ';8G\\!(MĀ\i\\\I','',0,'?'),(_binary 'n4ߎק~\	\,Ƽ*','wp-content/plugins/jetpack/extensions/blocks/donations/donations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z8\\J:\rtL4\',_binary '\\\\38l\hamA\S~|;x}9\','',0,'?'),(_binary 'CJf	=6!\F^^','wp-content/plugins/jetpack/extensions/blocks/eventbrite/eventbrite.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\x˩\\V{\_',_binary '>G^\\\G\0\9\q.PL9}','',0,'?'),(_binary '^b/3⿓h\ܻ','wp-content/plugins/jetpack/extensions/blocks/gif/gif.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\$ G\\r\',_binary 'y\\\\Z!\`\jΆ\\2\2Um2M\Z2\w','',0,'?'),(_binary '8\c|4:r\\','wp-content/plugins/jetpack/extensions/blocks/google-calendar/google-calendar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u\{\tG\',_binary '\ZY\6\ĜZj1\:B\/','',0,'?'),(_binary 'hx	7V\\N\>\Y','wp-content/plugins/jetpack/extensions/blocks/image-compare/image-compare.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ǀg*E:*\',_binary '$\\&\\ \\u\n)7qHN\HtNd','',0,'?'),(_binary 'GU\I!בܴ\\9','wp-content/plugins/jetpack/extensions/blocks/instagram-gallery/instagram-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X-i;\YS\%',_binary '\xi~c\"QC\0!yɵ\\\ʞ1\WG\','',0,'?'),(_binary 'e\\k\PH','wp-content/plugins/jetpack/extensions/blocks/mailchimp/mailchimp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9$T-\\.}C!v',_binary '~\p\m\xZ\9oR\Zb{','',0,'?'),(_binary '\8\Q uĺ','wp-content/plugins/jetpack/extensions/blocks/map/map.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J}\mm\"\',_binary 'VPI25p3\\&W\d\rD\\'\','',0,'?'),(_binary 'Bu_oK\\"\|','wp-content/plugins/jetpack/extensions/blocks/markdown/markdown.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w u~Ż\\"\0',_binary '~Ff[\\\'j\|{t\2KF#SRM\Q\\','',0,'?'),(_binary 'S\0Ќ_t\\5_\\8','wp-content/plugins/jetpack/extensions/blocks/opentable/opentable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KDBpW\WHN\',_binary '\ps-S>2=7\\j\W\&\ez\+\\\','',0,'?'),(_binary 'x\P\)\\\Yp','wp-content/plugins/jetpack/extensions/blocks/pinterest/pinterest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\_ܕa\\\',_binary '.^Us\'`2/e:I=\8\\\\s\\'\','',0,'?'),(_binary 'oz(}{b=\B9\','wp-content/plugins/jetpack/extensions/blocks/podcast-player/podcast-player.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R^	\\Г	',_binary '\˝1n-za\\>b\Ƭ&Q','',0,'?'),(_binary '-\u`ŚK\','wp-content/plugins/jetpack/extensions/blocks/podcast-player/templates/playlist-track.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'ų\,\'\,1\ڤ\#',_binary '\0P,\Q\\7NxKac@#v^d\fe~','',0,'?'),(_binary '-G)W\\\,\?E/','wp-content/plugins/jetpack/extensions/blocks/podcast-player/templates/podcast-header-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\9\Y$C',_binary 'hv\0\c\P\\+l<swF;Kj\\r','',0,'?'),(_binary '\\$\\\<2#\\','wp-content/plugins/jetpack/extensions/blocks/podcast-player/templates/podcast-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1KLҩo?\\/\',_binary '~1$\\o؝\h4\\\t\o\5c','',0,'?'),(_binary '\}/X\\1\Z','wp-content/plugins/jetpack/extensions/blocks/podcast-player/templates/podcast-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F+זi\\\r\eT',_binary 'Yc\\9\0/鈗>\]k\0\\G\\#	\','',0,'?'),(_binary 'xdb\-\La\8N','wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/access-check.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\cD(\@_',_binary '7\kHAuYb.\UdI\-/z\\y','',0,'?'),(_binary '._~\\\\A\(P}BKT','wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/legacy-buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '僼B\P\\t\ni',_binary 'b}}˘P\wl\=flx,\\n\qgW','',0,'?'),(_binary 'j3r\^[k?J\4','wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-jetpack-token-subscription-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\D~!~\iHY6\J',_binary 'Q&l(]AN\\Q|;\]`n\r7\\'|\;\','',0,'?'),(_binary '\`\ߵs\\','wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-jwt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0 13\?\\&\\\na',_binary '4pfVyI\\a=9b\W:\Q}','',0,'?'),(_binary 'G=0\'k\\\Xt','wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-subscription-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4`.)@P',_binary '\{N6\\g\\\'\24&~ޛNC7K\f\','',0,'?'),(_binary ')xȥcO\u\j','wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-token-subscription-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"\\\tŃ\[\',_binary '\fL-a\k\\\\\\1\8','',0,'?'),(_binary 'l4}VԻ{v{','wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-token-subscription.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_w&\i\ ,\Wi\Z',_binary '1A9}\\N\yWzN5a\c	VWy\\','',0,'?'),(_binary '\9!m\\\\\\Q','wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-unconfigured-subscription-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZL\Y\\	\c\',_binary '\!\\)\9\\\n.\9\J#\\Db\\[J','',0,'?'),(_binary '\i\wn.\f2\\','wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-wpcom-offline-subscription-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MnR\"%1',_binary ',X\\\k3]\\\.\_\kq&','',0,'?'),(_binary 'GD~-\\C\k<ʬk','wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-wpcom-token-subscription-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Me\J\(2l	LD',_binary 'B\\\\o}sxn5;\#k\\8','',0,'?'),(_binary 'Q\(d1@\\\\7\\\"J\','wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/include.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n)\\wJ[\\',_binary 'ǔe>o\\۰.E\)\m}\\4/E','',0,'?'),(_binary '\D\\v\\O@V}','wp-content/plugins/jetpack/extensions/blocks/premium-content/buttons/buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\\\\:x\I',_binary 'Έ11t{\n\z[t@\2\s3G\','',0,'?'),(_binary '7\*m\\\n0','wp-content/plugins/jetpack/extensions/blocks/premium-content/logged-out-view/logged-out-view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\e\\\\)pxo;q',_binary '\*\\\X\$qV\w=\&Dp=S','',0,'?'),(_binary '\-9P\\&c','wp-content/plugins/jetpack/extensions/blocks/premium-content/login-button/login-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ߓ)Q\0!\^f',_binary 'dJ\ە\V\r/cZO[32\n','',0,'?'),(_binary 'E\bk~\\','wp-content/plugins/jetpack/extensions/blocks/premium-content/premium-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\N\Z\Է\t5\\',_binary '\|l\n\-&J','',0,'?'),(_binary '.\ U\\\W\Z\}=\','wp-content/plugins/jetpack/extensions/blocks/premium-content/subscriber-view/subscriber-view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}\ \\\Q',_binary '\rA9c\w:a%(4R$FC\K\K\\fx','',0,'?'),(_binary 'vP\Z\c\\\','wp-content/plugins/jetpack/extensions/blocks/rating-star/rating-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QN\rt\6ο\Z\\@',_binary '\\*bhՌ\\\0\l]6Q\\s~֒','',0,'?'),(_binary '\\p+g%W\\J\\\'\','wp-content/plugins/jetpack/extensions/blocks/rating-star/rating-star.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t\0\F\)1Qn̚\',_binary 'jo\C\0XG\F\\%\]U\44','',0,'?'),(_binary '_\\\\ՙe\0#\u','wp-content/plugins/jetpack/extensions/blocks/recurring-payments/recurring-payments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\,£].',_binary '}1+0,\\0^\\\\FmÇyed','',0,'?'),(_binary 'K,qzw\[Nҳ\p','wp-content/plugins/jetpack/extensions/blocks/repeat-visitor/repeat-visitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|sn(\4LO\\n37',_binary 'L\\ \@F:n\\F\\)Ge01','',0,'?'),(_binary ')\Ѡ\̓\\\H\g','wp-content/plugins/jetpack/extensions/blocks/revue/revue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\F\\o/É',_binary '\\rz`\\nJB\d\Nȯj\0,','',0,'?'),(_binary 'T\\t\_','wp-content/plugins/jetpack/extensions/blocks/send-a-message/send-a-message.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\zM!kC\\\\',_binary '\\P\OtFZh@>*Xn\P]cʋfep׽','',0,'?'),(_binary '0RL5D\k֛R\','wp-content/plugins/jetpack/extensions/blocks/send-a-message/whatsapp-button/whatsapp-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.d1MwƂ@\',_binary 'fD\0\L+zT\տ)ro\'\IK\9u','',0,'?'),(_binary 'ixC</\'fR','wp-content/plugins/jetpack/extensions/blocks/simple-payments/simple-payments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0a\',_binary 'j\PX\\OG_\r>\rj\\Q\xM\Ju]','',0,'?'),(_binary 'Pov>8<xD','wp-content/plugins/jetpack/extensions/blocks/slideshow/slideshow.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2܈ZF\4\S\ͤ',_binary '\eZ\\rn8acUڭR@a8=\W','',0,'?'),(_binary '\Zڴ\c\\\Ѓ','wp-content/plugins/jetpack/extensions/blocks/social-previews/social-previews.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QeZ\M=\ x\{7',_binary '\\#-\8u\Zzv*\\`>5ݹM','',0,'?'),(_binary '\D$&8\e\^\\','wp-content/plugins/jetpack/extensions/blocks/story/story.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\HȦ\r\\=\/4',_binary '>\Q\3\HXRg\>\rZK\W!?N\\ ','',0,'?'),(_binary '\Ǌ\ǫHª\l','wp-content/plugins/jetpack/extensions/blocks/subscriptions/subscriptions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(^\\',_binary '3\ V\~Q!\V9d\FN7','',0,'?'),(_binary '6zѺG\\','wp-content/plugins/jetpack/extensions/blocks/tiled-gallery/tiled-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\쵤94XC\',_binary '\N~\\\\/4!)F\\MŔg	r8','',0,'?'),(_binary '9X%\'A5އs','wp-content/plugins/jetpack/extensions/blocks/wordads/wordads.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\簍{Wzоx\.',_binary 'ϛ\\!\eg\0hCȈ\}l','',0,'?'),(_binary '!V\\\\Ǡ+\','wp-content/plugins/jetpack/extensions/extended-blocks/core-audio/core-audio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\\r`pl\ơ?\\',_binary 'k\rS\ͤy\A\?\\\Y\kY\\','',0,'?'),(_binary 'tUPqp\,\','wp-content/plugins/jetpack/extensions/extended-blocks/core-cover/core-cover.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nl]\z-j(\/\R',_binary 'k.M\HG\o\~~ƙ\\\R2\9\AR','',0,'?'),(_binary '\\#\r\)wZ','wp-content/plugins/jetpack/extensions/extended-blocks/core-video/core-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9d0M(Ai\'',_binary '<\\믬SY\\ڤ6(7t)\v','',0,'?'),(_binary '_ނ^e\㫞zGGA','wp-content/plugins/jetpack/extensions/extended-blocks/premium-content-container/premium-content-container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\n:1\"8\B\\n\',_binary '\c\XsکbK\n\JN\n\\)M ','',0,'?'),(_binary '.$\:\\إ>','wp-content/plugins/jetpack/extensions/plugins/publicize/publicize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\\6\`&˯W۰\',_binary '\\lK\\0\&О\r	\N\Cfb\\','',0,'?'),(_binary '\D?ߺ\WC\','wp-content/plugins/jetpack/functions.compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\g\\'fDǁRg\',_binary 'B<\(\\7\Ȗ\MY\=\+o','',0,'?'),(_binary '\/\1<l.S}5','wp-content/plugins/jetpack/functions.cookies.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\HMݸLmŐM',_binary '@:\1@c9~\\_!\P\x\U,','',0,'?'),(_binary 'X\\h!\b1_','wp-content/plugins/jetpack/functions.gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=T\\\\":\=u',_binary '\zH\rtqrht\	%\e%\%d','',0,'?'),(_binary 'IBh\i\\'UR','wp-content/plugins/jetpack/functions.global.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\=Ӗa04B\)\][',_binary 'ӸDH\\#&\"PRmX*','',0,'?'),(_binary '\r\9H\nms\\','wp-content/plugins/jetpack/functions.opengraph.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\\v\rj\\\',_binary '6VSȞ\<Qyo$W2\\~','',0,'?'),(_binary '\\rPf\Nǔo^','wp-content/plugins/jetpack/functions.photon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E7ZW\[Co5\:',_binary 'OlF/c\nX\\9\DR79CU\','',0,'?'),(_binary '\\";N\Uv=;W','wp-content/plugins/jetpack/images/apps/triple-devices.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^t^\\n0\_S',_binary '\\\k\{LKj!A\\,','',0,'?'),(_binary '\y\גַh\n\?R3','wp-content/plugins/jetpack/images/apps.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j>\(ʩW.8m',_binary 'wOI;M}\\q\\\+yE\+Zo+AW','',0,'?'),(_binary '`a\N\\n-\\"','wp-content/plugins/jetpack/images/block-picker.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	Nv\@\e\\t,H',_binary '\d;\&\\19n\H\\\\\001','',0,'?'),(_binary '\\4&hZ!:Uj1\\','wp-content/plugins/jetpack/images/cf-ss.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0O\(5r%\\(',_binary 'i\\}\\Q<\\\ S84Q;\\4ˇ','',0,'?'),(_binary '@\\]\M\\\','wp-content/plugins/jetpack/images/characters.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$<\r\\\qR',_binary 'H\b̦\S82\J\"\'5\\*^Ǔ\','',0,'?'),(_binary 'ʱ\Ѳ\7tu0\\'y','wp-content/plugins/jetpack/images/cloud-based.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\w\Sd\:\\:',_binary '\^\B\b\Z\"\[~\\L$\\\I\4\','',0,'?'),(_binary 'ߝ\";\)m','wp-content/plugins/jetpack/images/cloud-checkmark.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uxݒ}r\',_binary 'y/\˜EϤl0\\ҷ|G7<k','',0,'?'),(_binary '.Ѭ`r\\\Z\\t','wp-content/plugins/jetpack/images/connect-jetpack.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Q\\\I\\QK',_binary 'W\[E\abJ\\#r\ii\L7~\','',0,'?'),(_binary '\OnYM\5k4\{՝','wp-content/plugins/jetpack/images/connect-plug.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n_4¨\^',_binary 's\\-\c[\>ε`\\\>\1sl\$.O','',0,'?'),(_binary 'p9YrfY\8\','wp-content/plugins/jetpack/images/connect-right-partner-backup.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '᠗\\]+\\L\G',_binary 'όs7mv\:w\\ih','',0,'?'),(_binary '\i\ڦ\98\`>','wp-content/plugins/jetpack/images/connect-right-secondary.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0XCpq񅟉c',_binary '\rk@9\?>5n\Ʈ80}\-\*J\\','',0,'?'),(_binary '\\\q\\>\w\q','wp-content/plugins/jetpack/images/connect-right.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Hx\4尹bp/',_binary '\n@~\J_ľ\W\\n\Z\?','',0,'?'),(_binary 'UU{\.d','wp-content/plugins/jetpack/images/customize-theme-2.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P$_Sq)\"m\O4\',_binary '=R[{\O\]\.\Rx_z$\r\','',0,'?'),(_binary 'U=8\g\VY\tZ','wp-content/plugins/jetpack/images/customize-theme.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rl\Pڻ\\h\/',_binary '{U\6&5\\AsR0N\0g\~O\`','',0,'?'),(_binary 'f\@\\{;\0\,\k','wp-content/plugins/jetpack/images/generating-cash-2.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʷ끾!\5\a\',_binary '\g\0W\\\\U\0ҭF/k\ƛ&h','',0,'?'),(_binary '\\\naY6.\','wp-content/plugins/jetpack/images/generating-cash.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}&-\Z\ø\\G\o',_binary '+Α>[\\bE\21a9A,wVD','',0,'?'),(_binary '&\8\\\σH`','wp-content/plugins/jetpack/images/get-apps-google-play.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\P3\\ׯ',_binary '\n)I\\|{UƑt\~b\j\Lʛ,]\','',0,'?'),(_binary 'ς?\=\\\&\\0','wp-content/plugins/jetpack/images/get-apps-ios-store.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%L\p\\&c{\/',_binary '\\\\!4U#qџGZ$ cw@GO','',0,'?'),(_binary '\d/;\s\kj','wp-content/plugins/jetpack/images/get-apps.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K@\p\/B',_binary '%\}9ڸv\hZ9f_mjSd','',0,'?'),(_binary '@Sy]\0|2J\>','wp-content/plugins/jetpack/images/green-star.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+}:+8ȸ\^g',_binary 'w\@\\ȊTyhh\ZQ\&EI[','',0,'?'),(_binary '\*<d4\fa','wp-content/plugins/jetpack/images/ionos-logo.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' X3\Z X\',_binary '\@E\DP\l\\U\x\CA\r^\"\F','',0,'?'),(_binary '\<5\n:},E\','wp-content/plugins/jetpack/images/jetpack-aside-background.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n4X\a\',_binary '7H~/[2?}j*DHߢ=\\\#','',0,'?'),(_binary 'ڙY79\Ft\0','wp-content/plugins/jetpack/images/jetpack-backup.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p[\.jq\;kѠ\S',_binary '\^\8^kSH\`L\\\?.@\'','',0,'?'),(_binary '+Hb`~\(r\\\\','wp-content/plugins/jetpack/images/jetpack-banner-gradient.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\jRX\n-\\_Sv',_binary '!\$\⸻K*6uQ!t&\\2!\&:','',0,'?'),(_binary '#d$\Ep\"Mp	v','wp-content/plugins/jetpack/images/jetpack-connection-performance.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ĽG\ᚳ\\Ժ\Z',_binary '؎\0\\u\$F\-AC*\Ub*0:\\\C','',0,'?'),(_binary '9a\\r!NM','wp-content/plugins/jetpack/images/jetpack-connection-security.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3k)\Z[\\&',_binary '~O}O\}\'9/1uKw\\n\Բ;G\','',0,'?'),(_binary '\C\^\PJ','wp-content/plugins/jetpack/images/jetpack-design.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\3\3KF\ZA\K',_binary '\\A+ԷOx\s\I:(vt5|&','',0,'?'),(_binary '\'%/4)-\r\E$','wp-content/plugins/jetpack/images/jetpack-google-analytics.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':0\\A\>\HJ\2^',_binary '?\Թ\WDJ$\zBm(V\ZZ\gɎ\%Wg','',0,'?'),(_binary '%Q\\0\q.\','wp-content/plugins/jetpack/images/jetpack-gutenberg.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1;\"6\đ7\j',_binary 'M\\\\Ɇ\\r:\xFD\\[\3\]\UFz','',0,'?'),(_binary '\`)m[F\ZL	','wp-content/plugins/jetpack/images/jetpack-icon.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_a>^&#2\',_binary 'Q\\稍f6SN*\ҏ#,\3\_j\','',0,'?'),(_binary 'M\"\\`e\Kc\F','wp-content/plugins/jetpack/images/jetpack-license-activation-with-lock.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BX\":\56̦F\',_binary '\0ce6\\1Z\\\5\n=O\Q_^\GxG','',0,'?'),(_binary 'T\=4IA]\,\\u','wp-content/plugins/jetpack/images/jetpack-license-activation-with-success.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\+\,đw',_binary '3^Ю\e\5>HgT3\\9L\;\u\','',0,'?'),(_binary 'A\'g4Ig\00գ','wp-content/plugins/jetpack/images/jetpack-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\n87V\\\ǙA',_binary '\00h\\Tu\r&!\\nahoƋ','',0,'?'),(_binary 'Zb\^R\\>Eje','wp-content/plugins/jetpack/images/jetpack-logo.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"N\\SoĂP\',_binary '#\q\\r\&\Fs $Qq\3{','',0,'?'),(_binary '\<\aA\/P','wp-content/plugins/jetpack/images/jetpack-logomark-blue.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɘ*%\,\\\[',_binary '\-b\r\\ѷj\\r|j2[v','',0,'?'),(_binary ',\!\\\ZW','wp-content/plugins/jetpack/images/jetpack-marketing.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\\S{h\\\}1',_binary '#m>\K\r8B\nS\\h\";,޾UTbM','',0,'?'),(_binary 'ڛz=$-@\\','wp-content/plugins/jetpack/images/jetpack-new-heights.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\u\\O',_binary 'z\d%\Aol\\nQ\<\0(O\"\Z','',0,'?'),(_binary '\y\Ċ?iG\0','wp-content/plugins/jetpack/images/jetpack-performance-icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':0\\A\>\HJ\2^',_binary '?\Թ\WDJ$\zBm(V\ZZ\gɎ\%Wg','',0,'?'),(_binary '+.T\^vHUG`T','wp-content/plugins/jetpack/images/jetpack-performance.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5~\*\Jӆml\',_binary '97\\#I*d\08K\O2Х\0\Xs\\','',0,'?'),(_binary 'B\-\r`\\','wp-content/plugins/jetpack/images/jetpack-powering-up.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Q\\\I\\QK',_binary 'W\[E\abJ\\#r\ii\L7~\','',0,'?'),(_binary 'd\\"uS	J7I\\'\_&','wp-content/plugins/jetpack/images/jetpack-publicize-1.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\?\\\ٯ',_binary '%\3\\˷-r}M㤍_)c\H\','',0,'?'),(_binary 'EJl3z`\	','wp-content/plugins/jetpack/images/jetpack-search-icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v!V\\sϠ\#e',_binary '[\uljLB\︀Fw+\\N_','',0,'?'),(_binary '\bx8D}\4ob','wp-content/plugins/jetpack/images/jetpack-search.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\Z\|\s0',_binary 'ݽo*\g~Md?\r>H\Ɩ W\\0<1\4,','',0,'?'),(_binary ',D{\\vl\\"KŚ','wp-content/plugins/jetpack/images/jetpack-security.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݯ#\\\n\Y',_binary '	EXqA\c\-,N\\HFDvq?','',0,'?'),(_binary '\\0\Vuf-\0','wp-content/plugins/jetpack/images/jetpack-site-activity.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B\-$noAp,,',_binary '\Z\\/\x`h*-5*6^r\\\'c\"','',0,'?'),(_binary '\\\_#\\fs','wp-content/plugins/jetpack/images/jetpack-spam.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƛ$qRL\垖',_binary '\"q]\wex/yT\'o\]}gOU>h\ep','',0,'?'),(_binary '7M\\ag܌\ZY','wp-content/plugins/jetpack/images/jetpack-speed-icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|ad\7CL',_binary '\#X<\\"\.\Q~!x\h\p`(\','',0,'?'),(_binary '\r\tX\R\ qGr','wp-content/plugins/jetpack/images/jetpack-speed.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uD\nD\Bu)',_binary 'gG\\\=C<1\Z)*jkĤf^IJ','',0,'?'),(_binary 'M\+\4\\Tt','wp-content/plugins/jetpack/images/jetpack-support.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\rHX|4',_binary '\\O^<\0YƫM&\\\Z{80c \ж','',0,'?'),(_binary 'x?ី\{}\Z\\\','wp-content/plugins/jetpack/images/jetpack-themes.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ac_K\"',_binary '\\ou4)@=\aĸ\~;?H\o\d{7','',0,'?'),(_binary 'P\\6\\\I=\','wp-content/plugins/jetpack/images/jetpack-updates.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ho :',_binary 'FS\z\\bc}:H3zR\J.','',0,'?'),(_binary '\\04\uƈ','wp-content/plugins/jetpack/images/jetpack-video-hosting.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\eJ\\`V`\Z\\\',_binary ';pǖ\`\He\SN\q#\0{','',0,'?'),(_binary 'e?H(\[6yo','wp-content/plugins/jetpack/images/jetpack-welcome.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\*V\\\2Q#A\',_binary '+2CC,\n\'|+\x%Ϊ\J\','',0,'?'),(_binary '\\\\\D6N<\','wp-content/plugins/jetpack/images/jetpack-woocommerce-logo.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ԨbBy\#cI\',_binary 'b\≷\0m֍\n\琸n_\\Z?\%','',0,'?'),(_binary 'gڙns%tf','wp-content/plugins/jetpack/images/jetpack-wordads.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' *\\s(Zۋ\@',_binary 'ZբѪ\\{_.j(ęo\˙\6o(J(3','',0,'?'),(_binary 'K:1թ\'l:\\','wp-content/plugins/jetpack/images/jupiter.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JjΗq\.B\\I',_binary '.,\\\\KD\st%$&\\{fK0','',0,'?'),(_binary 'ì	sK\(~XJodr','wp-content/plugins/jetpack/images/man-and-laptop.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\*V\\\2Q#A\',_binary '+2CC,\n\'|+\x%Ϊ\J\','',0,'?'),(_binary 'j6Nu\\{\"爛','wp-content/plugins/jetpack/images/people-around-page.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ǽ\\n\\R\ZQ',_binary '\W<1\'\\勤&\\ڂ\+2\S\','',0,'?'),(_binary 'b<}\\F	ē\r\|\\Z\','wp-content/plugins/jetpack/images/plans/jetpack-complete.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\GhzYǙ3.a\',_binary 'l\>\B\"`\\N=ҡ]ԳC','',0,'?'),(_binary '\!\05\\?\:>','wp-content/plugins/jetpack/images/plans/jetpack-free.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\S\\'\Z9\>ܲ',_binary '\\\\܉MޮUGnG|\\J_\07Cz?~\\','',0,'?'),(_binary '\};x.^b\)G%:','wp-content/plugins/jetpack/images/plans/jetpack-personal.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\gX\b:!g!',_binary '˝?}X\`2VuǷ\\\+r<2E\\\-','',0,'?'),(_binary 'S\+X\Z*\','wp-content/plugins/jetpack/images/plans/jetpack-premium.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	\\x\Mߠ\',_binary ';lRf\x(\fG\\_=3\0\ 3|h','',0,'?'),(_binary 't&\HzF6i5\','wp-content/plugins/jetpack/images/plans/jetpack-professional.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+f\\\rTAՠWy',_binary '`$\Z\'+\\\\Z10tK\MϞo\','',0,'?'),(_binary 'N\V2a\rR2','wp-content/plugins/jetpack/images/plans/jetpack-security.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\m\0sh\',_binary '*\\\rK3$՜\\c\%BF\'\4>\\','',0,'?'),(_binary '\x|Sʹ\K4x~E','wp-content/plugins/jetpack/images/plans/plan-business.svg',0,_binary 'i\\o\Z\h\P\C',_binary 'i\\o\Z\h\P\C',_binary '<@\%#\W&G\Sǃ7[n/\h\\\U\\'d','',0,'?'),(_binary 'Ng\\n%\roD\'','wp-content/plugins/jetpack/images/plans/plan-complete.svg',0,_binary '+:\K\c\K.b\',_binary '+:\K\c\K.b\',_binary 'l\>\B\"`\\N=ҡ]ԳC','',0,'?'),(_binary 'Q91ZS\Z\\'','wp-content/plugins/jetpack/images/plans/plan-free.svg',0,_binary 'p͸?g\\NJ)\Z',_binary 'p͸?g\\NJ)\Z',_binary 'j*v\NLYk\yF.@q','',0,'?'),(_binary 'm\RդZ-5','wp-content/plugins/jetpack/images/plans/plan-personal.svg',0,_binary '\\d;\rFcc\K',_binary '\\d;\rFcc\K',_binary 't\U\_2w\.;Le%5\n\','',0,'?'),(_binary '\bi\'\\/,','wp-content/plugins/jetpack/images/plans/plan-premium.svg',0,_binary '\\ x׵r\Z\2\\',_binary '\\ x׵r\Z\2\\',_binary 'FzT\2$YP-ϵ\*\\\~','',0,'?'),(_binary '2\X\\ʷ\K','wp-content/plugins/jetpack/images/plans/plan-security-daily.svg',0,_binary '\@#\Z\\\Y\',_binary '\@#\Z\\\Y\',_binary '*\\\rK3$՜\\c\%BF\'\4>\\','',0,'?'),(_binary 't\AҎ1\\^G','wp-content/plugins/jetpack/images/plans/plan-security-realtime.svg',0,_binary '\@#\Z\\\Y\',_binary '\@#\Z\\\Y\',_binary '*\\\rK3$՜\\c\%BF\'\4>\\','',0,'?'),(_binary 'ƙG]qgO>;','wp-content/plugins/jetpack/images/plans/wpcom-business.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\\Zн/J:\,',_binary '\/}6/lo\ˢ\\P\\\(\Q9n','',0,'?'),(_binary 'w)\(\x4','wp-content/plugins/jetpack/images/plans/wpcom-ecommerce.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FMM\T\r{ \\',_binary 'eƲ\\֖\}:$r֥\|vLa_p\0\2','',0,'?'),(_binary 'Lƍ=jK=\\\'','wp-content/plugins/jetpack/images/plans/wpcom-free.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k\\dg\r9',_binary 'i!d\j\h\0ֹ\:V\ڲ\\Yy\\\ui\e','',0,'?'),(_binary '>\B)̍3\<','wp-content/plugins/jetpack/images/plans/wpcom-personal.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\$Gk< \M',_binary '/Q]15Uhf،. \?n\(Y$','',0,'?'),(_binary 'S{?\LfoBE','wp-content/plugins/jetpack/images/plans/wpcom-premium.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8j:ֺ7\%',_binary '-.hxL\hRO\Z+\Lz|Ӭ	k]','',0,'?'),(_binary 'f\n\#`iȀ\؅a\;','wp-content/plugins/jetpack/images/products/illustration-anti-spam.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˩\2v/v\\_5\\^',_binary '\\@\\	\*\\#\ovx=!R','',0,'?'),(_binary '\bԝ\\\ӐGd','wp-content/plugins/jetpack/images/products/illustration-backup.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӭy\RY\\\\\',_binary 'MZ\\-lV}sXY\7;D$E\\e&','',0,'?'),(_binary '\L]\^\9\!֊','wp-content/plugins/jetpack/images/products/illustration-scan.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ie)\\LoN\Ë2',_binary '\WD\Mhq\E(RqGM\C\M\rB','',0,'?'),(_binary '1\n\\/I\_A$','wp-content/plugins/jetpack/images/products/illustration-search.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jT5\v\\WԷl\	M',_binary '˻\%\\LUF8=\ZHDQ+Lt\ wC\+g','',0,'?'),(_binary '\9\XH3\\"','wp-content/plugins/jetpack/images/products/illustration-videopress.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ѽ\\C\g\q\ \!',_binary '/\E\\rbG\0\h\eٓ;\R','',0,'?'),(_binary '\ۅWQ(\i[','wp-content/plugins/jetpack/images/products/product-jetpack-anti-spam.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+`\O[,%#f',_binary '\$\Y\|\&󐫈+\noJhc\[','',0,'?'),(_binary 'mю\,|\\\Z','wp-content/plugins/jetpack/images/products/product-jetpack-backup.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\'\)w\',_binary 'A\e|h2&\nt\k\\rt8','',0,'?'),(_binary 'D)?>0Ʃ\d','wp-content/plugins/jetpack/images/products/product-jetpack-boost.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P!=\ \ǘ2p2',_binary '˚\\\\\vëR~\-ɐ\\JXlg','',0,'?'),(_binary 'z\719hvT--','wp-content/plugins/jetpack/images/products/product-jetpack-crm.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zɂ@HA\^}',_binary 'd\0=P[f\'r:\+)^\\\\JӞb\','',0,'?'),(_binary '\Z\x\0ؠ;\0W\1m','wp-content/plugins/jetpack/images/products/product-jetpack-scan.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j>[\S\Zm~g',_binary 's$\\=r`;~B\L\RL_o\\J\\\"','',0,'?'),(_binary 'LS\g)_w\x%\\','wp-content/plugins/jetpack/images/products/product-jetpack-search.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\_l\"Cn\7',_binary '|\0\a\\\؃à+R\M p}{I\'','',0,'?'),(_binary 'ۃw\'N(PO\e\Zp\6','wp-content/plugins/jetpack/images/products/product-jetpack-security-bundle.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ܐ֥\Uj\\rrt',_binary '4\ty\n^A\\oa{*6YZǕ\/m\ZF','',0,'?'),(_binary '9w죆\'(\Z\\Dd','wp-content/plugins/jetpack/images/products/product-jetpack-videopress.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{\b\֊\',_binary 'P\y\'\\AXu[/@NT\H','',0,'?'),(_binary 'B{P\p]<&{<X','wp-content/plugins/jetpack/images/recommendations/background-alt.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\j_<\J0\(\P',_binary '\Jt\n\"\\\9\_[\\kp','',0,'?'),(_binary '޼}l0X\\O$','wp-content/plugins/jetpack/images/recommendations/background.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E8\ŗ\q\+',_binary '\p\3]ޥ`\\]\','',0,'?'),(_binary 'i\˛y|`fF%','wp-content/plugins/jetpack/images/recommendations/creative-mail-illustration.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3K\0M\4\',_binary '\]\zb\^\\O(Pd\\A+\','',0,'?'),(_binary 'BS\-ﴑ~D','wp-content/plugins/jetpack/images/recommendations/manage-security.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\\j\m\r:\\\\',_binary '\#9\Z5O6֗\f\\h\rs','',0,'?'),(_binary '\\Hb\Rݪ\	\','wp-content/plugins/jetpack/images/recommendations/mobile-app.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',>%H\>@,DU',_binary 'R\'XğY\p=\\УX\\\Y\tG','',0,'?'),(_binary 'Ni\\\\\Ft\x\"','wp-content/plugins/jetpack/images/recommendations/monitor-illustration.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ᖘAϑHJܗb]',_binary '+\bxQOҟ4i\\tKަ\\\~H;$e','',0,'?'),(_binary '%\\\n/^K\\','wp-content/plugins/jetpack/images/recommendations/one-click-restores.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ת$%\\2J',_binary ')\,}\\\\)\$32&&D\\\	\','',0,'?'),(_binary 'M\jt\s<e\܋','wp-content/plugins/jetpack/images/recommendations/product-purchased-illustration.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R(AH#Y4\	',_binary '\$dЯ3iH\\0\\0@S8A߈:a\|\܃','',0,'?'),(_binary 'ѿ&\p7vU^\0','wp-content/plugins/jetpack/images/recommendations/related-posts-illustration.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bg\\\0qn\y',_binary '!\o}ReP(p\nbo\u1s\\P\<O|r','',0,'?'),(_binary 'X\\ܙY5\\\,','wp-content/plugins/jetpack/images/recommendations/site-accelerator-illustration.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%\Z\\\\M׬x\\r',_binary '\]\\n\'*\\nd\~\n?Z\~!','',0,'?'),(_binary '\J\/Y\"Fʈ6','wp-content/plugins/jetpack/images/recommendations/site-type-illustration.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\]\\\',_binary '\\Q\t6\\ʊ\n\Z \2\\f)\','',0,'?'),(_binary '$t\wR\A\^','wp-content/plugins/jetpack/images/recommendations/woocommerce-illustration.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cK_m?\\H\\',_binary '\_ZEls\M\\29k>9Ŏ\H\','',0,'?'),(_binary '9\w54\\\^h','wp-content/plugins/jetpack/images/rss/blue-large.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A\`\;io|\u^e|',_binary ':~4i?j\\\|J6h˹\\CG','',0,'?'),(_binary 'wĢ+}du\߳W3-','wp-content/plugins/jetpack/images/rss/blue-medium.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\RT\\\$:\\˗',_binary 'Οq`$\Zk{\}\?̙','',0,'?'),(_binary '\0mQH\R\"\0\','wp-content/plugins/jetpack/images/rss/blue-small.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1\\\:+u\\\',_binary 'p;\J\\(\&Lfʷ}qA0Îإ>','',0,'?'),(_binary '>vp\u9i\0W*V9','wp-content/plugins/jetpack/images/rss/green-large.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '΂0\`\!\6+\Ld',_binary 'A\!Ґ\\k\b\es\M^ǻ\','',0,'?'),(_binary '\݌@\L0','wp-content/plugins/jetpack/images/rss/green-medium.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ea/\\"fnt\\',_binary '\-\Z?*\\\\!\rV\\X\\\','',0,'?'),(_binary 'pD|;\P','wp-content/plugins/jetpack/images/rss/green-small.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\oQ]wn\";\',_binary ':\E\i\\\V[%Z:;\h','',0,'?'),(_binary '넙\GKFa}#8P','wp-content/plugins/jetpack/images/rss/orange-large.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\\'udLt{b',_binary '?mr\'X\.\i\\\n,\\'=C쿩օhEa','',0,'?'),(_binary '\5G\;.\Z@C','wp-content/plugins/jetpack/images/rss/orange-medium.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\H-?\',_binary '\J\@ࠛ=\$	\|\\ڌ\','',0,'?'),(_binary '\Q\Pjjݿ\"','wp-content/plugins/jetpack/images/rss/orange-small.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' g\e\lʭ',_binary 'r`b7\jb\\Vf\d\'\\r\','',0,'?'),(_binary '\0*\@fٺdku','wp-content/plugins/jetpack/images/rss/pink-large.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\j\\֔c\Z)\',_binary 'y$xVe5t~Lk?)$i4.`','',0,'?'),(_binary 'Ug\*09\p\CE\f','wp-content/plugins/jetpack/images/rss/pink-medium.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Tk\n\\qA!=Eo',_binary 'z\x=\\\\\@\j^\GsT\','',0,'?'),(_binary 'jU\ۆɆ8|','wp-content/plugins/jetpack/images/rss/pink-small.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\bм3O#\',_binary '^\f\;Ǖ?\9/1KX\\','',0,'?'),(_binary '1A\}$G}z','wp-content/plugins/jetpack/images/rss/purple-large.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's<OV\x\\%p@)GY',_binary 'SpIO$sGZ\\Lo\\F\'\Z','',0,'?'),(_binary '5˯\Y\k\r򴩰\','wp-content/plugins/jetpack/images/rss/purple-medium.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\wuc5r4\%',_binary 'hZ\"On\f4P%\ƈ׻3\$','',0,'?'),(_binary '\\Zنlg-lƫ\','wp-content/plugins/jetpack/images/rss/purple-small.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Wr\Ut	',_binary '\\ұ&\M\Kf̘\<ؖ \`\\}','',0,'?'),(_binary 'z6H\>\\~\Z^','wp-content/plugins/jetpack/images/rss/red-large.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P5^P\\ņqZ\',_binary 'Á	*o.1<_\x֯h\\|!*\7eq\','',0,'?'),(_binary 'Z\\1*\"r\\\\','wp-content/plugins/jetpack/images/rss/red-medium.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʃr8E\B',_binary 'щ\\-dI8R9eػ5@\d\}8ۯ','',0,'?'),(_binary '\\Y7B\m&l\','wp-content/plugins/jetpack/images/rss/red-small.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\'\+V/a=%',_binary 'hZi摜\\5n%1\Sw˵/YO6\','',0,'?'),(_binary 'bU&/YN\ϙb\','wp-content/plugins/jetpack/images/rss/silver-large.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';D	\Tp#\\h\',_binary 'QE_D4ت\kH⛉\*\r\X\\.-\','',0,'?'),(_binary 'Ƭ\pF	sͰ\','wp-content/plugins/jetpack/images/rss/silver-medium.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%\T	\v\\E',_binary '\^њ7\\\3\'F\\"\\F\L1\','',0,'?'),(_binary '5_嫘ǲP','wp-content/plugins/jetpack/images/rss/silver-small.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0#{jEw]6b',_binary '\nuDV$\\"p\\jЊ\\C[\a(','',0,'?'),(_binary '^k4\ZgG/\0\C\','wp-content/plugins/jetpack/images/security.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*Dv<0\Z\\+YW]\\Z',_binary '\lЃ||m\ZWͧ\;tm/\Si','',0,'?'),(_binary '\cڠƖ+\\9','wp-content/plugins/jetpack/images/star.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\\AHa\;',_binary '3J\Z7ً\2ֲVܶ\fw3[A\E\','',0,'?'),(_binary 'is\o\J\U)pR/','wp-content/plugins/jetpack/images/stars-full.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\X\Wь',_binary '$\\7\G]\Dp	C\<4BfA\y3d','',0,'?'),(_binary '\K\ \L\T3&z\_','wp-content/plugins/jetpack/images/stars-left.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qoʀru$}Q\\',_binary 'C=\"Zw\/i\R\5\C9ot\\<J','',0,'?'),(_binary '\>(QZpc@\4\','wp-content/plugins/jetpack/images/stars-right.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\\whWW%\\\',_binary 'k~a1\̷ɨbR_ڊD\>`s$F\e','',0,'?'),(_binary 'F|\_k2e\!','wp-content/plugins/jetpack/images/stats-example-lrg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zt#ن1\',_binary 'xb&\=\3\\n>V\z\Z	\2sZm\','',0,'?'),(_binary '_l\\E - `\.','wp-content/plugins/jetpack/images/stats-example-med.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(\EƵ`\I\]',_binary '(nݿXZP\xӔ&F\\fmVq\\N','',0,'?'),(_binary '7F>b*G\\\r\f\','wp-content/plugins/jetpack/images/stats-example-sm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3ݮZPdD\n\r\Y\~X',_binary '0\\(\	\u\պ\\xU\_\	','',0,'?'),(_binary '64\%S\\z%-','wp-content/plugins/jetpack/images/stats-people.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\98`\0\\',_binary '@#K\\n\L\ktyq\И\\˙a\"\<B<','',0,'?'),(_binary 'MUPI+}','wp-content/plugins/jetpack/images/stats-smiley.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\s\\VV\cL',_binary '\n#ᢘ\cns\\y\\\\,K\||m\\','',0,'?'),(_binary 'NC\!tFN\','wp-content/plugins/jetpack/images/stats.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\k\%\p6',_binary 'P\\\s:Z\4vB\j@q','',0,'?'),(_binary '\\Eq\\Svj0 ','wp-content/plugins/jetpack/images/themes.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\\2\O}mn',_binary '\jv\\:\\F\.\\.9','',0,'?'),(_binary '2\r\1\\n','wp-content/plugins/jetpack/images/white-clouds-reverse.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B6:P\\n2',_binary '\'\u!\\f\[\t\x\Nr^{','',0,'?'),(_binary 'ENy\rRv\ؿ(','wp-content/plugins/jetpack/images/white-clouds.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\`{\%G)rןt',_binary '\Ҁ+C\,\U#h \\\J','',0,'?'),(_binary 'k#\[yw\㑝h','wp-content/plugins/jetpack/images/wordads.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\0\|\\\>)\\\n',_binary '0\JFx\\d6\Ѵ}\Ym\RU\','',0,'?'),(_binary '\\\\^\hHw','wp-content/plugins/jetpack/jest.config.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J4^=p\',_binary 'kdj\Z4\\Tf;T\ jUS_','',0,'?'),(_binary 'J	zA3\ʾ)Y','wp-content/plugins/jetpack/jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fL{m\\ \`ޚ\\\',_binary '+\+-xUNN]\\-\9[$\\6)','',0,'?'),(_binary '?g\~\\6\r','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-a8c-mc-stats/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1^\I\qQ\"',_binary '0\\\\\͡Wq34jX-꡻o>$','',0,'?'),(_binary 'M\\\0\Tr+','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-a8c-mc-stats/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '2l̳FDI\\w','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-a8c-mc-stats/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'JT\L:\fj','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-a8c-mc-stats/src/class-a8c-mc-stats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G1vA\L\',_binary '{\\\8oSwH\ ɹU\?u\\\','',0,'?'),(_binary 'E\]>zTy\\\R\J^','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-abtest/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O5ZQ8\*pj[',_binary '\\x\\s\c҅Ҝ}l\r\\,p\','',0,'?'),(_binary '3\#\ūS\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-abtest/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary 'e4D\\;\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-abtest/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '\saV_\\n\>酤c','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-abtest/src/class-abtest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^K.g`=\',_binary '\\\H\.KA\-\Zis\g\m6{x\\g\B','',0,'?'),(_binary '\st1t\5%36yu}x','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/.phpcs.dir.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\8\\nb@A1y',_binary '|S\0\\v5\\\M\(9\WG\\\%Za','',0,'?'),(_binary '\,.\\\0','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	0^\~V\tqH\\',_binary 'ႥT\\)9 o\-y?>i5\4m\\QPܺd','',0,'?'),(_binary '\&\\/S\\.\\rߑM','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '>\$','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'K\\\\mZ\ڕ]wz\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w=\:\#+\}',_binary '\n\\\x;\xaxH\jWvqO\"zp','',0,'?'),(_binary '1pXI\㴂N\ZI\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/css/jetpack-icon.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \\\xu\"\	',_binary '6\K\\\\b˒ `\Q\y\7þؤVt','',0,'?'),(_binary '\\GܨYg7U','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/fonts/jetpack/jetpack.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ts\q\\/',_binary '=p\\ZXfm?k\	=\ͽ\\'\','',0,'?'),(_binary 'Q\'ev\\:','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/fonts/jetpack/jetpack.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\69\\'\ݚ;\',_binary '\ҺC	-Pc\)D\ׁR|+\Px\+','',0,'?'),(_binary '\(d\Qj\P]','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/fonts/jetpack/jetpack.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\\6X\}\n',_binary ' *[\0tfZӞNs;\H/$HIY','',0,'?'),(_binary '#\\\ܗ\h\!','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/fonts/jetpack/jetpack.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+x2\bhI',_binary '0tfc$x\\\\C\ubBfȈ\Z\WM\','',0,'?'),(_binary '\r\&}6CY','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']m%iس:8\1;+',_binary '\{\\\㈣\\\K\\`J,v3̞','',0,'?'),(_binary '0ۗ<\\h8\੪\	','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary 'lS\Ztgz\\VaR','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'U^N\\ݜi3','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/actions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\g1.\i\',_binary 'R6\*DE\\\\J+\Nw\ij\MgEZ','',0,'?'),(_binary 'H\͙\k\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/build/i18n-loader.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`۪-??\\\ż\`\',_binary '1T	ݖ\W\`\b[5]NR\ s\u','',0,'?'),(_binary '\X\ɵ\n\_','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/build/i18n-loader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{\'\?H\',_binary 'ja37\|\\HuGR_\\n\y\)\n','',0,'?'),(_binary '\*+W\*\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/package.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' W\\8syR',_binary '\(񻼴\rT\\Z\R\`\qjECu','',0,'?'),(_binary '\Z\\\+6TRG\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/src/class-assets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YwHG~',_binary '\>@Z\ `\$`\N\	a\(\','',0,'?'),(_binary 'l]>\i\s]iK','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/src/class-semver.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\\$\\Z\I-\',_binary '\JX.3\?Y#_&lym\Z\03\"\\q','',0,'?'),(_binary 're\OK?v 2','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/src/js/i18n-loader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',${d\h$\jm\t',_binary '\l?D&\сI!ƾ\Èm;\'\','',0,'?'),(_binary 'r\\j[!o}\/H޺','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/webpack.config.js',0,_binary '\(\\&-ڑM\\Em',_binary '\(\\&-ڑM\\Em',_binary '&1\\:\\O\Oqy	.\U7Ăt3o','',0,'?'),(_binary '\\/T\>Nr!','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(<MZ-\"\',_binary 'POO>ݷ\\Tq뿯\@R\\ec','',0,'?'),(_binary '\iקŸE/6q\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary 'P\1\tHE\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '\]Y\\xU4R','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/actions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rO\m[\g%\\\',_binary '\\\\VLu`чP\ \~$4>\	','',0,'?'),(_binary '8\uՏM\!x\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/class-helper-script-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Té\\q\\9\\',_binary '\3@\\Z\j\9\i\Z\C\\yg\_ȯI\0','',0,'?'),(_binary '\*C#\/1\sصY','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/class-package-version.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '53<\Wm\nRO',_binary 'L\'d\OC{F7\\ibTp|b,q\F\\','',0,'?'),(_binary '3NrtztIm\r\y\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/class-rest-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '37\!RJh\͇r',_binary '\:C	J\ꔪ(|bAܣɎ_\?\s','',0,'?'),(_binary '\"ʯ%\ف\J','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-blocks/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0x\5`\T',_binary '\\}\\,m}Άn6 *`\h떞[M\G\','',0,'?'),(_binary '\Zq\\\1Ctg\AaEV','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-blocks/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary 'Ԣy\fCiY\ri','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-blocks/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'Vx\\=\\\CǾ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-blocks/src/class-blocks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'U\\߹IUSJ3l',_binary '\kK\utaM\?aE\\>-\Q\','',0,'?'),(_binary 'm$ܫ1!	\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mzͮy	;]',_binary 'D6kb\\ӒU93R%\U\?X\'H\\','',0,'?'),(_binary '*\ɋ\O\\\7$>̳\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '+l\_cr\3','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'mD\\އjA\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!JNDNX\',_binary 'OjԀ5+S\Q9\r\~F.%\e#','',0,'?'),(_binary '\`r1\Xn%8Z6>M','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\\zbW',_binary '\&|\*,Z\ |_3Usu\j\s\F','',0,'?'),(_binary 'pI5W绿','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-actions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̐Y\\\\\"#\u',_binary '\rO-KLDïMc\X\_Jab	\p\\ U.','',0,'?'),(_binary '\Z\My!8b\"Af','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WӽS_gcLH',_binary 'kL-\Go\ǈgY+\n)P6ͩX\t','',0,'?'),(_binary '@rgT\Z]\\\D!\Z','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o;(ed-/B',_binary '\"\"%#\\6xd\?ϭn\2\"Ho','',0,'?'),(_binary '\W/[EY\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpacktracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)Z˸UaLʯlL7',_binary '\69Lf<.\\|\)Xvgw^g4\\','',0,'?'),(_binary '¾\a!\Z|D4z,i@','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/lib/tracks/client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#S]Fb\t$ǝ',_binary '\\]@^\j+\rc\d\	$<vf\@]\','',0,'?'),(_binary 'ݤh\r\B\S:','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-config/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\|a\\\\\"~4',_binary '\-s\\Tn\b%\\\#\:\C\o*\7','',0,'?'),(_binary '\e$n_3','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-config/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\5\\5\Ņ\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-config/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary ':wW\n,>\s\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-config/src/class-config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\^~a\[2',_binary '\5_U\]\n<V\\ZBGF2]','',0,'?'),(_binary '\\\.66q\K)\\+','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\c~\q`Xb\',_binary 'Ny]+\\\\tnъ8\o\j\b','',0,'?'),(_binary '-!Vz\X\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\.8Ӆ~\o','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '=q\LͲ	IO\ZՐ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\X\\\\\\\ \',_binary '_\ރR\rOػ\`9{\3\;','',0,'?'),(_binary '9z/x\\'','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=w5D\	Up=',_binary '\GT\ <\T\\_\r.M\#\,=\~^','',0,'?'),(_binary '4Ʌ{KX\5xC\rQ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!T{ɯM?\ F',_binary '5&ail\<\!C\~)d_7u\5\#m\\\','',0,'?'),(_binary '\)PN\O\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʀ\S9\bhx\/\\',_binary '\t\\b\\e\\Zؘ\z\\\','',0,'?'),(_binary 'mRxu\9-Ý)','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\Nt\M',_binary '\$u\C\ܻM\\x\b3\5>WQ','',0,'?'),(_binary 'Ә2H4b\\7 ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'m\\O\7\nl',_binary '\G >Gmhˍ\rQ\n&C\v\n\\~\','',0,'?'),(_binary '#]\\pqkn\&','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/f#\\\c',_binary '~~Tt`3\Կvc<.Ѹ','',0,'?'),(_binary 'Zm\VX[-\\\c\\H','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-yBV\Ѻt',_binary 'Y5߁\n\;\\"?j\v\r\o\1\3','',0,'?'),(_binary 'E\2\\}\\W\\{','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I\\@]1Q\w^',_binary '7\\\\p\y7\-w\6H\ij\\Z\rBF#\','',0,'?'),(_binary '_\oK<.:QZ\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h0a\1	Q',_binary '\XB\\pC1\\Ū\Z\\\L+Fӄ1$R','',0,'?'),(_binary '2*z俠?.\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8۔k\\~x<',_binary '35u\Xe,nr\l\\R w!','',0,'?'),(_binary 'VelX(\_\t6','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@yC7/\m\阨',_binary '\\b:}#\z*\yZq6׉','',0,'?'),(_binary '\B}\D\0[Nlq(L','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\rh*\tj#~_',_binary 'lq\y\K\\쩣+Цo+\','',0,'?'),(_binary '\X	\Kq\oJ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ͤڢ\;\x\\',_binary 'Ϲj\m\`s\N$Ҁʈ]ijp\`eW@\','',0,'?'),(_binary '[k\0\i\b^|\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\L \\\DbVpD]\\',_binary '$\\\\"@\"\j\󀭎\k\ZD','',0,'?'),(_binary 'vuupj\^؊3\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?ٹ\G@',_binary '&T!ő\'Xp0|?\B\r\d\t','',0,'?'),(_binary 'w\Q*\neSO','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\cs\JQ\\Z\\Z\+\',_binary '\\@ƞ>S\Y\d\\i\\g\qIr','',0,'?'),(_binary '\s/\/3\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\7*',_binary 'Q]\N\o!c\\%K\\"n\E3+/f','',0,'?'),(_binary '\Ej5\2\\]9','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<v\婪&&6',_binary '<@/b\\t~T\o\\\r','',0,'?'),(_binary 'Yz:\׾Fn4h}','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's(#V\0ojL\\t4',_binary '9]x]16ɿ0\\\ $r)\0Z','',0,'?'),(_binary '2\nl~;\nD_','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?ؕa1\r',_binary 'X\\\_ǜ\?\2q+4\\\S\@]','',0,'?'),(_binary '.\L!/2\|ޖu','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c1C`譈\\L+ ',_binary '\Y\\\^\cqū#6~\:ͿK-','',0,'?'),(_binary 'E\n\\\Z*?h*u','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"C@B$Tv\*',_binary '\)\\\!53e_OB)mige\'\r8','',0,'?'),(_binary 'B\/*3HIPlS','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\aSӾ\ix(\Y`',_binary '\0o׊˦Fe\:\\Mj5cH','',0,'?'),(_binary ')C\n\nz`)','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%0\\2 %2IÓ',_binary '8\p\rAO\,	ms#éz\(hRU','',0,'?'),(_binary '\Z~\0/.뜊','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\	\Zx5^χu	\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'lZ\\C\F','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/babel.config.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~\\l\}\kD\ c',_binary 'Rt\{l5zJ|6\Z\>V\\n\','',0,'?'),(_binary '\B\vk9\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/images/disconnect-confirm-dc9fe8f5c68cfd1320e0.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ɛo)\Ǖ;]',_binary '>;ئ\'\\eq4\ȵоU\','',0,'?'),(_binary 'TJwJ\F]<\j','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/images/disconnect-thanks-5873bfac56a9bd7322cd.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\Z\0z\"0\!3G',_binary '_\r\\W\hՊ]\\0\rwȝ\\\\h','',0,'?'),(_binary 'F\	Z\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L)\>\n\&\\',_binary '\O/=K!m7ܑ=s_20Skp~','',0,'?'),(_binary '\ j\*ig<\4','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/index.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\V\\M;+',_binary 'KTژ^gG\P<lڍW \G\0','',0,'?'),(_binary '\J\\K⊈\\؞','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uF+2\\=\',_binary 'N)|7p\g\ɴ$\\D6m\','',0,'?'),(_binary 'Ce=:N}e\%%,l#J','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/index.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fb\\=m,\wI',_binary 'T\2Xd|\Pݓz1\"J\qM25e>1)8\\','',0,'?'),(_binary 'BW\ \(\;\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/index.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\![\]`G\G',_binary '|ħ\\X)\a3Qr\\'\\\ǧvVZhP)+','',0,'?'),(_binary 'r\\x3~rE\M\h\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/src/class-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UTݤ\#G6\',_binary '\?\\$H\j\z\Z]@	h\pw/x','',0,'?'),(_binary '\eM\6Nmt9','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/src/class-initial-state.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\M\V\\95ܕ\',_binary '\\\WQ\o\\5\&ʏ\ڌW;\A\3\','',0,'?'),(_binary '΂,*D҈l\,','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-constants/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɐ k\\Y\rH\',_binary 'Jka?>99\_\\rieөߟ\0l4A\','',0,'?'),(_binary '\\V\>-o#U\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-constants/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\*\*\]\\\A','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-constants/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '\B7\!p|\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-constants/src/class-constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':t\$Ρ\4l\',_binary 'A\\=i\x8]\zfun:4\\̜\M\\L}','',0,'?'),(_binary 'eD;Tv5	ʠ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-device-detection/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u}\\\0\S',_binary '\\r7wl\x{\2\Ψ\\\n','',0,'?'),(_binary 'e9HbA/[\yz','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-device-detection/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\\\5\_>\"ukx','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-device-detection/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '/E\'~\w^rl6\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-device-detection/src/class-device-detection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\CvQD\N',_binary 'ɹJnH+ \\\\\\XZ\}ׅM%\+','',0,'?'),(_binary 'J&\x7\]9oYF','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-device-detection/src/class-user-agent-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\ڱ\\\D\\',_binary '\r\\\z86\Eb\\~?9Lmc\E@pez','',0,'?'),(_binary '>\ۯۋ\<Z]','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-error/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\D\\\\Z\x\I',_binary 'bLʀdHհ\Zr_B\t\'?\[.1','',0,'?'),(_binary '\qT\ܰn0)ץA\c','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-error/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\6\oa\f$','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-error/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '_6r9uos\\\ٿ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-error/src/class-error.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\\#F+\\e;',_binary '-0\0v\\3\\vߑԁ\OS\r','',0,'?'),(_binary 'a%\H\ģ\|n','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-heartbeat/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wPO$\\\\\',_binary '\"D6tK.dWΫs\rQ\P\)\sb','',0,'?'),(_binary '#c6:,\#,f','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-heartbeat/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '6\Rz\\\\@%>P','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-heartbeat/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '\Įc/<\b\\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-heartbeat/src/class-heartbeat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#ØXf\T\\\\nL\',_binary 'X0\ne9X=|N\)2Ai\\\]\\\;','',0,'?'),(_binary '_[#WR\?\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G@ G86ʈ\\',_binary '\\i\/\ߑB,\8pc$\\\3\j\','',0,'?'),(_binary '1\+\T*','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '`%]\hsྲ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '\\n\\\J\"(v','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/babel.config.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\!}З\\ZY',_binary '\5\\\\a\:\\ 9\u8!]!\W\\;\','',0,'?'),(_binary 'ƃXm\M\\\x\I','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/build/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u3;!@t[5\',_binary '1Gi\\>;\RE;\\@y\={$\9','',0,'?'),(_binary 'zU>\\f\\33\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/build/index.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D?\(	hk;~8',_binary '[Z;\04\;ҍ\$hS$͋b\n\+','',0,'?'),(_binary '$UMe\\\\\GG','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/build/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o\#+\\9\',_binary 'bX+ƀV\س\\\\\AP\\-\Az','',0,'?'),(_binary 'Gv\kU_*\٤Q<.','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/build/index.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R4pa\\]@V\\\',_binary '\\\iS&8FgߌX\'J-\6hf8km','',0,'?'),(_binary 'h̪qg\0XT5&','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/build/index.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Щ9\b$+\#\S',_binary 'zق<\0\"QFG\:\\7q=Vkry\A|','',0,'?'),(_binary 'U\yn\J6\qc&$F?','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src/_inc/admin-bar.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g2IH\y',_binary '\W6\jL\\*\\Z\mNO\d\','',0,'?'),(_binary '\8OP\X]r5L','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src/_inc/admin.jsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\' \k2\JK^\',_binary 'v<\/ΐ?ק\5p\\~<H\'i8','',0,'?'),(_binary 'Ǎ\ys\}m','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src/_inc/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{㾬\\r\&\\\',_binary '4҃fi\Sj\g?Gͻ\','',0,'?'),(_binary '=\n1о!T,rA\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*l\.]\',_binary '\r\ȆS%\|\F=x3\K\\~\\rt','',0,'?'),(_binary '\)2\\*,>C\ɘ-','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-rest-endpoints.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\j\H#GʺliZpY',_binary '\\~\\0\\'M=4y\"\ 	\'','',0,'?'),(_binary '\\̝#\\s\5\hn','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1/-p\1\p|\R\D',_binary '\u\E\T#E\r\\X\o+b&c\\\W\?','',0,'?'),(_binary ';\k1J!>','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\m\}#ηt1',_binary 'R@\'*ΏU\0\\\<̦\\a췳Z','',0,'?'),(_binary 'W\nWm\\\Wv=h','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\n-\\\V$\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '\\\ǷH\\c1Ӣ\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/build/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\W7\d\@J',_binary '\#SYtb͍h\w#*\\3G|','',0,'?'),(_binary '<b*\\.W\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/build/index.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\Ź:_@W\sa]5',_binary 'LQb\0\28	\\&e\\_SjcsI','',0,'?'),(_binary 'dXAu\Q\^v\L','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/build/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r(6),B4I',_binary 'Vϗ\\\3&\C\Z\IҊ%\\d','',0,'?'),(_binary ':ţ~A\tmJ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/build/index.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?UU+^DV',_binary '5ZFzQfT\4Q\\,\\d\H\Z\Ug','',0,'?'),(_binary 'ڒr\cW\\^$rc~','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/src/class-jitm.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\U)	\\\\\Q\',_binary '\ֽN\Z*2j\;\*t\?Ho','',0,'?'),(_binary ')\n\\@v6oZA','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/src/class-post-connection-jitm.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[]x<\= -',_binary 'wf\]tZ\^.Y\"\dؼ#\	+\0\/','',0,'?'),(_binary '\^\\8\f\\s\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/src/class-pre-connection-jitm.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ƥ\3:\	\:B2<',_binary '$K!Ip@5F\nߢ\eV\{\0\o\\8','',0,'?'),(_binary '+q\*fy,\1~','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/src/class-rest-api-endpoints.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9VD\Ҩ',_binary '\T\\B\\q+\0\	\npWA]','',0,'?'),(_binary '̐\[.\l@\\\^tw','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/src/js/jetpack-jitm.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\#\\oE',_binary '\}\,A\yG74\Z\\\r\','',0,'?'),(_binary 'Ze_<\l\%','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3%U\\H\\\?\',_binary '<FQyK\\\ؙ\+\}6\\\ց\*\'\'','',0,'?'),(_binary 'J\Uś8\-\o','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\zw)k8\Zz>(','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary ';c\$\\\>Uh2\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/dist/intersection-observer.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\\d&0|]v\UG!',_binary 'C(\b\X=<	\\\?NH\RGȠd\b(','',0,'?'),(_binary 'ju\o\РS','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/dist/intersection-observer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;D\\τe\+i\',_binary 'QL\0\\0\whzCR\w6ϱ{\\\rrE\\\c','',0,'?'),(_binary 'z\\n\KE\R燴','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/dist/intersection-observer.src.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;D\\τe\+i\',_binary 'QL\0\\0\whzCR\w6ϱ{\\\rrE\\\c','',0,'?'),(_binary '^FuK\\n\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/dist/lazy-images.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xn*k\$N\ώ',_binary 'j\z\iY/Q$ȵp*\2\r\','',0,'?'),(_binary 'kqǁ2é\GTNx','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/dist/lazy-images.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')&\\q]\n\Z\',_binary 'C2hpʉ~ZJ-B\#(\E\Ɛ\\','',0,'?'),(_binary '9\\\\\\罓\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/src/images/1x1.trans.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ؗF\Qd\1\\\',_binary '\Uu|l$P3ӣe\\\\Z6)','',0,'?'),(_binary '\|*\}\iϺlc','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/src/js/lazy-images.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\U\\"\\ڦk׸',_binary '5\}6!\W[#j\j@M\.\洸\[~','',0,'?'),(_binary '\v{\![.?u+\9x','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/src/lazy-images.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y\Spw+\\',_binary '\\p n\\\\nҦ)\?S\\\\\"R\rB>]','',0,'?'),(_binary 'i1\0mP$\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/webpack.config.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\*֙)@\',_binary '\I\	\B؛o]mQrQ\\oh','',0,'?'),(_binary '`P\;*\Z\h!','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-licensing/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\\T\rsx\:L',_binary 'Xϭz#@`\\~\Y}Tp҃\9','',0,'?'),(_binary 'D]hI\bOYd','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-licensing/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\M\x(ZH<\ZQ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-licensing/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'w\n\O\1\\\0','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-licensing/src/class-licensing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XGSUCU<0a@',_binary '+g}\[_\z\n3͑\L&SD','',0,'?'),(_binary 'UaP@ǴG+\\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-logo/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&9\\VsG\\\{',_binary '\ܬ\a\'w8Yz\")m\gH\\%X\Jt','',0,'?'),(_binary 'y[\\Zk5\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-logo/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '+~\p\\?00iNGct','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-logo/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'PNY*j\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-logo/src/class-logo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\\\Z\Ϋ',_binary 'H\x/\$4\B\\\X[\0-)\\\A\','',0,'?'),(_binary '׳V\Qآ\'O','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/.babelrc',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\\v\\`I\Ć',_binary 'Z\\\&(iL\\87\09Hc\Z\4\B','',0,'?'),(_binary 'o3\݄d6ye\r','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɓopT\',_binary '\\\Tb\\=4_\\r\\k撯7\kc','',0,'?'),(_binary '0g\R\n\ւ l\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary 'ȢmG\\5qfL','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '`vC7$\\\p','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/babel.config.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\\u.D+sN}',_binary '$mV|f%.m\X\7£1\*\q\\','',0,'?'),(_binary 'G\\:6\w\\b','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/boost-a54137485af36fdffe9c.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\\؁i4i\w',_binary 'B;7x˩\-7\\\$\rb8cy\]`\','',0,'?'),(_binary 'sQQӌ풠\p\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/connect-f27775ac15cf885713c2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0XCpq񅟉c',_binary '\rk@9\?>5n\Ʈ80}\-\*J\\','',0,'?'),(_binary '\k9>?\`VMe\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/crm-7e7684ae2c40327d8fed.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\Ev\ָE\3\',_binary '\\\^u.#+\␆Ry.V\:\K}\','',0,'?'),(_binary 'V\\"\rLH\\@-\$','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/disconnect-confirm-dc9fe8f5c68cfd1320e0.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ɛo)\Ǖ;]',_binary '>;ئ\'\\eq4\ȵоU\','',0,'?'),(_binary 'qA\+*x\Lb\9','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/disconnect-thanks-5873bfac56a9bd7322cd.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\Z\0z\"0\!3G',_binary '_\r\\W\hՊ]\\0\rwȝ\\\\h','',0,'?'),(_binary '޸q\"̩	\;}W','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/extras-26daf36507504c96d066.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hh\D\\\\1,~\',_binary '\0+\\m?\q\rorAbdl\n&[?bF\','',0,'?'),(_binary '\N/iL\r\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/search-f9756bd9c926d905fe70.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\:\ʀV^',_binary '\0\l:c\^f\r&}\0\\Q\','',0,'?'),(_binary 'g\\\3N@\Z\L	\Kr','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/videopress-9591093a9a238cc48a35.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\`_W\r',_binary '_\砖N4\\n}Nb;BIeB^-)伝','',0,'?'),(_binary '\}0-2N[\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\\|h\&%\\',_binary 'K&W\ i\\M\cK\ψa>\\V\M\','',0,'?'),(_binary 'X\7/\\\\j\kG%','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/index.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\j:un\\n\',_binary '9(\L!Ԏb\gl-r,\3','',0,'?'),(_binary '\\Mc\!F2\CX\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cy1\֧#Ӝ\+HS',_binary 'mVyp\\5R\XwDÐM\','',0,'?'),(_binary '\\ˌ\y\{^','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/index.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T$-y\j\K<',_binary 'sKBR\\4ͥA\\7ah_dE.n/s','',0,'?'),(_binary 'W\	<\N','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/index.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\tB\wtZ/a',_binary '\!)y\6\+e\\\?.!4-Iy','',0,'?'),(_binary 'p\\\\{\'!\8','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/jest.setup.js',0,_binary '/ݢ_w\nk\dh',_binary '/ݢ_w\nk\dh',_binary '(\\Ě}\Љ/t55\\\\\','',0,'?'),(_binary 'v#_ǀ\3@I\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PPs>A\*\',_binary 'y\QAˢ\c\\ds\\\\\8^.\y.','',0,'?'),(_binary '\	ۍ09\\m','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\T\(?;%N',_binary 'Ì7Z\BoK U\Z\\\\0\Z\s\]x','',0,'?'),(_binary 'Hn\ӼVXPb\\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L\1\^.bQU\\',_binary 'YW\\\tjj\O,9\\T\aZk\\-W4','',0,'?'),(_binary 'ID2%XksE:v','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kz\\\\|SZ',_binary '\&n$:9鯋\vX\\\QGu\\\0(','',0,'?'),(_binary '(zkQRϙ_\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ǳ\#u\%\+\p\\',_binary 'w\\X;7zvR\Uc\\\\)6R','',0,'?'),(_binary '\.:ґG̙\PT','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ђ@:CBIů\\',_binary '2{Hd<d\\\.\\\','',0,'?'),(_binary '\\s\#DLf\Ro','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\MHG%}yЊ ,',_binary 'M?\\0Y9\\\[\4\\\\\N\\\/{\C','',0,'?'),(_binary '\D!\PI\\냁n\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?1ͶI9G\\Zn',_binary '\6R[ַ^\r+\r	$Uh\Xڀ=@\\R#','',0,'?'),(_binary '0D*\\\\ewJ\?','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+14|d+\\.c\',_binary ' \e\ dd\\nd\'7\R\\R2','',0,'?'),(_binary '\\C0UGJcR\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L#M\_`R',_binary '\\$k\oA\nu\\Z\0|R\\1\\','',0,'?'),(_binary '5#\i3\=','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\\p\x\',_binary '[\̔g;<\0HWK	pv\\\iYm','',0,'?'),(_binary '\\BX\[\0*le','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B)R\'C\h̛',_binary '>?Ob\g\nV\\G\0\0 Jz','',0,'?'),(_binary '4pB|\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':q\\ܫ\(,',_binary 'ǍQHُ\\PH|JW m`{\z\rI[\','',0,'?'),(_binary '\6MXw]_\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':a*.˟\05yd9',_binary '\n\t64;}2;\2񧲛w\#nJ','',0,'?'),(_binary '\\\a\kP\/','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_\=3M\?@c@4N',_binary 'H<c\T\\?\Jك\5VG\','',0,'?'),(_binary '\FZD+\'mXk','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r+\1\\\L\[$',_binary ':q\zvW\ dٴ\Jzy`\B\\','',0,'?'),(_binary '//\hҘf\0]=\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'é\Q)\mc%',_binary '\hIT\oL#+\S\ԱC[\Y\g','',0,'?'),(_binary 'O>cp\+iZ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/webpack.config.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4F\~.Z\\\\'k',_binary '&Iî\/#qI3	Fl+ɗq\','',0,'?'),(_binary 'nUso\>B\O\e','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-options/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'c##NG\aDKK',_binary '/G!E\L\Ӭ\_rl\\E\098\\ U0L','',0,'?'),(_binary '\Oˆ\3(\G','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-options/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary ']I.\)|z)O\}','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-options/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '{p}^ti\\\\Z','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-options/legacy/class-jetpack-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GIb\\;\\',_binary '\8\\6\\\f@Ń\ZҟL','',0,'?'),(_binary ' au~q1\#o','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-partner/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>:Yz\-ߺI\`',_binary '[E*|\r\2\r\'o=Z\@0\\-','',0,'?'),(_binary 'G-}s\\\4Ԥ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-partner/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary 'N-{\hW\V','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-partner/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'lH\6\ޢ\ʯJ\}','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-partner/src/class-partner-coupon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~GR/\:\fׯ',_binary '%>\/5җ\xHfE3]\Z,\\Z\D>\0M\3','',0,'?'),(_binary '(I\\\S\"\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-partner/src/class-partner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aƷǣ$JU',_binary '\{5w\\Ƣى\of:&\\\','',0,'?'),(_binary 'ډt ,P,93','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-password-checker/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\\ػ\\Gz\~',_binary '\fЇX{1\42k,b\\\\0f\\\','',0,'?'),(_binary 'q\\\\`[ n','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-password-checker/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\^\\0V\|͕D','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-password-checker/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'Hw\\ܟPP\4','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-password-checker/src/class-password-checker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\U𵱸^0',_binary 'tV>>j\\os\\\\c\Xp\Z','',0,'?'),(_binary '+ʫ\\P\c\Z','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-redirect/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k\A\j',_binary '\$\`Y\^Q\o\\5XF','',0,'?'),(_binary '.>Kd\0Mr\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-redirect/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\~^\\%\,','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-redirect/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '~\1TQT1٧u','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-redirect/src/class-redirect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@	+\\.\dF\B\?',_binary 'F\n@(:\\rR6\.SL&\P\YGD(KDǒ','',0,'?'),(_binary '-6#׌\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-roles/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ޚI׺΋5\\\Ƕ\',_binary '`%.0m\"\0T\"R]ӽh\'\\\0\<*$','',0,'?'),(_binary 'h\r5[Wf','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-roles/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\u	\\|^eU\+&\\\n','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-roles/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '(\Z\J\\\\A,#','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-roles/src/class-roles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\>*\\\\ r\\',_binary 'W\\rB*l\7<\\S\ 6X\\\[','',0,'?'),(_binary '\4?s#x\w#_4','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/.size-limit.js',0,_binary 'seBznTX940',_binary 'seBznTX940',_binary 'W56\TQ٬rҁ\~\\\yo~G9\','',0,'?'),(_binary '\\\aP\\Fn','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&m\o\j\K',_binary '|9)bvmZ;T\nOӘ4a.\'\>{cP','',0,'?'),(_binary ':~q\\,D|5T\j','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '.4\\\^\\8','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'I\\\\S\r߈T\ZP&','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/customberg/jp-search-configure.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wINVɲ\T\\\'k\',_binary '\m.\\RѰ=\Ht\+\}\Zg\n\','',0,'?'),(_binary 'O\\\\y\Rt,\:\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/customberg/jp-search-configure.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Y\n_\\ly\k)A\\',_binary 'L}\Lsu\.\Lw]=\j\\q','',0,'?'),(_binary '\"Q#Cb\]˶i\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/customberg/jp-search-configure.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k6uH\\'(\]\\',_binary 'Y\\@caT4\±C<4\{\(d:','',0,'?'),(_binary 'V\YY(}d\\\J\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/customberg/jp-search-configure.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}ec\\T\',_binary '\طj\\TC;8(,\)\av̇j','',0,'?'),(_binary '5\Z\O>\n\\\\nL','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/customberg/jp-search-configure.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\6%\\ZX?',_binary ':\,\D\0m!\\[|\"3\','',0,'?'),(_binary ' n\"6E\ٺ\0\"\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/dashboard/jp-search-dashboard.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uۼHm\Y肣\\',_binary 'p`\\Z\\\\\J?\\oǛ$\Z ','',0,'?'),(_binary 'TS\/\rl\\3\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/dashboard/jp-search-dashboard.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '⏂x\'T1\N\?p',_binary 'dm4Ч\yT\\(e\\\\k)\\\\\\','',0,'?'),(_binary ':\0\{@D\*>6','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/dashboard/jp-search-dashboard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\ɭm#9\P',_binary '9jx}.,KXۓ		՛VW%O\Q','',0,'?'),(_binary ':\1Kz a\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/dashboard/jp-search-dashboard.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R4pa\\]@V\\\',_binary '\\\iS&8FgߌX\'J-\6hf8km','',0,'?'),(_binary 'Uv\\#\c\\\\\'S','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/dashboard/jp-search-dashboard.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'`|)\\ϝha',_binary '=W`!AbLs<\96]?\','',0,'?'),(_binary '\n\\%x\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/687.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yyJxy\n=4\$gl',_binary '//a\Z>\Z]E,\_\\FA.\z\','',0,'?'),(_binary '\F{fgc\\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/687.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'md]:oL\k]Ϧba',_binary '\\9y+m\2\9\\\^\F] \','',0,'?'),(_binary 'y\\\o\};\J\:C','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/jp-search.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`b6\5)K\٦',_binary '\C\\anUylztp\9R|7\\dV-8!','',0,'?'),(_binary '\\\\.4<\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/jp-search.chunk-main-payload.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ᢰ\E\k,U\\',_binary '\n\\\څ[\\\\\\\"\nd:\O>~','',0,'?'),(_binary '\\N?Yke','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/jp-search.chunk-main-payload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\s/Gԕ<w\}',_binary '\Rn*,M\= \ָ#]eZw7\\','',0,'?'),(_binary '&\?\\\[k3\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/jp-search.chunk-main-payload.rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\o/nك\',_binary '\\\(t<\&*\2/ؗO\\|','',0,'?'),(_binary '耴\b@y\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/jp-search.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\*Ӣ=\Z',_binary '\rԥ/\5!k\b<$	i1','',0,'?'),(_binary '-ɗƏuクr','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z]5\߼\\D7F',_binary '\"S4\\"\\F\ÏRg\Z\\\\4@\G','',0,'?'),(_binary '@WL\<\\K8I','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-cli.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ȇдL\DJ\\8\',_binary 'yhQ!rڍb\vuY\YM8','',0,'?'),(_binary 'n#-\t\D','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\i\%h҅85',_binary '\\\Cbm\\\Bm$\!\\#','',0,'?'),(_binary '<ڎ\0\\\\0\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-module-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cl׽y\e\L\',_binary '̶;n\,seli\y\!)ͩ	Fs3','',0,'?'),(_binary 'Dqs\u\V-a','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*e>\j\6\\i#',_binary '\g|S\] \\\\0X\\*EI\\\m;T','',0,'?'),(_binary 'C\\yF~v\rW3\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-plan.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƑdY\\\?\V',_binary '\VHđ0]-|7|$\C=ax\O G\\','',0,'?'),(_binary '%*\\93UF\~\02\C^','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T\@)\\|\|',_binary '\sY$8#\\\=$\b8\\\	\\\R^Z','',0,'?'),(_binary ',ֈ{?E\r|M','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Esa\h }v',_binary 'wi\Pk)ʠta\y%^&*#}	\<\','',0,'?'),(_binary '\w#Qԗ\G/\?r','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-stats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$`Ge~\ű+Vy',_binary 'G\E\\\M\"нj@tc8\\HP9I\i','',0,'?'),(_binary '\\l{kID\\"','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nCSkiJ',_binary '\}8b\\G(h7˶4\u\*\=','',0,'?'),(_binary '޼\HJcY?\\Z','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/classic-search/class-classic-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\UH\%a\?',_binary '^di;h\r\e:\bl+\\\','',0,'?'),(_binary ',~2\\^\ڨN','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customberg/class-customberg2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3$\\݋C',_binary '\\hYC\w\\0\]0:di\q','',0,'?'),(_binary '\\@\hR6A\h\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customberg/hooks/use-entity-record-state.js',0,_binary 'ͦ\\~j	ge\k',_binary 'ͦ\\~j	ge\k',_binary 'rYgY`pӇK\\\`ˇ\\_\̝\	','',0,'?'),(_binary 'uE\m\\`9\\\0','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customberg/hooks/use-loading-state.js',0,_binary 't,b\\\4Z',_binary 't,b\\\4Z',_binary 'CּWez\"x\>j(t^\\_\\?!t','',0,'?'),(_binary 'mO;\\G\󺌝\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customberg/hooks/use-search-options.js',0,_binary '5̚tMZۇ\0',_binary '5̚tMZۇ\0',_binary '\"\7Mֹ<gd=Di%l\\V\.7\T','',0,'?'),(_binary '\\Usev	cSY$','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customberg/lib/analytics.js',0,_binary '\\d#\k\E3\',_binary '\\d#\k\E3\',_binary '\@\o)uL2-w>|8kH\v\J','',0,'?'),(_binary 'dtX\T\\nQ\r','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customberg/lib/constants.js',0,_binary 'U4\48CJb$X\',_binary 'U4\48CJb$X\',_binary '^/w=9/{ƀMa[h','',0,'?'),(_binary '!\"\$P\)\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/class-dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\3K\n',_binary '×\9\\>@i\\I\\0\\"\y@f','',0,'?'),(_binary '_ri\\\'\Z\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/class-initial-state.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j:\5GN\*Y\Z',_binary 'q\\iY~=}NB[ܤ1aI/\-','',0,'?'),(_binary '}\>4.\n˸)\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/components/global-notices/store/actions.js',0,_binary '\ճd\\D!E\F',_binary '\ճd\\D!E\F',_binary 'J27ɱZi\K\\juofKM]B!\\','',0,'?'),(_binary '\\co})oRE','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/components/global-notices/store/reducer.js',0,_binary 'Kb\P\\=\uΙ',_binary 'Kb\P\\=\uΙ',_binary 'vm-,\Gӷ2[\NӪ\@ˤQO\','',0,'?'),(_binary '2Q䑟\i҆rEw','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/components/global-notices/store/selectors.js',0,_binary '\\0>Ww&\WS',_binary '\\0>Ww&\WS',_binary '\'\Y\0U\LҸI\n\E\n$\\','',0,'?'),(_binary 'W\\\\\p]%-\(','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/actions/index.js',0,_binary '\'krǼ,̚(H',_binary '\'krǼ,̚(H',_binary 'd\\;\83\@R6;\rΣ<\n 4t\','',0,'?'),(_binary '8J_\ \8o/f','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/actions/jetpack-settings.js',0,_binary 'EHa\\Z5W\-4',_binary 'EHa\\Z5W\-4',_binary '\\v˥N\n\@R\2ѹ\co^v\\x\{\	','',0,'?'),(_binary '!\\Yf*O$<','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/actions/site-plan.js',0,_binary 'L;\t\\\`\\B',_binary 'L;\t\\\`\\B',_binary 'xR\>\n՞q/\͐0Z4!\\','',0,'?'),(_binary '(SvK\\^\Ӟ\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/controls.js',0,_binary 'A \4T\ٟB\}',_binary 'A \4T\ٟB\}',_binary '}\~\0]#9&eJ\ΈU:\!l\\','',0,'?'),(_binary '@Շ%]	\+%\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/index.js',0,_binary '\Y]\y2\O\m\-',_binary '\Y]\y2\O\m\-',_binary '6\[\n\ZEB#Ms$ \\Ag\SP_|','',0,'?'),(_binary 'Z&5ʂ9\vG~','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/reducer/index.js',0,_binary 'R\Мh',_binary 'R\Мh',_binary '`Y\=+-\Y+\t\\y/(','',0,'?'),(_binary 'a淹ܕ)Ӫi','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/reducer/jetpack-settings.js',0,_binary 'v7\Z|\[C',_binary 'v7\Z|\[C',_binary '\Uo夢\o<\\rԊ;fwuZ.\\'','',0,'?'),(_binary '\\Y\z\1\Z\o~','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/reducer/site-data.js',0,_binary 'Ɲ\eƕD\zg똣OB\',_binary 'Ɲ\eƕD\zg똣OB\',_binary '9v\i\zzk}jn\\\Q\l\\_','',0,'?'),(_binary 'K\`3p\-11[s0F','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/reducer/site-plan.js',0,_binary '{aOXF0(',_binary '{aOXF0(',_binary 'c\M\W\G\\\\+۲g\\DAt\','',0,'?'),(_binary '\\|\uFrl','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/reducer/user-data.js',0,_binary '\w\\CUEQ</',_binary '\w\\CUEQ</',_binary '0\r#\ˊ):rZ!(\\o\\\\g\','',0,'?'),(_binary '\\"\sah:\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/resolvers.js',0,_binary '\'\+*{Ne\D\sO',_binary '\'\+*{Ne\D\sO',_binary 'ڷ	Q\\\;\o\\.\Z2\rDQȕWD6','',0,'?'),(_binary '\E.Lp	\W','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/selectors/index.js',0,_binary 'Ը#/<\\.zJ\l\\',_binary 'Ը#/<\\.zJ\l\\',_binary '	\\\«2b\\_7\\0\DŽIW','',0,'?'),(_binary '\8\0`k)(\v','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/selectors/jetpack-settings.js',0,_binary '){˄\Z\2Q\\$H',_binary '){˄\Z\2Q\\$H',_binary 'oO\"rEZ.\=2j(jh\w:.\8?','',0,'?'),(_binary 'H\2i\r\\b','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/selectors/site-data.js',0,_binary '\>k\"\03\A\\!',_binary '\>k\"\03\A\\!',_binary '۲H߽U壘y\\!W\7\0}i','',0,'?'),(_binary '\ŏ>\\j','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/selectors/site-plan.js',0,_binary '\\G)z\nc',_binary '\\G)z\nc',_binary ';z\\g\6\5;\MA[2eX\0\C03w;<f5d\','',0,'?'),(_binary 'fz\ˍhXS\\f','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/selectors/user-data.js',0,_binary 'Җ[\ް\N',_binary 'Җ[\ް\N',_binary '\$=`\\蹃\\W\\"\\\\"2A','',0,'?'),(_binary '\U$>D.Ђ\pZ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/initializers/class-initializer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\\,\\~\\\0`',_binary '\"BKQ\?H\AQy\~m  [H\\','',0,'?'),(_binary '\\\r4\\|\ip','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/initializers/class-jetpack-initializer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\I\'r@˝ݾ',_binary '\cY`bW,\\\ޏ\ZF\ፕ\탯I\','',0,'?'),(_binary 'BW\@욟ΏJ\W\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/class-instant-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\\ʡ`\\\5',_binary 'N\J\~\s&+\\E\\rг$kmɲr\\\','',0,'?'),(_binary '\Z\\㓍\s','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/external/query-string-decode.js',0,_binary '\r[ѥ\5~z\5\f',_binary '\r[ѥ\5~z\5\f',_binary '.`\jH\xg3bN\J_\E]\','',0,'?'),(_binary 'M+ӎb	Y','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/api.js',0,_binary '\>\">ڀ\\Z/G\',_binary '\>\">ڀ\\Z/G\',_binary '>ww:Nx\6p\(Q\\\8R\\?','',0,'?'),(_binary 'G\\ʛc\\\\ʞ\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/array-overlap.js',0,_binary 'ވ*cs\eh\r\"',_binary 'ވ*cs\eh\r\"',_binary 'D\\WD\ܼh<\М\.\\0','',0,'?'),(_binary 'i\0+EQ4rB$\*\E\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/colors.js',0,_binary '^R\ceJ\',_binary '^R\ceJ\',_binary '*4I\/\\#\r <n,v=\-p','',0,'?'),(_binary 'cTg\\\\<4k3','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/constants.js',0,_binary '\\yHBz\+~@|MRr\',_binary '\\yHBz\+~@|MRr\',_binary '>@\\\!{EZL.Z\\2\\\ \\','',0,'?'),(_binary '2\\Gy\GjF6','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/customize.js',0,_binary 'IK\$##ch\\Hk',_binary 'IK\$##ch\\Hk',_binary '%D\;\Fv\\\\6BL$\ndeMΤ\','',0,'?'),(_binary 'zo]7N*1\\lRK','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/dom.js',0,_binary '\\l#\o4ޟw\',_binary '\\l#\o4ޟw\',_binary '\^vS&$\\\}\[\\i\\G3','',0,'?'),(_binary 'a^\S\\2\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/dummy-debug.js',0,_binary '?Sƛ\^',_binary '?Sƛ\^',_binary '\n3`\\ِ\\#<\n\iCJug\g\{\','',0,'?'),(_binary '­,\\3Z\\+','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/filters.js',0,_binary '@<\2:\\\\[P:5',_binary '@<\2:\\\\[P:5',_binary 'L\b\ck\1Q\\}P\; ','',0,'?'),(_binary '\,EA<\RP\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/hooks/use-photon.js',0,_binary '**2;\\g\5\\rd',_binary '**2;\\g\5\\rd',_binary '3\3\4]\w\\rp߿|w`b\\$yj}','',0,'?'),(_binary 'Z_\\Bm3','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/query-string.js',0,_binary '3՚1\Fv=\',_binary '3՚1\Fv=\',_binary ':I|N\k}QM2\cO\\2\}/','',0,'?'),(_binary '\`\U\W\ZA','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/sort.js',0,_binary ' uv$\sj\\s\',_binary ' uv$\sj\\s\',_binary ')ݩ,\\<d\gB.\)ϮxbI*\B','',0,'?'),(_binary '\\o\F+','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/test-helpers/tiny-lru.mock.js',0,_binary 'S\oh\hT',_binary 'S\oh\hT',_binary 'k9\K%\\eMAN\P-\2','',0,'?'),(_binary '@C\\@\vv','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/tracks.js',0,_binary 'G\\l:;gtȒ',_binary 'G\\l:;gtȒ',_binary '̳\ʎl\\4H\,7\g\m\hX\%g\/8','',0,'?'),(_binary '\\\\\ocNmG','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/loader.js',0,_binary ':`n~iL\|:Z^\v',_binary ':`n~iL\|:Z^\v',_binary 'ɗ\&z\\\\\?\壪\\\\\R\\\','',0,'?'),(_binary '\\'|\"{Bu8C*\.','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/set-webpack-public-path.js',0,_binary '\\h	O\\ge',_binary '\\h	O\\ge',_binary '_f\YƸ^\rFFX','',0,'?'),(_binary 'Zf9f\\n2õx9	','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/actions.js',0,_binary '%k~\\\Ye=>f',_binary '%k~\\\Ye=>f',_binary '$t\$\	\\r\\z>\\nxA:o','',0,'?'),(_binary '*3v.c\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/effects.js',0,_binary '\WU\W\lo',_binary '\WU\W\lo',_binary '!\'V\a\\\=)B%\\\c1\','',0,'?'),(_binary 'NBE߇\x\nkY','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/index.js',0,_binary 'sw	B{B+z@\',_binary 'sw	B{B+z@\',_binary '\o%\\hz\\\\tJ~LlS\0','',0,'?'),(_binary 'p֙^7W;\r\N','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/reducer/api.js',0,_binary 'y΀+f\:\6T\\r',_binary 'y΀+f\:\6T\\r',_binary '\X~L`v\2>rOke\ۣN\yp\c8/','',0,'?'),(_binary '\đ\`XY\K','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/reducer/history.js',0,_binary 'c1N;%\\ZGҍ',_binary 'c1N;%\\ZGҍ',_binary '\#\\0\W\F;\ \\\]3\L\`	M','',0,'?'),(_binary 'BI\<!#\ͶJGO','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/reducer/index.js',0,_binary ',L\\$=b\vY\',_binary ',L\\$=b\vY\',_binary '6\Z\ݓh\\\\^;x\\[֒Ak\?','',0,'?'),(_binary '\\c9\(','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/reducer/query-string.js',0,_binary 'fq\Լ\\\AMA',_binary 'fq\Լ\\\AMA',_binary '\!n#\_\e\{_vђ\,S\\\̐a','',0,'?'),(_binary 'p\ijA\[','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/reducer/server-options.js',0,_binary ';\>L+>\0W\',_binary ';\>L+>\0W\',_binary 'Kr\7\bNKA.\&\;?\\g','',0,'?'),(_binary '\@Ad(ˍd\?sl\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/selectors.js',0,_binary '\\\\\ׁ\*EPw\',_binary '\\\\\ׁ\*EPw\',_binary 'p\n\Od\{\Sm\IŪGnIВ-','',0,'?'),(_binary 'V4DG\#\\\V\o^','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/widgets/class-search-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\0JPuI96\',_binary 'r\\g\AJ3&D7\EZ2\r7B','',0,'?'),(_binary '4R\\'yB-I*ߋ*','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/widgets/css/search-widget-admin-ui.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½\\\u\CA\!m',_binary 'e+\n_\<k+!.S\ȁ\Ծ\Ǻlg','',0,'?'),(_binary 'P\Z]x\~\k{','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/widgets/css/search-widget-frontend.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ay(Nȑ\UQ',_binary 'f\&b\\\C\\\²&2 YIh\\\','',0,'?'),(_binary ',\<S{\G\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/widgets/js/search-widget-admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uJ^MdJe^\',_binary '3%O\ZL\;\r=J\a^\l<ٍ\5','',0,'?'),(_binary 't\7f\'u\E\'9#%','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/widgets/js/search-widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z@\\'k\\\ib%1(\rA(',_binary 'ʆN^5\\ܖ^\58\.\fyUh/\Bd','',0,'?'),(_binary '4\G\Z\nO-@@','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-builder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eA\>SR\/\',_binary '}1ߢ#\\\O\e5\Ze`+\ּ\','',0,'?'),(_binary 'Q\F\\\M10Ԡ\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[=Wi5\\@',_binary '\M*HD\\C\azY\\/\\\\2p$8f','',0,'?'),(_binary '\,9 ]Q\n<A1','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\@)Zl3	)F',_binary '\\\0PM\ZW\Y\?-^/S','',0,'?'),(_binary '\p^H_@\\\ZdR','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary 'm[T\/$H\\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'z9IЖЍ\F','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/src/class-host.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y*u4\9\[r\',_binary '\\?\\\\L\Z\\\u\b\r\_ۆ\\\','',0,'?');
INSERT INTO `wpjj_wfFileMods` (`filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`, `SHAC`, `stoppedOnSignature`, `stoppedOnPosition`, `isSafeFile`) VALUES (_binary '\\-X\Ű\`*3','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/src/class-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\՛4\n>(*U',_binary 'ƛ\i\A\\/7]_1\r\&܌','',0,'?'),(_binary '\\vGnL#%\\~','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/src/class-visitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\\^2#\-dl\',_binary '\\nW7s߅*\\'\UъiKw̼tT=','',0,'?'),(_binary '|\KX\f<\}','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L#R\~]\BF',_binary '\\\\\Ҟ\r\:n\^.\iMo\\','',0,'?'),(_binary 'L&P1\i\JN\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary 'p;0\/%IwV','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '~baq\\y\\qc','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^S#*#ug(Gw\',_binary '\]NCh(\\uqAШ=iW\\\ae','',0,'?'),(_binary '\\\YDMX\^B7','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-data-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\[\_g9\',_binary 'S*\1E\F\tKیt#\K\x','',0,'?'),(_binary 'G}BljP9,#','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-dedicated-sender.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\țG%l',_binary 's	\\\.\\\-\!k];Btx6','',0,'?'),(_binary 'u\\O\\\\\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-default-filter-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\Z~\ӭW\\$X',_binary 'C\dUi,<\\\\~b-_ւ\','',0,'?'),(_binary 'W\n185i?oX','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-defaults.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Rk)\\\fz',_binary 'B]\\d\\8vT\ޣ$\OG','',0,'?'),(_binary 'g\0)*D\7U','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\us\\\\\ntBD',_binary '^}2\}l̐d\ީO\@5oG4','',0,'?'),(_binary '\R\o+\2!\\\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-health.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j3\\r=3\\o+',_binary '\7\=\Z\@\i\9\n\rg\\8;\\~','',0,'?'),(_binary '\3A\aQz\oL','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-json-deflate-array-codec.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\i\\Gk',_binary '\\\\{xk)uogu@T?f?\ٙ\\SƋKO]N','',0,'?'),(_binary '\8GXVnB','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-listener.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lF~;u1Nʑ6\',_binary '5Y/<\\i\rp1KES$;B\\n{g','',0,'?'),(_binary '_\9Y21\Be','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-lock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~ؽ:o\ؽ\\cݴ',_binary '\nGu8\c\'_\r(\nÒwe\\\\n&','',0,'?'),(_binary 'KQ\e)\`\_\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-main.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?\'\',_binary 'O\\>)\2RY\\X\\\68s','',0,'?'),(_binary '\:\r\\KG\LN','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-modules.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e5塧\a\"y',_binary '\dECca+4\	5\ˌ\6-','',0,'?'),(_binary 'J\\w\ǺM','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\.ĒEC\5{',_binary 'ʳ\V7*1Uk_uCo,\\(Y1\\ìi','',0,'?'),(_binary '@z\?w\F\]\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-queue-buffer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\ ;\\䔀[\',_binary '_9\#\|*29&F\)\\K\t','',0,'?'),(_binary '<\2\QI\\F\\0\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-queue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\J\Z!,\\j}˯b',_binary '\u\\\\<iH\d-*_7l\\','',0,'?'),(_binary 'Om\ӺJ \\\_\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-replicastore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7w4z^99\{,\',_binary '\\+\@\\n)kz[\\A\\&G','',0,'?'),(_binary '\Y\\C\v\r\8\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3T\Zu\\\cZi\',_binary 'H\m\ȣ\#}l\a\\\xPo','',0,'?'),(_binary 'JXH-\\'TRԢ\R','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-rest-sender.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\;\~L8!\',_binary '\̓^f\\\]=\y\?*uT`x\\'KWa','',0,'?'),(_binary ';&߱\\\8\;\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-sender.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s\F\\rU\\\\',_binary 'פF{,T`]%_F_\\3޺Ʈ\\r\;H','',0,'?'),(_binary '\\6gEޡ#\\Z','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$>\=_\n\\&',_binary 'n\\;WpFб/\{\,ZctAhJ\','',0,'?'),(_binary '|?\CW\L|\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1JF$\)\T\\',_binary 'x\9u|0 \vb\\꛹c$\\W-:\','',0,'?'),(_binary '1(?I>5ܑ{u','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-simple-codec.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J:@\\0vyT#',_binary '\\I\\sr\Ў\(\'D\J{ޚ%\OS','',0,'?'),(_binary 'n5\\Ϟ+wD','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\ \\(B6',_binary '9M\?u\"\\M\иƠ~\\\8','',0,'?'),(_binary ';\~l=R\A\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y?{,zR\C]t\H',_binary '[۹q\ߵ\\%f;~\\8\0','',0,'?'),(_binary '\uH\0\"','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/interface-codec.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@B/\_VT\\',_binary '\-\\JI⾱\"Aؿ=\\p`Q]','',0,'?'),(_binary 'DB_K\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/interface-replicastore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*v=%\kL\ox',_binary '\5%\D/,T\\\\<51է\_\\','',0,'?'),(_binary 'B#\*\\\\gR','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-attachments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\\0P],\\W\',_binary '\ ݢ\*E\\Z+jx\\\\\ܼH.','',0,'?'),(_binary '#~W1nv\n\\\ں','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-callables.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\¼Qeioڿ\l*',_binary 'ĸ[_CͲē\ޥ9\\\"E\','',0,'?'),(_binary 'i^9J\\%\rq\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\ƙ1CDr',_binary ',\c*`D\\0\PA`]Be\\\idL\\','',0,'?'),(_binary 'x\\"V#2SX\U','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x|\!8o?%&\\*',_binary '{Fd[TA䌴|\n+f\s\B`1Ѻ','',0,'?'),(_binary '<}\Z\\0a7\-\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pi\\Hޕ\\',_binary '\|<\tSΡl\\0n]\7Vnx]+','',0,'?'),(_binary 'O8\(J\\\Ǽ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S\J/]U',_binary 'r\\F	jm&se츅A\','',0,'?'),(_binary 'M>Q*Ó_e','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-import.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ͷ.[.ZMLUl\bN',_binary 'y\\\$\YT \n\ZE/\3(\!\3','',0,'?'),(_binary '\I4D\*\\vx\&\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-menus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\f^\\&',_binary '\Tf=\e\/nsIkU*5[\','',0,'?'),(_binary 'A\ĀTˣ\\p\W#s','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y-\n\\',_binary '\\r{)0R\Zī^\f-lNW\"8 ','',0,'?'),(_binary '-?a\Uh@L\\\>','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';papKҘv\m',_binary 'dh%6b8czniI\ڈp=xܺK$D','',0,'?'),(_binary '&rl d!!;\C\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-network-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\\ߚ\\ JCe\"\',_binary '5\\n\\L3nuD-vX\\\\r\\\','',0,'?'),(_binary 'Β%\Foz\@','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o\\b_x\~5\U',_binary '7\ɶwe3W!\rGS,\J\;5v','',0,'?'),(_binary 'H˼\\'\"\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n&\Svy\2F',_binary 'ƛ)\\j\fL\B\:\Zk\-','',0,'?'),(_binary 'w{\\\x\l\`}{u\0','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\SO%N\\hb\㮯\\n',_binary '`t5\\dʣ\\0\~\\Ǝw\\8w\"','',0,'?'),(_binary '\0V$\\\c\\\׃','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-protect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\\e瘰\#',_binary 'u		#\hⲣÈ\\f<wR.*&\ZE4','',0,'?'),(_binary '\ikόl9\0C.\\+','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\It\zXD',_binary '1\bB\7\^\W\7\.s\#\43@','',0,'?'),(_binary 'Bh\0壷.\W[t\\R','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-stats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(/\!\\\F\0\\',_binary 'k87ݙ0Ӫ6\0tt\N_I\\\C\\psoʹr','',0,'?'),(_binary 'k3{F\\+)J','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-term-relationships.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\%-\\_\y',_binary '\&f1J{=;Oφ.T\./ۚ\<31','',0,'?'),(_binary '\rKs\\\ZZ\n','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-terms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\Fw|y\\K\nW=t',_binary '\|FW\\\\Z0\\\&33;E','',0,'?'),(_binary 'ט\\"\TOic\D','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|M\'\\\\֥zPw,',_binary '8 b{\\\u\\Zn\\FB!\c{','',0,'?'),(_binary 'C] ~Xw\T>','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-updates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{nuuW\JtCD̼',_binary '|mt\|\\laF\!u\0kk>\','',0,'?'),(_binary 'QζP+\2\ΐ\ֻ','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\DI.',_binary '\\G\5O\YE@DQ\\\6o^\','',0,'?'),(_binary 'G\'c*OҲD\\k','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3!p.h\\OJ',_binary '\\rF׮X;i_\m\TA\ؤ-$R9;','',0,'?'),(_binary '\\VZO\J<#\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-wp-super-cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n(U\۹z\',_binary '\\ZΝ>b7GML\}@\q.v,\'\\','',0,'?'),(_binary '7ֵ\%\\@\R','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-usermeta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' 1طHݪ\3\',_binary 'VFD\{OeNN\ʴ݃yum\','',0,'?'),(_binary 'QW#E(\\\~#i1','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B:1q0\D\',_binary '\nѻo\\,VgEũ	\#\\q\\|','',0,'?'),(_binary 'ĩ3V\\[\\r\\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\\\\H\ٱp',_binary '\`ˠHk\i5T+(\DE.A)','',0,'?'),(_binary 'GPfU{ɩ-W/:9P$','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-terms-of-service/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\9蠂7ޤ\`\Fc',_binary 'z\0q<C+\-`\/=LOu\	\}3','',0,'?'),(_binary '^\2|f=WQ\ro','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-terms-of-service/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\\ZevZ\5˦)L\9','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-terms-of-service/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'Lcwl\C~U\r5Q','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-terms-of-service/src/class-terms-of-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\kMUB\\xy',_binary 'uvxu\r$\\HxاuvIj\n\j\\m','',0,'?'),(_binary '$&}};`\ix\','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$Sw\\\\DIkF',_binary 'Hn:\ܹtDu\\_A\\jYh\'\\\','',0,'?'),(_binary '3\!e\F[\S','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\o\!\n\;','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'J8\/*\"=\Ty','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v	\9s\\Z>x',_binary '\\\dc\-Vwe\G7/G\ϰ','',0,'?'),(_binary '9FX܏<v^s2v','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-event.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4i\q{\(){',_binary '2`L\\\\'\\𿂠\zp0','',0,'?'),(_binary 'p&$\";\\0\C','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/src/class-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\yd=OK\e\"',_binary '?_|\,E\	\r0\\y\Θ\\\\','',0,'?'),(_binary '!S\LY#)','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/src/js/tracks-ajax.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\Ƞ\0m \t~',_binary 'lx\r*\\\ч\nǐ\(Q\L\\b\\n8\|!\e5','',0,'?'),(_binary '\\Y\\2r]\׋','wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/src/js/tracks-callables.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\GP!lIa՝q\',_binary '\ADJEC5K7x2T\4\;\','',0,'?'),(_binary '\\ZrUP5t1','wp-content/plugins/jetpack/jetpack_vendor/i18n-map.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\xj$\j\G)~C',_binary 'Е\~t\r.9>\b\O?\t)\\\\G\r\5','',0,'?'),(_binary 'wI=\'\0;-8i\\'','wp-content/plugins/jetpack/json-api-config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',|*vbH\o\\}V',_binary '\ڊG+\\\0_(♥\p\V\N\\4u','',0,'?'),(_binary 't\D\\8$<k:\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-add-widget-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H\eM\s9, \\B',_binary '!\\ޱ-vN\\e\\A\\\\2\\%N','',0,'?'),(_binary '\\\9]i6F\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-autosave-post-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l\BeŬJY',_binary '\\rx\}t;\1\"\\Rۀ\','',0,'?'),(_binary 'w >\?\~^\\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-bulk-delete-post-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\HЉc\G\',_binary '5͂3;;\\\\b|\@ʊXc','',0,'?'),(_binary '<OQ\\Ɏa\R','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-bulk-restore-post-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NNP8(\ç0',_binary 'ԫ1s%\YT\ү\uoQ\Ӹ5hJ\','',0,'?'),(_binary '[\WA\\\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-bulk-update-comments-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ǿ\hZ9\oz=',_binary '2\:̮K9Cx^h:7\\\v!','',0,'?'),(_binary 'e@\;?h;)|','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-comment-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\cu\\\f7Hx3\',_binary '\T\[T\ge\U\\"YH\\B1|\r3^a\.Ъ','',0,'?'),(_binary '\ݭ1xNepf]E\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>k\n(\M00\ZJA',_binary '\zQ]$p\Z\7kVG}]3ʇ^','',0,'?'),(_binary '\Tz\"\ut&\\\љ̄','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S,/J\Q\\-',_binary 'ǘbIw6\\l\\'CD\$s \\\e*','',0,'?'),(_binary '\8\ʡن?rq','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-edit-media-v1-2-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ns7V\\\{',_binary 'V(\r	\q\wΔ_=eZ\`2kp6Ȩ\','',0,'?'),(_binary '\r>>/\gP\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-autosave-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\"]6Q\r\;~*2',_binary '\e\"*7\W\R\{BE3=H\','',0,'?'),(_binary '\\:<\=\\%b','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-counts-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x	V\773?\x]',_binary 'ӺwqB\|Y\\I\}\\ŉ[\{\\0','',0,'?'),(_binary '\0\hR\\\\n	\\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9,\.@`',_binary 'g5^}\'-\\\5`X9\Q7_','',0,'?'),(_binary 'U\\M\\Yq','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-history-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ȅw/\su3٬\L}',_binary '@\}\0\\c$]}Vm:\\1OS*\\\','',0,'?'),(_binary '2z\\KQ,4','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RbWp\\ݻANL',_binary 'e#Fot\	b	U皧_\g2a\','',0,'?'),(_binary '\a\\&\#`L\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-,\/O\Z?n\',_binary '`\\֖lUX\x 8_~1\0Gڙ\\','',0,'?'),(_binary 'H\\0j1\\L','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-v1-2-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'At&-\).\\',_binary 'r[g=)Z\\cYd\\>ݸY&\','',0,'?'),(_binary '(\"\\n\HE\\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-customcss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z^T%\\nAm',_binary 't=\\j,``\DRO\/','',0,'?'),(_binary 'FGn\$ -\G4s','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\\\l',_binary 'WhD\\"%;is,\\n\\\8\.','',0,'?'),(_binary '\LGٵN?d]`P\\Z','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'І\NNҧ\\\Z+',_binary 'd)<{q\n{G\yI\IQV!A','',0,'?'),(_binary 'W\2\\'kNH\\\Z','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-2-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\t\4Q\n\MW#',_binary 'ݶ*W~m\'Z\)\"@\\v\N\','',0,'?'),(_binary '1\0f\Ҡ0\VC\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-counts-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S3$C\',_binary '\9\'\4xYz7NƆ̷ō\G\1\(K\\=','',0,'?'),(_binary '	\Nd`\.9S\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'by\Ak\|\[Я\0\',_binary 'A\RJ\Su\\?\\4','',0,'?'),(_binary 'Ib%^}ǜ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\c\!1ܼ+\r{',_binary '0\'3@eݛT|OϮ@boT','',0,'?'),(_binary 'Re0\0\\n\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LV\4\}\\\\I',_binary '\=_ٗ[\`\1G\n|8MBq','',0,'?'),(_binary 'Gq\&9$}9','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-v1-2-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\e1qBU',_binary '΁?\\`?)\\HWBŵ\[\\a','',0,'?'),(_binary '\Eǵu\\C','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomies-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\9)\\5e)|\T',_binary '\3z}f_<y\ (\#\rI}2f p','',0,'?'),(_binary 'v:\pBh\2','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomy-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|\\2\g46',_binary 'MĞ)k\\\$q4~ӟ2a\`R?)U\)1','',0,'?'),(_binary 'T\|4h\0\(\h\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-term-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\J\rؑ-\\IT',_binary '\GNXyуR;\'\fw/\0wZ\r\\(','',0,'?'),(_binary '\bqӓ(\=\\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-comments-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U?At\\'R',_binary 'A͉VK9	 \\I7\ͷ\40n߳','',0,'?'),(_binary 't\t\l\UM?&\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-embeds-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8\rդ\9ti\',_binary '\uG\"\\r@\\\ Z.4\)Y\nvȩ^C\','',0,'?'),(_binary '|\V\7G\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\\=\p\\',_binary '^l\:\,_APb{n\\0V%XE7\'s:J','',0,'?'),(_binary 'J摜B\Z\Շ\強b','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\${+\\\85\,\o',_binary '@e1=;lHt\\V4\"X&]','',0,'?'),(_binary '7y\`Ps_\As\\\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-v1-2-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\`\"\pg\C',_binary 'd\V\y-9-\~\<DB/\-\\','',0,'?'),(_binary '59\Nޤ\Z\`\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-type-taxonomies-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gߘ8gZC]\\u\',_binary '+j[S\F\/c\Kں\)o','',0,'?'),(_binary '-ȰaC\\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-types-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J~#\<\Ŭ(',_binary '&\\"\\\\Ѧsō#\Ċ{-g}ٺ\r\:','',0,'?'),(_binary '\"z<\"H\'\qR8E<','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	=JD7',_binary '\ i\\r\}5H(\\WN0q٠\','',0,'?'),(_binary '\z\\\\\]\\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\\\h\\\\0jm',_binary '\kF_0\\\exS\-gӂSbR\\0\>:','',0,'?'),(_binary '(D\\)\\\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-v1-2-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2\Nr\h!',_binary '\Zw\\?XIs7rt\bt?{Y.','',0,'?'),(_binary '\Qu\ Id\\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-roles-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\ň=\\',_binary '\ӭ-;1\W~\0\'\+(-\w','',0,'?'),(_binary 'A\\\[\^j\z','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-shortcodes-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\\L\\^qސ',_binary '\W\7\;4Ϧ2\\\?%ꚾ\$z','',0,'?'),(_binary '\_\y\)$J@','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-terms-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'а;m9\\?\\'`',_binary '*V\0Z>C`;\\C\X[lɲc\\0mCN','',0,'?'),(_binary ')n*RfG#2\<','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-users-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t<5\\q\\C\^n',_binary 'AM^\n8\6\\\gږѩ\"O','',0,'?'),(_binary 'x\-\\f\V','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-menus-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Zoy\%\{jr',_binary 'M\\\-\UB\0>m\v=FilK\\v','',0,'?'),(_binary '\rΕq\\Ups','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\囫D1~',_binary 'C*\I#,^w\Zf\\Wl@-I)\K$','',0,'?'),(_binary ';\O簏u\МG\\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(\DϠXҡ\\',_binary '3\.\rv\L\zR\\>gFC\\\\f','',0,'?'),(_binary 'L5Pr@\i;','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'opx%}8;\Ԋ\'',_binary 'Y\i1e\'\M\K\:9\Fd25\85','',0,'?'),(_binary '؞J!ß8@\Fn\Y','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-reversal-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~b4Ev\OFW\0g',_binary '#\M,uW\\\1x\糖\>%9D\\','',0,'?'),(_binary 'dKֱw8V\F\\X','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\\\x\\>*4\',_binary 'D\ͤ\d\E*\@\Qw\\!{+պ','',0,'?'),(_binary '\\V3\\*EgW+','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-shortcode-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\A\\H\',_binary '\"a\\\\˰.^~^0-\?\\K\','',0,'?'),(_binary '>y`)Ps\;','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-sharing-buttons-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0(_\8\DZ`8',_binary '\P9\΁OhMޡ(^A\\*\\','',0,'?'),(_binary '\o.P\\\~X}','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~\ܼ˅.',_binary 'a\\7$\X~\\\\\j\7tedY_94','',0,'?'),(_binary 'T\f\.o\\w','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-2-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\7ԩwH\ZY\\Om\',_binary '~\i4bN+S&]%\<u4\9_Q','',0,'?'),(_binary '<q\x ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-3-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\< \eH-a%.5A',_binary '%[\N\=}bJx \\\E\\r¢o\Z\eY','',0,'?'),(_binary ',\ȅL\\`c\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-4-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\7\Y\!c\',_binary '\\&)/\<d2\'Vh݋\y\','',0,'?'),(_binary 'H%\\ҹL\e\r7','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-user-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\Ψ\!\\\1\<P\',_binary '\\\=Bz/|%&;¼4u\\oG\\','',0,'?'),(_binary '_\##8\\e$&B\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-taxonomy-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hl|\\/\R\',_binary '\灌<=\\\\Ѥ_\\mG\','',0,'?'),(_binary '\0\GmM謁\y`','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-comment-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0hI\ǀ5<j\I V',_binary 'N\\\UCp7]{Rl@\a\\\݃_м','',0,'?'),(_binary '\\\r\Ӟ9\\1\ZU','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-customcss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\UڊA\0\ 8`l',_binary '\M\L\g9,W}Muj\g\sڶ\\Z+\d\','',0,'?'),(_binary 'Z2H\>qi\6%O','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`zi\\J\7?\c',_binary '\\\Z\ت\\|\\Pqʙ\\7z\\\\ݏ','',0,'?'),(_binary 'v\yY\$m \\5','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\k\^\"]Z',_binary '\\>;3\Zbݟ\nU|~@M`QJ\','',0,'?'),(_binary 'ě΍\fq\:\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?͡\\\Ìs',_binary 'r|7Uyf\ESfMXWS꡾-','',0,'?'),(_binary '-f\#\L\\w','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8\Bq\p\TԊT',_binary 'I44gܰ\i\\\6 >e\[\\','',0,'?'),(_binary '>	g!\\--\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-2-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\^\\ZT',_binary 'F\efo\ٵ\n\"\\(c2O%Ý\\ԉ','',0,'?'),(_binary '\\K9is\7T \"\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-site-homepage-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.\\`\Z?[mO\1',_binary 'V\'h@P \"\)P\\O&.-\\\=ˈv','',0,'?'),(_binary '`ps22\|0\','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-site-logo-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5j;B\\=t*7',_binary '\\WȒ\}\xj3=<ċ\`81\\\Z\','',0,'?'),(_binary '\\q.);_S]6X','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-taxonomy-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j-@\5\q\7',_binary '\\.w\Ti\r:m\0[\s\R\B','',0,'?'),(_binary '\\\\Y\a\nl','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-term-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\HRL\\Z0',_binary '\\V\\\S-[\'\\ iS9{\\+ԏ','',0,'?'),(_binary '\&13UGC','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-user-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\r[`I^\',_binary '\\\tZhGŕ\=\W}S\\b;+Er','',0,'?'),(_binary '[F\\P!Eei','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\gǾZ\\!Rײ',_binary '4}$\\N@\L\\\gc?e)xg\','',0,'?'),(_binary '\\:v_\͘\Oo','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-v1-1-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'htæ/#t\\(',_binary 'Y/t &\\j@\\'K\ĜZ','',0,'?'),(_binary 'W\?(\&\-','wp-content/plugins/jetpack/json-endpoints/jetpack/class-jetpack-json-api-delete-backup-helper-script-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\Z\Fp(tgE\*',_binary 'Zw\t<ҽЏ\g\b\V>1X\C@','',0,'?'),(_binary 'Ûk	|6c','wp-content/plugins/jetpack/json-endpoints/jetpack/class-jetpack-json-api-install-backup-helper-script-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#\NH\0\\\-',_binary 'a2m-!\\0\.A]\\|w{yn[wW','',0,'?'),(_binary 'hIhiz\9\\','wp-content/plugins/jetpack/json-endpoints/jetpack/class-jetpack-json-api-modules-list-v1-2-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\NF-mY#\Z',_binary '\\Z\nA\Zf/g!\','',0,'?'),(_binary '\"q9	\=\'\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-check-capabilities-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')|W+z4?\',_binary '~ o\T\{\>K\"(\ڎhn*6\$','',0,'?'),(_binary 'hh!>LC\"\nу\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{I\U\'H\ҦSj',_binary 'cusRc2{R`ш>(hkyd','',0,'?'),(_binary 'MM\n\ߎ\CQ)','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-modify-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\ϣ!|\\"9',_binary '\+\u\\\ڳ\r\\\}G00i','',0,'?'),(_binary 'pS\ 쒏ƫ߾\טR','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-cron-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UsMEk\\(㤕j',_binary 'M\t\tFh!4\3f\zb\\KW\','',0,'?'),(_binary '3\h6r(\0n\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\N|\6\\b3\\\'',_binary 'b\DR_;jh 3Q %\q\\c\'','',0,'?'),(_binary 'RF\z\m\6','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-comment-backup-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'վc\R',_binary 'jc*\\\'z\'Q%Xfqp!_\rջ\','',0,'?'),(_binary '\'taceҫq\pN\d','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-database-object-backup-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\fȗ\\\;',_binary '\\0ڐk\\Φ]u\9^A\\nP\','',0,'?'),(_binary '1H\\q]m','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-option-backup-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*0\$JoVpз',_binary 'o|ބxk5%p&\=LTK:\0\\','',0,'?'),(_binary 'p\X\\\t\E[U','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-post-backup-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ngR[\\\ZM}\\',_binary '\ZWg\=`ؑڶ\rҿq+hoӵ','',0,'?'),(_binary '\8H\ݭf\S\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-term-backup-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o{\\0Ӫ\\',_binary 'cq8Y\(~\\e\\'!(fƃ-\`','',0,'?'),(_binary 'E\"\\R.','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-user-backup-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'bۆmk\',_binary '\\\n\\\)\f?p\\L\ߛ#\KY\%T','',0,'?'),(_binary 'g+\$Y\	J','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-jps-woocommerce-connect-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B0vM^\RӃ',_binary '\$|6W\\ 2Jk\\숭7At','',0,'?'),(_binary 'xp\\\D\\e\"\\37','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-log-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ԪpFb5\O',_binary 'T4\\\q\\ʡ\MI\كDV~(','',0,'?'),(_binary '\]vnCa; ','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-maybe-auto-update-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\%Px\R>O.0',_binary '\\{^bcug\7Z\\^)-\J7G\\\\'','',0,'?'),(_binary 'rҜ\U<L2V*N\	','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't9	T5^\rP\\RG',_binary '\0\\bwcZ\nlZCڛ\T\q','',0,'?'),(_binary 'sn&\;b\!p','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-get-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\W\e\|~H\*I\',_binary 't1$KRF\\slVnPܕ\Zy|Gc','',0,'?'),(_binary 'bFf]W\G5','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-list-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?p\\0\ \z',_binary '\v\, \\]**+\\F[i\Z=-\\0\\n\','',0,'?'),(_binary '\J\\\\+\\jZ1$','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-modify-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~R\n\\\ɖ)]',_binary 'B\n\\"6ZU.Q,O\d\u^','',0,'?'),(_binary ':_\0z\\^','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-delete-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\*\]u\f|',_binary 'q&\O󇦟]\P\ͯ# \ۄ!|.h\','',0,'?'),(_binary ')F\N̆!3 H\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LBgԟ\&\!*wk',_binary '7\'Ae\P\\lyh|D\h\/\Mѓh\&\','',0,'?'),(_binary '=^8|M|','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-get-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N<5\\\g\',_binary '͡޽\6\T\qGiUȋf,Ԃ\','',0,'?'),(_binary '\Z\\\0[,+L)%n','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-install-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[E\d\#-lG\ȅF',_binary '\eZ\\j\bp\W}_\Ћ8~','',0,'?'),(_binary '._*w\a\ٷ\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-list-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\Xd\Z\\k\*',_binary '\uis\GN>\"\EsTiDLj׬]{«','',0,'?'),(_binary '\\\6z\>Tp\"','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:\\\\W\7ݎ	',_binary 'r1G3=̚DӤv7ۯ7\)+ە\\h\','',0,'?'),(_binary 'G\\L\\\;>','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-v1-2-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$atik\2Qsj\',_binary '\'F) #\r ?R\1Y/R,E2o`','',0,'?'),(_binary '&I\\\\g\i\)','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-new-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b+5E!~3ޒ\1x',_binary '^o\>Y>HÀ멗#)-4\\0%\Ū4','',0,'?'),(_binary 'z\*]8M@2\e','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C2 .P5\\7D',_binary '\\cY\[Y\AV\P\\7q|ኩ','',0,'?'),(_binary 'M\wx\\)\`\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-active-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\J\s\-t[֐',_binary 'v)@.%7\\vż \_+\ٴ\','',0,'?'),(_binary 'RJi-\OJ򏂠\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-delete-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CU\q+S\\0Z*',_binary '>bI\9O\(@!\\)=\','',0,'?'),(_binary 'B_:dp?\+\T','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^E\\Mv5 ',_binary '\6^d\r.\n8=̉	T\ǰI\JIB','',0,'?'),(_binary '\\*\[P\l|\6[OA','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-get-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\kò1\r6^%ٳ\',_binary '\\\rq\\5;P\QE\&\֡\\\dnv)6','',0,'?'),(_binary '	yiSd\k(4','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-install-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y-|~f}~`9\\',_binary 'P\2\\mP\\g\IG\_Kwׯ\\/','',0,'?'),(_binary '\\\\e\ۮn>','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-list-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%пU\sxo\a\\E',_binary '\r!\pM\\Rg\n\\\S1i=荳 t(','',0,'?'),(_binary '85O	\ա\'3Z\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-modify-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\2=1\սZ',_binary '^\\}z~\@$\\\ֶ\:G\,p%-','',0,'?'),(_binary '\ǟQe>\8\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-new-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UpY]\Ո`\',_binary '\eY&\Z>隱yEZ;\\d\O\j	\','',0,'?'),(_binary 'r\6ϒ/h\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\wW5 ut̧<',_binary '\Nf_\]Dqp\l]>\\\U;n\','',0,'?'),(_binary '9\r lsE}ٔV','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-modify-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zs\\c\\+]/',_binary 'Y{\\\}\\\F\Z\V8\綔\l\0\','',0,'?'),(_binary ',u\Ak\\7o8\\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-updates-status-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j02tT1q\K',_binary '|pDs:\|_\\Z\4^}\r\\>1\c','',0,'?'),(_binary 'R\\o\\\1:\{1','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-user-connect-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ӳ\G#\ncsNN',_binary '3o\\&#\/\#\>U10ϲ\U','',0,'?'),(_binary 's\N6TQ\\t','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-user-create-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sa\\2\]*] /&',_binary '\Q1F%\\\d=\$qp\\)\& c\','',0,'?'),(_binary '#\ZI7	-X\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-get-option-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$t\\ \\\[',_binary '%r캈_ &\ÛI\\6\t[\{\\\n','',0,'?'),(_binary '\\\"]UW\\\','wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-update-option-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+x&ew\q',_binary '6\<I\\9XvD\ne\\\\','',0,'?'),(_binary ':\\6]G\Ԋ','wp-content/plugins/jetpack/json-endpoints/jetpack/json-api-jetpack-endpoints.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\\O',_binary '8\\\b\;\E[\l8\\'\v\1}JUB','',0,'?'),(_binary '\0XyyĪ\\ɭ\\!','wp-content/plugins/jetpack/json-endpoints.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\l\0\H\@6',_binary '&\5e<O;\Jy\\n \\"%','',0,'?'),(_binary '0!Z	z.(iK','wp-content/plugins/jetpack/load-jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\nYM]\鯹',_binary ';`>\\&\	\NN6\88!NNt','',0,'?'),(_binary '\\8\$AG~*\\o','wp-content/plugins/jetpack/locales.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	T xO\\5Ф|',_binary 'd.q\n\\\ø\\\\mrg\','',0,'?'),(_binary '~zqgחd\eS','wp-content/plugins/jetpack/modules/.eslintrc.js',0,_binary '\nU*~\\r`\',_binary '\nU*~\\r`\',_binary 'bJ\ìEJ#u58+~\l\\r','',0,'?'),(_binary 'Aw3\\\\o\!\','wp-content/plugins/jetpack/modules/after-the-deadline.php',0,_binary '@\}.\P',_binary '@\}.\P',_binary '\P\9Sd[A%wf=l','',0,'?'),(_binary 'E2\B\ӷ\'Ž\\y\','wp-content/plugins/jetpack/modules/calypsoify/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ҷH-i#\+]td',_binary '\0v\e<~J4-\ox?iH5\\','',0,'?'),(_binary '|\!ԝ\\hx','wp-content/plugins/jetpack/modules/calypsoify/class-jetpack-calypsoify.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\T]8O;\\\<',_binary '}\\f$y!\@LED\gOU\AG','',0,'?'),(_binary 'z\\ॠT\0\\Uy','wp-content/plugins/jetpack/modules/calypsoify/class.jetpack-calypsoify.php',0,_binary 'r:>O<:a\`',_binary 'r:>O<:a\`',_binary 'JU\ZB\3f 0h\(y<$\7\\fU\\','',0,'?'),(_binary 'Rnc,\r\xH8ו','wp-content/plugins/jetpack/modules/calypsoify/gutenberg-styles/button.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\}>\|',_binary '\\59G\nBFʟ\\r0}\	I\r\\'#&','',0,'?'),(_binary '\Q8~V\m\% ','wp-content/plugins/jetpack/modules/calypsoify/mods-gutenberg.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1OŦ\\\:A3\f',_binary '\(^\01\?Z\\U\\H\۳Ke\0','',0,'?'),(_binary '`n6V_5aI','wp-content/plugins/jetpack/modules/calypsoify/mods.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n=՗\{x5\\',_binary 'G~\fr-/\\/@\\-ED\\\84\\','',0,'?'),(_binary '\~\\rAVOv7\','wp-content/plugins/jetpack/modules/calypsoify/style-gutenberg-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ax؈vB',_binary '3X I\\\s\Y\\5솢+X','',0,'?'),(_binary 'o@u\/j~0D','wp-content/plugins/jetpack/modules/calypsoify/style-gutenberg.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\<fy&5',_binary '.\vջ\\r\#(\Hu\\\ܩ\͗','',0,'?'),(_binary 'ʼGer\:i\1','wp-content/plugins/jetpack/modules/calypsoify/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\	3y\Y',_binary 's2ag\7h\\UKy\\\f pZyf[K','',0,'?'),(_binary 'vK\0yN*\BGN','wp-content/plugins/jetpack/modules/calypsoify/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?@[YTTiQn',_binary 'n\Φ;7dF|\J|z$\L??','',0,'?'),(_binary 'J$\\\G\A\\(\','wp-content/plugins/jetpack/modules/carousel/jetpack-carousel-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\i\&\zC7\a',_binary 'ľ\\\0\\+ȸ\zL\\RU\3l\W\\','',0,'?'),(_binary 'd@\\\\\\v$','wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ĩk\:`\',_binary '\5N[1if-S̰\\Z\}㶊b','',0,'?'),(_binary '{v\rd\~?\W<','wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\F99.e\E	l',_binary 'k,4m\Hz`=\DArsi\'','',0,'?'),(_binary '\\\n$?9^W̽t','wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '߿A\q}*V\>3u',_binary 'y\\\(mH\\<k\0*\\Xr\\ZĖ','',0,'?'),(_binary '\J<\i\T\r4','wp-content/plugins/jetpack/modules/carousel/readme.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ګ<\8&0A\u8',_binary '\&G9G\\Oj>עx\\\T0\R\0','',0,'?'),(_binary '&\\y;w>\','wp-content/plugins/jetpack/modules/carousel/swiper-bundle.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɥz\5v',_binary 'ܗ\\"Tud_\!\\շ9\]=B6','',0,'?'),(_binary '\\\:\\\\\n','wp-content/plugins/jetpack/modules/carousel/swiper-bundle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\\D%wzu4m\',_binary 'nz\YR\n\2\\\\0\\\\\&57','',0,'?'),(_binary 'wQ\-t?`\I','wp-content/plugins/jetpack/modules/carousel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OJ7\Z\e~',_binary '\깉՚I\iS<\\\'`','',0,'?'),(_binary '\2(*\"y$|Ҧ1','wp-content/plugins/jetpack/modules/cloudflare-analytics/cloudflare-analytics.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\0.Pa|̚P\@',_binary '79R\\v<ƴM\t#\\\','',0,'?'),(_binary 'W_\\w*\GP{\'','wp-content/plugins/jetpack/modules/comment-likes/admin-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FS\ɐ@\8\',_binary 'q\I1|:@]\K\\|K\\e\&\\\)\','',0,'?'),(_binary '\W\n\骔\"\\','wp-content/plugins/jetpack/modules/comment-likes/comment-like-count.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\jl=xx́',_binary '\\a;p9\"`q%0\;\I\\rv','',0,'?'),(_binary '_M\E+B,]S	','wp-content/plugins/jetpack/modules/comment-likes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \F4q]ĻMS',_binary 'JZA\\K06\n#\\溸hg!','',0,'?'),(_binary 'o\\yd\r5\\','wp-content/plugins/jetpack/modules/comments/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\nnoyGf(\\-',_binary 'el+6\]{]\\\[5a\H\\8','',0,'?'),(_binary '\%uH)d\u','wp-content/plugins/jetpack/modules/comments/base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dU[MSwj^{ɉ',_binary '\^ZW8T;M\zܤHuNYc4@','',0,'?'),(_binary 'HT\\ۺh.ښn\','wp-content/plugins/jetpack/modules/comments/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\r* j|p׭]',_binary 'SGmA4K\F{dp\'@5.\m%','',0,'?'),(_binary '`\\\\6a','wp-content/plugins/jetpack/modules/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\΃\X5\'2YY',_binary 'r\"\},B4/\)}\׈2+hsʤ?4\','',0,'?'),(_binary '=\\̤\Q==\','wp-content/plugins/jetpack/modules/contact-form/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\\{Rp\\Z',_binary 'Z\~\sO\v!פT\\\\	,ةd','',0,'?'),(_binary '\VIc5V9Z4 ','wp-content/plugins/jetpack/modules/contact-form/class-grunion-contact-form-endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8Q\\)6\\\',_binary '\aߍ1c\\Zvev\X`p','',0,'?'),(_binary '5Q]c\-,\4\t7\','wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K/\&&\\ZU:$',_binary '9\:x\:ժS\*\\5\Zv?g\D\9','',0,'?'),(_binary '1\r63c\\^p_','wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\IQ\95\'m=',_binary '`؝L{\inE2p8\0NNz\\eCO','',0,'?'),(_binary '\ևd?\ַѺ\c<\Z','wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\" tcS묁',_binary ')\>\E}\ULIusL\	i\\4b','',0,'?'),(_binary '\ŴJ:W<N\','wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&m\\X24\}P*p,',_binary 'UJ4\P\\\>\dR\0}\s\','',0,'?'),(_binary 'E[II\\Y\n','wp-content/plugins/jetpack/modules/contact-form/css/editor-style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\d#\ݵ\0㪋~',_binary 'W!~ko\\_8\؈\^/J\<','',0,'?'),(_binary '\r&pH-4\\','wp-content/plugins/jetpack/modules/contact-form/css/editor-style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\na.	:\n\X~\{b5',_binary 'i\ zK\\B7\'S\\\!$p\NS.','',0,'?'),(_binary 'k\"/K&`j6m','wp-content/plugins/jetpack/modules/contact-form/css/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\bY\\RW\(',_binary '	t\<\Z\uͯr5\I\xQ\4W\\r\Xt','',0,'?'),(_binary 'EĂ\?\l\\\\','wp-content/plugins/jetpack/modules/contact-form/css/editor-style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i%`څ\rCH',_binary 'v\\\\Z+_Z/ߩR0\U\1\QP\\n\/+','',0,'?'),(_binary 's\\\eUjNc\\','wp-content/plugins/jetpack/modules/contact-form/css/editor-ui-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}%\hex',_binary '\rٮ;\\A|2\$i\\Z\=+b~','',0,'?'),(_binary '^t޴fL\\\"','wp-content/plugins/jetpack/modules/contact-form/css/editor-ui-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\\4ʓ2\nd s\',_binary 'a\6Š\0>&[\\Y.lؿZ\?sP','',0,'?'),(_binary '\\ȸ\$]fg\','wp-content/plugins/jetpack/modules/contact-form/css/editor-ui.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']yc\\n\2{/\,\\0',_binary 'n\ʙ>˼HFɽ\rh^\\Ѣ^a0L{\','',0,'?'),(_binary 'W-\AR\0\\ZnX','wp-content/plugins/jetpack/modules/contact-form/css/editor-ui.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\C\\}xP\bĄ',_binary '.JR	\4]\fTE\ǧuq>?Ձe\q','',0,'?'),(_binary 'Tk_}SfQ=\\|','wp-content/plugins/jetpack/modules/contact-form/css/grunion-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Z3{/x\Es\',_binary 'L\\\\"Xz,\V\S忝]\|\Ů\','',0,'?'),(_binary ']GGW\\$MQ0','wp-content/plugins/jetpack/modules/contact-form/css/grunion.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XONyB\\^',_binary '\\rBNb\kw#c\̿,ϻ\c','',0,'?'),(_binary '\_\ޱ\h\/\','wp-content/plugins/jetpack/modules/contact-form/css/jquery-ui-datepicker.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\O5,:\k',_binary 'R=C.5t\	\.\\\o\o\T=%D','',0,'?'),(_binary '\N92|Ӵǌ|','wp-content/plugins/jetpack/modules/contact-form/grunion-contact-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\I\)\cQV\`1',_binary '\0uGwCbĮ\\:\.\\6\V\','',0,'?'),(_binary '\\[0@Mx\\\','wp-content/plugins/jetpack/modules/contact-form/grunion-editor-view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':mz\Zͽ\t}`H\',_binary 'ͱ]	\0\ܬ\\itscPj\7','',0,'?'),(_binary '\	*J\.\\'\	v','wp-content/plugins/jetpack/modules/contact-form/grunion-form-view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ըh5:\R',_binary 'Rv\)%pqu\\v)l\/9\-\ ','',0,'?'),(_binary 'Ԫ>(\u\=|\','wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-akismet.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\xW\RԖp\\_',_binary 'r\m\8yt͵6f>ί8\','',0,'?'),(_binary '\\\r\̞Ä&\0X\/','wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-button.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\R\\ڜޭ',_binary '	[q\KJ\\WtGN޼żT\\F%\\'\\','',0,'?'),(_binary 'cg\\\\6ۋi','wp-content/plugins/jetpack/modules/contact-form/images/grunion-form-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sg\f߈	i	\a',_binary '=l\)\(\>wh}\\y\\f','',0,'?'),(_binary 'Wߒ\\\-P54-ՠ','wp-content/plugins/jetpack/modules/contact-form/images/grunion-form.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\a\\\e(',_binary '(9ٱd\5;	/CNQ/M','',0,'?'),(_binary '\Z%+z=\ܼ8\B','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ĭ\\\\P$\$',_binary 'Q6Ɩ\b<E\ \$\\ hKC\l','',0,'?'),(_binary 'my5\r1<\r','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\pvl\\\: \\',_binary '\\\\!\Bb!^\'\MF$>','',0,'?'),(_binary 'c\\9%H\r\Z}','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\0V5\,3B',_binary 't\.K\'\n-F̪Gsɋ$\\yhnh','',0,'?'),(_binary '[\\%`\0C\\','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T\0a\8\p\D%',_binary '[Q\\Y\\}\\/\t)r\D\','',0,'?'),(_binary '\/\\\\'\vl\','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WU\\掔\@a\',_binary 'NӋ<\\\:\z\\\\\w΁@՝','',0,'?'),(_binary '\\\~V0\dK','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';ra0>\\"',_binary 'Gޮ\	a%7\pD\@\IÜA','',0,'?'),(_binary '7\\\u\\VQx','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,\yx3\qj\F\{o',_binary ';\ʀJV\0e+X\@\P?GU\Ӽ$','',0,'?'),(_binary 'H\')lڼ~՚','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's=\\cح%',_binary '\\\ZrpȒ1\̦-\@b*YM\\O\','',0,'?'),(_binary 'Ӕ[4\#ߢ\','wp-content/plugins/jetpack/modules/contact-form/js/editor-view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\]B\ZS\9\',_binary 'Q\]W4\4ivQ5gI\q\','',0,'?'),(_binary '\[$\\j\!.l\\'','wp-content/plugins/jetpack/modules/contact-form/js/grunion-admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z\^\\q\m\\%',_binary 'A\K[,噪4\\-\y7|\"pN\M\okx|','',0,'?'),(_binary 'P\\8\\	CZ%w','wp-content/plugins/jetpack/modules/contact-form/js/grunion-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_+ee,q\\\',_binary 'VJ7.\n-\\j\I\\\\+ײJ(','',0,'?'),(_binary '\\\D\ÀR','wp-content/plugins/jetpack/modules/contact-form/js/grunion.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ߚ\ޘ\.ھə}',_binary '!)\^\.*2]\',1\Y\\Znȸ6M\IC\','',0,'?'),(_binary 'j  i\>\','wp-content/plugins/jetpack/modules/contact-form/js/tinymce-plugin-form-button.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'ǁx~\iB\',_binary '\\0e0!\[ZDݍ\'\Y\;\ʦ','',0,'?'),(_binary 'A\nxA̳f[q?\\!\2','wp-content/plugins/jetpack/modules/contact-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B~z#G\#ya|\',_binary ':F\n\(u`-\Z]B\w!\xbϞ\Z\n','',0,'?'),(_binary 'Jl;0 D\&\\\','wp-content/plugins/jetpack/modules/copy-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H\\u\	\+,M\',_binary 'ub\3\\g.ʓ\YP\h卾׎2(','',0,'?'),(_binary '{ssRkl1\r\&','wp-content/plugins/jetpack/modules/custom-content-types.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ma\\\rJr`\\\j',_binary '+h\Sњ\\jZ( \\k\\','',0,'?'),(_binary '\n3\@Ӹ\\<$','wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`gK@l\[A f',_binary '=(\A]M\ʬvK\l\\','',0,'?'),(_binary '\\PV}7`','wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_ctype.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,e	0?e9EP',_binary '\U˵\\كQ\p\Sueo','',0,'?'),(_binary 'ڞ(µ\'XE_\"\*(\\','wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_optimise.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\xVkЀ}\y',_binary '9&I]8xN(\nUkNJ&\rq\8q','',0,'?'),(_binary '\\\\/<=','wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_print.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+`fo%\vjݕ',_binary '\G\"\|Mj\=q?X<\\G<_\r','',0,'?'),(_binary '\\r./6r	\Te','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KL+	r\\wVhH ',_binary '_\\0bLI5\#m<r&\zWZ\S\','',0,'?'),(_binary 'u\Ȟ\_Y','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Tφ1۞\Vn\\U\',_binary 'i08Q86eޮ+\0\q	4*\L','',0,'?'),(_binary 'w\\`\ڶ|','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nKl\\\x',_binary '\07\!\lhx4ٙ\web$1^\O','',0,'?'),(_binary 'U\ZMX+rʧ','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N!w\[*ٍw\\\s',_binary '\@#~\\{\%Q͛\˔b `D','',0,'?'),(_binary 'º@^L_\_+','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '04\Z%`\`|k',_binary 'E\ڢ̪GP2\F0\\D\CL\ItA','',0,'?'),(_binary '&\۠q9D\'(1','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\̙<G\\m\C~',_binary '	_5\ Ma\\T\\n\d[\Z\R0k\','',0,'?'),(_binary ',#q1\N\E','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':$a @\\\"=',_binary 'G3\\䡻\DyA>6,l\\\ѯ:\\\','',0,'?'),(_binary 'oCDgƝ*GE2^','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kɅ\\\Pk!Y\)',_binary 'Jv\<\\g\r\EeaZ%\BW&$\gO','',0,'?'),(_binary '{uH\vq~d\','wp-content/plugins/jetpack/modules/custom-css/csstidy/data-wp.inc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' 5\=\I\j\a+',_binary 'B\!\\N\ҳNYy5\m=\','',0,'?'),(_binary '\4\nbILr \','wp-content/plugins/jetpack/modules/custom-css/csstidy/data.inc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\a\\\\ &\',_binary 'yڋ$\WI쵈\3\^^i	\)>\N!H\"','',0,'?'),(_binary 'ʻ=\sN\\t3\%','wp-content/plugins/jetpack/modules/custom-css/csstidy/lang.inc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ܔ>Ѽ\Q\\ܭ',_binary 'I_gz?!ϜZ\\ЭM7','',0,'?'),(_binary '@\N8C\ .:ɒ','wp-content/plugins/jetpack/modules/custom-css/csstidy/wordpress-standard.tpl',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\e\\8\^u\\',_binary '/r}\'\\\r\\ʀ\|`\'-ܐ\','',0,'?'),(_binary '^x\O\@','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/blank.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u+\`\P9\\df\',_binary '\!xL\1\\\\GK\nթ?ʞ|\9y','',0,'?'),(_binary '̨4\c\f\\','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jpd{\\$\\0\\a',_binary '\\nS5\x;\Eӈ\p\EՀ\\\:\#vCr=Q','',0,'?'),(_binary 'R\\04`\\'JQ^','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aF\n2`K\Z\\2',_binary '+tY\ZF^~\`(\t,YQYM\\Q\\p\\','',0,'?'),(_binary '\E-}\J\i\̎\','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u\%\8E+v',_binary 'YJ\ģ_\ϹK\"Ҍ?\ta\kc\','',0,'?'),(_binary '	\'\\!1heU','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<5m\\"\9T+\W\',_binary 'Sh\/M\\;`r\f\{\[aO\Q\','',0,'?'),(_binary '0vS\\\^t|׵\0','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[۲\z=9\',_binary ',\N\ˏ\\\\Zޭ3\\\7h:c','',0,'?'),(_binary 'ڪ\\\\H{\','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qc0/\\',_binary '\\\,T&ͤG;\Ot\J\\C9 I\','',0,'?'),(_binary 'h}RU\\\W)/0','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ugl\O\31m',_binary 'kTS\Zk\ra4HK\ef.Xn\','',0,'?'),(_binary 'R}TCVh{\ÿ>','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gu@\˂[>!\j',_binary '\eDg\\ےuW\ݳl\^\f9\¹	','',0,'?'),(_binary '\0|\C!\r\\ӝy','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/customizer-control.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gD\∬48X?@',_binary '\"\V\\~۩B@EͿ\\$LC&\0','',0,'?'),(_binary 'xNb}250},T','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/rtl/codemirror-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\\Ie`q9',_binary 'TTe\:\YPh\\ݮ/N{w\r','',0,'?'),(_binary '\9IeEFn','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&w2\K\h\KF6p',_binary '(\\п,\\Ħvdߖ`5BoY	\N','',0,'?'),(_binary '/QլR?!щ\%','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϣe04rB\qtr\Z',_binary '4\\f>n\R1	7','',0,'?'),(_binary '\C\\Ѿ<\Ž','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\8W	j @\\',_binary '\1ԥu\ZTt\U\ϴ=(w24h\0*֜_','',0,'?'),(_binary 'OQ+\\\S\E\^.','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\w;$lhhm',_binary 'v\%3U\\\\2\kT\KP&\-d\Q-\','',0,'?'),(_binary '\\n\y\\\\','wp-content/plugins/jetpack/modules/custom-css/custom-css/js/codemirror.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\\+K\Uyf.',_binary '\\.\`\\:#Ym\D\\\Z\6\','',0,'?'),(_binary '\%1y*\`t%$','wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\\DuI\}d\AB',_binary 'I--@7\"%J=\\ǘ\WXz\\n-','',0,'?'),(_binary '\WX5´\\','wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css.core-4.9.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/?z{gU\\h)',_binary 'M@\k\|\\"!\\0i>\\#O6Q|\3\','',0,'?'),(_binary 'wf\q\&?B\','wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\Co6/A[\\\',_binary '5\\QpȪŸ8\\3&hk6(LH)','',0,'?'),(_binary 'm\N݀$XR\=\','wp-content/plugins/jetpack/modules/custom-css/custom-css/js/css-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\k/XV\\Z{',_binary 'q>f5%O\\\\r\?\\k\\\b','',0,'?'),(_binary '\2%<i\+<\<','wp-content/plugins/jetpack/modules/custom-css/custom-css/js/use-codemirror.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\bA:\\'Ka',_binary ';w\meY5jOy8R=σ\\&\\Cd','',0,'?'),(_binary 'p#\\/pIG\2\n֊\','wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/lessc.inc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\`\]2\3\n\0\',_binary '\CRg6[\7Ay\n\a\_\|\\0\\','',0,'?'),(_binary '<V\r͘\','wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/scss.inc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%CeY\,\',_binary 'F\\T=\Z,\\\b\\"#\ \\','',0,'?'),(_binary '/+\8=rI\"N','wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[&J\p\\UDc0\`\',_binary '!ff~͉\')2\\^\'}\Kb]bd','',0,'?'),(_binary 'QDL~۱\]ռ\m','wp-content/plugins/jetpack/modules/custom-css/custom-css-4.7.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\nh-Q',_binary '\0=/-})m\n\"9\RE?c3i','',0,'?'),(_binary '\}3\|!i8\O','wp-content/plugins/jetpack/modules/custom-css/custom-css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\byN3@\/',_binary '\,7[!x<v&\n[\\}ifw','',0,'?'),(_binary 'H\j\\<\u','wp-content/plugins/jetpack/modules/custom-css/migrate-to-core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\ &J2\Bs0G_l',_binary '\\.\b[HSٚω\n\MNϤ8','',0,'?'),(_binary '\\c\\\\=\Ԗ\Z','wp-content/plugins/jetpack/modules/custom-css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l\r:\C\%Ԧh0',_binary '\j5c$\'\\\0\\\r\\\%pԖQ','',0,'?'),(_binary '\lԔ\\=1\1','wp-content/plugins/jetpack/modules/custom-post-types/comics/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \+\@\T\r',_binary '\2xJ\h\r\\\Z\\>(Z\ȟ','',0,'?'),(_binary 'p\-\\pL','wp-content/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=Usp\\~>\\r;',_binary 'y\n9z4\\\\3\%}Rz|\6&VV-/-\','',0,'?'),(_binary 's\Ph\rj&\U\n{','wp-content/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a:\\=!',_binary '\uh<2\\LJi\\','',0,'?'),(_binary '+B\\%\\>\','wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E_* \*-P',_binary '\\bu:[\̳\X@\+\\\\B\[(','',0,'?'),(_binary ')1m>Y0\\\ҏ','wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Ϣ\\r\Rߚ',_binary '}k9{\:\q\aS#ZLj-Z\\p','',0,'?'),(_binary '9~	\\(@\'-OX','wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z\\\dmT\',_binary 'uP\\ P:͒\\CޑFQb\}=\Y','',0,'?'),(_binary '9g\s\8e\5lA','wp-content/plugins/jetpack/modules/custom-post-types/comics/rtl/comics-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>aя\r[Ad\Z\\',_binary ' \:^q\wZpU1\#\\0\O-','',0,'?'),(_binary '\it3\]|e7ԥ','wp-content/plugins/jetpack/modules/custom-post-types/comics.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h텈VW|x\',_binary '!r\\\T#~\jϬ7TwA','',0,'?'),(_binary 'w\FsƩ]#!4u\','wp-content/plugins/jetpack/modules/custom-post-types/css/edit-items.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '84\\\\\\\C\M\=\0',_binary '\ \,]贈\\\z0n\\\','',0,'?'),(_binary 'V\rX\59\K\\\n9a','wp-content/plugins/jetpack/modules/custom-post-types/css/many-items.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u·f\\I\\K\',_binary '\g6-~\\1g\qo$m\.΍Nￒ\0','',0,'?'),(_binary '\'\#\- M\OWk','wp-content/plugins/jetpack/modules/custom-post-types/css/nova-font.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P\>?C\'@h\P3',_binary 'cAsJߐk^ޗ~,\nøo\0Z','',0,'?'),(_binary '~\n/fŒ}','wp-content/plugins/jetpack/modules/custom-post-types/css/nova.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9\d\HSQ\',_binary '<\Z\Z#{;4:J{A:\C\\K\'\','',0,'?'),(_binary 'Ř3*Y\\4+J','wp-content/plugins/jetpack/modules/custom-post-types/css/portfolio-shortcode.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>qU+A\O\iE`KN',_binary 's\\U\\[\nc\}Pڭ Vpn\0','',0,'?'),(_binary '4(L3\,\','wp-content/plugins/jetpack/modules/custom-post-types/css/testimonial-shortcode.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Le*ݡ\(\',_binary '=6\2t`\\%ٕ\;I\\?җsX\,\','',0,'?'),(_binary '\}\\M\\s','wp-content/plugins/jetpack/modules/custom-post-types/js/many-items.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ܟ\`C\]?\\\\',_binary '9H\M:};~6I\lFbG8F7`\J','',0,'?'),(_binary 'n40\)','wp-content/plugins/jetpack/modules/custom-post-types/js/menu-checkboxes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\\$X\\p~\0=\',_binary '̈́t\"\]Mhf\F}s͠\|\','',0,'?'),(_binary '\\f]\XXJ','wp-content/plugins/jetpack/modules/custom-post-types/js/nova-drag-drop.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nB<6@\Ȑd\\',_binary 'h\\\ \h>(\Ž~hn\_|a','',0,'?'),(_binary '\\}JtX\','wp-content/plugins/jetpack/modules/custom-post-types/nova.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[f>\~*%\PIC\',_binary '~n{\޷<4dlD$)W(\\r','',0,'?'),(_binary ']Eԇ\0?4H\u','wp-content/plugins/jetpack/modules/custom-post-types/portfolios.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iUD\r\Ԥ2m9:\%',_binary 'E喆\̍U\<\cJGsE>','',0,'?'),(_binary '͢l~\60}\','wp-content/plugins/jetpack/modules/custom-post-types/testimonial.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"\P\֞RQ/d',_binary '_C\\'\Cm=$z\'\EZb\irK_','',0,'?'),(_binary 'Dw\\\r7xMXO','wp-content/plugins/jetpack/modules/enhanced-distribution.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\74~\PB)(\',_binary 'r:\"\xp\PUේL2\r)\\\','',0,'?'),(_binary '>{?OB8p\&\\r3z','wp-content/plugins/jetpack/modules/geo-location/class.jetpack-geo-location.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\H	\L\e[',_binary 'uj\ioUUф!-\ɷ!H$Cz=','',0,'?'),(_binary '\ H,!`','wp-content/plugins/jetpack/modules/geo-location.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JG\\޳*:\\J,/',_binary 'l\gg\\DL~XIiԜ\Wb','',0,'?'),(_binary '\<\'e\\+qO','wp-content/plugins/jetpack/modules/google-analytics/classes/class-jetpack-google-amp-analytics.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qa \wi\',_binary '0쨏\t\sڱǚ/sCb	ʻ_@','',0,'?'),(_binary 'e\El}D\\Z\"\X[','wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-legacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\r/,c,.,\ZBP\\\',_binary 'A	\Og-!d+\Z\\0_\0\Z\Y','',0,'?'),(_binary '\@pm$\\5D','wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\T7\nS35\\vxW',_binary '\\y}\ZԭNO\;\v\#ln\>k','',0,'?'),(_binary 'L	\!\\\Z-Xz\','wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-universal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ʬ%=i/>\\(',_binary 'CzA!~\ѝj\\λ7Σh	?qz\','',0,'?'),(_binary '\=\\\\\'\ݬ\','wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\\m\=FNT',_binary '~XT2*\h\V,\h#\0y%`\Z','',0,'?'),(_binary 'E(\ذ^0','wp-content/plugins/jetpack/modules/google-analytics/wp-google-analytics.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\^=d8\\',_binary '\]P\\/9Q\}$\#\	i	E','',0,'?'),(_binary '\"\\\T\(݀\','wp-content/plugins/jetpack/modules/google-analytics.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z限r',_binary 'n⹎<i]@\r]ak\.v\T!?h','',0,'?'),(_binary '\$`\\6Y{Y	','wp-content/plugins/jetpack/modules/gravatar/gravatar-hovercards-amp.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QD\1!\c\1\[<',_binary '1\\\ZzZz(\\[\<\\\\̯\W\Z','',0,'?'),(_binary '\SM/ kє_','wp-content/plugins/jetpack/modules/gravatar-hovercards.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',nI\B\GZ*\',_binary 'D\\̛TE\\\RY\^<7?\','',0,'?'),(_binary '9\J\\a;zH	','wp-content/plugins/jetpack/modules/infinite-scroll/infinity-customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~C\W4<b\r\\',_binary '\0ė8ZF\V\m}F\֝ȑ\WaIu','',0,'?'),(_binary '-\t\nw`\'~','wp-content/plugins/jetpack/modules/infinite-scroll/infinity.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/`R}+',_binary '\KW]U!\\H`\ֻ@@\|\|+v','',0,'?'),(_binary 'xf<X\P;','wp-content/plugins/jetpack/modules/infinite-scroll/infinity.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\\\٭V}؏\',_binary 'Oj<\\n<]\\\o]OD\Q','',0,'?'),(_binary 'd&;c\'P*W\S','wp-content/plugins/jetpack/modules/infinite-scroll/infinity.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z9,\\Z\\i',_binary '\c7؈囏\5D(1\ҁY!','',0,'?'),(_binary 'oF9yH\l\','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ADk)O\H\\\?',_binary '0%\\\<\\\< \"ObVǎ\y\As','',0,'?'),(_binary 'ln:\7\z`Ѝ\a1','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\|\S1\\x',_binary 'TMKf\q%\r\]YN\Oi\\\N,%\\','',0,'?'),(_binary 'oʆދ\wR`8','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\g^. XTx',_binary '\4\*|\\i⮈]+\;ʙ\\!','',0,'?'),(_binary 'ٻ5\\H~/','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\2D\*-Í\d',_binary '$d\\N0`\\\`3\^\w','',0,'?'),(_binary 'q]_\A\6ꟃ\','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\=J\[\\އk',_binary 'ދ0yN\0JI\A/\XZOiER:','',0,'?'),(_binary 'D_]h\\\ۘ}*','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\d\\ӎ]',_binary '`\\'qI.\Q\JREk+GT','',0,'?'),(_binary 'Aϻ75߹\*\','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']^±LLT|޳8:\\',_binary '\\crJ\ˊa9u⬋a)o_1u','',0,'?'),(_binary '$1\M\GyP\i','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\J}ɫ	p\\0',_binary '.&\>\ÿa}\Hd6\Ԡ\|','',0,'?'),(_binary 'a\\2fj.!gW\','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^jx\Uk!',_binary '@q\ \zv\0I\\"\'7\rb\F1\Co','',0,'?'),(_binary '\$:9UڂA\[','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\,/\UH\',_binary '\j-\\'k7#\'g\R\m3\\','',0,'?'),(_binary 'E\0DJe	GIPK_\]','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\K-@ѿ=\j',_binary '\\\8\+A&#ΖlcmS\\\0hZ[','',0,'?'),(_binary '\a]%Y\\\n].#\n','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kߴ\\\\\.A&<',_binary '\Dp6ԟD$k~/\\\'vԸ\t\\\\p','',0,'?'),(_binary ']b\\\[>޷͘\\;','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\qq\\5ʘm\',_binary 'ۅ\'%\H\{RQ\w\"V׎D!G','',0,'?'),(_binary '\/{o.O+\0','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k kSv\m\\\g`\',_binary '\Z\(H\¶#d+\x\f\\U\0','',0,'?'),(_binary '\R\-\1#\5i','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1\\24Ŵ|cH',_binary 'j\n~\Ld\4\\z~<g&\֎N\r;\\','',0,'?'),(_binary '\(;YX2\u	Rz','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%A\E\\;\cx~',_binary 'M\Q!q\؈wn(MPZU\'','',0,'?'),(_binary 'b\n \TaH\8\','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\\v\2z+\n\[W\',_binary '\	5\|S5l{$}\;4\v7\b\\w\\','',0,'?'),(_binary 'x{\yf\3','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_)\\U\)\,t\ki\',_binary 'B\\$\\KƧ:\\TQfT\c\r','',0,'?'),(_binary 'M\r\\\\&','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0\\m\W\q\@',_binary '\\\Z\\q\1x\ ^\\\pysQ','',0,'?'),(_binary 'yr\\\I8\\A\'w','wp-content/plugins/jetpack/modules/infinite-scroll.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\D\g\"\\\',_binary 'G\Z\:E~֪vf\	t\\RE	++\','',0,'?'),(_binary 'Z\\3\\\ƒLE','wp-content/plugins/jetpack/modules/json-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\`\\~\{KGh',_binary '/38=\\\04\@u<r绉t`O','',0,'?'),(_binary '\\\$RsbLz','wp-content/plugins/jetpack/modules/latex.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯id_\\\!\',_binary 'B\͜l\\\\\\\|\0!!\T:_\)zu\','',0,'?'),(_binary '\\9\%[\\i\:C','wp-content/plugins/jetpack/modules/lazy-images/js/lazy-images.js',0,_binary ']A`ۏSרl\',_binary ']A`ۏSרl\',_binary 'Siz\`3!|!8\'%\\7\$&{]rOS','',0,'?'),(_binary '\\L\؝B\','wp-content/plugins/jetpack/modules/lazy-images/lazy-images.php',0,_binary ',9V4X#\nA',_binary ',9V4X#\nA',_binary '\;k\\\	8|%\\\w\Tȳ\0','',0,'?'),(_binary '\mNA8K}$\6','wp-content/plugins/jetpack/modules/lazy-images.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RŮ*/qJV\\	Ĥ*',_binary '\D\	Ltag:zttnc	ԮV.0<\\r͈\','',0,'?'),(_binary '\fOdg`\	\'-','wp-content/plugins/jetpack/modules/likes/jetpack-likes-master-iframe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\\\x	\\',_binary '\ώ1\.߾K\(5\\ل%\nl','',0,'?'),(_binary '\4gf\xaw\','wp-content/plugins/jetpack/modules/likes/jetpack-likes-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xʔ\v',_binary 'B\\y(G\0(\\AX2o\\','',0,'?'),(_binary 'bV!EPz\	-#|\','wp-content/plugins/jetpack/modules/likes/post-count-jetpack.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)\r^\\ѥ\H',_binary '#Uxv\"\\\A\}\\VF\0\\#R\(}','',0,'?'),(_binary 'y\nRz\	/#H','wp-content/plugins/jetpack/modules/likes/post-count.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ų\)\X\ZG\o',_binary 'È\Z\y\r\UEDSwK!W]\0~9','',0,'?'),(_binary '!s\<$\0_M\qU','wp-content/plugins/jetpack/modules/likes/queuehandler.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\'<Rd\',_binary '!\jr\{\k\0C1\ &\&\\\lA\B\0','',0,'?'),(_binary 'U*\\y4ɨ,','wp-content/plugins/jetpack/modules/likes/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\\?!',_binary '˭\\H]\\[t	\`C\','',0,'?'),(_binary 'NQδ(\\R\ f','wp-content/plugins/jetpack/modules/likes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\\v\\\eMɯ',_binary '\Z\o9\\9AN`uf\B`|\\Z','',0,'?'),(_binary ',Y}\J\\1v','wp-content/plugins/jetpack/modules/markdown/easy-markdown.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k.\_毣c~',_binary 'F\\X\\{޶m4@G\\\և\\\\n\-\c','',0,'?'),(_binary ',\']z存\\È(','wp-content/plugins/jetpack/modules/markdown.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H_|\s	b\y<',_binary '\e\\\\k7njdLcK\ܕ5v]!','',0,'?'),(_binary '6\\]\\\\5\"','wp-content/plugins/jetpack/modules/masterbar/admin-color-schemes/class-admin-color-schemes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1	\DAͰl\\\',_binary 'u۽ߛ]\H9\0*[(𥔢*\t\','',0,'?'),(_binary '\\Y\\"V7HM\\\','wp-content/plugins/jetpack/modules/masterbar/admin-menu/admin-menu-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\t\iI\uR	',_binary 'ܴ\\\\l\m*#p\Ly\d\\_ܴ','',0,'?'),(_binary '\us\eç\f\KI\','wp-content/plugins/jetpack/modules/masterbar/admin-menu/admin-menu-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n7z-9c\',_binary '\\\;6\:\4\h9ɮi\J\[/J,w','',0,'?'),(_binary 'f2m\>\\\','wp-content/plugins/jetpack/modules/masterbar/admin-menu/admin-menu.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\e\\TGI|k\',_binary '\r\\A\hC\+\*-\\'','',0,'?'),(_binary 'x)+_ĩ\)\a\','wp-content/plugins/jetpack/modules/masterbar/admin-menu/admin-menu.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\P\\0@\wT	Zq\',_binary '@\ڕߚ=2X\\\\=H[o\\*Y\ZS','',0,'?'),(_binary 'dWoK}fu{s','wp-content/plugins/jetpack/modules/masterbar/admin-menu/admin-menu.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IP%+\\/\0\h',_binary '&_$o\\D\\\#Y\z\\r','',0,'?'),(_binary '(fT\\\nsi\','wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-admin-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r	C\\O6Ut\\r]',_binary 'h1\\0\\7\t\319`]\\r','',0,'?'),(_binary 'l6\t]&֥','wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-atomic-admin-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`B\rF M\',_binary '\\\05c\\{\`\9ɑ\;#=j','',0,'?'),(_binary '焅W1j\q*i4g\Z/','wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-base-admin-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\nf6?Rv~YL',_binary '\n\\r\j\jnq1\\\ \%\7/\x\3','',0,'?'),(_binary 'WbF]tw?*Ջ','wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-dashboard-switcher-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\DtME\S\Q',_binary '\z!\5J\\\Tj &˃FNp)','',0,'?'),(_binary '\cC\V\%A\\V','wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-domain-only-admin-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\\P\H\F8\\ra\',_binary '\\Zjw\<!\\g\\'.IjFrl','',0,'?'),(_binary 'o\\ģr\\','wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-jetpack-admin-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a|t\\Ѵ\ғ[',_binary '\yq_\n4!\\Z [zޗ%\~oŖqlp','',0,'?'),(_binary '9C;\\\'/\N','wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-p2-admin-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\}R\'-\}Rw',_binary '$\x\q\\\r\N{Ɂ9gZ\\Z\q','',0,'?'),(_binary 'aau*v(ZX','wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-wpcom-admin-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H!	\{p\\>,\r=.',_binary 'R\\\_\T\'\\\x\\:%\0','',0,'?'),(_binary '\EL\n[&\\ZX','wp-content/plugins/jetpack/modules/masterbar/admin-menu/dashicon-set.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\z7bq1t!',_binary 'Ql\C,#\\¹w\82nW$\\֊D\','',0,'?'),(_binary '@9\/\n\?','wp-content/plugins/jetpack/modules/masterbar/admin-menu/load.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/<yz2~,\X',_binary '\p\ߡv\\+靱\[1u\)3*p+l=','',0,'?'),(_binary 'p\Jvro\\\\','wp-content/plugins/jetpack/modules/masterbar/admin-menu/menu-mappings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\(3/\[p',_binary '\'\*\\\ЎC\T\'k\"!6','',0,'?'),(_binary 'x<{DG\\\\\','wp-content/plugins/jetpack/modules/masterbar/inline-help/class-inline-help.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Mj\/\\Q\E\\	',_binary 'zMNC\V1\4O%P\0\&~:c	1R','',0,'?'),(_binary '\>j\/f\','wp-content/plugins/jetpack/modules/masterbar/inline-help/gridicon-help.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\\/6\\Jbr#\',_binary '\\\AZO\RPx礴\\p[n\\nK','',0,'?'),(_binary 'A\t\[r=[?','wp-content/plugins/jetpack/modules/masterbar/inline-help/inline-help-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'il`8se',_binary '2x\p~\Zm,4\"\g2\ IRs#','',0,'?'),(_binary '\-h\̵m9\E~\j','wp-content/plugins/jetpack/modules/masterbar/inline-help/inline-help.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~\\]s\\n2d\',_binary '\?8\\P|\\@\'rĵ/\Ƒ\','',0,'?'),(_binary '{v\aϘ\\\0\n\+p','wp-content/plugins/jetpack/modules/masterbar/masterbar/class-masterbar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AA^{shb\\\T',_binary '\\\i\r\nY\\\\Z<Ekg\[','',0,'?'),(_binary '*@\>B\r\\\aF','wp-content/plugins/jetpack/modules/masterbar/masterbar/overrides.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+ \&i\q\\j%',_binary '\\na	\\\-EW-\\\_5g\"\','',0,'?'),(_binary '\hzh4?\\','wp-content/plugins/jetpack/modules/masterbar/masterbar/tracks-events.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X%ߩ\'e\\'Q\',_binary 'A\=7cג\\+{-+\UD\M\z','',0,'?'),(_binary 'P\F*7\','wp-content/plugins/jetpack/modules/masterbar/masterbar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\SEf\MeBˡ',_binary 'c\v\+=.7\Nf\#\0ks\դZ`>\S','',0,'?'),(_binary 'P3t\\Kvj?\Z\ϐ','wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/class-atomic-additional-css-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vg\˔$\M\nͰ',_binary '\M>\\ڢ\\n\3\\\ҩ)!,߸k','',0,'?'),(_binary '%Δv\\h1XA\','wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/class-css-customizer-nudge.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\Y\,lTL\>',_binary 'qs&@,SR_dJ`l6i','',0,'?'),(_binary '}\ð\\\r\G*IX','wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/class-css-nudge-customize-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\r\"\\\@.\O\:',_binary 'N\/vH \\!8G8L\\fu\0\/X','',0,'?'),(_binary 'RhZ-\=u:','wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/class-wpcom-additional-css-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DNm^S\qy\rT',_binary '\\rؠ2@\'I۫qhwz\\+','',0,'?'),(_binary '\|\'*-_O]','wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/css/additional-css.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@ƴv\\dN',_binary 'sR POz\,$k?D\]\\\','',0,'?'),(_binary 'A(\]\\W}J\','wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/js/additional-css.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\븩wқ:{ݮ',_binary '9\y\5E7Ĳ\)/䍇aV#<\n5\','',0,'?'),(_binary 'KA=b)D~/Y{aC','wp-content/plugins/jetpack/modules/masterbar/nudges/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~>\\+9',_binary 'w\cǎFu\nEFh?\3Kn\}','',0,'?'),(_binary '!h\y#\\\yE','wp-content/plugins/jetpack/modules/masterbar/overrides.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ph\M\zj\G}4',_binary 'k~\\`Ή\\q\t\ܯь\^\=\Z~\*','',0,'?'),(_binary '\\i5\ZP8\/','wp-content/plugins/jetpack/modules/masterbar/profile-edit/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\\5\\\+\',_binary '_r\\\ww^(\,X\CaQ|2\eۯc\','',0,'?'),(_binary '\#\\Po\a','wp-content/plugins/jetpack/modules/masterbar/profile-edit/class-wpcom-user-profile-fields-revert.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G>G\\\><\',_binary '\\אx\IB4\T9ZV\\T\','',0,'?'),(_binary 'k\\\0\'O\E','wp-content/plugins/jetpack/modules/masterbar/profile-edit/profile-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$A7\\&ӽ>',_binary 'y%-Z\\fl|\M֚\ҟu','',0,'?'),(_binary 'F\"\\F\'\\\0vEb','wp-content/plugins/jetpack/modules/masterbar/rtl-admin-bar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ʡ\\\ygg2\)',_binary '9\\9\\\;\mf \0q[\\ ^','',0,'?'),(_binary '\w\D\cRp&C','wp-content/plugins/jetpack/modules/masterbar/tracks-events.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6}[/\6\i\U',_binary 'S\d\Ll\lycݡ\\0)Yyc!\','',0,'?'),(_binary '\x7&\:p\w\','wp-content/plugins/jetpack/modules/masterbar/wp-posts-list/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[)\FJ)l7uY#',_binary 'ݒx\z\笅گ+IFIxX','',0,'?'),(_binary 'e\L\\\z6.\','wp-content/plugins/jetpack/modules/masterbar/wp-posts-list/class-posts-list-page-notification.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bE\Zi\\.',_binary '1â\A\\H\\\'!f\\\{pH$xV&sW','',0,'?'),(_binary 'S<\rwOaEu','wp-content/plugins/jetpack/modules/masterbar/wp-posts-list/wp-posts-list.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ѣ\\7P\\nؘ',_binary ' Bl,I` (\\\V^t4\Yz\GxH\Ov\\','',0,'?'),(_binary 'LIC\g47\M\l','wp-content/plugins/jetpack/modules/masterbar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ch\3Z{\j',_binary '%\\\yщz;r>_o\na %','',0,'?'),(_binary 'F[\\n&\\\i\G','wp-content/plugins/jetpack/modules/memberships/class-jetpack-memberships.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\\`\qB\',_binary 'd\\\?\\rk\mT','',0,'?'),(_binary '\\iA\ln}','wp-content/plugins/jetpack/modules/minileven/minileven.php',0,_binary '2IݴG\*Mn(\S',_binary '2IݴG\*Mn(\S',_binary 'eBh[-0R鴰\\\"b{@\l\gv>\','',0,'?'),(_binary 'Ka\\p;','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/comments.php',0,_binary '7\_~L\`\#',_binary '7\_~L\`\#',_binary '=\cQ\EA7tg\5\xm\\Pc*','',0,'?'),(_binary '\ro\\?` \\H\\','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content-gallery.php',0,_binary '\Zy\\X£ؾ',_binary '\Zy\\X£ؾ',_binary '\qnn$\Zzo\\JP-\xPV\,\','',0,'?'),(_binary '}\K?v Rr\o\','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content.php',0,_binary '%\,\\=5Bv',_binary '%\,\\=5Bv',_binary 'ךMzg\f/e8-\3\̄\\','',0,'?'),(_binary 'p9W\Z7\,\Z','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/footer.php',0,_binary 'W`\\2\BH\"F',_binary 'W`\\2\BH\"F',_binary 'L+{\WzqE\$\<!Ae|\v?\C\\t','',0,'?'),(_binary 'vO\1w8,T\,\','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/functions.php',0,_binary 'j\4K+n',_binary 'j\4K+n',_binary ',2>p7Xתۆ\\ּ\N\:\>\\"','',0,'?'),(_binary 'p\\E2\D\nr֐','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/header.php',0,_binary '\ZJ\F6_Ņ',_binary '\ZJ\F6_Ņ',_binary 'jzU=&ؑf\,hT\]\BQA\Ր\\','',0,'?'),(_binary '8\{\<+5\+\0\','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/image.php',0,_binary '(G\/t\^&C\˖[x\',_binary '(G\/t\^&C\˖[x\',_binary '9:\{/NU\#\Hqz\'\\0\Im','',0,'?'),(_binary 'CG6\Zc{\'q\uc','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/custom-header.php',0,_binary '\[k\yN*n\(Z',_binary '\[k\yN*n\(Z',_binary '\:CFe<v\Y\~׶˝ɟ\(\=u','',0,'?'),(_binary '0*\Rp B%0\Zףp','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.svg',0,_binary '{)2)c}\{+ˋ',_binary '{)2)c}\{+ˋ',_binary '\Y&?Jk9~\\ \Z\~\Ԧ]FǬ','',0,'?'),(_binary 'E\\\l]9\<z`,','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/template-tags.php',0,_binary '\RoK,O#?L|',_binary '\RoK,O#?L|',_binary '\O	Ja07\'\\ebB\MQ\-\Y','',0,'?'),(_binary '\EYћ\R\\dQR','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/tweaks.php',0,_binary '?{\1Jp\=0\rv',_binary '?{\1Jp\=0\rv',_binary 'vu~\\\>N%/\`))\|\\','',0,'?'),(_binary 'B\\+\G\o*\/\\','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/index.php',0,_binary 'Ug\\橈\"\6X',_binary 'Ug\\橈\"\6X',_binary 'm-l\\9D@B\r\\Xb\\\','',0,'?'),(_binary '\&# (VW','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/js/small-menu.js',0,_binary 'D>\v#+>\a\l\R',_binary 'D>\v#+>\a\l\R',_binary 'dZ\\\.\\W=1kt=\','',0,'?'),(_binary '\?\\%ƺ\6~\1','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/page.php',0,_binary '\|Y\7[a ',_binary '\|Y\7[a ',_binary '\9\/E\0\n)\r(~\','',0,'?'),(_binary '\\\2VG\Z','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/searchform.php',0,_binary '\g\\ϸ\2\S;',_binary '\g\\ϸ\2\S;',_binary '\'쟥_\:b \"Դ(Bx\Z(-;*2\','',0,'?'),(_binary '+)\"Z\,)^s','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/sidebar.php',0,_binary '/C\;\-v<\',_binary '/C\;\-v<\',_binary '$2q\a\\f; \\>\x\I\b','',0,'?'),(_binary 'dd\4\]\Á\/:','wp-content/plugins/jetpack/modules/minileven.php',0,_binary '<&hߝz\m\Gw\$\',_binary '<&hߝz\m\Gw\$\',_binary ']\\DU\\M(5\i{1Qi','',0,'?'),(_binary ',Pz۞p:_9','wp-content/plugins/jetpack/modules/mobile-push.php',0,_binary '!y<\X/\\ ;',_binary '!y<\X/\\ ;',_binary 'Xڲ\\&\X[>\\\\Mj\V','',0,'?'),(_binary 'cv޽\f\'Iӛ\ZE','wp-content/plugins/jetpack/modules/module-extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\MY2L_V/)\',_binary 'g\\։*!\\Fx$\\0[k)*\\e','',0,'?'),(_binary '=ॲ|z;\$U%Q8O','wp-content/plugins/jetpack/modules/module-headings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j.ޣ\e0',_binary 'i	\"w\\n\rv\^8r;@X\'L\Ed\','',0,'?'),(_binary '\Zd׮ -`?\hn','wp-content/plugins/jetpack/modules/module-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^tr[NV\\',_binary '\jƜ\ \y~]ps\ǰc&v\','',0,'?'),(_binary '\\刖jܛSe|C','wp-content/plugins/jetpack/modules/monitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\>\*k~z',_binary '\\\P\UǭU\\`Z\FI\V','',0,'?'),(_binary 'EU\)7\-\\'','wp-content/plugins/jetpack/modules/notes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|r)O\\㫔#',_binary '+7\l\\fB\d\\\\\n\9\0b^\','',0,'?'),(_binary '\\#\0*г7w\^s\\0','wp-content/plugins/jetpack/modules/photon/photon.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\\\\\pi\nϠ',_binary '12K\VUOHf\H~\^h囜\','',0,'?'),(_binary 'tF]4\,D1z׫\8','wp-content/plugins/jetpack/modules/photon-cdn/jetpack-manifest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\\H\>Ӯp\W',_binary 'qO]mꄕh\\"T}EЍ\hFg3\\!C','',0,'?'),(_binary 'h\09-\n#\^','wp-content/plugins/jetpack/modules/photon-cdn.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\vCkBwِ<o\f',_binary '\I\"C~\N	hf\n\S.\\R$٨c=','',0,'?'),(_binary 'htHcxƹ\	','wp-content/plugins/jetpack/modules/photon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\_\S`\Ԛ\',_binary '\ǖ2`\=jc`,㖮V]L `*[j.f','',0,'?'),(_binary '%\}\FGj:+','wp-content/plugins/jetpack/modules/plugin-search/plugin-search.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wUWU\~\-\Z',_binary '\\\r\\\\Aq\m6\@tL]\\*','',0,'?'),(_binary '͍wOe0','wp-content/plugins/jetpack/modules/plugin-search/plugin-search.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\z\\\h\\0',_binary 'X\O#6\\\/uWDZꃅ[/\x52','',0,'?'),(_binary 'پ\mK5j[\CKx','wp-content/plugins/jetpack/modules/plugin-search/psh-128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3D	($\i\',_binary 'L\xc\\\BKJ\r\P0xW_q1','',0,'?'),(_binary '9\\ >|','wp-content/plugins/jetpack/modules/plugin-search/psh-256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\AiE&\_4c;',_binary 'O\␟=J\\4\8-~\\CN\wp^q\','',0,'?'),(_binary '\s,\iأ\\\','wp-content/plugins/jetpack/modules/plugin-search/psh.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')v,#\{\ef\\',_binary '8w:7UUR \}Sl.\}Wl\\','',0,'?'),(_binary 'xi Oظ\\W','wp-content/plugins/jetpack/modules/plugin-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G/O\'D@\\SIb',_binary '\DNOG\p\\$\$6\Q\"\n:֕i\','',0,'?'),(_binary 'g򛑳$\<\\\','wp-content/plugins/jetpack/modules/post-by-email/class-jetpack-post-by-email.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F\\$Z	FyT\\xI',_binary '̀\e\W͗Q?G\\\F\Z\"Npv','',0,'?'),(_binary 'ƀ.2\\\1\\\\\f','wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/4&\1wt',_binary 'z|L<\N/OOytGT\q\Z{{\+L\','',0,'?'),(_binary 'h&62\\9\\\','wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=d\\H!q\\0`',_binary '\)U)D\qG\_\O|h\t','',0,'?'),(_binary '>L\?\\\XI','wp-content/plugins/jetpack/modules/post-by-email/post-by-email.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\f\ifDܤ\'1uF',_binary 'MLrJ\\\R5M\\y\ٙ\К6','',0,'?'),(_binary 'L+\W;3\\`\','wp-content/plugins/jetpack/modules/post-by-email/post-by-email.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\f²߯',_binary '\\\TwؠnQֆب~\\:	]','',0,'?'),(_binary '\*\;{إP\r','wp-content/plugins/jetpack/modules/post-by-email/post-by-email.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j 8)z\j\d\',_binary '(4\s8\\	s\\Ho+?k\n3\n\&D','',0,'?'),(_binary 'qkPr\\6Z\L\;','wp-content/plugins/jetpack/modules/post-by-email.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\I\\;0I',_binary '\]\E\\gOR%1\ţ\\H\\+\Z\n(\','',0,'?'),(_binary 'Zf]S \ڀ:','wp-content/plugins/jetpack/modules/protect/blocked-login-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JEٸܿ3W\\g',_binary 'd\7\\KzxU]\n)\'@1}ߚ\','',0,'?'),(_binary 'HeD>\\9U\5','wp-content/plugins/jetpack/modules/protect/math-fallback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q|>\\\ƺ',_binary '`h~A..\.\\\J\7\\ϰP','',0,'?'),(_binary '\\\-\bF\','wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|\\@\XcԎ\\\Z',_binary 'NPq\\\լywJ*7k8\gL?y\\\{','',0,'?'),(_binary '\\R\R,\ ?*','wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!vK,\\צ\_\0w',_binary 'z!_\Hc\\-\\0K\+j/9-y\\M','',0,'?'),(_binary 'R3\ŕ\z\(}\\\#X','wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E-\\\/\,g\P',_binary '\\D$\\e~n6lmjJ\Y\\0n=*','',0,'?'),(_binary '\.hq~\\{ls\','wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\\\%_N^',_binary ':\\NeLYB\\n\\\v<ՅD66\n\Zv','',0,'?'),(_binary ')﵅d\%\P','wp-content/plugins/jetpack/modules/protect/protect.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\m\w%]',_binary 'f\\\\\\\\p\\\Hr\;5','',0,'?'),(_binary '\\)\m\xڎSq','wp-content/plugins/jetpack/modules/protect/shared-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hώ/5]\"bJO',_binary '\nfC+7\wASGa\\'	$qD','',0,'?'),(_binary 'ϟ\p\\\\C\c','wp-content/plugins/jetpack/modules/protect/transient-cleanup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zq\[Y\\n?8',_binary '\,}\r<y\\5D\s\\\q\\','',0,'?'),(_binary 'S޶\\Nz_\D\','wp-content/plugins/jetpack/modules/protect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"9VgRyr.o\',_binary '\\B+\^@\_b+\rDs\}\n\.\','',0,'?'),(_binary 'hә5\\'jjP\+5\\','wp-content/plugins/jetpack/modules/publicize/enhanced-open-graph.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ]2y',_binary 'Uz.ڜGEs⯾\Z\'X6h\op\ ','',0,'?'),(_binary '7uÝ\\$\\X\@X5','wp-content/plugins/jetpack/modules/publicize/publicize-jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uͤ\߼/T',_binary '\Q\J@\Y\#\\9\\dM*o{R','',0,'?'),(_binary 'w\^/*\','wp-content/plugins/jetpack/modules/publicize/publicize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ΏºTz,ߡ\/',_binary 'y`G\5\\ɑ\	\)\\Zl@䯇caz_','',0,'?'),(_binary 'w4\\Md\\\','wp-content/plugins/jetpack/modules/publicize/ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	ѿ\~\G',_binary 'V$;\\\\\\3\EY~ay\O+\','',0,'?'),(_binary '&\e`\l\\N','wp-content/plugins/jetpack/modules/publicize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\@\K\00(',_binary '\G=\]\\\\\\\ۿo~,Z+Ȗ\\','',0,'?'),(_binary '`nW\ɫWt','wp-content/plugins/jetpack/modules/pwa/class.jetpack-pwa-helpers.php',0,_binary '\/\hUORR0\',_binary '\/\hUORR0\',_binary '\>\9\\\^N#5)+\"\\\cT\','',0,'?'),(_binary '\\\#\"!ˌ\c','wp-content/plugins/jetpack/modules/pwa/class.jetpack-pwa-manifest.php',0,_binary '\/\hUORR0\',_binary '\/\hUORR0\',_binary '\>\9\\\^N#5)+\"\\\cT\','',0,'?'),(_binary 'na\9\\rg\s<0','wp-content/plugins/jetpack/modules/pwa.php',0,_binary '\/\hUORR0\',_binary '\/\hUORR0\',_binary '\>\9\\\^N#5)+\"\\\cT\','',0,'?'),(_binary '1>>;\\VGp','wp-content/plugins/jetpack/modules/related-posts/class.related-posts-customize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\]\}.\X`\0?\',_binary 'Atrq\\s:}UNrߓj,w:','',0,'?'),(_binary '\\\Cp6=\','wp-content/plugins/jetpack/modules/related-posts/jetpack-related-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|:\\Lr=\\οq\',_binary 'U^yad\\no\\\<\dq\\(\\\','',0,'?'),(_binary '1q\r\d2\\P','wp-content/plugins/jetpack/modules/related-posts/related-posts-customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sO\C>_=\\<!+\\',_binary 'G\"qY\}\\0DS]\m\j\\G\m\1Fp','',0,'?'),(_binary '\1z/To\\\(*\\','wp-content/plugins/jetpack/modules/related-posts/related-posts-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z!fzSEa]٬)\',_binary 'C%D~߮\'To\Z\{|#S\&\h߷l','',0,'?'),(_binary '/\\"k#WqG(\n\','wp-content/plugins/jetpack/modules/related-posts/related-posts.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\7\n\}\`~',_binary '\>V,\B\\B68!?\CVEdPo','',0,'?'),(_binary '\'>wQ\V*N\D','wp-content/plugins/jetpack/modules/related-posts/related-posts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0л\'\0}K\I8',_binary '6\W\\\UA;G~0; ?uA5\'7','',0,'?'),(_binary '~e_1.\','wp-content/plugins/jetpack/modules/related-posts/rtl/related-posts-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N#ٮ\žO\8L',_binary '	\1.\\"I\\m\\\		}6	\';','',0,'?'),(_binary '\\\\\EC\&3\0\rL}','wp-content/plugins/jetpack/modules/related-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!/BMεz6i\',_binary 'ZF-zs\in%\\s#*=\ S^Ĝp','',0,'?'),(_binary 'K4~\'GwpJ\\#','wp-content/plugins/jetpack/modules/scan/admin-bar-notice.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TRh䀌<\',_binary 'M\$&s\m\\\a`\'\'K\:qw\\Sr','',0,'?'),(_binary '\,\#P S\	8','wp-content/plugins/jetpack/modules/scan/class-admin-bar-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+AI\n\r3',_binary '\^:\\&*5g\\\KC\\\A','',0,'?'),(_binary 'Vu@#\\ΎY','wp-content/plugins/jetpack/modules/scan/class-admin-sidebar-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=&U(zD9\"&Pm',_binary '\ͬx\PHL7jaX9O\Z\:GƂߠ\;*','',0,'?'),(_binary 'm=OݕիLۺ?Y','wp-content/plugins/jetpack/modules/scan/scan.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y$m+\G mE',_binary '\\\\4\\\8iǃ]Y\\1\Dr\eH','',0,'?'),(_binary '\h%j\\/7','wp-content/plugins/jetpack/modules/search/class-jetpack-instant-search.php',0,_binary '{\\,o\\w\'',_binary '{\\,o\\w\'',_binary '\b\\n+(z%\?\\i\\"','',0,'?'),(_binary '\\҆\\\\D&Ku','wp-content/plugins/jetpack/modules/search/class-jetpack-search-customberg.php',0,_binary 'Mg)\1\\pN6',_binary 'Mg)\1\\pN6',_binary '?YJ\t`_ۙԊ\:*M|\\3','',0,'?'),(_binary '\0\\{so\','wp-content/plugins/jetpack/modules/search/class-jetpack-search-customize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',lT\>9EU\Fp`',_binary ' \z8\\}s$ʤd\\s\n$ogQQs','',0,'?'),(_binary 'Yؗ/H\GhnO\','wp-content/plugins/jetpack/modules/search/class-jetpack-search-options.php',0,_binary '\\]T\SW\%oo\',_binary '\\]T\SW\%oo\',_binary 'GW6,du`\\M\\«\KdF\\+x','',0,'?'),(_binary '\"&BE\K&OǀXq\\','wp-content/plugins/jetpack/modules/search/class-jetpack-search-settings.php',0,_binary '\ir]\\\',_binary '\ir]\\\',_binary 'wWނ=~\\J?\!0\\n\?\\\ ','',0,'?'),(_binary '[\ֻX\\','wp-content/plugins/jetpack/modules/search/class.jetpack-search-helpers.php',0,_binary 'cK\3;\4wE^-m\',_binary 'cK\3;\4wE^-m\',_binary '\\rʣq\-\ZޜTw+\'\/A\Ò\\߭\$','',0,'?'),(_binary 'Fo5w\R\Sub~ɏ ','wp-content/plugins/jetpack/modules/search/class.jetpack-search-options.php',0,_binary 'q\z\/F0+\',_binary 'q\z\/F0+\',_binary '\k\,C\\&\\(\e߆2-	\','',0,'?'),(_binary '}~a\\$h@\b','wp-content/plugins/jetpack/modules/search/class.jetpack-search-template-tags.php',0,_binary '&\\5,,C*m',_binary '&\\5,,C*m',_binary '\7OG\r\\\C+C\LGq\Lc]','',0,'?'),(_binary '\\\r,\\\\','wp-content/plugins/jetpack/modules/search/class.jetpack-search.php',0,_binary '\GT\0\@\*ޛNR5\Z',_binary '\GT\0\@\*ޛNR5\Z',_binary '\$a{/\=\\\r\B\ 8z\\\','',0,'?'),(_binary ']\'\\\DrgXJA','wp-content/plugins/jetpack/modules/search/customberg/babel.config.js',0,_binary '\"#DK\\\i\',_binary '\"#DK\\\i\',_binary 'n\\J%7`y\\(Ż 1n\\1{','',0,'?'),(_binary 'P#e\^W\Z\L#%','wp-content/plugins/jetpack/modules/search/customberg/hooks/use-entity-record-state.js',0,_binary 'ͦ\\~j	ge\k',_binary 'ͦ\\~j	ge\k',_binary 'rYgY`pӇK\\\`ˇ\\_\̝\	','',0,'?'),(_binary 'ӊ:i۸w\,v\]>','wp-content/plugins/jetpack/modules/search/customberg/hooks/use-loading-state.js',0,_binary 't,b\\\4Z',_binary 't,b\\\4Z',_binary 'CּWez\"x\>j(t^\\_\\?!t','',0,'?'),(_binary '`\sށ¸ZJ','wp-content/plugins/jetpack/modules/search/customberg/hooks/use-search-options.js',0,_binary '5̚tMZۇ\0',_binary '5̚tMZۇ\0',_binary '\"\7Mֹ<gd=Di%l\\V\.7\T','',0,'?'),(_binary '!\i\a14]D','wp-content/plugins/jetpack/modules/search/customberg/lib/analytics.js',0,_binary '6\\5\'\}e<I\\',_binary '6\\5\'\}e<I\\',_binary 'æ;c\\5W\{7FO\\\\¼\``$','',0,'?'),(_binary '\\YJ|\\\\\4','wp-content/plugins/jetpack/modules/search/customberg/lib/constants.js',0,_binary 'U4\48CJb$X\',_binary 'U4\48CJb$X\',_binary '^/w=9/{ƀMa[h','',0,'?'),(_binary ')ׂt/cHr','wp-content/plugins/jetpack/modules/search/customize-controls/class-excluded-post-types-control.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jafj7\\+M:\r',_binary '\H\PnBAפt (\'h\O\;R_1O','',0,'?'),(_binary 'Ic+\"\1I2\0\	','wp-content/plugins/jetpack/modules/search/customize-controls/class-excluded-post-types-control.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~@\\0v(',_binary '\<qok\\z݁h2\\(\\\X$ֻ','',0,'?'),(_binary '\n@\\{I\?','wp-content/plugins/jetpack/modules/search/customize-controls/class-excluded-post-types-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\\K\\;ߟ\\γf',_binary '\R\v\[kN\\M\\a_KƸB','',0,'?'),(_binary '[q=\\+m9<\>u','wp-content/plugins/jetpack/modules/search/customize-controls/class-label-control.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\n6`{\\Z3:',_binary 'e<\/.Lz\\\ܔ8h\n0XG.0~\','',0,'?'),(_binary '\%B+_\\\\','wp-content/plugins/jetpack/modules/search/customize-controls/class-label-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\\G\r;',_binary '9I\af. ~\09Ff	&Ē¡f	Ry','',0,'?'),(_binary '\%/A\Z\\0k','wp-content/plugins/jetpack/modules/search/customize-controls/customize-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p1O\\)Z\\Ǟ\',_binary '\r\WI*{\\\8\7e\\<\n\,\\\6i','',0,'?'),(_binary 'y\eE\\} ','wp-content/plugins/jetpack/modules/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{R8\X\O\nx',_binary 'ň\I\GoD=\\yw؈ɣ\\ ܲE6s\','',0,'?'),(_binary '\\Y\*\è','wp-content/plugins/jetpack/modules/seo-tools/class-jetpack-seo-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\\FJ \Ӏ2',_binary '\\\}\\\\\!*(3p#\3ʥJO6','',0,'?'),(_binary 'ӊ\"\\\%ٍ]j\'BlK','wp-content/plugins/jetpack/modules/seo-tools/class-jetpack-seo-titles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iʥ]t\%/mI',_binary 'd\dM\\fФ \\\v%\\)l`\)K\','',0,'?'),(_binary 'r\\)sھ|\^','wp-content/plugins/jetpack/modules/seo-tools/class-jetpack-seo-utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K֌s\ȋXC',_binary 'Fϯ>7\\kF\'\=މ@u\J\b\z','',0,'?'),(_binary 'ڡiZ \r\p\\(\','wp-content/plugins/jetpack/modules/seo-tools/class-jetpack-seo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\`\3>\}J{+\0q',_binary '(	A	j<g:\i%(.\\\\\W','',0,'?'),(_binary '#\,\^*','wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-posts.php',0,_binary 'Zһ\&\ic',_binary 'Zһ\&\ic',_binary 'U1$\eBF \\.V\R#g+p\','',0,'?'),(_binary '}\\\A=j_\\\0\Y\D','wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-titles.php',0,_binary '2S\k8\n\~88ȥB',_binary '2S\k8\n\~88ȥB',_binary '\'(\_j\hq\\n%\c\%5n\^\\n!','',0,'?'),(_binary 'B\'\[_;MRP`','wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-utils.php',0,_binary ';c\ EgP',_binary ';c\ EgP',_binary 'j\Zf0\\	a\Z!$Q%3\\','',0,'?'),(_binary '\,F\":()r\F','wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo.php',0,_binary '\\\8\LO\"<Q.j',_binary '\\\8\LO\"<Q.j',_binary '7m\"͋cS\A\ ΘT\$\0ˁ;','',0,'?'),(_binary '\;*\t`DΉ\XU*','wp-content/plugins/jetpack/modules/seo-tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ѵ\\r\0ۥ81`',_binary 'v\\y\K\\?\Enn\cI\;Ğ','',0,'?'),(_binary 'Le\35d8\p\%~Wg','wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\3\Z`vs40	`',_binary '+f\-\W=\c?\\\U,\\','',0,'?'),(_binary '\0`\\L\F\\\\`','wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\tn\͚1WU˪i',_binary 'Il\\з\\4HGey\8.P\"\r,4Q\','',0,'?'),(_binary 'vy@\gql','wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ hC\RҝO\1E,\',_binary 'bP[M\\SNxi./v\8W?D \Z\L\ht\','',0,'?'),(_binary '\\\r,qb\!jހ','wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZT\+\\t\k',_binary 'F;7HEβ\|[j~,b<\{\','',0,'?'),(_binary '\d+ԙ\:32\a{\','wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ͅ\\'QA\'}\\',_binary ':6ګz\D\si\'\DU','',0,'?'),(_binary '\\5\"C7w\_*','wp-content/plugins/jetpack/modules/sharedaddy/amp-sharing.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\H\[k\(&Q\',_binary 'Sg\ZW26۷\\f\Og8*].\\-\?{','',0,'?'),(_binary '\^\\w0_','wp-content/plugins/jetpack/modules/sharedaddy/images/after-the-deadline@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\E1oE\Oj\',_binary '\P!>8\bG\\\\gL:g\','',0,'?'),(_binary 'Q1n1B*\z','wp-content/plugins/jetpack/modules/sharedaddy/images/comments@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y.C<\v`\\r\r\X',_binary '\\wR\\f ߴ\'|\Z\\+\\\%\F','',0,'?'),(_binary '\Fe C\P>\','wp-content/plugins/jetpack/modules/sharedaddy/images/contact-form@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z_Y\__\',_binary '\\o.[B\\sh\\;\~y\j\)q$','',0,'?'),(_binary 'd t tB.j.r','wp-content/plugins/jetpack/modules/sharedaddy/images/custom.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\!EO\\y}b$',_binary ']+\~\\\\\\\\+ecxUU\V	퇆','',0,'?'),(_binary 'TwtJٹڃ7C','wp-content/plugins/jetpack/modules/sharedaddy/images/custom@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(\.\A\"$g|[',_binary 'k\\͑P\L\h\DV=x$\^T>','',0,'?'),(_binary 's%d\ٝ\1(\','wp-content/plugins/jetpack/modules/sharedaddy/images/designfloat.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E>oaBn~d',_binary 'eWXGx\Ƈo\'_OV\w\nO','',0,'?'),(_binary '`F\pT<JW\0H\Q:','wp-content/plugins/jetpack/modules/sharedaddy/images/digg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ހӏ?\\Y1j?',_binary '$\Q]\b\\\\\\M\\','',0,'?'),(_binary 'Pt^X\ռf	','wp-content/plugins/jetpack/modules/sharedaddy/images/digg@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\y\\\fH\	',_binary '<fcsrXG\~J7 \\rB^P\','',0,'?'),(_binary 'ɹR\-iKc','wp-content/plugins/jetpack/modules/sharedaddy/images/divider.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\٬2P',_binary 'O4?CjzCk;ug\\m\\\\)i\r\','',0,'?'),(_binary '\ *z	\.)-\\nX','wp-content/plugins/jetpack/modules/sharedaddy/images/divider@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ѧTSi,.tH\',_binary '\\/>ɤ\g\#O]R\W-\<˫','',0,'?'),(_binary 'Q\Z\flk,\','wp-content/plugins/jetpack/modules/sharedaddy/images/draggy.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wq\k+V=X\',_binary 'M\Qs\#ؓŃ\nvFJ\d)\','',0,'?'),(_binary '\vC=.K3\#\w|`','wp-content/plugins/jetpack/modules/sharedaddy/images/draggy@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\\%DQyDj.',_binary 's_b	2S]d|\z\\t\\\aYJ\','',0,'?'),(_binary '쇇j۹\\ro\','wp-content/plugins/jetpack/modules/sharedaddy/images/email.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ckRGduKk\0p?',_binary '|\Ѐ\A\B?vKͺ\ )\T\ ','',0,'?'),(_binary 'ӹbtZs\.\0D','wp-content/plugins/jetpack/modules/sharedaddy/images/email@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O}\\Jw!紆q',_binary 'S\YpdU\N3цHOU\ohl4','',0,'?'),(_binary '/æR\Tl','wp-content/plugins/jetpack/modules/sharedaddy/images/ember.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\hJ	n\%ZZ䝠\',_binary '4{\kxC\Oٞ10]ҩ\Z>\\\Zä','',0,'?'),(_binary ':\FWW\\i\'','wp-content/plugins/jetpack/modules/sharedaddy/images/enhanced-distribution@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8Z\Y\R\0\a',_binary 'rrz),\Ռ\n@ \\W\ք\NU','',0,'?'),(_binary 'h\-#h\T','wp-content/plugins/jetpack/modules/sharedaddy/images/facebook.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zw&	)\቎n\',_binary '\^\,[\$B\\n\6-ՄR!\\z\\"\\s','',0,'?'),(_binary '\ͦa(~','wp-content/plugins/jetpack/modules/sharedaddy/images/facebook@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8N\0\'X\<\4\j',_binary 'zMB!6?rb\c3?\\6\\qM','',0,'?'),(_binary ']I2Ǥ<H%Ȭ','wp-content/plugins/jetpack/modules/sharedaddy/images/feed.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a2\`?+dȫm\>',_binary '=\Z!\Z\d<\i9g؎(&\lOG\\','',0,'?'),(_binary '\&[Ub\N\;\\+','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\$	W\P{\\r\',_binary '\\\Pe4bUC&\s\\Zb\ B\\','',0,'?'),(_binary 'P\_\X	\-4','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q\n_\-N\T,',_binary 'M?\~\f<\\8\2B\','',0,'?'),(_binary 'ZL\Sl8LOt\_','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \'\\q+H$\F\',_binary '\\%\\.O\n\\n\;g\\eI>[D','',0,'?'),(_binary '\tWsEH@\W','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\zMR,L\uj\%',_binary 'a~ұ癪\2\xwy1\l\\h','',0,'?'),(_binary 'B;\\Y|\u','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aj\\\\tq9D:th\',_binary '%SԾ\\Kx<-\Z3\M\u\9T\','',0,'?'),(_binary 'fql\"~\0\wD\"f\FC]','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'تѴ\g&\/\I',_binary '&_c `pJ\\c3=.8b`\U','',0,'?'),(_binary '+g$\ikCP\N','wp-content/plugins/jetpack/modules/sharedaddy/images/kindle.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':f\_6A1s\i',_binary '/\\Z>\\\DE\j{\m9xvl\'|z ','',0,'?'),(_binary '\y|F%\QyҮQ\d','wp-content/plugins/jetpack/modules/sharedaddy/images/kindle@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\\Q>\\"\ZBGV',_binary 'NcG\46v\\'\v2jY\tU$q%\\x','',0,'?'),(_binary '=G&P\)G\vC','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BfQ\0jL\ՂC\\',_binary '!p\(\\9\\K\\pyH','',0,'?'),(_binary 'MA\KLv\9A+\흱','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\\\ҷ,7֣\\',_binary 'Ҧ6\d_+\qW\0~g\0գ1\0FΞ\'\'Ǥ~','',0,'?'),(_binary 'k$\\\B\\Z-','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Mb9k\6x\'\\^',_binary 'AbO\\S:)\b\!\]\34)','',0,'?'),(_binary '\i@䳑R\\~\','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\}-H\\Yn(\t',_binary 'Ĺ\0ݥ~{\\" |f\"3d&^\E','',0,'?'),(_binary '\\0@\\N\nЧ&p/','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BfQ\0jL\ՂC\\',_binary '!p\(\\9\\K\\pyH','',0,'?'),(_binary '#(Y0népb}','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\\\ҷ,7֣\\',_binary 'Ҧ6\d_+\qW\0~g\0գ1\0FΞ\'\'Ǥ~','',0,'?'),(_binary 'TRu	W:\n??','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\oDғ',_binary 'o\/o\\X\\\.D8@ĥ\j/5\','',0,'?'),(_binary '\\\\	iD޵{','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n&\3\x=&_',_binary '~\Q;)\42G*\\W5!KJϨ-,','',0,'?'),(_binary '{ZN9\96','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\r\^9\\',_binary 's%&\r\P\\\=E\T\EZi\za\pe','',0,'?'),(_binary '\'\0\\؉-\o\\Ͷ','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\14\Uu\\ \2\',_binary '@ZJ.:?G\=Vl&\@\q\CX','',0,'?'),(_binary '|H\i \&(','wp-content/plugins/jetpack/modules/sharedaddy/images/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iBcJ\Hp\',_binary '\D(!Rm݂/^L\\\\\\牴\@P\','',0,'?'),(_binary '\.U\\"\>Y52','wp-content/plugins/jetpack/modules/sharedaddy/images/more.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&c_/6\\\\\V',_binary '\'k_\Z\\\\Bbݷ\\+\ifK','',0,'?'),(_binary 'k2\\?Ϣ}&','wp-content/plugins/jetpack/modules/sharedaddy/images/more@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LH \y\{\G\Y3Ma',_binary '\rf䩊E>i\F\WG\Y\ v58','',0,'?'),(_binary 'Gδl<\.*\\\e','wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd~NW\N?&v',_binary '\\\\\-]8\czߤ<\\?K\\','',0,'?'),(_binary '$QyXD`\6','wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T1`?v\b~\Z\',_binary 'v<g}I銦U\G4rn\h-wsGy\','',0,'?'),(_binary 'bd\sԇ\c\\\\ޙ','wp-content/plugins/jetpack/modules/sharedaddy/images/pocket.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fr\z&\n\\\e\'\9\',_binary 't5\?,ͤ=U+e1\d\"IQ-','',0,'?'),(_binary 'EG\\+(\II\Z','wp-content/plugins/jetpack/modules/sharedaddy/images/pocket@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c>S\Z\rir:\"bطD',_binary '\ݏ}\%j4\	#,\OBg\A\U/-','',0,'?'),(_binary '\Fh\\a3\\\\a~','wp-content/plugins/jetpack/modules/sharedaddy/images/print.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Lt]>\>\X',_binary ')pV\ZWi\\Й[ۉɵ͊sh*Mt\\','',0,'?'),(_binary '4T\n\H\(	8X','wp-content/plugins/jetpack/modules/sharedaddy/images/print@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\HILg\ئ\y',_binary 'Kj\\\0x B<pfJS8\-L\','',0,'?'),(_binary '\\Ֆ:\'\\-\','wp-content/plugins/jetpack/modules/sharedaddy/images/reddit.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\d昴e\Y\mY\',_binary '[_u)9\%}8>\\"S#\+\:','',0,'?'),(_binary ';Oߎ\a3\x\\\,','wp-content/plugins/jetpack/modules/sharedaddy/images/reddit@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\z5e	MHB',_binary '2TI\!z\s\ހ髪\\S\\'Df\\','',0,'?'),(_binary '\~\;\$dȲl\','wp-content/plugins/jetpack/modules/sharedaddy/images/rss.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~Oco\=U\#1',_binary '\Z0V\\1\',\ꇬ\ڼ(9uՉ\"W','',0,'?'),(_binary '[\~Ř,ͤMï\*','wp-content/plugins/jetpack/modules/sharedaddy/images/rss@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\0\\	o',_binary 'a\\\o\h//\v\\,\o|Nj\\\','',0,'?'),(_binary 'qd\#\k-\\\n3','wp-content/plugins/jetpack/modules/sharedaddy/images/share-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\w\\\\\',_binary '\Mu\w\\rVaa\X\\8L\"~z\','',0,'?'),(_binary 'g\\@oɬ@+','wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\7[\O<ˁ\',_binary 'm\R*\\\\fyՉ|&#(','',0,'?'),(_binary '֔\\룎X5}\\\0h','wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\\z\7\ǀ',_binary '\!yj	Δ~j\@5J','',0,'?'),(_binary ',D\2Iݫr}\ƫX','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MK翐QpH\\',_binary '\oV߀$	\\\E\a\\Z\4Ғ','',0,'?'),(_binary 'I\\\\RZ\\','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\{\G\k\\[SO^',_binary 'B6M\Px\\A^l(y\o\wbn\\`','',0,'?'),(_binary 'I\Uq\\\\','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']k\N\U-ęmS',_binary '\n\af\9\:V\Ĵ\\\r\\]o\"','',0,'?'),(_binary '\rYArG\^\e','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\s]}Ө\iiu',_binary 'Ũ6\Up\\FDcGC\O-!4%\b(\\\','',0,'?'),(_binary '.K\r\0;\<\_\\X\r\'@','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~쌞\K\r9?Pf',_binary '9;B\zzl\\͖\gU\H\\\uF\]\','',0,'?'),(_binary '\\n*[M\ZY\\','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ho>ë\)M\ݽ.',_binary '\\vR\u\\\	\@`\g]>\/2\','',0,'?'),(_binary 'f\\\~.ʱ.E;^','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\0M) :G\r',_binary '\s%L\'H\\\(zJ\\WoGTt\\:\','',0,'?'),(_binary 'n\\^2\\\','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B!-JW@\9\F1',_binary '\'\#^Ç%}/\\7\j\$?9\\B\\','',0,'?'),(_binary 'v^bX\7i@j','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=]\Z$y\\\\\u]Y',_binary 'n\\5U`\n\z,Z\"p\=IS@l\2','',0,'?'),(_binary '<ԋ?:R\%V3','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!\8R\UAH',_binary '1\\,6\\\ɶ\Q&\\8\\eh?','',0,'?'),(_binary '	\d>ڰ.\ԗ\','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AhV\a\.+\|',_binary '9dj5ku\S\`>\\\\V`(k\@E','',0,'?'),(_binary '6\\jҨ\\f\Ktd','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\!Q\zAC~(B',_binary '\c\_8T4HP~mHߦ%<a','',0,'?'),(_binary '_aD Dj_KZ~\\e\','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\` \\\ \`Q',_binary 'L&Wq\\\؞\Zx\Z\|k\\-\4\\','',0,'?'),(_binary 'M\sUd\j^C5','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\*(&Wϐց',_binary '4CHq\g#U\J)sD4&DI','',0,'?'),(_binary 'Q\\Fdu1jV\r','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\_l}\PwcsV',_binary '0\\Z\χ`pB/η_\Щ+$\','',0,'?'),(_binary '}\\%:eC~\&.I','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|L\\)PfS栱',_binary 'F\0\\ \K\U\\y\'ґnCXS@','',0,'?'),(_binary 'OXG\\"/\7l\GK','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G);\\5M3',_binary '\`iݬ\W\9vf\ﯬ\/wi6+','',0,'?'),(_binary 'QA\4\\\u_٘0\{','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+Kӎ\_?\\}',_binary 'b;3\\04;c\Xݮ?\0@w\y','',0,'?'),(_binary 'mY=lQ\\e\.','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ǽȽ~\+\F%',_binary '1+*췂\7\n:	\'VW}LG,Ea ','',0,'?'),(_binary 'H\-\TM\'ӥ','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}m^5dI|!',_binary 'EE\\[\.\&4~\\\\ө欥\\Z','',0,'?'),(_binary '\lu\Ƥ\\\"Ep','wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MCȈ\Z\ڝ$e@\',_binary '^	ۈC\\\Z\o\r\c\ni>','',0,'?'),(_binary '?\!EE5NKH\','wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X`zy\\5YG\\/\',_binary '~B\\\mh1l\d\\'`\PBX\~','',0,'?'),(_binary 'B\Z\\\m\\q \\\\V','wp-content/plugins/jetpack/modules/sharedaddy/images/twitter.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\zMR,L\uj\%',_binary 'a~ұ癪\2\xwy1\l\\h','',0,'?'),(_binary 'hL\}\Q\d/','wp-content/plugins/jetpack/modules/sharedaddy/images/twitter@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\\\񀶨*n%\07',_binary '\O\~efq2χYB*\\k\\![\\'z','',0,'?'),(_binary 'GϽ v\uZ\q','wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^rN\݄\r;sq',_binary '\Z<9\.ʻ/\!F\ӓ\n\@2\`','',0,'?'),(_binary '\(#\t\\G)','wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\g\ӂ*\e',_binary '\ʒ\l\0K޳?	\'\8\)HC^M \','',0,'?'),(_binary '\up\n_\n~/\\','wp-content/plugins/jetpack/modules/sharedaddy/recaptcha.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\P\^F|ʅ\}\o',_binary '\٠\\{W\\\k\\n\\\b\]Ky\','',0,'?'),(_binary 'K4WU\\D\','wp-content/plugins/jetpack/modules/sharedaddy/sharedaddy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!Խ&j#\}m\\!',_binary '$B	\8V\#/jNqk\\!2\\\','',0,'?'),(_binary 'U5WG<^ì\\v\','wp-content/plugins/jetpack/modules/sharedaddy/sharing-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\,\B\\iY',_binary '*ZZ㪑\n:p\\D\tz\^2\\}\ܧ','',0,'?'),(_binary '=D\uRZ\ۮ%','wp-content/plugins/jetpack/modules/sharedaddy/sharing-sources.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R7\Cm\\\!ff',_binary '!N\\Zy&C~aE\]-r\@\nI','',0,'?'),(_binary 'lhк\=\@as','wp-content/plugins/jetpack/modules/sharedaddy/sharing.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G]\n\\2dKd\',_binary ';/\}i\o\.\\\ZG2\\XvL\S9','',0,'?'),(_binary 'KqfØ\I\r\-O!\a','wp-content/plugins/jetpack/modules/sharedaddy/sharing.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\N1\\\0ZC',_binary 'q\t\\\\V\`T\ȀI{,XL/\W\','',0,'?'),(_binary '\\\\\\\\1\\','wp-content/plugins/jetpack/modules/sharedaddy/sharing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\h*\\!\f\\',_binary 'P:\h\@4ۚ\׿Qu,}\!\2hʙ','',0,'?'),(_binary 'o檆,\r;\\/k\','wp-content/plugins/jetpack/modules/sharedaddy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}]S,Y^i5D',_binary 'Z9Ǘ\H\\f]5$ǀ\Ti\_$i\rQAI','',0,'?'),(_binary '\:9\X\9TA&p-o.','wp-content/plugins/jetpack/modules/shortcodes/archiveorg-book.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4H\\nIR6LLA>',_binary 'so\ezz\rX(OB@\Z\n\\-\HA\G','',0,'?'),(_binary '\~\\s=\^\\c','wp-content/plugins/jetpack/modules/shortcodes/archiveorg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\-5Φ\\\r',_binary 'PX\xW\\n1\\7\M\\i\\ó?\','',0,'?'),(_binary 'Cmz\\\\0J\\\w','wp-content/plugins/jetpack/modules/shortcodes/archives.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8l\'{\;Oޥf\\',_binary '(6\r\"\\\\Q~σ6q0#v$\"{ė','',0,'?'),(_binary '\5/Uy*8َhQ\','wp-content/plugins/jetpack/modules/shortcodes/bandcamp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ѱ	rEZ\w',_binary '\Sg\[\\n\+-C\cg\LK\\','',0,'?'),(_binary '/\\EYcT>h','wp-content/plugins/jetpack/modules/shortcodes/brightcove.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\\U[,/\{`\M',_binary '\$3fjZ\f-\\\&\.i@m~19d','',0,'?'),(_binary '\+\\*BySJf','wp-content/plugins/jetpack/modules/shortcodes/cartodb.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\_\c&\',_binary '-\\\+ʲT\\EPxmZ[W','',0,'?'),(_binary 'k^\\OhQ-M_\\','wp-content/plugins/jetpack/modules/shortcodes/class.filter-embedded-html-objects.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\rb*%?5XF',_binary '\-{D\7	13\nm\=\\DLA','',0,'?'),(_binary '^\[\N؀;O','wp-content/plugins/jetpack/modules/shortcodes/codepen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wKWw)\\\n@Z',_binary 'vKq\5-pU\"\\\Qk\-ƾ\\2˽>\','',0,'?'),(_binary '((\)79a\)\ZC','wp-content/plugins/jetpack/modules/shortcodes/crowdsignal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']U/{X3shbBA',_binary '_\4\	u}H\\3;\z2Q\nh^\{','',0,'?'),(_binary '{R#nit\Z\','wp-content/plugins/jetpack/modules/shortcodes/css/gravatar-amp.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DPQ\B\!\d,˲',_binary '\p/@o_\\rSg\\ \\(\\j\R\ɫ','',0,'?'),(_binary '\\Mtm\\?p0<','wp-content/plugins/jetpack/modules/shortcodes/css/quiz.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n4*\\Dˤ9',_binary 'X\mV \a\jkq$,o$f\Z\','',0,'?'),(_binary '\zLPG\\0=\\','wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4&-l5\3bJ',_binary '\'\"b?7{<~~2ju&qN9\\\Z;x','',0,'?'),(_binary 'nP7\B\zԚv$','wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4&-l5\3bJ',_binary '\'\"b?7{<~~2ju&qN9\\\Z;x','',0,'?'),(_binary '/8iUc\n\uc@','wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\<M\Y	\\',_binary 'l\q\\ڞ\7uLt,ۻef','',0,'?'),(_binary '\3\#Ht\Jǣ@u','wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\ēn\3X\"X\̓',_binary 'T\{;q/o\@жH:ա`*Ҏ','',0,'?'),(_binary '\'|_<Cg\','wp-content/plugins/jetpack/modules/shortcodes/css/recipes-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hL:B)tT\',_binary 'y\"g8\oܔwp\\Bp\\','',0,'?'),(_binary '<WfC\g#\\','wp-content/plugins/jetpack/modules/shortcodes/css/recipes-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hL:B)tT\',_binary 'y\"g8\oܔwp\\Bp\\','',0,'?'),(_binary '\\\ݵ}\S.So~m\','wp-content/plugins/jetpack/modules/shortcodes/css/recipes.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f(2\\$xCg\"3a\\',_binary '\i\@}]\qB;8E\n@\\','',0,'?'),(_binary '`N3mlPgNsow\F','wp-content/plugins/jetpack/modules/shortcodes/css/recipes.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?6\Xd\C`!~\p',_binary '\ʚ\Z\\D\j\̒E\[:B~\\','',0,'?'),(_binary '<\FH!r)d','wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')?gD\',_binary 'ʛ!_j\L^ \\CWEV7\"<n\','',0,'?'),(_binary '8^Vb\V.{7$*','wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}O\2\\r\\ń',_binary 'W!\ߖi5\ZEz2L}\coe','',0,'?'),(_binary '\\Ę\`\h\\oj','wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9 /\"\',_binary '\,\X\jeE\\r\'\rWT\ApCĂ\z\K\','',0,'?'),(_binary '}[*:K\	M\IH','wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Xe\,U_L\/N',_binary '\\\\\\\(=ܫ\\jQ2yT7','',0,'?'),(_binary 'KTGB\s` \','wp-content/plugins/jetpack/modules/shortcodes/css/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%	o~f\b\?',_binary 'TU\cC\D̃@& ^\\ 9I\a\','',0,'?'),(_binary 'lM[܅0\^_','wp-content/plugins/jetpack/modules/shortcodes/dailymotion.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r2\,0տ|\B1',_binary '&uH^y@\\.]@>?ftb\\\"؍\','',0,'?'),(_binary 'W$\\\U\0\\0$','wp-content/plugins/jetpack/modules/shortcodes/descript.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(Y\T\%u\\\V',_binary '1۟b\Km\\9\]W#]@\_\m\\#6','',0,'?'),(_binary '\\mKL\'%(\r&\','wp-content/plugins/jetpack/modules/shortcodes/facebook.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\JV:A\+\\',_binary 'O뤙\e@\0\\ega\m\\\5\\\p\W\6\','',0,'?'),(_binary '̋C\RNq9\x','wp-content/plugins/jetpack/modules/shortcodes/flatio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\\f*c\',_binary 'ĠU1\di\g\\%\\','',0,'?'),(_binary '\r\5`\\[~a˼','wp-content/plugins/jetpack/modules/shortcodes/flickr.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';&JS#\{\',_binary 'ٞn/\ڎuݴPG\&ni~\RhDeJ','',0,'?'),(_binary '\9\+b\\n\8Q\','wp-content/plugins/jetpack/modules/shortcodes/getty.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*\c~,\9j\',_binary 'sC\Z\\\gT\\n\\S\\nS~l҅','',0,'?'),(_binary '&\lNU\йj\','wp-content/plugins/jetpack/modules/shortcodes/gist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\ŭЂn70',_binary '\b\cN@)\Q\r\E	,\\z\jSϻy]U','',0,'?'),(_binary '$)\@lY;b','wp-content/plugins/jetpack/modules/shortcodes/googleapps.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '꓅<\&}',_binary '\"nM\\\\~D\q%TYWƜz\Z\ؐ','',0,'?'),(_binary 'Lq\R\nK)6z8','wp-content/plugins/jetpack/modules/shortcodes/googlemaps.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\\\\\nW\A3\r9',_binary 'T\\ڞo6S\\\1\@#M#\\a\\\','',0,'?'),(_binary 'q\ҵ\uM	\\\','wp-content/plugins/jetpack/modules/shortcodes/googleplus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(1 \-~Sx',_binary 'Q̙\"1F~u\\\M5˻*\'W\','',0,'?'),(_binary 'FԈl2\EF\ٸ','wp-content/plugins/jetpack/modules/shortcodes/gravatar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZA\"E\%L57cW3',_binary '̖rs\W\	S/\\S\n','',0,'?'),(_binary 't3\ث\\+w3','wp-content/plugins/jetpack/modules/shortcodes/houzz.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r]⯦,',_binary '\$*\HKoUHwXPEV\'+','',0,'?'),(_binary 'a.\Y\0bk-\nJ\','wp-content/plugins/jetpack/modules/shortcodes/hulu.php',0,_binary '\/f\\]',_binary '\/f\\]',_binary '^\-7\瓓Ta\n~d{$0J\򧕙H','',0,'?'),(_binary '\?X\QRE\0 kR','wp-content/plugins/jetpack/modules/shortcodes/images/collapse.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z$RLP&/P\',_binary '8\\0(ʭ0rwJ\\Qg\\\\,=\Q','',0,'?'),(_binary 'v?U\Z\nß\J57?','wp-content/plugins/jetpack/modules/shortcodes/images/expand.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+\\\9ު\F',_binary '\]܂\27\\"@\nMwxE\DOy','',0,'?'),(_binary 'j\:\\ON10\','wp-content/plugins/jetpack/modules/shortcodes/images/slide-nav.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8Z\C\j~龴',_binary '\2e\0\yK\'\i\a\,g\e\7\*\','',0,'?'),(_binary '*\xX.\(\"P\\','wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O8[\\Z;z\Z7',_binary '0\\;\t\m/Y\$@?&5:\','',0,'?'),(_binary '}#~\廉!\\\#','wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\\\\=\\&OJ/',_binary 'xc\0*&5}\\~2=vbG\\l\ͤ','',0,'?'),(_binary 'q^֨\^B\4','wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PEe\p D~$a',_binary '\\;\$^U\\3P!\\ǍE9h\Ի\\','',0,'?'),(_binary '\\m\Zy\5y','wp-content/plugins/jetpack/modules/shortcodes/inline-pdfs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eY,	R\\\'vYRr',_binary 'o${!4IY\eC\#\v;','',0,'?'),(_binary 'mk\\x\\i	Wv','wp-content/plugins/jetpack/modules/shortcodes/instagram.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F5h\'\s\}#5G',_binary '\0o\\\/\n\nQk\-O\9$\f>','',0,'?'),(_binary '\Md\I\>','wp-content/plugins/jetpack/modules/shortcodes/js/brightcove.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nlٰ[p\',_binary '\\d߼`$7Nh\kp\Ɏ$\\{\]t\\[','',0,'?'),(_binary 'gO\\0ۺ@U(KE','wp-content/plugins/jetpack/modules/shortcodes/js/gist.js',0,_binary '\f\Z-\\S',_binary '\f\Z-\\S',_binary 'oS-\m\\޿Y8\i\'\2`Je}s','',0,'?'),(_binary '\\\]Jv`I\!','wp-content/plugins/jetpack/modules/shortcodes/js/instagram.js',0,_binary '\"TGs)\\\(',_binary '\"TGs)\\\(',_binary 'wRáY!֯\'\\Șўn;}r','',0,'?'),(_binary '\{<d$\\\ϊ','wp-content/plugins/jetpack/modules/shortcodes/js/jmpress.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\d\\	\9&MN',_binary '΀\\r\\Ql?%<I|Z88:7','',0,'?'),(_binary 'U}\j\\H\t','wp-content/plugins/jetpack/modules/shortcodes/js/jquery.cycle.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|49]\\gLI\0',_binary '\ntC\Z\$\\bt \(7MѼ','',0,'?'),(_binary '7Z\0\\Ai\','wp-content/plugins/jetpack/modules/shortcodes/js/main.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ă;\rD\\\ޑ\$\',_binary 'N!|k\"\\\.\uR\r56;\,C','',0,'?'),(_binary '\K5ZT\cĝ','wp-content/plugins/jetpack/modules/shortcodes/js/quiz.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\T\\0\\?t,',_binary '5HֽjХ\}\Bs\ݎ$ !!\|Z;\','',0,'?'),(_binary '\\\\ρ\	yr˴','wp-content/plugins/jetpack/modules/shortcodes/js/recipes-printthis.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\n=5Z[rr@(',_binary '\ORa\\G\p\Z\\r\\\<e\','',0,'?'),(_binary 'q~\4!\\˃!\\\~','wp-content/plugins/jetpack/modules/shortcodes/js/recipes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\~1[&H\\\r',_binary 'w\%\)bcܥ\3ӻ\a\\\t','',0,'?'),(_binary '\"xB&ۥ\i','wp-content/plugins/jetpack/modules/shortcodes/js/slideshow-shortcode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\u\~~!0\',_binary 'ʢ+\\\Z\\\-&\X- 9y\Z\S','',0,'?'),(_binary '8\	\\\.\ʆ','wp-content/plugins/jetpack/modules/shortcodes/kickstarter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' c\*^9RO',_binary '\j9\HuK:`}?L0v\\$r\\\','',0,'?'),(_binary 'Y\}s2\\\\','wp-content/plugins/jetpack/modules/shortcodes/mailchimp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\\\\E\\',_binary 'esV#Zp\\\zktCV7lI}aݗF%\','',0,'?'),(_binary 'IXQ\\ \\\','wp-content/plugins/jetpack/modules/shortcodes/medium.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\DE\\0U7k',_binary ')79\}R\IW#gL\%\YS%i=P','',0,'?'),(_binary 'i,\8ASS\ c\]','wp-content/plugins/jetpack/modules/shortcodes/mixcloud.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٝy]>ޏ\0P\"V\\',_binary '\\ \\\r-{0a֥\0c$7\\i%','',0,'?'),(_binary 'N׮\m\\Iv\i','wp-content/plugins/jetpack/modules/shortcodes/others.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\\;yh<:WO{',_binary 'BJ0\;2\Z\\S\:v(}L%߬\','',0,'?'),(_binary 'M\Z\3UM\Z\w!','wp-content/plugins/jetpack/modules/shortcodes/pinterest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\t)\}p\\Y2\',_binary '.RJ\;Vy1uGn\^ϢO','',0,'?'),(_binary '\1f\\Xx?3H','wp-content/plugins/jetpack/modules/shortcodes/presentations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\+ɘ_(\u\',_binary '5mji*ˤ\rT\;9M\O!\\uoAc\','',0,'?'),(_binary 'ޑJ\\qb\0\\0','wp-content/plugins/jetpack/modules/shortcodes/quiz.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5	[H!F3\,\',_binary '3\ڲsw\\\\~rd\Ri:ǈ\\՞ӸL','',0,'?'),(_binary '\Ƶ&$_','wp-content/plugins/jetpack/modules/shortcodes/recipe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\xXx6c\4',_binary '5P#_hF30\\\o\wi\s(','',0,'?'),(_binary 'My+\{\@&\b5Q','wp-content/plugins/jetpack/modules/shortcodes/scribd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sʲ\v&a=Jo',_binary '\n\a9!\\ \x\]','',0,'?'),(_binary '#eG#\鑈C&\','wp-content/plugins/jetpack/modules/shortcodes/sitemap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z*ּGD',_binary '\Z&RYY\2\relJ/?\\Y\','',0,'?'),(_binary 'g\	\\\\\0\\6>s\','wp-content/plugins/jetpack/modules/shortcodes/slideshare.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k/&\0\"__\\#L',_binary 'O#&\F\\\\Uk时\\\Hz\On','',0,'?'),(_binary '\@<0_m(C}UK\','wp-content/plugins/jetpack/modules/shortcodes/slideshow.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WY\രZm:\\',_binary '\9`\\\MOR\(W\\艹e\\K[','',0,'?'),(_binary '\0SsbyZ\=\`%\=','wp-content/plugins/jetpack/modules/shortcodes/smartframe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\yk;g]p9',_binary ',h\߈\\%\\\.C+e8\M\\?\e\\','',0,'?'),(_binary 'PApQ\T\h','wp-content/plugins/jetpack/modules/shortcodes/soundcloud.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nt٢\ٓUX(3t',_binary '`\ɞ:,\q?rMq$U','',0,'?'),(_binary '\\I?[9\l\\','wp-content/plugins/jetpack/modules/shortcodes/spotify.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\mjJCxڲt',_binary 'A4,A\0\\h\"6\0/Eg㞁8_\(','',0,'?'),(_binary '-S_\v@','wp-content/plugins/jetpack/modules/shortcodes/ted.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\c\\rWF `Ur',_binary '1w\Z\\q&\s\e6Pd~Щ\@','',0,'?'),(_binary '\\S^(lCvl:','wp-content/plugins/jetpack/modules/shortcodes/tweet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=4\Z[\f\2\8',_binary '0^C\\E\\ Q\\\9\r\\','',0,'?'),(_binary '^\Y;KHy=$V^T','wp-content/plugins/jetpack/modules/shortcodes/twitchtv.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\mғ79&X\\&\',_binary '\\*_p.mazƊ	H\E','',0,'?'),(_binary '\Yh\8\{U܃<','wp-content/plugins/jetpack/modules/shortcodes/twitter-timeline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\j*{\GOi',_binary 'ޡ4IW\[\\ͱ\\\\\\\ƃ\','',0,'?'),(_binary '\O@\"i|\\\0C$','wp-content/plugins/jetpack/modules/shortcodes/unavailable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\0\1\\K*Y',_binary 'OiU\\La0ai\$Bj쌂C\F','',0,'?'),(_binary '\3X\P?di\"\0\p','wp-content/plugins/jetpack/modules/shortcodes/untappd-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r\\\\t\\)?\\\l',_binary 'n}\\\\漬!\ڗU\\\H?','',0,'?'),(_binary '7(\Iѕ^@?\','wp-content/plugins/jetpack/modules/shortcodes/upcoming-events.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\ndo\g\#\\',_binary '\3^my]-\V\5\T\	(v\B{\^qP','',0,'?'),(_binary '\r&\JȠP[.\p','wp-content/plugins/jetpack/modules/shortcodes/ustream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\#wXA?\7w\0',_binary '{\Z궲OGʃB,0\_\\\0\\ v31Hch\\','',0,'?'),(_binary '|F\lRу\9\\','wp-content/plugins/jetpack/modules/shortcodes/videopress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g?\&\QU1\F',_binary 'R.\J	%y\pɑ\0;27r\_\rs2','',0,'?'),(_binary 'iT{帇\\0F\','wp-content/plugins/jetpack/modules/shortcodes/vimeo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wٮ\x\\c',_binary '_\\Jn\\\}^6ܱ\j<:?e\۫\','',0,'?'),(_binary '4~_Bʷ\\'b\','wp-content/plugins/jetpack/modules/shortcodes/vine.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\=2\"X\i\',_binary 'QM9\\_i\E\e-\\\z\m','',0,'?'),(_binary '!\I5)p\#\','wp-content/plugins/jetpack/modules/shortcodes/vr.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\s/-\\\p z',_binary '\Nuyjwz\\eԯx\\G','',0,'?'),(_binary '_=a`8r\\zs','wp-content/plugins/jetpack/modules/shortcodes/wordads.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\\mT}X\\~',_binary '\|\0s/\5FCAL\UR.GEd\(/','',0,'?'),(_binary '\\ǃl\r\\','wp-content/plugins/jetpack/modules/shortcodes/wufoo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NR1\%#ð\y\\',_binary 'Z\I硠@Q\\;HVUS\YX\N\\&T','',0,'?'),(_binary '\\ؐpĀ\?:g~r','wp-content/plugins/jetpack/modules/shortcodes/youtube.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\x\\nr\:7\',_binary 'V+\"\)1aa	3\\nf<z\*#\\\\','',0,'?'),(_binary '\\\o\m`\\	%-o','wp-content/plugins/jetpack/modules/shortcodes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\0\\1h\',_binary 'R0\,Y-\\DA9y\\ ','',0,'?'),(_binary 'P.\+\믝\\','wp-content/plugins/jetpack/modules/shortlinks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ƗM\B\1\r',_binary 'fH\\\\\rp\\b\\0`\H\G\&*λT\','',0,'?'),(_binary '>4\\0c\6;\ba\)','wp-content/plugins/jetpack/modules/simple-payments/paypal-express-checkout.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZN\/\02',_binary 'Ͽm\\NJe:\\Ƥ[<\KXS\p7\5','',0,'?'),(_binary 'p\Wi\N\nPj`','wp-content/plugins/jetpack/modules/simple-payments/simple-payments.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\g\\WUn',_binary 'e/*Έb=\w\{jPy\^l5̩\n\YA','',0,'?'),(_binary '9\Q0\8飍C','wp-content/plugins/jetpack/modules/simple-payments/simple-payments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\: ৐y\+g',_binary '\\'\t\\0|\\zגcTJ\ZJl.L%4\G','',0,'?'),(_binary 'L|\uN\0/Q>x','wp-content/plugins/jetpack/modules/site-icon/site-icon-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\\	\\\H\\0(*\',_binary 'z@l\mOq\*D͌EU\nGT\\\','',0,'?'),(_binary '\\"\M\G\Hˈ\La','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-fallback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'go\/\	\\bM',_binary 'ݲ#MOᇗ/j8-P\\Yoh\	1\S','',0,'?'),(_binary '-lX1;q gp(','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-image-fallback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E5\E\\agf\',_binary '-^ejH\'qD\\\ʞ\>+=\Q','',0,'?'),(_binary '8~P;\ZO\\,x@\','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˙\	(7G\\sqX',_binary 'v~p\\tJ\O-u\\\gHS\Y','',0,'?'),(_binary '+_\\0\W\w','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-master-fallback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eT\)\\\4',_binary '`)LE}\y\\\L.D\U3Z+\9','',0,'?'),(_binary 'V_\DD\>ƻ','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-master.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\8m\\5\2\f',_binary 'Ϟ\vq[XS\B\>Gؘ>\\rU.%\rh\','',0,'?'),(_binary 'ǒ\#[sսI~cʯ','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-news-fallback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T$y^\\0tҶ',_binary '\"RϧQY\o\\0X:\02\Xp\A\','',0,'?'),(_binary ',\y\\\0gu\Z','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-news.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$o[#\DA\oX!',_binary '\2Ry8\|Wւ3<\Z|z#ڧu˛\\RNe','',0,'?'),(_binary '6\Jp;\<\','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-page-fallback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\\ũI\\',_binary '5\N+fAAY\an\b}o\}','',0,'?'),(_binary '`tiPƳ<n+hn','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\[\<6\\',_binary 'R^`ECT\l\\We%*\a\\\\>','',0,'?'),(_binary '\i\T\'y\b_O','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-video-fallback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\vI\Y]\>g',_binary 'va\\(\x\+\wPղjg΢5@;ࢯ!@','',0,'?'),(_binary '\:\\4\G394','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'el`׳O\\',_binary '1\\£R[G\\H\\\\S;','',0,'?'),(_binary '\\>\"\k \{\','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\`߉q\}e',_binary '	f.\\n\\"\ı&ҟL\0G?>\h\k','',0,'?'),(_binary 'B\nPrr-	%\Z','wp-content/plugins/jetpack/modules/sitemaps/sitemap-builder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r_0J\\Χ/Ǌ',_binary ']\\Uˋqє%\\\\h\m\#Rq>\.','',0,'?'),(_binary '\\`w\fϢ\\\','wp-content/plugins/jetpack/modules/sitemaps/sitemap-constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\\\4%\\ꚁ;\U',_binary '^\c7R%>B\T\\i4H\fru','',0,'?'),(_binary 'f\A\1&]֥','wp-content/plugins/jetpack/modules/sitemaps/sitemap-finder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\oN\\\\d\s\G',_binary ',+>Ħ߲#5L[\K\_ф\mU','',0,'?'),(_binary 'ډI\\"`\&$Oc\"W','wp-content/plugins/jetpack/modules/sitemaps/sitemap-librarian.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s|r\',_binary 'w\-+\n\\\06|Mn\tP86jV\͊;b','',0,'?'),(_binary 'Y\n	ev\\\\)8:','wp-content/plugins/jetpack/modules/sitemaps/sitemap-logger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r,-\RPd',_binary '\łQ\\)<\\{\\)\~%9\\\&X','',0,'?'),(_binary '\hz\C	mO','wp-content/plugins/jetpack/modules/sitemaps/sitemap-state.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ZgE\\c7',_binary '\I\b\\\{8w:f\\X\]9Y\Q\a','',0,'?'),(_binary '̡A\L3;V\r\\0','wp-content/plugins/jetpack/modules/sitemaps/sitemap-stylist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hه&Q?_-	',_binary '\\O]revD\\J3]\ro','',0,'?'),(_binary '\o\\uwDX(','wp-content/plugins/jetpack/modules/sitemaps/sitemaps.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1wFG\qd\\Z	a',_binary 'EO\\rߞ\\\\A\ZA=\\E\\\'\bB\Z\7','',0,'?'),(_binary 'MZ}Q\m\C;\','wp-content/plugins/jetpack/modules/sitemaps.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GCXHl\\+$\L`I\',_binary '3\\\'M\2yY9\\6\U5\\΁U','',0,'?'),(_binary '\r2\Km\\\Z@\\\\','wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-helpers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\W\Z(,?\/XC\Z@\',_binary 'bi)uH4\y\rϴ|{zX\\$','',0,'?'),(_binary ')Vw\\~&\nV<\\','wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jbo ]\&Wj\',_binary 'f\ΦM\\Q\"\o\\\d\\ɗ\','',0,'?'),(_binary 'F\àhQe;K\R','wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Aw7\\\\u%',_binary 'T-\\#\3\\\\\p	޸\\-\0s](D;','',0,'?'),(_binary '\\\_\n1KFf\"','wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '܌?\lt!,*t',_binary '%\\!TH*kj֍Q]\r1k','',0,'?'),(_binary '\%Cj/\\V\','wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y;&\\"@}Ն?\',_binary '-[ABl\ro\-E6\\B\\z\\','',0,'?'),(_binary 'u|s\Z\O\Y\','wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\HƣgTp\',_binary 'J\?$TLug\ZYqYP\\nM\','',0,'?'),(_binary '{H\0\\Ľb\','wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\g}b\=\62X',_binary '\\u\\\;\\RK[\\Z\5\JJv:','',0,'?'),(_binary ':\rg\\[\\\','wp-content/plugins/jetpack/modules/sso.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\r:7Hr0',_binary '\pԓv\6WøF\;\\x\9R2:\Xb\\','',0,'?'),(_binary 'XV]N\\AO\\w','wp-content/plugins/jetpack/modules/stats/class-jetpack-stats-upgrade-nudges.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\DtlE\\\il\',_binary '\\B\%%xV\\r`br)[\/6\\"QVE','',0,'?'),(_binary 'ϭ\\\6nc,`<','wp-content/plugins/jetpack/modules/stats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ы\1\\\rڸ ',_binary '_K%[B:u\La\\\",:\,S2\','',0,'?'),(_binary '\\\1`7<E','wp-content/plugins/jetpack/modules/subscriptions/readme.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\.:$Cׄ:j]O',_binary '>\\\\p\\o\ʿC\PاE\\\Xg	','',0,'?'),(_binary '\\\\HԱ5t','wp-content/plugins/jetpack/modules/subscriptions/subscriptions.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ܪ\\o,RD/!l~0C',_binary '\L\pm\\pyT\q(3k׆=Q','',0,'?'),(_binary 'N\-)+\\u	\t','wp-content/plugins/jetpack/modules/subscriptions/subscriptions.js',0,_binary '\\Z\\\*\Xѱӊ',_binary '\\Z\\\*\Xѱӊ',_binary '!	\d\e )\\k\r*-J\@[','',0,'?'),(_binary ' #^_\1\','wp-content/plugins/jetpack/modules/subscriptions/views.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\\ť=hQT',_binary '\\L/܆\hpx5FTh0N\\'\@>;','',0,'?'),(_binary 'i]\c%}	\hL','wp-content/plugins/jetpack/modules/subscriptions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>H	[.f=l=\',_binary 'e$W\a\\\&\\|ۥ3^','',0,'?'),(_binary '}U\\\T9%\$R\','wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nE$?%Q\\$\',_binary 'uu\\\n\q\I viZu\','',0,'?'),(_binary '\	\C\A\\\\','wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f\?ZB?K\L',_binary '\װ\:M\$\\ӊ\\w6\\\L\\','',0,'?'),(_binary '/\\\W\✴S\0','wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rEpog\\s\k[`',_binary '\yC\M\\lN\6\\r\.uϯDo','',0,'?'),(_binary '\^ou?\d','wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ba\o\n#\Up',_binary '\+Bvnb0OK1S%\T0q#\"8\\','',0,'?'),(_binary 'D4Y8!#_<зTd7','wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vō#\}\[_\\',_binary '!I\\\T\sHgj+׺?\\\dS','',0,'?'),(_binary 'H?7\Mfe)*w\_','wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\FWtZ\%I\',_binary 'i\\y\r\\r\\-ny<#\\\\a','',0,'?'),(_binary ';	T\2\|\','wp-content/plugins/jetpack/modules/theme-tools/compat/twentynineteen-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't^T\r*\˨,\kj',_binary 'kGjGzV)|\`	\}j\l3Vw ,\8','',0,'?'),(_binary 'J\E\:\\\&x\o','wp-content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D0|\_gv\X>	',_binary '8zPa*z\ I:\ \Dq;`n0x\','',0,'?'),(_binary '\:XƝ\r\ 1','wp-content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0ڕοqtl/',_binary 'oCz\0㿼ߙ\\\\n\n\\\^4%\ɼ\','',0,'?'),(_binary 'cXK\k\=\>','wp-content/plugins/jetpack/modules/theme-tools/compat/twentyseventeen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\>\\Cq\\r',_binary '@(I\kDXCL\"K~\u^ͻ2\\q\J','',0,'?'),(_binary '\\U>yZx!e','wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z\;\\\uvT\',_binary '\\n9NK\\zt!\L\\]\>','',0,'?'),(_binary '\ˤ-qIǔv[E	+','wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\RN\<~\\u\',_binary 'ux\\#]\OLhv+f \i&&\'\\','',0,'?'),(_binary '\НJ9\\5\r9\Z','wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\e\\\:>\=F]\',_binary '>ˑy2wG+\o\>u%El','',0,'?'),(_binary '\ \\\rD\\\'v\\','wp-content/plugins/jetpack/modules/theme-tools/compat/twentytwenty-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݡZd\1oH\s',_binary '_&_:\\:g62괆\2\.\\n\"[','',0,'?'),(_binary 'E\=\\@{\\\','wp-content/plugins/jetpack/modules/theme-tools/compat/twentytwenty.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FCcZm㌖2T',_binary '\9<bE\\\r>:K`!a','',0,'?'),(_binary '\dp\5\Q\%*X','wp-content/plugins/jetpack/modules/theme-tools/compat/twentytwenty.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\^z$\\\\',_binary 'Y-S%\Z\\L=zrHBsnp','',0,'?'),(_binary 'ءA\r\W\%IZ|','wp-content/plugins/jetpack/modules/theme-tools/compat/twentytwentyone-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/!Cp\"\1\\Vss',_binary '\h&\\r5\n\i\C\Zq)','',0,'?'),(_binary 'Nٳ2\\k=','wp-content/plugins/jetpack/modules/theme-tools/compat/twentytwentyone.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n#J]8iИ$&JH',_binary '\\\>\Z\\6~\oF7N4@M\?\&','',0,'?'),(_binary '9\c:\yGQ\T\0','wp-content/plugins/jetpack/modules/theme-tools/compat/twentytwentyone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5bDO&(\*{8\m\\',_binary '0\ih%H1,\]ez\:7','',0,'?'),(_binary '@;N\\n#|\','wp-content/plugins/jetpack/modules/theme-tools/content-options/author-bio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\psు?\D\r',_binary '#*(l0\rK`\C\\̏\l@q\+\\.\\','',0,'?'),(_binary 's \\U\!&\Ak]','wp-content/plugins/jetpack/modules/theme-tools/content-options/blog-display.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9p\;M\',_binary 'k\\\n\\'?\n.\Pf\\k','',0,'?'),(_binary '\e\MX\\nF̩\\#g','wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M\D]\Z\l\b&\n5',_binary '\\\#V}%\|\edn4	','',0,'?'),(_binary 'i\\\*Ib\f','wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6:0օ\\"Oo\',_binary 'dB\e\\B]q\\\KMyBie[u\#CB','',0,'?'),(_binary '\$=(\ZS\HZRE','wp-content/plugins/jetpack/modules/theme-tools/content-options/featured-images-fallback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';*\\ܫ\\j\',_binary 'CdG1a\qgp+KFTqa','',0,'?'),(_binary '\\.f\n\`G\o','wp-content/plugins/jetpack/modules/theme-tools/content-options/featured-images.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q5\\\ix\4\Pp\\',_binary '[,\Z\\AKR\\}\1	6%~d\','',0,'?'),(_binary '9N?=D@\\\','wp-content/plugins/jetpack/modules/theme-tools/content-options/post-details.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\֫\,unaL,',_binary '\m\@]ڹB*\$*)\\nO\\IuE\ϼ','',0,'?'),(_binary 'Β7Sᦊ\mۗ','wp-content/plugins/jetpack/modules/theme-tools/content-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V¬\?#\',_binary '<y\\:\\\tHhY\\sܨ\\z}\hq','',0,'?'),(_binary '\s\\\^zt','wp-content/plugins/jetpack/modules/theme-tools/devicepx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\eeO^[_',_binary '\4\\\o{s\XUM\$W?q\P,','',0,'?'),(_binary '!]@zj\|\L','wp-content/plugins/jetpack/modules/theme-tools/featured-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/WC\\\Z;\־',_binary '\\\ʽNK\Z})b\}\\~d!\\\m\\','',0,'?'),(_binary 'k2nJ\Yu۳,OG','wp-content/plugins/jetpack/modules/theme-tools/infinite-scroll.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\hs_5秢)?\',_binary '7\\4`\\\Pu\D\/2p+\ #6\','',0,'?'),(_binary '\\\\*\~[	GX','wp-content/plugins/jetpack/modules/theme-tools/js/suggest.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\F\\7~\r',_binary '=\VRW8TϹt\rq%V\;TG[Şj\','',0,'?'),(_binary 'Y\Z}','wp-content/plugins/jetpack/modules/theme-tools/random-redirect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k}2IMgw暵',_binary '7v\\cQ.\jru\,&\d\W{\','',0,'?'),(_binary 'to\T$\\:I\','wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NC\@af`.k_z\',_binary '\\մb\e[\W4>W6\o\\\J','',0,'?'),(_binary 'Ǭ\̮','wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%\+\nȑ&\',_binary '\\#o\P-~33\\x\ \6?֊I','',0,'?'),(_binary '\rp4\ǥq5	̺v\','wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.	\0\\\\\',_binary '\\\\\ɥ|_EeKC\=7\e^FZ','',0,'?'),(_binary 'Z\\ut\m@','wp-content/plugins/jetpack/modules/theme-tools/responsive-videos.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\k9d-u\n',_binary 'P\\_ïJO\Ѡ[\AS/\\\C@\','',0,'?'),(_binary '\a\\m\\\\x','wp-content/plugins/jetpack/modules/theme-tools/site-breadcrumbs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0\g\&',_binary 'I\\#\Q;\\x\\\$>\\_j','',0,'?'),(_binary 'I\6/VEE|\d\\0','wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo-control.php',0,_binary 'TZ\e\I\',_binary 'TZ\e\I\',_binary '\ry@\"v4>\\&$7\\.l2G','',0,'?'),(_binary 'x>\\B>s\w','wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\ZfZ/\\rz\\',_binary 'CpV\	\'A\xoC\j\\y','',0,'?'),(_binary '\b\tq<>\vb','wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B(Ud\1\Ah[_',_binary '\:]\B@bUjE\Y)\(SO','',0,'?'),(_binary '\\\n)\"\\','wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tc\\4Dٙ\b',_binary '\Z\R\\\L\fQ)\ҍ~`\	','',0,'?'),(_binary '\Ϟ/~\*c)c','wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.js',0,_binary '?b󛓲\\rr\ew',_binary '?b󛓲\\rr\ew',_binary 'N\	gm|x~Kg\#ū\Z\\0Zb\','',0,'?'),(_binary '\r.Q\\	%H\','wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.min.js',0,_binary '>\\mD]\!ċ\r\\U',_binary '>\\mD]\!ċ\r\\U',_binary '\\{\y\g.\(-oK\A({|+CA','',0,'?'),(_binary '~\4Y.\H\','wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\nxU(}\7\\*\',_binary '\ZX^@7g>?\?hsHqdy','',0,'?'),(_binary '\)!jr!b','wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ۜ˕\O:',_binary '\\Zs2\'\ZNsrG\hly	\ȅhyD!k','',0,'?'),(_binary 'ұ\tpDqM\\','wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.js',0,_binary '_;~n,ػs\iU',_binary '_;~n,ػs\iU',_binary ']RR\\q%\d\K\JN\J|z\','',0,'?'),(_binary 'զ\\B$\naT\b*','wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.min.js',0,_binary '}b \fm\\\\n',_binary '}b \fm\\\\n',_binary 'ɓO2ꀮ\\0WO#`[\!D\\','',0,'?'),(_binary 'NWLMJ\8\$:','wp-content/plugins/jetpack/modules/theme-tools/site-logo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b8\yq`OD',_binary '\\l\V2zl\\\MQIT,ű','',0,'?'),(_binary '</(\\2]ޑ\'','wp-content/plugins/jetpack/modules/theme-tools/social-links.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=P4\ṟ۩\\uJ',_binary '3\$uBklIM\\nkyV\\g;Y','',0,'?'),(_binary '_8[٨}h\C3\','wp-content/plugins/jetpack/modules/theme-tools/social-menu/icon-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\m;|\|',_binary '4ɤ\!\\"E,9\ZA\\"9\ s\r','',0,'?'),(_binary '\\ä6⡒\\>\R','wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ڗk2\T	\&b',_binary 'S\Gok-\c\\۷\0+FO','',0,'?'),(_binary ')%*\X\Z','wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A\rӜ\:\\g\'2Y',_binary '\"9>B_\x7b\fg)X!Iœ\r#_i','',0,'?'),(_binary 'a\=zAE\d:8\','wp-content/plugins/jetpack/modules/theme-tools/social-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rC\\\\&h\I',_binary 'ĹF1婟\r\\~4E\c=sC	','',0,'?'),(_binary 'n{D0ygq:\','wp-content/plugins/jetpack/modules/theme-tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<$tp\n%}8ӈ',_binary ':#\ߴ{>3] LhE \\\[[\','',0,'?'),(_binary '\h:^K\F\\','wp-content/plugins/jetpack/modules/tiled-gallery/math/class-constrained-array-rounding.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p+\#\QSN<C',_binary 'xQ\TRр\Omƭ@*\r\˦i$&\|KJ','',0,'?'),(_binary '\h\r\\.V\z','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/rtl/tiled-gallery-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JW!\R)s{\',_binary '%\\re\\mag<\BF\\\j{\#\F,','',0,'?'),(_binary '\d>6GOվ','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/carousel-container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K8m\\\',_binary '`/+*	\\^\)\Z\<\'','',0,'?'),(_binary '6Vc%=\++\','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/circle-layout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I͛/3â',_binary '|Rak\re\??@\0[w+h}\ZC	','',0,'?'),(_binary 'cT\\\*59T','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/carousel-image-args.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WqقIƜ\_Z8\',_binary '0Sw8M};N\VQ7Ŋ\\\\u\8','',0,'?'),(_binary '1knmDYy\\\nW','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/item.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#å\'.\\~\V',_binary '0\_\\D=Y\)[꿈I\\'ew>^P\','',0,'?'),(_binary '1\hح\0;\\"\','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/rectangular-layout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\\\\ie\0\E\6\',_binary '\V\\"6gWMHfg9hHD@\lM\-6}*m','',0,'?'),(_binary '\2dn.l\T\iw\a','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/square-layout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IH\"M_F\',_binary '\wƊW\,\\r[{D0|L\Zk<A\al','',0,'?'),(_binary 'ZԦ,\Oԕ7n\k','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-circle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nr\ɬ\C\Q(1',_binary '\j\8\\"ZX\\_GmZƃ\s\Q\\pr\','',0,'?'),(_binary 'nيGl\^ŨO@~','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-item.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\w&\S{\',_binary '\\ɰ\~a\\fסSr&\]\0','',0,'?'),(_binary '\sj\GdGkπ+W','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-layout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '),i.H;{C\xn',_binary 'H/:\ޢh3	\F\\\\\\\B6d','',0,'?'),(_binary 'Rgz!2dP','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-rectangular.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0؜NY7\P!\f_',_binary '\'\\\\\\\ǿJ\\\:\n1\μ\}','',0,'?'),(_binary 'U;L\\c\V\A	<','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P\nT\N\,\r^@',_binary '\5.\\6gZ\?x\\?z+Ѩ\.`\','',0,'?'),(_binary '9{\+=-Oe>V\Z4','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-shape.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ȋo)-\P)ʰ',_binary '(vcȘ\;{R<Re+\2	\z\\','',0,'?'),(_binary '\!\\\\`\nw','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-square.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\\X\ڔ\\"LD',_binary '\L#UX8%\6\\ap\\\cv4\}J','',0,'?'),(_binary '\"\d.hc\\','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\\Ym88\pt\',_binary 'GpH`\\9o19\C@VJ@%\\$\=q.','',0,'?'),(_binary '\C\DL','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9e\q\_QR\|\n',_binary 't#`\\E\J\G\\c]`(_N\','',0,'?'),(_binary '&\]ϟp ','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,=棂p\\m\\KZ',_binary '\\"Ƃ\b~%%khj\H\\=l\\36','',0,'?'),(_binary '\\}I\;G','wp-content/plugins/jetpack/modules/tiled-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l\z1@Qr\\V',_binary '1^\'\\r\5o\Q\<5|\ZrHB','',0,'?'),(_binary '\uWU7\','wp-content/plugins/jetpack/modules/vaultpress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.SKt!\c̀\',_binary '\\}\{\\?\-Q*\_\\lshvS>G\\\','',0,'?'),(_binary '6\(ࢩZ]G\','wp-content/plugins/jetpack/modules/verification-tools/blog-verification-tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\\T҆ZW\',_binary 'f~͕~S\j~0\*;w^2\犍*\g','',0,'?'),(_binary 'BV*\\'0GE\&','wp-content/plugins/jetpack/modules/verification-tools/verification-tools-utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\akP\]>\R6\\',_binary '\\U\\aV~\O\-XeM?\\\'\\n.q','',0,'?'),(_binary '+ӳSh@<}DME','wp-content/plugins/jetpack/modules/verification-tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5iֆH\\\n6Mk8kR',_binary '4D~ۦ\r}7>I,\Siw͹V&','',0,'?'),(_binary '\y#\\\','wp-content/plugins/jetpack/modules/videopress/class-videopress-attachment-metadata.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\׉eo2z/\0`|P',_binary '6\m\\\\Z5v	4J_/EݛH\"2.|\','',0,'?'),(_binary 'Ɨ\\g\\\܎','wp-content/plugins/jetpack/modules/videopress/class.jetpack-videopress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')::\j\Y',_binary '\,6߰bdH\R4\,HZ\\\"1c','',0,'?'),(_binary 'u\\\\E\\\\0>\','wp-content/plugins/jetpack/modules/videopress/class.videopress-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\A\1rz#',_binary '\Zq\\5D\9\'Z\"\jw!Τ\"i@\','',0,'?'),(_binary '\\e;[g\','wp-content/plugins/jetpack/modules/videopress/class.videopress-cli.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\¶\dK\bf[',_binary '\>\\'}\%\?\r=\pgBKI\','',0,'?'),(_binary 'LVzxoYI_,\\kC','wp-content/plugins/jetpack/modules/videopress/class.videopress-edit-attachment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qWi\:[\n\^\\U',_binary '\\'n^?\@Rl\#bF`ɰ1\\ȷz	\','',0,'?'),(_binary ' $M\~vۨ','wp-content/plugins/jetpack/modules/videopress/class.videopress-gutenberg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\lε=\QWHOZ\',_binary 'Û]TM	PF~A\FY\\͒\+j','',0,'?'),(_binary '_Um!w\(\','wp-content/plugins/jetpack/modules/videopress/class.videopress-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"2\\\u)',_binary 'M\\?A3b\(~&\hA~v\\','',0,'?'),(_binary '+cs<P\\v-','wp-content/plugins/jetpack/modules/videopress/class.videopress-player.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(\PC)\\\)',_binary '\!\c\&q1\\'\\~	I	,ZQ','',0,'?'),(_binary 'HŗѧkN~(\','wp-content/plugins/jetpack/modules/videopress/class.videopress-scheduler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DX\ʲ\n\Z\r',_binary '\\\\\=	at\O\x4J ⯬','',0,'?'),(_binary 'GkK\>6c?Q\'','wp-content/plugins/jetpack/modules/videopress/class.videopress-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'um)ɬL-Ό',_binary 'F\\k讶\c78\B$\z\(J\','',0,'?'),(_binary '<~9\>2\\"3B ','wp-content/plugins/jetpack/modules/videopress/class.videopress-xmlrpc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2\CB\.\|?fp\',_binary 'l\\7K <t\Z\˚Tz<\[\','',0,'?'),(_binary 'tVh1z\\YQ','wp-content/plugins/jetpack/modules/videopress/css/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8M㢅\9\\',_binary 'g՘F\\\\ڬωZޭ\N','',0,'?'),(_binary 'w\r\rSp\','wp-content/plugins/jetpack/modules/videopress/css/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';|=K\̚',_binary '#`\\P?dk\HH\0G\#\ݟ','',0,'?'),(_binary 'Bԯ\DLk\r\','wp-content/plugins/jetpack/modules/videopress/css/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B#i痺>Q',_binary '7=ݓjz_g\\aq\UR\m\\0N','',0,'?'),(_binary '값[qcy\\','wp-content/plugins/jetpack/modules/videopress/css/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\簝܃>aT\',_binary '4\;x7tVK\x3\\\ˌrqj\\nX\','',0,'?'),(_binary ']*a#mv\\mWε ','wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o-\\'jaA\4\',_binary '\rɜ\;\(H\"3>3ob\\kg2\%','',0,'?'),(_binary '\\\C\\\f\	','wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\2<\,-{\1Æ',_binary '\\*\Z)]\"\&VbRig]7&\\ ','',0,'?'),(_binary 'ļVnFX=\\\051','wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\/D\',_binary 'K\\F;\\ۙ\t\\\Q','',0,'?'),(_binary '8\n\\\\\\7m|','wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dv\\\\#\0\\1m',_binary '\uE\(\\'Tu?\(T\\RV=ݩ','',0,'?'),(_binary 'A/:\rVB\E.','wp-content/plugins/jetpack/modules/videopress/editor-media-view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=\o/\\X',_binary '\c~vr\κ\QLm\pޤ,m/n','',0,'?'),(_binary '`\r٠˪4k','wp-content/plugins/jetpack/modules/videopress/js/editor-view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}Ra\G\BZ\0̓',_binary 'W\Z;}C[\)\'r\u\*\\','',0,'?'),(_binary '\=\\r\=\Du\rC','wp-content/plugins/jetpack/modules/videopress/js/gutenberg-video-upload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*,\\-\LK\ChlP',_binary '\\?7\y\l0wY\\r\\ z\}x\"','',0,'?'),(_binary '\\z\\"@\\Φ\m','wp-content/plugins/jetpack/modules/videopress/js/media-video-widget-extensions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\Jй\nj@h',_binary '(\Z\\\7\\\Jwy90弑[Mr\T','',0,'?'),(_binary '5+e*$\\{','wp-content/plugins/jetpack/modules/videopress/js/videopress-plupload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݸU\\\i\\v',_binary '5\"\\,\ՠ\,/,[Q̠ĲՃFf\n.','',0,'?'),(_binary 'І\V\h2O\\N','wp-content/plugins/jetpack/modules/videopress/js/videopress-uploader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\5o<B\',_binary 'dun\\$ێFځ[\du\ºûü\\0','',0,'?'),(_binary '\A\\ZRRRv(|\'\','wp-content/plugins/jetpack/modules/videopress/shortcode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\|\uc\\=\\',_binary '\\.|\F}9\ۂeRcUYLE\\','',0,'?'),(_binary ')y\)\|\9\','wp-content/plugins/jetpack/modules/videopress/utility-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ۜ\\DtԛL\',_binary '@N@NҾ%)\BYe.\K\l\<R<\x','',0,'?'),(_binary '\\C\kq?','wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ǿ\hD\'ո7;`',_binary '\6@=~\}\\D\hi=\Q\r','',0,'?'),(_binary 'q&\\"\\y\%\v\','wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qA\\g\9ly',_binary '\2цj:T\m_\޻\t\\'','',0,'?'),(_binary 'a܄f׽k\\','wp-content/plugins/jetpack/modules/videopress/videopress-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'za\ D\#\E\c',_binary ')\HC/Pdޅ\\\Q$','',0,'?'),(_binary ';I\ߝh\\NyK\','wp-content/plugins/jetpack/modules/videopress/videopress-admin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o\\#\Lt)\\oo',_binary '.s\r&#vs\\\U\'O\'R?@$I:\'','',0,'?'),(_binary '؂tCG\=&O`%','wp-content/plugins/jetpack/modules/videopress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\yF\j',_binary 'u%\{V{\\\\iHx+\\\I\','',0,'?'),(_binary '\J\*h\\NS','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/rtl/widget-conditions-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9[z.\V\{Zt\"(',_binary '\\?r\zo45\\J\\j\','',0,'?'),(_binary '&\\:XͰ','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7PtӀ\ٵ\Α',_binary 'E\\J\\\\5\\9\9׽:\q\ \%\dqQ','',0,'?'),(_binary '$:\\f\\ςQ\'','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\8#0jj\',_binary '\\9\?.\YϧǺa\V','',0,'?'),(_binary '|Nt\\Z\\I\\k','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\\V\\'1\n',_binary 'Ao\r\\u\Q7\X*\n|y_\\k','',0,'?'),(_binary '<ϑ]\.>\F\`','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WW\cf)xcA\\',_binary '?!\\P\L\\'MJ\1\\?\iU','',0,'?'),(_binary '\ΗvD\\#\d\ \-\N','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':ff\K#Ν@A-\Z\'',_binary 'qm	!\J\r{\/\Ttzi͟F','',0,'?'),(_binary '7w	uҕx.?B','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\")g\Sd8',_binary '-\ư3q\\ůj4kǟ\#z=\','',0,'?'),(_binary '0@pzshMe?\\}\','wp-content/plugins/jetpack/modules/widget-visibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ox-Q N\]\\',_binary 'UM&ɽ6SfAYR2ռJ}%u','',0,'?'),(_binary '\}*Po\g\w','wp-content/plugins/jetpack/modules/widgets/authors/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\>kh',_binary '!\,\]\,)!\?T\U)2u','',0,'?'),(_binary '\V h\)7*푕','wp-content/plugins/jetpack/modules/widgets/authors.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't%=[\Ҽ\ԍt~',_binary '!\0;v\\\P\@+\%\e\#5\','',0,'?'),(_binary 'ߢ_\?^pT\h','wp-content/plugins/jetpack/modules/widgets/blog-stats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\NѢ\\y\',_binary '1[f\)uU.@˴DMQK','',0,'?'),(_binary '\AD\5\S\\f','wp-content/plugins/jetpack/modules/widgets/class-jetpack-eu-cookie-law-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\SHFL:aJ=',_binary '\\\\-\\\0MtbҽYKN^g^QI','',0,'?'),(_binary '0\}ؚ\%f\\','wp-content/plugins/jetpack/modules/widgets/class-jetpack-instagram-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ws)}5pD\\\',_binary '\0eSMxK[\\\\B\ m\rMl_','',0,'?'),(_binary '\\G\wc\H','wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u95\J##\0q[\6',_binary '\HS\\##\rT\ߑ\eFE)E\Z','',0,'?'),(_binary '\:le\n\\3 \k\*','wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-map.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wHr\\JK\%\',_binary '\]g\a\ʕhY\ N\p\Z\\5r\\\\ߐ','',0,'?'),(_binary 'azj[2+\}b\"4~','wp-content/plugins/jetpack/modules/widgets/contact-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\j8\á\ޙ\\oj',_binary '\]9ac \	?-\ \	\ub2@\:\','',0,'?'),(_binary 'g\\XgZz\','wp-content/plugins/jetpack/modules/widgets/customizer-controls.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x/Ќza\\jS\',_binary 'd%0\-Vpi\\\0ח\\VPLY\\','',0,'?'),(_binary '\z \9Q\\岔5c','wp-content/plugins/jetpack/modules/widgets/customizer-utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X.%L\٣\Z\O',_binary '\t\\P&(>xys(z#:','',0,'?'),(_binary 's]\ZַDX','wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law-admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\D(,\r\q%Տ',_binary '*p6CF\)5盚ؑ@m4\\u1Z:\','',0,'?'),(_binary 'iGi[\LZgF6\0\0','wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+\r\Q',_binary 'F,\V\ML\\M\:\Law\\\}\"\','',0,'?'),(_binary 'RԤ]xc$\\׶','wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\xy\\'\',_binary ']ΙMD݅e\0\np0\\\\X@J','',0,'?'),(_binary 'z`sT\K<Q','wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p^\?\b\)hY!Uf',_binary 'H&A\!\E;Kf/\:4\\Ӷ=\"	','',0,'?'),(_binary 'ezB\;JD\2','wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/widget-amp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':N\t\X{I*',_binary '$z]MLDYv͜u,Z2\\\_ź:\F','',0,'?'),(_binary '>bзc','wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\mD\\]d\M\',_binary '=\ipnYĐW}\\\<T','',0,'?'),(_binary '\7\\rC)o^','wp-content/plugins/jetpack/modules/widgets/eu-cookie-law.php',0,_binary '=\"W	Ӷ\"Mo+\',_binary '=\"W	Ӷ\"Mo+\',_binary '&`NH&\\̈z0\'\@\8^\¯Ǆ','',0,'?'),(_binary 'D\\إ\/Vv\&','wp-content/plugins/jetpack/modules/widgets/facebook-likebox/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\@^p\%\\\ZFN',_binary '}$\\':O\\1y>?\blG\A\X\K+','',0,'?'),(_binary '+؎gBޕK\','wp-content/plugins/jetpack/modules/widgets/facebook-likebox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2]\\\Lm_',_binary 'NHM\\J}ƑK{\\S+\ӣ\\P','',0,'?'),(_binary '\cP}ѩ','wp-content/plugins/jetpack/modules/widgets/flickr/form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\ʿqn9',_binary '\Aa\\=n\9ϘrM\\o\\0\\\\','',0,'?'),(_binary 'h5Z\x\>','wp-content/plugins/jetpack/modules/widgets/flickr/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'os\Ŀ\\0#\\/K\\\',_binary '[\uk\\oeycs9\pǴ\"\	\','',0,'?'),(_binary '\\=O\\*3','wp-content/plugins/jetpack/modules/widgets/flickr/widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\8s\QV\5Qm\',_binary 'J\K3\\;M\Tv\ro\\p\m\I!_','',0,'?'),(_binary '~\4Gw_e\u\','wp-content/plugins/jetpack/modules/widgets/flickr.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zq,\io\i59',_binary '\a<Tm]\\(.;`k\C\(\\','',0,'?'),(_binary 'U \#5H2R*0','wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`ȴ<\G\\ï\',_binary 'Ǘ&bI\\}\\ra6!S','',0,'?'),(_binary '\\J1\Q忀d0\w','wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*g1d#S',_binary '=0\nF\u(f\s\?a\\oS!@\5\}\\\n','',0,'?'),(_binary '3;|x\\\'6','wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'abbx`NDvϼ',_binary '\Α\&\\3Zbq]\\\nU\_:*0p','',0,'?'),(_binary '@n\[e*>\ (<\ZP','wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$\;\ҩ=',_binary '\\$\i(}([o\\x\0Eh\s','',0,'?'),(_binary 'q\\nU@?','wp-content/plugins/jetpack/modules/widgets/gallery/css/rtl/admin-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\\\\\;)C',_binary '(>M\< qs\0ĝ|S\iA%P','',0,'?'),(_binary '\\B$\\d\!\-S','wp-content/plugins/jetpack/modules/widgets/gallery/js/admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NԫY߮\_\j/\eW',_binary '\|\Y=Cd\ЗTi@\\p+I\w/Xb','',0,'?'),(_binary '\PO\0C~U\2\\','wp-content/plugins/jetpack/modules/widgets/gallery/js/gallery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\0B',_binary '\pD\"nl\oBbT%&v','',0,'?'),(_binary 'Q\(\<\0m','wp-content/plugins/jetpack/modules/widgets/gallery/templates/form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xZ@X\\͌\%',_binary '\6y\\3]}/T6u+\Z\r','',0,'?'),(_binary ':qX=Cˁ\nD,\','wp-content/plugins/jetpack/modules/widgets/gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]|\.݂P\\',_binary '\N\\2\׿Gb\v\\\r>4q','',0,'?'),(_binary 'u9\6\\\'>','wp-content/plugins/jetpack/modules/widgets/goodreads/css/goodreads.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yi\\\\\4\\Z',_binary 'U7@dk_ \\\\\\QUQ`)\','',0,'?'),(_binary '\\j|\چ\H!','wp-content/plugins/jetpack/modules/widgets/goodreads/css/rtl/goodreads-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'*,\Z\&',_binary 'l&e{o>->=(V	Z۲7Lͥ;Cy','',0,'?'),(_binary '\\!\BM\','wp-content/plugins/jetpack/modules/widgets/goodreads.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\Z\lb\',_binary 'ʬTO%=\Vz\ejp\H\~','',0,'?'),(_binary 'b\\EJ\i\L{t','wp-content/plugins/jetpack/modules/widgets/google-translate/google-translate.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\\[\\Ī\\\"#v',_binary 'Ԋ\?$#(\\IP\L\͍I\\p','',0,'?'),(_binary ';\$\O\\nMXcyR','wp-content/plugins/jetpack/modules/widgets/google-translate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ǣZ&>*',_binary '\\{R`6-	>ˎ)\\r?\|\9`','',0,'?'),(_binary 'i/0ʶ\"#W','wp-content/plugins/jetpack/modules/widgets/gravatar-profile.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\5xQ2%\X7\',_binary '\z)kI\\\\vy!8\\oB','',0,'?'),(_binary 'G\ro\`z','wp-content/plugins/jetpack/modules/widgets/gravatar-profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\\\\\\{',_binary 'y I\5})\pǮ\DpT}4\','',0,'?'),(_binary 'v\^\ȡC\\ܮ\','wp-content/plugins/jetpack/modules/widgets/image-widget/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\\0ř\<!\r\XM',_binary 'TA3/\\c@\\Hu\^	\','',0,'?'),(_binary 'Pw*;]\04','wp-content/plugins/jetpack/modules/widgets/image-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٓDp\h\ZY\',_binary '\3Rw\?	$qmˏ\K8-r4?,CK','',0,'?'),(_binary '@=\\)U\"\'','wp-content/plugins/jetpack/modules/widgets/instagram/instagram.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v]6\cf',_binary '|#\\\r\+L\\EY\|9J+','',0,'?'),(_binary '[(	Hй\\bW','wp-content/plugins/jetpack/modules/widgets/internet-defense-league.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Π\nk\\Q#_',_binary 'D\ʜ~t\/u\l$P>֩\\TKM','',0,'?'),(_binary '.W扖`þ','wp-content/plugins/jetpack/modules/widgets/mailchimp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/au\/T\.Z%(B',_binary 'BB\UgW.whlf\Zږ\c.h\\\E/f~\\','',0,'?'),(_binary '9\":\H\qlj\\	','wp-content/plugins/jetpack/modules/widgets/migrate-to-core/gallery-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H@YCm\|\\\Z\rV',_binary 'iGLⲮ@}\r\Ksb|°\r\\\[','',0,'?'),(_binary '4*ɷ[BFIQ\','wp-content/plugins/jetpack/modules/widgets/migrate-to-core/image-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f773M\ܷ\.',_binary '\`TH/\|i~	\\!H/&','',0,'?'),(_binary 'Nz7\\\\','wp-content/plugins/jetpack/modules/widgets/milestone/admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Olj{-\\\#\"',_binary 'h\\+X\!`-\׼R)a\','',0,'?'),(_binary '\i\\\\\\\','wp-content/plugins/jetpack/modules/widgets/milestone/class-milestone-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'{wLEQqE|n;',_binary '7\r_#7#|LZɴ/\Nyt','',0,'?'),(_binary 'C\7ӃU','wp-content/plugins/jetpack/modules/widgets/milestone/milestone-widget.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`fO`\tG\\\',_binary '6\FJ\X\\\cCq\>','',0,'?'),(_binary 'y\\Nˎ5U\Z\c\','wp-content/plugins/jetpack/modules/widgets/milestone/milestone.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\rbu\B\>\;M',_binary '{9\.kR\\\\D\5hZ+','',0,'?'),(_binary '*e@4\t*X\H\','wp-content/plugins/jetpack/modules/widgets/milestone/milestone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\V[\.\ZC-',_binary '\P^%\\Xݳ\\z\\~N)','',0,'?'),(_binary '1^\Zg0\"+1\','wp-content/plugins/jetpack/modules/widgets/milestone/style-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&qh\\y2~r,\',_binary '\e*3\>kŖbf\ki\&\\','',0,'?'),(_binary '\}+E\\\$$H^\','wp-content/plugins/jetpack/modules/widgets/milestone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \0}螪o%\\\',_binary 'iq\B\{\Z%!\nt\'\rB`uۇ+S6H','',0,'?'),(_binary '\\\)]5\','wp-content/plugins/jetpack/modules/widgets/my-community/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.p\|\')',_binary '{X<\n;\.\k\\\\\\r*;yܳ','',0,'?'),(_binary 'm\X\\VYQ\V\O','wp-content/plugins/jetpack/modules/widgets/my-community.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݖk1\t\L\\v\K1>',_binary '@iMk6W\oSa\\\f\','',0,'?'),(_binary 'nJ\\\\.+','wp-content/plugins/jetpack/modules/widgets/rsslinks-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}~hP3X',_binary '\&xB\\`,\"fW/6\4','',0,'?'),(_binary '\\"}A\%˝]','wp-content/plugins/jetpack/modules/widgets/search/js/search-widget-admin.js',0,_binary 'uJ^MdJe^\',_binary 'uJ^MdJe^\',_binary '3%O\ZL\;\r=J\a^\l<ٍ\5','',0,'?'),(_binary 'M\\xz@\\\J%?','wp-content/plugins/jetpack/modules/widgets/search/js/search-widget.js',0,_binary 'z@\\'k\\\ib%1(\rA(',_binary 'z@\\'k\\\ib%1(\rA(',_binary 'ʆN^5\\ܖ^\58\.\fyUh/\Bd','',0,'?'),(_binary '`eLg!ZgԻ\','wp-content/plugins/jetpack/modules/widgets/search.php',0,_binary '\ٜ\\W',_binary '\ٜ\\W',_binary '\@ЯCZ1W\VvLL\\NU\','',0,'?'),(_binary 'ۘ1\\\"[C	:+̩','wp-content/plugins/jetpack/modules/widgets/simple-payments/admin-warning.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ھv`ө\a\ۺ',_binary ' >4eZ4onMݥ	\\&-{\\g\\>','',0,'?'),(_binary '.w]mg^<\\@K','wp-content/plugins/jetpack/modules/widgets/simple-payments/customizer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ꔽ:&<c\.5(o\',_binary ';.R{\\\nRb\'|H?\\0\\','',0,'?'),(_binary '\՗\\"\ÌnM\','wp-content/plugins/jetpack/modules/widgets/simple-payments/customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`+D\\rUg\EP\rO',_binary '/\\FWѸ`l\-\)ڸ\','',0,'?'),(_binary 'G\{}\\]Dc','wp-content/plugins/jetpack/modules/widgets/simple-payments/form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\sX>=\<T_/S\\',_binary 'db{Ꭱ\\blL\]V5O\\.\"\oߨ\','',0,'?'),(_binary ';L{__%\0A','wp-content/plugins/jetpack/modules/widgets/simple-payments/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v;\mF+D\"ݶ-',_binary '\\K]N?\t\'a\\<u;\\\\Cc\\\','',0,'?'),(_binary '\XI\\\P\r~','wp-content/plugins/jetpack/modules/widgets/simple-payments/widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6Acj!١',_binary 'i$d!\\P]\mxNV5E\\\H\\\\@T_','',0,'?'),(_binary 'JvC>Yj5\\','wp-content/plugins/jetpack/modules/widgets/simple-payments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'Xǅfɀ?\%ך',_binary ';.Bc?*\_v\kl\\y<UvF','',0,'?'),(_binary '![\T\lR%le\!0d\','wp-content/plugins/jetpack/modules/widgets/social-icons/social-icons-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LY\'\\oM&\',_binary 'ɛ\\ƌ;ų\'\\\\Ͽ\0v\\\'','',0,'?'),(_binary '\\\2\nq2|F\h','wp-content/plugins/jetpack/modules/widgets/social-icons/social-icons-admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i60\v4kZ',_binary '쐯6\%j\c\-\\K+#m\Jz','',0,'?'),(_binary 'ҍ\.\\Ň\7Q','wp-content/plugins/jetpack/modules/widgets/social-icons/social-icons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}acحɮo\',_binary 'aB`p\\Zm\}X\\\\\fYA','',0,'?'),(_binary '\VCA3!\0f\r','wp-content/plugins/jetpack/modules/widgets/social-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V7\Ѝ\ u{# ',_binary '2@Bb/I\\\w\\ \@\Fo\7','',0,'?'),(_binary '&x\L\\^','wp-content/plugins/jetpack/modules/widgets/social-media-icons/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']{w\JO\/\c˘JI',_binary '<Eq)7\\\u\M|i\\h?ϫ>','',0,'?'),(_binary 'b <nq\\A','wp-content/plugins/jetpack/modules/widgets/social-media-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(J\\=ͭ\\)\',_binary '\sC\q\\\,o\xMz++\\\T','',0,'?'),(_binary '\P\\\Z 9','wp-content/plugins/jetpack/modules/widgets/top-posts/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'od\\Zc\\h\n\\h',_binary '\w[L9k\y\b\\\Aa\BeVCnJ','',0,'?'),(_binary 'Ѓ\'=ಎQc','wp-content/plugins/jetpack/modules/widgets/top-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1drp\\\)8',_binary '`=V\\ؾK	<̵x`H^Ky%i\\	','',0,'?'),(_binary '\H\//@>A\','wp-content/plugins/jetpack/modules/widgets/twitter-timeline-admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\?\&pd\\@',_binary '\\9sp1}-:|\'\T\zi-Ad\\','',0,'?'),(_binary 'gr\\rB\a\\','wp-content/plugins/jetpack/modules/widgets/twitter-timeline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^F2©jZ \͘L',_binary '\ lc/[¢F\D\濛~ϣUb.','',0,'?'),(_binary 'S\\\\ּaļ\nO','wp-content/plugins/jetpack/modules/widgets/upcoming-events.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8).)<ܰ\n',_binary '\7d=A\\{ޯmMŞ\YYÁ\yk#T\','',0,'?'),(_binary 'Kv/\s$jiZZ_\','wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget/class.jetpack-display-posts-widget-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@kļ8\Z\A%~\',_binary '֑)y\\,iF[?\\~\QoN\0\ų','',0,'?'),(_binary 'f؆\0\c\C','wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget/class.jetpack-display-posts-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ngz\:5U2\0\'\\',_binary 'y+\OW\\09s\"X8^','',0,'?'),(_binary 'hI\śHb\\\'\','wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':37z~p',_binary '@rw\qr,t֩y|p\d\>ILN0+','',0,'?'),(_binary '3i\-zn\\\Q\$','wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '% -+\5\nI\\\',_binary '\d\~\Y^>rr֡TM6\r\\\\','',0,'?'),(_binary '?\\O)\0c','wp-content/plugins/jetpack/modules/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PIS\f\<',_binary 'T\F7M\ek\}~ͣ\1\|\\\\','',0,'?'),(_binary '_q&m:E\J~\Z4','wp-content/plugins/jetpack/modules/woocommerce-analytics/class-jetpack-woocommerce-analytics.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<zt\̑_\\r\=\\',_binary '<[\l\ڃ\]!\$X0r\\0R\','',0,'?'),(_binary '*v<\Gb\c','wp-content/plugins/jetpack/modules/woocommerce-analytics/classes/class-jetpack-woocommerce-analytics-universal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6p\\0%E\(h',_binary 'Or\`\`~g.Ã\D>\*\\`\\m\\','',0,'?'),(_binary '\d03\F{)BLxp','wp-content/plugins/jetpack/modules/woocommerce-analytics/classes/wp-woocommerce-analytics-universal.php',0,_binary 'fűk\ʣHf_O^',_binary 'fűk\ʣHf_O^',_binary '\\"\d9\O	!Z\u!d\xj','',0,'?'),(_binary 'f\0\\X\D͞\@','wp-content/plugins/jetpack/modules/woocommerce-analytics/wp-woocommerce-analytics.php',0,_binary 't<\|LcJ\'',_binary 't<\|LcJ\'',_binary '\GK` gI\,\\(\\14','',0,'?'),(_binary '%Wx\Y)MK\','wp-content/plugins/jetpack/modules/woocommerce-analytics.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5$vyF \0V_>ro\',_binary '$\\3t<\Ջ\\"7u\1u	\\0W?','',0,'?'),(_binary 'B썣1{\\]\rK','wp-content/plugins/jetpack/modules/wordads/class-wordads.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\j\@{EI\',_binary 'gƃ\Azp\N&\7g0HZ/aW\/,','',0,'?'),(_binary '\\,jq\(H;<	0','wp-content/plugins/jetpack/modules/wordads/css/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɀ\Cac\Z\\ܑ8N',_binary 'BV\n\ꡬ\CŜ$\\fp\/\\0\','',0,'?'),(_binary '`\n\\;\\\9\@o\?','wp-content/plugins/jetpack/modules/wordads/css/wordads-ccpa.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$9dO\5xrYg\',_binary '[]`\\"\\㿻)D%U2.(m\?)Zr8','',0,'?'),(_binary '\tB\\\G','wp-content/plugins/jetpack/modules/wordads/js/wordads-ccpa.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\	\%w\OC\|4',_binary 'Ɯ\]\!\ C2\\Ѹ[HБ\_K','',0,'?'),(_binary 'Qxy\\]M]\\rЊ`','wp-content/plugins/jetpack/modules/wordads/php/admin.php',0,_binary '%cr7\Z)@',_binary '%cr7\Z)@',_binary '+\\\'\$\\\W4W=u\'A@gh\','',0,'?'),(_binary '{%\\n\"Y;^\6=ȯ','wp-content/plugins/jetpack/modules/wordads/php/api.php',0,_binary 'kRNV3ujѿKK\',_binary 'kRNV3ujѿKK\',_binary 'l}\\nQ##dy\niI:AسbF2hr\','',0,'?'),(_binary '\\g\\\jS\2\\','wp-content/plugins/jetpack/modules/wordads/php/class-wordads-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`Ⱦ{p}*?-\',_binary '}?\"+:0 \s\5\0᝖n2Z\;\	C','',0,'?'),(_binary '\(i|N\t#\','wp-content/plugins/jetpack/modules/wordads/php/class-wordads-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DgP\]i+\2VH',_binary '\kԶ\1I\놨\ZA\; gMnMxJ','',0,'?'),(_binary 'W)\\4g}\q\\\','wp-content/plugins/jetpack/modules/wordads/php/class-wordads-california-privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0nCr\=* K%7v\\\',_binary '\\\|Z^3\K\;Q|BX;̺T¤\rTw01m','',0,'?'),(_binary '.\\"\\\T}\΄xޘ[','wp-content/plugins/jetpack/modules/wordads/php/class-wordads-ccpa-do-not-sell-link-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rc(T)2st\4',_binary '&/tn!\i.qU\<0\s%Ƥ\\Ǯ','',0,'?'),(_binary '\Ӂ\D:E\?','wp-content/plugins/jetpack/modules/wordads/php/class-wordads-cron.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4\\\\N[h',_binary '\X\\>\C|8B\\/~\\\G\\L','',0,'?'),(_binary '\"`\dRu9\\ne9','wp-content/plugins/jetpack/modules/wordads/php/class-wordads-params.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(#L|W-\OB',_binary 't(8\et:4{\AGmhT\Lp\','',0,'?'),(_binary '\\*@\6\Z\jI0','wp-content/plugins/jetpack/modules/wordads/php/class-wordads-sidebar-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\A\\}Jt\',_binary '/!V\\rJ\"]Wg\\;6\'4ϑu\','',0,'?'),(_binary '\\w}}G\\\̳','wp-content/plugins/jetpack/modules/wordads/php/cron.php',0,_binary '\\\9M\xLrGQY%',_binary '\\\9M\xLrGQY%',_binary 'ձ0C1G(tޘ\\X\Z\hX\÷','',0,'?'),(_binary 'пUt=\\\"x','wp-content/plugins/jetpack/modules/wordads/php/networks/amazon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\UO\\`\"',_binary '?\<7\r&׫Yd\\ñQU\V\\<\\3(J','',0,'?'),(_binary '\r\\Ǵ\\\\^','wp-content/plugins/jetpack/modules/wordads/php/params.php',0,_binary '*ݖE\@\\n(',_binary '*ݖE\@\\n(',_binary 'Iw\n\n\.Nt\3*}rb\n\k\0=','',0,'?'),(_binary 'x4\)\`\df^','wp-content/plugins/jetpack/modules/wordads/php/widgets.php',0,_binary '\#\\!\I$^Kb\,\B',_binary '\#\\!\I$^Kb\,\B',_binary '\\\ΑI\\0\d{W\a\\,E9罣','',0,'?'),(_binary '\n\\^.\\'\nu\"+I\','wp-content/plugins/jetpack/modules/wordads/wordads.php',0,_binary ';9$\n^',_binary ';9$\n^',_binary '\p쇧p\\0»\Zcd\n\0\@\\','',0,'?'),(_binary '{Aj\\Gގ@|-\','wp-content/plugins/jetpack/modules/wordads.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-ת\\	\4-* E',_binary '\\\\\Z	B\\R̎v4]Ol\P\n\"','',0,'?'),(_binary 's\?\\Cis\','wp-content/plugins/jetpack/modules/wpcom-block-editor/class-jetpack-wpcom-block-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Y.z\\Ay)c~',_binary '\.|\\K/N\\e	4:\\\\R|\\K','',0,'?'),(_binary '\\\E+t&570','wp-content/plugins/jetpack/modules/wpcom-block-editor/functions.editor-type.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӰQhLkpm\5r\"',_binary '\q\|lm\A⍅\%7ۚj','',0,'?'),(_binary '\\jS\8귯\t?','wp-content/plugins/jetpack/modules/wpcom-tos/wpcom-tos.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"ȐnC\`',_binary '_\Z\6rm\\\\n$߻rTV\','',0,'?'),(_binary '\73^	B#@','wp-content/plugins/jetpack/modules/wpgroho.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\x\\\tU$ݭ\\n',_binary ':\\r)\\\C\R\%7e\'\vD\m\\\(+J','',0,'?'),(_binary '\1/龓`N7\{','wp-content/plugins/jetpack/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z8\(\>\\',_binary 'U|\\\	VXSDQx;i\U\&\\\@','',0,'?'),(_binary '\\\mXK','wp-content/plugins/jetpack/require-lib.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~?D^r][\',_binary '\d\y\P\d`\x\]lW$\\b7\','',0,'?'),(_binary '\\Bɗ\','wp-content/plugins/jetpack/sal/class.json-api-date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K͍h\>27\.m.',_binary 'u\\+\08;\Z\n\z$k0(t\?씾','',0,'?'),(_binary 'SP\\h\cb\\r','wp-content/plugins/jetpack/sal/class.json-api-links.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\\\\\\U7D\Z',_binary 'x֤rq\Y4B&\"`◸,V','',0,'?'),(_binary '8ҥ}\\&F]G','wp-content/plugins/jetpack/sal/class.json-api-metadata.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}bT=Qi\T~T ',_binary '\N\*\\\I\\yDLԁV\\׬\֏','',0,'?'),(_binary 'WS\ڳ촤{n*','wp-content/plugins/jetpack/sal/class.json-api-platform-jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\4k$\0Tw\',_binary 'EŹN_\\pu$J*Du\~\J','',0,'?'),(_binary '|X@<hاk\\0A','wp-content/plugins/jetpack/sal/class.json-api-platform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ѫics\Ő-MV',_binary '1rN`E0j\A$?\0\J?\l\+v','',0,'?'),(_binary 'ޱ=E&\d*','wp-content/plugins/jetpack/sal/class.json-api-post-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$Dte\=\:3t\"',_binary ']\\\V?H\HE\ǤWH\Ł?\0','',0,'?'),(_binary 'c\wmҽ\\\ֻ\tx','wp-content/plugins/jetpack/sal/class.json-api-post-jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{ZgGz)\MҎ',_binary 'ǑY_0\	n}i\r\\\N\9@j','',0,'?'),(_binary '\0D~+$6sq͉','wp-content/plugins/jetpack/sal/class.json-api-site-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')xC\\ZOdKۃ7%',_binary 'ڶF/hS\>Ť0\0\\\"tpL\\','',0,'?'),(_binary '\\\hi~\?\','wp-content/plugins/jetpack/sal/class.json-api-site-jetpack-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'É\.S=\Z@\n',_binary '}%jͩ\'&uo\\_t\\\:#*t>Y_','',0,'?'),(_binary 'un\\X\\1','wp-content/plugins/jetpack/sal/class.json-api-site-jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iF9\r\RMcr\K',_binary '	GL\|#̓3jVY\݉7թBn','',0,'?'),(_binary '\2\^<\O\=','wp-content/plugins/jetpack/sal/class.json-api-token.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\\\\Z2\\\I',_binary 'P*\`S\H*\'Ly8\\zh\\','',0,'?'),(_binary '\qT{-iղ','wp-content/plugins/jetpack/src/Tracking.php',0,_binary '66Ol\\Ր\r',_binary '66Ol\\Ր\r',_binary '[|Ry.(hT(\\^JxL\k','',0,'?'),(_binary '\n\I\-O#@A\\O','wp-content/plugins/jetpack/src/class-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fˡ~\7\}0p-',_binary '2iBL |\^\$!Y2\j\ ','',0,'?'),(_binary '\=\Y=\"\[\+','wp-content/plugins/jetpack/uninstall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':P\Chd\A',_binary '\ s\b5؍8lL\Gp6\-\','',0,'?'),(_binary '\m{s@\b\e','wp-content/plugins/jetpack/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\LԸĵ\4\β',_binary 'rZ\n7M4ɸUQ\c\Yo\\\\c','',0,'?'),(_binary 'n5\eϕT\FEZ\'\','wp-content/plugins/jetpack/vendor/autoload_functions.php',0,_binary '\">\\JfD',_binary '\">\\JfD',_binary 'y\jW\\+\0h=;?\\\{w\\\TLv\','',0,'?'),(_binary 'B1\\"&\\T\|8\','wp-content/plugins/jetpack/vendor/autoload_packages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u_m\!\\}\ \\',_binary ')\#G@\0KmvFR:\\\[\`\','',0,'?'),(_binary 'S?s~\l\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-a8c-mc-stats/src/class-a8c-mc-stats.php',0,_binary '\G1vA\L\',_binary '\G1vA\L\',_binary '{\\\8oSwH\ ɹU\?u\\\','',0,'?'),(_binary '\mQMUn,63kK','wp-content/plugins/jetpack/vendor/automattic/jetpack-abtest/src/Abtest.php',0,_binary 'Z\Ic4\\"\_KXX',_binary 'Z\Ic4\\"\_KXX',_binary '\U\>IQ\0z\4Z\;`\RHl','',0,'?'),(_binary '\f5\\m\Z\\(\','wp-content/plugins/jetpack/vendor/automattic/jetpack-abtest/src/class-abtest.php',0,_binary '\^K.g`=\',_binary '\^K.g`=\',_binary '\\\H\.KA\-\Zis\g\m6{x\\g\B','',0,'?'),(_binary '[e;\7xn+\r@p^','wp-content/plugins/jetpack/vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php',0,_binary 'v:؇\\P.Dl0',_binary 'v:؇\\P.Dl0',_binary 'ď#f\09R\n}bg=\l\_\\\Ү','',0,'?'),(_binary '1 hyt\E\\\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-admin-ui/src/fonts/jetpack/jetpack.svg',0,_binary '\69\\'\ݚ;\',_binary '\69\\'\ݚ;\',_binary '\ҺC	-Pc\)D\ׁR|+\Px\+','',0,'?'),(_binary 'fu=\\\L','wp-content/plugins/jetpack/vendor/automattic/jetpack-assets/src/Assets.php',0,_binary '2\@I%Ѭ\`',_binary '2\@I%Ѭ\`',_binary '\0@\)\0\\E\J\}+\e1S\n\\"ơ\','',0,'?'),(_binary '\\fF+v8v#G','wp-content/plugins/jetpack/vendor/automattic/jetpack-assets/src/class-assets.php',0,_binary 'OН\	\\KdK\4',_binary 'OН\	\\KdK\4',_binary '\\=dka\\n\v6#\ֵ$>#','',0,'?'),(_binary 'dH\NQ1\B\','wp-content/plugins/jetpack/vendor/automattic/jetpack-backup/actions.php',0,_binary '\rO\m[\g%\\\',_binary '\rO\m[\g%\\\',_binary '\\\\VLu`чP\ \~$4>\	','',0,'?'),(_binary 'R? ,\\Z\','wp-content/plugins/jetpack/vendor/automattic/jetpack-backup/src/Helper_Script_Manager.php',0,_binary 'Té\\q\\9\\',_binary 'Té\\q\\9\\',_binary '\3@\\Z\j\9\i\Z\C\\yg\_ȯI\0','',0,'?'),(_binary 'lM\5FDgCw','wp-content/plugins/jetpack/vendor/automattic/jetpack-backup/src/class-helper-script-manager.php',0,_binary 'Té\\q\\9\\',_binary 'Té\\q\\9\\',_binary '\3@\\Z\j\9\i\Z\C\\yg\_ȯI\0','',0,'?'),(_binary '!O2\7PN\Z\Nˣ','wp-content/plugins/jetpack/vendor/automattic/jetpack-backup/src/class-package-version.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\``7\SR\\q',_binary 'X\z&Ry9>\ xy\Z֎ܟ\\O\y','',0,'?'),(_binary 'A_M\nrY','wp-content/plugins/jetpack/vendor/automattic/jetpack-backup/src/class-rest-controller.php',0,_binary '9\\+-^-ip,/V\',_binary '9\\+-^-ip,/V\',_binary '|KbD\#\R\J莽\\','',0,'?'),(_binary 'D\EWY\9R\','wp-content/plugins/jetpack/vendor/automattic/jetpack-blocks/src/class-blocks.php',0,_binary '\'U\\߹IUSJ3l',_binary '\'U\\߹IUSJ3l',_binary '\kK\utaM\?aE\\>-\Q\','',0,'?'),(_binary '{l\fc*/\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/functions.php',0,_binary '!JNDNX\',_binary '!JNDNX\',_binary 'OjԀ5+S\Q9\r\~F.%\e#','',0,'?'),(_binary '\\K>O^0**؝','wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpack-client.php',0,_binary '\\\\\\\zbW',_binary '\\\\\\\zbW',_binary '\&|\*,Z\ |_3Usu\j\s\F','',0,'?'),(_binary 'ՙ}\1@7L\?4','wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-actions.php',0,_binary '̐Y\\\\\"#\u',_binary '̐Y\\\\\"#\u',_binary '\rO-KLDïMc\X\_Jab	\p\\ U.','',0,'?'),(_binary 'Ch\1?_M=$	V)','wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php',0,_binary 'WӽS_gcLH',_binary 'WӽS_gcLH',_binary 'kL-\Go\ǈgY+\n)P6ͩX\t','',0,'?'),(_binary '|Om}\\ZU\\4\B','wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-settings.php',0,_binary 'o;(ed-/B',_binary 'o;(ed-/B',_binary '\"\"%#\\6xd\?ϭn\2\"Ho','',0,'?'),(_binary 'um(ݾ>\|$\\l','wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpacktracking.php',0,_binary '\)Z˸UaLʯlL7',_binary '\)Z˸UaLʯlL7',_binary '\69Lf<.\\|\)Xvgw^g4\\','',0,'?'),(_binary '4ĕ<MS{','wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-client.php',0,_binary 'l\4\7Dw\:\F\',_binary 'l\4\7Dw\:\F\',_binary '\0m+HlN\n\o\?ab_T	','',0,'?'),(_binary 'p:{Mp:M','wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-sync-actions.php',0,_binary '\\R\m\q\',_binary '\\R\m\q\',_binary '\ \nir\zȽY\\ZL\M\\,','',0,'?'),(_binary ')\틊ۻ\rri','wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-sync-modules.php',0,_binary 'WӽS_gcLH',_binary 'WӽS_gcLH',_binary 'kL-\Go\ǈgY+\n)P6ͩX\t','',0,'?'),(_binary '7\\\\\\r\\<','wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-sync-settings.php',0,_binary '\y3s\|̛\\d٭t',_binary '\y3s\|̛\\d٭t',_binary '?<\\4Ry\P\\qhZe\(	X\','',0,'?'),(_binary 'B,\h\\T\u-','wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-tracks.php',0,_binary 'Jb\,N\\',_binary 'Jb\,N\\',_binary 'ͯUWB*-A\\H;\u~#t)','',0,'?'),(_binary '¡_K\\elU;\','wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/lib/tracks/client.php',0,_binary '#S]Fb\t$ǝ',_binary '#S]Fb\t$ǝ',_binary '\\]@^\j+\rc\d\	$<vf\@]\','',0,'?'),(_binary 'c͕\\6\\9\\\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-config/src/class-config.php',0,_binary '8uO^\|ϖ\\'',_binary '8uO^\|ϖ\\'',_binary 'X<\\\%j\0\O/n!D5v\\n]','',0,'?'),(_binary '\~g0I8\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\yK<MA\0',_binary '3qaC\\]\E:귻ϯu\\}','',0,'?'),(_binary 'Y\GXJ7!Z\[9\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php',0,_binary '=w5D\	Up=',_binary '=w5D\	Up=',_binary '\GT\ <\T\\_\r.M\#\,=\~^','',0,'?'),(_binary '$\VmC,7	\\\\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\fu\Ҷ\\ͫ',_binary '\p=%X\A\XFM\\\ÊaU\\'#','',0,'?'),(_binary '\\`A:f\n\7\\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php',0,_binary 'X)\_y_',_binary 'X)\_y_',_binary '\\\b|}掜\}ܖB_uQS\o$ߖ','',0,'?'),(_binary '9	:\\u?\.\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class.jetpack-ixr-client-multicall.php',0,_binary ')7_\]`z\=\\{',_binary ')7_\]`z\=\\{',_binary 'L\#<4ܑ\\)\\1\"3P\>E\T','',0,'?'),(_binary '|7\\/$\\@} ','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class.jetpack-ixr-client.php',0,_binary 'Ɉ	@87g5/\',_binary 'Ɉ	@87g5/\',_binary '/Sx \K̷:h\IB\QE\˝!EK','',0,'?'),(_binary 'vTX\1BG\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class.jetpack-signature.php',0,_binary '\\$2\\Z\R\H',_binary '\\$2\\Z\R\H',_binary '!.@\\лs_PY_Զ\\]>\\\ad','',0,'?'),(_binary '>\=wY$Ig\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class.jetpack-xmlrpc-server.php',0,_binary 'SO:3∲R\]\Z',_binary 'SO:3∲R\]\Z',_binary '+\\\\|\Z\1\9X_ٔ!\','',0,'?'),(_binary 'w\\\Pߥ','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/load-ixr.php',0,_binary '^eWf]\72qD6\',_binary '^eWf]\72qD6\',_binary '4$a\y|s\Z[ I\\?p\'@:g\;JH','',0,'?'),(_binary '\z`3`3p\\\j','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/Client.php',0,_binary 'a.\\03Di\"\\',_binary 'a.\\03Di\"\\',_binary 'QW\?D\r0o\\\ˉ]XL\','',0,'?'),(_binary 'YAtL `-H$\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/Manager.php',0,_binary 'u{EW\\76Z;s',_binary 'u{EW\\76Z;s',_binary 'Y\f_N;b\ro-Vwk\h\\.#oI','',0,'?'),(_binary '\r\\\>)\\\\wf','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/Manager_Interface.php',0,_binary 'z\q\\\0\c$S',_binary 'z\q\\\0\c$S',_binary 'e?\W\?Je?U\.\r','',0,'?'),(_binary 'ߒ\\&GW\\\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/REST_Connector.php',0,_binary 'ww~~\\XTu%',_binary 'ww~~\\XTu%',_binary '+\\|x\JW0W\\;j\@Wl9k','',0,'?'),(_binary '{Ӳ\F!;w\j','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/XMLRPC_Connector.php',0,_binary '\O2+\;\\jg	p,',_binary '\O2+\;\\jg	p,',_binary 'Bo\z70.En vi}K\\XU','',0,'?'),(_binary '{\\4\Z\;?\\Z','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\x*mHr*\n\',_binary '0~,\Ki\89R\T!@֢<\~h\\AtZW','',0,'?'),(_binary '\\\\ΰ!NAL','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-error-handler.php',0,_binary '4ņ\\\om',_binary '4ņ\\\om',_binary '<x(}1D4\E|\*\\b\q','',0,'?'),(_binary 'A+Iӳ3Z?','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-initial-state.php',0,_binary 'P|d\w\~>',_binary 'P|d\w\~>',_binary 'GOVO\k\\\aIۥ}ܐ]c\ﺞ\6','',0,'?'),(_binary 'p\\pE j\\+\r\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-manager.php',0,_binary '\\\5FTX/aS',_binary '\\\5FTX/aS',_binary 'Y/F/ҫ$\Qg\rYD	{h]\b','',0,'?'),(_binary '\0Ѭ9to1\o^t\"','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-nonce-handler.php',0,_binary '\I\\@]1Q\w^',_binary '\I\\@]1Q\w^',_binary '7\\\\p\y7\-w\6H\ij\\Z\rBF#\','',0,'?'),(_binary '\ɝf\4m\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-package-version-tracker.php',0,_binary '\ݧh\\"[d\r[',_binary '\ݧh\\"[d\r[',_binary 'c\\\#JhAgEi\\R\r`706R$\\\','',0,'?'),(_binary '7\\ٵx\%;\xnk.B','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-package-version.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\8`9)рYɚ',_binary '\\\wu\r\\g\o0Y\\'8\\oIy)al','',0,'?'),(_binary '1NJ\'JXU\S=K','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-plugin-storage.php',0,_binary 'S\3\\\ULb',_binary 'S\3\\\ULb',_binary '\wѾJ䱶\\0Ul2N<\\<^','',0,'?'),(_binary '\I^u8\s','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-plugin.php',0,_binary 'r\rh*\tj#~_',_binary 'r\rh*\tj#~_',_binary 'lq\y\K\\쩣+Цo+\','',0,'?'),(_binary '\\w.\\%}o','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-rest-authentication.php',0,_binary '\Х`+1X\M\n74\',_binary '\Х`+1X\M\n74\',_binary 'tLe=y*|j@T\\)\E','',0,'?'),(_binary '\ٻl\Ћ','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-rest-connector.php',0,_binary 'NPXQ(|xChp\TR',_binary 'NPXQ(|xChp\TR',_binary '\L\\\\\]\T\֐uN\,\>&\/','',0,'?'),(_binary 'Vt^7C]4','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-secrets.php',0,_binary 'B\UuoT6Wҳb\/',_binary 'B\UuoT6Wҳb\/',_binary '\\3CͿ\\"b\P9-i','',0,'?'),(_binary '[\`\\6\\\|','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-server-sandbox.php',0,_binary 'QTA[gw	\\\',_binary 'QTA[gw	\\\',_binary 'ͬY!\k*&}\\\\וWf','',0,'?'),(_binary '\K62\D:\]r\{','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-tokens.php',0,_binary 'JR&&whz$\\\\	',_binary 'JR&&whz$\\\\	',_binary '\QS]3\W\\n\\YkHV&_fb\c','',0,'?'),(_binary '$\\:\z5\u^\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-urls.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=w\g\)\\/',_binary '_U	\F,G~w឵Ⱦ\\?\','',0,'?'),(_binary 'ƠUiØm%Ō}','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-utils.php',0,_binary 's(#V\0ojL\\t4',_binary 's(#V\0ojL\\t4',_binary '9]x]16ɿ0\\\ $r)\0Z','',0,'?'),(_binary 'lty\Ҹ#Ѣ','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-webhooks.php',0,_binary '?ؕa1\r',_binary '?ؕa1\r',_binary 'X\\\_ǜ\?\2q+4\\\S\@]','',0,'?'),(_binary '1c|1Roa^','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php',0,_binary 'c1C`譈\\L+ ',_binary 'c1C`譈\\L+ ',_binary '\Y\\\^\cqū#6~\:ͿK-','',0,'?'),(_binary '\mr3=\7\Q\\>','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php',0,_binary '\"C@B$Tv\*',_binary '\"C@B$Tv\*',_binary '\)\\\!53e_OB)mige\'\r8','',0,'?'),(_binary '\\xkX_M\?^','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/error-handlers/class-invalid-blog-token.php',0,_binary 'Z\"\d/ك\a',_binary 'Z\"\d/ك\a',_binary '\`\\l\`]x;\Qݗ7 t','',0,'?'),(_binary 'b;\{HAwqaNn','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/interface-manager.php',0,_binary '\aSӾ\ix(\Y`',_binary '\aSӾ\ix(\Y`',_binary '\0o׊˦Fe\:\\Mj5cH','',0,'?'),(_binary '+_qi\UH\T 1','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection-ui/babel.config.js',0,_binary '\\UQl\ݚֵ\\',_binary '\\UQl\ݚֵ\\',_binary '^۱\V\ܱ\\1\4\V<e8%{J\`\S','',0,'?'),(_binary ' ֓\\\'@\;,Y\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection-ui/build/index.asset.php',0,_binary 'ݴ\2\nei,',_binary 'ݴ\2\nei,',_binary '$4\"!#\\v2ksJbO\','',0,'?'),(_binary 'ɮ\']\$>]\9#\','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection-ui/build/index.js',0,_binary 'v܎۠\\n!\p\Y',_binary 'v܎۠\\n!\p\Y',_binary 'Dr!\saxa\AS\\)U\_eܙp','',0,'?'),(_binary '5\=B\\\\\\cw','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection-ui/build/index.js.map',0,_binary '\1\j\\	i4GI\d3]',_binary '\1\j\\	i4GI\d3]',_binary '%S}.\\z\<9\=\\ejy\-v\\d\CR','',0,'?'),(_binary '\y0\r!E+%\Z','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection-ui/src/class-admin.php',0,_binary 'Fn+\I3\I\',_binary 'Fn+\I3\I\',_binary '{/\\\@Wj74\5Gf\prWA/qgLH','',0,'?'),(_binary 'X|v\eU>V','wp-content/plugins/jetpack/vendor/automattic/jetpack-connection-ui/src/class-initial-state.php',0,_binary '>7a7)v\O?Y',_binary '>7a7)v\O?Y',_binary '\2\9h\g1\NO\\յI','',0,'?'),(_binary 'eְr}X\\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-constants/src/Constants.php',0,_binary '\룆X\\ݜ\\\',_binary '\룆X\\ݜ\\\',_binary '\f(tk\:z.7x)<\\k\w9!N\y','',0,'?'),(_binary '\^\ZIO-\E6','wp-content/plugins/jetpack/vendor/automattic/jetpack-constants/src/class-constants.php',0,_binary ':t\$Ρ\4l\',_binary ':t\$Ρ\4l\',_binary 'A\\=i\x8]\zfun:4\\̜\M\\L}','',0,'?'),(_binary 'U\\V=L^','wp-content/plugins/jetpack/vendor/automattic/jetpack-device-detection/src/class-device-detection.php',0,_binary '\CvQD\N',_binary '\CvQD\N',_binary 'ɹJnH+ \\\\\\XZ\}ׅM%\+','',0,'?'),(_binary 'I\H\& \v\i^=\0','wp-content/plugins/jetpack/vendor/automattic/jetpack-device-detection/src/class-user-agent-info.php',0,_binary '\e($\\\ڝ6',_binary '\e($\\\ڝ6',_binary '\r\\\z86\Eb\\~?9Lmc\E@pez','',0,'?'),(_binary 'Wa\\\KhǹMQ)\','wp-content/plugins/jetpack/vendor/automattic/jetpack-error/src/Error.php',0,_binary '\r\\#F+\\e;',_binary '\r\\#F+\\e;',_binary '-0\0v\\3\\vߑԁ\OS\r','',0,'?'),(_binary 'vvU\wZ:\rY\"oa','wp-content/plugins/jetpack/vendor/automattic/jetpack-error/src/class-error.php',0,_binary '\r\\#F+\\e;',_binary '\r\\#F+\\e;',_binary '-0\0v\\3\\vߑԁ\OS\r','',0,'?'),(_binary 'bf\x&\b\\S','wp-content/plugins/jetpack/vendor/automattic/jetpack-heartbeat/src/class-heartbeat.php',0,_binary '.egOA\i\0\f',_binary '.egOA\i\0\f',_binary '\ZsF(E[9\&?stwH3֨<v2','',0,'?'),(_binary '1y&\\{','wp-content/plugins/jetpack/vendor/automattic/jetpack-identity-crisis/build/index.asset.php',0,_binary 'B&8o:1 ',_binary 'B&8o:1 ',_binary '\\/\"wCu;\\1\%3ګӣ\\\\-\L','',0,'?'),(_binary '@ZBP\15Q_#p','wp-content/plugins/jetpack/vendor/automattic/jetpack-identity-crisis/build/index.js',0,_binary 'Tve\\t\rZ\\'',_binary 'Tve\\t\rZ\\'',_binary '\\Kx\r\rN@M\U\6\B\'\.\zŷ','',0,'?'),(_binary '!ebvdf\@\\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-identity-crisis/src/_inc/idc-notice.js',0,_binary 'L\OґEN\',_binary 'L\OґEN\',_binary 'a)\\JYs\=61\6ʾ!i[9','',0,'?'),(_binary '{}\\C\\7>\r\\0','wp-content/plugins/jetpack/vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php',0,_binary '\z\*:U\L\\T8',_binary '\z\*:U\L\\T8',_binary '\08@r\ɫT=\ 9߀vo\\ ','',0,'?'),(_binary 'cuHT\*\\U!5\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-identity-crisis/src/class-rest-endpoints.php',0,_binary '1x\\W=a',_binary '1x\\W=a',_binary 'G	\\D\\'\\\-\\[\\Sl','',0,'?'),(_binary '	K4\]\2\\'.~','wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/build/index.asset.php',0,_binary 'S\\Q=\Z)	\',_binary 'S\\Q=\Z)	\',_binary '@J\\J8*\zj\Zfl֪\%F\aS\','',0,'?'),(_binary '\\\\!`\n~}n','wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/build/index.js',0,_binary 'KJP\\k,k\U\',_binary 'KJP\\k,k\U\',_binary 'zPd706\na\Ͱo\\!\^߮O*o7\r','',0,'?'),(_binary 'pQM>4\\\}\|','wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/JITM.php',0,_binary '}ؙ\4\T\bPG',_binary '}ؙ\4\T\bPG',_binary '\~_O\3\\\*\\\uvKO\\8','',0,'?'),(_binary '^\\逧)\\S','wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/class-jitm.php',0,_binary 'D\\\Zrr\<r~',_binary 'D\\\Zrr\<r~',_binary '\\)?T}\\)Rhh ÓN\5=','',0,'?'),(_binary 'J\~`|}㔳=}t,','wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/class-post-connection-jitm.php',0,_binary '<\T\u\\\:\\',_binary '<\T\u\\\:\\',_binary 'ZWcυ@]\Zf Z\8 :٢C\','',0,'?'),(_binary '\ON$\j5i۩\','wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/class-pre-connection-jitm.php',0,_binary 'Ƥ\3:\	\:B2<',_binary 'Ƥ\3:\	\:B2<',_binary '$K!Ip@5F\nߢ\eV\{\0\o\\8','',0,'?'),(_binary '\0>){`S엝\','wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/class-rest-api-endpoints.php',0,_binary '9VD\Ҩ',_binary '9VD\Ҩ',_binary '\T\\B\\q+\0\	\npWA]','',0,'?'),(_binary '\\L6_f}\Z\\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/js/jetpack-jitm.js',0,_binary 'ӡMzb!\&#',_binary 'ӡMzb!\&#',_binary 'WH&ya_}d+\}\~|%b*OY\T','',0,'?'),(_binary 'O)Ⱥg\\Ta','wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/js/jetpack-jitm.min.js',0,_binary '\{pF\-\\.\	',_binary '\{pF\-\\.\	',_binary 'dMU*Xz!YuC!+Z\\+\\'$\','',0,'?'),(_binary '_\|4[l','wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/dist/intersection-observer.asset.php',0,_binary 'Pi\n*1b\\o,\',_binary 'Pi\n*1b\\o,\',_binary '5H{i\<9diǀ7	\\r\rl7\','',0,'?'),(_binary '\A籊\\rW\Fg#\','wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/dist/intersection-observer.js',0,_binary '\;D\\τe\+i\',_binary '\;D\\τe\+i\',_binary 'QL\0\\0\whzCR\w6ϱ{\\\rrE\\\c','',0,'?'),(_binary '\\KG\/Id','wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/dist/intersection-observer.src.js',0,_binary '\;D\\τe\+i\',_binary '\;D\\τe\+i\',_binary 'QL\0\\0\whzCR\w6ϱ{\\\rrE\\\c','',0,'?'),(_binary '\3Z\\I׏\e\]','wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/dist/lazy-images.asset.php',0,_binary 'gE4\d\\*@E',_binary 'gE4\d\\*@E',_binary '܋N\\\Tzly%\6\n\?\I]azb՛8','',0,'?'),(_binary 'X#n!\\v*\\'i3','wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/dist/lazy-images.js',0,_binary ')&\\q]\n\Z\',_binary ')&\\q]\n\Z\',_binary 'C2hpʉ~ZJ-B\#(\E\Ɛ\\','',0,'?'),(_binary '\4\qQ_y\7\\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/src/js/intersectionobserver-polyfill.js',0,_binary 'B|\\\\{\\L',_binary 'B|\\\\{\\L',_binary 'ij\\\\\eGIt\Z|m+\j','',0,'?'),(_binary '%\%\\G\	A2','wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/src/js/intersectionobserver-polyfill.min.js',0,_binary 'TXC䓙\TrY\\',_binary 'TXC䓙\TrY\\',_binary 'D@\\F\0\ǜ.7\n\:*v,','',0,'?'),(_binary '&FG\\JC\\^3','wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/src/js/lazy-images.js',0,_binary '\U\\"\\ڦk׸',_binary '\U\\"\\ڦk׸',_binary '5\}6!\W[#j\j@M\.\洸\[~','',0,'?'),(_binary '\ۤG;Am.HT/]}','wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/src/js/lazy-images.min.js',0,_binary '9\N8\nՅݬ\',_binary '9\N8\nՅݬ\',_binary '\pi㿂R\D\sOŜ)qR\~>6i','',0,'?'),(_binary '1\]!o\q/kYC9','wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/src/lazy-images.php',0,_binary 'ӄ\\\\YJ{K%\U%',_binary 'ӄ\\\\YJ{K%\U%',_binary '3V\$Z\A?:\r\PY?\;iof#>/Ӄ','',0,'?'),(_binary '\#Y\fEᇊH','wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/webpack.config.js',0,_binary '\\*֙)@\',_binary '\\*֙)@\',_binary '\I\	\B؛o]mQrQ\\oh','',0,'?'),(_binary 'v!&5!Wf$u\','wp-content/plugins/jetpack/vendor/automattic/jetpack-licensing/src/class-licensing.php',0,_binary '@Og5!\%ȆP',_binary '@Og5!\%ȆP',_binary '\:>Kl\A\f\\\s)z_3\k?[','',0,'?'),(_binary 'lF\-HOUV\$\','wp-content/plugins/jetpack/vendor/automattic/jetpack-logo/src/Logo.php',0,_binary 'Ȫ`ڱ&\b˃b\m',_binary 'Ȫ`ڱ&\b˃b\m',_binary '|\\\>m!FA׆6g\@bq\L\\`\'','',0,'?'),(_binary 'd\"ħid,\?NXW','wp-content/plugins/jetpack/vendor/automattic/jetpack-logo/src/class-logo.php',0,_binary '\'\\\\Z\Ϋ',_binary '\'\\\\Z\Ϋ',_binary 'H\x/\$4\B\\\X[\0-)\\\A\','',0,'?'),(_binary '5[h\U\F#y\;\,','wp-content/plugins/jetpack/vendor/automattic/jetpack-my-jetpack/babel.config.js',0,_binary '\\UQl\ݚֵ\\',_binary '\\UQl\ݚֵ\\',_binary '^۱\V\ܱ\\1\4\V<e8%{J\`\S','',0,'?'),(_binary 'GN%SP{\PF\','wp-content/plugins/jetpack/vendor/automattic/jetpack-my-jetpack/src/class-initializer.php',0,_binary 'H^<r\\{7]',_binary 'H^<r\\{7]',_binary '\P\\&\6V#,_98\ofV\GT\L','',0,'?'),(_binary '	\\ʀ\\n \','wp-content/plugins/jetpack/vendor/automattic/jetpack-my-jetpack/webpack.config.js',0,_binary '4F\~.Z\\\\'k',_binary '4F\~.Z\\\\'k',_binary '&Iî\/#qI3	Fl+ɗq\','',0,'?'),(_binary '?8ՙGQ\'$\8\','wp-content/plugins/jetpack/vendor/automattic/jetpack-options/legacy/class-jetpack-options.php',0,_binary 'GIb\\;\\',_binary 'GIb\\;\\',_binary '\8\\6\\\f@Ń\ZҟL','',0,'?'),(_binary 'w\\m_\\zժUS2','wp-content/plugins/jetpack/vendor/automattic/jetpack-options/legacy/class.jetpack-options.php',0,_binary '\\a\z\\0x\',_binary '\\a\z\\0x\',_binary 'ēae@\,\տNpMʒ\\{mLw','',0,'?'),(_binary 'hQ6\x\@','wp-content/plugins/jetpack/vendor/automattic/jetpack-partner/src/class-partner-coupon.php',0,_binary '_\\Z\\/6P',_binary '_\\Z\\/6P',_binary 'e*\\\\;E=\\hmg\\\y6','',0,'?'),(_binary '͎~\ۀ\I\Xe','wp-content/plugins/jetpack/vendor/automattic/jetpack-partner/src/class-partner.php',0,_binary 'aƷǣ$JU',_binary 'aƷǣ$JU',_binary '\{5w\\Ƣى\of:&\\\','',0,'?'),(_binary '۪\4rz*(*-)','wp-content/plugins/jetpack/vendor/automattic/jetpack-password-checker/src/class-password-checker.php',0,_binary 'D=V<Dh\|H\H',_binary 'D=V<Dh\|H\H',_binary '\	\\}w4=V\㋊imϴ\\\Wа','',0,'?'),(_binary '\k\GW\\a','wp-content/plugins/jetpack/vendor/automattic/jetpack-plugins-installer/.phpcs.dir.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'f\3\dU$4M',_binary 'ⵢUP59ݻT5\\\ \r\nAΛ~{','',0,'?'),(_binary '\S;QO+i\\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-plugins-installer/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>Ra0JʱQB\\h',_binary '7#M2\;eg\P\,4P.\','',0,'?'),(_binary 'e4\ڜ3Ł\{<\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-plugins-installer/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '}H_Hy9\-p3X˜','wp-content/plugins/jetpack/vendor/automattic/jetpack-plugins-installer/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary 'zL\.0`6\','wp-content/plugins/jetpack/vendor/automattic/jetpack-plugins-installer/src/class-automatic-install-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5EG4],|\Y$\',_binary 'Ӡ\)?L\\\yc!\\ɻ{','',0,'?'),(_binary '\0\\O\{\[\','wp-content/plugins/jetpack/vendor/automattic/jetpack-plugins-installer/src/class-plugins-installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6T/\5\\7sp\',_binary '_\p\=ڽ_G[(MN9}\iEp','',0,'?'),(_binary '\\Ņ2av:SA&\','wp-content/plugins/jetpack/vendor/automattic/jetpack-redirect/src/class-redirect.php',0,_binary '@	+\\.\dF\B\?',_binary '@	+\\.\dF\B\?',_binary 'F\n@(:\\rR6\.SL&\P\YGD(KDǒ','',0,'?'),(_binary '\}dnR^\\m\?','wp-content/plugins/jetpack/vendor/automattic/jetpack-roles/src/Roles.php',0,_binary '@\>*\\\\ r\\',_binary '@\>*\\\\ r\\',_binary 'W\\rB*l\7<\\S\ 6X\\\[','',0,'?'),(_binary 'ж|\\\,Go-','wp-content/plugins/jetpack/vendor/automattic/jetpack-roles/src/class-roles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\\\\1\n Q\',_binary ' \&a\I3f\?\y::ӕ','',0,'?'),(_binary '\a\\\\ڢ','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-helper.php',0,_binary '\"9\Z\\ɀ\2',_binary '\"9\Z\\ɀ\2',_binary '8\nG\\\\rh\]O3aW Ͱ@','',0,'?'),(_binary 'e\9U\~n|>>','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-module-control.php',0,_binary '߷r+\sM\ƽwd',_binary '߷r+\sM\ƽwd',_binary ' \,@h-~&\A7\\"\8\M\\V}\','',0,'?'),(_binary 'CQFP\9ͫP\','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-options.php',0,_binary '*e>\j\6\\i#',_binary '*e>\j\6\\i#',_binary '\g|S\] \\\\0X\\*EI\\\m;T','',0,'?'),(_binary 'ʶS$@\*\`i.d','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-plan.php',0,_binary '3=z\=4i\',_binary '3=z\=4i\',_binary '\PI\m\ȀR\(\\\P|%\\\"','',0,'?'),(_binary 'QFh7\"9qV\\,','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-rest-controller.php',0,_binary '\\U^S	K{\Z',_binary '\\U^S	K{\Z',_binary '+\#E\;mT\\\\A	\\\\'TeCKY0L','',0,'?'),(_binary '\/I\\\\\\4\7t\','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-settings.php',0,_binary 'Esa\h }v',_binary 'Esa\h }v',_binary 'wi\Pk)ʠta\y%^&*#}	\<\','',0,'?'),(_binary '\\\?+~~\','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-template-tags.php',0,_binary ',3fQi\De\',_binary ',3fQi\De\',_binary '\ga\\np\&=[xʠ\\T,\L\'\','',0,'?'),(_binary '\!}\j\sOȸ','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/components/global-notices/store/actions.js',0,_binary '\\\\\\n\5O\'\',_binary '\\\\\\n\5O\'\',_binary '\\r\\nE\\nE\\rf\\0\\\ܩ&','',0,'?'),(_binary 'ބ`1\n\\n','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/components/global-notices/store/reducer.js',0,_binary 'Kb\P\\=\uΙ',_binary 'Kb\P\\=\uΙ',_binary 'vm-,\Gӷ2[\NӪ\@ˤQO\','',0,'?'),(_binary '\/\Y\\\޽\07!','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/components/global-notices/store/selectors.js',0,_binary '\\0>Ww&\WS',_binary '\\0>Ww&\WS',_binary '\'\Y\0U\LҸI\n\E\n$\\','',0,'?'),(_binary '\`\:\\\ZW3)\a','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/actions/index.js',0,_binary '\'krǼ,̚(H',_binary '\'krǼ,̚(H',_binary 'd\\;\83\@R6;\rΣ<\n 4t\','',0,'?'),(_binary '7_Zd9&RMr','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/actions/jetpack-settings.js',0,_binary '+!et$?;Zh',_binary '+!et$?;Zh',_binary ';k\GĽeHx\X\\ZC\+=4ӺV\','',0,'?'),(_binary '\a\\dj\\?\Hc','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/actions/site-plan.js',0,_binary 'L;\t\\\`\\B',_binary 'L;\t\\\`\\B',_binary 'xR\>\n՞q/\͐0Z4!\\','',0,'?'),(_binary ',\4\=+h\r','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/controls.js',0,_binary 'A \4T\ٟB\}',_binary 'A \4T\ٟB\}',_binary '}\~\0]#9&eJ\ΈU:\!l\\','',0,'?'),(_binary 'XVE,\'\k\A\\#','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/index.js',0,_binary '\Y]\y2\O\m\-',_binary '\Y]\y2\O\m\-',_binary '6\[\n\ZEB#Ms$ \\Ag\SP_|','',0,'?'),(_binary '\\3\5l*V@\p\\n','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/reducer/index.js',0,_binary 'R\Мh',_binary 'R\Мh',_binary '`Y\=+-\Y+\t\\y/(','',0,'?'),(_binary 'j`Ek*C','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/reducer/jetpack-settings.js',0,_binary 'v7\Z|\[C',_binary 'v7\Z|\[C',_binary '\Uo夢\o<\\rԊ;fwuZ.\\'','',0,'?'),(_binary 's\pe\s\G\e\','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/reducer/site-data.js',0,_binary 'Ɲ\eƕD\zg똣OB\',_binary 'Ɲ\eƕD\zg똣OB\',_binary '9v\i\zzk}jn\\\Q\l\\_','',0,'?'),(_binary '\Mo\[c̐o\0','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/reducer/site-plan.js',0,_binary '{aOXF0(',_binary '{aOXF0(',_binary 'c\M\W\G\\\\+۲g\\DAt\','',0,'?'),(_binary '\j\Y\1I\v\','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/reducer/user-data.js',0,_binary '\w\\CUEQ</',_binary '\w\\CUEQ</',_binary '0\r#\ˊ):rZ!(\\o\\\\g\','',0,'?'),(_binary 'r\Z\<^-n$','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/resolvers.js',0,_binary 'L[?֌\ڠ<\\',_binary 'L[?֌\ڠ<\\',_binary 'Ym\\rK\Zݠ\;,\\\gv\rMҰt','',0,'?'),(_binary '\"\(zƙ\Ȅ','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/selectors/index.js',0,_binary 'Ը#/<\\.zJ\l\\',_binary 'Ը#/<\\.zJ\l\\',_binary '	\\\«2b\\_7\\0\DŽIW','',0,'?'),(_binary '2ukbZ	U篜<','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/selectors/jetpack-settings.js',0,_binary '){˄\Z\2Q\\$H',_binary '){˄\Z\2Q\\$H',_binary 'oO\"rEZ.\=2j(jh\w:.\8?','',0,'?'),(_binary '<\b\Xs?o\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/selectors/site-data.js',0,_binary '\>k\"\03\A\\!',_binary '\>k\"\03\A\\!',_binary '۲H߽U壘y\\!W\7\0}i','',0,'?'),(_binary 'u3P7S9h1','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/selectors/site-plan.js',0,_binary '\\G)z\nc',_binary '\\G)z\nc',_binary ';z\\g\6\5;\MA[2eX\0\C03w;<f5d\','',0,'?'),(_binary '\\Z3Ǿ\Yah\1','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/selectors/user-data.js',0,_binary 'Җ[\ް\N',_binary 'Җ[\ް\N',_binary '\$=`\\蹃\\W\\"\\\\"2A','',0,'?'),(_binary '\j=7߰\\\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/wpes/class-query-builder.php',0,_binary 'eA\>SR\/\',_binary 'eA\>SR\/\',_binary '}1ߢ#\\\O\e5\Ze`+\ּ\','',0,'?'),(_binary 'ڶ\X/\\xur','wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/wpes/class-query-parser.php',0,_binary '[=Wi5\\@',_binary '[=Wi5\\@',_binary '\M*HD\\C\azY\\/\\\\2p$8f','',0,'?'),(_binary '\\\-\\\	ȴke\<','wp-content/plugins/jetpack/vendor/automattic/jetpack-status/src/Status.php',0,_binary '1\\	b\p~x![',_binary '1\\	b\p~x![',_binary 'A\`xVNö\\\\ZU6\v$g)1\\','',0,'?'),(_binary '\j4T\'=x^\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-status/src/class-host.php',0,_binary '\\y\\n\\#\1Ӕ',_binary '\\y\\n\\#\1Ӕ',_binary '\N\̼\Zw,1\Wnf\C\<\\58','',0,'?'),(_binary '\ ӻ,\E\_%\\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-status/src/class-status.php',0,_binary '׋\\%eq!!\rx',_binary '׋\\%eq!!\rx',_binary '#ɤr\\IQBY>\'\?\ԡ?\D%r','',0,'?'),(_binary '$,\o\r\,','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Actions.php',0,_binary '\C\`\n\VZO',_binary '\C\`\n\VZO',_binary 'T\d\'m\\tU\46\\\<+確a۶','',0,'?'),(_binary '\	sa\\:','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Codec_Interface.php',0,_binary '@B/\_VT\\',_binary '@B/\_VT\\',_binary '\-\\JI⾱\"Aؿ=\\p`Q]','',0,'?'),(_binary 'j6.\R\	LzrK','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Defaults.php',0,_binary 'p\(\19\]\_',_binary 'p\(\19\]\_',_binary 'Mא\9Qj\\k0\0\\d\\Nc\&\I','',0,'?'),(_binary '=ʩ4t\|<\|','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Functions.php',0,_binary 'z`k\4xu\7',_binary 'z`k\4xu\7',_binary 'v\no\\W+Y\/Š\\"\8\\\','',0,'?'),(_binary 'x\Zd6f	O','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Json_Deflate_Array_Codec.php',0,_binary 'C=\0]\\^\\\8\',_binary 'C=\0]\\^\\\8\',_binary '\\;p\\ʓ\#E\|\;@Oآ\tt','',0,'?'),(_binary 'n\ے{\l\n\\b','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Listener.php',0,_binary '5#-ƏovSz8\Xe',_binary '5#-ƏovSz8\Xe',_binary 'Y\|Xi\Zvi)\\\Ě\\\~\:{\','',0,'?'),(_binary '\\\\Z\ⴒ3\\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Main.php',0,_binary '/\\\\\n7\9g[|R\',_binary '/\\\\\n7\9g[|R\',_binary 'Iq\}Ԭa\M׏rj\\a','',0,'?'),(_binary 'yYoF$@\\cy)\I','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Modules.php',0,_binary 'P\;\r\h\l6',_binary 'P\;\r\h\l6',_binary 'g*\ZV\\lQx֝\j@p\yتo	','',0,'?'),(_binary 'IspgN\\&\sX^\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Queue.php',0,_binary '\r\rs\#d\Ӛ*',_binary '\r\rs\#d\Ӛ*',_binary 'oȱͪb2a_\\\s\|XG','',0,'?'),(_binary 'z\h\˭MDx\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Queue_Buffer.php',0,_binary '\h&]u\@3\&]\',_binary '\h&]u\@3\&]\',_binary 's8\R(@&>4ݞą]E','',0,'?'),(_binary '䗎5\Q\\69','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Replicastore.php',0,_binary '6ٖ\\\x%i',_binary '6ٖ\\\x%i',_binary '^j-\`\߻\\G\\Mx[,E3k','',0,'?'),(_binary 'B+6vq\r','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Replicastore_Interface.php',0,_binary '\(T',_binary '\(T',_binary '\\Mcf`R\\sv|\r','',0,'?'),(_binary '\V9|\\2\H۹\ȇ','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Sender.php',0,_binary '\\n\\\0\\BX',_binary '\\n\\\0\\BX',_binary '\q\rb\0NI=\"\NgS\4$k9\^\y','',0,'?'),(_binary '5\K@\M\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Server.php',0,_binary '?c\+ƺ\r\7]',_binary '?c\+ƺ\r\7]',_binary '\7pZi\gW\\C\\\\"3dw','',0,'?'),(_binary 'd\`\hjĿ\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Settings.php',0,_binary 'z\HeX:\1',_binary 'z\HeX:\1',_binary '\^\n*0\Amފ/dr\\XӜK','',0,'?'),(_binary '`gIV\\\	\\Z\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Simple_Codec.php',0,_binary 'J:@\\0vyT#',_binary 'J:@\\0vyT#',_binary '\\I\\sr\Ў\(\'D\J{ޚ%\OS','',0,'?'),(_binary 'Tzu\Hg\\d# \no','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Users.php',0,_binary 'RtV\\4=\\\',_binary 'RtV\\4=\\\',_binary 'ʤ\\)R\<t ,j}G\(\E','',0,'?'),(_binary '\r@\E?qH \_','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Utils.php',0,_binary 'y?{,zR\C]t\H',_binary 'y?{,zR\C]t\H',_binary '[۹q\ߵ\\%f;~\\8\0','',0,'?'),(_binary 'Ir0\ʱ\\`','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-actions.php',0,_binary 'l:YE+\\{ꁳ',_binary 'l:YE+\\{ꁳ',_binary 'e\n\\+Lk\\0`Ѿ\z<|0ӗ\','',0,'?'),(_binary 'P\_܁`ꁏu','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-defaults.php',0,_binary '|2\3\Y',_binary '|2\3\Y',_binary '\m\/\0\F\1P\&@t>\\)\	\\\\<r','',0,'?'),(_binary 'Q\rw\\YW\*\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\@ߙ\"Cn\',_binary 'f\0J-)࿴eN\ѝ,Ω\$wTM\\'','',0,'?'),(_binary '\\\\)˕1\u','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-health.php',0,_binary '\j3\\r=3\\o+',_binary '\j3\\r=3\\o+',_binary '\7\=\Z\@\i\9\n\rg\\8;\\~','',0,'?'),(_binary 'q)Rp\jSS\\ƍ','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-json-deflate-array-codec.php',0,_binary '\i\\Gk',_binary '\i\\Gk',_binary '\\\\{xk)uogu@T?f?\ٙ\\SƋKO]N','',0,'?'),(_binary '\n\jF\p\\#F','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-listener.php',0,_binary 'U{l4+\Lи\',_binary 'U{l4+\Lи\',_binary '\ZYۀ\4\^!J/ k;QR\\Tx\	9','',0,'?'),(_binary 'bf/\@\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-lock.php',0,_binary '~ؽ:o\ؽ\\cݴ',_binary '~ؽ:o\ؽ\\cݴ',_binary '\nGu8\c\'_\r(\nÒwe\\\\n&','',0,'?'),(_binary '\\}OtO|T-','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-main.php',0,_binary '3J\\\\)\\\sa\',_binary '3J\\\\)\\\sa\',_binary ',q\SnQ/\N{\A\\||6J','',0,'?'),(_binary '\XȡؼGa5\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-modules.php',0,_binary 'e5塧\a\"y',_binary 'e5塧\a\"y',_binary '\dECca+4\	5\ˌ\6-','',0,'?'),(_binary '+g钱$n_\ ','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-package-version.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\\\$<\\!vPU',_binary '\_\gWr\Sg\r\\K\r$͛\\\','',0,'?'),(_binary 'ir\K	\\ݔ\r','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-queue-buffer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9v!f2St0\\',_binary '\"qC\\,Gal|\\\&or\w1:rF','',0,'?'),(_binary 'v+&^\Y\l\+','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-queue.php',0,_binary '\\ȅ2\((\`_J\',_binary '\\ȅ2\((\`_J\',_binary 'To>JֳE9خ}SH\\\\','',0,'?'),(_binary '\oUa\6\.\\ֹ_','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-replicastore.php',0,_binary '7w4z^99\{,\',_binary '7w4z^99\{,\',_binary '\\+\@\\n)kz[\\A\\&G','',0,'?'),(_binary 'e\W8\\L,%','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-rest-endpoints.php',0,_binary 'YKI\[\<O\"Ť\',_binary 'YKI\[\<O\"Ť\',_binary 'K\V:4\\7S2/<;\Ҫ\\:','',0,'?'),(_binary '\#\ec	\v\0\\\0','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-rest-sender.php',0,_binary 'W\\;\~L8!\',_binary 'W\\;\~L8!\',_binary '\̓^f\\\]=\y\?*uT`x\\'KWa','',0,'?'),(_binary '	X\\%]7qCj<*','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-sender.php',0,_binary '\'&\n\\<\W',_binary '\'&\n\\<\W',_binary '<A7%hy{\Ao\lG','',0,'?'),(_binary '\t\m@q\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-server.php',0,_binary '$>\=_\n\\&',_binary '$>\=_\n\\&',_binary 'n\\;WpFб/\{\,ZctAhJ\','',0,'?'),(_binary 'k7>\\\)$\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-settings.php',0,_binary '}nt\!M%\z\5\r',_binary '}nt\!M%\z\5\r',_binary '\T&eP,\0c;zb5\np\jߤ=\','',0,'?'),(_binary '!~pE\\\\gC','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-simple-codec.php',0,_binary 'J:@\\0vyT#',_binary 'J:@\\0vyT#',_binary '\\I\\sr\Ў\(\'D\J{ޚ%\OS','',0,'?'),(_binary 'iM\\X52\/o','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-users.php',0,_binary '\\\\ \\(B6',_binary '\\\\ \\(B6',_binary '9M\?u\"\\M\иƠ~\\\8','',0,'?'),(_binary '\f\얕ڮ\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\\l\ ',_binary 'u)^A\g#\\骻\\Ԧt\x','',0,'?'),(_binary '\N\*\xU}}^̢','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/interface-codec.php',0,_binary '@B/\_VT\\',_binary '@B/\_VT\\',_binary '\-\\JI⾱\"Aؿ=\\p`Q]','',0,'?'),(_binary '\իL\\}Q\#','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/interface-replicastore.php',0,_binary '*v=%\kL\ox',_binary '*v=%\kL\ox',_binary '\5%\D/,T\\\\<51է\_\\','',0,'?'),(_binary 'Gc \\\h\\ܗ','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Attachments.php',0,_binary '\\G\Cb	\',_binary '\\G\Cb	\',_binary '\w.\oA\}\\o\6\:\9ee+/S','',0,'?'),(_binary 'B*<=\O\yX\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Callables.php',0,_binary 'Ҩ\YIM\@4\',_binary 'Ҩ\YIM\@4\',_binary 'I\\;-U\\)О\\\\ԡ5`u\\nl','',0,'?'),(_binary 'k\㓂T5S\rh','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Comments.php',0,_binary 'vu:\m$\',_binary 'vu:\m$\',_binary '\n\\\\kW\\\\J\\7\p0O','',0,'?'),(_binary 'V\\Tb\q5\\\z~','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Constants.php',0,_binary '\u\C\\F2\\zx\',_binary '\u\C\\F2\\zx\',_binary '%y\\=~)V2\\{}⯬J\I^3\Zp,\','',0,'?'),(_binary 'ׇ\a?Ikh\r','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Full_Sync.php',0,_binary '^\\2Fh\P*\JQ\/',_binary '^\\2Fh\P*\JQ\/',_binary '\V\\(\=*\\\[X:NG-tt','',0,'?'),(_binary 'W\\P\3 *\d\\(s','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Import.php',0,_binary 'lۧX^\jLHn',_binary 'lۧX^\jLHn',_binary 'P*Q\i\ի\2Ӹ`L\\\5*\=[\S>ܧH','',0,'?'),(_binary '3\pV \u;\`W','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Menus.php',0,_binary '\?3\O$B.o\2V',_binary '\?3\O$B.o\2V',_binary '7ݽ(\\|?*\M%*ȱYo3Jbg&','',0,'?'),(_binary '@	\w\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Meta.php',0,_binary '\{O~\\-',_binary '\{O~\\-',_binary 'k)h8#\\\֜A	|ptnҚ%R]#','',0,'?'),(_binary '\{w̮CcO\wcM>\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Module.php',0,_binary 'a\\Y\\P\\\~A',_binary 'a\\Y\\P\\\~A',_binary '\\L\{\P&\#\\ҿ10ܤj,\Ou.','',0,'?'),(_binary '_Z	1x\!\b','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Network_Options.php',0,_binary 'ϗ\\T\Z\\\\ntQ',_binary 'ϗ\\T\Z\\\\ntQ',_binary '\\Z\'tw\X{\\\TgbFײ8\\\','',0,'?'),(_binary '\\0;\b\\2M\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Options.php',0,_binary '\e\\wD䦐\f\"',_binary '\e\\wD䦐\f\"',_binary 'i\%T18ҏ\C,&<\\<\\\','',0,'?'),(_binary '\q1i\\\6d','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Plugins.php',0,_binary '\\IrI.rV\\\',_binary '\\IrI.rV\\\',_binary 'Z\t\z:_oy\?\Zq̴G\3\\b\','',0,'?'),(_binary '-9\\\Pj\r','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Posts.php',0,_binary 'h&0%\\\o\O4',_binary 'h&0%\\\o\O4',_binary 'jO50`\@\xiJ-*','',0,'?'),(_binary '\\\\W\-%i_\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Protect.php',0,_binary 'O\\e瘰\#',_binary 'O\\e瘰\#',_binary 'u		#\hⲣÈ\\f<wR.*&\ZE4','',0,'?'),(_binary '+JXH\E{\tx','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Stats.php',0,_binary '3<-k7]6$9)^',_binary '3<-k7]6$9)^',_binary '\\\\Z\b^W\j8	\\\Bud\"[\\"\','',0,'?'),(_binary '\\\\w\0\0Q4y','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Term_Relationships.php',0,_binary '8\YqaJ\\Z7JS	',_binary '8\YqaJ\\Z7JS	',_binary '\\\0/a\6~V7gv~?gr\,\\w\`pj','',0,'?'),(_binary 'p\zӨ`\\"','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Terms.php',0,_binary '@\3}	\Obb\\n',_binary '@\3}	\Obb\\n',_binary 'ߐK:\\wLO6|ZX|mSNOph','',0,'?'),(_binary '1l\l\ZO\\Y}\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Themes.php',0,_binary 'e3\'^\\\\',_binary 'e3\'^\\\\',_binary '\\\\g\\v\0m}a[\\*v\\\>nm','',0,'?'),(_binary 'D\n\51\ryx\z','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Updates.php',0,_binary '|\L\\w3N',_binary '|\L\\w3N',_binary ' s-=<X\0}\Z\A|\0@\Zބ','',0,'?'),(_binary 'A\G\\r(\.X\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Users.php',0,_binary '\``-\|!B=ll',_binary '\``-\|!B=ll',_binary 'e\c\\\g\\"6\\n\\w\\\n\G\','',0,'?'),(_binary 'l\y\C\")}\2','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/WP_Super_Cache.php',0,_binary '\\n(U\۹z\',_binary '\\n(U\۹z\',_binary '\\ZΝ>b7GML\}@\q.v,\'\\','',0,'?'),(_binary 'Bn9\HJ&\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/WooCommerce.php',0,_binary 'c7\o\F!\r\',_binary 'c7\o\F!\r\',_binary '\s\\SJZ\<w\/غ\\\"5\\m:','',0,'?'),(_binary 'ʙŶ#MR=\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-attachments.php',0,_binary 'j\\0P],\\W\',_binary 'j\\0P],\\W\',_binary '\ ݢ\*E\\Z+jx\\\\\ܼH.','',0,'?'),(_binary '\0\\A82\:','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-callables.php',0,_binary '\¼Qeioڿ\l*',_binary '\¼Qeioڿ\l*',_binary 'ĸ[_CͲē\ޥ9\\\"E\','',0,'?'),(_binary 'Lv\7;XI3ek','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-comments.php',0,_binary '\\\\\ƙ1CDr',_binary '\\\\\ƙ1CDr',_binary ',\c*`D\\0\PA`]Be\\\idL\\','',0,'?'),(_binary '\ny!?ޘ\K\/ͯ','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-constants.php',0,_binary 'x|\!8o?%&\\*',_binary 'x|\!8o?%&\\*',_binary '{Fd[TA䌴|\n+f\s\B`1Ѻ','',0,'?'),(_binary 'L1\js?\ޕRa','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php',0,_binary 'pi\\Hޕ\\',_binary 'pi\\Hޕ\\',_binary '\|<\tSΡl\\0n]\7Vnx]+','',0,'?'),(_binary '	-@\\}!cOLȢ','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-full-sync.php',0,_binary '\S\J/]U',_binary '\S\J/]U',_binary 'r\\F	jm&se츅A\','',0,'?'),(_binary 'h5Wl7⣂(F','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-import.php',0,_binary 'Ͷ.[.ZMLUl\bN',_binary 'Ͷ.[.ZMLUl\bN',_binary 'y\\\$\YT \n\ZE/\3(\!\3','',0,'?'),(_binary '\֫\'\r\?\"\r\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-menus.php',0,_binary ',\f^\\&',_binary ',\f^\\&',_binary '\Tf=\e\/nsIkU*5[\','',0,'?'),(_binary '\Jma\S\\r\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-meta.php',0,_binary 'y-\n\\',_binary 'y-\n\\',_binary '\\r{)0R\Zī^\f-lNW\"8 ','',0,'?'),(_binary '1$gO\N,i\'','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-module.php',0,_binary ';papKҘv\m',_binary ';papKҘv\m',_binary 'dh%6b8czniI\ڈp=xܺK$D','',0,'?'),(_binary 'Q_\a\\\ރ{\v','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-network-options.php',0,_binary 'j\\ߚ\\ JCe\"\',_binary 'j\\ߚ\\ JCe\"\',_binary '5\\n\\L3nuD-vX\\\\r\\\','',0,'?'),(_binary 'ݑ\DJ9\K\Y','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-options.php',0,_binary '\o\\b_x\~5\U',_binary '\o\\b_x\~5\U',_binary '7\ɶwe3W!\rGS,\J\;5v','',0,'?'),(_binary '7k7؝3\:','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-plugins.php',0,_binary '\"%^\Zv\ݫS@',_binary '\"%^\Zv\ݫS@',_binary '\Z>CiM\lh\\XVP*\\@!\0\','',0,'?'),(_binary 'ƈ\ЊЍ\e黙\U','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-posts.php',0,_binary '\SO%N\\hb\㮯\\n',_binary '\SO%N\\hb\㮯\\n',_binary '`t5\\dʣ\\0\~\\Ǝw\\8w\"','',0,'?'),(_binary '\0U\TRn','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-protect.php',0,_binary 'O\\e瘰\#',_binary 'O\\e瘰\#',_binary 'u		#\hⲣÈ\\f<wR.*&\ZE4','',0,'?'),(_binary '>_\0AbŇ\蝾e\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-stats.php',0,_binary '(/\!\\\F\0\\',_binary '(/\!\\\F\0\\',_binary 'k87ݙ0Ӫ6\0tt\N_I\\\C\\psoʹr','',0,'?'),(_binary '0KC\Mq`\!1c\F','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-term-relationships.php',0,_binary 'T\%-\\_\y',_binary 'T\%-\\_\y',_binary '\&f1J{=;Oφ.T\./ۚ\<31','',0,'?'),(_binary '+JC!\of','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-terms.php',0,_binary '<\Fw|y\\K\nW=t',_binary '<\Fw|y\\K\nW=t',_binary '\|FW\\\\Z0\\\&33;E','',0,'?'),(_binary 'O\'lQwUwj|xb','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-themes.php',0,_binary 'V\Xw(2\o5',_binary 'V\Xw(2\o5',_binary '2\\\3\<cV̸Dl\/Z\[','',0,'?'),(_binary '\o\EWX\v	(','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-updates.php',0,_binary '\{nuuW\JtCD̼',_binary '\{nuuW\JtCD̼',_binary '|mt\|\\laF\!u\0kk>\','',0,'?'),(_binary 'Q\\\'nr\-\&','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-users.php',0,_binary '\'\DI.',_binary '\'\DI.',_binary '\\G\5O\YE@DQ\\\6o^\','',0,'?'),(_binary '\\aPBNޛ\\'','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-woocommerce.php',0,_binary '3!p.h\\OJ',_binary '3!p.h\\OJ',_binary '\\rF׮X;i_\m\TA\ؤ-$R9;','',0,'?'),(_binary '\Ne&L\i!\','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-wp-super-cache.php',0,_binary '\\n(U\۹z\',_binary '\\n(U\۹z\',_binary '\\ZΝ>b7GML\}@\q.v,\'\\','',0,'?'),(_binary 'Ef+|딌)_','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-usermeta.php',0,_binary ' 1طHݪ\3\',_binary ' 1طHݪ\3\',_binary 'VFD\{OeNN\ʴ݃yum\','',0,'?'),(_binary '\KMaG#}','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-users.php',0,_binary '\B:1q0\D\',_binary '\B:1q0\D\',_binary '\nѻo\\,VgEũ	\#\\q\\|','',0,'?'),(_binary 'x\X`^\B%Oy','wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php',0,_binary '{\\\\H\ٱp',_binary '{\\\\H\ٱp',_binary '\`ˠHk\i5T+(\DE.A)','',0,'?'),(_binary '\"\\Ȏ\q߉','wp-content/plugins/jetpack/vendor/automattic/jetpack-terms-of-service/src/Terms_Of_Service.php',0,_binary '\b\4k+hW',_binary '\b\4k+hW',_binary '\A\ҷCàp%\O\/N\\_~~7٠֫B@','',0,'?'),(_binary '\"\\6E\ZA|','wp-content/plugins/jetpack/vendor/automattic/jetpack-terms-of-service/src/class-terms-of-service.php',0,_binary '\kMUB\\xy',_binary '\kMUB\\xy',_binary 'uvxu\r$\\HxاuvIj\n\j\\m','',0,'?'),(_binary ' \r\\q˵B-\ղ\/','wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-client.php',0,_binary 'v	\9s\\Z>x',_binary 'v	\9s\\Z>x',_binary '\\\dc\-Vwe\G7/G\ϰ','',0,'?'),(_binary 'SB$K\\nL\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-event.php',0,_binary '4i\q{\(){',_binary '4i\q{\(){',_binary '2`L\\\\'\\𿂠\zp0','',0,'?'),(_binary '\"K\\He\F','wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/legacy/class.tracks-client.php',0,_binary 'jΦ`\-5K',_binary 'jΦ`\-5K',_binary '\A\W\\^{V\zvc/','',0,'?'),(_binary '\٪\I9؈/\rE\lO','wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/legacy/class.tracks-event.php',0,_binary 'T^z\r\/38',_binary 'T^z\r\/38',_binary '?\P\UnRS3_^|_`W ','',0,'?'),(_binary 'sǘ)X\\Sf\','wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/src/Tracking.php',0,_binary '\\\t\\]7N\\',_binary '\\\t\\]7N\\',_binary '޸w们&6qgTv{k\\r5\n\'|','',0,'?'),(_binary 'y\\r.\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/src/class-tracking.php',0,_binary '\$ƭ(Q\]\"S\',_binary '\$ƭ(Q\]\"S\',_binary '?7\\b	HP^|\Zw\Z\TMz','',0,'?'),(_binary '\\3dTn\3\c,\J\','wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/src/js/tracks-ajax.js',0,_binary '=\Ƞ\0m \t~',_binary '=\Ƞ\0m \t~',_binary 'lx\r*\\\ч\nǐ\(Q\L\\b\\n8\|!\e5','',0,'?'),(_binary ';\rQ\\k	~QX','wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/src/js/tracks-callables.js',0,_binary '\GP!lIa՝q\',_binary '\GP!lIa՝q\',_binary '\ADJEC5K7x2T\4\;\','',0,'?'),(_binary 'H)\Rov-Us\\','wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/.phpcsignore',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ryF\ 6Uq	`\l]',_binary '\\38Y d\P6_=hH\dh\S\','',0,'?'),(_binary '=a\orX\8\w','wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=[\yj	!:',_binary '︓\]\,\d4ZM\iu2\\P/J!ug0','',0,'?'),(_binary 'Rn qu\a\O\n{','wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mg\\Sf0\afK',_binary '\g̓f\\_H\Q<P@/M t\','',0,'?'),(_binary '\0?\\\Z\r+t','wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/SECURITY.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\%9[s\"',_binary 'F\9m V\?\\\h\I$\\I[\','',0,'?'),(_binary '\m B]I7\0\r\r\','wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/actions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t\\\\j',_binary '\&\\[\\\[y\\(\B\ln\','',0,'?'),(_binary 'l/B\\:)','wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/rules/rules.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S\#|j2/o\n\',_binary '\]ѐUo/\n \\Y[8v\\	\$71O','',0,'?'),(_binary '>zi\\Z\R\6JAp','wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/src/class-waf-operators.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\V豒8\\\A',_binary '6]\8\\%\\E1FK\Tc\^99:Gv','',0,'?'),(_binary '|\^\\F4q\.e\','wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/src/class-waf-rule-compiler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\x\\'\y٧L\\',_binary '.Q3qүX\@\\'~LX;9\:\ZO','',0,'?'),(_binary '*\\>@B]=wq&]','wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/src/class-waf-runner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8#HTC\ݴs',_binary '\D_ K	пrƑj(\Z\)2\','',0,'?'),(_binary 'O\nG\\A*lPYj','wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/src/class-waf-runtime.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\v^ˇW2\4[m\0',_binary 'Xw\I? ?[jF\i\iK\^%u7\\','',0,'?'),(_binary '	a-hf\bݷ','wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/src/class-waf-transforms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bBQ\\\6ف{',_binary '\BED̸Xb\JR#_','',0,'?'),(_binary 'Ͼ>TS3\"','wp-content/plugins/jetpack/vendor/class-autoloader-handler.php',0,_binary '\CmaPDA;\M뽏',_binary '\CmaPDA;\M뽏',_binary '`\0\YED\5\	c$M3\rz\','',0,'?'),(_binary 'رIphV','wp-content/plugins/jetpack/vendor/class-classes-handler.php',0,_binary '{c\1\Y',_binary '{c\1\Y',_binary 'f\o!LW\\\։Y\͙\eSԫ\ YA','',0,'?'),(_binary 'w\fP֑ݼ\1\(\','wp-content/plugins/jetpack/vendor/class-files-handler.php',0,_binary '\Ki{.<\Z\\(',_binary '\Ki{.<\Z\\(',_binary '\\u\~Fc6r/\>my\4\Z\\A\','',0,'?'),(_binary '\r!\N\\Zu\x\0J','wp-content/plugins/jetpack/vendor/class-plugins-handler.php',0,_binary 'yguӺIZH\{br',_binary 'yguӺIZH\{br',_binary 'TI[2\p_hVFLg\\T@2=}','',0,'?'),(_binary 'e>\]HMWy\\','wp-content/plugins/jetpack/vendor/class-version-selector.php',0,_binary 'O\+};hi\\',_binary 'O\+};hi\\',_binary 'xnV+s\"%\rꔉ*-9:ONȯ','',0,'?'),(_binary '\Zx?]\i\C*\','wp-content/plugins/jetpack/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{0\\,Q6n',_binary '\`\\\\sN\.\-ډ\GDT-\nt\','',0,'?'),(_binary '퉧\"8AZF\nq','wp-content/plugins/jetpack/vendor/composer/InstalledVersions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\fFi*f><',_binary '\M\נkiy\̨\'\\S\nV\|TĴ','',0,'?'),(_binary '\Q\V#j=2P\\\','wp-content/plugins/jetpack/vendor/composer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']_\#D\\0\\',_binary '\Z ے\%4~N\~Gh!b\:wɌ\'','',0,'?'),(_binary '\щ N\MIe)','wp-content/plugins/jetpack/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C{q\0\\T\\~',_binary '9=.҇opI\j![-VBo6tWKK','',0,'?'),(_binary 'u\\8\m:\\V~`7','wp-content/plugins/jetpack/vendor/composer/autoload_classmap_package.php',0,_binary '&^\v \Y',_binary '&^\v \Y',_binary '\o\P\\\|5@fB:L ?v\\y\/','',0,'?'),(_binary 'kSΫffC^Ŋ_','wp-content/plugins/jetpack/vendor/composer/autoload_files.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\\LAua\\Jf',_binary 'yD,H,\qyS\n_\h\m\n\\N8','',0,'?'),(_binary 'S\u}6\8\R4\','wp-content/plugins/jetpack/vendor/composer/autoload_files_package.php',0,_binary 'r J|iǼ\ɝ}',_binary 'r J|iǼ\ɝ}',_binary 'h\O9B\Ŗ+v\e\\erv][գ','',0,'?'),(_binary 'r=DB\wB','wp-content/plugins/jetpack/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\ݐ\\\i!r\T',_binary '\8\Voo5\\8>=Qq&/','',0,'?'),(_binary '\=\\	$\D','wp-content/plugins/jetpack/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\\O\,\h|zz\',_binary '(O\R\\$#C\;9G\2','',0,'?'),(_binary '>\"l\r :@z\\','wp-content/plugins/jetpack/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&:\F;3^',_binary '\TܩUt=_Aҩ݂>~>¹\]b\\\','',0,'?'),(_binary 'e\Z\"\\\e]','wp-content/plugins/jetpack/vendor/composer/autoload_static.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xz\a\H	\\;',_binary 'p(ǚ\\'\\wF\\&T\=\]痚\','',0,'?'),(_binary 'ئ\;~\\na\\\'','wp-content/plugins/jetpack/vendor/composer/installed.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`ټ\5],	\rp',_binary 'y\ۢc\Z\Zw2[*D$\=\!c\\','',0,'?'),(_binary 'K\\;\{<w\','wp-content/plugins/jetpack/vendor/composer/installed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$ʳ\nl\aĴ:\\=\|',_binary 'Đ\T5$b.\>mQ(\\\N\','',0,'?'),(_binary '\x朾RVi\:O;','wp-content/plugins/jetpack/vendor/composer/jetpack_autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Lce>4ݤR[\F|',_binary 'R}IrǇf\Zf\=+x2v','',0,'?'),(_binary 'c\r}\9hX\&\\\','wp-content/plugins/jetpack/vendor/composer/jetpack_autoload_filemap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M\&A\c',_binary 'U6\'l\9\\pD!a|\VeP','',0,'?'),(_binary '\N\Y9u\','wp-content/plugins/jetpack/vendor/composer/platform_check.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v0(߳6FÖ',_binary '\8NIyݜ.\n\`L/B}Z\1c\','',0,'?'),(_binary '&\\m_\htB\\','wp-content/plugins/jetpack/vendor/jetpack-autoloader/autoload_functions.php',0,_binary '\\)\7b@϶9\Q;',_binary '\\)\7b@϶9\Q;',_binary 'ؐ6\\\ZJß\\)b\	(LNQ\','',0,'?'),(_binary '%8bRd/ْ8Ƭ','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\D\0WRl\\^',_binary '?\?\<o]Tnf\\n	*@*\\ֻ','',0,'?'),(_binary 'g\*B!\~\','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader-locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.,r#|v r\'\',_binary '&yO\r{)|34T\`\nqT\\u7','',0,'?'),(_binary '\\ƽ!!\F\"\|\\','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\}	h_)`R\\\V',_binary '\N!8\\\*2\'\\>\f','',0,'?'),(_binary '\\2lk_\_6\','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ς\\\MF\',_binary '}\\Ip\ݘ\0wĞ\z\*i\V\r-r','',0,'?'),(_binary 'Tn_љ+Ts@','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-hook-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K}E	U6l|,\',_binary '\"[XS-<kF\W\o;.#\fO_','',0,'?'),(_binary 'r\Hh?Z|k','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-latest-autoloader-guard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\&C)\]H!',_binary 'e$\\dsVi\^\\6y\m\|','',0,'?'),(_binary '\\\S{懰\\','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-manifest-handler.php',0,_binary 'A5\\\	%\m{',_binary 'A5\\\	%\m{',_binary '\ l@.Y\Q}0߆	5H\{\\0\','',0,'?'),(_binary '\\`\P\e\ŀA\','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-manifest-reader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ǴS`:_\Y\\',_binary '}k?4-\\$ZT)\\	','',0,'?'),(_binary 'Ph\P܈\w\r','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-path-processor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\{\0OD\\Z\/',_binary 'ᕦ?\6=䬑 [\\\U-O\`','',0,'?'),(_binary '\"2k3Q&','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-php-autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ge)3\;',_binary '\\sQVx\ppC3\Ile\DN-WtO','',0,'?'),(_binary 'j8W$\ފ\oOk','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-plugin-locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`Q\\)M',_binary '\\Qa\~N\v䇞\|ޢ\(;\0','',0,'?'),(_binary 'N\U\\Gh\','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-plugins-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']{j\\\\\rEG\4ߵ',_binary 'V\AK\9Yg\S\Oe\+JG','',0,'?'),(_binary 'd$T1\\\\gw','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-shutdown-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\jCmVF',_binary '9\1ygU<HUD9vLns\t٨~t&','',0,'?'),(_binary '\ɍ؟\\\g\g','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-version-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aH3#W\4\B|',_binary 'В\\\qG1\=\H~W8,.g\\G','',0,'?'),(_binary '3*շy`\\\@Nc-','wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-version-selector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_AF\]ʓ-b\N`t',_binary 'W\3WJ%eQ\'XJ\\\\\\\\\aI\','',0,'?'),(_binary '\'\~Y\\\8a6','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/Changes.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ޝ\<\\xt~7',_binary '\\\+7	\-:*\\\nҽ\rPqu\\Ӗ','',0,'?'),(_binary '\n\0\xx7}jÉ','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\+\D8UU!&x',_binary '\ZBYqv3z\&,\,\ߝ\\_\ZD\','',0,'?'),(_binary 'A&o\\Q`\','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?yY1s\=\Ѥvq',_binary '/~z\\w#S\N\k\0=:\G','',0,'?'),(_binary ',\epSH\\"2\F','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/build/build-emoji-regex.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DGm\Rt:\',_binary '\6\^R\֨u\{\\xT\6g\\)\fs','',0,'?'),(_binary '0\"O9S\\%,3ȼ','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/build/build-tld-lists.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1= I\ڊ݈=\',_binary 'Zf\ބ7	~5?\ߚ# W\	\D\Xx-','',0,'?'),(_binary '\K?$&hN~,','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']Cٯb\\;a\9R=I',_binary 'q>\\R[![\\SPdK\\ZfP\','',0,'?'),(_binary '>8	\Pon\Q<','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/Autolink.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\E+q@>\nd\W',_binary '\P\\?\a\% \f{9Q \k\e;JȌ','',0,'?'),(_binary 'J0\\Wtj','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/Configuration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z=\\]*w\D`',_binary 'HϏ\wIp䲞;\┤-\4p<\','',0,'?'),(_binary 'z;Z\\x\y,պ','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/EmojiRegex.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\0g\#&K',_binary 'eh\ҏpk73g\7A=\\_%','',0,'?'),(_binary 'V0MX:k5kLC\','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/Extractor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\u\'O\\\%*!/\l',_binary 'ˈ$z\\\<>h|\l\'4','',0,'?'),(_binary 'r\B\\\x\HJ\m}','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/HitHighlighter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%%ǺGoP>\Hc',_binary ' \n}@\X\\\E\T\\}A@\\`\','',0,'?'),(_binary '\10A\\\\\\','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/ParseResults.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YV\m\\\Z\',_binary '4\\n?]\	WNy;\r6\\rhYa\oV\"','',0,'?'),(_binary 'd)\ɥ\"W\\\T','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$e\X\닇!\\\'^',_binary '\\_\YZ\#\k+\o\'E	%\','',0,'?'),(_binary '-N\CP\\','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/Regex.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fk4\"\\n\\0A9ݳ',_binary 'gȠIȿ\#{\P\tr?h\)\`','',0,'?'),(_binary '\\z\e>B6\#E>','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/StringUtils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&h\C*',_binary 'F\Vc]\\}\\\\\\f\eDCS\[','',0,'?'),(_binary 'N8yL,','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/TldLists.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\\`o:Wɾl\',_binary ':*ySaf).-Y\\t3,iֽ\4c','',0,'?'),(_binary 'p\kwm\\0+','wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/Validator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_K\\bX\;',_binary '\0!\}ua#jt}DسJte%\\\','',0,'?'),(_binary 'GC\O\\Zyc`ԗ\\\\','wp-content/plugins/jetpack/views/admin/deactivation-dialog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\n\f!\K\kNj',_binary '\HRjIҵ\n)\΍\4j\eREI\$\Y','',0,'?'),(_binary 'M:X#c~\','wp-content/plugins/jetpack/views/admin/jetpack-plugin-portal-containers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=Ho\O[N邗g\',_binary '0\bm;Hr\6ylz4<\b	}0\\\\\','',0,'?'),(_binary '5\\ͪL\r','wp-content/plugins/jetpack/views/admin/must-connect-main-blog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\I8yAZ\TR)',_binary '\xE\\<h.)^L!\\43`o\\k\ʀ\0f','',0,'?'),(_binary '\]>z\5~p\U','wp-content/plugins/jetpack/views/admin/network-activated-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a7\|\uN\e',_binary '^m[\'\F/\}Q0xC\\\;\MnWoq\	\','',0,'?'),(_binary 'Of\\&?j;','wp-content/plugins/jetpack/views/admin/network-admin-alert.php',0,_binary 'Vw1p̺\',_binary 'Vw1p̺\',_binary '\P\9Sd[A%wf=l','',0,'?'),(_binary '|\k\"\ONr\\v\','wp-content/plugins/jetpack/views/admin/network-admin-footer.php',0,_binary 'Vw1p̺\',_binary 'Vw1p̺\',_binary '\P\9Sd[A%wf=l','',0,'?'),(_binary 'd̖Gn7vv\\Z','wp-content/plugins/jetpack/views/admin/network-admin-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pK-]|J\\nF\',_binary '\"fR=\	\0QL\0#`ʶ\;_6`.','',0,'?'),(_binary '\.=\\\\\\*+͑','wp-content/plugins/jetpack/views/admin/network-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\~\Ls',_binary '\\k\6k=ܽ\*@.)c\M\6\J','',0,'?'),(_binary '\\>xwO\R\','wp-content/plugins/jetpack/wpml-config.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0Qjfy',_binary 'ʉhB__\Q\H\gߥ\;q^\[\','',0,'?'),(_binary 'T\\\2f\nF','wp-content/plugins/our-team-enhanced/assets/admin/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w2\W\\UL(LX',_binary ';YdM\{75ڕ\}v\\Ǘ\E\\@','',0,'?'),(_binary ',f\?f\ntN\'\','wp-content/plugins/our-team-enhanced/assets/admin/css/settings.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D,X\\u6\\',_binary '\\\\\\\\+\\\@\\3!\,]]˪x','',0,'?'),(_binary '8(\F=#rM/5U','wp-content/plugins/our-team-enhanced/assets/admin/js/customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\#\rw\-y\|',_binary '\"X\\r?a+\E\'\$H9fh\\','',0,'?'),(_binary 'Ƥ\$k\\\\\J','wp-content/plugins/our-team-enhanced/assets/admin/js/reorder.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2a\\d	\0\',_binary '&XQ l<>A\He\\P\Ҩ7z\E\\','',0,'?'),(_binary '\rx;,)\j\\\'e','wp-content/plugins/our-team-enhanced/assets/admin/js/settings.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^!X\'\\cko\',_binary '$L\\<\BYOŘS9\Mg\\(S۲Cl','',0,'?'),(_binary 'ߴVo9S\/\\\}\','wp-content/plugins/our-team-enhanced/assets/css/common.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a;?De*tN6\',_binary 'X|%՝#\/vc%3,x','',0,'?'),(_binary '\d\55[h25\','wp-content/plugins/our-team-enhanced/assets/css/single.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '٦Fyəz,)\f=`',_binary '\uu9\*\stlxaG7\?','',0,'?'),(_binary 'Ѣ\\\D>\\C\','wp-content/plugins/our-team-enhanced/assets/css/team-view.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r9[/TgB',_binary '\\CɅmკ7l/hhTÛ>','',0,'?'),(_binary '\v1x\+\\5Ǥ','wp-content/plugins/our-team-enhanced/assets/css/widgets.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\T``ֽz\-,\',_binary '\\\ʣ\r\kK:ď\ѱ\&Ρ>\|\','',0,'?'),(_binary 'BFy ̟\\M','wp-content/plugins/our-team-enhanced/assets/data/demo.csv',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\^\8&<\\\0\\',_binary '=<U\EB\2I\3Ҭ%;	\'|G(','',0,'?'),(_binary '(\\~ȏt\\`','wp-content/plugins/our-team-enhanced/assets/fonts/fonts.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\<\;\\YN$',_binary '=`[pnSϓ@v\M\n,\\~SH\]J\J','',0,'?'),(_binary 'Y\U\Z\q\\','wp-content/plugins/our-team-enhanced/assets/fonts/lato/lato-regular.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\*EI\\Pb',_binary 'v&ص,y\\=~c\\p\\g=','',0,'?'),(_binary 'sl\{p֡','wp-content/plugins/our-team-enhanced/assets/fonts/lato/lato-regular.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<K\l~\\+\',_binary '\%b\<d[\\,\:Qxf0','',0,'?'),(_binary 'bl\G)a\;\2','wp-content/plugins/our-team-enhanced/assets/fonts/lato/lato-regular.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Э\=\\d0|yJ',_binary ',\tH0#\3\88nj>\\Ĉ~V\"\','',0,'?'),(_binary '_}NQ\ޤo','wp-content/plugins/our-team-enhanced/assets/fonts/lato/lato-regular.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E>\/l2\\yv-\\?#',_binary '\9\a Q\z&\޳ϝ	e` -GS^Ƽ/','',0,'?'),(_binary 'eͻ5\<b\','wp-content/plugins/our-team-enhanced/assets/fonts/lato/lato-regular.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\	\\~\8dޕ',_binary '-\\\vъ\O7U\\dd\\\ѹ','',0,'?'),(_binary 'X\l#D:hn|\j\D','wp-content/plugins/our-team-enhanced/assets/fonts/oswald/oswald-regular.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qoR\`6U\\9\Q',_binary '%N\\\'eF\(5H\T\\\δ>b','',0,'?'),(_binary '\Z\Z\0\RKf\','wp-content/plugins/our-team-enhanced/assets/fonts/oswald/oswald-regular.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4//\r\\"^:.{\\c',_binary 'R$Bc=9#n^z\Q˳\_u\E\\'','',0,'?'),(_binary '\\`\uɤ\\ϥ	\Z]','wp-content/plugins/our-team-enhanced/assets/fonts/oswald/oswald-regular.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`d\wɂ\nCJ\QtH)',_binary 'n\\'\^[ᇼ!\\j\=o\S(;VD!#J\','',0,'?'),(_binary '\ëXc@Wtc','wp-content/plugins/our-team-enhanced/assets/fonts/oswald/oswald-regular.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0w}\]\ړ}\Zk',_binary '\\,d\Z_}`vթؒ7ޏ\Z#~@Ԣr\-\u','',0,'?'),(_binary '\RK\} Ƨ\`6','wp-content/plugins/our-team-enhanced/assets/fonts/oswald/oswald-regular.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\SVԍ+/]',_binary '\wvEwthh3}`\;.\v*`','',0,'?'),(_binary '\$\R\B\"','wp-content/plugins/our-team-enhanced/assets/images/add-ons/member-portal.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̨p2 \D7J',_binary '=:\$a	\"V{L\\A:\\\C=y\','',0,'?'),(_binary '\b\\<\nb2Zt\ra','wp-content/plugins/our-team-enhanced/assets/images/add-ons/ots-pro.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#7_\\\G\',_binary '\\oB:=!\\\"PxWu-[׈͊\\,','',0,'?'),(_binary '\P\xϢ\\|!','wp-content/plugins/our-team-enhanced/assets/images/branding/smartcat-medium.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AX2Ԛ[B\1',_binary 'KOSI{Yodb\'ӷ2\1\TK06y\\0','',0,'?'),(_binary 'e[Jpז\߸\v','wp-content/plugins/our-team-enhanced/assets/images/default-avatar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WQN+s\GQ\N_',_binary 'FEdj\q^/mU\\Q\6\fYS9e','',0,'?'),(_binary 'e3s;3۽N\"2','wp-content/plugins/our-team-enhanced/assets/images/demo/card.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\f}Tw\\\\',_binary '\"&gxE;h\^&#\\\\\>dk\ϩ=','',0,'?'),(_binary '!\2:5-ak\vȌxU','wp-content/plugins/our-team-enhanced/assets/images/demo/panel-1.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0oJ}1k\\#t',_binary '\<x\oB۶\Cy\\ƎeA\\d$\\','',0,'?'),(_binary '\a\х+O\','wp-content/plugins/our-team-enhanced/assets/images/demo/sidebar-widget.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',3A?}O+E\',_binary 'n]\D\\)/g^T\;Y\\g\\n\ \p','',0,'?'),(_binary 'OH<hT\\'\S&\Zsp','wp-content/plugins/our-team-enhanced/assets/images/doc/manage-members-1.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r<\r\͙6u\x\',_binary 'B풆_fǂ\\\0\\{E\\H\	','',0,'?'),(_binary '2s9H\p\m\y\\V','wp-content/plugins/our-team-enhanced/assets/images/doc/manage-members-2.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u2ަ;\\j',_binary 'wy:\\핒xSɱc\0\0PUp{Wl.','',0,'?'),(_binary '\Viət-\\\9&\','wp-content/plugins/our-team-enhanced/assets/images/doc/manage-members-3.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\c*;p}\ً',_binary 'rt2\Z\ْmӬ0p\Q\rA6\\6','',0,'?'),(_binary '\] (!Xİ','wp-content/plugins/our-team-enhanced/assets/images/doc/ots-widget.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9d\\S\\X5?',_binary '\\݌(l=*Z\\Z\S􄹫\ߔD]\Xs','',0,'?'),(_binary '-\Y#\KV9','wp-content/plugins/our-team-enhanced/assets/images/doc/portal-1.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qq\\k\4o\\?M\)\'',_binary 'cK\!}kx15ebP\i--\\\V\\&VS','',0,'?'),(_binary 'rT!\~\Xrbu6<','wp-content/plugins/our-team-enhanced/assets/images/doc/restrict-posts-1.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\'}#1*Z\',_binary '\BJj%\\n	\\rG?\\r/7\@fhY6','',0,'?'),(_binary 'A\\cY','wp-content/plugins/our-team-enhanced/assets/images/doc/restrict-posts-2.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\e\l\ߏ޶',_binary '\s|?\\Gc|\r K樚ָ\\','',0,'?'),(_binary 'z\)qed<S\ ','wp-content/plugins/our-team-enhanced/assets/images/doc/restrict-posts-3.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ë\mJ8',_binary '\8>_{觭J\8\d<\"\\H҇','',0,'?'),(_binary 'Z\U\\\\\5[{>','wp-content/plugins/our-team-enhanced/assets/images/doc/restrict-posts-4.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\ b^wf\\3wW',_binary '~r\D\,\\͍Tثd\\\rJJ\\¨','',0,'?'),(_binary '\G\D4S\2','wp-content/plugins/our-team-enhanced/assets/images/more.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\n`o!8',_binary 'EF\+\̖\\*g*\kӂ\\x:\\','',0,'?'),(_binary '&\u\Uu\\9h','wp-content/plugins/our-team-enhanced/assets/images/social/email.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɒtq\\\\[Vq$',_binary '\(7d̒-) ++\B\`0VH\','',0,'?'),(_binary '\\4si\s!','wp-content/plugins/our-team-enhanced/assets/images/social/etsy.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';Hn\mc\w+',_binary '=ޘ\"hh6\J	,&r\ux<L<\hJ','',0,'?'),(_binary '\\\\˝\`Q','wp-content/plugins/our-team-enhanced/assets/images/social/facebook.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\\Ht4OQ&f',_binary 'ķc\q\@H\j=J^\\t\\\\','',0,'?'),(_binary '9RepC\s\\\"\S','wp-content/plugins/our-team-enhanced/assets/images/social/gplus.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˭\>\Z\\\\O',_binary '7_[\rU\2ڛM+ݙe\NuFh\R','',0,'?'),(_binary 'Q\W\!\\uʷ3X','wp-content/plugins/our-team-enhanced/assets/images/social/instagram.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' Zd݄Bh0>\',_binary 'po:.>~\M_&CWoQ!\\	j\ν\','',0,'?'),(_binary 'Fѕq	Ѭ窎:P\e\','wp-content/plugins/our-team-enhanced/assets/images/social/linkedin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'و/2\~@\r\I',_binary '\\rnۖ\\\Z0D5S\5fdV^e\','',0,'?'),(_binary '-5\\5t\"F\H\\','wp-content/plugins/our-team-enhanced/assets/images/social/phone.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Ⱥ\\@3\}O\S',_binary '_睄l\\:l\|\0MH\%KlU','',0,'?'),(_binary 'ʆ;]I\pe-#','wp-content/plugins/our-team-enhanced/assets/images/social/pinterest.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\xq\}ie\\Y\锓\',_binary '\5n\NoB\\=C̶<\0ny','',0,'?'),(_binary 'Uz\}|dt\\3T','wp-content/plugins/our-team-enhanced/assets/images/social/skype.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u>i?T\*O\',_binary '\m^)O\d(A_\\\v P\\{\:_y\','',0,'?'),(_binary 'ZWH@\\\J7\','wp-content/plugins/our-team-enhanced/assets/images/social/soundcloud.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\ȇ(\\&\5*\\',_binary 'M`\ٔ~/^l5\\և]\ۆ\s','',0,'?'),(_binary 'h8<G,T\F4','wp-content/plugins/our-team-enhanced/assets/images/social/twitter.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\nW\\T\n&',_binary '䕮:jw)2.\\"c\v_\ƐaYc\N\}','',0,'?'),(_binary '<@dr\\RM\C','wp-content/plugins/our-team-enhanced/assets/images/social/vimeo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';sQ5y}\'{\AKk	\',_binary 'yte\'^\o씱\\\\/<@\H','',0,'?'),(_binary '01y\\<àTWC','wp-content/plugins/our-team-enhanced/assets/images/social/website.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\t4%\Fq\.\'*V',_binary '6A<\ǐ\y \\\\nvKbq>%','',0,'?'),(_binary 'jL\2}y\O>\rX\','wp-content/plugins/our-team-enhanced/assets/images/social/whatsapp.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0n2\o~p1`Q)\',_binary '\F\@)-1Zv9e\\04OXBh^\i','',0,'?'),(_binary 'Rr\]\'\epv~','wp-content/plugins/our-team-enhanced/assets/js/script.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݪf\\\\\',_binary '$S\5d脲eOEfX6~fzsB\"','',0,'?'),(_binary '\g9ka0n\','wp-content/plugins/our-team-enhanced/constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\[\\\0ϞtU\}ٕ',_binary '{X*\\	&S\_.@$\.VSQ1r7','',0,'?'),(_binary 'F5ג3KƘ\	I\8','wp-content/plugins/our-team-enhanced/includes/TeamMainWidget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cd?c\\\0\0\o\X',_binary 'n]\\ndXv:f\>[avU\yk]','',0,'?'),(_binary 'Gy$/׸\\>p!','wp-content/plugins/our-team-enhanced/includes/TeamMember.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Ź\\\>\\',_binary '寧4&r\Xǘ]\\e\"N\|\\','',0,'?'),(_binary ':\E@\!\\(բ','wp-content/plugins/our-team-enhanced/includes/TeamSidebarWidget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qȶ\Z',_binary 'iĜ310x3X2kĀ# ]c ','',0,'?'),(_binary '\1\C;\<͟3','wp-content/plugins/our-team-enhanced/includes/add-ons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=z/\\\\\&',_binary '{\[D\\qt}f\@Mk\ͶG*H','',0,'?'),(_binary 'F\?>\\0ΞK','wp-content/plugins/our-team-enhanced/includes/admin-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɋ\\rb4',_binary '\đЗj\b\!\\h\'!HW\{{/','',0,'?'),(_binary '\\v\G3(\Kn','wp-content/plugins/our-team-enhanced/includes/documentation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7NmvӃq]+Rb\',_binary '\'\y\JQz\\<Wa\q\rgեYze@I','',0,'?'),(_binary '=R\!\Q\?q\','wp-content/plugins/our-team-enhanced/includes/extension-licensing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\SS\p\',_binary 'c\\u;\\\\ij\\'\\d!\t)','',0,'?'),(_binary 't2,u:ıEy\w','wp-content/plugins/our-team-enhanced/includes/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\#(V\\\S\yȼ\0',_binary 'g2\\OviￖKJg[p\n\~2^&f','',0,'?'),(_binary '\]`\jӢD\\','wp-content/plugins/our-team-enhanced/includes/helpers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ĉ[\WS',_binary 'Y\r2\n=x!)J\0iWw1_N}hOB','',0,'?'),(_binary '\ҝ#Ȅ#E\2XB','wp-content/plugins/our-team-enhanced/includes/libraries/theme-showcase.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\U=gxCH,\\',_binary '\\\\a\z$B1N\\Θ\n[\','',0,'?'),(_binary 'g\r#MbR\\0h','wp-content/plugins/our-team-enhanced/includes/reorder-members.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ղ`\W(r',_binary '!\)h?\\K\\B\4zUHA\c=','',0,'?'),(_binary 'c&}\r畱LW','wp-content/plugins/our-team-enhanced/includes/team-member.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٺ[x/l;\"~ӝ$?',_binary 'u	\$(~\vćO^Q\=;3`\','',0,'?'),(_binary '\#\\\\\$iV','wp-content/plugins/our-team-enhanced/includes/team-view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'זiO\h4',_binary 'bosC4l*C\V)¢\?Fm','',0,'?'),(_binary 'Sȸ`^dX\\)\Zq','wp-content/plugins/our-team-enhanced/includes/team_member-post-type.php',0,_binary 'b\\rN\0\@',_binary 'b\\rN\0\@',_binary 'M\Fd\r7\\(\"I\\X\r[R','',0,'?'),(_binary '\Ҧ\r(f\C,\ɔ','wp-content/plugins/our-team-enhanced/includes/tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\Z\3ަ-',_binary 'q\^\]!n\^5AI\\ER\)\n\','',0,'?'),(_binary 'u@\b¥V`]V','wp-content/plugins/our-team-enhanced/includes/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\\+?Wc\\~Aa',_binary '\FA}>]O3N\?.BqT(\$\u','',0,'?'),(_binary '\Tw]H\\9g\','wp-content/plugins/our-team-enhanced/languages/ots.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary '\?Ixi1\0\eAf','wp-content/plugins/our-team-enhanced/our-team-showcase.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' qDjd\\\ \BQ6 ',_binary 'ƾTd\Jt\\@!Լyr4\PR/','',0,'?'),(_binary 'tD\e\jӎe~','wp-content/plugins/our-team-enhanced/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\rFS\\ʝ\',_binary 'kY\n`oi\5(yʙY+\H,\	\0','',0,'?'),(_binary 'X\S\n3\\\','wp-content/plugins/our-team-enhanced/templates/grid-circles-2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\QOH!4$[\\`\r',_binary '\:ͣ|̷\d\\\JZ<\\RKךrq\I','',0,'?'),(_binary 'G8YwOQ\Yym','wp-content/plugins/our-team-enhanced/templates/grid-circles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z}\\%wnn\ޔ',_binary '\y\uv桯mf\Z\lt4\:0','',0,'?'),(_binary 'E\k6\"BKk\\c','wp-content/plugins/our-team-enhanced/templates/grid.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\\'ňEE\lO#',_binary 'm\"ī<i*`scș\\U,','',0,'?'),(_binary 'L \^#27\#','wp-content/plugins/our-team-enhanced/uninstall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~P\\GǅM:\a',_binary 'H|R%r\:J\tqۣ\\Ch_!\.R\::','',0,'?'),(_binary '}@ld\W\@4L[$F','wp-content/plugins/our-team-enhanced/upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\EH-?!',_binary 'VR0{}\S~g\\\Ee\uX(\@f%k\','',0,'?'),(_binary '\!\gЬ^vcds','wp-content/plugins/responsive-menu/LICENSE.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\B7&\]NDd',_binary '\@H\\\\M;ﺾ5 i\\\'\o\5V\','',0,'?'),(_binary 'aG2\LR=\\&','wp-content/plugins/responsive-menu/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l>YIئXE%/V',_binary 'KE .CƉJ\Z\,\s쏘VQ4\\\"|','',0,'?'),(_binary 'I8n\c\2Ӌ\ZG','wp-content/plugins/responsive-menu/app/Collections/OptionsCollection.php',0,_binary '=\p6\IS\	BK',_binary '=\p6\IS\	BK',_binary 'E\c\'J-P*\;Ғ\6\]fŠ','',0,'?'),(_binary 'r!C_N\b%','wp-content/plugins/responsive-menu/app/Container/Container.php',0,_binary 'Q\֒vT3',_binary 'Q\֒vT3',_binary 'e}\Ocb\-\\\{Hq\츥\W\','',0,'?'),(_binary 'j\\0b\\\Ks\','wp-content/plugins/responsive-menu/app/Controllers/AdminController.php',0,_binary '\|N[&a',_binary '\|N[&a',_binary '\sv3\*@x|\Lo\r)\\\-\x','',0,'?'),(_binary '\\\\pnO','wp-content/plugins/responsive-menu/app/Controllers/FrontController.php',0,_binary '\1r;\\\\[\',_binary '\1r;\\\\[\',_binary 'U6nnt\ů5zm\\\\tP8Ud\#\','',0,'?'),(_binary '>ɺW/\>x\\nF','wp-content/plugins/responsive-menu/app/Database/Database.php',0,_binary 'ޞxPw5w',_binary 'ޞxPw5w',_binary '\8j֏\\\=\\\| \Tיw$=d\8R','',0,'?'),(_binary 'w\gbkeKXC\\C','wp-content/plugins/responsive-menu/app/Database/Migration.php',0,_binary 'uf8\n\+X\G)',_binary 'uf8\n\+X\G)',_binary 'a9|\BpnK\nA\1U\\\\^\\I̮','',0,'?'),(_binary '-liƿ;5\','wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate.php',0,_binary 'iEL	Y~o>_sp',_binary 'iEL	Y~o>_sp',_binary '/\\ZljIr[~f\f\al','',0,'?'),(_binary 'D\\\lt\3Y	\','wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_0_0_1_0_0_2.php',0,_binary '..\MH7\\*\\',_binary '..\MH7\\*\\',_binary '\;݇\\#n=\\\5/>\5b|{p\','',0,'?'),(_binary ']u-%\-g\n\n\"\Fm','wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_0_0_2_0_0_3.php',0,_binary '\\\\Jz\,\\U\',_binary '\\\\Jz\,\\U\',_binary 'C&\\'Į\u\]d\\S\Z\\\4\"\\0','',0,'?'),(_binary '\I\\V_S\\\A\','wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_0_0_5_0_0_6.php',0,_binary '>Av\6\F\\\',_binary '>Av\6\F\\\',_binary '\{ŉsy7o\"L\\\	\\riIJ','',0,'?'),(_binary '\\Nr,WNNt','wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_1_1_0_1_1_1.php',0,_binary 'dTD~\}l6\',_binary 'dTD~\}l6\',_binary 'j\\'g`:<\\\\'eG\\\nfr','',0,'?'),(_binary '|à@ּ@)|\mF=','wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_3_1_0_3_1_1.php',0,_binary 'C\|P\>\\8:S',_binary 'C\|P\>\\8:S',_binary 'ES[6 \\\2\\4\\6v\8P','',0,'?'),(_binary '\\\H\rV_).','wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_3_1_13_3_1_14.php',0,_binary '-\\\2\\bg^ä\'',_binary '-\\\2\\bg^ä\'',_binary '\\ZYL\᭳iu[CFhE6\\'<1\'\;\','',0,'?'),(_binary 'Tu\	I/A^\Ʒ','wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_3_1_7_3_1_8.php',0,_binary 'bB	P2\!et\9',_binary 'bB	P2\!et\9',_binary 'q\S<iQ\\)\H\7Q\0ߦZUgh1\>','',0,'?'),(_binary 'H!\\Z;~\rn\(','wp-content/plugins/responsive-menu/app/Formatters/Minifier.php',0,_binary 'b\K\[\I;<',_binary 'b\K\[\I;<',_binary '\gd=\P\\\Qy\Z:\y݋\','',0,'?'),(_binary 'A\,d\7\\\\_B','wp-content/plugins/responsive-menu/app/Management/OptionManager.php',0,_binary 'xʎ\p\jH',_binary 'xʎ\p\jH',_binary '\k}\˜b\MfI\%\A$$l\\\','',0,'?'),(_binary '\Y	$}\\YuH\','wp-content/plugins/responsive-menu/app/Tasks/UpdateOptionsTask.php',0,_binary '\EE\Vxd#\`-',_binary '\EE\Vxd#\`-',_binary 'Z\~A\pU\\\\\\\eg\\\\{l','',0,'?'),(_binary '[M\XB\Z\','wp-content/plugins/responsive-menu/app/Validation/Validator.php',0,_binary '\p\e\Eܬ$EeKc',_binary '\p\e\Eܬ$EeKc',_binary 'wCsOz\"Zin\\p\\Y\','',0,'?'),(_binary 'K	\#\QCP64','wp-content/plugins/responsive-menu/app/Validation/Validators/BaseValidator.php',0,_binary 'T)=\WR\Z\6',_binary 'T)=\WR\Z\6',_binary 't<\ذ M mr\~JGz\8\(\m&','',0,'?'),(_binary 'עC\_\)g\#f','wp-content/plugins/responsive-menu/app/Validation/Validators/Colour.php',0,_binary 'Sjrj\\ED\^Y',_binary 'Sjrj\\ED\^Y',_binary ')\j7\!T!2+f1\#\2\fM\\\\','',0,'?'),(_binary '[\\X 7a]x\鴢','wp-content/plugins/responsive-menu/app/Validation/Validators/Number.php',0,_binary '\Ujު~xui\\0',_binary '\Ujު~xui\\0',_binary 'A\X\:M\}7P\&\\\\:\wz1','',0,'?'),(_binary '{\m\\1\\\DZ','wp-content/plugins/responsive-menu/app/Validation/Validators/Positive.php',0,_binary 'Sv!t5o3=#\&\\',_binary 'Sv!t5o3=#\&\\',_binary 'gl7\\\\7\y\=&\n2\ѯξ','',0,'?'),(_binary '\n`Ȩ~4B\zU$u','wp-content/plugins/responsive-menu/app/View/View.php',0,_binary '\"[_\{\Z\\2 ',_binary '\"[_\{\Z\\2 ',_binary '	\/\\\\M\:Us\C\:\y.','',0,'?'),(_binary '\52#\\\\"','wp-content/plugins/responsive-menu/app/Walkers/Walker.php',0,_binary '\\kG\zQ\n',_binary '\\kG\zQ\n',_binary '\\\nV2HE\\\1\\ϛ\.','',0,'?'),(_binary '\U\k\\y@&\a0','wp-content/plugins/responsive-menu/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\\\LS%\',_binary '۠\\\xhK\\BM\\Y\U]G\','',0,'?'),(_binary '.k\Q\n','wp-content/plugins/responsive-menu/composer.lock',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=\\3OR1\'q\\"j ',_binary '짐]\\TB]\GL@\\橠`~-','',0,'?'),(_binary '\?h>\Zj','wp-content/plugins/responsive-menu/config/default_options.php',0,_binary '}Y)\G\_Y:Rnb+8',_binary '}Y)\G\_Y:Rnb+8',_binary '`\1չZ2\\\\e{\\^t-(\:ѣ','',0,'?'),(_binary '$a\\'@cL9','wp-content/plugins/responsive-menu/config/polylang.php',0,_binary 'zE`\Y\'\'IUor',_binary 'zE`\Y\'\'IUor',_binary 'z\0`\LSsئ_~Vx}\-\+\','',0,'?'),(_binary 'P;\pG>\I\\','wp-content/plugins/responsive-menu/config/routing.php',0,_binary 'H[_\@\Nr\\',_binary 'H[_\@\Nr\\',_binary 'J\ƻ\\,\rBp^YLo4]xic\','',0,'?'),(_binary '\n4K\@+\\](','wp-content/plugins/responsive-menu/config/services.php',0,_binary 'b\\B\U$9\p',_binary 'b\\B\U$9\p',_binary '8n\\\S\em|#\&ZA~}\C','',0,'?'),(_binary 'RJ\"\\ZY \y\','wp-content/plugins/responsive-menu/config/twig.php',0,_binary 'nlO1+[\\\',_binary 'nlO1+[\\\',_binary '\}f\i\M\\'Rh[\'^(wA	\\8>c\','',0,'?'),(_binary 'wT\\u\*9','wp-content/plugins/responsive-menu/config/wp/scripts.php',0,_binary '*5ײF\<ws4i!',_binary '*5ײF\<ws4i!',_binary '\8TđY?K:K\\ݶ]SL\\JZ','',0,'?'),(_binary 'Mތr&aY\\','wp-content/plugins/responsive-menu/deploy.sh',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\{ls\\W(n',_binary '߿\hù8ILuM(Xp\Vi\r4u\6d','',0,'?'),(_binary '4\\!\\h\N_','wp-content/plugins/responsive-menu/migration.php',0,_binary 'trA3^\M\s\',_binary 'trA3^\M\s\',_binary 'N&)\[\0y!\5A\\F\r\@;|\@','',0,'?'),(_binary 'JcH8{t\\\M','wp-content/plugins/responsive-menu/public/fonts/admin/glyphicons-halflings-regular.svg',0,_binary '{\W]c\'\rd\`',_binary '{\W]c\'\rd\`',_binary '\$\6`\|y+\^	8c%k\','',0,'?'),(_binary 'TJ҂wo\TQ\','wp-content/plugins/responsive-menu/public/js/admin/additional.js',0,_binary '[F\20\n\',_binary '[F\20\n\',_binary 'k\\®\[oүO\+b\݋nR\~\ia}','',0,'?'),(_binary '{t\\\03taI\E\','wp-content/plugins/responsive-menu/public/js/admin/base.js',0,_binary '\\\z\\>\I\n\2',_binary '\\\z\\>\I\n\2',_binary 'W\B\\2{B{5\\/=\','',0,'?'),(_binary '\\\"o>\G~*','wp-content/plugins/responsive-menu/public/js/admin/bootstrap-file.js',0,_binary '\\]]z\Oh\?0F',_binary '\\]]z\Oh\?0F',_binary '\Y \첨i\\`S\\d\\s\վg#\','',0,'?'),(_binary '\n\-\? \3JB\','wp-content/plugins/responsive-menu/public/js/admin/bootstrap-select.js',0,_binary '!W\n\\'[\LWx8',_binary '!W\n\\'[\LWx8',_binary 'jz<i/\ɗ\\\06','',0,'?'),(_binary '*\n@ɠ','wp-content/plugins/responsive-menu/public/js/admin/bootstrap-toggle.js',0,_binary 'O:I\~+\4',_binary 'O:I\~+\4',_binary '\\r(Facb\\r=v\\\z\\C},0<=','',0,'?'),(_binary '\K\4q\s','wp-content/plugins/responsive-menu/public/js/admin/bootstrap.js',0,_binary '\W\\g\\4X3\\\',_binary '\W\\g\\4X3\\\',_binary '\Ho,\8\Jz\\8\fm\ОVp%3','',0,'?'),(_binary 'V\\Fj\\\B','wp-content/plugins/responsive-menu/public/js/admin/minicolours.js',0,_binary '\@\\KrWHgT',_binary '\@\\KrWHgT',_binary 'SC\9ؽ~ݹ\V\\\','',0,'?'),(_binary '!\F\\0u\\\\','wp-content/plugins/responsive-menu/public/js/admin/selectize.js',0,_binary ';yH\\\R\g2>w3\\',_binary ';yH\\\R\g2>w3\\',_binary 'o1_\fxߖ\\\B7<\jdRLz,','',0,'?'),(_binary '($\	q/\\D`X','wp-content/plugins/responsive-menu/public/js/app.js.twig',0,_binary 'G\d\\\\1r\'W',_binary 'G\d\\\\1r\'W',_binary '\S/\vӫ\.꩔P/\CM\\u\\','',0,'?'),(_binary '\\\\}&6]3@','wp-content/plugins/responsive-menu/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\jְ7\\B-wb!9',_binary 'S\\<\n`X&I҃k9C3\a\\0\j8U','',0,'?'),(_binary '\/}2A\rGvk\\\D\','wp-content/plugins/responsive-menu/responsive-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KKKF~g\K',_binary 'Or\\72\R\\\)\W\L\\\2\#\0','',0,'?'),(_binary 'nK\I$^K\00','wp-content/plugins/responsive-menu/review-banner-class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\8P\\\ xJs',_binary '\\=\-\%u\.\v\\1\','',0,'?'),(_binary 'U5/\rnÍ?<d','wp-content/plugins/responsive-menu/tests/app/Collections/OptionsCollectionTest.php',0,_binary '|\S\W\y9,,~nW',_binary '|\S\W\y9,,~nW',_binary '<\0\D\ˈ\Jj>,\\','',0,'?'),(_binary '\"Rcj?\aJl2','wp-content/plugins/responsive-menu/tests/app/Container/ContainerTest.php',0,_binary '\\Z\Ov\\m\?',_binary '\\Z\Ov\\m\?',_binary '1\rH\n|oFH@Kr\5d;\\\\\\','',0,'?'),(_binary '``Es!jXT6','wp-content/plugins/responsive-menu/tests/app/Controllers/AdminControllerTest.php',0,_binary 'YTQ?)\\Yr\\',_binary 'YTQ?)\\Yr\\',_binary 'M^\\u\\os!\%6e\\ˠ\̻!iO\','',0,'?'),(_binary '\|j\0l\ކ\\\','wp-content/plugins/responsive-menu/tests/app/Database/MigrationTest.php',0,_binary '\$\Z̦r󑣚\',_binary '\$\Z̦r󑣚\',_binary ')R.\0R\\\'\@߀+f6','',0,'?'),(_binary 'v ]34Ƽ*=cW\','wp-content/plugins/responsive-menu/tests/app/Formatters/MinifierTest.php',0,_binary 'z+\\r0Fo\Q',_binary 'z+\\r0Fo\Q',_binary '\\\LTh\+5\?1ҟ/\"\\','',0,'?'),(_binary ']`]\\\Sb\\'Rޜ','wp-content/plugins/responsive-menu/tests/app/Management/OptionManagerTest.php',0,_binary '\$\=6N\Z\',_binary '\$\=6N\Z\',_binary 'E\rc\DI\\\\[\JۚAS)f','',0,'?'),(_binary 'B\i\;1	\\','wp-content/plugins/responsive-menu/tests/app/Validation/ValidatorTest.php',0,_binary 'iC\\\y\aF\',_binary 'iC\\\y\aF\',_binary '\PG\\Z,\}!\0Y\\ \a]4Q','',0,'?'),(_binary 's\\[}wu8','wp-content/plugins/responsive-menu/tests/app/Validation/Validators/ColourTest.php',0,_binary 'yf\Lz%p\5',_binary 'yf\Lz%p\5',_binary '%5N\I\b\\\X\\nk\\\\\@','',0,'?'),(_binary 'IޅwC:ّhxl\','wp-content/plugins/responsive-menu/tests/app/Validation/Validators/NumberTest.php',0,_binary 'Y(p\\n\[,\\]',_binary 'Y(p\\n\[,\\]',_binary '+\V|ԸbpӺ\"S\\TG} &r\'	*','',0,'?'),(_binary '\\\ZpF\h{\\','wp-content/plugins/responsive-menu/tests/app/Validation/Validators/PositiveTest.php',0,_binary 'n@\TvلRԙCr\P',_binary 'n@\TvلRԙCr\P',_binary 'js\\9Fm\GV\p\z\n_','',0,'?'),(_binary 'w7/و\݆np','wp-content/plugins/responsive-menu/v4.0.0/.babelrc',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_.\\y\\\]3P',_binary '\ûp1\\jzL譃\Fw\\\@\Z\~&\\d\0','',0,'?'),(_binary '\\tC\sڦ[Ě','wp-content/plugins/responsive-menu/v4.0.0/.distignore',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9WPxL)SsX_;',_binary '\\y%\~=)㙴7\\\\0fMY\','',0,'?'),(_binary '5\zx\+Z{\\\\\','wp-content/plugins/responsive-menu/v4.0.0/.editorconfig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\4Ta}[ݦ#',_binary '\Tk\\A\ \u;\Hbaib	H\','',0,'?'),(_binary '\CCZ\n\\:G\\4S\Z','wp-content/plugins/responsive-menu/v4.0.0/.eslintignore',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\DI\?\YK\\嵫J',_binary '`Rܾ\S*>2ѹ\\Yxd\\fO','',0,'?'),(_binary '\+%\";t{','wp-content/plugins/responsive-menu/v4.0.0/.eslintrc.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\"I\n\"װM\',_binary 'F\4aKOUy\	S0\\rA\','',0,'?'),(_binary '8\2\F	\Z\\','wp-content/plugins/responsive-menu/v4.0.0/.gitignore',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vM+..ʛ\\',_binary '\v=\\qlq,\V\NE\\}D\MW','',0,'?'),(_binary '^B8-\8v)','wp-content/plugins/responsive-menu/v4.0.0/.stylelintrc',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\ZR\2\\jȠ缲\',_binary 'I\\1Ʃ\vor\\0{\V	','',0,'?'),(_binary 'kR0\sp1Ҭͮ','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/build/css/rmpMain.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\?*ZJ˹t',_binary 'iYS\Ow\\"\Va\+\\'\Rfz\[G','',0,'?'),(_binary '1\\\1e\%J\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/build/js/rmpMain.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\ɳ2p<Z3}',_binary 'a\`\"Ԙ#S\ZC\$\J౷n19','',0,'?'),(_binary '\rN#\<f\\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/build/js/rmpMain.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\\ӲH@*d\',_binary '\[->\\\s\+\z\1C','',0,'?'),(_binary 'u7\\\׏\"0͸','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/fonts/product-sans/Product Sans Bold Italic.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yuU7=b\~R',_binary '\i\Za=\'TzqNArLS^ɩsc}`1e','',0,'?'),(_binary '؟\"Oɜ\	\D','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/fonts/product-sans/Product Sans Bold.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '۠ƈ\\	\]%\',_binary 'c\\`\%\\r\<߱>]\K\\\0R>','',0,'?'),(_binary '\\#zuXP\TX','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/fonts/product-sans/Product Sans Italic.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'Ri(\I7Z',_binary 'yMU\|\\PPЦ6xO\\g\r\9l','',0,'?'),(_binary '\>Fr^(\cDX\>8','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/fonts/product-sans/Product Sans Medium.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qs\$\9',_binary 'F$bd\s\wC+I\ED\YZ!bS\','',0,'?'),(_binary 'y8\\\\\Y\\\'\\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/fonts/product-sans/Product Sans Regular.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\.eI',_binary '$7 3u\\n\\\C\\\\37\tUӊ','',0,'?'),(_binary '\_<\cƈ[Y\\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/fonts/product-sans/google-product-sans.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\J\6l\Hu!',_binary 'u0\1\esĖ\GMfmZ	:\ߤ\\W\rj\','',0,'?'),(_binary '?\I\$O7\P','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/export.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'rYǧs#3M~',_binary '\\	~QHM\\TRl\ż\{9n','',0,'?'),(_binary '>`K{Mm\:1?SDW~','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/advanced.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n/fk\\\9\r\\l\T',_binary 'ڨХ\Z>Coi\\D\!s)\Z\\','',0,'?'),(_binary '\Fg\uҳR$K9m','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/container.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\\Z{ \',_binary 'X\rr=BG}F\?曽}lk7M\&ࡥ\7kR','',0,'?'),(_binary 'sO˒\D\\hp\8n','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/desktop.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\r^\"YF\r\Y',_binary 'l\)膼\)ہz.Β@5$ۢ!','',0,'?'),(_binary 'O#\]sٻ\\Z\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/dropdowns.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\K)pU',_binary 't\\$\\	\lB\niO/[VN','',0,'?'),(_binary '\*pj^\\*V?j\#\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/general.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\85Fao',_binary '\X\=\G\\ɰ	$!+\51\V̶b','',0,'?'),(_binary '\\Z\X\0E	A','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/header.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(e[bw\\\R',_binary 'W+\gV\\>3\|=\9\{כSP\r\','',0,'?'),(_binary '3:\\\\\{*pT{<','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/image-placeholder.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']Ul7\l\n\Y',_binary '\L(\y\`\r.쩛-NB9*\ِ\M\O\','',0,'?'),(_binary '>.\m\\쑜ܬ7F\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/mobile.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\(}6\\\\\\',_binary ' >Rz{%\\oPBUk{2h\eu','',0,'?'),(_binary 'E\\Tۄ?\S1','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/tablet.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' YM\0=l\#WrM',_binary '=fxUN~\`OG\r\rfQ2','',0,'?'),(_binary ' \'\\H\{=!IBj\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/toggle.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7Ok/\rƧE-',_binary '\n\\o\=gwWH\,\\\!\}\H\\0U','',0,'?'),(_binary '<ogW\iv\C\\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/dropzone.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nx~OmnnG\"]',_binary '<^`^~\2m,|+\o\\#	\\ɲ\\','',0,'?'),(_binary 'e\V`f\\D\0A\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/rmp-admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\g\SaR\\',_binary '#\P\0\מ\5PLàW\BZ','',0,'?'),(_binary '$\\А\\{\\;','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/rmp-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cP\C!B\;',_binary '\'\i{Е쪳Mה^׏00zŬ','',0,'?'),(_binary '=P\FJտqB','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/rmp-elementor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kǀh$\Z2|Ц\',_binary '8ٳۃM\z7\k~\\뎒\\\搜','',0,'?'),(_binary '\CJ\N}W;%}','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/rmp-icon.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r]\0\\\ؖk\g>',_binary '\W\C\3\	mmI>ЪѴ\Kg^\','',0,'?'),(_binary 'p\\\g\}+\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/rmp-menu-wizard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Amҏ\:\\}/K\"\',_binary 'ScLգ\= \0\\S\\\	k\-\\'e\p','',0,'?'),(_binary 'G(3\X\\^','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/rmp-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'აs9^e6>\yR',_binary ']-\\<y\R\C\Zd\\\S\D9','',0,'?'),(_binary '\^\\\@Q}Hc','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/selectize.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';yH\\\R\g2>w3\\',_binary 'o1_\fxߖ\\\B7<\jdRLz,','',0,'?'),(_binary ',\\"\3u S','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/wp-color-alpha.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X%\',_binary 't7&\0ä\"n\Vl2	Ȗ\\V;(jD\','',0,'?'),(_binary 'E=jks\O','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/rmp-main.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/u^ʰ\?3h\i',_binary 'LS[R0B\E\I>kH,\\\\0=5aV$\','',0,'?'),(_binary '{ʨw\X\y\"','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/scss/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I\'~\aۄ',_binary '`?\\\2dK\\g%6ۍu\'|:F','',0,'?'),(_binary '\\\\%\(\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/scss/dark-mode.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\tQ\\T\\\\',_binary 'f\\\\rdΈ\2nSpV$J\h\:\','',0,'?'),(_binary 'Q\\\R=\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/scss/glyphicons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\=cQ',_binary '$\0O\?\\9|*(?$\rh̋\0','',0,'?'),(_binary '\<*ۓ\\Y\q\'','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/scss/selectize.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\'\\\0|bwi9\n',_binary '@oNRƈj\J\X\P\ \~\0b','',0,'?'),(_binary '\%\\nZ\zڃ\"G\\','wp-content/plugins/responsive-menu/v4.0.0/assets/admin/scss/wizard-ui.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mi\si\0Z\;\\',_binary '\ѯ\o?ōs\UQF\cD-\{\','',0,'?'),(_binary ':\\\(\0,Ð','wp-content/plugins/responsive-menu/v4.0.0/assets/images/default-theme-preview.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\M#@\Z*9 ^',_binary '6kXǵ[여ԅ\\r\\& My!\0]\\5w','',0,'?'),(_binary '\%\Z\#\?\^3\','wp-content/plugins/responsive-menu/v4.0.0/assets/images/giphy.webp',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɟFжcf5\\'*\',_binary 'g*&SqIU\\Ld\zի\')','',0,'?'),(_binary '\2#ɸ\'bE\ڏ','wp-content/plugins/responsive-menu/v4.0.0/assets/images/no-preview.jpeg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\q\n!\"4=',_binary 'M0p6X\d\\ 5H5r\K\\"7\\\	','',0,'?'),(_binary 'rI\n?\zSBa\QL','wp-content/plugins/responsive-menu/v4.0.0/assets/images/placeholder.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\j\\y\?1%\b\A\',_binary '!KKZ\'\9\&K.p!x+S|6N~R','',0,'?'),(_binary '`\Z\\L_&\3\\n','wp-content/plugins/responsive-menu/v4.0.0/assets/images/rmp-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3̭\S\Ej9Z+д?',_binary 'R`\\\B,+\\K\9Hl\d0֖','',0,'?'),(_binary '\\\LC\窖\','wp-content/plugins/responsive-menu/v4.0.0/assets/js/rmp-menu.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\\A\y>H\\',_binary '\m:H`.\=v\m!.v-k\\m','',0,'?'),(_binary 'ȹq\0=JV\F`{','wp-content/plugins/responsive-menu/v4.0.0/assets/scss/common.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YNo\Hg\߭gZh',_binary '\ZA\2\M2\\~45\\\\QI','',0,'?'),(_binary '\r\8\\s8t\\\\','wp-content/plugins/responsive-menu/v4.0.0/assets/scss/main.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\c\/i#\\;\\ZÚ',_binary '(\h<\F~P\\ru]','',0,'?'),(_binary 'Ql%S(\?','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-kKʜ\/o2͔',_binary '\\=Zn> \\6)Y\\@\\号C','',0,'?'),(_binary 'iZ\\Ŏ|+\\ϕ\','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-assets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '69.V\\ȟ\K\',_binary '\\\n\	{\ȧ3(\\Ɛ','',0,'?'),(_binary 'F3P8Fp|H{Z','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-control-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\_\'a\',_binary '\nO؅\\I\\>N\*U}x>','',0,'?'),(_binary 'Y=: Q:\}\+','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-editor-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't^K<T`Eڼ\\',_binary '\Zc\'+<#~\\Z)& 3F]\','',0,'?'),(_binary '<xy:\\\\2\oh','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?1^^h=\\o',_binary 'B\\T-x䧦\Bs502\\n2','',0,'?'),(_binary 'xY*7f=1\)D','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-option-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm<@du֐',_binary '.\\\\LG\\R+[\Am!\\0nh\\)(\r','',0,'?'),(_binary 'cq7@_J\\\\ը\','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B\'EA\T@',_binary 'x6\0[Sv,\\\\'\|X\\y}+Yh\*B','',0,'?'),(_binary 'ŧ\<e\}|\4\\b','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-preview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\"Z\\4îPa',_binary 'ք\?=eJka\|\HKg\lr\\h\U@','',0,'?'),(_binary '1vE\d\|c+(\','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-rmp-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\80Zr1\S0',_binary '\+\wRAw\\`CتgمV','',0,'?'),(_binary '\nqep~\]N:u\`\','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-rmp-migration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,\\\0ȿD,fI\',_binary 'g7D4Mo\9e\\4\,Ċ	\\','',0,'?'),(_binary 'l\h	\\Nc&\0','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-style-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ްV\wY\\[',_binary '˪\q\\\{\p\\\rs\B.\7R','',0,'?'),(_binary '~\GsS\?,.^','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-theme-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\mLȞN%Lb',_binary '\nrFv\)14]Yx\jb\3\Wn\r\Y1','',0,'?'),(_binary '~\\\Oͩ`','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-ui-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\\0\z?5\'',_binary '\Ƭ\?#\4\Dl:&\	\0W\Ex','',0,'?'),(_binary '~\\s<\ԧG\','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-walker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Rs\Z\"@?ޣ\Z',_binary 'Z\HJS.袯\l\6m2C\Cz\i<az\\','',0,'?'),(_binary 'wQn\a\"uG','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/elementor/class-elementor-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Fj\0\0I(\Z&\\\',_binary '];\W\{T\\s=h??40\'\\ ->','',0,'?'),(_binary '>\\\Z\3\\e','wp-content/plugins/responsive-menu/v4.0.0/inc/classes/elementor/widgets/class-rmp-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[?XZm\-դ\',_binary '\xMZ\U2+1\WG<\\gKR\','',0,'?'),(_binary 'A\\0eTAz\\\$','wp-content/plugins/responsive-menu/v4.0.0/inc/helpers/autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\\\\׉\?\\#\',_binary '\M\Lp6\|sW僻\D\\C5','',0,'?'),(_binary '\'/TKy#\','wp-content/plugins/responsive-menu/v4.0.0/inc/helpers/custom-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\\\\\ēJ+\',_binary '\\nn\w(	\\D\\D[Q\\\\&','',0,'?'),(_binary '1;ySOno#','wp-content/plugins/responsive-menu/v4.0.0/inc/helpers/default-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zly\P\*',_binary '\V\X0f\C\3t\\)yM̈́@pH','',0,'?'),(_binary 'Qp\IM`V','wp-content/plugins/responsive-menu/v4.0.0/inc/traits/trait-singleton.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!I$\\U}\R',_binary ',\\RMŘ?ƴ\\o\\A\','',0,'?'),(_binary '\ADp\\<\1\o','wp-content/plugins/responsive-menu/v4.0.0/languages/responsive-menu.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L9ӥOVY\\]',_binary '	M\Ȇq\g^kb\r&\\','',0,'?'),(_binary ')sKQ[\#ui','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\\\0\t\\3\q',_binary '\\\92kA]e|eS\)\0G','',0,'?'),(_binary 'q6\:Y\\Z%\Z','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/composer.lock',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\՝LAW\{QC',_binary '\k:wZ@\\JK]W','',0,'?'),(_binary 'XDP\\\8UAh2','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\bx\\\"\'KH%',_binary 'UI\\\rwE\F \0^q\<p(a','',0,'?'),(_binary ']ỵ6v\d\΢','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/bin/pscss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\sڷIX\\	',_binary '\$_\\:dj\\p2\*!n(P:.\','',0,'?'),(_binary 'z{V/\<h~B','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/bin/pscss.bat',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\=s\\LNy',_binary 'g\\i\]\\C\`C\0\Q.0m+OM4','',0,'?'),(_binary ':\\ֳrU{ӞV*','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|%*T*`',_binary '\289vu3n	C2sva/','',0,'?'),(_binary '#*\rt2\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']_\#D\\0\\',_binary '\Z ے\%4~N\~Gh!b\:wɌ\'','',0,'?'),(_binary 'UI\n\n4\D\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EӤ㭇\\Mg',_binary 'Q\*\'B+Eߞ:\m\yu\W','',0,'?'),(_binary 'f:E\k%\b4','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\,}vĨ3\G\)',_binary 'Er4@\0ԡ$\z\3\$l\\Z\`i\ex\l\','',0,'?'),(_binary '\\\\\1#&C','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_v\g\\\+y',_binary '\_aAH@}ly\\M%\g\@Z?','',0,'?'),(_binary '\9\\[[;\0{_{\x','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1b\	f@\kC',_binary '^\nƜ\ZK7%a\	*gtr\q\q\\5','',0,'?'),(_binary '\\x\\u\1n\of','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/autoload_static.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\\\\Zx=w\"[',_binary '^X_S\j\\/=9;\$SI\nQU\ܴ','',0,'?'),(_binary '(\n\\\\@%\5\K','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/installed.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\\Ғ\M\',_binary 'َ\-r\$|p4[ymN.F','',0,'?'),(_binary '\uL3Ǆ\Ie\\C','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/LICENSE.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2m\56	?W',_binary ')\E;9=uۡJ\nw5ol\w\h$ne\	%','',0,'?'),(_binary '8\B[\Ԅ~kv','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\ *!޴F\1',_binary 'l\y\N_\0׳Pl9\\|\"\\paB!','',0,'?'),(_binary '\\*%*\\\CK','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/bin/pscss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z$\?\\',_binary 'CV\/unT\B %4\d\$of','',0,'?'),(_binary '4\0KuI\0I\Yo,','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\zT=:\EVj\',_binary '\6ZsG\d~pN)O\\rn','',0,'?'),(_binary '\4B\\bG}','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/scss.inc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\\\\o\qw\',_binary '0ǔ\͉(Dl2uUh\h˜9&_Νj\"\','',0,'?'),(_binary '|\\t.H@7LyZ','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Base/Range.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hN\OFo[\n]Ao',_binary 'kF.{$@~\\C}4\	+\Z@','',0,'?'),(_binary 'y@Q=\'a~\\\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Block.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\z.H%/ā',_binary 'uQ۵\Ҽ\*\}(`i	џ7ů','',0,'?'),(_binary '>lI\\ۗ\}B','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{(H\8\1	',_binary 'Xӹ@dfh\Oڈaǽԏ\^He?\'','',0,'?'),(_binary '\\\nj|;','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Colors.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MO8wk[+\48',_binary '\<jL\Z#+N,R\D\\Hu\i','',0,'?'),(_binary 'N|j3\]\y\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Compiler/Environment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\\E:Nm#G4',_binary '!@Iң\7\\l^?-:!^xvA\0','',0,'?'),(_binary '=\b5\<X\\>','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Compiler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\E\>>Čy$\\',_binary '\\	_3\#\r\r)\\	f\_7{','',0,'?'),(_binary 'l<֮{\\\\8F','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Exception/CompilerException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ajͶh\JE\"SW',_binary '+[NUzU^%\\\\nn.\@\p','',0,'?'),(_binary 'ȊBLn|ϏR','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Exception/ParserException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(*\rA\Z-t\\',_binary 'E\P^\R1Gb՗0|\(Ep9','',0,'?'),(_binary '|\\?CB&\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Exception/RangeException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\\\Rk6',_binary '\Qq\S\mʨŁMdB6H쮃\','',0,'?'),(_binary '\\\,X \K	\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Exception/ServerException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'K`\T\\0\\',_binary '{\L^\^(\\3\\Ϗ\\\'\9\un','',0,'?'),(_binary 'E\W&\q\nщ','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/Compact.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gϛ\1e\sGKG',_binary '8?( A,pyU\\!\T\','',0,'?'),(_binary '#\w㨱m\0\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/Compressed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ճ~\$\Z\fU',_binary 'sϬ\K._.c\\\"J3K,\1YO','',0,'?'),(_binary '\um?Q\|CT\'\\"','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/Crunched.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\'\n',_binary 'k\\V\.@\:\NhhzB@q','',0,'?'),(_binary 'q\\<\C\ӈFGe7\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/Debug.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(-{)!{\)',_binary '\8\+\\1 ],8t%L2Z\04','',0,'?'),(_binary '`mE\s)@\C\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/Expanded.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\\|\rt	K',_binary 'p%g\ \ƒ\`KYF\sd\C#\\\q','',0,'?'),(_binary '9\Q~Y\2lb\쉹\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/Nested.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\9\;\\\\\',_binary '\\!-md?X1\\\\'D\c\%\kV\','',0,'?'),(_binary '\\d[\\57QQ|x+tr\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/OutputBlock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '՞\Ė\M\͙L!^',_binary '\FmfLfC*\\\%\\\XK5G&ل\G','',0,'?'),(_binary '&\r(O\}΀ة\\l','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qj\"df\\IP',_binary '2\Fi\Y\g\n\tݏ_r\'?_\','',0,'?'),(_binary '\?U_\qp&\ZtG','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Node/Number.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<蒌pt\\p4',_binary '*\R\\*3dI\r\"\\YJ`͖Df\F	7\.y','',0,'?'),(_binary 'JGB\\\w\p[','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Node.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pf*!Oܬ\Zquc[',_binary '\19\bxR$\1%u\\\\\</PY\k','',0,'?'),(_binary 's#@֚:\	S\\\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S9?	\"~9',_binary '\\#ϫd\\<K\\n\Vw\nZ2\','',0,'?'),(_binary '$G͑/P#','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/SourceMap/Base64.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'py2Q\\n\I',_binary '>\'\	ձo\\Y\\Օ\'\\|p<yw;','',0,'?'),(_binary '#h[ss\Z','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/SourceMap/Base64VLQ.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ĵ7&\k\.@\"u',_binary '\'\Ə\n J9\\:\\"\\!N\p먰i','',0,'?'),(_binary '\nVm\\\X','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/SourceMap/SourceMapGenerator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\>OG1>.Y\n',_binary '\'ڟ\^`/pz{\%W ѶFs\\{js','',0,'?'),(_binary '\[i\G\\By','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Type.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\myRgƎ\޲',_binary '~\$;\ƃ1\o\p\zj\\\y\{','',0,'?'),(_binary '\Vۯ^=\\ں$\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';s\\\i5\0ʐ\\0n',_binary '\6\H\z\;\5\'A.\m\'{\V','',0,'?'),(_binary 'X\@\A?_`\"O\\','wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Version.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\"\e\{)\ZФ',_binary '\nnǟ@\ \rY0Cf\n\,&\\k^\{\\','',0,'?'),(_binary 'V,8d\}\\','wp-content/plugins/responsive-menu/v4.0.0/package-lock.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a#:4\\LpPwjW',_binary '\4RBE\\\g\'٬\g=4','',0,'?'),(_binary 't\s\\5<\W[W','wp-content/plugins/responsive-menu/v4.0.0/package.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$ Ѱ\\\6',_binary '\U\X&\\Η\Z$O^\\\>Y}Թ=v\b-','',0,'?'),(_binary '& \񊃿y}\Y','wp-content/plugins/responsive-menu/v4.0.0/postcss.config.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!m:2(6Hd	H\\\V',_binary '\҃>\d\\Rz\{\\T,\.\\\0\','',0,'?'),(_binary 'm7\Wy\lϥz3!b\','wp-content/plugins/responsive-menu/v4.0.0/templates/admin-notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\\\\0CW-',_binary '\N\p&N\C\9ƬCUٚ,\\[z\w','',0,'?'),(_binary 'D\)\\ZOC\0&9\'','wp-content/plugins/responsive-menu/v4.0.0/templates/legacy-settings.php',0,_binary 'j,\|A\oȂ',_binary 'j,\|A\oȂ',_binary '6<\ΧN_R%47P\\E\\\\','',0,'?'),(_binary 'R\0f\b]','wp-content/plugins/responsive-menu/v4.0.0/templates/menu-elements/additional-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ک\\`l8Cj\\K',_binary 'lM-ܣrT+N\ ŋ舕\\\\"Z','',0,'?'),(_binary 'K\\y\dsJ004','wp-content/plugins/responsive-menu/v4.0.0/templates/menu-elements/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\qJÎn;\\ZWx',_binary '\\\e1\Q\\1\\ڏiVz$k','',0,'?'),(_binary '\'U\\\&òt	/\\','wp-content/plugins/responsive-menu/v4.0.0/templates/menu-elements/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hy\\<t\"\K',_binary '\]\!\n>W\\C⼀ \ȫo\0\GL','',0,'?'),(_binary '\\F-*\(,\0Y]','wp-content/plugins/responsive-menu/v4.0.0/templates/menu-elements/title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\u#LTv\\no\f',_binary '[\\'C\tf\L|\nlB$\\\'z\MP@6','',0,'?'),(_binary '4D./\<\Ҋ\\v','wp-content/plugins/responsive-menu/v4.0.0/templates/new-menu-wizard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8|\;Rh\mƂJ^\',_binary '1͎Vp\R2\\YeL\zާgmi~O\','',0,'?'),(_binary 'T2Q*A\OWu\','wp-content/plugins/responsive-menu/v4.0.0/templates/rmp-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H/Gi\r$b\N?',_binary '\ޑ\_*\\D,\ZRv\F\^xo4{','',0,'?'),(_binary '\F\@|\iT\0D\\','wp-content/plugins/responsive-menu/v4.0.0/templates/rmp-roadmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{#%佁H\Z\0',_binary '	΂\x`\\\FfP\8\\\$UlR=NS','',0,'?'),(_binary '\0\ݜs\\\o\\','wp-content/plugins/responsive-menu/v4.0.0/templates/rmp-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&|;}n\7D\\0\',_binary 'p8?!9\-\\\nkgS(\\r1wt!','',0,'?'),(_binary '6\-+=dKBu','wp-content/plugins/responsive-menu/v4.0.0/templates/rmp-themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZN\7\N*%\',_binary '.\7x\t\լ\ZhNdӃYj\4\\L4','',0,'?'),(_binary 'yPtN6pNu','wp-content/plugins/responsive-menu/v4.0.0/templates/rmp-wizards.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\q6lo\\$?i',_binary '>=T\9\㭶\Q>PO)\F+Mn\l{','',0,'?'),(_binary '\A^h\A¡R','wp-content/plugins/responsive-menu/v4.0.0/themes/electric blue theme/blue-background.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\I\]vkx\Z\',_binary 'hG\8LXI%e\&\I\}\','',0,'?'),(_binary '/\)`\\\','wp-content/plugins/responsive-menu/v4.0.0/themes/electric blue theme/config.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JX\\ݖdk*',_binary 'zs\*{ݍ\\*J&NoR8>y','',0,'?'),(_binary 'X\\\=4\','wp-content/plugins/responsive-menu/v4.0.0/themes/electric blue theme/electric-blue-theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vc\n6_g܃2+h',_binary '\v\\[\	#u\ h\?(=\	,','',0,'?'),(_binary '2\0bb	E\\rt','wp-content/plugins/responsive-menu/v4.0.0/themes/electric blue theme/options.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?jIVX',_binary 'c$\\\\\t\\\\a&\\Zo\\%D\\(','',0,'?'),(_binary 'Q\Ov@','wp-content/plugins/responsive-menu/v4.0.0/themes/electric blue theme/person.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\̐m',_binary 'T1Wٞ\:\kktL\U#i\\,C3','',0,'?'),(_binary '\E\j;w\\7{','wp-content/plugins/responsive-menu/v4.0.0/themes/electric blue theme/preview.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\0D8Z8\\\EjT',_binary 'lѥΑתU~\}\\\г:		6F\','',0,'?'),(_binary '\r5\>\m\T','wp-content/plugins/responsive-menu/v4.0.0/themes/full-width-theme/config.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\=\H>W\',_binary '\%IlĬxK\\\".-g\ZX\0\\\','',0,'?'),(_binary '\@	{!','wp-content/plugins/responsive-menu/v4.0.0/themes/full-width-theme/full-width-theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4\g3%1',_binary '1\$O\:q\\	j\Fv b','',0,'?'),(_binary '\n-).(\&dIK\','wp-content/plugins/responsive-menu/v4.0.0/themes/full-width-theme/options.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\&3L\O\\d(',_binary '\'\\"*1i\\\49\@L:\R','',0,'?'),(_binary '0^\\\xq\0<\fu','wp-content/plugins/responsive-menu/v4.0.0/themes/full-width-theme/person.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\̐m',_binary 'T1Wٞ\:\kktL\U#i\\,C3','',0,'?'),(_binary 'z>\f\BP-P}/','wp-content/plugins/responsive-menu/v4.0.0/themes/full-width-theme/preview.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_uuÔ ',_binary '\0+\S\\Z\\r\\\'!*\3BP2~a','',0,'?'),(_binary '\\\mm\9\/\','wp-content/plugins/responsive-menu/v4.0.0/themes/simple-red-free/config.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>:\(\4$@^Xc',_binary ';s^ьER%aӟu)	Qc+4','',0,'?'),(_binary 'oכS\ud\q\I','wp-content/plugins/responsive-menu/v4.0.0/themes/simple-red-free/options.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>=_\\|\z\\΃',_binary '/ΆFY	\C~{mZ}b\Q\Z\n','',0,'?'),(_binary '\$\nc\X\%','wp-content/plugins/responsive-menu/v4.0.0/themes/simple-red-free/person.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\̐m',_binary 'T1Wٞ\:\kktL\U#i\\,C3','',0,'?'),(_binary '\^w6\59\\\','wp-content/plugins/responsive-menu/v4.0.0/themes/simple-red-free/preview.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~t\\;:\\0WL',_binary '/\?\0\"f`\&|B#\\SO\4Vv','',0,'?'),(_binary 'W	\~G]T3\n\','wp-content/plugins/responsive-menu/v4.0.0/themes/simple-red-free/simple-red-theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\\\>m\\nXR\'',_binary '\\ג\`ӈ\w\\a\"ջP%q@\en\','',0,'?'),(_binary '%ֺ\\\5r%','wp-content/plugins/responsive-menu/v4.0.0/uninstall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q\̴i\\>',_binary 'ĸ[?5\(\QD\ϸT\\\N!\','',0,'?'),(_binary '6|6\a:\Qh','wp-content/plugins/responsive-menu/v4.0.0/webpack.config.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\b\\I\]',_binary 'a\r\\Y\i#w%\^b\\\\\#1FF\\','',0,'?'),(_binary 'fJ\<\n\tB','wp-content/plugins/responsive-menu/vendor/autoload.php',0,_binary '\d:QKJv\Ԏѵmt',_binary '\d:QKJv\Ԏѵmt',_binary 'u69\8?\e\\,,~`\\','',0,'?'),(_binary '\TMa%J\Q[5D','wp-content/plugins/responsive-menu/vendor/composer/ClassLoader.php',0,_binary '\\|%*T*`',_binary '\\|%*T*`',_binary '\289vu3n	C2sva/','',0,'?'),(_binary '+v#4u\'M P \','wp-content/plugins/responsive-menu/vendor/composer/autoload_classmap.php',0,_binary 'EӤ㭇\\Mg',_binary 'EӤ㭇\\Mg',_binary 'Q\*\'B+Eߞ:\m\yu\W','',0,'?'),(_binary '[\k}U·\\\'֤#','wp-content/plugins/responsive-menu/vendor/composer/autoload_files.php',0,_binary 'lMd}\mH~\Z',_binary 'lMd}\mH~\Z',_binary 'As\\\P_uCv\\\\\[%\\MN67+','',0,'?'),(_binary '&7\"\\\+}n,JߵX','wp-content/plugins/responsive-menu/vendor/composer/autoload_namespaces.php',0,_binary 'Ϭ#RLi\\0⻁',_binary 'Ϭ#RLi\\0⻁',_binary '\,\?E/tTt\\X;\','',0,'?'),(_binary 'D\'\\o\r!U\\\','wp-content/plugins/responsive-menu/vendor/composer/autoload_psr4.php',0,_binary '\S\\|o\n:j$\',_binary '\S\\|o\n:j$\',_binary '\\Z^\5DoT-י\^a`L:яď,','',0,'?'),(_binary '\H^*|\\dN\~\','wp-content/plugins/responsive-menu/vendor/composer/autoload_real.php',0,_binary '\\nIn\Ly\#-',_binary '\\nIn\Ly\#-',_binary '܅v;\h\\\/:x8Cv\ز\>','',0,'?'),(_binary '=\A0y\-}4B','wp-content/plugins/responsive-menu/vendor/composer/autoload_static.php',0,_binary '0g\ސ/Da\m ',_binary '0g\ސ/Da\m ',_binary '2?3\}Em/\\\,Se\Z\G\B\\L\rlk\','',0,'?'),(_binary '\\\H}\'{o|\k','wp-content/plugins/responsive-menu/vendor/symfony/polyfill-ctype/Ctype.php',0,_binary 'r\M\\5MD\',_binary 'r\M\\5MD\',_binary 'k\\(\+g\Z\ፌsv\h\\\1]\\\\\','',0,'?'),(_binary '-Ӆ\i\"<o\\\n','wp-content/plugins/responsive-menu/vendor/symfony/polyfill-ctype/bootstrap.php',0,_binary 'cixjl8ɂQ',_binary 'cixjl8ɂQ',_binary '\r\$f7qd\;\\LC}1\\?','',0,'?'),(_binary 'AUJB\\(\~Pk','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Autoloader.php',0,_binary '\ac\s~\F9',_binary '\ac\s~\F9',_binary '\n?/\\%\ZB!\=\r\7\j\]P\U','',0,'?'),(_binary '\Zt\K~x,','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/BaseNodeVisitor.php',0,_binary '|\\Sj+㝗T4',_binary '|\\Sj+㝗T4',_binary 'C$)i\ӒS\4\\d\nmgȳ\\7\8','',0,'?'),(_binary 'aƫ\\\ȌAq#','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Cache/Filesystem.php',0,_binary 'xl$	\&\,\\',_binary 'xl$	\&\,\\',_binary 'u\Ta)\5\d\\\!=\RW]-cy','',0,'?'),(_binary '~\G3kX\vF&','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Cache/Null.php',0,_binary '^x]l\*R',_binary '^x]l\*R',_binary '\6Q\l\xR\\V;\.zh~<\\\چ\"','',0,'?'),(_binary '\;y}\-\\2[m\7','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/CacheInterface.php',0,_binary '\ۤӟv[#y_',_binary '\ۤӟv[#y_',_binary 'd-\\Iȍ\@!ԞUj\\\B9\xRE:','',0,'?'),(_binary '\\>3],\sa','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Compiler.php',0,_binary 'E׏ɾ%1b',_binary 'E׏ɾ%1b',_binary 'k\Rڠ1kLo\}:\\c:\"!\\S\Y\','',0,'?'),(_binary 'MTHo}\T$Z\U','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/CompilerInterface.php',0,_binary 'yZV	Q1[',_binary 'yZV	Q1[',_binary 'o6,\'\f\\W\\XVFP9	\;','',0,'?'),(_binary 'qUh\\\_','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/ContainerRuntimeLoader.php',0,_binary '=\u:H6w7k',_binary '=\u:H6w7k',_binary 'N\BR\Z\~i\2%0E\','',0,'?'),(_binary 'BkQ^\Ɓ\E','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Environment.php',0,_binary 'k\Niؑ6jb\\>o',_binary 'k\Niؑ6jb\\>o',_binary '\e1\l>\s\z%\(\\$E&\\U','',0,'?'),(_binary 'n\B\;\\O\2Q,','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Error/Loader.php',0,_binary 'g5fc\\92kE',_binary 'g5fc\\92kE',_binary '\0\0`K@\)\\\fP\}W{\+B\"\\','',0,'?'),(_binary 'dzy?)M2','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Error/Runtime.php',0,_binary '¨1a\\g\Jn',_binary '¨1a\\g\Jn',_binary '\'\1D(\\7\?z\nd\\h\\\)','',0,'?'),(_binary 'm\\r\̀sJ\V','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Error/Syntax.php',0,_binary '\Z\x6K\\h8\k',_binary '\Z\x6K\\h8\k',_binary '\\fEs\"^\7{\k\`\\TT','',0,'?'),(_binary 'A	R}\\Z\z','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Error.php',0,_binary '\\_\0YK1',_binary '\\_\0YK1',_binary 'ʏ\\WR,\r\\ը\!\r','',0,'?'),(_binary 'C\0~\n\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/ExistsLoaderInterface.php',0,_binary 'j,[\\0ۄ\ZnV',_binary 'j,[\\0ۄ\ZnV',_binary 'V|sB\\i\'{w\3:1n\7\\[s~','',0,'?'),(_binary ',?\pJv7)0Th,','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/ExpressionParser.php',0,_binary '\'Z;ݒ\̞\',_binary '\'Z;ݒ\̞\',_binary '##-|\\%oZ\\r[yT\G\~,','',0,'?'),(_binary 'CmK\rm,Var\"','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Core.php',0,_binary '\'\^!/\_x\z',_binary '\'\^!/\_x\z',_binary '\w\7@\rX\:*vʑ׷\\]s','',0,'?'),(_binary ']eϡ\Pn\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Debug.php',0,_binary '!Ht-\\(03',_binary '!Ht-\\(03',_binary 'j\"\V`hnC\\r\\LR#\C','',0,'?'),(_binary 'YU7\}e-','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Escaper.php',0,_binary 'kb\n\&,iC]\k\\',_binary 'kb\n\&,iC]\k\\',_binary '}|+*\v<Kn\՚\nX\\Րy\\\','',0,'?'),(_binary '9!z&1\\\C#\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/GlobalsInterface.php',0,_binary '2\aJl\ETik1ƈE\',_binary '2\aJl\ETik1ƈE\',_binary 'C\\\Ҡ*\T\\Nl΅y)0B','',0,'?'),(_binary 'W)^O\Ibr\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/InitRuntimeInterface.php',0,_binary 'WW6>^\K|',_binary 'WW6>^\K|',_binary 'vBk\ҺXѵ0i\n\j3\;g\s{\\\','',0,'?'),(_binary 'oѹϘ0~\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Optimizer.php',0,_binary '\救K\ͷAZO\2',_binary '\救K\ͷAZO\2',_binary 'H\5\\\BX\0\'\E\'&Q5\\\\\','',0,'?'),(_binary 'c\7\\L\r\lsm','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Profiler.php',0,_binary 'a`\`mD\\}',_binary 'a`\`mD\\}',_binary 'R4$BB̓T\C4cGM\P面','',0,'?'),(_binary '̫KghG&NoCdK','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Sandbox.php',0,_binary 'Aʎ\\\.\Η\U',_binary 'Aʎ\\\.\Η\U',_binary '\Nu%2\,,W,$\\\\R,','',0,'?'),(_binary '4\-b^uh\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Staging.php',0,_binary 'N;\ɘE\2]M',_binary 'N;\ɘE\2]M',_binary '3P}\\>\\\n\ZKTz&\\4\\`F','',0,'?'),(_binary 'LZ򷉘{H\"\&\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/StringLoader.php',0,_binary 'LͻaX\I,?\',_binary 'LͻaX\I,?\',_binary 'y]\\\s&\\\\\nV0\9DC\)0\K','',0,'?'),(_binary '\>\oL7\%\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension.php',0,_binary '\Z\r)I\L!-/\tn',_binary '\Z\r)I\L!-/\tn',_binary '@+\\\\I\8SYouv|','',0,'?'),(_binary '\z	\#-\Rj?','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/ExtensionInterface.php',0,_binary '\fs\\le|_',_binary '\fs\\le|_',_binary '\ZQ\"\\\M\\:\\v\\\e~\n7(F','',0,'?'),(_binary '\5jJ\HP\"','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/FactoryRuntimeLoader.php',0,_binary '\֭0k\m\>\\,\',_binary '\֭0k\m\>\\,\',_binary 'HEE\\"Z[nhv\Fj\\'\\в܅y<','',0,'?'),(_binary '\N\Q3ޘ\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/FileExtensionEscapingStrategy.php',0,_binary '#s!A\',_binary '#s!A\',_binary 'B\S\ZW\c\]MqFD,\F~\ro\J\\\','',0,'?'),(_binary 'fHж\;\\M:','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Filter/Function.php',0,_binary '1T\\D\g-l',_binary '1T\\D\g-l',_binary '\x(\6\\\\Ń\[&\|\s{\','',0,'?'),(_binary '\\EeL:<,3\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Filter/Method.php',0,_binary '\L\\$c<:e',_binary '\L\\$c<:e',_binary 's28\\\S\\\}TF}G\n\lţ','',0,'?'),(_binary 'i\'}<VA\ϟ(\*','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Filter/Node.php',0,_binary '\\{\FE\\%',_binary '\\{\FE\\%',_binary 'DstE![jQ%VC=OLc˄V','',0,'?'),(_binary '\\-mpȚ\\1\\'\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Filter.php',0,_binary 'a\iQ\I/E',_binary 'a\iQ\I/E',_binary '\\m\I/]\W\\\<19k/','',0,'?'),(_binary '\Φ\&D\\n,8','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/FilterCallableInterface.php',0,_binary 'Ҟ~T\I\\\_!r',_binary 'Ҟ~T\I\\\_!r',_binary 'x$\䞶6\h\óc\Pu/\*','',0,'?'),(_binary '[<+\\/\K\\B','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/FilterInterface.php',0,_binary 'm|wO;\\\]',_binary 'm|wO;\\\]',_binary '`^\\9.:}4\(a+`\\q','',0,'?'),(_binary 'W\N*mF_','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Function/Function.php',0,_binary 'uM\U\n\Z\م1D\0',_binary 'uM\U\n\Z\م1D\0',_binary 'ka\\\Hg2xN|Ξ\y\T\:\N','',0,'?'),(_binary 'ml7iܶ\ \0\4','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Function/Method.php',0,_binary 'O\\hPSR\5\',_binary 'O\\hPSR\5\',_binary '\t,\\t]\\O_\5\\\\0\{U\0','',0,'?'),(_binary '\ܝ\\\gO','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Function/Node.php',0,_binary 'zRAy|Ib',_binary 'zRAy|Ib',_binary '\\+\ʞ\\\f\}\\g,PG嫶y\','',0,'?'),(_binary '\no/Э$ꟍ\,\\"','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Function.php',0,_binary 'ev1\\צ7:\\',_binary 'ev1\\צ7:\\',_binary '\y+\!\\\\b\\F\\YJ\\\','',0,'?'),(_binary '\iD<0]\8:F\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/FunctionCallableInterface.php',0,_binary '\`u12@\\d\',_binary '\`u12@\\d\',_binary 'VYVgHs`\\ާP\A\5:SM\','',0,'?'),(_binary '#\\<r\\\s\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/FunctionInterface.php',0,_binary 'Mxݶ\;Z\ֻ',_binary 'Mxݶ\;Z\ֻ',_binary '\ \\i8\O\ה\^94\\nR\δ','',0,'?'),(_binary 'gJ \\\"\x','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Lexer.php',0,_binary '\B\\\0\"\n!',_binary '\B\\\0\"\n!',_binary '6\\s&\\n\g\\C!saorҟ\D>','',0,'?'),(_binary 'o	 e\n(\ۼ','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/LexerInterface.php',0,_binary '\td\\Z(}C\',_binary '\td\\Z(}C\',_binary '\.;Th\n\}*q\aW(p\\0\\㴭\\>\','',0,'?'),(_binary '޿@[6\[\wE\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Loader/Array.php',0,_binary '@P\\"N\\\\IA\]',_binary '@P\\"N\\\\IA\]',_binary '>\M^\ui]\>LA\0*XqUmy\K','',0,'?'),(_binary 'M{\vT\Z@\*[7','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Loader/Chain.php',0,_binary '-\}_д.J\'0X',_binary '-\}_д.J\'0X',_binary 'xB\A]\Ql5Rz5\'+q|','',0,'?'),(_binary ']\1XhS\:','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Loader/Filesystem.php',0,_binary '\&ը\\)\yH(\"a',_binary '\&ը\\)\yH(\"a',_binary 'PR̀\ڸmv\*\Do','',0,'?'),(_binary 'I\&\\\h\C','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Loader/String.php',0,_binary 'YBhlR\H\0',_binary 'YBhlR\H\0',_binary 'C\T\_A\!wP8.E+D!@\\','',0,'?'),(_binary 'n\\b\W۹S\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/LoaderInterface.php',0,_binary 'iPN\n\\k\\n',_binary 'iPN\n\\k\\n',_binary '\dSb\W]\x\?\xM\Y','',0,'?'),(_binary '\aEv˩\	Wk\[\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Markup.php',0,_binary '\Iɻ^L%',_binary '\Iɻ^L%',_binary 'x\DK\oUQ53\\\?ip\oL\\.7','',0,'?'),(_binary ']\a)0gpq|\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/AutoEscape.php',0,_binary '3wb#s\79',_binary '3wb#s\79',_binary '\\XfX3\n:ת\܂\i\b?\|m\r\'','',0,'?'),(_binary '\}\\㬡\\SQ#','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Block.php',0,_binary '\C(#x|k\}\',_binary '\C(#x|k\}\',_binary '񿲄U\	B\\jMR\	 ,AAF^g\\','',0,'?'),(_binary '\\\\\n\\Ke\1','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/BlockReference.php',0,_binary 'Qb,5\2p~Yq\',_binary 'Qb,5\2p~Yq\',_binary 'G%W1H\@W\\Jl[6`a\\?@e\ ','',0,'?'),(_binary 'S\nkf\Y)\ڍA\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Body.php',0,_binary 'ϳ4\7\#qغENu',_binary 'ϳ4\7\#qغENu',_binary '\ZXZqM\۱%\gY\'#?67h\\\_','',0,'?'),(_binary '8sTD,\.\FURC	','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/CheckSecurity.php',0,_binary 'ۓ$\Y5N#\',_binary 'ۓ$\Y5N#\',_binary '\+!\\Q̂	H1D\\Y\h)','',0,'?'),(_binary '\\w\&pJ\m','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Deprecated.php',0,_binary 'Fo\\P\'ޯ@g\',_binary 'Fo\\P\'ޯ@g\',_binary 't?\\@\\٪D\\&C\R\'\\','',0,'?'),(_binary '\\Tei]g\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Do.php',0,_binary 'wp\Nf^\\;\',_binary 'wp\Nf^\\;\',_binary 'j ,\S\m*\'ֶ\/\\^z','',0,'?'),(_binary '\)p\'G\Gy.t','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Embed.php',0,_binary '\\\g\\Qѣ9\nK\',_binary '\\\g\\Qѣ9\nK\',_binary '	Ve A0\\<?\	B\\JL','',0,'?'),(_binary '\N`Fx\G\!]4\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Array.php',0,_binary 'Jə\pLϒn6,8',_binary 'Jə\pLϒn6,8',_binary 'C\\\\\؏.j 7,\YB\4z','',0,'?'),(_binary '\\'\\\j&>PI\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/AssignName.php',0,_binary ';d_\0\\H\',_binary ';d_\0\\H\',_binary '\\\	\\\\l\-<\^\wR:Zp:\\','',0,'?'),(_binary 'IA2\w1_hs\;Lf','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Add.php',0,_binary '͔\;eht\\\rV',_binary '͔\;eht\\\rV',_binary 'P&>v֯BWb:\Z\\','',0,'?'),(_binary 'B\絉SW_\k\9','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/And.php',0,_binary 'd\\'e|~`fD)\r4',_binary 'd\\'e|~`fD)\r4',_binary '\\UVs\x\\cjD\P\\WCW3\','',0,'?'),(_binary '\)fQ\H$Y]H\i','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/BitwiseAnd.php',0,_binary '<-C\l.%L,',_binary '<-C\l.%L,',_binary '4\1\hse\}g\Ǔ\\h\"uWce','',0,'?'),(_binary '~o%>ơ\n\\\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/BitwiseOr.php',0,_binary 'Cw\\\m9\',_binary 'Cw\\\m9\',_binary 'i7qֹ|!\m+|s\Y|*8\,4','',0,'?'),(_binary '-@FXσ	/׃2','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/BitwiseXor.php',0,_binary 'βɈnl\)!\W\',_binary 'βɈnl\)!\W\',_binary '2C\K< !\|RA\r2	=hꝢ','',0,'?'),(_binary '\D\%Rv7$\KL','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Concat.php',0,_binary 'q\?m|4ܮ\\3D',_binary 'q\?m|4ܮ\\3D',_binary '\6ӌ2`v\Z\My	:\a\','',0,'?'),(_binary 'ة\u\M6\V','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Div.php',0,_binary '\r0Ҵ\r\A\ۤw<_',_binary '\r0Ҵ\r\A\ۤw<_',_binary 'L\`\l\˂&)}\nwh\|:\>','',0,'?'),(_binary 'dʸw\.=\4}(k\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/EndsWith.php',0,_binary '\0Je[\\\',_binary '\0Je[\\\',_binary '|\\!\0>Ih\ǎ/v{)+b\u','',0,'?'),(_binary '\KF \N$3\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Equal.php',0,_binary '$c\#Шh\\',_binary '$c\#Шh\\',_binary 'Ч-ǹ!4*\,#f\Dwq\Ud','',0,'?'),(_binary '.\~.vI','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/FloorDiv.php',0,_binary '\\&)1p\"\\+',_binary '\\&)1p\"\\+',_binary '\Kٳ\\!>\%=\r>TB\E\\','',0,'?'),(_binary 'Iy#\]b\\Za}z+','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Greater.php',0,_binary '^H^km\SZF\\\',_binary '^H^km\SZF\\\',_binary '&˫+z=}9K]bӘ$P-\r\a\','',0,'?'),(_binary '2\\BF\g]X\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/GreaterEqual.php',0,_binary '\w\\x\+bp\Y\\',_binary '\w\\x\+bp\Y\\',_binary 'e\0\\\R|cw=\NE@8M묚','',0,'?'),(_binary '\7ԃP\QX;','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/In.php',0,_binary '\'\\rA-H{COi',_binary '\'\\rA-H{COi',_binary 'bS1ys\\>t\"([\\-)\\611`','',0,'?'),(_binary 'U\Z4[%','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Less.php',0,_binary 'h\ɻ	\j\g\r',_binary 'h\ɻ	\j\g\r',_binary '~Ka)%i>=\\v\\\','',0,'?'),(_binary '-d6\=ٴ\g\Mk','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/LessEqual.php',0,_binary '\I\*xah\n',_binary '\I\*xah\n',_binary 'SS\?\	59\ؠtXId_\m\','',0,'?'),(_binary 'PP;\\\ڂ\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Matches.php',0,_binary 'y\0~Y\\\m',_binary 'y\0~Y\\\m',_binary '\\\	9|$f\|9;','',0,'?'),(_binary '?\Z\0y\]H:X','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Mod.php',0,_binary '\|#\\\\\ԙ\]\',_binary '\|#\\\\\ԙ\]\',_binary '|RyƱ1f\#\{w$\\"','',0,'?'),(_binary 'E\7Y8$8W7L\I|','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Mul.php',0,_binary 'W\[Xg*boWeǳ',_binary 'W\[Xg*boWeǳ',_binary 'vy(\\\m׮XvҀtc\*','',0,'?'),(_binary 'Dpuy2#ƿe\!z\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/NotEqual.php',0,_binary 'G\0\|EK\\',_binary 'G\0\|EK\\',_binary 'H?i?sʭ\\\9\,D/i)aJeJ','',0,'?'),(_binary '|v׶u\:\_h\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/NotIn.php',0,_binary '5\\U\\\|3',_binary '5\\U\\\|3',_binary '\hܧ\\C\\\\\n\\,\mZֽ\Z','',0,'?'),(_binary '\sen\\w\n\\b<ȍ\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Or.php',0,_binary '1	>\[Yn*	QG',_binary '1	>\[Yn*	QG',_binary 'D\\⦊dK)HB\"QMT\^\\C$','',0,'?'),(_binary '\\\\c\]@b','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Power.php',0,_binary 'r\b\=,8a_\L',_binary 'r\b\=,8a_\L',_binary '@y2lw6`I\\i\\\*D\	/tU=U','',0,'?'),(_binary '\'*\x[Xz\0=','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Range.php',0,_binary 'Eӂ\"\7\:zx\',_binary 'Eӂ\"\7\:zx\',_binary '@qV:R\B2Bq\,\qc\[Q','',0,'?'),(_binary '姷8٢2JY\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/StartsWith.php',0,_binary 'I2֣x\\ے',_binary 'I2֣x\\ے',_binary 'λ\\\@1\\QQ\Cs\9ӓߺh\j','',0,'?'),(_binary ';V\C\(*#m','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Sub.php',0,_binary 'W\\\BZ\h廚',_binary 'W\\\BZ\h廚',_binary 's&lf\\7\$BiFO6\A\n\K=\','',0,'?'),(_binary 'k \T /\m\@,\-\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary.php',0,_binary 'Ywq+)f\\',_binary 'Ywq+)f\\',_binary '\6y:\0\Q9*B\)fv	\A\"','',0,'?'),(_binary '\07ƇNSz\|','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/BlockReference.php',0,_binary '\n\\>K~kla\h[',_binary '\n\\>K~kla\h[',_binary '\j\wup\r\\*o\DHma','',0,'?'),(_binary '~\/\&zK7\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Call.php',0,_binary '\u_lxw\\\@֩U',_binary '\u_lxw\\\@֩U',_binary '\\WV\!\\u*3G+^\\_;ퟍ','',0,'?'),(_binary 'Q\\ri\u;','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Conditional.php',0,_binary ']m/<T\\Ɖq=',_binary ']m/<T\\Ɖq=',_binary '\`\֭\[\8ch\\r>5-%P\\V\t','',0,'?'),(_binary 'ª;x>V\\rzc\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Constant.php',0,_binary '}؎XFyiI\L\',_binary '}؎XFyiI\L\',_binary 'C|Տ\ER\\ nr\&xI%\0q','',0,'?'),(_binary '\<{\S\\\B?','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/ExtensionReference.php',0,_binary '2ߒ$望\r7p',_binary '2ߒ$望\r7p',_binary 'M\j\]S\`PnѮh\','',0,'?'),(_binary '9*:_\U3\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Filter/Default.php',0,_binary 'BÂLk4oآ}M\B',_binary 'BÂLk4oآ}M\B',_binary '-\\N\\\c\l\`_\\\%\a{V\n\@','',0,'?'),(_binary '\\\"PV5\)W\>\<','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Filter.php',0,_binary 'dT\\g\3\pn	Y)\',_binary 'dT\\g\3\pn	Y)\',_binary ' \\(RWZuep_\I\`w\|xv','',0,'?'),(_binary '\rC=V\k','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Function.php',0,_binary '\\,S\u%B\\Z_',_binary '\\,S\u%B\\Z_',_binary '\B#kႿÑ\^>$fXҦn$o\n]','',0,'?'),(_binary '(@f_','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/GetAttr.php',0,_binary '+\\'L\\\'KQ',_binary '+\\'L\\\'KQ',_binary 'TP-RoԒQ:v\npyڲN݈/:q','',0,'?'),(_binary '(V5\O\0y','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/MethodCall.php',0,_binary '=lept\4\C\\ҫ',_binary '=lept\4\C\\ҫ',_binary '`Np>A\\\\쪊\\\s8*\\','',0,'?'),(_binary 'rv|\jنu','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Name.php',0,_binary '\\N,\Q\\h\',_binary '\\N,\Q\\h\',_binary '\1*ؘLv˫Lea\7\\\5<(\\','',0,'?'),(_binary '\\r>\0\N\\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/NullCoalesce.php',0,_binary '\\=(\!\\\',_binary '\\=(\!\\\',_binary '\'\\\+j*\;1k:0<(E7PtU','',0,'?'),(_binary 'q\lz\\P\'\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Parent.php',0,_binary '\fӋ \',_binary '\fӋ \',_binary '+\[DV\M\:هNpH\\\\L\[\\\=\','',0,'?'),(_binary 'q~0\[\\Ԭ4','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/TempName.php',0,_binary '8{J)\\K\?\Z\\',_binary '8{J)\\K\?\Z\\',_binary '69H&)\r]4@R\\V\rs','',0,'?'),(_binary '\w\1Q#\A\z#\%','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Constant.php',0,_binary '\\ӡP7_W֛\',_binary '\\ӡP7_W֛\',_binary 'pYbȪ\-\\\E\\"\nl\"a','',0,'?'),(_binary '-\bc\WE\\H','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Defined.php',0,_binary '\\#$\sԮ\\',_binary '\\#$\sԮ\\',_binary '\\oH\p&\\\qW\\\Rꭃ4)\','',0,'?'),(_binary '`jKFG\]\\Z7]','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Divisibleby.php',0,_binary 'D\!\4\p\\\"\',_binary 'D\!\4\p\\\"\',_binary '\pH:Ba=%\Yp80\"e4f\w','',0,'?'),(_binary 'ߝ^l\\Xd0\Qg','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Even.php',0,_binary '|B^\'\',_binary '|B^\'\',_binary 'j6ۈ\M\?=A^lz{\u3','',0,'?'),(_binary '\o4\ms!sI\ӫ','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Null.php',0,_binary ':v,PQ/8',_binary ':v,PQ/8',_binary 'XK$cn;,s5:\n\\Mzh\n4','',0,'?'),(_binary ':)\[\\r\0H\\ZG','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Odd.php',0,_binary '\\IKW.6\\L',_binary '\\IKW.6\\L',_binary '@_ZX?@\{y\\(V&@S~5]YH','',0,'?'),(_binary 'T\'I\~tȬZ','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Sameas.php',0,_binary '\b\\t⻟\A:<',_binary '\b\\t⻟\A:<',_binary 'z\\_\Z\$<\F\=\|(\\5ތ','',0,'?'),(_binary 'AA:}E\0\ZGxd','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test.php',0,_binary 'oGDW+`OH\X',_binary 'oGDW+`OH\X',_binary '48{)\ѐ\^\\T=\2B\e>E|A','',0,'?'),(_binary '<\\\rTfy#\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Unary/Neg.php',0,_binary '<,\_Et̕w',_binary '<,\_Et̕w',_binary 'OXGA\\$rwj\E{\\VՇ\\','',0,'?'),(_binary '\[ePO\@\3\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Unary/Not.php',0,_binary 'u\DTIYX',_binary 'u\DTIYX',_binary 'cd\]ΗH\\\o\\n|\6z\X(\','',0,'?'),(_binary '\D3\9!2]&\_','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Unary/Pos.php',0,_binary '(v1q\\\/Q&׎\\rg',_binary '(v1q\\\/Q&׎\\rg',_binary 'BoȳP\b~\i\;\kek	\FO','',0,'?'),(_binary 'n\1t+[\\2f','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Unary.php',0,_binary '\ZU73\S\J\<',_binary '\ZU73\S\J\<',_binary 'ͺ\<*\pfV\Z2|\ӣ$\HN$b	N,G','',0,'?'),(_binary 'P\mO\\\\6','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression.php',0,_binary ':\z\7،_7\\G',_binary ':\z\7،_7\\G',_binary '\{\4\\Hzy%e\\\V\4\&w','',0,'?'),(_binary 'v\\\qcD\cT\b','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Flush.php',0,_binary '	jHUʽ)\\\',_binary '	jHUʽ)\\\',_binary '\_1̽ 82ܷCV\\ʫ	ģTL','',0,'?'),(_binary 'S5#\X>gvj','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/For.php',0,_binary '3\\E\0F\\ܶ\',_binary '3\\E\0F\\ܶ\',_binary '\\2\r\HsDh8~pD#?\','',0,'?'),(_binary 'TYKz\\Bj\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/ForLoop.php',0,_binary 'T\m\yU.-fڈ&',_binary 'T\m\yU.-fڈ&',_binary '\\`~\B\^D\TV\0i8	]\LR\','',0,'?'),(_binary 'Ϧ\\Z8\0GĦ7i*L','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/If.php',0,_binary 'JWKR&	wncOaS',_binary 'JWKR&	wncOaS',_binary '\\\\u\0L0\\\0P*G%Rl;Us)@\}F','',0,'?'),(_binary '6c\nQհ,\\R\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Import.php',0,_binary '/Q\\Z\ov\\e+Y',_binary '/Q\\Z\ov\\e+Y',_binary 'k\\Er\o3\\/[)\\Kh-x','',0,'?'),(_binary 'rI^\\\'\0{>b','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Include.php',0,_binary 's@w&P\\\$(\,\',_binary 's@w&P\\\$(\,\',_binary '/*\{؅?w@\\ͭ\\\[͸[y\\v\','',0,'?'),(_binary '=tg\0\\V\I','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Macro.php',0,_binary '!4w/E\{\',_binary '!4w/E\{\',_binary 'Q\Q\a\Tܿ\fc̣%\\\[','',0,'?'),(_binary 'SM[[\(\P','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Module.php',0,_binary 'G_n\=},{C봔',_binary 'G_n\=},{C봔',_binary '(qv\+\\¢wt,*c\,zǧ%\0\f\\\n','',0,'?'),(_binary '#&\ZB1~tc)TmW','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Print.php',0,_binary '}!.,<\˵\"\\\r',_binary '}!.,<\˵\"\\\r',_binary 'yf /2\$C\Z\8\\tX:~1\\nhF\','',0,'?'),(_binary 'M*2kxL\(\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Sandbox.php',0,_binary 'fҷ\mcgHr\',_binary 'fҷ\mcgHr\',_binary '\\\Cet5\\\bFɩDTI\a\\','',0,'?'),(_binary '\\Y3d+d\Y]','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/SandboxedPrint.php',0,_binary '\'K5\e',_binary '\'K5\e',_binary 'zײ\|R)yW\"E\%\j}z\K','',0,'?'),(_binary 'ژS+\'\\KNV','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Set.php',0,_binary '\4]ww\xb\',_binary '\4]ww\xb\',_binary '\\}<\?\\v\MO޳/ַ','',0,'?'),(_binary '8\rg\PWAv9','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/SetTemp.php',0,_binary '_K&\\x\\\\\',_binary '_K&\\x\\\\\',_binary '\\[Pb\\\ld%\Ă\\'J\M@','',0,'?'),(_binary 'I\y^JN\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Spaceless.php',0,_binary '\s˝-z7\=\',_binary '\s˝-z7\=\',_binary '&W\ʍLV\1\\D\	','',0,'?'),(_binary 'K٤B*Q}e~]xE','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Text.php',0,_binary '	r\&5=?$\ʯT',_binary '	r\&5=?$\ʯT',_binary '\\'87^\c\\W\s\;2/б\','',0,'?'),(_binary 'V\qAL\\u\)\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/With.php',0,_binary 'O\Xe\\\翪L\\',_binary 'O\Xe\\\翪L\\',_binary 'r\"X^i\rFlh],w','',0,'?'),(_binary '\_hgl\6\/;{','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node.php',0,_binary '\\\ZA\\',_binary '\\\ZA\\',_binary 'D\\\!\FV\\%:\n\JPZje\N','',0,'?'),(_binary '~%KЂ\r{\IQ~R','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeCaptureInterface.php',0,_binary '\Z\\Q\9\"H\P',_binary '\Z\\Q\9\"H\P',_binary 'G\\I/,l8\q\z`]Dv\;','',0,'?'),(_binary 'IM\\\\Sj','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeInterface.php',0,_binary 'Y2\'\(l\Z\˃y',_binary 'Y2\'\(l\Z\˃y',_binary '*Olp\=]\\l4>P \}J\X\Z0\','',0,'?'),(_binary '\\Ý\\ShO?(-','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeOutputInterface.php',0,_binary 'g\Nq)*˖~',_binary 'g\Nq)*˖~',_binary 'f\X\\ΦѺK\@;]\w\\nv','',0,'?'),(_binary '\\\5w4rLB\n<·=','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeTraverser.php',0,_binary '\Er\"\{',_binary '\Er\"\{',_binary 'FdX\	\\\\\y#&>F\','',0,'?'),(_binary 'f_JXRohΪ\P','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeVisitor/Escaper.php',0,_binary '|\?x,E\ѽ6\\\',_binary '|\?x,E\ѽ6\\\',_binary ')gJb0\Z*%iwsɇ5\\','',0,'?'),(_binary '\Z&+w{[Pt:','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeVisitor/Optimizer.php',0,_binary '\֖6\@`V\\n\s',_binary '\֖6\@`V\\n\s',_binary '\\.N\V\jknq\"\0\/]^?kT\\','',0,'?'),(_binary '\\G\'oB*	!ο','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeVisitor/SafeAnalysis.php',0,_binary 'G\o\e\n#\\R}',_binary 'G\o\e\n#\\R}',_binary 'Zy\2\rwpK\TI\0H=t(U	\\\','',0,'?'),(_binary '쵔3\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeVisitor/Sandbox.php',0,_binary '\c\ (JBO\\',_binary '\c\ (JBO\\',_binary '7F)%0\N\rX6:AX}\\W*','',0,'?'),(_binary '\\_<=Wq\`\3\_`@','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeVisitorInterface.php',0,_binary '\\7g0\Z^',_binary '\\7g0\Z^',_binary ';ҫ\\,nm\\\<>?\!=\%!W\t\','',0,'?'),(_binary 'ċ\\l@0O\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Parser.php',0,_binary '\J\vo\Ĕ\\2-',_binary '\J\vo\Ĕ\\2-',_binary '\wg\\\\\b\\nh0Zc\\59Qa\','',0,'?'),(_binary 'Ar\.\X\0\F~\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/ParserInterface.php',0,_binary '{V#\d\J31\',_binary '{V#\d\J31\',_binary '銄\IYwn\O!7\a\L5\S9N','',0,'?'),(_binary 'm\=\ZOO<h','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Dumper/Base.php',0,_binary '%\,;JrKKQ_\\\\',_binary '%\,;JrKKQ_\\\\',_binary '8G\\K\\\\!q	2\?\\G','',0,'?'),(_binary '\(\]ĳ	Wn','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Dumper/Blackfire.php',0,_binary '\\>\!c\\\\7',_binary '\\>\!c\\\\7',_binary '!G;\M0▣ƕq(;\\W','',0,'?'),(_binary '\x\Gr\\K\<q\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Dumper/Html.php',0,_binary 'r\\>6\rIXX',_binary 'r\\>6\rIXX',_binary 'ZM\\m̸\	\	AI\V?_','',0,'?'),(_binary '1 \\ͽ_\pI\r6','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Dumper/Text.php',0,_binary '7o\vH\ퟻI\',_binary '7o\vH\ퟻI\',_binary 'Ÿ\*V\\rK:ʏ2S\gպ!x','',0,'?'),(_binary '\\U\P\ʍIL\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Node/EnterProfile.php',0,_binary '\\'yq}8`[ԁ',_binary '\\'yq}8`[ԁ',_binary 'f\\Uy\]	)\G\`','',0,'?'),(_binary ':\EޮAFK?\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Node/LeaveProfile.php',0,_binary '\7Ohy@\\ľ5\',_binary '\7Ohy@\\ľ5\',_binary '\ë\scs\{\n.*tj_\','',0,'?'),(_binary '&sE\ѯ\\\'K','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/NodeVisitor/Profiler.php',0,_binary 'dX+6C',_binary 'dX+6C',_binary 'BayA|8t\\\63=y8\\Zӗ','',0,'?'),(_binary '@\%r>d\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Profile.php',0,_binary '\\\\\0\nB\3ݽ',_binary '\\\\\0\nB\3ݽ',_binary 's){	\zif}r4=R\l\Q\)\QY','',0,'?'),(_binary '/G\ұ<+f:p@','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/RuntimeLoaderInterface.php',0,_binary 'qE\$%\\\X{3p',_binary 'qE\$%\\\X{3p',_binary '\\]hP\\F\\\Ǌ\ZpG/\:;-','',0,'?'),(_binary ',`S\Kl9\n%','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityError.php',0,_binary 'r. hdm\\)R',_binary 'r. hdm\\)R',_binary '\ZO@*r\i\\"SX\\nPl\','',0,'?'),(_binary '3T\wbH|F\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedFilterError.php',0,_binary '\\y\fX\\\',_binary '\\y\fX\\\',_binary '\a\]l\)\0<i\ZI&U`M\\\','',0,'?'),(_binary 'Ă\{e\r','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedFunctionError.php',0,_binary '_\Z<	\0A4EV',_binary '_\Z<	\0A4EV',_binary '2xh\n{j\%T;\\YifY\','',0,'?'),(_binary '\\"\\v~\VV\Z\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedMethodError.php',0,_binary '\*|d|\\\\'\Z',_binary '\*|d|\\\\'\Z',_binary '\e\r1\0u\\@\r\*I\&\EI9z\','',0,'?'),(_binary '\&f\L\<:\(','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedPropertyError.php',0,_binary '\\b\`\kF={\',_binary '\\b\`\kF={\',_binary '\6jϻ_-{TVƧ\JT64&\r\','',0,'?'),(_binary '9\=dˁ8m@\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedTagError.php',0,_binary '\g8F\qAw',_binary '\g8F\qAw',_binary '`t\RM>^\A.\wK\\\K\dp','',0,'?'),(_binary 'q\\0%_d\n8F՚','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityPolicy.php',0,_binary '\DEr9/\Z',_binary '\DEr9/\Z',_binary 'AC\xjy\J\\d+JeE$g),;O\p\','',0,'?'),(_binary 'pqv\\Z<<Vg','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityPolicyInterface.php',0,_binary '[FFu\$PR\%',_binary '[FFu\$PR\%',_binary 'x\&\d\\N\|,g$t9Cƶ','',0,'?'),(_binary 'c\\]L#QCs}-','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/SimpleFilter.php',0,_binary 'd`Z4rZi;e',_binary 'd`Z4rZi;e',_binary '\gd\x_\\<$梻x\sX	>','',0,'?'),(_binary '23Q\\@','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/SimpleFunction.php',0,_binary '1sїg\5I\Yk\',_binary '1sїg\5I\Yk\',_binary 'q\\DZR;\9f\"\<\\\F\\MEH\'','',0,'?'),(_binary 'pd\0\ypAa9;tU[','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/SimpleTest.php',0,_binary '	8\\\\|`Kr\\\',_binary '	8\\\\|`Kr\\\',_binary '\@ـ(I=]\eݨnh?\\[X\\','',0,'?'),(_binary '\\7RMI]qG\1','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Source.php',0,_binary '(Db	`\\E\D\'',_binary '(Db	`\\E\D\'',_binary '\Hϻ\0\|`\\ƃ	h2/ѐ\Z\','',0,'?'),(_binary '\Q˿\RL\'\'','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/SourceContextLoaderInterface.php',0,_binary 'kIO\C,\\\ƀ',_binary 'kIO\C,\\\ƀ',_binary '\Z-\ZS\ZQbwHL݇\P\ǵMm\','',0,'?'),(_binary '_\^B\9\z_G=\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Template.php',0,_binary 'k\yUs\\\/\\\O',_binary 'k\yUs\\\/\\\O',_binary '*PU\\_\0P\X\J\D諚\\\\','',0,'?'),(_binary 'vE\\\0','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TemplateInterface.php',0,_binary '\\\ջc=݆\]',_binary '\\\ջc=݆\]',_binary '-%\\\xh\[!QNJ1\X#\','',0,'?'),(_binary '\Wu\7Uݼq|','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TemplateWrapper.php',0,_binary 'CAΓD]R(qT',_binary 'CAΓD]R(qT',_binary 'Xܓ`@\f\у3\9:\0G%\r8\r\^\!\','',0,'?'),(_binary '\\/\"88(f%','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Test/Function.php',0,_binary '\<^\\',_binary '\<^\\',_binary 'x/qb\C<Q$\,\ep$\\\','',0,'?'),(_binary '6\QG\\\A\n0','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Test/IntegrationTestCase.php',0,_binary 'Q\r\x\)\}',_binary 'Q\r\x\)\}',_binary '\\\"<J\:ZKelFph\ͤ\\','',0,'?'),(_binary '\(\3/U!Mov','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Test/Method.php',0,_binary 'i!iE>\"n',_binary 'i!iE>\"n',_binary 'K^5%@]\\ZeL\\\\\@̄z','',0,'?'),(_binary 'z*\0r1\\T','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Test/Node.php',0,_binary 'G6]*\}G\:',_binary 'G6]*\}G\:',_binary '%P&\7cH\i6%ùh\n-\Z&A\','',0,'?'),(_binary '9q`EFPW/','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Test/NodeTestCase.php',0,_binary 'ۡ|jªJ\{\)آ',_binary 'ۡ|jªJ\{\)آ',_binary 'R\YEFT%\\>\Ę0s*\m','',0,'?'),(_binary '\N\\@\\j','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Test.php',0,_binary '\.cy\\Ƒ\o\',_binary '\.cy\\Ƒ\o\',_binary 'cւ\'x\\0a!Z\Rf\?\"C\X','',0,'?'),(_binary 'zdy2^\;\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TestCallableInterface.php',0,_binary '#\'Gf\0ς+',_binary '#\'Gf\0ς+',_binary 'G۬ou/Q#I\\={܋\o3*f','',0,'?'),(_binary 'A\\\jG\Z\!-eP','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TestInterface.php',0,_binary '\P`|FŨy\@\,\'',_binary '\P`|FŨy\@\,\'',_binary 'ٺS.\\8\e\\,0<Ay\\Ǹ','',0,'?'),(_binary ';g|{\envYI','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Token.php',0,_binary 'ӫe$E֢\DLU\'OB',_binary 'ӫe$E֢\DLU\'OB',_binary 'AtL3\r\nu</ 3O\\\n\9\|9','',0,'?'),(_binary '1b\i\\5\'','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/AutoEscape.php',0,_binary ')D\-ؠ\\\\',_binary ')D\-ؠ\\\\',_binary '^9\Y\c\\	bdf̫|F\\\\K','',0,'?'),(_binary 'h@\a.ʜ9	','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Block.php',0,_binary '4.\v3FIJ\\B',_binary '4.\v3FIJ\\B',_binary '$}`\sV\0\C\0C	%S\"\n\\\','',0,'?'),(_binary '*BaKYֻҷSE','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Deprecated.php',0,_binary 'o\eo\ZҶ]',_binary 'o\eo\ZҶ]',_binary 'd\u\Z\\b^፿`܁5;1\\\W[*','',0,'?'),(_binary '\` 3=/\b0','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Do.php',0,_binary 'm	]̾Ba\',_binary 'm	]̾Ba\',_binary '8Æ\Zd\)\\\\\\\wZMV\\\\ey\','',0,'?'),(_binary 'P\#q@z<FM\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Embed.php',0,_binary 'I^\\*\\',_binary 'I^\\*\\',_binary '\9m;q\(&6,.\	F\,','',0,'?'),(_binary '\e_Il̀	1\d~','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Extends.php',0,_binary '4Nj\X\\jܗ',_binary '4Nj\X\\jܗ',_binary '\q	o\n+cW\5lM\\\'\f','',0,'?'),(_binary '\\r\\\8>/}.\Z\9\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Filter.php',0,_binary 'UH}\"E\5	\g',_binary 'UH}\"E\5	\g',_binary 'x]3l^6\xUbw\\\T.N6d|L\7','',0,'?'),(_binary '˗R)ӭ\Z-\"\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Flush.php',0,_binary 'Vuu\w\S^m\,\',_binary 'Vuu\w\S^m\,\',_binary 'o,\\[9\[HcK\9\yv/\5)!','',0,'?'),(_binary 'HG䪏v\k\]P','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/For.php',0,_binary ']\6\8\\\',_binary ']\6\8\\\',_binary '^\9\E\T\A,Y_u2|>','',0,'?'),(_binary '~\A؋F(ODe\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/From.php',0,_binary 'Ds4\gҳ1\'-',_binary 'Ds4\gҳ1\'-',_binary '8\rJ\\\"{o\\^~fqp\\k','',0,'?'),(_binary 'ZW6+Z\DeX','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/If.php',0,_binary '[H\'Զp\҃-',_binary '[H\'Զp\҃-',_binary 'F\$;xO5ˠ\\G\G/z͉}','',0,'?'),(_binary '`ߑ\{c4\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Import.php',0,_binary '\r\Ш\Cd\бON\',_binary '\r\Ш\Cd\бON\',_binary '\\f(\"5\\r\N\\>k&t\N˱\','',0,'?'),(_binary '\\^.\9nR\\]','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Include.php',0,_binary '\n#b\\\\B',_binary '\n#b\\\\B',_binary 'ܑz\7\I쌇18\(4%\\','',0,'?'),(_binary '1:۷ج','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Macro.php',0,_binary '\\\!sS\\T-',_binary '\\\!sS\\T-',_binary '\1ƿWNL\Ҫ;@\0\۵o\W)\n','',0,'?'),(_binary '\1\mVb\%^.~\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Sandbox.php',0,_binary ')h\\ʋ4b?K2',_binary ')h\\ʋ4b?K2',_binary '\ 2%\5eVR\}\Lz\0VE\','',0,'?'),(_binary '=U	\X\\\n\\$\\J','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Set.php',0,_binary '\\M6B  p\mys',_binary '\\M6B  p\mys',_binary '!5N\\\'\t:\\8\Ԑ\\44e','',0,'?'),(_binary 'k\nM\\\\A\ȕ!','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Spaceless.php',0,_binary '!\\\ni',_binary '!\\\ni',_binary 'Y\C\X}N\njwҩGwM	\3\*9,','',0,'?'),(_binary 'bI\0JϹ\>w\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Use.php',0,_binary '\$\0%\\'/L',_binary '\$\0%\\'/L',_binary 'c&]+\n\I(0\?D8\'zK\\i','',0,'?'),(_binary '\bfaqvƮ;\\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/With.php',0,_binary 'g]\׈H\Q\',_binary 'g]\׈H\Q\',_binary '֪\GlA{H\Z]_\:&,\00','',0,'?'),(_binary '4NJ\@_O','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser.php',0,_binary '\\n\ԼL\qx@',_binary '\\n\ԼL\qx@',_binary '\1L\\c\+A\t\N\M\s\nN\Z','',0,'?'),(_binary 'zQ\ODX`)\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParserBroker.php',0,_binary '98 \H1tr7̝',_binary '98 \H1tr7̝',_binary '\}7h\o\ށ\0\\";#6ti\lQG','',0,'?'),(_binary '\܈\GLb2\\mmT','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParserBrokerInterface.php',0,_binary 'DM*ȥT\SP\\',_binary 'DM*ȥT\SP\\',_binary 'XTH\r\\@\rڼǮ\[d2I\\b\','',0,'?'),(_binary '&\%<ĪF','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParserInterface.php',0,_binary '\rD\!H\,\S\0',_binary '\rD\!H\,\S\0',_binary 'f\x^=l\N	l\o7.+>hC-\','',0,'?'),(_binary 'ļn\Ĵ\|\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenStream.php',0,_binary '\.\efp\\nksK',_binary '\.\efp\\nksK',_binary ';>\v%!\tkt\*\\\A\\d*','',0,'?'),(_binary 'dwL\Z\&-6͑p\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Util/DeprecationCollector.php',0,_binary '\ \Ff|P',_binary '\ \Ff|P',_binary 'dn0[ֻ\\eZ4e&:L\?\s,GKS','',0,'?'),(_binary '\Fi`ކ\-\','wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Util/TemplateDirIterator.php',0,_binary 'u+{>\|\s',_binary 'u+{>\|\s',_binary '\,\?s\m🩸\\z2\+T}\0n','',0,'?'),(_binary '٭\'INu]\r7K\P*','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Cache/CacheInterface.php',0,_binary '\ kW\iΏ\\Z',_binary '\ kW\iΏ\\Z',_binary 'W\\\\v\\U\\\T\`hU\ؗ&','',0,'?'),(_binary 'v\:\LkU','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Cache/FilesystemCache.php',0,_binary ' \\\9\TzX\',_binary ' \\\9\TzX\',_binary ',Nw&v\\B-nAS֩\VҀ\-V\\','',0,'?'),(_binary '%`4)\^\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Cache/NullCache.php',0,_binary '\\\D\k(\ڞ',_binary '\\\D\k(\ڞ',_binary '\ܗ	*\\ݲr0jOI@Z\Z?Cb&I>','',0,'?'),(_binary 'yTj\u\5J\\J\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Compiler.php',0,_binary 'G\\,ӻE',_binary 'G\\,ӻE',_binary '\8\Y\Pq(\j\\uC\\t','',0,'?'),(_binary '\\=\O8ƒ\b','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Environment.php',0,_binary '\N:h{\f\n5(p',_binary '\N:h{\f\n5(p',_binary '%з\-$`]%\\\\\νtR-!)\gi','',0,'?'),(_binary '\0Ol\I\SJ>\ÁX','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Error/Error.php',0,_binary '|@o\IltB',_binary '|@o\IltB',_binary 'zLp:l]\ZqTK\<R\Un>O\\0\','',0,'?'),(_binary '\TaGzTŚ-\L','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Error/LoaderError.php',0,_binary '\\\ʮ&s\y\\d',_binary '\\\ʮ&s\y\\d',_binary '\V\;D2\\\@P\n2\-#\z','',0,'?'),(_binary 'FO!Yc\/9x\	','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Error/RuntimeError.php',0,_binary '\\?\q@AL',_binary '\\?\q@AL',_binary 'S\c\\](;\Z<!\'y\\\7ی=','',0,'?'),(_binary '(!c\"U\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Error/SyntaxError.php',0,_binary '~<BA\t&g1\b\0',_binary '~<BA\t&g1\b\0',_binary '\\\\\IRR;I\d^!fQ=N+.d\\','',0,'?'),(_binary 'ϽL n6Ù\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/ExpressionParser.php',0,_binary 'fA̰\\\}\z\}U',_binary 'fA̰\\\}\z\}U',_binary '\/A\h:\\u\\bZzu~EF\','',0,'?'),(_binary '>uM\)܃\l','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/AbstractExtension.php',0,_binary '\Z9V}\\Wl8)',_binary '\Z9V}\\Wl8)',_binary 'j;\rlk\_u\\{zIZRM\2\\\\;\','',0,'?'),(_binary 'd\\\9\Z\`%o\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/CoreExtension.php',0,_binary '<<\5v\-<6\',_binary '<<\5v\-<6\',_binary '\\\]ƨJqeɉ\\\>#ќEnT','',0,'?'),(_binary '\Bgo\<\\r	','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/DebugExtension.php',0,_binary '\r?\r\O9=s\k',_binary '\r?\r\O9=s\k',_binary '<P\\C74\=4I\0>n\','',0,'?'),(_binary 'V[\!1\8\t','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/EscaperExtension.php',0,_binary '@\J6^',_binary '@\J6^',_binary 'x%^{	\.`\;Ml\ҫƭH\\>','',0,'?'),(_binary '~\hr95,	#','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/ExtensionInterface.php',0,_binary '\\nfWôu+',_binary '\\nfWôu+',_binary 'p32\k<\\N$2PL\A\i\\Bhd`2','',0,'?'),(_binary '9i\o\\\\\"\p:','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/GlobalsInterface.php',0,_binary '\N37\AY\H,\n`',_binary '\N37\AY\H,\n`',_binary '߅nx\NU~w\yI\\\<UY!\0	\^','',0,'?'),(_binary '$έ\\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/InitRuntimeInterface.php',0,_binary 'UM\dd,f\\',_binary 'UM\dd,f\\',_binary '\[\N{M0NI1}\^)\ryC\pne','',0,'?'),(_binary '\\\}2','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/OptimizerExtension.php',0,_binary '!\\\l#:cф',_binary '!\\\l#:cф',_binary 'N&%\\\\\\#Ljx,Zy\n\\Zh)\\{*','',0,'?'),(_binary '\o_%M\d\>\f','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/ProfilerExtension.php',0,_binary '\}AYK\阑\r\',_binary '\}AYK\阑\r\',_binary 'L\1d\U\\r\#)rN,\\ˊoj-+v	','',0,'?'),(_binary 'c\\1>۝\|~p','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/RuntimeExtensionInterface.php',0,_binary '\\*)\0^wl8+W',_binary '\\*)\0^wl8+W',_binary '&\0\\\*/0J\"NjJ\\45\P		T\','',0,'?'),(_binary '\\?\\#H.se','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/SandboxExtension.php',0,_binary '\\dRa\',_binary '\\dRa\',_binary '>keiV\mkW_\nS\.-<\P2\','',0,'?'),(_binary '}k!IZ\]\0i','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/StagingExtension.php',0,_binary 'u\SPT\"޼Ge`\l\ ',_binary 'u\SPT\"޼Ge`\l\ ',_binary 'QSGs\?UZ\\+1\o3zǽ\','',0,'?'),(_binary '<wQ\w\!|\Ǒ\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/StringLoaderExtension.php',0,_binary '\Ns\v\"rk',_binary '\Ns\v\"rk',_binary '\\0\BuQl\\Q\\p!r\}M:qɑu\','',0,'?'),(_binary 'yU\ ??~E\'\p','wp-content/plugins/responsive-menu/vendor/twig/twig/src/FileExtensionEscapingStrategy.php',0,_binary '+\\\18\Eq\\',_binary '+\\\18\Eq\\',_binary '\\0U.κ\Z@^N~I\\Y^6;','',0,'?'),(_binary '\QTQ4\V4&Z','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Lexer.php',0,_binary '\\4\\ib2\\',_binary '\\4\\ib2\\',_binary 'ERu)TnŭfۣD\\Ta2\Cl','',0,'?'),(_binary 'ޞY5\i5\8\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Loader/ArrayLoader.php',0,_binary 't/r`jn;^5',_binary 't/r`jn;^5',_binary '2nCZ\"\\H2xL\\)p\n\n\@\O\','',0,'?'),(_binary 'CV:קhEB\P\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Loader/ChainLoader.php',0,_binary 'EWS`QaM\',_binary 'EWS`QaM\',_binary '\GU<Ã&T\\\\w	\`X_','',0,'?'),(_binary 'MB?1\FǨ','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Loader/ExistsLoaderInterface.php',0,_binary '4RX\Sx\\\T',_binary '4RX\Sx\\\T',_binary '\5w.v\iGщ\@/z;I','',0,'?'),(_binary ' L\j5P\,.','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Loader/FilesystemLoader.php',0,_binary '\\s\\\SY~',_binary '\\s\\\SY~',_binary '\"\2?#rҊ:ys(\'ىH\\8f\;D','',0,'?'),(_binary '1K\\\]1/\\@\ \','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Loader/LoaderInterface.php',0,_binary '\%\ɘ\Y9\d8',_binary '\%\ɘ\Y9\d8',_binary '/,q3B\SnS\)꯾<Oc{Y\\\嗵gm','',0,'?'),(_binary 'n@Г&\ySLf\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Loader/SourceContextLoaderInterface.php',0,_binary 'Xl6uMLcR',_binary 'Xl6uMLcR',_binary '\Q?fE\\\ޯ˨\jGrWhBS\I\3\','',0,'?'),(_binary 'DzaHDjy\5g','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Markup.php',0,_binary 'uBjLJHМ7\',_binary 'uBjLJHМ7\',_binary '\.\OD\\\nsFV\%\x+\\\"]\','',0,'?'),(_binary '>ЃE^\\9\|','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/AutoEscapeNode.php',0,_binary ',Uae$T{DDE',_binary ',Uae$T{DDE',_binary 'p}(	f\Uh\'l	>a*','',0,'?'),(_binary '[\\)\󝊈','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/BlockNode.php',0,_binary '\a]],_\Ew\',_binary '\a]],_\Ew\',_binary '\Xe\}\\d503\!l\nTt(\"\','',0,'?'),(_binary '̮֤\rr\\a\>M','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/BlockReferenceNode.php',0,_binary '-O%)Ȗ7\\',_binary '-O%)Ȗ7\\',_binary '5\\KxFvd\>zB$P=\>+b\','',0,'?'),(_binary '\,\\0\CzV\U','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/BodyNode.php',0,_binary 'l\G\\\F\\^<',_binary 'l\G\\\F\\^<',_binary 'uĚf*ǤӮl`G\0qWq9\','',0,'?'),(_binary '%\ERkЅR&\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/CheckSecurityNode.php',0,_binary '\feB\|La\E',_binary '\feB\|La\E',_binary 'B/pٽ\wof/*\2`\\\%\\','',0,'?'),(_binary ':\\=\Z{\n*h','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/CheckToStringNode.php',0,_binary '\2FWtR\\\qB%',_binary '\2FWtR\\\qB%',_binary '\ƈ܍\\:o\5d \Q3yL=ʃ2I&3\L','',0,'?'),(_binary 'V\;<\\}/ ','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/DeprecatedNode.php',0,_binary ' J%\K!\\!d3\',_binary ' J%\K!\\!d3\',_binary '\,nݠ4v߄-QYBD\\V\\\^C\','',0,'?'),(_binary 'u\\r\,=!7','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/DoNode.php',0,_binary '.\LEi_nԢ',_binary '.\LEi_nԢ',_binary 'k\_E\Hݹ\i+&\Kܝ\\_R\^\','',0,'?'),(_binary '\'uTC~:㗹&\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/EmbedNode.php',0,_binary ')\i\\⭿H\',_binary ')\i\\⭿H\',_binary '+b%\\Î\Q\\\\"%\\e_\CT\tBz','',0,'?'),(_binary '\1\6DXwO*\c8','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/AbstractExpression.php',0,_binary '\\}|I\\ͫf,9',_binary '\\}|I\\ͫf,9',_binary '\9:\'\0*\\cżRb\~\\ \'`;','',0,'?'),(_binary 'gis9CF\\\=','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/ArrayExpression.php',0,_binary '\I\\T,\\XZ\',_binary '\I\\T,\\XZ\',_binary '\?s4\r}l=X4aÄ!<\\F	\ZfW\MMA','',0,'?'),(_binary '+\R\\S)g|\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/ArrowFunctionExpression.php',0,_binary 'նY\\cl\\\Z',_binary 'նY\\cl\\\Z',_binary '\&\7&i\\\\᠌\!A\','',0,'?'),(_binary 'yt\`G	\GD@','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/AssignNameExpression.php',0,_binary '\[Aɺ\h{\M',_binary '\[Aɺ\h{\M',_binary 'g\!=5\\NhȨ\K\)c\8\','',0,'?'),(_binary ';\W\\03P\\f\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/AbstractBinary.php',0,_binary '[9%8\DI^',_binary '[9%8\DI^',_binary '\\C\x+Q[\;\`\G}\\\\\(s\','',0,'?'),(_binary '\)w=M\}[(<; $[{','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/AddBinary.php',0,_binary 'G\Z\h\=rmN\E.$\Z',_binary 'G\Z\h\=rmN\E.$\Z',_binary '8]s\~\\\Y\9\rjf5\n(Kᐩ','',0,'?'),(_binary 'P\E\D\\\/','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/AndBinary.php',0,_binary '\\\'m\r\H',_binary '\\\'m\r\H',_binary '\"	\[6h\$سO5d\K\<n\','',0,'?'),(_binary '\O1gH\\dxY','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/BitwiseAndBinary.php',0,_binary ' r\\&I\_ \f',_binary ' r\\&I\_ \f',_binary 'S>^y>ux\-b~Y','',0,'?'),(_binary '\mz̞>\{>\\?','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/BitwiseOrBinary.php',0,_binary '?\T\\#\n\rZ',_binary '?\T\\#\n\rZ',_binary '\@`qG\@\\\\2ߗR%\"\Bժ','',0,'?'),(_binary '~|\s1Q\\E*','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/BitwiseXorBinary.php',0,_binary 'E\D3ܞ/\\h7#\',_binary 'E\D3ܞ/\\h7#\',_binary '_ϛ(H\v~O\P\VW\\i \yn,','',0,'?'),(_binary '\N{\\0\3','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/ConcatBinary.php',0,_binary '\\:v\0\\r',_binary '\\:v\0\\r',_binary 'k|2\\Z\n\.\D\p\*h\\Ҟ\\U\','',0,'?'),(_binary 'y\@\b-|_.\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/DivBinary.php',0,_binary 'k牣?M)xw\]\O',_binary 'k牣?M)xw\]\O',_binary 'O}v\\\\\zCU9;\I\	\','',0,'?'),(_binary 'jv\2\F','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/EndsWithBinary.php',0,_binary 'h\\r\W.Y\d',_binary 'h\\r\W.Y\d',_binary '\S\#\&n\\_vd1へ\','',0,'?'),(_binary '\8A_\P`}J\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/EqualBinary.php',0,_binary '\/22\\$\r\"',_binary '\/22\\$\r\"',_binary '#@ѫQƗ.^-1q¶\\','',0,'?'),(_binary '\Sߪ\+{\Fw','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/FloorDivBinary.php',0,_binary '0y<Q1\\\Bݢ',_binary '0y<Q1\\\Bݢ',_binary '\[D8\\\G\\0v\z\(\B^\','',0,'?'),(_binary '%\\\)B\\V','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/GreaterBinary.php',0,_binary 'ʙ%\\\&:dӷ\\',_binary 'ʙ%\\\&:dӷ\\',_binary 'yo}utTaJr(P1W\+I\\\ey\}','',0,'?'),(_binary 'Pв>`[[X`','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/GreaterEqualBinary.php',0,_binary '2̎#b\\r\\dD',_binary '2̎#b\\r\\dD',_binary '^#\Z(\D[h	\!\\.\J\\6','',0,'?'),(_binary '\\K-V(\\5\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/InBinary.php',0,_binary '\\\44I\;z',_binary '\\\44I\;z',_binary '\$\YO	;יP{IZ\\f\nQ','',0,'?'),(_binary '\{\PjM%&%#V','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/LessBinary.php',0,_binary '\I\n\0j\\\ZeBie',_binary '\I\n\0j\\\ZeBie',_binary 'kJH筌̛\ɮGیY\\jS\\S','',0,'?'),(_binary '?^\\yo\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/LessEqualBinary.php',0,_binary 'P\˕\.\\',_binary 'P\˕\.\\',_binary '\\X\"΍\\z\Z\\YmI\ǾKkr','',0,'?'),(_binary 'ܔ\':Lc\{]\:b','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/MatchesBinary.php',0,_binary '[R\\7\6\uY',_binary '[R\\7\6\uY',_binary '\HS1\\*\\h\mm,1\]C=XC`','',0,'?'),(_binary '}/\_\խiS U/','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/ModBinary.php',0,_binary '\\\+*\"qz4',_binary '\\\+*\"qz4',_binary '\r`\uxZƁw\'_\#0\\j\0\*','',0,'?'),(_binary '\\\/	L','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/MulBinary.php',0,_binary 'i\\\0\n\kr\0\!',_binary 'i\\\0\n\kr\0\!',_binary '\nK\\	_MPS6%ޭ\f{z5f`\','',0,'?'),(_binary '\0\OWC\T\	','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/NotEqualBinary.php',0,_binary '\\\\'\\2o\9',_binary '\\\\'\\2o\9',_binary '\\J\ruJZ\5y\SF\\\\r0l','',0,'?'),(_binary '\e\\rAJ\\H(L','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/NotInBinary.php',0,_binary '3\0\L}M\\',_binary '3\0\L}M\\',_binary 'J&\\	.0\ sV\\\0\8s-Ԍ9n7^\@','',0,'?'),(_binary '\n\\Y@icXNX4C','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/OrBinary.php',0,_binary '~?rYGuȡA{cc',_binary '~?rYGuȡA{cc',_binary '\\N#m)n\/a3%n\pk\a\','',0,'?'),(_binary ',g\ \\1','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/PowerBinary.php',0,_binary ']4}\IⰐ',_binary ']4}\IⰐ',_binary 'i!\'?\bAc/Ɛ\c7\\','',0,'?'),(_binary '\-Ѓ\9si}s','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/RangeBinary.php',0,_binary 'C\/wel\;',_binary 'C\/wel\;',_binary 's\0,Ab|7 0\,Pc\&a','',0,'?'),(_binary '\\\L0\\q{/\'','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/StartsWithBinary.php',0,_binary '㘔s@\"bڅj&',_binary '㘔s@\"bڅj&',_binary 'y\o\\+b7\\Zos\̌\0;x\\:H\\r\"%','',0,'?'),(_binary 'Y5G{\s\j','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/SubBinary.php',0,_binary '3\0C$D\5\\',_binary '3\0C$D\5\\',_binary 'WvÒ6\bKC8c&\Z9\<\<y>\','',0,'?'),(_binary '5\\H\M<0\a]','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/BlockReferenceExpression.php',0,_binary '\!~\"\ڤwp1\',_binary '\!~\"\ڤwp1\',_binary '2\"\\.\\\"7Ab\R{p','',0,'?'),(_binary '\R?|kf\n\\\\ZN','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/CallExpression.php',0,_binary '\X\\0\Z*',_binary '\X\\0\Z*',_binary '\rخU\=&-\\*ްU','',0,'?'),(_binary '\\rD\\\VZ~F','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/ConditionalExpression.php',0,_binary '/G̷e-^\\8\$\v',_binary '/G̷e-^\\8\$\v',_binary '{)<558\\rBLY\,\%G\F)\@\','',0,'?'),(_binary '=ůI\iK16#d\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/ConstantExpression.php',0,_binary '\\\n\0\\`A',_binary '\\\n\0\\`A',_binary '.`\\\\O&jR4-$\\r\\\\"{1Q\','',0,'?'),(_binary '{\MV\\Noy,q\щ','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Filter/DefaultFilter.php',0,_binary 'Ө\w\\\GՀ',_binary 'Ө\w\\\GՀ',_binary '8v+u\\Ety90Ʊ\]l\>א٪D','',0,'?'),(_binary '	\C+eE\X\0','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/FilterExpression.php',0,_binary '\\Tx2\S\Zߋ#a',_binary '\\Tx2\S\Zߋ#a',_binary '\\zr\TϏn\sQl\rWu\@[*\','',0,'?'),(_binary '\n /Rb\@\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/FunctionExpression.php',0,_binary 'O\\\\h\\',_binary 'O\\\\h\\',_binary '$m޵\\;>\\\\:m\\\7M,(\','',0,'?'),(_binary '`xOaЈᄤ','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/GetAttrExpression.php',0,_binary '\\\&#ЅpW>H\8',_binary '\\\&#ЅpW>H\8',_binary 'eo_\;3C-\\p\]6g9E\nUM%','',0,'?'),(_binary '=Vj\0\(\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/InlinePrint.php',0,_binary '3td\˚\}n\C\*',_binary '3td\˚\}n\C\*',_binary 'Dˉ\͠d\UFdEq#U\\r>,6\<','',0,'?'),(_binary '\h)bК=\98Y,\S\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/MethodCallExpression.php',0,_binary '\\!\1\(\Lx0@',_binary '\\!\1\(\Lx0@',_binary 'q\Z\N\"6g`oRBuS!\i\\.\G\','',0,'?'),(_binary '-l70ޗ?Wآ','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/NameExpression.php',0,_binary '\)RoxC\0\ά',_binary '\)RoxC\0\ά',_binary '\Cm\\d\\\\aQݱ\˓h\a ','',0,'?'),(_binary '\Y\i\\*Q\"','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/NullCoalesceExpression.php',0,_binary 'u8,\Y0-Q\\\\',_binary 'u8,\Y0-Q\\\\',_binary 'Fiv4Q?S-*Q\;=8\\D\"\\','',0,'?'),(_binary '\\\L=l\\d\\P','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/ParentExpression.php',0,_binary '^\\Z=\٩aR\J',_binary '^\\Z=\٩aR\J',_binary '%3)Ag.$GSH\\\j~\\\9\','',0,'?'),(_binary '\\\\,\\\"W\n䒡m','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/TempNameExpression.php',0,_binary '_\0Q;i\\Y3',_binary '_\0Q;i\\Y3',_binary 'n\'\\\q)\\[ܪva=UA\\;\\\Z','',0,'?'),(_binary 'rV\\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/ConstantTest.php',0,_binary '\gkAG<\Z\\ZcZ\6',_binary '\gkAG<\Z\\ZcZ\6',_binary '=<\\n HB\\ \2^vȈ\C|e','',0,'?'),(_binary '#\\5\͞\WmјO','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/DefinedTest.php',0,_binary '!桱\G\2]#',_binary '!桱\G\2]#',_binary '\\|\G\ZmZ\\[\l\\"L>5?ʸ','',0,'?'),(_binary '\jG\-$R\I\|','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/DivisiblebyTest.php',0,_binary '\\x\n\_',_binary '\\x\n\_',_binary 'tsj}\,(FE\#\hI15?o\\','',0,'?'),(_binary '%7\w:O','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/EvenTest.php',0,_binary '6i9]9[OR*;',_binary '6i9]9[OR*;',_binary '(\\\;CK Q\Q)q78\n\Z\r\','',0,'?'),(_binary '\ygEt\r\:=\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/NullTest.php',0,_binary '+t#:nk\\V\\',_binary '+t#:nk\\V\\',_binary 'M@zzo\n\? \"\>\M\\hFg\&\\y\','',0,'?'),(_binary 'ss[\ݐ\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/OddTest.php',0,_binary 'қ\\/\0;~u.',_binary 'қ\\/\0;~u.',_binary '\\̃m\\n\0*8Uѐ\[\ବV','',0,'?'),(_binary '\\\DS%ڲV.\PZ','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/SameasTest.php',0,_binary '5G\g\Gs}\\y\',_binary '5G\g\Gs}\\y\',_binary ']k\/J2CS\]^\_\"HU~<\\q','',0,'?'),(_binary 'qB-\"b\\c=(','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/TestExpression.php',0,_binary 'k\a\\Bv/eB\',_binary 'k\a\\Bv/eB\',_binary 'A}jF[HL5\3!cO{R\}hX','',0,'?'),(_binary 'r\_\n\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Unary/AbstractUnary.php',0,_binary '\\<V\)\}SC',_binary '\\<V\)\}SC',_binary '\\Zᠻ(]|2c\i\\2j\','',0,'?'),(_binary 'sҩ[m+a','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Unary/NegUnary.php',0,_binary ' NQo|^\\',_binary ' NQo|^\\',_binary 'M\'ɖ\79p̱pF\e\\r6Q\\>','',0,'?'),(_binary '\.OX\37\\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Unary/NotUnary.php',0,_binary '9oA~TXW\\\+',_binary '9oA~TXW\\\+',_binary 'C\QN4\>\\cZ\@g\\z','',0,'?'),(_binary '>\ac\<','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Unary/PosUnary.php',0,_binary '\XecZ\8f1\<',_binary '\XecZ\8f1\<',_binary 'nQ.@ܳ/\0\0\\yfCQǠ\)_','',0,'?'),(_binary 'N\\]q\\0\n9\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/FlushNode.php',0,_binary 'WS*\\/.\\\&a',_binary 'WS*\\/.\\\&a',_binary '\s%y7Į#\r)\s\*\\V\\{\','',0,'?'),(_binary '!G_\\%pQ','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/ForLoopNode.php',0,_binary 'X 0лƳ1AS%',_binary 'X 0лƳ1AS%',_binary '	\S錂\1I)8FRg\jImpXE2l3','',0,'?'),(_binary '\\ZV7AV\!\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/ForNode.php',0,_binary '\d̧\Ed~W',_binary '\d̧\Ed~W',_binary '(N\K\%-屴AZ;\\(\\X\'GYw\9V','',0,'?'),(_binary '\\\\ܧ\Z/=_\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/IfNode.php',0,_binary 'r\u\n\\\\";\\0%',_binary 'r\u\n\\\\";\\0%',_binary '\鋗\kϴ\R\Z\X\ZNmԗU','',0,'?'),(_binary '{\+\b`Ω','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/ImportNode.php',0,_binary '@]@\H\',_binary '@]@\H\',_binary 'H\\\(\n>s\Ս\$Z=p[z','',0,'?'),(_binary 'n\D\BE\.','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/IncludeNode.php',0,_binary '\CPN\CSH]a',_binary '\CPN\CSH]a',_binary '5Z\[-U\(1\\n\pl\[ܼ\Zs1\IN$','',0,'?'),(_binary '^V Ӂ(\\\N','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/MacroNode.php',0,_binary 'ki0#\ͳ9',_binary 'ki0#\ͳ9',_binary ',dE+\'\\\S%\\`b`NPW˘','',0,'?'),(_binary '\z| \2\pS_','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/ModuleNode.php',0,_binary ',u`\Y \D\і\r\r',_binary ',u`\Y \D\і\r\r',_binary '\i,OnzJ\3O\\\-2\H1\\'d\\','',0,'?'),(_binary '\k=IUbpQ\"\v','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Node.php',0,_binary 'h\G\1L',_binary 'h\G\1L',_binary '_Ϡ\0zH\5`Po1mm\','',0,'?'),(_binary '\qps[|#`8Y\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/NodeCaptureInterface.php',0,_binary '\1R$du=\>e̦',_binary '\1R$du=\>e̦',_binary ']pE\V$\\Y).)Fb\n\̑@\','',0,'?'),(_binary 'uGl,hm%=','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/NodeOutputInterface.php',0,_binary '\0l\\\ZGY\d\',_binary '\0l\\\ZGY\d\',_binary 'q\db!CT9\<BG\3\njvWL]','',0,'?'),(_binary '\@.棁T<A','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/PrintNode.php',0,_binary '\Z*\ᦲK\',_binary '\Z*\ᦲK\',_binary '\	;\\\\!ͰS^\\mVy','',0,'?'),(_binary '.t\0Mr\\\Z_i	\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/SandboxNode.php',0,_binary '\ң(otA}U\\\',_binary '\ң(otA}U\\\',_binary '3$<\\\\\Z\rh5)e2>gj\','',0,'?'),(_binary '?\ޔM\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/SandboxedPrintNode.php',0,_binary '6?\PW>ja\GYG\',_binary '6?\PW>ja\GYG\',_binary 'Sh	#@;:Ж\$\\9\\\\','',0,'?'),(_binary 'u(\\(i{\R}','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/SetNode.php',0,_binary 'c(\\0\"H\	\Ҩ\',_binary 'c(\\0\"H\	\Ҩ\',_binary '%>`B*Yfѿ-/\\\\\\Բ$\\','',0,'?'),(_binary '\|\\\\\\\N\4x','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/SetTempNode.php',0,_binary 'RI\'6\01\Z7\\\GB',_binary 'RI\'6\01\Z7\\\GB',_binary '1\\T\4/H\vy\\e.	\\\','',0,'?'),(_binary 'CXjsi]x\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/SpacelessNode.php',0,_binary '-<U\;\<\\',_binary '-<U\;\<\\',_binary '\|\ku,\\'z\06/Oꐹ;W\\*','',0,'?'),(_binary '+3\"n\+AM\`','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/TextNode.php',0,_binary '<$\UE\\?',_binary '<$\UE\\?',_binary 'w/\d*\5#\\\69%G6\Cʟ','',0,'?'),(_binary ')%\u\\+\")\F','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/WithNode.php',0,_binary 'Ձ\C[ۻ\\"',_binary 'Ձ\C[ۻ\\"',_binary '(5qTc2\A\~\rl\ډр|FKh0','',0,'?'),(_binary '\\0l@/	\Y','wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeTraverser.php',0,_binary 's֮=4\\?\',_binary 's֮=4\\?\',_binary '\<HHo\7:XQ$xl}Ad{9','',0,'?'),(_binary '\/\Ջ\r3t	','wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php',0,_binary 'OMw\ݷ\9',_binary 'OMw\ݷ\9',_binary 'C	\|\\/\[`9a˚\\T\','',0,'?'),(_binary '\ԴO\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeVisitor/EscaperNodeVisitor.php',0,_binary 'Is4DF',_binary 'Is4DF',_binary '\n\\0Z\i¾\?9~;dϟ\\s\U','',0,'?'),(_binary '<\\\930T\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeVisitor/NodeVisitorInterface.php',0,_binary '\_B@\$*\Q1p',_binary '\_B@\$*\Q1p',_binary ')!\%~d\;FQxrR]\Z@ ','',0,'?'),(_binary ',?)U B+7','wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeVisitor/OptimizerNodeVisitor.php',0,_binary ',\\)=)\":hoLN',_binary ',\\)=)\":hoLN',_binary '\\\0-q[\\\	\M\\\xh,\','',0,'?'),(_binary '\&ڞ\\s\:\Z','wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php',0,_binary '\0g\W[|\\',_binary '\0g\W[|\\',_binary '\!p;<\!䰝_w\\\E\','',0,'?'),(_binary '\1\4\Y\\.g','wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeVisitor/SandboxNodeVisitor.php',0,_binary '8\>a\{',_binary '8\>a\{',_binary '\CnrBŀ:\\\h#	\`\f','',0,'?'),(_binary 'F\VEe@?\,1h','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Parser.php',0,_binary '\5\N\\?Lp8\+',_binary '\5\N\\?Lp8\+',_binary 'ZՊ\\BFn\\Y\\а7\eQ\h','',0,'?'),(_binary '\r\-\6\"\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Dumper/BaseDumper.php',0,_binary 'ьҜ\\Z\d\Φq\',_binary 'ьҜ\\Z\d\Φq\',_binary 'ǃMyS\&B#Mk%\\~\\6','',0,'?'),(_binary 'fX>a\^P7','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Dumper/BlackfireDumper.php',0,_binary '\Ȳ\'\@\OHpl\',_binary '\Ȳ\'\@\OHpl\',_binary 'O\\\\Ĵ\Bf:+\\*Z.8c\\~','',0,'?'),(_binary 'KΤ\Z\\\,Of\AzN','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Dumper/HtmlDumper.php',0,_binary '|,\լS\L}Յ',_binary '|,\լS\L}Յ',_binary '7#\;1\aUQ\E\0±GX\v\2ʼ','',0,'?'),(_binary '\ڈ\+]\c\󊀹i','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Dumper/TextDumper.php',0,_binary '\c8\}6IiO',_binary '\c8\}6IiO',_binary '%ݟ\\TfKdg.\\!@C\\\5\\','',0,'?'),(_binary '}k-\\"C0i\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Node/EnterProfileNode.php',0,_binary '$TKT\ў\\GF\',_binary '$TKT\ў\\GF\',_binary 'u\\\\EpgJ\\\G\8\\','',0,'?'),(_binary '\iEʞ4$\: \','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Node/LeaveProfileNode.php',0,_binary '\\\\\bπ C(\\)\',_binary '\\\\\bπ C(\\)\',_binary 'D=QG\Z>\\\ţ\\TVqoM\(\s\m','',0,'?'),(_binary 'jHS\\my\ˤq','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php',0,_binary '\\0\\n\o.\',_binary '\\0\\n\o.\',_binary 'nh6z\\<\\hBz\n&\5/\','',0,'?'),(_binary '\T\\Z{\OQ8_Y','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Profile.php',0,_binary '}ת&t\A\',_binary '}ת&t\A\',_binary '=KƄL.n=5Hq\|o\BO','',0,'?'),(_binary 'w}\zq++3','wp-content/plugins/responsive-menu/vendor/twig/twig/src/RuntimeLoader/ContainerRuntimeLoader.php',0,_binary '\6-(oiF',_binary '\6-(oiF',_binary '	\\\\\0|XX0\\\\,p\','',0,'?'),(_binary '\0\0>\"KL*2)','wp-content/plugins/responsive-menu/vendor/twig/twig/src/RuntimeLoader/FactoryRuntimeLoader.php',0,_binary 'Qh\Zb\0NZ\4>ٵ',_binary 'Qh\Zb\0NZ\4>ٵ',_binary 'C\ٺ&擇\\\\	>U=/yX\L','',0,'?'),(_binary '\kx\Ĵ8\\e','wp-content/plugins/responsive-menu/vendor/twig/twig/src/RuntimeLoader/RuntimeLoaderInterface.php',0,_binary '\Z\\ٙ\I\\<i',_binary '\Z\\ٙ\I\\<i',_binary '}\oZFV_|si\Ŵ\r\\\rq#v,','',0,'?'),(_binary 'P\D/=-:\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityError.php',0,_binary 'KdCQ0R{~',_binary 'KdCQ0R{~',_binary 'j-X\\){(Z@\\\\J','',0,'?'),(_binary ':|/\[{l','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFilterError.php',0,_binary '\[J*Jը6Ұ\\\m',_binary '\[J*Jը6Ұ\\\m',_binary '¨%\\\;\ˢ~Ƅ׎Lve\rW1P\','',0,'?'),(_binary 'g?1 \\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFunctionError.php',0,_binary 'H~\F/\8\'',_binary 'H~\F/\8\'',_binary 'C\\\EjT\\\\{+#C\V+ORR7[O','',0,'?'),(_binary '>s2uׅ6\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityNotAllowedMethodError.php',0,_binary '\pw\Tw^%\K8`\\',_binary '\pw\Tw^%\K8`\\',_binary '+\\lh\0\3\\\[O5hMX\\"\R\6','',0,'?'),(_binary '0U\Zq)t\\xb','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php',0,_binary 'k ON4\8ˢ\:',_binary 'k ON4\8ˢ\:',_binary '\r\r*O>_%ƺ\ԥZ\.[>g\w\','',0,'?'),(_binary 'M\/sp4\NsZ','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityNotAllowedTagError.php',0,_binary 'Y7b{J՞\\8Y',_binary 'Y7b{J՞\\8Y',_binary 'q,^\\0I\U\+;ק5\\':	*\ܕ2QFp&','',0,'?'),(_binary '^vdZ߀\LO','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityPolicy.php',0,_binary 'Ҋ R\8\0i',_binary 'Ҋ R\8\0i',_binary '(\Zk\ձ\0s@Y\'SJ\"\N6sw\','',0,'?'),(_binary '\\O\\\\2/','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityPolicyInterface.php',0,_binary '\(t8Š\W\\',_binary '\(t8Š\W\\',_binary '\nD\q\у!󰡎Z\JJ4\:3\\\','',0,'?'),(_binary 'U,ucXH>D\h','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Source.php',0,_binary '|(\j\\67yP}mZ',_binary '|(\j\\67yP}mZ',_binary '.ݠ\\EL\\0 XE\e*sk/\xp','',0,'?'),(_binary '\RS\%\\\\&\H','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Template.php',0,_binary '\ B`\K\\\',_binary '\ B`\K\\\',_binary 'ï\\%]+\k5\O_2]\^\\p','',0,'?'),(_binary '/6a\qq\6\\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TemplateWrapper.php',0,_binary '.K\vjkY\\\',_binary '.K\vjkY\\\',_binary ' oĩ̹\\2ҺB\\=!\B\','',0,'?'),(_binary '6\\!Y\\\\spqu','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Test/IntegrationTestCase.php',0,_binary '\ǵi\̎\`\W:',_binary '\ǵi\̎\`\W:',_binary '\aSKXt	Bh\3?be^Us٤','',0,'?'),(_binary '\"ׄ\\s3\,*\T','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Test/NodeTestCase.php',0,_binary '__ь6ꦓR\Gm',_binary '__ь6ꦓR\Gm',_binary '_)%\Rm\0\f\ڲ\$\{\ʙ\','',0,'?'),(_binary 'h\\pG<0\=~;\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Token.php',0,_binary '\r&;\q,',_binary '\r&;\q,',_binary '9\1\\#J\y&4\g[/\','',0,'?'),(_binary 'I)e_΄2','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/AbstractTokenParser.php',0,_binary 'ADBpug\\\aQ',_binary 'ADBpug\\\aQ',_binary '3v?\H:rq\\	U\Xh#Yͫ7','',0,'?'),(_binary '	\n\rM:rט	NxK','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/ApplyTokenParser.php',0,_binary 'JlF*\d\i})\',_binary 'JlF*\d\i})\',_binary '\\\cR\0\mH\8tWt?n/\\E\"','',0,'?'),(_binary 'v!\\$ո\ᯍs','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/AutoEscapeTokenParser.php',0,_binary '\\E\,V*\\\(',_binary '\\E\,V*\\\(',_binary 'W\xe\e\0.b\\s\.','',0,'?'),(_binary '8.]2E_l>4M','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/BlockTokenParser.php',0,_binary '\\\mG\Z\Ҿ9\|',_binary '\\\mG\Z\Ҿ9\|',_binary '\\\\/\T\\\\\xVXl\h=I\\','',0,'?'),(_binary 'm\9\V(I','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/DeprecatedTokenParser.php',0,_binary '\A1M\A\ B',_binary '\A1M\A\ B',_binary '+4\ܕ	\\\(	\xC/\F}','',0,'?'),(_binary 'w~\\\ɘz\ur\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/DoTokenParser.php',0,_binary '57\HO\b',_binary '57\HO\b',_binary '\\\\\wO\\c$)´S\'nNk','',0,'?'),(_binary ']\f\g\\7\*7W\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/EmbedTokenParser.php',0,_binary 'iƚ\nN\k\g]vc/',_binary 'iƚ\nN\k\g]vc/',_binary 'Px6\"\\\0?¦LΉh04^y','',0,'?'),(_binary 'ts7%\n\g\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/ExtendsTokenParser.php',0,_binary '\U\L<t1=9\',_binary '\U\L<t1=9\',_binary 'zh\?rh\P=\\\5~_q{\jB','',0,'?'),(_binary '\\zkH9>h\S','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/FilterTokenParser.php',0,_binary 'J\&\\\\jgks]',_binary 'J\&\\\\jgks]',_binary 'a٪\\˵m \\Vi,gywć$ʛ1YUi','',0,'?'),(_binary 'h/ׇ8\	:w\"٭\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/FlushTokenParser.php',0,_binary '\s\0L	feg܉+Œ',_binary '\s\0L	feg܉+Œ',_binary '\a?x?\T,\YǞ*ǜ@&\\\:=Pg','',0,'?'),(_binary '\H~\h!f*cir%','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/ForTokenParser.php',0,_binary '\\\N\\\\x/',_binary '\\\N\\\\x/',_binary '\jC	\\Y\hO\&w\v,\7_','',0,'?'),(_binary 'j\\\t.','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/FromTokenParser.php',0,_binary 'O\O\B\4,@{\k',_binary 'O\O\B\4,@{\k',_binary '׉\\z!=$\\\[\:\SNK\g\\^','',0,'?'),(_binary '\\W\:K\m\\\t','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/IfTokenParser.php',0,_binary '\\\s\\f\rB^.zn[',_binary '\\\s\\f\rB^.zn[',_binary '\\\',sX%5\>G\әF\v+[YbG','',0,'?'),(_binary '\\\\r\1+Yq\w','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/ImportTokenParser.php',0,_binary 'b8\U;<曮Wlx',_binary 'b8\U;<曮Wlx',_binary 'b$\\\%TxJ\È\+m6\\\{\','',0,'?'),(_binary '\\"N֫l-r\l韟','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/IncludeTokenParser.php',0,_binary 'B\uY)$6',_binary 'B\uY)$6',_binary ':)\!N\+\r\\#X^\\n?VS\0K=^','',0,'?'),(_binary '@\\z `\\t','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/MacroTokenParser.php',0,_binary 'i˶K\y`gʰ\n7',_binary 'i˶K\y`gʰ\n7',_binary '0;N\qIr\ō\1d','',0,'?'),(_binary 't)	\\<|7','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/SandboxTokenParser.php',0,_binary '\-n>\\BR%\',_binary '\-n>\\BR%\',_binary '\nR\\\9.m*/d\' F/WgS\','',0,'?'),(_binary 'D4\jE\Iғ','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/SetTokenParser.php',0,_binary '|\y]\\q\\',_binary '|\y]\\q\\',_binary '#\\|i7T\2<\\<\Cf|\\kT\5','',0,'?'),(_binary ')7\\5[MK̕','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/SpacelessTokenParser.php',0,_binary '\s\rѡ\"+\7\׶',_binary '\s\rѡ\"+\7\׶',_binary 'a\}8hKi\h\#7׍)\\nI\<\%\','',0,'?'),(_binary '\Nܽ\]D\rx','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/TokenParserInterface.php',0,_binary '[\\猝L\9\'\\\',_binary '[\\猝L\9\'\\\',_binary 'y\v\tkQ\C*\~\[ZD\\{\\','',0,'?'),(_binary '\\\~\ޯ`','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/UseTokenParser.php',0,_binary 'v]\0Zs\\ن\0|',_binary 'v]\0Zs\\ن\0|',_binary 't6m@Wq\\\r\\]k*v\K\¨\','',0,'?'),(_binary 'Pjq\K\\z)f\\n','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/WithTokenParser.php',0,_binary 'v\/)vvZ\%q/',_binary 'v\/)vvZ\%q/',_binary '\\iV\\2t\\4ch\\CiS-dh\\','',0,'?'),(_binary '\`S6\0]\}o|$\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenStream.php',0,_binary 'HT\\ﷸLLӳ',_binary 'HT\\ﷸLLӳ',_binary 'ɴCIUG\yrYH2\[\Mm\N','',0,'?'),(_binary 'gwr:[\:\:','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TwigFilter.php',0,_binary 'i\\\\-:\%\Rw',_binary 'i\\\\-:\%\Rw',_binary '1ì,\IPt͡jZ6Њ$\'\0\0','',0,'?'),(_binary 'G\.ۯ\\$\','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TwigFunction.php',0,_binary ')\m\Rl\CO1J%',_binary ')\m\Rl\CO1J%',_binary 'R\֣{\ըMK\&֙߸ޫ0c=','',0,'?'),(_binary '2\U\6UC~JIM','wp-content/plugins/responsive-menu/vendor/twig/twig/src/TwigTest.php',0,_binary '\\0:-\b\v\'',_binary '\\0:-\b\v\'',_binary '$僄\\\1iM(D_\\\id\o','',0,'?'),(_binary '\\-\\\r@X6)Z;','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Util/DeprecationCollector.php',0,_binary ',\yLg\\ޛ',_binary ',\yLg\\ޛ',_binary '\\@1EE`qAe;\y=\<Vo','',0,'?'),(_binary '?\$}V\#\~','wp-content/plugins/responsive-menu/vendor/twig/twig/src/Util/TemplateDirIterator.php',0,_binary '\W{ev\7\2\U',_binary '\W{ev\7\2\U',_binary 'ń\2̙nԿ(N\\F\rNY%1wH[\\U\','',0,'?'),(_binary 'Mug\\\2','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/AutoloaderTest.php',0,_binary 'n.APN{K\+',_binary 'n.APN{K\+',_binary 'M?\,#\=\Z\\/JOZ\\\6E(\0','',0,'?'),(_binary '\jH9JU\y\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Cache/FilesystemTest.php',0,_binary '\z`u\d\k',_binary '\z`u\d\k',_binary '\\B(s\t}d\)\TE@\\a\\\}.','',0,'?'),(_binary 'b t\}\\6/','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/CompilerTest.php',0,_binary '*\t@\I\K\\',_binary '*\t@\I\K\\',_binary 'JSHJ\pQ,\77\O>C\ /\\ʸn','',0,'?'),(_binary '_סA\NK\L&\0ej','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/ContainerRuntimeLoaderTest.php',0,_binary '7\N\d@\ V',_binary '7\N\d@\ V',_binary '{2bFe\Z`7\\Sn\ܦoQ0C\m-H\','',0,'?'),(_binary '\wa\\Zʊ\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/CustomExtensionTest.php',0,_binary '4\45Ot',_binary '4\45Ot',_binary '\d3\%m8\H\&\r&\ʄ\Z8\cm','',0,'?'),(_binary ';\|!\nn\\a|~2','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/EnvironmentTest.php',0,_binary '\d/^*B\>\~\'v\',_binary '\d/^*B\>\~\'v\',_binary ';sc\Eo\ \\@!\\s\Z','',0,'?'),(_binary '\\遡\07\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/ErrorTest.php',0,_binary 'Cӳ\.\	\\\5',_binary 'Cӳ\.\	\\\5',_binary '\<7dwL\ųSmWI\|J\Ĝg','',0,'?'),(_binary 'R@O\\\\>Ǎ!','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/ExpressionParserTest.php',0,_binary 'Y-#\\\zK\c+',_binary 'Y-#\\\zK\c+',_binary 'X\m\\\'\nm\\y-\A !\Xe','',0,'?'),(_binary '\\X-a4ٯO','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Extension/CoreTest.php',0,_binary 'Tt\|ѭl\n\j^\"',_binary 'Tt\|ѭl\n\j^\"',_binary '\Tn6\\zDIDh\Gd\\h\Q[˯\','',0,'?'),(_binary 'v+)\\1lP`,\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Extension/SandboxTest.php',0,_binary 'a_0uUhF\g\\\',_binary 'a_0uUhF\g\\\',_binary 'K&	\_H-LplE\\v','',0,'?'),(_binary '0x両[Y\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/FactoryRuntimeLoaderTest.php',0,_binary 'vSLʂk\3',_binary 'vSLʂk\3',_binary '!\RԻ8\r\E\c\&Biu\','',0,'?'),(_binary '\SO?\\L\\0\gb','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/FileCachingTest.php',0,_binary 'dU3ũS\\\\',_binary 'dU3ũS\\\\',_binary ',\Aüka\u\{S)\\V\_lE\vmW','',0,'?'),(_binary '(6g$\"g$','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/FileExtensionEscapingStrategyTest.php',0,_binary 'L;؀\r\J\t',_binary 'L;؀\r\J\t',_binary '\\\U3\p2\\'\\\!yN*\','',0,'?'),(_binary '+܈\hFd\'\xXx','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/FilesystemHelper.php',0,_binary 'uC\ǄO\'<EǱU]y',_binary 'uC\ǄO\'<EǱU]y',_binary '\9Krd~=c\s\,\V\HOy9','',0,'?'),(_binary 'S_Kc\[\\bt\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Fixtures/errors/base.html',0,_binary '\j3\..\\\\r',_binary '\j3\..\\\\r',_binary '_txT`ݵQGHR\\'~\\45_\','',0,'?'),(_binary 'P\\GH=0ڎ\:E\nk(','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Fixtures/errors/index.html',0,_binary 'YX\ZK/	',_binary 'YX\ZK/	',_binary 'qmh\P\t]\x<g` 61ȓuq\n\%#','',0,'?'),(_binary '|>:jg~\Gn~\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Fixtures/errors/leak-output.php',0,_binary '\\hO)6t',_binary '\\hO)6t',_binary '?&uWĄ^\B\\Zޕ(,N]','',0,'?'),(_binary 'Z\\\\j\&\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/IntegrationTest.php',0,_binary '$\rR\\\'6',_binary '$\rR\\\'6',_binary 'ȠeKk֝QsrMbo{\f`Ȩ;','',0,'?'),(_binary '\np60\C!V\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/LegacyIntegrationTest.php',0,_binary 'Sk\ӈ\\'˜\',_binary 'Sk\ӈ\\'˜\',_binary '\\E\gĮ?\t\\Γ_\\YԉxG','',0,'?'),(_binary 'l\zPw}78','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/LexerTest.php',0,_binary 'Y\Mg\\J\Įx',_binary 'Y\Mg\\J\Įx',_binary 'wΞd\\\^R\P7ȂlR)ka','',0,'?'),(_binary '\\\3+4\8\\Er','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/ArrayTest.php',0,_binary 'ڨ\4T\[Q\.',_binary 'ڨ\4T\[Q\.',_binary '$]\\>Tt&(HhQgT\r\\\~8','',0,'?'),(_binary 'QNRcư<SJ\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/ChainTest.php',0,_binary '\݉Y/ӲV\',_binary '\݉Y/ӲV\',_binary '\`v`@D`IJ\\\Ʌū\XtNe^','',0,'?'),(_binary 'b8y[QI\r\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/FilesystemTest.php',0,_binary 'I6\[F\^t',_binary 'I6\[F\^t',_binary 'xyrg\0/\r\kh\`\\>\'Ro','',0,'?'),(_binary 'Z\+$\\\\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_empty_parent.html.twig',0,_binary '\!\E\8͞9',_binary '\!\E\8͞9',_binary 'RŃp3\*2\5!\\<4I\'*?-\nX','',0,'?'),(_binary 'mО\%\A\_\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_nonexistent_parent.html.twig',0,_binary 'G)-Vڹ[ٺ`',_binary 'G)-Vڹ[ٺ`',_binary 'b\\\0H>\ZG[?cuQ\[f5\LDo','',0,'?'),(_binary '	\\\$ji!\\\2','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_null_parent.html.twig',0,_binary '\Z\r!\\hAy[o',_binary '\Z\r!\\hAy[o',_binary '\	3Ph\(Z\\\=ˁ\\nYK\\v','',0,'?'),(_binary '\^WLq֘V\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_valid_parent.html.twig',0,_binary 'uGJ\h,F$w\N\<',_binary 'uGJ\h,F$w\N\<',_binary '\k[.e\_3}8uV\B\n\ߊ?kl','',0,'?'),(_binary '\\8\\sc\%}\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/parent.html.twig',0,_binary 'o\'$X4;\.U\r',_binary 'o\'$X4;\.U\r',_binary '4{v<\?\.\\Cq\\\:>Ȅ\`\\','',0,'?'),(_binary 'KUzdp\\cyt\C','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/spare_parent.html.twig',0,_binary 'sj\\3\ے \'\',_binary 'sj\\3\ے \'\',_binary '\A膕\\0\@GB\\a\\\r	\\d','',0,'?'),(_binary 'v\\\\\o\p','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named/index.html',0,_binary '\zg8Lp	\\%\`\',_binary '\zg8Lp	\\%\`\',_binary '$d`\~sʖ׮\#휷\r3uQש','',0,'?'),(_binary 'gg)X. \Zο]j\i','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_bis/index.html',0,_binary '^\\k`i?\ʭnu<\',_binary '^\\k`i?\ʭnu<\',_binary '\X\t=\\oc\\"\UvBr\i','',0,'?'),(_binary 'qWD\\`Y;К\'}1	','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_final/index.html',0,_binary '\9¥\Nbl.|o\\0',_binary '\9¥\Nbl.|o\\0',_binary 'o\}\[\R\wZxY\\fʩ\45.','',0,'?'),(_binary '\\Ti%R','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_quater/named_absolute.html',0,_binary '\^-{\+\\\$p8',_binary '\^-{\+\\\$p8',_binary '\\fQ\\4`\¥\\!L}[\d)A~','',0,'?'),(_binary 'ڹ\l۶_\\n','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_ter/index.html',0,_binary '\Zlq\09\Ͻ\ ',_binary '\Zlq\09\Ͻ\ ',_binary '#t\\\+NӦ\'*m532ogu\W8%','',0,'?'),(_binary 'Fx;҃\\\\\cNZ','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal/index.html',0,_binary '\2\܍_u\iG',_binary '\2\܍_u\iG',_binary '[\7\sh\\U.L\{6\u%L\n\D','',0,'?'),(_binary 'O!^	\E:\t\w\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_bis/index.html',0,_binary 'VR\=0\\gWY\b',_binary 'VR\=0\\gWY\b',_binary '\i1KdJ\\;pR;/O\owHc\AW\\','',0,'?'),(_binary 'ʩ\\u0\+\b','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_final/index.html',0,_binary '\R?4\/4c\_<',_binary '\R?4\/4c\_<',_binary '\\Wxd\JjяU\\\FX@{\\,K','',0,'?'),(_binary '3{\5U4, I\n','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_ter/index.html',0,_binary '\\r\\!^ӳ=Ô',_binary '\\r\\!^ӳ=Ô',_binary '&Á\\~	JwLԟy\W','',0,'?'),(_binary '$/%,87x\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme1/blocks.html.twig',0,_binary 'ɑn`\\\;i\59',_binary 'ɑn`\\\;i\59',_binary 'm\r\Ki\\S\na$\$IR#\\EX\\\\','',0,'?'),(_binary '\\\͙\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme2/blocks.html.twig',0,_binary '+/\6\eh~Nr',_binary '+/\6\eh~Nr',_binary '.\YҴ\^g=_\Q\>\;h','',0,'?'),(_binary '+\\mZ٪','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/NativeExtensionTest.php',0,_binary '\Oo	ښY',_binary '\Oo	ښY',_binary '\\\+$QN\遲U\O\\(6}&L5:A\\','',0,'?'),(_binary '\E\×\\w	=i\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/AutoEscapeTest.php',0,_binary 'SydN[젴h~{',_binary 'SydN[젴h~{',_binary '\l\V>\1X1~k\&\O,Z\VZ\`','',0,'?'),(_binary '\Zn\Dbb#[m\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/BlockReferenceTest.php',0,_binary 'M\]W4\\\0',_binary 'M\]W4\\\0',_binary '!<i|Grj\\\\(\','',0,'?'),(_binary 'A0FC\JݕI)\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/BlockTest.php',0,_binary 'S2\K\p1\)',_binary 'S2\K\p1\)',_binary 's\Y;p[U8tmG^No\\\\Zj','',0,'?'),(_binary '\n\\7\\ivw,','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/DeprecatedTest.php',0,_binary '+88\\(Q',_binary '+88\\(Q',_binary '}\\'\Vn\\})\D\[6Cp\!\','',0,'?'),(_binary 'օӢf\;(','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/DoTest.php',0,_binary 'dHd-2\T\`6',_binary 'dHd-2\T\`6',_binary '\0n\^\ܾJj\y\0\\n\X~x\%y','',0,'?'),(_binary '+_r\ٍ(ዳ\r\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/ArrayTest.php',0,_binary '\ۏϞ\)z',_binary '\ۏϞ\)z',_binary 'f\0!0poi\[-k\~\n\ª<`','',0,'?'),(_binary 'i\\ \}\溆,B\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/AssignNameTest.php',0,_binary '\	\'z\n0\\_#~',_binary '\	\'z\n0\\_#~',_binary 'ӳ3|%[\(w4Օɟܜ\RN\\"֖\X','',0,'?'),(_binary ':фt\\܏|?k:','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/AddTest.php',0,_binary '\A6E\!fuUZ\F',_binary '\A6E\!fuUZ\F',_binary 'j&jB˙aLg;r\m\(s\\#\r','',0,'?'),(_binary '+)\;6u§0\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/AndTest.php',0,_binary '+,RS\"+\\"2[',_binary '+,RS\"+\\"2[',_binary 'Q\\r͗\,\\*\\\,\$\','',0,'?'),(_binary ');\K\0\"!\\\\B1','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/ConcatTest.php',0,_binary '}\*~#r#\',_binary '}\*~#r#\',_binary ';ȑ\'dl\?v)ᆫ\Z5`)M\\\"6^','',0,'?'),(_binary '\_ 1\z4&\3','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/DivTest.php',0,_binary '@{cÔG\he\X',_binary '@{cÔG\he\X',_binary '\V\\\b_FM\\#NSYI@2\/?\+F','',0,'?'),(_binary 'M3䉚qag^\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/FloorDivTest.php',0,_binary '\D\\'\r\'\?>!',_binary '\D\\'\r\'\?>!',_binary ')\'\!\1\l\\\+|\C\n=y\ן\;\u\','',0,'?'),(_binary '\\8~	\s\h\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/ModTest.php',0,_binary '{i9g-!',_binary '{i9g-!',_binary '\|M\\'\Z_\d V\nQ\zͱ{}\','',0,'?'),(_binary 'r\zjvX\{9%\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/MulTest.php',0,_binary 't7\Z!F\K',_binary 't7\Z!F\K',_binary ',(l\l_\"\'tz\cC\Pe/l','',0,'?'),(_binary '\_n\\\$g\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/OrTest.php',0,_binary '|]	q 4ŭ\',_binary '|]	q 4ŭ\',_binary ' \?h\JɥϱBK\r(\\0+','',0,'?'),(_binary 'TP9C	C,\\N\*','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/SubTest.php',0,_binary '\8˱[6a`z',_binary '\8˱[6a`z',_binary 'yG;rfo:\6CL\\]Z9\טվ\\','',0,'?'),(_binary 'Z\G䯿1>\rlƹ\n','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/CallTest.php',0,_binary 'mSo֨3R\O%',_binary 'mSo֨3R\O%',_binary '#\n!&<\W\>\8/ú=\\5\dA\`','',0,'?'),(_binary 'L\Dv\,\e	\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/ConditionalTest.php',0,_binary '\0\\|0\'\:\8',_binary '\0\\|0\'\:\8',_binary 'Xs/vI0C}ǯ\k}\6Ҵ\3а#','',0,'?'),(_binary '\X\\ D\?\0Q','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/ConstantTest.php',0,_binary '\\,f0{\$4',_binary '\\,f0{\$4',_binary '~%.\ng\0A\ZQe\ruj\72\i\Q\\O\','',0,'?'),(_binary '=IV{','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/FilterTest.php',0,_binary '?\\\*\D\\\0O\',_binary '?\\\*\D\\\0O\',_binary 'b1\ŀ\\PK^:/kI1s\y','',0,'?'),(_binary 'h<j\\\\\\s','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/FunctionTest.php',0,_binary 'I\"Nܭ\\<>7X܃',_binary 'I\"Nܭ\\<>7X܃',_binary 'Ev/cn\0*fc\\%D<#EaB\(?','',0,'?'),(_binary '\)cFd\Z\ڰkAM','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/GetAttrTest.php',0,_binary 'Nx`桢\\\J',_binary 'Nx`桢\\\J',_binary 'K{\`F^66;r\\^\c.\\\','',0,'?'),(_binary ':\{A\L8o)','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/NameTest.php',0,_binary ',110[/ \\\\̂\',_binary ',110[/ \\\\̂\',_binary '*A7O^8nT\&~\\\\\b_f\(\ϐ','',0,'?'),(_binary '\~G\\\X_\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/NullCoalesceTest.php',0,_binary ';\{eX*\',_binary ';\{eX*\',_binary '@\\\A\'^\glI\~~V\\r\IP','',0,'?'),(_binary 'TP\v\\2u!!\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/FilterInclude.php',0,_binary 'o\!W$xyH#',_binary 'o\!W$xyH#',_binary '\	\we\y^ͿNo5GX3΃','',0,'?'),(_binary '~qߪ\#\\! ','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/FunctionInclude.php',0,_binary '8]|V\\݈4(\i',_binary '8]|V\\݈4(\i',_binary '`,OY.\c\\\^\"\\n)^\Edu','',0,'?'),(_binary '\!*(ck\G\˦','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/TestInclude.php',0,_binary ';\\\>\ԣ\\i',_binary ';\\\>\ԣ\\i',_binary '߄\t\/\"\VER\\R⚊uӛ/','',0,'?'),(_binary '\۟l.\1\\١\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/ParentTest.php',0,_binary '\хQ8+\R\{5',_binary '\хQ8+\R\{5',_binary 'x)\`>u\pt`&B\aLO\4\T\"S','',0,'?'),(_binary '\\ZE)\f`\*\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/TestTest.php',0,_binary '\\%Nep',_binary '\\%Nep',_binary '7׀R\:\Z:*e\\~P.if+\tj','',0,'?'),(_binary 'H3=s\'\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Unary/NegTest.php',0,_binary '@{ɑ?(\\\yB\',_binary '@{ɑ?(\\\yB\',_binary 'Z|\\\\rzl\3/\I\"nxx{','',0,'?'),(_binary '\L1k\v	\m\!e\\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Unary/NotTest.php',0,_binary '%=ƌj\e\',_binary '%=ƌj\e\',_binary 'b>\B?u\`+,\\9\d;TL','',0,'?'),(_binary '9Q\W\\\ZP8\#\,','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Unary/PosTest.php',0,_binary '\7ӏeEx\\E\\*',_binary '\7ӏeEx\\E\\*',_binary '\Cc\\ò\\r\\H̊zhr$\5','',0,'?'),(_binary '\\L\3$\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/ForTest.php',0,_binary '	#%\mq\ \',_binary '	#%\mq\ \',_binary '4ɿN\#-\'*޺+~7\\S\kp\d','',0,'?'),(_binary '\?^͛DQ\\饜\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/IfTest.php',0,_binary '\]>4߇\\\\\'$ ',_binary '\]>4߇\\\\\'$ ',_binary '\޳=g\GGN\T\\y5nr\r\ƺ.z:','',0,'?'),(_binary 'L\ڃx9','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/ImportTest.php',0,_binary 'D-ܣo|;,u{',_binary 'D-ܣo|;,u{',_binary 'Ӭ>)շ;ɘ\'[\t#<@Y;\^\','',0,'?'),(_binary '9;\X\B\\Uy','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/IncludeTest.php',0,_binary '>\"\\d',_binary '>\"\\d',_binary '\\~=Xgp9~n}\"u!b\PaQhf','',0,'?'),(_binary '\dJݼRU\\,','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/MacroTest.php',0,_binary 'w\ng\2\"Lz\\',_binary 'w\ng\2\"Lz\\',_binary 'Y=`$!\Z^H+S_Z¾\\LF)\t\\9','',0,'?'),(_binary '\.E,j\dE6\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/ModuleTest.php',0,_binary '$\c]5\0d<\',_binary '$\c]5\0d<\',_binary 'Ӈ8\\`\w\\\\\'\c.*~OO#\','',0,'?'),(_binary 'E\r\\Rf\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/PrintTest.php',0,_binary '|fi\؁\'R\]\\h',_binary '|fi\؁\'R\]\\h',_binary 'n0/[c\CCVs&lZ\ν\|\Gf','',0,'?'),(_binary 'ykv\\d2R\s\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/SandboxTest.php',0,_binary '	083N#\_R\a\',_binary '	083N#\_R\a\',_binary 'ZG\v\^	^\9?\\_£|\ gYK','',0,'?'),(_binary '-e,yd[\\\ށ','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/SandboxedPrintTest.php',0,_binary 'X/\I(e]J\',_binary 'X/\I(e]J\',_binary 'lE\]`}횓)P\U\#\s3.Zw\r\=','',0,'?'),(_binary '\y\\Xé\U','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/SetTest.php',0,_binary '<\\EZs7&',_binary '<\\EZs7&',_binary '8A\kW\e/(1\\\\\P','',0,'?'),(_binary 'ʥP2\˫7\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/SpacelessTest.php',0,_binary '\\Ci{Ӂ%	TC',_binary '\\Ci{Ӂ%	TC',_binary 'ܤ\K\\zHe.RLG7>\\jv','',0,'?'),(_binary 'K\M\F^\^\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/TextTest.php',0,_binary 'd`MS_J0\',_binary 'd`MS_J0\',_binary '<o%3Ԫ\\\^Y\Ly\\\|','',0,'?'),(_binary '\^<\\\'\'1','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/NodeTraverserTest.php',0,_binary '\\n\\{24	\\\',_binary '\\n\\{24	\\\',_binary '޴AqA\\i:\)	\ZB4ˤMrN\Bk\','',0,'?'),(_binary '\&EՇ\\h','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/NodeVisitor/OptimizerTest.php',0,_binary 'f:ŒSϮ!',_binary 'f:ŒSϮ!',_binary '8?\\E.)\\>\Z\|ˮ-`m\\V\y!','',0,'?'),(_binary '\\\½k\\\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/ParserTest.php',0,_binary '\#\i|\0yy\\r',_binary '\#\i|\0yy\\r',_binary 'u/\"\\O\d\\'\\\\\\\r%W Y','',0,'?'),(_binary 'sgg\Py1G8v\r\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/AbstractTest.php',0,_binary '\ϯC\\\kyG/',_binary '\ϯC\\\kyG/',_binary '+J^qg\׿\\.=\	\z\','',0,'?'),(_binary 'S\x\.Wb\Q','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/BlackfireTest.php',0,_binary '{\]\\81i\saN\m',_binary '{\]\\81i\saN\m',_binary 'Ų4T\<a<愖X\y\\\\|+S\','',0,'?'),(_binary 'A7^\{@Oe.','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/HtmlTest.php',0,_binary '/\\\Z\\ƺU֝{',_binary '/\\\Z\\ƺU֝{',_binary '|mY&t\\\Zv\qԢ\\Ja&xI','',0,'?'),(_binary '\U[B?\9\wR','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/TextTest.php',0,_binary ',\\{0qD$p\7J',_binary ',\\{0qD$p\7J',_binary 'dq\$\?a\\yMy6x$tEέV[?','',0,'?'),(_binary 'v	\i0xHU','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Profiler/ProfileTest.php',0,_binary 'Sv}\}\\3',_binary 'Sv}\}\\3',_binary '\r\ +r{pxYU\\[fCY\uӛ=\:X','',0,'?'),(_binary '\o\s\\\ڜ(q\Z','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/TemplateTest.php',0,_binary '@CN\V(A/F>? ',_binary '@CN\V(A/F>? ',_binary 'p\'Ê\yk۫\8\*?	ТB՚\\','',0,'?'),(_binary 'N;ʣ\0\Z\-{\.=b','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/TemplateWrapperTest.php',0,_binary '\*\ĕޒVҬ',_binary '\*\ĕޒVҬ',_binary '׈B\-\%bI\\\\\0Y\kـ\;$>','',0,'?'),(_binary 'Knr>\\p\\\\n\\N','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/TokenStreamTest.php',0,_binary 'Rw/\.\-ۜz{\',_binary 'Rw/\.\-ۜz{\',_binary 'N]׃\cP\<\iߘ\!\NSoH\Z\d\','',0,'?'),(_binary 'J\Й_3\\)\','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Util/DeprecationCollectorTest.php',0,_binary '!FFC3w',_binary '!FFC3w',_binary '\)\\φ\\<iws\$W%m\t\\','',0,'?'),(_binary 'c\~\\\5:jf\"x<','wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/escapingTest.php',0,_binary 'ҧ\u\j	)W+\}t)G',_binary 'ҧ\u\j	)W+\}t)G',_binary '\}sK=\\+$+nߡPi/pAў','',0,'?'),(_binary '\T\\\33K/b\\Y/','wp-content/plugins/responsive-menu/vendor/twig/twig/test/bootstrap.php',0,_binary '+GL=)\;y	ʢ',_binary '+GL=)\;y	ʢ',_binary '\F\'z*2:\\n%\1x9L\'6*yx','',0,'?'),(_binary 'R\\\"\n\\1','wp-content/plugins/responsive-menu/views/admin/alerts.html.twig',0,_binary '{\1ȟn\PO}	',_binary '{\1ȟn\PO}	',_binary '-`z]\,QL\M\`F\VDP\$','',0,'?'),(_binary '\/-.--\\\\','wp-content/plugins/responsive-menu/views/admin/banners.html.twig',0,_binary '#zd$j\6',_binary '#zd$j\6',_binary '$\\\\\B\'X`Щo0ʟ','',0,'?'),(_binary '\[IA\n\}?9D','wp-content/plugins/responsive-menu/views/admin/macros.html.twig',0,_binary 'Тc\o_\騊',_binary 'Тc\o_\騊',_binary 'W{t;\\gپ\[D2|:\y,~\','',0,'?'),(_binary '\ȷݲ/\r\\4\','wp-content/plugins/responsive-menu/views/admin/main.html.twig',0,_binary 'rga\\@\\t\n',_binary 'rga\\@\\t\n',_binary 'y\M\\.@J@g\ƈ\Z\/\','',0,'?'),(_binary 'Vaҙ\y-','wp-content/plugins/responsive-menu/views/admin/options.html.twig',0,_binary '7\TOu?3%?\"\0',_binary '7\TOu?3%?\"\0',_binary 'hjOꝪc\NG-no-<d@>M$Q\&','',0,'?'),(_binary 'mp4\w[<\Z\M?','wp-content/plugins/responsive-menu/views/admin/sections/advanced.html.twig',0,_binary '[b@\B΃;\',_binary '[b@\B΃;\',_binary 'BM\8C\0J3bWJ`\M>cu$','',0,'?'),(_binary 'x7$w,o{\e\u\0~','wp-content/plugins/responsive-menu/views/admin/sections/button.html.twig',0,_binary '\0P1#\w\Z\;X',_binary '\0P1#\w\Z\;X',_binary 'n/S\a$)HX\/=X\\\\\\\','',0,'?'),(_binary '5\\Nr\\Zh\\\','wp-content/plugins/responsive-menu/views/admin/sections/container.html.twig',0,_binary '@ɢ\'[~v`\re\\"',_binary '@ɢ\'[~v`\re\\"',_binary 'n\\ENP\\\\8?2AP\_U\\n\','',0,'?'),(_binary 'JxZ7\.E8\\','wp-content/plugins/responsive-menu/views/admin/sections/desktop-menu.html.twig',0,_binary '\\*(\[X',_binary '\\*(\[X',_binary 'v`jҞD%\9h/\nC6f\\!\AOwF','',0,'?'),(_binary '\-Ē\"[+\au','wp-content/plugins/responsive-menu/views/admin/sections/header-bar.html.twig',0,_binary '#\\㔊o[J\~\',_binary '#\\㔊o[J\~\',_binary '\fg2\\\13$lJwȂ\<T丒I]','',0,'?'),(_binary '\8V/\^ю+<\','wp-content/plugins/responsive-menu/views/admin/sections/initial-setup.html.twig',0,_binary 'lE\T7\di',_binary 'lE\T7\di',_binary 'Lʊc\+A^2\x^p\D:z\On','',0,'?'),(_binary 'SV\YJ	\\X','wp-content/plugins/responsive-menu/views/admin/sections/license.html.twig',0,_binary 'h\0\D\\',_binary 'h\0\D\\',_binary '\..^,W,ZIA\\굉\?\B','',0,'?'),(_binary '\\5\\o%HH3\\','wp-content/plugins/responsive-menu/views/admin/sections/menu.html.twig',0,_binary 'x\B?iҼ\\8$',_binary 'x\B?iҼ\\8$',_binary 't΋\;&X|ԃ+b\\pbPy','',0,'?'),(_binary 'K\\t<\Z\?9m','wp-content/plugins/responsive-menu/views/admin/sections/modules/container-ordering.html.twig',0,_binary 'gEn\;T;s4',_binary 'gEn\;T;s4',_binary 'lcu(̀I8\\P^#\#\\N\\d\','',0,'?'),(_binary '2\\,9A\h\','wp-content/plugins/responsive-menu/views/admin/sections/modules/desktop-menu-settings.html.twig',0,_binary '\Z\\!3\5o~',_binary '\Z\\!3\5o~',_binary '\\$\i/wD\yL\B\~Y)|','',0,'?'),(_binary '5^#-/7\\K	','wp-content/plugins/responsive-menu/views/admin/sections/modules/excluded-pages.html.twig',0,_binary '%Ń\s\\rC',_binary '%Ń\s\\rC',_binary '\\~te-4k\nʊ3\\\+%\B8y@\','',0,'?'),(_binary 'q3y\\r!&.9o6>D','wp-content/plugins/responsive-menu/views/admin/sections/modules/font-icons.html.twig',0,_binary 'ȶt\nt#܃S',_binary 'ȶt\nt#܃S',_binary '\\HҦ\\ȝ\LO\YjՈ\չ1','',0,'?'),(_binary ':\Qٓr9\','wp-content/plugins/responsive-menu/views/admin/sections/modules/header-bar-ordering.html.twig',0,_binary '\U?,41̷Ğ\{',_binary '\U?,41̷Ğ\{',_binary '\ k m_@|4\$ђЋ\\D+6','',0,'?'),(_binary 'zk;`JI_y	{tA','wp-content/plugins/responsive-menu/views/admin/sections/modules/license-key.html.twig',0,_binary '\h\+\\#e)\`UI',_binary '\h\+\\#e)\`UI',_binary '\"\1%\9ՉU6\r,\\\9륶','',0,'?'),(_binary '\\Ӛ0!|$g\\!X','wp-content/plugins/responsive-menu/views/admin/sections/modules/rebuild.html.twig',0,_binary '۫#ю\e#\\\',_binary '۫#ю\e#\\\',_binary '\Ꮔ\\ye5[>/O(\F!\c닛G8','',0,'?'),(_binary '\N\\f\& \v7','wp-content/plugins/responsive-menu/views/admin/sections/modules/transfer.html.twig',0,_binary 'q[\U\RaZcGܱ',_binary 'q[\U\RaZcGܱ',_binary 'yGz\r[WWe\'?HJ\\Q0h\\@\\&','',0,'?'),(_binary '\\\\J\SPPviC7\','wp-content/plugins/responsive-menu/views/admin/sections/sub-menus.html.twig',0,_binary '\r.](o\(WBH',_binary '\r.](o\(WBH',_binary '<H\\\uA\%c\\\\"pF	\3S','',0,'?'),(_binary '1\0[\u\\','wp-content/plugins/responsive-menu/views/admin/sections/technical.html.twig',0,_binary 'q\i<\'+P˺Y',_binary 'q\i<\'+P˺Y',_binary '\\\T\\eU\\Pz{[\f','',0,'?'),(_binary 'D\\Ó~I\Vh_Ic','wp-content/plugins/responsive-menu/views/admin/sections/themes.html.twig',0,_binary '\ܯ\"DAެS',_binary '\ܯ\"DAެS',_binary '{tw\ahA Y\'\\\\n[41HiS','',0,'?'),(_binary 'E\NJΏ\G\','wp-content/plugins/responsive-menu/views/admin/tabs.html.twig',0,_binary '\9\/\\\s6',_binary '\9\/\\\s6',_binary 'ô.\6n\\\k\\z8F\\'_\','',0,'?'),(_binary 'v#[8\\4\z~','wp-content/plugins/responsive-menu/views/app/additional-content.html.twig',0,_binary '\)\<C\y \',_binary '\)\<C\y \',_binary '\dwr3yZ\Hz8\>\-ROgB\','',0,'?'),(_binary 'nbV\\\0r','wp-content/plugins/responsive-menu/views/app/button.html.twig',0,_binary '}\\6C\ZH\Zwq\E',_binary '}\\6C\ZH\Zwq\E',_binary '*+7bl\(Ǵ3t۰\f>8A','',0,'?'),(_binary '\0%\U\a\\\','wp-content/plugins/responsive-menu/views/app/container.html.twig',0,_binary '6ZWƦ\0>\N\[\',_binary '6ZWƦ\0>\N\[\',_binary '`\%A-?N٬]\y<tL\0xe\\\q','',0,'?'),(_binary '\0\=\k\x\.+','wp-content/plugins/responsive-menu/views/app/menu.html.twig',0,_binary 'l\\\\zް|tȄ',_binary 'l\\\\zް|tȄ',_binary '%	c\m\\>*\\\\m?6\$\\PJ\Lc','',0,'?'),(_binary '0,c爒e\3y','wp-content/plugins/responsive-menu/views/app/search.html.twig',0,_binary 'eK/><A7{',_binary 'eK/><A7{',_binary '\N~H\\\R\\L*\\G?\(JF','',0,'?'),(_binary '\\\\ :\y\.','wp-content/plugins/responsive-menu/views/app/title.html.twig',0,_binary '\\T%A\\\ʯh6\',_binary '\\T%A\\\ʯh6\',_binary '}z\ǾO\\_\_2$ҷK\a\~#','',0,'?'),(_binary ']u\S\cUyJDJpW','wp-content/plugins/responsive-menu/views/app.html.twig',0,_binary 't:W	\|',_binary 't:W	\|',_binary '\S*#v\\r\"lSm#\1^3߶/H','',0,'?'),(_binary '~N\\2Ƥ\4\+H\\','wp-content/plugins/responsive-menu/views/preview.html.twig',0,_binary '\JDb4\\\šE',_binary '\JDb4\\\šE',_binary '\֡\\}D\Ƣ\QF@uOfzH\s\\','',0,'?'),(_binary '\\Sy\0G\#\\\','wp-content/plugins/slider-images/Images/1-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ܬ\m;5?\\+\5',_binary '\\7MX[R%jm>E\\\wP\庙c*','',0,'?'),(_binary '\i\$L\a\'\ϳɝ','wp-content/plugins/slider-images/Images/1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\㄄\MB\\܄',_binary '?~k\EෳڡMU\m\\\\\\qfF','',0,'?'),(_binary 'v\\\&\n+\\\l','wp-content/plugins/slider-images/Images/10-10.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\q.\Zخ\WQ',_binary '|\R\h>Q\i4Kh7{\0!\\\','',0,'?'),(_binary '?]7\\\T\\','wp-content/plugins/slider-images/Images/10.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']{w\6yF\Z%\@[&\"',_binary 'T/pfJ7\\\Kp5R9\\3\rJnr\','',0,'?'),(_binary '\Ba\{\7z','wp-content/plugins/slider-images/Images/11-11.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	,C7\r\\\\{\\p',_binary 'KMǠLD\&\\\\ny ̹;YܶtԳw','',0,'?'),(_binary '\`\\\\bi\z.NS','wp-content/plugins/slider-images/Images/11.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aK?\U#`\b\Y\',_binary '\m8u:zuT$\0l\a/\o1Nf\r&','',0,'?'),(_binary '+\\U_!?y','wp-content/plugins/slider-images/Images/12-12.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BYb\<\n',_binary '\\N\gPS8j:\0 \/\\\O6','',0,'?'),(_binary 'TD\r\\\lx6','wp-content/plugins/slider-images/Images/12.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\0\Ex%Q?{',_binary '\?\BV/\ު\";\M\J \\n\v\[w\\','',0,'?'),(_binary '\:j\\hfA\~\0','wp-content/plugins/slider-images/Images/13-13.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\:]jE1\к',_binary 't9\"{B}\䍃s<\MHZ\e\@','',0,'?'),(_binary 'Yw\\ʢ','wp-content/plugins/slider-images/Images/13.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\?\\\t\\',_binary '\Z\Ec^2=rA\\ ߞ\\m\\|av','',0,'?'),(_binary '\yz\*hk)\z','wp-content/plugins/slider-images/Images/14-14.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gVA!-B\NB\',_binary '=\\;P\\ݣ&F\1\sϰqAZ6','',0,'?'),(_binary '\Xx\\50P(','wp-content/plugins/slider-images/Images/14.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PDa-db\\\\{',_binary '븆 %EnaW\^2w`{@\r\D\\\\','',0,'?'),(_binary 'w\\\_]Wɭ','wp-content/plugins/slider-images/Images/2-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\:<2\n\rH\\\',_binary 'f\+\s\o\\0BSC!Z?M\p\k6QR','',0,'?'),(_binary 'jÜOO\r|\','wp-content/plugins/slider-images/Images/2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e}\KꏈN50\@\',_binary '.0ѯ\SfFbt%LL(\\G\\\j','',0,'?'),(_binary 'q\Kn\b|ݑNo/','wp-content/plugins/slider-images/Images/3-3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\ncn\v\\',_binary 'c\hB`/<t!\\\'\\Z\','',0,'?'),(_binary 'QJ\.\\\iNN=','wp-content/plugins/slider-images/Images/3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ω\\K\\ctl:',_binary '\眬+= &9q\\o\\W5X\,MHN\'N\','',0,'?'),(_binary '^G\\*.','wp-content/plugins/slider-images/Images/4-4.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+5ǧ\X}\\f\',_binary '[K\r8/;ѧ8{\Yen7t0*~\','',0,'?'),(_binary 'U;zN#lj\','wp-content/plugins/slider-images/Images/4.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\Z\Բ0@',_binary '[Sw.\*\u6`	L\nfg\I[\','',0,'?'),(_binary 'b\\a%Aw4\\','wp-content/plugins/slider-images/Images/5-5.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '()\(Dkdˇ\',_binary '\\\\ȱ[J5\4B=c̰&h\Eh','',0,'?'),(_binary '~3\<\\]JYX','wp-content/plugins/slider-images/Images/5.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\\\u\\0Vo',_binary '\\\\Y\\F\ZQ2L8\P\!3x\)Ɂ,','',0,'?'),(_binary 'P\D\u\\\\Z\l','wp-content/plugins/slider-images/Images/6-6.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\`\hj{yw',_binary ',L\!\\\r\"\E\\\V\od','',0,'?'),(_binary 'Z/kXkּF\\R','wp-content/plugins/slider-images/Images/6.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˄c|UxThA\{\Sa',_binary '0\8p\\q\5Vj\^\s\cw\<\\','',0,'?'),(_binary 'fv\\\\\\\','wp-content/plugins/slider-images/Images/7-7.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\\\\'T\1yd',_binary 'pDtEP\%\8\`׬\G˨\','',0,'?'),(_binary '\8eTX$\\\','wp-content/plugins/slider-images/Images/7.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õۍ/miOUMW\',_binary 'xv\=H\\\C[1\zOoԪ\krr','',0,'?'),(_binary '%{\.%n,(.\\','wp-content/plugins/slider-images/Images/8-8.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\[L\,\!/\|N',_binary '\EWW7\\c\n.\ytP \rm\','',0,'?'),(_binary 'w\\z*53','wp-content/plugins/slider-images/Images/8.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';_\z\Q+',_binary '\\>tn\H\\W@\\\rM#\%','',0,'?'),(_binary 'c\\ٗ\0h\\^x=','wp-content/plugins/slider-images/Images/9-9.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p=}b~4\	l\\',_binary 'UK\\\Sx\\'8	K\,%\7,*\\','',0,'?'),(_binary 'b\\P\ \\w','wp-content/plugins/slider-images/Images/9.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@u\x\A\~\\\-]',_binary 'F\\\oː60Q\r1W\p*\joX\','',0,'?'),(_binary '\.+>I\~/H','wp-content/plugins/slider-images/Images/ConFailed_Photo_Slider.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ~U<\s|N>+x\',_binary 'Ĕ͔\iEm4*k\N\<<oG\\','',0,'?'),(_binary '\֓Wh\`\n=Q','wp-content/plugins/slider-images/Images/Products/Coming-Soon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rr\\Og',_binary 'f\)\0Iy~`K\[\Ft\2\j\\Si','',0,'?'),(_binary '4\s\5ԍj^\','wp-content/plugins/slider-images/Images/Products/Forms.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EݬgH\S\n	',_binary '\ɼi\@\Fp({D)7i#\}\r','',0,'?'),(_binary '~\r\>t5j^><','wp-content/plugins/slider-images/Images/Products/Gallery-Image.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\)\a1\?gV',_binary 'ÄĩМM\nUk\\F7Ǒ','',0,'?'),(_binary 'd~q~\	Sb#\\w','wp-content/plugins/slider-images/Images/Products/Share-Button.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	r@\;\Ԧi',_binary 'Ƹ tG傒b͹UeD/\5ț_\','',0,'?'),(_binary ' fv\h4䪖ڕ\','wp-content/plugins/slider-images/Images/Products/Slider-Image.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KJ0\\b%\\a\"T',_binary ';erSLZ\Ѭ\"`+M\[Z=1\v\\','',0,'?'),(_binary '#e\rD\\v\m/\','wp-content/plugins/slider-images/Images/Products/Slider-Video.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7L\	oQ\\*_',_binary '\)*W\(.\3SP\\\c\`\l\fD','',0,'?'),(_binary '\"h\#\	','wp-content/plugins/slider-images/Images/Products/Tabs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ǃ\om^-\e',_binary 'z>K\i\=\jGW;\\}m\\\lJJ[\n','',0,'?'),(_binary '2%\j#\*\Z\'\','wp-content/plugins/slider-images/Images/Products/Timeline.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6!~j\\\}܀>i	\',_binary 'Aw\\;)KW7x\\D\:\Ki9@\\X<','',0,'?'),(_binary '0\c\J}>','wp-content/plugins/slider-images/Images/admin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\g\\P\2k,#i',_binary 'Ln\J%VJ]\=\ܒɹ~gLu4','',0,'?'),(_binary '7\:X)\u4Q','wp-content/plugins/slider-images/Images/ajax-loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\i\WV\"',_binary 'bd Cw\2\*g\.\/\Hhb\','',0,'?'),(_binary 'u+4Us\:WD8','wp-content/plugins/slider-images/Images/icon-1-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k&~r\F\6V',_binary '\9\:\qØbH\"Ar䟃\mXt\\','',0,'?'),(_binary '\\Iٳ\0\\4	\\','wp-content/plugins/slider-images/Images/icon-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\\-٦\\*hL',_binary '\{mN\q@1lK\'EFu\\\\\'i\','',0,'?'),(_binary '\¦*y\E\?\','wp-content/plugins/slider-images/Images/icon-10-10.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z`\]b5d\ZC\DX',_binary 'h\s֯zt\\4\c,tg\\	\r','',0,'?'),(_binary '*\\,X','wp-content/plugins/slider-images/Images/icon-10.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rº$[3\J+',_binary '@<mu:\:\\θ\h[D\/O\m	','',0,'?'),(_binary '\l\1Y1s7\\"V','wp-content/plugins/slider-images/Images/icon-11-11.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ؘd\\FytL=\',_binary 'z\}\0P\\f\\ڵ3=\lV^*\.','',0,'?'),(_binary ',i8\a\w\$#]','wp-content/plugins/slider-images/Images/icon-11.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r5ؾjR\\2 S',_binary '	<<-x*!M7&`Z6\i*3Ц','',0,'?'),(_binary '\BF\HT\vt\\','wp-content/plugins/slider-images/Images/icon-12-12.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\XN9Dgn>',_binary '&\N\䓨Mo\rbxCR/^','',0,'?'),(_binary '\\\\\H\%+','wp-content/plugins/slider-images/Images/icon-12.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<@xGMX\a\ˋ',_binary '\~\7\\L@.9\\A-lEe','',0,'?'),(_binary '@\\\\"\2\','wp-content/plugins/slider-images/Images/icon-13-13.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\CCzP\\8#\U',_binary '$i/\\\j-\ڢ\\.\\?>\','',0,'?'),(_binary '\\X\7kQ\rOJ','wp-content/plugins/slider-images/Images/icon-13.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\A\=LyERY+-&',_binary 'Z\J\Q\(PA؈A\{aڭUv','',0,'?'),(_binary '\5\/ϸ','wp-content/plugins/slider-images/Images/icon-14-14.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ԃ \7E\',_binary 'WK{/\nŗv\=*s\I-Ö\*','',0,'?'),(_binary '8hY\r\?u\p|','wp-content/plugins/slider-images/Images/icon-14.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oL\H\,gr(\\\\ZQRy',_binary '@\\'\1ު=\H>5n([\','',0,'?'),(_binary 'Ġ\r\DQBhaB','wp-content/plugins/slider-images/Images/icon-15-15.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '҂$rw\ާ\_',_binary 'K\~\K\\HH}\׾Ce@\0\0','',0,'?'),(_binary '/ȿY3ҳ','wp-content/plugins/slider-images/Images/icon-15.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.Ϩ\'3B嵤',_binary 'Sm5Cx\nvk>\ԱWX8ٳ,mB$','',0,'?'),(_binary '\@&\\0=s*H9','wp-content/plugins/slider-images/Images/icon-16-16.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[9Vrm/\e',_binary 'WΗAaM2y%\-Z|G\\+\','',0,'?'),(_binary 'e,\SI\F\䟲}','wp-content/plugins/slider-images/Images/icon-16.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ؘ\>\GJ\t',_binary 'H>\0\';.\M[$Ө g\\\^\%y','',0,'?'),(_binary 't\f#\"\\\r','wp-content/plugins/slider-images/Images/icon-17-17.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v<jU\֭\0q/',_binary 'dU\ϲ;\k겥\9\B\ͨ:\'J\VTx','',0,'?'),(_binary 'Ai\m[\q\n+','wp-content/plugins/slider-images/Images/icon-17.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qO/,\HB\',_binary 'Iɖ\] mP\wI/1$}6l#\V\1','',0,'?'),(_binary 'ױdM|pb','wp-content/plugins/slider-images/Images/icon-18-18.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r=cyT7X-',_binary '$h(I\<8O\ʗ`\\'\Z\Z1\}\`\','',0,'?'),(_binary '\s9]\\7rr\\B\lY]','wp-content/plugins/slider-images/Images/icon-18.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@B\"؀\4\',_binary 'MpHb\o~v\0\\"dC\\s\nR\\E,','',0,'?'),(_binary '{.\?\\iNU','wp-content/plugins/slider-images/Images/icon-19-19.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\	?\fp',_binary 'Mތ~l\m\'mÖg7*hu\','',0,'?'),(_binary 'bx\Z\(\\AOo','wp-content/plugins/slider-images/Images/icon-19.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5y\tx\4\\#\Z',_binary 'O\ԡ~m;0&\٠\\rW3-\\\\\ګ','',0,'?'),(_binary 'nj\ߘi\۩\ݘr','wp-content/plugins/slider-images/Images/icon-2-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\^\\4fz6e3d',_binary '\{p\\m|Q\p\\5J\','',0,'?'),(_binary '&Vw\ʕ\TꔘT\','wp-content/plugins/slider-images/Images/icon-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'һDϛ\NN[_',_binary '\\rd$LŻ`\~O\\\_K','',0,'?'),(_binary 'ƅ\)\Ƴ,\qX8~\','wp-content/plugins/slider-images/Images/icon-20-20.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J)\ON1\\ V\',_binary '34\0\\ȗ\+[?)09N\r0U\K','',0,'?'),(_binary 'q\#Tvu\\F','wp-content/plugins/slider-images/Images/icon-20.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{]B\\<#ǽ',_binary '\ P\\vA9Ë\]ӂkݵSc\','',0,'?'),(_binary '^Kf\\\=-ι[','wp-content/plugins/slider-images/Images/icon-21-21.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\eV\\Ȏk',_binary 'z\\\\3LYuTyWI\\qH\	\\','',0,'?'),(_binary '\T^W\`nq\)','wp-content/plugins/slider-images/Images/icon-21.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kp\쪱 C\\\',_binary '\\bm74(M&~G\Ť1','',0,'?'),(_binary 'f#(׀6ӹ\\\\','wp-content/plugins/slider-images/Images/icon-22-22.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\:\nox=\\_',_binary ',?\\$\'.B\n\L7hsI\U\+@','',0,'?'),(_binary 'z?\\=ZEs\n\9\','wp-content/plugins/slider-images/Images/icon-22.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\_yfyF\4_\=',_binary '\ږƈ3y\\}ykϹ\~H\\y\p','',0,'?'),(_binary '8i\\P8\:','wp-content/plugins/slider-images/Images/icon-23-23.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cܡ\C\[Cx',_binary '\\B[\\tUK	~\\\0*>щf','',0,'?'),(_binary '#\Zr\\\\\B\n=,j[','wp-content/plugins/slider-images/Images/icon-23.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nWb&3rMXA',_binary '\\?RkIÝ\pZ?0p\X->\','',0,'?'),(_binary '\\_JЩ\׾C%S','wp-content/plugins/slider-images/Images/icon-24-24.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n\ח\\EEU',_binary '$w\6\rpz˂\\j\pدژX\\U','',0,'?'),(_binary '\Ŝ\`^ּ\kS]','wp-content/plugins/slider-images/Images/icon-24.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Oa,޼2y\\n\',_binary '\!{\\-\Cx/DB\_u\\=XڜS','',0,'?'),(_binary '\\pGx\\\\<\','wp-content/plugins/slider-images/Images/icon-25-25.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\D<3{\O',_binary 'N̈́٘_K;\\2̠D!\6\\S4','',0,'?'),(_binary ')\]kDf1i!c','wp-content/plugins/slider-images/Images/icon-25.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\)\\ȟJGW3',_binary 'm\/\49U\\g\\\L\\n\mR','',0,'?'),(_binary 's\Z\Ä\\'N\\0','wp-content/plugins/slider-images/Images/icon-26-26.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\\N\pB3\˖',_binary 'd/\c\<\%o\\\\\\D\m\@!','',0,'?'),(_binary 'r\<&\n\3i\k','wp-content/plugins/slider-images/Images/icon-26.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\X]Cև\',_binary 'qAk`\PzB<\\\nև[\mv\\\q)','',0,'?'),(_binary '>\Z6\C','wp-content/plugins/slider-images/Images/icon-27-27.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\d$~C%*B\',_binary '=\m3qUeg\\8Q\A=-\hޝf\s\H\','',0,'?'),(_binary '*;8(\oiB','wp-content/plugins/slider-images/Images/icon-27.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DS\e%\\\',_binary ',\|N\G[e&W\҃2\Zǩ\\\','',0,'?'),(_binary '\=fvz\mV1b\x','wp-content/plugins/slider-images/Images/icon-28-28.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\\\|4\W$V',_binary '@\zY\\|D\\+_\-\'n\\ZU\sX\','',0,'?'),(_binary '?\\\ϥg!\l\','wp-content/plugins/slider-images/Images/icon-28.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P2JKV\\X\',_binary 'hpy\+}\N<ו\\c\׫\r<','',0,'?'),(_binary 'Q-D\\{;6\09;','wp-content/plugins/slider-images/Images/icon-3-3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӗ:\J\U\3	(',_binary 'iߗ|њ\"a?	噪bv\b\\L/p\\','',0,'?'),(_binary '`eqPߊ','wp-content/plugins/slider-images/Images/icon-3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`sЊr	\\65p',_binary 'Pa\w\_\(\X\"X\Y-\r\','',0,'?'),(_binary 'p;[@\7cs^','wp-content/plugins/slider-images/Images/icon-4-4.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~0\n\_j\BPܩ7',_binary '\Tb@cpy \\r_U:\SI\m܇','',0,'?'),(_binary '-7q~f\e\\|GB','wp-content/plugins/slider-images/Images/icon-4.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c:@UԿ\nc\%\\',_binary '-f!\"zФ\rJ!\\JxT#S-\','',0,'?'),(_binary 'X\\\bD~I\R\','wp-content/plugins/slider-images/Images/icon-5-5.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\)=N\n\y\',_binary 'F\`7J\\&\Ӽ_\\A\Jy','',0,'?'),(_binary '@[\ \R<G=]\','wp-content/plugins/slider-images/Images/icon-5.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y2\\r6k88Ԭ',_binary '¦5;\U&AQ+\A\N8','',0,'?'),(_binary '\\&$\\x','wp-content/plugins/slider-images/Images/icon-6-6.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\\\[\\',_binary 'L\\>\rWѼh\5\\\-ݰ\','',0,'?'),(_binary '&\\\2C\;~\0','wp-content/plugins/slider-images/Images/icon-6.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\q\p\K3\',_binary 'ۆl\\f\,\,hj\/\<rSADjib','',0,'?'),(_binary '4\/}\$\','wp-content/plugins/slider-images/Images/icon-7-7.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\3F^\I.u\7',_binary '\\[TډYh[؋è\\\2`$|\','',0,'?'),(_binary '+L\W&)3-\\','wp-content/plugins/slider-images/Images/icon-7.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Xma*\0~\\',_binary 'μrj}9\\ȐFi\\pNF&ʥ','',0,'?'),(_binary '	\)\2\9\','wp-content/plugins/slider-images/Images/icon-8-8.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9k/\\\$at\',_binary '\\\V\r?xC\Lv.IhGS:?\F','',0,'?'),(_binary '%\\n4Ji\','wp-content/plugins/slider-images/Images/icon-8.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~kJ\\\\',_binary 'c\\(\\p0>6\3\?GPsr','',0,'?'),(_binary '\(v\0}','wp-content/plugins/slider-images/Images/icon-9-9.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŭ$\\L-\0',_binary 'ל\\\mnɴcoɵ;3&l','',0,'?'),(_binary '\\Zl{\0\$6\\','wp-content/plugins/slider-images/Images/icon-9.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\~$\\ަ\r\ufq2',_binary ',\\v>0^).}\i\ۣ]F)$','',0,'?'),(_binary '<Y\n\\QW3','wp-content/plugins/slider-images/Images/nav.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '㻄b8\\\(h\r',_binary '\f\Z\]NWv\\J\{mD\pgm#.<V','',0,'?'),(_binary '-͎y\4 &A֔','wp-content/plugins/slider-images/Images/next_1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{T?jojFa\\',_binary 'c\aV@;\\ I\"!2\a\rQ^\S','',0,'?'),(_binary '\YD5\\X\!2\','wp-content/plugins/slider-images/Images/next_2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\r\rX\\0\[<',_binary 'L`\{\\GӦV3l*:\B\','',0,'?'),(_binary 'SD/$\j\\Ӑ\\`','wp-content/plugins/slider-images/Images/prev_1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x_~\M\j6%)',_binary '\Zt\v!\MU!|\\jFo^.\\,','',0,'?'),(_binary 'yMɍm2\PK','wp-content/plugins/slider-images/Images/prev_2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\1FfT1`',_binary '\ZZя\T(#	\j]n8ŭ=FCN\Y','',0,'?'),(_binary '\rR5\\%\g','wp-content/plugins/slider-images/Images/rich-web-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']4\\؍ItedD7',_binary '\~\ݪ7\\.%J\ȇ6fv\/y','',0,'?'),(_binary '-\of7,%f#.\','wp-content/plugins/slider-images/Images/transparency-grid.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[^\Q\Ǫ\r:;5',_binary '\˝?\\#\O	\C\M\\\\n\0VY','',0,'?'),(_binary '\	\:UzX~>\','wp-content/plugins/slider-images/PHP/RW_Img_Slider_Accordion.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$+\L<Q6\@$aV',_binary '\:\!\#!.g%i\Ro|	\$','',0,'?'),(_binary ',\\,\\=cU ','wp-content/plugins/slider-images/PHP/RW_Img_Slider_Carousel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\P\"\\Z13\/',_binary ',`Q\dɥ\jz+g\VRR.3\j','',0,'?'),(_binary 'dԪ\>\~b\','wp-content/plugins/slider-images/PHP/RW_Img_Slider_Dynamic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H\ET,\\',_binary '\h\Z;D\'\0E\*\g\nxbv','',0,'?'),(_binary 'Ț4\GI\9`\','wp-content/plugins/slider-images/PHP/RW_Img_Slider_Fashion.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lYZ\\.?\k\\',_binary 'c2KҥMViJ\\\?\ \\s\0s','',0,'?'),(_binary 'ĝs~u\h\	','wp-content/plugins/slider-images/PHP/RW_Img_Slider_Flexible.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\ٓE(\Z\"',_binary '1BG\\N1\\[\\|p\8x\\\eݻ֍8\','',0,'?'),(_binary '4d0\?,\,','wp-content/plugins/slider-images/PHP/RW_Img_Slider_Navigation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{[+6\+?',_binary '٨]\D0N\\3\F+5g\K\.\','',0,'?'),(_binary '-.Z\\o^\\ur','wp-content/plugins/slider-images/README.txt',0,_binary 'L\`zitCL\=\',_binary 'L\`zitCL\=\',_binary '.k\0&\\2`7\08\\ Qˠ\\:','',0,'?'),(_binary '\"tK\Xz\ۻsU]\','wp-content/plugins/slider-images/Rich-Web-Products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.\\qWͅ',_binary '\U\]h\h\\Z N\\ft>R:2\\x\','',0,'?'),(_binary '\㮅J4zB','wp-content/plugins/slider-images/Rich-Web-Slider-Admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\,؞\\g\\[',_binary 'Gw=6N\\4\\%6i!mVS','',0,'?'),(_binary ';9\07SU','wp-content/plugins/slider-images/Rich-Web-Slider-Admin_two.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?9M\\<UyªP\Y\',_binary '[\n\}rZ\4?\õٝL\"Y\BD\','',0,'?'),(_binary '):\v1n\ɑ_IP','wp-content/plugins/slider-images/Rich-Web-Slider-Ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6A\\KL\+\\-\?\"',_binary '\\ht|h}\\\\5d$yA|','',0,'?'),(_binary 'l0`!\pA\4\','wp-content/plugins/slider-images/Rich-Web-Slider-Ajax_two.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',Rlg\}',_binary 'O\\rB̳1HC\LڹA[ϯ','',0,'?'),(_binary '2k_GԆ5pk','wp-content/plugins/slider-images/Rich-Web-Slider-Check.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Pg5\\\F\z1',_binary 'j\k[_P4 ;]\ۢ\=9\Y\c','',0,'?'),(_binary 'xaª5s/K','wp-content/plugins/slider-images/Rich-Web-Slider-General.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\sl\=2EOT\n$xz@#',_binary '\\ZK\\\\Iz\a9\-z-\O)N\r\\\','',0,'?'),(_binary '!ֺywo%\ܗxu','wp-content/plugins/slider-images/Rich-Web-Slider-Header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '嘯X\\Pd27J\',_binary 'k\\@\mE\\!M,gzDFe,&Fr4','',0,'?'),(_binary '\*\0]\\\щġ\\\','wp-content/plugins/slider-images/Rich-Web-Slider-Install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\%2_\L&',_binary 't\0Sg|,nm\'\r\y\';3^G\4','',0,'?'),(_binary '\0]\񦆉(C\\','wp-content/plugins/slider-images/Rich-Web-Slider-Shortcode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X@f֘\\\f\\r-*',_binary 'vc S@?\\>\23;>\\0s=','',0,'?'),(_binary 'G9\rA\\솔o','wp-content/plugins/slider-images/Rich-Web-Slider-Widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'N\*k\'',_binary 'Dw.Y\\X}d!	\\`\z,e\VJA\\','',0,'?'),(_binary '@\\\`\e\_fr','wp-content/plugins/slider-images/Scripts/RW_Img_Slider_Accordion.js.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2ld\M\\\k @',_binary '\\]T\bPj\8\Uixd/e\j|','',0,'?'),(_binary '\\\\\\Ԋ}4>','wp-content/plugins/slider-images/Scripts/RW_Img_Slider_Carousel.js.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\u\\Ğ\*6\\j',_binary '#\\\쿵\\	#ݯm\"\\rӹ\\','',0,'?'),(_binary 'zХ\\n\>#iC\','wp-content/plugins/slider-images/Scripts/RW_Img_Slider_Dynamic.js.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8HH~\\\eRzgQw_',_binary '\\\q\:N7\\G\ А\X*\PQ7\','',0,'?'),(_binary 'q\Xߊ\\g\\g','wp-content/plugins/slider-images/Scripts/RW_Img_Slider_Fashion.js.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TZ\.,\rAxq2U@b\',_binary '1؛;&\0jzw\\הD:i\p\\\','',0,'?'),(_binary '\<Lq\K\R+s8','wp-content/plugins/slider-images/Scripts/RW_Img_Slider_Flexible.js.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BZ@\\< \0',_binary 'A~v\m\\jۏ?\\cHϷ\6\\','',0,'?'),(_binary '8)\\S\\','wp-content/plugins/slider-images/Scripts/RW_Img_Slider_Navigation.js.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\_K\X\\',_binary '\nx\؃OT-~Nn.\C','',0,'?'),(_binary '\v\+O\\.\,','wp-content/plugins/slider-images/Scripts/Rich-Web-Slider-Admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\J#\+\Z\',_binary 'X8\^\Y8c~?#k\\','',0,'?'),(_binary '$s=^ <\Q03L','wp-content/plugins/slider-images/Scripts/Rich-Web-Slider-Admin_two.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3%-\r',_binary 'L:j\q\JK\8/\S\\\2\7W:\r\AӮ3\','',0,'?'),(_binary '\wzΤfz(E','wp-content/plugins/slider-images/Scripts/Rich-Web-Slider-General.js.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cb(C1V:\"J\',_binary 'p5d\Q\ZP\\=\\:\3@zR\\\y','',0,'?'),(_binary 'x&ɲ~42\\8','wp-content/plugins/slider-images/Scripts/Rich-Web-Slider-Widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary '\n\\\\358LK\','wp-content/plugins/slider-images/Scripts/alpha-color-picker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|3ܕ&[TP\"\f\',_binary 'i̧ ̪hZϬ\\\0?\V.\a','',0,'?'),(_binary ' =f\\\,MG','wp-content/plugins/slider-images/Scripts/fashion.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0S7\0i\'w%6\'',_binary 'u\o\6> e\Z5(+ٍ*\\#9\\','',0,'?'),(_binary '\9u\'M]ȷ.J','wp-content/plugins/slider-images/Scripts/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\)/\%W>',_binary '׈>*\M<L8\C\C<h[}\,\','',0,'?'),(_binary 'u\պ@zZ\p[\u','wp-content/plugins/slider-images/Scripts/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%$\\!z',_binary 'ό\;R\\\\s\x}\\|4>\ƙ`2','',0,'?'),(_binary 'JdEiMa\5','wp-content/plugins/slider-images/Scripts/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\9OhMff]>\',_binary 'EVS`$?\aj`)x\0\\+X\K','',0,'?'),(_binary ':\\sr۸Z\','wp-content/plugins/slider-images/Scripts/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]%\5ptHg',_binary 'E4.t)\|(7J\\>n;\Z^\h\nØ','',0,'?'),(_binary '\~~<@?\II	#','wp-content/plugins/slider-images/Scripts/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\6{\\9AH',_binary '\\r8\\γe\y̿ǹ\H\-_','',0,'?'),(_binary '\PH?\uQ\ڹ','wp-content/plugins/slider-images/Scripts/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|n\\\\pv&\',_binary '\1+<K\M\˷F@&R̲\t|a==m\R\','',0,'?'),(_binary 'HIP6GGrN>\n\\\c','wp-content/plugins/slider-images/Scripts/jquery.anythingslider.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oN\(cM1A',_binary '\7h5\Pԑg\\p~k\\\W\&\','',0,'?'),(_binary '#\\TI۹o\r\','wp-content/plugins/slider-images/Scripts/jquery.colorbox-min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̥$\P̫D\\M',_binary '>9>c)\i1u\ng,\Zۊ\(\','',0,'?'),(_binary '{5AI\n\,','wp-content/plugins/slider-images/Scripts/jquery.easing.1.2.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\0\\\ \\\0\H',_binary '&~KJ\ZY\5\\n\\\\\\U','',0,'?'),(_binary '&^\	jG\\D+','wp-content/plugins/slider-images/Scripts/jquery.flexslider-min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<a\Mɉ?q/HsJ',_binary '\\\2\\xp\\5\T\\Y;\\E8\T\','',0,'?'),(_binary ')\>ptf\%\','wp-content/plugins/slider-images/Scripts/jquery.slideshow.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BBEX\V\w w',_binary 'jd\UwQ\\0*%虩m7?3\	jQG','',0,'?'),(_binary '\'\~ʑL\rP#3\,n','wp-content/plugins/slider-images/Scripts/jquery.tinymce.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\;aٷ',_binary 'E\r\n\Y1E;}\\0|KH\\ّx*e,','',0,'?'),(_binary '\\$o\wQBH','wp-content/plugins/slider-images/Scripts/jquery.tmpl.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+&T\rgan\m\cd',_binary 'eT/C_Ox\". G}Y&#F.T','',0,'?'),(_binary 'kg\r<f\8X.\"k\\','wp-content/plugins/slider-images/Scripts/mislider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dr$J\F8\',_binary '/l\mܔK\\@؈ԿDMO\49\L','',0,'?'),(_binary '\Z\f\{\','wp-content/plugins/slider-images/Scripts/plugins/advlist/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qNt\"p\,\\',_binary ';Pom\b\o\f\=\rs@\\\\\','',0,'?'),(_binary 'f\S\<\=-\\A','wp-content/plugins/slider-images/Scripts/plugins/anchor/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\\!\TM\@du',_binary '\ZRMk\\h$=E\\Ϳ%\9\0g-Cl\','',0,'?'),(_binary 'rH5h\@s','wp-content/plugins/slider-images/Scripts/plugins/autolink/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȏ\n\N\0f\zAKYE',_binary '̅z\\\\\\M/\,RtTK\i{\\','',0,'?'),(_binary '\"X3;K9\\,','wp-content/plugins/slider-images/Scripts/plugins/autoresize/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OcWɵ;\,CU',_binary 'r{M_	,`z\\\\#$\SoE3','',0,'?'),(_binary '_g_ hm\no1','wp-content/plugins/slider-images/Scripts/plugins/autosave/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\F-\le\-e',_binary 'u/6ã\ry\R\\ߍp|\Z\\\','',0,'?'),(_binary '1jH\\0\n\-`W','wp-content/plugins/slider-images/Scripts/plugins/bbcode/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\3r(L\r\nA',_binary '\\̓M+U9B\Z\\v-}g\"J\\-','',0,'?'),(_binary '\XJ^s#hS(','wp-content/plugins/slider-images/Scripts/plugins/charmap/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=B쟄P\rL\\',_binary 'x[G-\90b.zG\\az\>\r','',0,'?'),(_binary 'Oxx#*fe\\)\','wp-content/plugins/slider-images/Scripts/plugins/code/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\$ӅߜE\',_binary 'Ȑw[L\\iA)fpX,)\nY`;\\&','',0,'?'),(_binary '\0UVT\kM۶','wp-content/plugins/slider-images/Scripts/plugins/codesample/css/prism.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?}T\\w\\01n\#a',_binary '$\e˂!~~:\Z\UH6?\	\\7\','',0,'?'),(_binary 'F\L\k8j\L\SX0','wp-content/plugins/slider-images/Scripts/plugins/codesample/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\A㭀}\r\N,',_binary 'VO`3\\\\\\\\\Dn\2zki\','',0,'?'),(_binary 'Ack\GeӅ\\.\\','wp-content/plugins/slider-images/Scripts/plugins/colorpicker/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ͶU裦\h\',_binary '\ehӧ&έA3+WTh\n\Z)\?','',0,'?'),(_binary 'pz\r\d\:	\00e\','wp-content/plugins/slider-images/Scripts/plugins/contextmenu/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1L$\Ab\\D\*',_binary 'U91Rh\\\\Y3^\\','',0,'?'),(_binary 'L\ j.5;\\$\n','wp-content/plugins/slider-images/Scripts/plugins/directionality/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Er\HD\D3@',_binary '<o@:\-\Eg\\\)6^Ѽ\'','',0,'?'),(_binary '\8M\J>\Zn\\\'\\','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-cool.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n.DZ\',_binary '8w=\\4R\\\\1_\~\\@\r\`\v','',0,'?'),(_binary '\\+\\\$<r\','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-cry.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+\ʒ0\'>ِ]\',_binary '\\\5V6Ht\;Z33\J\0	','',0,'?'),(_binary '7\!\'<Q0X','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-embarassed.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ցq#nk	\\|\',_binary 'Yo\r>\·\\FAnGg\nkBkeq','',0,'?'),(_binary '\lL\Z)\r\\<\Xi','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-foot-in-mouth.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-Jе/f\\\*8\',_binary '\P2\\\\\X\t\\=o4H5\0V\\\w','',0,'?'),(_binary '\40\f\V2⍢L7\?','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-frown.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y/\U\Q~\0',_binary '\/鸷 ,\e((\+T\;\\"l*','',0,'?'),(_binary 'pY\b\Z[b6	\','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-innocent.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\wȢ%\KL',_binary '\\rNi\\	\mt!a2.\\\/N\;\','',0,'?'),(_binary '\hh.|\Ҩ\\2R','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-kiss.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\_9`u])O$.M',_binary '\ǽv_\z߁\\8\5`=հ\n\;\','',0,'?'),(_binary '0kG;I\=`;\3\','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-laughing.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@]\<$\ESF',_binary '9Ǖ#\\Ti\)(@\\#6\\\','',0,'?'),(_binary '4\Z\\\n\4\.\K','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-money-mouth.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\Ij!\]%',_binary '\}C\24J\s=.\0\g |)Fzk>#[\','',0,'?'),(_binary '(	\GaB\n\\\','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-sealed.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k7}zb',_binary '\ծD\\\3$AA\J\aD\\"\vU\','',0,'?'),(_binary 'WNXw!_cO4l','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-smile.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')hd	f\(\Ѩ',_binary 'CO?GU\p#\ړ?lYxf\l\','',0,'?'),(_binary '_\`wd;~Or\','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-surprised.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.nc{\\\k\ \\>',_binary '\\j\mCW<)\\\SZa3Y','',0,'?'),(_binary 'd\\1r:\Ł\v','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-tongue-out.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^ûG\\:QӡH',_binary '3Oqޥ\c\\Y-:ZL\!U\;\','',0,'?'),(_binary '\R\\\\;5M+]','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-undecided.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<3\\`*',_binary 'HV\\8O\nT<jVV<-A#3\G','',0,'?'),(_binary 'j,5gۯ\\ j`\','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-wink.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ru}+MҤ',_binary 'g\\Ɂ\\;+\̅κ\r^\\\0`M1i߈Ő','',0,'?'),(_binary '\BP^KD\<a,','wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-yell.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\?\'\r',_binary '\v1\\\-\䃫X>(\t\\Z<@b7C','',0,'?'),(_binary 'O\\q\A@r~','wp-content/plugins/slider-images/Scripts/plugins/emoticons/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"$G|\r\܉n\|',_binary 'C#\43\bXYd\\`\_\"$\\\	e','',0,'?'),(_binary '}ߌw^\t}Fc','wp-content/plugins/slider-images/Scripts/plugins/fullpage/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fƄ~fej\H',_binary '\\8xSy\-\E|\1X\'ejvQo?)\\','',0,'?'),(_binary 'u\C)\L','wp-content/plugins/slider-images/Scripts/plugins/fullscreen/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1T)W\\\ZdY',_binary '\uG4?m;`\ß7-\\F\r ','',0,'?'),(_binary 'ݳg\\\\x','wp-content/plugins/slider-images/Scripts/plugins/help/img/logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dZR ',_binary '\=\>iI\\CSuz\\=V\PaD','',0,'?'),(_binary '\:\fCs\\d','wp-content/plugins/slider-images/Scripts/plugins/help/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8`R\e8\0vV\',_binary '\\	@Mh0V4jK^\\2^f\ۖ蘁(\1','',0,'?'),(_binary '>Nﶣ\z	%҂o̡','wp-content/plugins/slider-images/Scripts/plugins/hr/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	%>);',_binary '؃F\\S\[k\\&f 6+b>','',0,'?'),(_binary '\G\@~׌\\\','wp-content/plugins/slider-images/Scripts/plugins/image/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0D5\N!_a8 ',_binary '\C՚\0\PbA2\0\\Z\p+q~s','',0,'?'),(_binary '\H\zo\*\Z	','wp-content/plugins/slider-images/Scripts/plugins/imagetools/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\U\S\F\h\]\~',_binary '8\\Y\rf\\\^\"\i\\\r\@\','',0,'?'),(_binary '\J\(\\|0B','wp-content/plugins/slider-images/Scripts/plugins/importcss/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\LC;FÑgq',_binary '\m$ک\[-\r\8\\>','',0,'?'),(_binary '\]ՠ*m<\V','wp-content/plugins/slider-images/Scripts/plugins/insertdatetime/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Ϙ\n\0\',_binary '\\'2&X\\\ɕG\W\\e\\\0','',0,'?'),(_binary 'W\Uʬ\q\ӷ','wp-content/plugins/slider-images/Scripts/plugins/legacyoutput/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ws&~g㄄?\Fp',_binary 'JDӷ-\\\V=t1A[;nQ@a','',0,'?'),(_binary '޶%\x\\\0\','wp-content/plugins/slider-images/Scripts/plugins/link/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\+^\\zUNy',_binary '#W+KGDh-f~d\ZMy\\NE\.\ݟ\\','',0,'?'),(_binary 'iK\@	^SJ/y','wp-content/plugins/slider-images/Scripts/plugins/lists/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',B\c\Mɨ\:Z',_binary ':y\`#vѫ^\\Z\\\rq-E̐','',0,'?'),(_binary '\0V[>k\','wp-content/plugins/slider-images/Scripts/plugins/media/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\R\\\\oeIT',_binary '\06үbSR\\Z?E\O\O\#bI\','',0,'?'),(_binary 'X\\R\\HU~\l','wp-content/plugins/slider-images/Scripts/plugins/nonbreaking/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"xM\\\u\\l7Y',_binary '}\DDr?\a;f\s3K\"J\QaSx\\\J\}\','',0,'?'),(_binary '\nJ$\q!\!ߝ','wp-content/plugins/slider-images/Scripts/plugins/noneditable/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '37\\I1h\T',_binary '\\rG\\Gs\\׷M;!\Q\','',0,'?'),(_binary '0\ͱ\X+9\r','wp-content/plugins/slider-images/Scripts/plugins/pagebreak/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\WA!\\:e:\RJ',_binary '\I`$A4u:,u\\=8\	-N֦K>V','',0,'?'),(_binary '\'194v\.j\e疿','wp-content/plugins/slider-images/Scripts/plugins/paste/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	ݧ\9Z\n',_binary '`C\,\\xYY}tx\ɶMVB\r\^8Q','',0,'?'),(_binary 'YV^1\\0\wY\\','wp-content/plugins/slider-images/Scripts/plugins/preview/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gF_૽L!\',_binary '\p\駱p<յ85\\6a\XU%:','',0,'?'),(_binary '	G\U177\\','wp-content/plugins/slider-images/Scripts/plugins/print/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\o\N+\EDc\8',_binary 'n\Z\kM C9\dmtS2xLKPl&m3','',0,'?'),(_binary 'c৤?\$?5$','wp-content/plugins/slider-images/Scripts/plugins/save/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\JΛ\\{TP\',_binary '4\[ѽ\f(_\RDxIe@$?⊭\iK&','',0,'?'),(_binary 'W_Kxѕ;~','wp-content/plugins/slider-images/Scripts/plugins/searchreplace/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u3w]\R&dIz\0',_binary '\޴\%)/#SvE-IG\\\pT@\y\\0','',0,'?'),(_binary '7Yh;!M\T','wp-content/plugins/slider-images/Scripts/plugins/spellchecker/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!V\\\&L\̂f',_binary '\uU[1\\\ ]\\25\M\','',0,'?'),(_binary '0WpB$\\4},m','wp-content/plugins/slider-images/Scripts/plugins/tabfocus/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^plPg+E\\\',_binary 'V\Hhs~_nu\*;\Ƶ<\S','',0,'?'),(_binary '\Ő\O\'[\\\Z','wp-content/plugins/slider-images/Scripts/plugins/table/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(Zr\y\)\ri',_binary 'tZ\@\9\\\tzQ\q\wINB\rsH','',0,'?'),(_binary ')؋\t(G~!','wp-content/plugins/slider-images/Scripts/plugins/template/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|wF!o6\ν',_binary '\n\ V;;T\&v\wC%\ča','',0,'?'),(_binary '\KK	\~C\','wp-content/plugins/slider-images/Scripts/plugins/textcolor/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\m\=\\/]Bj',_binary 'C\6B\D(\.(\h~l	\EO','',0,'?'),(_binary 'GJ+\"\\\\\w*g','wp-content/plugins/slider-images/Scripts/plugins/textpattern/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1}8=ՏæWK9F',_binary 'Ԇٛ\W	\~7M\\\#\','',0,'?'),(_binary '\fߕ؟P\rxC','wp-content/plugins/slider-images/Scripts/plugins/toc/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9h٬\?^',_binary '\PSA\1WV&0Hlw-`;\~\E','',0,'?'),(_binary '0:h\,\ZĒd','wp-content/plugins/slider-images/Scripts/plugins/visualblocks/css/visualblocks.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\~j\ZF@\',_binary 'iN, \\a\χzW\<*ꗾ\x','',0,'?'),(_binary '\ͮ;L\"\\\j','wp-content/plugins/slider-images/Scripts/plugins/visualblocks/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\]y%=Q+F',_binary 't\v\m_i3r8\\\\\fo0','',0,'?'),(_binary '8\0,C+}0O\','wp-content/plugins/slider-images/Scripts/plugins/visualchars/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ܠTTDk\L~',_binary '|:\OT&\x(2%6\:=tJ#\C}\0I','',0,'?'),(_binary '\+;	}','wp-content/plugins/slider-images/Scripts/plugins/wordcount/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\Y\ߧԨsC\\\',_binary '7\\Em\l\F\\y\~\VV\V','',0,'?'),(_binary 'ߒ\^84\\n%Kt','wp-content/plugins/slider-images/Scripts/skins/lightgray/content.inline.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\eL\͸x\P',_binary '\\.\\F\\x#ʬ\\!\\v\\ې','',0,'?'),(_binary '\\K᩿B@\\\}','wp-content/plugins/slider-images/Scripts/skins/lightgray/content.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\{~_I˵O\K@',_binary '%\\.\"\UҚV\&\9\\]\^d%\zg$','',0,'?'),(_binary 'X\\\\\a\'\','wp-content/plugins/slider-images/Scripts/skins/lightgray/content.mobile.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Q\jP',_binary '˄n]2\\\\1TSq7 \\\rG','',0,'?'),(_binary 'pI\@$\\T$`/','wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce-mobile.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\f\p_:',_binary '\Z\r\n\޵\r\:͙\"w=!\v','',0,'?'),(_binary 'iy\Z\r\\\8.\w\','wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce-small.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l([qא\\D#\',_binary '\\sٶ\hb2.;\m`F\r^&\H-w	yV~','',0,'?'),(_binary '/\9\\HW!A','wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce-small.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2\4vLhN\!\\2|',_binary '\\3iA(\\p\\GDڔ\\\\','',0,'?'),(_binary '4кg\d\<\','wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce-small.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(i@\G\g\\0\p',_binary 'G\</\14Ņ\L\\5!','',0,'?'),(_binary '\'h7*p\Y\\v','wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce-small.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\-\\\\x\'	',_binary '{ڋ\N\o\\#X+Xe\'\_\\\>\Z','',0,'?'),(_binary '3C{+%.E\[','wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\"w\D\ktУX',_binary 'W\2`\jT;Zaͨd]qܱ\XO\Z','',0,'?'),(_binary 'ǐ\"o \H%\\\:J','wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B%Ţ6\\\\Z\ٯ\H\',_binary '\\\\L\q\\\NE\Gڤ','',0,'?'),(_binary 'H	Œ\0+`\G','wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ҒV]{[p\',_binary '\\5\\\\Wwq4\)&\\nd@\f','',0,'?'),(_binary '\38hW;͙','wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\\0)n,5=<\',_binary '-\rn\"C4wZ\\&\&Q\\n<W\6','',0,'?'),(_binary 'B)\o?|hnn\','wp-content/plugins/slider-images/Scripts/skins/lightgray/img/anchor.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a5q\ȑ_4@',_binary '(afo\\x\DpaQ6\mtk\,\\V^','',0,'?'),(_binary '}^>B\\Aa[?I','wp-content/plugins/slider-images/Scripts/skins/lightgray/img/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9K\\M:\Tf9',_binary '\\;TO`(6\\,skZc\R\+','',0,'?'),(_binary '\3FH\\KK\\n-','wp-content/plugins/slider-images/Scripts/skins/lightgray/img/object.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rdP\E}u\n/MA\\ ',_binary '#;!\\I.>\uʍ\SV\m{|\e-','',0,'?'),(_binary '4_ě\\\L\Y!	6','wp-content/plugins/slider-images/Scripts/skins/lightgray/img/trans.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7I \1FGu\j^',_binary '\ \û\ͥJ\OmO:ϙ\\\lW5','',0,'?'),(_binary 'r\\\(\Z\z\\','wp-content/plugins/slider-images/Scripts/skins/lightgray/skin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Da+ nD^E',_binary '`\tarnj\|Iʍud4\3M','',0,'?'),(_binary ']\6 Z2D&8','wp-content/plugins/slider-images/Scripts/skins/lightgray/skin.mobile.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pEQ\N\',_binary '\1is\Rh\0\e@\\\9\\w\\\\"j\\','',0,'?'),(_binary 'ޞ=V\`m.*#i\','wp-content/plugins/slider-images/Scripts/themes/inlite/theme.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\,)!U[',_binary '\0\Z\p̾-o?ʊ2VTO1-G','',0,'?'),(_binary 'g$ل`or\\.Q\','wp-content/plugins/slider-images/Scripts/themes/mobile/theme.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3^\j\Tg',_binary 'l(\@xq$\q=\})\9	0\\','',0,'?'),(_binary '\H[@F|V{o\0\','wp-content/plugins/slider-images/Scripts/themes/modern/theme.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ѹn{\mq\\'',_binary '\1\Y֦M\uZ\\\\','',0,'?'),(_binary '@\\O\\"U,Zd','wp-content/plugins/slider-images/Scripts/tinymce.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B2ݣŤ\\\pQ\',_binary 'F\ѯ+&p\"y6|S\\j\U\lS}&\\','',0,'?'),(_binary '\\\\S\\\uL5','wp-content/plugins/slider-images/Slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\tsVgy=Y#>~',_binary '\p;\\~@w\!Og=e:᪔J`Fd\}','',0,'?'),(_binary '?\4.g^:kf\W','wp-content/plugins/slider-images/Style/RW_Img_Slider_Accordion.css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ayrκώa\C\\',_binary 'C\!]\8f)\\\\\ND\M\\8','',0,'?'),(_binary '\vVe\ck\:Ύ','wp-content/plugins/slider-images/Style/RW_Img_Slider_Carousel.css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\#\Y:-',_binary 'W;\\	\\O\8-\\ \t\|I\','',0,'?'),(_binary '\\\\\W\l\C`','wp-content/plugins/slider-images/Style/RW_Img_Slider_Dynamic.css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k?\\\퓓^Z^',_binary '-\@\0Y\\hKq:^\}9<\d?K\"d','',0,'?'),(_binary '\zMm0\R\','wp-content/plugins/slider-images/Style/RW_Img_Slider_Fashion.css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\\'\B..\A\A\%',_binary 'M\\\\T&/tӵM\\0ǈ|\A;3L{\','',0,'?'),(_binary 'z\GSuZYo\\','wp-content/plugins/slider-images/Style/RW_Img_Slider_Flexible.css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$$:d\//',_binary '\KIJ\\\ϝ\\P\\\\\"7w','',0,'?'),(_binary ':\6\\=D\k\\"','wp-content/plugins/slider-images/Style/RW_Img_Slider_Navigation.css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0Լ5;',_binary 'y[\Z.e*\Z$\Lxc\4\.\\\','',0,'?'),(_binary ']é;\%}%}u0\','wp-content/plugins/slider-images/Style/Rich-Web-Slider-Admin.css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MžKeb-wS',_binary '`H<;DNȘy\^F\7\\Ԍ','',0,'?'),(_binary '\ ſ\,#\X','wp-content/plugins/slider-images/Style/Rich-Web-Slider-General.css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oZ\0\n\>+ٚq\~}',_binary '\oBn\rw|T\'\mْ\F\D̋\\/s','',0,'?'),(_binary '\{\A\a+|\\','wp-content/plugins/slider-images/Style/Rich-Web-Slider-Widget.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\\D\0ϼ	=%',_binary 'QSq\\๰\ngw*>\\;\D\+','',0,'?'),(_binary '1=\\T)u1(u','wp-content/plugins/slider-images/Style/Slider_Carousel.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u6\,?5\',_binary 'mQ\\\AYL<\\\\{\\S%=g','',0,'?'),(_binary 'T\i(i%\','wp-content/plugins/slider-images/Style/alpha-color-picker.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\D\FvTK(',_binary '\[FS%ۢO71/?[\@\]-,\B?D','',0,'?'),(_binary 'eY\C%p\n\n@y','wp-content/plugins/slider-images/Style/animateSlSVG.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NԷ2ڃ{cA\',_binary '\E59ܫ\>U\\\[\\r\\\w\r\K\;','',0,'?'),(_binary '\OD]\6\Uő\8K\','wp-content/plugins/slider-images/Style/fashion.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '՛\y**\F%8f',_binary '\\n;MN0r\\*\z,','',0,'?'),(_binary 'i}#s\+:0%c','wp-content/plugins/slider-images/Style/flexslider.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v17b\|IUA',_binary '!a\ǉYF[v\[\C\\;','',0,'?'),(_binary '\&\0q\ꌛS\vl\','wp-content/plugins/slider-images/Style/mislider.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6] ټS)\n\\\0',_binary '<g!W<\;\\>\;h)G[Ss랤\','',0,'?'),(_binary 'rr1\\\ZHPfx\','wp-content/plugins/slider-images/Style/richwebicons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\K\]Wo',_binary '/(xI\\lsl.\\\K(\h64\\\\\','',0,'?'),(_binary '>~F昱gpj\\p','wp-content/plugins/ultimate-responsive-image-slider/admin-banner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\ܫ*\m9',_binary 'IIC\\l\NK5\f,\U\Au6L','',0,'?'),(_binary '\\\\f/a\c\n\r','wp-content/plugins/ultimate-responsive-image-slider/assets/css/bootstrap-latest/bootstrap-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I)VB݄\v|\W[\u',_binary ';\\?3e\\\"`dIÂ)ۂ1Jh\\','',0,'?'),(_binary '\I\\`L\ܧnt7K','wp-content/plugins/ultimate-responsive-image-slider/assets/css/bootstrap-latest/bootstrap.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wh\\\\xdڀ\1',_binary 'K{x\DP\GG4YQ\\iW]W\\\j','',0,'?'),(_binary 'M;C\\E\"l5Xlh\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/bootstrap-latest/bootstrap.min-product.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/X1aJ\YPP',_binary '\fC\Og\+5/\\'-\k?\\U','',0,'?'),(_binary 'GdO\]','wp-content/plugins/ultimate-responsive-image-slider/assets/css/codemirror/blackboard.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϓf\\\y;\O\>',_binary '\'\DNB\\5P\\)*irY\\\','',0,'?'),(_binary 'M\b\O\5\jko','wp-content/plugins/ultimate-responsive-image-slider/assets/css/codemirror/codemirror.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(R\~\P',_binary 'L<i/\8j\Z\c)z{\{\\%X','',0,'?'),(_binary 'f#\e<dF2L\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/codemirror/codemirror.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|:4!W\rhi\',_binary 'P\9L 힚]+\ǲ\O\9','',0,'?'),(_binary '\$\\n\\E\\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/codemirror/css-hint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\y1Lyhè\',_binary '\\PC\' \\\\!m\/$28V#B\r\9Qmԇ','',0,'?'),(_binary 'Ls:\ZWu\?Ͽ\\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/codemirror/ris-css.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l*x 4X\\sA8',_binary '9\9#m\xo\l\\k	D̴\','',0,'?'),(_binary 'V`țom`\'\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/codemirror/show-hint.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c2\naNw2\\\qG\',_binary '\1\+kI_Ԁޘ\\#O\C6\n\c\\','',0,'?'),(_binary 'D~+f*̥\]','wp-content/plugins/ultimate-responsive-image-slider/assets/css/editor-modal.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`\]\HⳜ\',_binary '\\5X\\\VT0y\\ۯ	\@%\'\Ɲ','',0,'?'),(_binary '4\"1\\\\\]Y','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/css/fa-brands.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\`x*\_b	\',_binary 'G\\&\B{<,и1%	\\\J	S\\n\','',0,'?'),(_binary 'p+9Z','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/css/fa-regular.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˨\!#\&\{\\\',_binary 'P(т\%;ܰ\Տ\}P\cca','',0,'?'),(_binary '\J\n*ol\|]','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/css/fa-solid.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}%Oɕ\ 髒',_binary '5\ZEG\'8g\\@B\0P1\\8ٿ?*','',0,'?'),(_binary '\q\ph\C#\\\n\\\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/css/fontawesome-all.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-O\\\U 쑞|',_binary 'A\\<\HPrJz\[aA9[Y\Qu$','',0,'?'),(_binary '\#\'\F\pa!1','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/css/fontawesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_35T|3\儾\\'',_binary '\\\\X\0\\\ۅ\]\(y2\]\0\ȶ','',0,'?'),(_binary '\\\\\rN\\.&C','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\'\]>\\v\\2\\\ZM',_binary 'qoO$K]g3\nÒѐ\~\(R','',0,'?'),(_binary 'YP\[\Gdgb','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gOP҇č\\',_binary '\~8 ir\\nPp\n2\5DahBzP','',0,'?'),(_binary 'k\ \q\ ','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\murI1G\',_binary 'Lr7D@y\ɂ]NK(\ti\G9\\Tm=','',0,'?'),(_binary 'K\kz_A','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hq\\A\i',_binary '	q68xօ\\\s\rN~.Zخ[\"','',0,'?'),(_binary '\TֻeCʖL\b7\@','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nq*\\ZF)2',_binary '\&4\"\rQjX\mN\"\\?Po\\\\\?','',0,'?'),(_binary '\"څ\K\,Ȥd','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\\\ 6>',_binary '\@⣂L\EQ\\(ieq[N|&\Ð\','',0,'?'),(_binary 'BN\RvC\\\\_f5+','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_animated.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\0\e\\\"}\b',_binary '\L\1Rd2\\32\0?0@\\4','',0,'?'),(_binary ')[\\\KcIF~o\r,~','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_bordered-pulled.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|\P	m3\~r\',_binary 'V\ \ҏ\\ooH\uL\br\0\\؈\\\','',0,'?'),(_binary 'e\_\&uUin','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_core.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\<=2*K\',_binary 'H?\S\\ZZ\\x=k\\','',0,'?'),(_binary ',+3<\\U{\0','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_fixed-width.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fΆs睏=\\',_binary '\\_\h̤?f\\Y\\\[w\\\S\\_\','',0,'?'),(_binary '$ND\'\᫸Y2','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_icons.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zu\!~\\',_binary 'U\ս\y\œX\\!N\\"/\\:\6b','',0,'?'),(_binary '.t\.\n\l\Q\\n','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_larger.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-;\۲\0\n\F',_binary '˼O(\%<,\N!i\'v<1W\','',0,'?'),(_binary 'SyY\\r\6ߒΓ','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_list.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\g軮P\\nYe',_binary 'E\g\\'z(FTeڑأ7	\<;+','',0,'?'),(_binary 'L\\"UM8H3?BSi','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_mixins.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4vm4os0?A',_binary '\\l^\\\@KLZ+Kl7OAR\n\?\\Z','',0,'?'),(_binary 'w6![@\\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_rotated-flipped.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\\\\1\i\\\'',_binary '<\Y`R%\Ș\\"','',0,'?'),(_binary 'KY6*/oYK\`','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_screen-reader.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&E\\l\\"S\\',_binary '\\\\<S|Ȣ\qW\0)>>T;w8','',0,'?'),(_binary 'Q|0q؞=H\AY\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_stacked.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\W\&gm\\\',_binary '\K\ZEMpUk<?z\Z>aYX','',0,'?'),(_binary 'DW ,\+sz!','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_variables.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B2yA\;',_binary 'rk\زÐt\ TwgXdB`\YDfw\\\+\U','',0,'?'),(_binary '4\n\Fv\nq','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/fa-brands.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\̣.<\\\Z\\',_binary ',\\RfH1ey(GA\Փ	v+\\O','',0,'?'),(_binary 'Lr\ѓt\g~N','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/fa-regular.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\r`\6Nv\\f\ޠ\',_binary 'v\>T\\\Z\lz\$\r\}~3:','',0,'?'),(_binary 'J\'\|!Y8J','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/fa-solid.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\\̀i%̦\9q',_binary 'y\\8Ƕo%b\"\.\\8\%\(\\\T}LT','',0,'?'),(_binary '\\PE\:K\\"','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/fontawesome.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\|\s&Pv\\',_binary 'V\\Yh3V\YW|@^\n\$b1\rݷ','',0,'?'),(_binary 'j\n.\w\0R\^H','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_animated.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$SA\\\5b\\\',_binary '#\\`\o\\͑\\\\\+|p','',0,'?'),(_binary 'ʭac><{|?','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_bordered-pulled.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't7Kφ\Sq',_binary '\\0\\M\\\\N\\FAw\Y[','',0,'?'),(_binary '\3$ݗZ}^Z\\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_core.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!&3m%9O\\L',_binary 'V\7\ٜ\ῳ$LJ\dn̸A','',0,'?'),(_binary 'sJF_\r#CT1]\'','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_fixed-width.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+w\3GM\TR',_binary '\\\~\Z\e\k\=;~#I\\m\','',0,'?'),(_binary '\\)0-\\g','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_icons.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\\w\\uVq\Z3',_binary 'R3vbPV.m_:J>O~`\s\{;','',0,'?'),(_binary 'f\fp\w\[{x-Am','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_larger.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p\;j-\۪[',_binary '7\\\	\ڕF\]a|k\aQ\U\','',0,'?'),(_binary '\\9W	$\\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_list.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\4\U\'\rl',_binary 'x\\f\\k=\Uـ\0WFSz\','',0,'?'),(_binary 'D\=ͅ\\"\Kߪ','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_mixins.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@Md ܶ@',_binary '{I\T>S7zZr$D\1򮱵|qyK\\j','',0,'?'),(_binary '$ImvɆ\^\R ','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_rotated-flipped.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\\]&\wq?',_binary '(\Z	H1冔ևqܠ','',0,'?'),(_binary '8I\a\@pv','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_screen-reader.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\\q\x\`חnl',_binary 'E\%\	\\pzDdu;]W\qc\'΋(\','',0,'?'),(_binary 'pm$/\/\\͎','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_stacked.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\tyh-\,̀y}',_binary 'x 		\n\7\Z\\uӣ\f;_Ƀ\9\','',0,'?'),(_binary 'I\*\íyh}A','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_variables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O]\\\<Ex\',_binary '\0\\\b#l\i\\nu\\R','',0,'?'),(_binary 'k61#\v\l~9\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/fa-brands.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\t\\\Ri\\X*\',_binary 'nru*?\=z\gڞJf#<','',0,'?'),(_binary '\|\naB \\\r$+S\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/fa-regular.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R8>*!?|Ō\Z\a\',_binary '\\'H\TC\\rU\\\\ffj	W\\N86','',0,'?'),(_binary 'RHx8ؒ\\"ͬ>>','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/fa-solid.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2l\\1?cž',_binary '\f\\\',㴯\\/\\raW\%\','',0,'?'),(_binary '%\\O֨bVof?9[','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/fontawesome.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\do:\ ȋ\',_binary 'x\\O:֌\\0m24=\f\nco$\0','',0,'?'),(_binary '\\'\Gl\!Ґ\\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-brands-400.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0O\M\(',_binary 'يa`\#\\=\YC3 d\\G\@	','',0,'?'),(_binary 'E}|i\>˺\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-brands-400.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\WI0n°Us\',_binary 'xx\\̈́w,ҁGg\<f\O፧m.fh','',0,'?'),(_binary 'D.\wT','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-brands-400.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\-\Dv\ M',_binary '!5śRY4S肒p+k\\T\2\\','',0,'?'),(_binary '[\B\rlQ{_M','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-brands-400.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FY+/\nG3\',_binary '\Y\\\n\rǤ˟v\Y{\L\\Iy\\"','',0,'?'),(_binary 'щ\҈Rfvb\"','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-brands-400.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\"ޖX\\wKf$|,',_binary 's@\&\"\_zn\\\KAv,wSR\\\/','',0,'?'),(_binary '\x#ML','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-regular-400.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\Z\\q*\55A',_binary 'u\[\pv\\\n\\\\\Si\=>Qm','',0,'?'),(_binary '+\~t\\4\\q6','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-regular-400.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\йJ֋n0\\\',_binary 'Whð\]NlW\0\h\S\\Z\\ntc','',0,'?'),(_binary 'A\\$/*Q2\LUA{','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-regular-400.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3~\0-Z@&',_binary '\R6)\nZ3?\C\ɇ\','',0,'?'),(_binary 'bCՈW~\\\\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-regular-400.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`\\^\\-%H\\',_binary '*hMt\tO\\0f\g;\HC','',0,'?'),(_binary '/\\g邊2\<\p^','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-regular-400.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\lwEB$\\:',_binary '9\Yan1m.-ո\/Y\-i\O_','',0,'?'),(_binary '_2xXt\SA#\~','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-solid-900.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<U \ll\\\\\',_binary 'V/e];4&O$\\ߕ\	Aș','',0,'?'),(_binary '\\e\'yA%Be\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-solid-900.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\_\3\',_binary '~T%\m\\<n\\G>\j\G!\E','',0,'?'),(_binary ')-\"ka*\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-solid-900.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{2\j\\\r\\',_binary '\!wf\C\#U?ǳN\\\R','',0,'?'),(_binary '\wշ0&\\ZP\NH','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-solid-900.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ww˯sgy',_binary 'SRo8L\\\A$]g\٠r4K:','',0,'?'),(_binary '3\+ݪnɷUTY','wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-solid-900.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nAS\\\\cW\',_binary '|7p0z\r	\ǹU\c_\/6H\','',0,'?'),(_binary 'K\&Z\RZZ','wp-content/plugins/ultimate-responsive-image-slider/assets/css/images/blank.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@9\\V+p',_binary '\\ڥ\\\\ZG\\c3\lXP\','',0,'?'),(_binary '\\&߹}\]G\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/images/closedhand.cur',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t;=9`\~8c',_binary '\(\>\cNe\7x\','',0,'?'),(_binary '\U\\V|\\\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/images/openhand.cur',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l$?SMTa\e(lը',_binary 'h<cx\ Տ`\R\\n\\I\{','',0,'?'),(_binary '\\"W#O\2X\','wp-content/plugins/ultimate-responsive-image-slider/assets/css/slider-pro.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F;=L߲6>\2',_binary 'v!٪S\Vzgko\0\݆>1\\','',0,'?'),(_binary '\\~\\\\\#0','wp-content/plugins/ultimate-responsive-image-slider/assets/css/uris-feature-notice.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DHt\\$RE!\',_binary 'v\ĥ`7\\b\r<^\6*BTz\Q','',0,'?'),(_binary '\	\"Opc\'\Xw','wp-content/plugins/ultimate-responsive-image-slider/assets/css/wpfrank-products.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\U\Gt',_binary 'T\[\\ߓjgv|L*eLaUxʨJ\\u$@','',0,'?'),(_binary '\O\\~H,\]','wp-content/plugins/ultimate-responsive-image-slider/assets/css/wpfrank-uris-settings.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wz|3O\RTv\',_binary '\%^K+<R$ڰ\"x\u`\\/\3D /QE','',0,'?'),(_binary '}S\/hyyYk','wp-content/plugins/ultimate-responsive-image-slider/assets/img/5star.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Ң۬W\\\r',_binary '\Z~]%S\\m\r\]\\"u(O\x*T\\\Q','',0,'?'),(_binary '\4aboh+|(s','wp-content/plugins/ultimate-responsive-image-slider/assets/img/close-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v-LfHad?B_\',_binary 'w{\\,\92\"\\\/ȁ\Z\;\\HVf\','',0,'?'),(_binary 'Q}\'n\rj \Vc\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%d\"\>?;i\',_binary '\03\k\d\\[\hJ*oI\\\n\','',0,'?'),(_binary ' LyQʗ@n','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Display Slide Description.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Rg\?\v\5>zm\',_binary 'Zk\rٙGdIy6y\W\\xYa\;\','',0,'?'),(_binary '2\0Rb\g\-','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Display Slide Title.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O[c\\\\\5.H5v',_binary '\\A\g\ϮNK(\B\	d(\0@','',0,'?'),(_binary 'e{&\][R\(g\ݘ','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Display Slider Post Title.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\`{}\E\',_binary '\F#@*z|fcm\\S\\\לDP\','',0,'?'),(_binary '#\\Yb*K\\\\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Distance Between Slide.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\p\݉Z\F',_binary '\?yG\\\{\̆L\6q\\0\\"e\','',0,'?'),(_binary '^\\\\\hp\n_\\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Fonts.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AZC\"-\\dԙ',_binary '\w\&r^Dﱣt\\C\\"F٘\\\JX\','',0,'?'),(_binary '\\Q\=\rO\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Full Screen Slide Show.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4ٸ\Wy\%\Z\\\`ɧ\2',_binary '$hyb\Ȁ\wK\\v\\b#','',0,'?'),(_binary 'aāԚ\7s$','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Navigation Bullets Color.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+r_\\<r\D',_binary '\zg\\J-\4T\#\/٩l\;','',0,'?'),(_binary 'ou\!\rb:\j','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Navigation Color.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\Ò\i7̡_',_binary 'tȦX7\}@\\G\\bmo*^Pg\nwC\L','',0,'?'),(_binary 'w_\J\_FT\}','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Selected Thumbnail Style Color.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D97_Qъ6So=V\',_binary '\j\O;\\0=)\\0vxw/&\v>H-\'','',0,'?'),(_binary '\\巇\\\B\&fD','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Selected Thumbnail Style.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\\0R0qC\6Vu',_binary 'MtxP?A\I]5%<\0E\v!A\\y','',0,'?'),(_binary '\\"\\j\\2\'o=','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Show Navigation Arrow.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RJ\\.',_binary '{|y\\\u\	\\\ţd&\Z8\[\P','',0,'?'),(_binary '\#SHpH!Q\\7\\\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Show Navigation Bullets.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_g˖W\0uz\g',_binary '\\\dJ\Ac7\r\'^mz9*w\x\\','',0,'?'),(_binary '\\\4BF\' 4z\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Show Thumbnail.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\B.Q\E\\',_binary 'r}	cF$aՑ\Bf4v#\	\\\\u','',0,'?'),(_binary '\kV%Kė\0','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Slide Description Background Color.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	rY:\;\\k\',_binary '\^p3\"P\8h\\\+K\ݩWG4:1','',0,'?'),(_binary '	935Y=le\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Slide Description Color.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0*q\w<sLj',_binary '\Ppے|;L\'F\s&\vt24S\','',0,'?'),(_binary 'Lq\\#1A-0k','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Slide Title Background Color.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QNH,\',_binary '~G\\G\OZw^\u!\˩c\'','',0,'?'),(_binary 'C!\\+bw8\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Slide Title Color.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'by|JB',_binary 'w-\p\\8E\\L!IL\R,\\','',0,'?'),(_binary 'l\'g\\>e!\Ny\\O?','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Slider Height.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$kceA4\'̖3',_binary 'grd\		!h\k?\p\	z','',0,'?'),(_binary '\=\\dS?U2C\\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Slider Width.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1phSIC\\Zx ',_binary 'v\]m\nUNK\\%\Z)z\Z\\\N]\\|','',0,'?'),(_binary '-|┛0\\&k\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Thumbnail Position.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E>p\kܓ)8a \\',_binary '\\-&\=\b\\n\,\+!\cM\,\p','',0,'?'),(_binary '\ή\\[\'\c&','wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Thumbnail Resize.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ncΉp_AVm',_binary '\\\T\ cgHL\FE!\Z2','',0,'?'),(_binary '\r\_A\\8$c','wp-content/plugins/ultimate-responsive-image-slider/assets/img/products/Appointment-Scheduler-Pro.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\0\IPu',_binary '\?K%h\h13ԛD\0*\2 =!~<V\','',0,'?'),(_binary '\-\*wr\\z{','wp-content/plugins/ultimate-responsive-image-slider/assets/img/products/Flickr-Album-Gallery-Pro.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PuZ\\\ZaoZ%\',_binary 'V\UI#Ѓ)\4h\+^\n','',0,'?'),(_binary '* \\xIg>\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/products/Slider-Factory-Pro.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{Mm\0?',_binary 'w\|FIfm$E7\e\\~k%','',0,'?'),(_binary 'or!\}\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/products/Ultimate-Responsive-Image-Slider-Pro.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'ERZ{\K\yY\',_binary '߰eyhMO|\ni9\]=\\\\+P','',0,'?'),(_binary '\[4>Dl\XN\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/products/slider-factory-free-wordpress-plugin.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\8]͸.\\\m',_binary '\\\\5P=U|F\\Y\\\ZO@@\\\;!','',0,'?'),(_binary '13\q*O3\\','wp-content/plugins/ultimate-responsive-image-slider/assets/img/up.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\c\\Z$\B5\',_binary '\3Por`:{\\\-=ﵦ\r\Z\\','',0,'?'),(_binary '=A\\\d\VtP ','wp-content/plugins/ultimate-responsive-image-slider/assets/js/bootstrap.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\e\W\',_binary '&4\\lw\\0\jD\n\\zVMG\0\\\','',0,'?'),(_binary 'Oq7_\,\T\\~','wp-content/plugins/ultimate-responsive-image-slider/assets/js/jquery.sliderPro.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4	v\rܴ\&JGk',_binary '\Nrޡn\\\_\\0\A\LqB	','',0,'?'),(_binary '||\NK~w[\K','wp-content/plugins/ultimate-responsive-image-slider/assets/js/uris-ajax-script.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\!}\t\',_binary '~\uRƏ^P13y\r8|\ce^C','',0,'?'),(_binary '5\,_!a8\\%','wp-content/plugins/ultimate-responsive-image-slider/assets/js/wpfrank-uris-color-picker-custom.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Mµ3\Fh\r):',_binary '\\gx$s\L^_ad@\\\吋^YR)D','',0,'?'),(_binary 'X7\6}*8ܚ','wp-content/plugins/ultimate-responsive-image-slider/assets/js/wpfrank-uris-multiple-media-uploader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':-)`ǚ\\olHj',_binary '\\\"p,Pc&:\X&Ae\Y\','',0,'?'),(_binary '\rki\B\M\','wp-content/plugins/ultimate-responsive-image-slider/assets/tooltip/darktooltip.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\3{vf$ϵ7\Jt',_binary '\\F\l\\W\LX>8 \(9_\L\','',0,'?'),(_binary '9ɕ\\\*\\\\~my','wp-content/plugins/ultimate-responsive-image-slider/assets/tooltip/jquery.darktooltip.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%6%}6kb\B\+K\\',_binary ')ihv\0,pS\o\<\"\'h&\','',0,'?'),(_binary 'Lzɋ\xT-','wp-content/plugins/ultimate-responsive-image-slider/css/codemirror/codemirror.js',0,_binary '|:4!W\rhi\',_binary '|:4!W\rhi\',_binary 'P\9L 힚]+\ǲ\O\9','',0,'?'),(_binary '\'t\"\\k	{\u\1','wp-content/plugins/ultimate-responsive-image-slider/css/codemirror/css-hint.js',0,_binary '1\y1Lyhè\',_binary '1\y1Lyhè\',_binary '\\PC\' \\\\!m\/$28V#B\r\9Qmԇ','',0,'?'),(_binary 'z\f\I%(U\݄','wp-content/plugins/ultimate-responsive-image-slider/css/codemirror/ris-css.js',0,_binary 'l*x 4X\\sA8',_binary 'l*x 4X\\sA8',_binary '9\9#m\xo\l\\k	D̴\','',0,'?'),(_binary '	+@Sw\'^\	','wp-content/plugins/ultimate-responsive-image-slider/css/font-awesome-latest/fonts/fontawesome-webfont.svg',0,_binary '.\murI1G\',_binary '.\murI1G\',_binary 'Lr7D@y\ɂ]NK(\ti\G9\\Tm=','',0,'?'),(_binary '[Y՞GOI4\$','wp-content/plugins/ultimate-responsive-image-slider/css/font-awesome-latest/webfonts/fa-brands-400.svg',0,_binary 'I\WI0n°Us\',_binary 'I\WI0n°Us\',_binary 'xx\\̈́w,ҁGg\<f\O፧m.fh','',0,'?'),(_binary '\0yG\.GwS','wp-content/plugins/ultimate-responsive-image-slider/css/font-awesome-latest/webfonts/fa-regular-400.svg',0,_binary '\йJ֋n0\\\',_binary '\йJ֋n0\\\',_binary 'Whð\]NlW\0\h\S\\Z\\ntc','',0,'?'),(_binary '~\\k˼\4[ڻ\','wp-content/plugins/ultimate-responsive-image-slider/css/font-awesome-latest/webfonts/fa-solid-900.svg',0,_binary '*\_\3\',_binary '*\_\3\',_binary '~T%\m\\<n\\G>\j\G!\E','',0,'?'),(_binary '.?\\S\(rׯ','wp-content/plugins/ultimate-responsive-image-slider/help-and-support.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}ko\y\د',_binary 'e\\'XɚZ}@\Ӳ\\\*s\\','',0,'?'),(_binary 'U餳x\O\\Q?\','wp-content/plugins/ultimate-responsive-image-slider/js/bootstrap.min.js',0,_binary 'y4d3ӽ\67\0',_binary 'y4d3ӽ\67\0',_binary '\Ho,\8\Jz\\8\fm\ОVp%3','',0,'?'),(_binary 'qkG.\}9+\h9Ey','wp-content/plugins/ultimate-responsive-image-slider/js/jquery.sliderPro.js',0,_binary '[E92\Z@',_binary '[E92\Z@',_binary '\o\S>OO1,:.Z E|,zu^','',0,'?'),(_binary '\FMa}	ܰVI','wp-content/plugins/ultimate-responsive-image-slider/js/uris-multiple-media-uploader.js',0,_binary '_a*\ZZ\\',_binary '_a*\ZZ\\',_binary 'H\b\\	ܾfb]\;\\\&5\M','',0,'?'),(_binary 'Xy_\:{#\\\g>','wp-content/plugins/ultimate-responsive-image-slider/js/wl-color-picker.js',0,_binary 'OqN%2$3G\'',_binary 'OqN%2$3G\'',_binary '\Xs\\wP\\\!8Ptl\tA\\\\','',0,'?'),(_binary '\jE	\Z\$,ɀ8\Z]','wp-content/plugins/ultimate-responsive-image-slider/languages/ultimate-responsive-image-slider-en_EN.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\9\U\7+',_binary '\/g0\\s@7A(-\#\\LFr5','',0,'?'),(_binary '\1|\nu\*؝\"8+','wp-content/plugins/ultimate-responsive-image-slider/languages/ultimate-responsive-image-slider-en_EN.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\EgTz\',_binary '#\ݣ\RTlS*\\\n1\"\\Jvg','',0,'?'),(_binary 'Νj24\-	\n\\1','wp-content/plugins/ultimate-responsive-image-slider/languages/ultimate-responsive-image-slider-hi_IN.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K\\)cҨ\Ć',_binary ')\r\srIww\k&֯\\','',0,'?'),(_binary '\\!!o\j9J_','wp-content/plugins/ultimate-responsive-image-slider/languages/ultimate-responsive-image-slider-hi_IN.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\`\J\>\6\`',_binary '\X2y^t\\a\\\kssoxm=\r\+ \','',0,'?'),(_binary 'NN>\&','wp-content/plugins/ultimate-responsive-image-slider/layout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\B]wQ\<2',_binary '\\=+\\\',\R}\.\'\\V_\\\Z\Z\','',0,'?'),(_binary '\lqF\\f\\L','wp-content/plugins/ultimate-responsive-image-slider/products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\e\ڊ \',_binary '2ٮNH/H\\Rx*ؔ{fp\i?\nއ','',0,'?'),(_binary '\\jO\\<rU\','wp-content/plugins/ultimate-responsive-image-slider/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LXB󞲰U%',_binary '➀? ;\ȿ$Tv4x6\0\\yS\','',0,'?'),(_binary '\n\\:ϔ/ڢ\','wp-content/plugins/ultimate-responsive-image-slider/recover-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '</^1x-cF',_binary 'ɹ^b\to\rDCMO\"_\_`ZD','',0,'?'),(_binary '\c\\"ZRǇ׹\,','wp-content/plugins/ultimate-responsive-image-slider/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+$p\)9Ʌ\K\q',_binary '!M-+\-\$\"\\\!\Xշ\r','',0,'?'),(_binary '?n5\\	\\r\b\','wp-content/plugins/ultimate-responsive-image-slider/shortcode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\n\2\2-\\\\+G',_binary '(uʪ(\=f\#%42x\gz[','',0,'?'),(_binary '|!5\}\\8q@\','wp-content/plugins/ultimate-responsive-image-slider/tooltip/jquery.darktooltip.min.js',0,_binary '%6%}6kb\B\+K\\',_binary '%6%}6kb\B\+K\\',_binary ')ihv\0,pS\o\<\"\'h&\','',0,'?'),(_binary '׭#\r\\\mωK','wp-content/plugins/ultimate-responsive-image-slider/tooltip.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'F\r\KUӽ\LT8',_binary '\>C\ҕ9\B=C\<%9i!&&?','',0,'?'),(_binary '\7\}\Z\\A\\U\\','wp-content/plugins/ultimate-responsive-image-slider/ultimate-responsive-image-slider-settings-meta-box.php',0,_binary '\B`<\ɣ.c$\?',_binary '\B`<\ɣ.c$\?',_binary '%\e`x\`\'\}AWG`-v\\}To:','',0,'?'),(_binary '޳5\HXI*3!','wp-content/plugins/ultimate-responsive-image-slider/ultimate-responsive-image-slider-short-code.php',0,_binary '\\"6\\!\M',_binary '\\"6\\!\M',_binary 'θ\X\*\\T\n`| @\','',0,'?'),(_binary 'y.\\A>\mD\q','wp-content/plugins/ultimate-responsive-image-slider/ultimate-responsive-image-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\_;0\lp \!',_binary '\\g\6c\I:Hwu\S\3Z#\~ı','',0,'?'),(_binary 'C\^a\4WrY^\&','wp-content/plugins/ultimate-responsive-image-slider/uris-feature-admin-notice.php',0,_binary '+4u\"AS',_binary '+4u\"AS',_binary 'd\ޣ\\*y9\\V5R,Ys*G','',0,'?'),(_binary 'd\\\Ռ7\0\C͔','wp-content/plugins/ultimate-responsive-image-slider/uris-layout.php',0,_binary '`?$}asG\^/\\0.',_binary '`?$}asG\^/\\0.',_binary '8\[l\[V´\u\;\u\8;U[U','',0,'?'),(_binary '%hBA\\A~)t\','wp-content/plugins/updraftplus/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\hHww0)\\"\e',_binary 'F˛Z!acv\Z\\6\5\','',0,'?'),(_binary '\\_Ix\\F','wp-content/plugins/updraftplus/backup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NLvhWe_\r',_binary 'o;#ۻ\z[\eidx','',0,'?'),(_binary 'W>\i=k\+','wp-content/plugins/updraftplus/central/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\%\?;pJ\',_binary 'ejEop\\AA?S<.','',0,'?'),(_binary 'l\\\ꌘb;W4R','wp-content/plugins/updraftplus/central/classes/automatic-upgrader-skin-compatibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɼUŬ)@',_binary ';B\YB\\`\z\'i\	hIv}jG','',0,'?'),(_binary '_\)q!|cH\\','wp-content/plugins/updraftplus/central/classes/class-automatic-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\I,\,\z!L\!',_binary 'r\0\\\=8;ϰ\ï\.8c','',0,'?'),(_binary '\Dx\Cj;-u','wp-content/plugins/updraftplus/central/classes/class-udrpc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z!a\0fG\\\_Wph',_binary '.\\\n\\ZC\i>bl/4\Δ/\m9','',0,'?'),(_binary '`Hpֈn\'\!г','wp-content/plugins/updraftplus/central/commands.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\g?{\2\tg\BX',_binary 'p{\#\I\|cJ,\ﬔ7\y@\','',0,'?'),(_binary 'HZ\\%OJG\.U\','wp-content/plugins/updraftplus/central/factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!L\#\n9Lc\\\',_binary 'jl\-%Hn\WZ\D#:7\\)<','',0,'?'),(_binary ';JǬ7\ڣj\'I\','wp-content/plugins/updraftplus/central/interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[a)i\\$',_binary '*\\ݱ_&#6\\Xk.Q\k<l','',0,'?'),(_binary 'Ṩ\n-\Mu/$Al','wp-content/plugins/updraftplus/central/listener.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z{]5HsH',_binary 'eP\K\-\:\~&jG\2_G@\0\','',0,'?'),(_binary '`(5\w\\\!\O','wp-content/plugins/updraftplus/central/modules/analytics.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\X\'x\\3\q\',_binary '\\Lj\64E4\\2d\p\\Z{쯂','',0,'?'),(_binary 'rN+ĩ#3\\W','wp-content/plugins/updraftplus/central/modules/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o1\,\Yq\f\`-',_binary 's^d\\rG\E\^\YT\,\\\\\>em','',0,'?'),(_binary 'gm P\	Yޞ\r','wp-content/plugins/updraftplus/central/modules/core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_/ 	\B\\qA',_binary '?bmx]\,E!8\\wZ@_k','',0,'?'),(_binary 'a{\\3=a','wp-content/plugins/updraftplus/central/modules/media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E<8\'7\X\',_binary 'S\Z\'\Qz\F`?5\7x\\T','',0,'?'),(_binary '\\3u\"\ZN\\\r','wp-content/plugins/updraftplus/central/modules/pages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_6*궎LF	?\\ٯ',_binary '[\\7(j?IbՓew\|emjZ\\	\\r','',0,'?'),(_binary '\\~Zd\S3\rR\','wp-content/plugins/updraftplus/central/modules/plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k#\$\F\	c',_binary '\8ژ!\\x\RGR\"RXWTrT\\k7\Q\E','',0,'?'),(_binary '\<\\p0rRJ','wp-content/plugins/updraftplus/central/modules/posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gs+l\Z\Z\\',_binary 'VV%$\2ɠ\kY|\7/ř','',0,'?'),(_binary '#I\yZ\%tl:\0F','wp-content/plugins/updraftplus/central/modules/theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\cŬ+V`>\r',_binary '<}\949bu+v\!}Jrٵ','',0,'?'),(_binary ',\"\\$-h?\\y@\\\','wp-content/plugins/updraftplus/central/modules/updates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%ŃsҰ摳\-',_binary 'D_-\~\G	\ɤr5Y=\y~i揦','',0,'?'),(_binary '\6ōx\U','wp-content/plugins/updraftplus/central/modules/users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\\\Ftj[',_binary '(\T\\>a\i\]\Zw\~\r','',0,'?'),(_binary 'I\'Se \4\o\','wp-content/plugins/updraftplus/central/translations-updraftplus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/Y\*MD\',_binary 'LV\j\ۉʔc.\B~5','',0,'?'),(_binary '4\0{ 8>G:Gp','wp-content/plugins/updraftplus/central/updraftplus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MG+^\cN\#{\r',_binary '0\\;\\\(iF\\Yc\\\"E\	\\','',0,'?'),(_binary '\\x|_\"\\s\'','wp-content/plugins/updraftplus/changelog-old.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Dj\'uЕ',_binary 'qsĺ,\s\Z4nJzaM\\2+lVZpzB','',0,'?'),(_binary 'h}Mv1\ZQlO\\','wp-content/plugins/updraftplus/class-updraftplus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ּ\{o\Q\\l\',_binary '͟1/t-\T\_&꿹5Ktw','',0,'?'),(_binary 't\& #ı\wJ\','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-arrows-fix.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^=$(\d#\\f',_binary 'Rx\ʛ\\k\Z\oR&Ċ\0Pr)u\#','',0,'?'),(_binary '\6<c\\\)!c','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-arrows-fix.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\b\K-\\Uvk',_binary 'I\\fW\\\\V\BA\	\0\zZ:K','',0,'?'),(_binary 'd4ِJtP5	nh','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-arrows-plain-buttons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\|,>.˞\P\@',_binary '\`\#p\UfH@ea\m\\/KE7\B3ł\','',0,'?'),(_binary '䀹S\L\_\+p\9\','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-arrows-plain-buttons.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x2\4S\[\Cq',_binary 'O]DHvN\>\u\\\޾_\7\','',0,'?'),(_binary '%\H[ѥ|׊','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-arrows.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\\\LZX\\Z',_binary '\ٲB\\v,\\\42b\-2	\>+{P;Y','',0,'?'),(_binary 'ьp\#\\\o\04\0','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-arrows.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\r3\%\2\Z%',_binary 'rU\\*s\\\p\n$(\bGPd','',0,'?'),(_binary '\\W62\','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-dark.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?Y\i\9X\p',_binary '9\u5ʮ\d^3,\F5\\\Z뼳=','',0,'?'),(_binary '\\Pdק!\\0\','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-dark.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R%[)tlU?/',_binary '\r>KhH@\XU7o+<BKI\S\','',0,'?'),(_binary 'bM\\^\\\','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-default.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ՂNڃ$',_binary '\G!Ƕ\[\\"p\b\aQ','',0,'?'),(_binary '\;\Z\ͥ\\','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-default.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0zoYר\EP\|',_binary '@\f{<qM`\\'\"5?\\EZi}m-\','',0,'?'),(_binary 'Yߍ3A\\c\r\','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-square-dark.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ѫd!f\7\\|\\',_binary '\\j\Zt@b\\\$\f+}7@','',0,'?'),(_binary '\\\L6OAfW7l','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-square-dark.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\הLhRx\',_binary '\!\2[^\{W9wDi\	?\.E','',0,'?'),(_binary 'u\\6@g\I+H.','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-square.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0n\XJKw',_binary ':vqR번Z\Z\T\#','',0,'?'),(_binary 'A\^򓱝P3\k','wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-square.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"(\!\#_\\\,',_binary '3W4EsWou\\\\0\J\\W','',0,'?'),(_binary '7\p\)\a\C\\','wp-content/plugins/updraftplus/css/updraftplus-admin-1-22-11.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n/>΀٨\',_binary 'O\&@&#\\\\t|at)\'i\D\w\','',0,'?'),(_binary 'r\\G\\e5','wp-content/plugins/updraftplus/css/updraftplus-admin-1-22-11.min.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i-sz1?\Dx^^K',_binary '*g?/x]#\G0	\\\NuЌцo\[t','',0,'?'),(_binary '\j2\\\#I','wp-content/plugins/updraftplus/css/updraftplus-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zx#\Sx!\ \\O\\"',_binary '\\W\0\\7HXT\\M\к@큼:','',0,'?'),(_binary '+{\ݒ\G\t\','wp-content/plugins/updraftplus/css/updraftplus-notices-1-22-11.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ԤW-hT`\\-',_binary '\0̅:\'}ieщ\\ҭ\_?\\\\\'{','',0,'?'),(_binary '\\z\v;g!rnk','wp-content/plugins/updraftplus/css/updraftplus-notices-1-22-11.min.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\\\AN)˿+;#',_binary '\\\Z):\/\u\\\4b[','',0,'?'),(_binary '\\\hRSC\\8','wp-content/plugins/updraftplus/css/updraftplus-notices.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']Cȃ/zͅwQ_',_binary 'A?bUK4\\\iP@\\ZTL\\t3){','',0,'?'),(_binary 'L>	^\\&mX?\\r','wp-content/plugins/updraftplus/css/updraftplus-tour-1-22-11.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S	쫽\\UHE[',_binary '\]нC\E\\f3?9.xM=','',0,'?'),(_binary 'GV M٫C\P\','wp-content/plugins/updraftplus/css/updraftplus-tour-1-22-11.min.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Kˉ|b\v\8?\Z\"',_binary '|@E\F(\\@۰\\H\?eYݚ\y','',0,'?'),(_binary 'ȭ\ᎣJ\ׯ\0','wp-content/plugins/updraftplus/css/updraftplus-tour.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u6< \LUs',_binary 'm.\\ܛAI\\j\\\yXG=\	\\w','',0,'?'),(_binary 'E\]\Z','wp-content/plugins/updraftplus/css/updraftplus-tour.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'amٗ\B衙je',_binary 'D텏#\\b\\qxų۽\g/s\','',0,'?'),(_binary 'q,<\wLG\"E','wp-content/plugins/updraftplus/example-decrypt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U8\\d#:#\\',_binary 'iM\,\\\;\-4)\yͼ\\j5\w\','',0,'?'),(_binary '^qg\`oZ','wp-content/plugins/updraftplus/images/addons-images/all.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\\P\\fΘ',_binary '}/WB\Q1:~ x~ n $','',0,'?'),(_binary '\|\=\\ۊ.','wp-content/plugins/updraftplus/images/addons-images/anonymisation.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~\\\\',_binary 'u\>_7b߅\\(\,!\M{75\^\\\','',0,'?'),(_binary '\\6˧i\'9','wp-content/plugins/updraftplus/images/addons-images/autobackup.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\tnjK',_binary '\-\g\vA>E\s\\]\\\\J\zt','',0,'?'),(_binary '<_(\=^r\','wp-content/plugins/updraftplus/images/addons-images/azure.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\tY\קe{SD',_binary '1vof8MRX>\\+*}\	+r','',0,'?'),(_binary '^S\\\','wp-content/plugins/updraftplus/images/addons-images/backblaze.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ƫT2MВ',_binary '?L\\\T0ޓ\nh\+\\\\\','',0,'?'),(_binary '\[\0{\B&\^','wp-content/plugins/updraftplus/images/addons-images/cloudfiles-enhanced.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p\h@$\Wv',_binary 'U\m\\\ZA.\F+\x\\n\(A\\','',0,'?'),(_binary '\Z\}\̪\-K\0\H','wp-content/plugins/updraftplus/images/addons-images/dropbox-folders.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',J\Ax?F4(',_binary '\\(W1r	%\\\s\YV-x\2y(ހ','',0,'?'),(_binary 'G\\\\p\\\F:','wp-content/plugins/updraftplus/images/addons-images/fixtime.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?P^\б \8nQLm',_binary '\|@ЌC-\D\\?^ 1\\[?O<','',0,'?'),(_binary 'C>hZ8\N`y\a','wp-content/plugins/updraftplus/images/addons-images/google-enhanced.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\\\~p㙲\\',_binary '\EvH:pGʦT[9ӣ\"7\w6','',0,'?'),(_binary '\0H\\\6{옙Z','wp-content/plugins/updraftplus/images/addons-images/googlecloud.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\'c\\\f\{=E',_binary 'yAZ82i^<\ϝ{V\rE[!7U\\\','',0,'?'),(_binary 'Dp\i.\\\\\','wp-content/plugins/updraftplus/images/addons-images/importer.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\up\g{\!	',_binary 'zth5S\?z\'\\\Mt1zֆ\\\\\\[','',0,'?'),(_binary 'IűY\m\','wp-content/plugins/updraftplus/images/addons-images/incremental.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\گĊn\NLt',_binary 'v\\\\z\"|gz\0դw\+$<P\','',0,'?'),(_binary '({,*q7%B(','wp-content/plugins/updraftplus/images/addons-images/lockadmin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\\˃J{]\',_binary 'PוLX\wV	J<EP\Ʀ\\p','',0,'?'),(_binary 'Y\g7$\B[\-','wp-content/plugins/updraftplus/images/addons-images/migrator.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>^]\"\\" ^@',_binary '\F\52:\\\҃{\\PQ5\.\)}z\0	w','',0,'?'),(_binary ')\#`5\\\t1Si','wp-content/plugins/updraftplus/images/addons-images/moredatabase.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/a!\\-H=k\1M',_binary '\\"\$}\'\]\lAwK셳Ms\=\ZDT[','',0,'?'),(_binary '\xa1[9\~3@Z','wp-content/plugins/updraftplus/images/addons-images/morefiles.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\@\ug\\',_binary 'V\B{6\\O	`','',0,'?'),(_binary '{@DkF\JGno\	','wp-content/plugins/updraftplus/images/addons-images/morestorage.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\\\\\\P\',_binary '\\&G\4 8#\\\+\u\\^Ɣ#dHXa$','',0,'?'),(_binary '?C\\^\\G\\в','wp-content/plugins/updraftplus/images/addons-images/multisite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\\\0\;>;JH-',_binary 'ZH9\+dvW\\\,\1\F\K','',0,'?'),(_binary '٦y&^\A\','wp-content/plugins/updraftplus/images/addons-images/noadverts.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+4\\0*R\\\',_binary 'pK8A*{\m C<\\^	%\ǣ6\D0\Ո','',0,'?'),(_binary '\4\3_K60','wp-content/plugins/updraftplus/images/addons-images/onedrive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\" Æ\hO\\	',_binary '\\(aF_N\\\R4j(s0A^W\\','',0,'?'),(_binary 'Nkw5n.Mm-X','wp-content/plugins/updraftplus/images/addons-images/reporting.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\S\\Τ%d\',_binary '\Wª\&i;2v\6\\6\6MM\','',0,'?'),(_binary 'h\\"\ϼ!\&\\8','wp-content/plugins/updraftplus/images/addons-images/s3-enhanced.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\`H\H.ܱ\$|\'u',_binary '\D\\0@\Z\ϓ\\\\\Z<?\'Tf8w','',0,'?'),(_binary ' \'Dyl0\&*G','wp-content/plugins/updraftplus/images/addons-images/sftp.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(0凓9Yua:ܮ\',_binary 'g6F-\'1P\\]07i\.\P\\\'','',0,'?'),(_binary ',N\\\\4b\p\\!','wp-content/plugins/updraftplus/images/addons-images/webdav.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AR,|\K?',_binary '\bEf]&Z\nH͙B	H>@7\lY\x(\n','',0,'?'),(_binary '>\D\R&\Qiޡ','wp-content/plugins/updraftplus/images/addons-images/wp-cli.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n6\\\g@\\\!\\]',_binary 'T6y\Z\˫\e4@\P[\n\L\M','',0,'?'),(_binary '\\\˥B\mNi\','wp-content/plugins/updraftplus/images/automaticbackup.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\tnjK',_binary '\-\g\vA>E\s\\]\\\\J\zt','',0,'?'),(_binary 'u\0 \J\"Y\\0\r:','wp-content/plugins/updraftplus/images/aws_logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\\\5q.\$y',_binary '\>\t+FrZ\&!/U^Ye>Y\}','',0,'?'),(_binary 'ɯ\bd\\','wp-content/plugins/updraftplus/images/azure.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\ֱ\xgY',_binary 'YS~8_\ZI|_5\(6ມ','',0,'?'),(_binary 'Vt4\axƄXϫf\\n','wp-content/plugins/updraftplus/images/backblaze.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\]wm@|',_binary 'k\6%\\V$\\qu;\Z\SG\{','',0,'?'),(_binary '\J/I\\\','wp-content/plugins/updraftplus/images/dashicon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\l\caf\\',_binary '\\\|Z\\\\u<$(\Z&\Dҡ&','',0,'?'),(_binary 'N\-\\g<-w\ZEV','wp-content/plugins/updraftplus/images/dreamobjects_logo-horiz-2013.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\ZwJ\뙧@E:/',_binary 'iA\GƇ\/18V|ZC\+<','',0,'?'),(_binary '}\\\@$\B:\^\\','wp-content/plugins/updraftplus/images/dropbox-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\zG0>o\',_binary '\\,\np\ZJVįs\EA gƈ\','',0,'?'),(_binary 'x{\Α\"\^\a6\r','wp-content/plugins/updraftplus/images/googlecloud.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Af\0L \\\X&\',_binary '0Ez\BʣZ<\\\KL8u`۶J\o','',0,'?'),(_binary '|9-\\5\\\Z3\ \r','wp-content/plugins/updraftplus/images/googledrive_logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\\Z\\\_|\9',_binary 'ca\\Z\q=@\O\wF\^1[\\\','',0,'?'),(_binary 'h\f\\'2ӔUw\','wp-content/plugins/updraftplus/images/icons/azure.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\\\~I\>	iX*',_binary ':f\\\\xu\%oXw\|ipӯ\c|#j','',0,'?'),(_binary '`\Z\0>l\l','wp-content/plugins/updraftplus/images/icons/backblaze.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\\Ws\}\zs\',_binary 'rN3\\\P\A\nv*5\@\\\ZF','',0,'?'),(_binary '\V\5\̮\Cn','wp-content/plugins/updraftplus/images/icons/cloudfiles.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\ryzj,l\g\nn\',_binary '#ۀ\\\\uc\Z\\C_`?\a','',0,'?'),(_binary 'i\\[{','wp-content/plugins/updraftplus/images/icons/dreamobjects.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\9扷G%2\^\~',_binary '\-\'v\Ɉn5\\kw\\\]#ƾV[','',0,'?'),(_binary '_-\ݧ.\\Z\','wp-content/plugins/updraftplus/images/icons/dropbox.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\٘0Ex\3\1?]',_binary 's2o\ZB/\\uG\A;\\"mVŊL\[','',0,'?'),(_binary 'Կe\pZ\ɟy\','wp-content/plugins/updraftplus/images/icons/email.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E.cKo\\|\s-\',_binary '٭\Zq]^A\nba9ZPmuL\\%w\\H\','',0,'?'),(_binary 'S!wnN7M)\m]e','wp-content/plugins/updraftplus/images/icons/folder.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\0!\T<\ZA\\^0',_binary '\\\3QAr(\}l藪\6\"|lL@','',0,'?'),(_binary '8\\\ \wa\\5','wp-content/plugins/updraftplus/images/icons/googlecloud.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VJ\VQYJ\a\?',_binary 'dk\'\0H-L裷b7|a팠^\','',0,'?'),(_binary '`0\Vm=Yc','wp-content/plugins/updraftplus/images/icons/googledrive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\6:\02\\2m=v\',_binary '4\|\\|	\+R\'=Ci\|\}n','',0,'?'),(_binary 'y}&iZL5\֘\0\(','wp-content/plugins/updraftplus/images/icons/lock.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\nS*qE\\Ga',_binary '\(,6a[|g\Ӡ^\voA\Z\-','',0,'?'),(_binary 'e\&\\@j\\0','wp-content/plugins/updraftplus/images/icons/onedrive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\L\Ml흜Z]\'',_binary 'z߄\\\(e/\T\hRDm\Z\\7','',0,'?'),(_binary '#=gA-j<k\\','wp-content/plugins/updraftplus/images/icons/openstack.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Dn\R$	H`\\',_binary '\\t6\\\~\0\2\\*By\=}','',0,'?'),(_binary '\[r\ \M\\_A7O','wp-content/plugins/updraftplus/images/icons/s3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\č?\7!\\G',_binary '\\ZL\r\&\\>e\`\\r\Zo\ x6','',0,'?'),(_binary 'm +7f\">)','wp-content/plugins/updraftplus/images/icons/updraftvault.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A	RʂD\,\\d',_binary '\W\\Z𖽪R^xǧ\\p\ꝍ\S3\\ZU','',0,'?'),(_binary '\}\\gWcX]OY','wp-content/plugins/updraftplus/images/icons/webdav.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rd(\\\\\\>',_binary 'ϡ\\n-eS\Wd[@\\\2-/\U\\\','',0,'?'),(_binary '\gSQ>\썀0m','wp-content/plugins/updraftplus/images/notices/black_friday.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`Pc(0w\',_binary '/a\j\/\3\\9/J\,J^A\bB','',0,'?'),(_binary 'bjwʜ\T\0','wp-content/plugins/updraftplus/images/notices/keyy_logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\\"o)\W/',_binary '(i.ثo?bF\\\CE\v\\wK','',0,'?'),(_binary 'Zj?`9P\lu','wp-content/plugins/updraftplus/images/notices/locksettings.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\\˃J{]\',_binary 'PוLX\wV	J<EP\Ʀ\\p','',0,'?'),(_binary '6\M*ߛƮ','wp-content/plugins/updraftplus/images/notices/new_year.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=uN\w\ta^\r\0',_binary 'r\i!2Z\\:d\\jvt\~q\','',0,'?'),(_binary 'u>RP]\','wp-content/plugins/updraftplus/images/notices/reporting.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\S\\Τ%d\',_binary '\Wª\&i;2v\6\\6\6MM\','',0,'?'),(_binary 'i\'}\r\`~4','wp-content/plugins/updraftplus/images/notices/spring.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/#\ZxFe^\',_binary '\h%?d\d\;\"\^\5\','',0,'?'),(_binary '_\\K\{Q%\','wp-content/plugins/updraftplus/images/notices/subscriben.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U9΀a#͔',_binary '0\̄%L\2hu)q\,]F\¨\Y\\s','',0,'?'),(_binary 'h~\\\\@\0M5YH','wp-content/plugins/updraftplus/images/notices/summer.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TB\E\r\',_binary 'd,\=>\a\lx\ƩU6\y\','',0,'?'),(_binary '\ngbx\D\e\5\7','wp-content/plugins/updraftplus/images/notices/support.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\\\QL\wצ\\?',_binary '\߯\i\0a1\\)+#\_x_\','',0,'?'),(_binary '\d|pH\8J\qC','wp-content/plugins/updraftplus/images/notices/ud_smile.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gϑ\0=\nD\MpҬ',_binary 'xJ\4y3uۘ*P}U@k\e^','',0,'?'),(_binary '^\`\h>\!#17cE','wp-content/plugins/updraftplus/images/notices/updraft_logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݲetޡ\\½6',_binary '(\X\v\0\6v\U\+gj\{\\"3\','',0,'?'),(_binary 'o8$v3;4㾦','wp-content/plugins/updraftplus/images/notices/wp_optimize_logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qd\BnR˶\0\w',_binary '\!\*ug{IpGL>W\"VR׶r\','',0,'?'),(_binary ']d5TPt\\','wp-content/plugins/updraftplus/images/onedrive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\z8\\\J$g˱',_binary 'tnJ\6tC\\"}J\\ZY\\','',0,'?'),(_binary '\pw\Ã1D	\5','wp-content/plugins/updraftplus/images/other-plugins/keyy.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Wl0Tʜ',_binary ':\8\Ȏ\Hr#\"Qg>\\DHbA\\p','',0,'?'),(_binary 'ߙ\?\\uE8\\','wp-content/plugins/updraftplus/images/other-plugins/meta-slider.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}sۜW\n3$',_binary '0c/ABo\딱a^\\%	j9$_\^','',0,'?'),(_binary '\\\ՙ\\z~c궛','wp-content/plugins/updraftplus/images/other-plugins/updraft-central.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"RPW\h\!\ka',_binary '\r܌ЍQ+<bBH`U\Z\J\\0	\','',0,'?'),(_binary 'iS.\߬_\?UZ6','wp-content/plugins/updraftplus/images/other-plugins/wp-optimize.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\\N>W \K~',_binary 'P\8c1\m@\\?\w(\k\\[R','',0,'?'),(_binary 'W\\]}$SK\"N6','wp-content/plugins/updraftplus/images/padlock-150.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G\\&_{\}\[',_binary 'S\\\Zz\w%\Dj^vI\\\q','',0,'?'),(_binary 'M#|(R\\;\','wp-content/plugins/updraftplus/images/rackspacecloud-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b7\\[ ]\\',_binary 'xDp\֐\a\'\BjE\Sm\|\','',0,'?'),(_binary 'g\\'k\J\\\n','wp-content/plugins/updraftplus/images/ud-logo-150.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\\ҬT\\d6uP\',_binary '\˽1D\\\4HH	\[\Y','',0,'?'),(_binary '\j\\	\eo*\','wp-content/plugins/updraftplus/images/ud-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\jM\\ѓ\'ː\\',_binary 'w\yB1bt\W\"l%\t)Qp,Jb.','',0,'?'),(_binary 'udVN;<f|O\G\','wp-content/plugins/updraftplus/images/udlogo-rotating.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:Z]zG2ІhG.,\',_binary '\7eB\K\Kj1\\8T\(#x \-f','',0,'?'),(_binary 'rQ}SD5%A\r ','wp-content/plugins/updraftplus/images/udp-logo-white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\t#,\\\~g\',_binary '|0\g\<Z\\\\>:\\\\L;Lh','',0,'?'),(_binary '\%]\:QQ|ob\P','wp-content/plugins/updraftplus/images/updraft_central_logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \(?O7Id\\\ ',_binary '\0K\'UV\\L\&\\KU5RRp\','',0,'?'),(_binary '\\P\\+jR','wp-content/plugins/updraftplus/images/updraft_cross.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a/=\dW`\[\?',_binary '%\zJQvY^ \\\\O\4@Fh\HwP','',0,'?'),(_binary '\\+\H:RȊ\KM','wp-content/plugins/updraftplus/images/updraft_freev.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~I+b$\0~[A~{+',_binary 'gT\\8FԴIS\}\?\0[\A','',0,'?'),(_binary 'V\>-\\23y\','wp-content/plugins/updraftplus/images/updraft_premv.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2 ]\Fx\\"\\\',_binary 'o\&\\j\\"Yu<r\0\l\K0J','',0,'?'),(_binary 'D>[\a\\}RO','wp-content/plugins/updraftplus/images/updraft_tick.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7u\{\/=$\nhK\',_binary '\\|U\ȡ\R\"#)1]\@h0~|?','',0,'?'),(_binary 'r=\;ٞ{\\\','wp-content/plugins/updraftplus/images/updraft_vault_logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K+\sB\n\6\\r',_binary '\s\\(Y\0\6;\qZ$S5$l:\\q','',0,'?'),(_binary 'x|McB+\@ЩwKT','wp-content/plugins/updraftplus/images/updraftcentral_cloud.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\\\0\;>;JH-',_binary 'ZH9\+dvW\\\,\1\F\K','',0,'?'),(_binary '7%N\\r\\m','wp-content/plugins/updraftplus/images/updraftclone_logo_white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T*\65\n\j3\Z_\',_binary '0PZ\\\?\fAStiB*\o-\3\\','',0,'?'),(_binary 'һ_\"\sŤ\rF!','wp-content/plugins/updraftplus/images/updraftvault-150.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\\Vb\\Xç\',_binary ',{\\[N%iTr\>\#kٸEhu','',0,'?'),(_binary '\\nCM\fDu\','wp-content/plugins/updraftplus/images/upraftplus-clone-screenshot.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';OWӳ\\\jW',_binary '	ɠ\\h;GiB\s\\n','',0,'?'),(_binary '\Kmr.\Dŧ\\\}','wp-content/plugins/updraftplus/includes/Dropbox2/API.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{g1\\P\',_binary '\0g]~/2l\!k\Z\&HQT\$ ','',0,'?'),(_binary 'i?!\,\\j4','wp-content/plugins/updraftplus/includes/Dropbox2/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\U$\af*\on',_binary 's%\Ծ\\;\-JǼ/p f','',0,'?'),(_binary 'Cv\4\\','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';>\_\QuJZ',_binary '\*\2ZY\\\B\\\"fZ\5\','',0,'?'),(_binary 'd\f\\")=\6b','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/Curl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\oFJi~qC',_binary 'Dn\x\;VBu\\0G\蚃`LZ֊\\','',0,'?'),(_binary 'EN\\#C\Ĵ.3','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/WordPress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s\yq\FWT\\rҮ',_binary 'Ē\ܠ\5\T.\:{\Zk[\Ze~','',0,'?'),(_binary '\ܷ\\JL\>\#','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/Encrypter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j}Ӹ=EV\5\0',_binary 'VLaAQ#`1w\\Z\nRI	nLaz\\','',0,'?'),(_binary '\V,\յ','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/StorageInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\b\\\\\\9',_binary 'zQ\\z=UZjD\\\9','',0,'?'),(_binary '\n|ˬ\Ӝcj`{','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/WordPress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\\\kH\\\',_binary '!\źo\\\#T \Loo\\','',0,'?'),(_binary '\\X\r:l]@H7\','wp-content/plugins/updraftplus/includes/Google/Auth/Abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3`Ih|݌\\',_binary 'z0-\t@\nc(ޣt]u','',0,'?'),(_binary '23Q\\ۿ-4\','wp-content/plugins/updraftplus/includes/Google/Auth/AppIdentity.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HsG}/\\',_binary '4\J7Q+g=\~\sa*Gl%\\<Ak/e|','',0,'?'),(_binary '|iH\r','wp-content/plugins/updraftplus/includes/Google/Auth/AssertionCredentials.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':WNss\\{{>',_binary '\h\\q\\1ܭV\*Pٯ\','',0,'?'),(_binary 'e\ӐD\\\"\\\\','wp-content/plugins/updraftplus/includes/Google/Auth/ComputeEngine.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\x,\	\"',_binary '\\~:\\\U\\\O7D\l\"8','',0,'?'),(_binary '\\\\\\*\rh}h(','wp-content/plugins/updraftplus/includes/Google/Auth/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \e\\\Z_\\){',_binary 'P\۠H\\\ I\\\V\\r[4U','',0,'?'),(_binary 'yk\_\\Uk\,e=','wp-content/plugins/updraftplus/includes/Google/Auth/LoginTicket.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L\#vJ\',_binary '9Z@\ZDK$Ln~\\\%?\0\','',0,'?'),(_binary '`\\%ֆY\\','wp-content/plugins/updraftplus/includes/Google/Auth/OAuth2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T-U|r\.',_binary 'n\?&\z\\<\\u[<\\\?%\rTC','',0,'?'),(_binary '\\q8\\\\','wp-content/plugins/updraftplus/includes/Google/Auth/Simple.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>y\#AΰOs\\`',_binary ')aRS\2\"\wJ1\n9Gwї\$','',0,'?'),(_binary '2\$\$\K&fw ݪ\','wp-content/plugins/updraftplus/includes/Google/Cache/Abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\^>/R\',_binary '\|eY\a\\'\\X5r\\Bӻ&','',0,'?'),(_binary '\Ys\\\\nd\\\','wp-content/plugins/updraftplus/includes/Google/Cache/Apc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\\CGe\_#',_binary '^x\'qA>d\nKtv)\:$ĥK','',0,'?'),(_binary '\\na0\8\\','wp-content/plugins/updraftplus/includes/Google/Cache/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"(\\r+\\z\T',_binary '\'(\r\V4\\ޝ	\n؛\\\\','',0,'?'),(_binary '\y\A\oډ\','wp-content/plugins/updraftplus/includes/Google/Cache/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nϷl^\#vQ#',_binary '¯_Y7\-	D3i\,8\uhϗ8\','',0,'?'),(_binary 'bl	-vr$\L8','wp-content/plugins/updraftplus/includes/Google/Cache/Memcache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Bz\;1?n_',_binary '܉P;B/6O\A\1\<\n{Sʃ,','',0,'?'),(_binary 'M1\	\Zg\&\'ѫ','wp-content/plugins/updraftplus/includes/Google/Cache/Null.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ԕwخ\bD\',_binary '\g\̄\[2>\M\b\\\&^\>\M','',0,'?'),(_binary 'n/Ρ~\Zx~\6','wp-content/plugins/updraftplus/includes/Google/Client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c!\o\ԑ]',_binary 'Ҁ\P\0\\(4lR(|˦ \0:\\F4\','',0,'?'),(_binary '}Ob \>\?2y','wp-content/plugins/updraftplus/includes/Google/Collection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\q\\ŗOj',_binary '&,\}z݇{\\\\#\4{	F','',0,'?'),(_binary '\ uFPjkq\=k\\','wp-content/plugins/updraftplus/includes/Google/Config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'íB&2R\\Vo)F\\n',_binary 'Yq\ю\[59\b\\ZW~\i\Q\\\','',0,'?'),(_binary '\\6\"\\ג','wp-content/plugins/updraftplus/includes/Google/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\\ZK/\',_binary 'Ʒ-\)۵إ\\z9\\Ip*\\#I\	','',0,'?'),(_binary '\}ġ\"Zѝ\'','wp-content/plugins/updraftplus/includes/Google/Http/Batch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}G\T\\_s#',_binary 'wpT$H\Iǹ\\AV*\\,&','',0,'?'),(_binary 'i\x\E@V\E\"','wp-content/plugins/updraftplus/includes/Google/Http/CacheParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o[wU\tUxe\\$',_binary '\b5wZ@\\0V@~	k!ͺwѩ\u s','',0,'?'),(_binary '#SV\\պ','wp-content/plugins/updraftplus/includes/Google/Http/MediaFileUpload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\B\,\VV:t',_binary '\wŠ\'m6Qݥa\h|\\G','',0,'?'),(_binary 'ZfZS#\\\\T','wp-content/plugins/updraftplus/includes/Google/Http/REST.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p\\8g\\\r\n',_binary 'fxJqw\Jk\n?\NqKH\~Z\-A\%\n','',0,'?'),(_binary 'uGP3*xOӍe','wp-content/plugins/updraftplus/includes/Google/Http/Request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y|VdNL<\˃\',_binary 'b\:\=jwj\\h\Zs/CP\\/i\','',0,'?'),(_binary 'AT\\{n\N]\','wp-content/plugins/updraftplus/includes/Google/IO/Abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\i6f7\\8C',_binary '\\~\Bu\	\\s-^?5','',0,'?'),(_binary '\OH\B\\\{(','wp-content/plugins/updraftplus/includes/Google/IO/Curl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+Hdr\\7&\1R',_binary '\\=G%\O\8\\)0cEBi-','',0,'?'),(_binary '\\WԾޥ9)\\','wp-content/plugins/updraftplus/includes/Google/IO/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\֚\\SѪNi8;\',_binary '#~bqqb$\ˡ\'s\ZߓJ','',0,'?'),(_binary '2WEbeY\Yi','wp-content/plugins/updraftplus/includes/Google/IO/Stream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\M\9.{3Rb',_binary '^5Rޮ:2~\$cqڜ\\ꭙ.Ժ=\','',0,'?'),(_binary '\\8Q\If\','wp-content/plugins/updraftplus/includes/Google/IO/cacerts.pem',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'>qGYٖCd\1',_binary 'E\4ab`\0)\Ui(@ψ[;\','',0,'?'),(_binary '0߁.8n4k_M\','wp-content/plugins/updraftplus/includes/Google/Logger/Abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DVe\n,!9\',_binary '\PV\|(\k\n\\\\8\\\.\','',0,'?'),(_binary '\\o\deZ','wp-content/plugins/updraftplus/includes/Google/Logger/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dY\\\j\\Z',_binary 'opJtǋ,A_\xa	\\*\|','',0,'?'),(_binary 'XUqn\\\ZҸ\'2@\','wp-content/plugins/updraftplus/includes/Google/Logger/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\8Aj<\]\+',_binary 'h#&\\	P9ZN<\r\߰E','',0,'?'),(_binary '1D\Zu#O','wp-content/plugins/updraftplus/includes/Google/Logger/Null.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OEz)v}\0 \\\\r(w',_binary 'h׵n\z}ִE`8x{\":}h\\r','',0,'?'),(_binary ':\\\J\o%\','wp-content/plugins/updraftplus/includes/Google/Logger/Psr.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oQ\7qMr\"\',_binary 'Wl\\(ߵ\\ڱyP\\)QvJ\#@l}\','',0,'?'),(_binary 'oM2\B\0!4\\S\','wp-content/plugins/updraftplus/includes/Google/Model.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\W\\Źx',_binary 'a-\<M>w OB%Ƈ\\K\S7','',0,'?'),(_binary 'B5A1\\EAg3\\\k5','wp-content/plugins/updraftplus/includes/Google/Service/Datastore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*ga\\*|P\\\',_binary '4M\C\\Wϔj!KJ>CZ\j\','',0,'?'),(_binary '\'q\{\Z\\>','wp-content/plugins/updraftplus/includes/Google/Service/Dns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\d\\\[!ʶO',_binary 'ڥ\.T:مn6nX)B\qѷ54*\','',0,'?'),(_binary '(i\'r>A3','wp-content/plugins/updraftplus/includes/Google/Service/Drive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0<=Mr0z0:\',_binary '\摤|R\1=P]5W\nY\N:	bj!','',0,'?'),(_binary '6@\\0^zcJq-','wp-content/plugins/updraftplus/includes/Google/Service/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R&˿\r}z\X',_binary '~\5}鳂\\\\n4\\n&j<m)\\E>\\','',0,'?'),(_binary '6)x\Tzތ\0\','wp-content/plugins/updraftplus/includes/Google/Service/Logging.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\_7{!\\.F\\n',_binary 'Z\λ\@H}.ڝ\<\8\(','',0,'?'),(_binary '*z8n\Z\S','wp-content/plugins/updraftplus/includes/Google/Service/Oauth2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U=\\\\RHf',_binary 'K5\$\N]%\)S0\'ȩ\J`R','',0,'?'),(_binary '\\կ\\p\Qz\Z','wp-content/plugins/updraftplus/includes/Google/Service/Resource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9R\,\|\\',_binary 'kjɓ\{\J\jJjT\Í$O[','',0,'?'),(_binary 'fR9]V#rs\','wp-content/plugins/updraftplus/includes/Google/Service/Storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\+WB*~J',_binary 'B\\>\AJ\\r\/n둹M>\:4+\>','',0,'?'),(_binary 'c\Z\%\\\\','wp-content/plugins/updraftplus/includes/Google/Service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\\!,\h\%jM\',_binary '\̤\ӥN>w {\04\3\P\','',0,'?'),(_binary '8\!\?Η\\`t','wp-content/plugins/updraftplus/includes/Google/Signer/Abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6S\\\W',_binary ':\\'L\\\r3Wٙs\ć\','',0,'?'),(_binary 'z!\38T\_\މ:','wp-content/plugins/updraftplus/includes/Google/Signer/P12.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|^;_h\H!oܗ\',_binary '\"\`n}&7<_H\AZ\\k&dP\','',0,'?'),(_binary '\r\e\Kg.q','wp-content/plugins/updraftplus/includes/Google/Task/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qi\\\\RYv`',_binary '\ע!g\|-GO$Mo.{t\/K+R','',0,'?'),(_binary 'Z=\\\\\ӓ\\j` ','wp-content/plugins/updraftplus/includes/Google/Task/Retryable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\y\lZKr\3\',_binary '\\"̼­M\\\_bﴕW\\iŶ6R}TA_\','',0,'?'),(_binary '\M[?ObU6$ޚ','wp-content/plugins/updraftplus/includes/Google/Task/Runner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VOӄZ',_binary '\!Si\;QQޞ?\\rՁ\\9k','',0,'?'),(_binary 'p{UʏКtecC4CDj','wp-content/plugins/updraftplus/includes/Google/Utils/URITemplate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ߘ	\zg(',_binary '\N\GEʭ<^@{oZ\G\\\\R','',0,'?'),(_binary '\\ٯ\\]+\Wf','wp-content/plugins/updraftplus/includes/Google/Utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+3q;yr',_binary 's*\a~TкYTnܟ\\\\\(\Z\','',0,'?'),(_binary 'ŸMȻՠIך','wp-content/plugins/updraftplus/includes/Google/Verifier/Abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\z\\'N\',_binary '\\\XVU\c<j\\"f.{\a\?','',0,'?'),(_binary 'ٙ[\y?m\"','wp-content/plugins/updraftplus/includes/Google/Verifier/Pem.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\̓j1^ID\',_binary 'q\4r]Ϭ0ߣgÿВE1u','',0,'?'),(_binary '*q*6\r6\z\\\','wp-content/plugins/updraftplus/includes/Google/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1\\<]\',_binary '}B~\sw\Bs\\`Wسf>\hͼ','',0,'?'),(_binary '\\؆[B\r̳$W','wp-content/plugins/updraftplus/includes/S3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\8x\\=,\ ',_binary 'A-\\4x|\\%\\YI&.9x\','',0,'?'),(_binary '^\P\siy/a\','wp-content/plugins/updraftplus/includes/S3compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C~\=W\\\$',_binary 'Ib\\%\-AUe\Z>\n\D\:\\]','',0,'?'),(_binary '㹰RʥJ\\k5','wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-10.min.js',0,_binary 'b\XQ\#\D',_binary 'b\XQ\#\D',_binary '2a\\\sÖ\PZ	P\\8\%蛠H','',0,'?'),(_binary '5\r\0wd/\\Rn','wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-11.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\XQ\#\D',_binary '2a\\\sÖ\PZ	P\\8\%蛠H','',0,'?'),(_binary ';6wT[\6\*D','wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-3.min.js',0,_binary 'b\XQ\#\D',_binary 'b\XQ\#\D',_binary '2a\\\sÖ\PZ	P\\8\%蛠H','',0,'?'),(_binary '\DOX~(4w-s\','wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-4.min.js',0,_binary 'b\XQ\#\D',_binary 'b\XQ\#\D',_binary '2a\\\sÖ\PZ	P\\8\%蛠H','',0,'?'),(_binary 'b(\9M','wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-5.min.js',0,_binary 'b\XQ\#\D',_binary 'b\XQ\#\D',_binary '2a\\\sÖ\PZ	P\\8\%蛠H','',0,'?'),(_binary '\b\V6VpDt:\07Q','wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-6.min.js',0,_binary 'b\XQ\#\D',_binary 'b\XQ\#\D',_binary '2a\\\sÖ\PZ	P\\8\%蛠H','',0,'?'),(_binary '\\'\MlXMJ+\','wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-7.min.js',0,_binary 'b\XQ\#\D',_binary 'b\XQ\#\D',_binary '2a\\\sÖ\PZ	P\\8\%蛠H','',0,'?'),(_binary 'z\/j)\\\n','wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-8.min.js',0,_binary 'b\XQ\#\D',_binary 'b\XQ\#\D',_binary '2a\\\sÖ\PZ	P\\8\%蛠H','',0,'?'),(_binary '\6R97|#P+([D!','wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-9.min.js',0,_binary 'b\XQ\#\D',_binary 'b\XQ\#\D',_binary '2a\\\sÖ\PZ	P\\8\%蛠H','',0,'?'),(_binary 't\[o\ʍ\ \V','wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd ?\_\\:',_binary '\H\\@-*\\eJp\X	L\','',0,'?'),(_binary '\o\$\\ܳ','wp-content/plugins/updraftplus/includes/cacert.pem',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bŞI\XZϪ\@]',_binary 'c(f<\B\w\rot\W\ֱ=~	','',0,'?'),(_binary '\ȶI\U͖\','wp-content/plugins/updraftplus/includes/checkout-embed/assets/loader.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\X@uiL\"\',_binary 'jX\\w=ws\Kw%o<qb\\ZNF','',0,'?'),(_binary 'C\\0s(b~L','wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-10.min.js',0,_binary 'ˢ\NZJz\\&\',_binary 'ˢ\NZJz\\&\',_binary 'Z`P\c&\\P~F!=\+','',0,'?'),(_binary '\:m\~\\"\5j','wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-11.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7ף?\X*]',_binary '&3E[\\\X\ZLo\C_-w\nT','',0,'?'),(_binary 'jN.ogC\%','wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-11.min.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\hb.wG',_binary 'S9\f+\:}\ƫT|)\\b\vFdqA','',0,'?'),(_binary 'SE\p\:\\R=b\\','wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-11.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˢ\NZJz\\&\',_binary 'Z`P\c&\\P~F!=\+','',0,'?'),(_binary ' qҷ]Ϙ Z\Zt','wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-3.min.js',0,_binary 'ˢ\NZJz\\&\',_binary 'ˢ\NZJz\\&\',_binary 'Z`P\c&\\P~F!=\+','',0,'?'),(_binary '\'\5_Dܓ@','wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-4.min.js',0,_binary 'ˢ\NZJz\\&\',_binary 'ˢ\NZJz\\&\',_binary 'Z`P\c&\\P~F!=\+','',0,'?'),(_binary '|HжǾ2]\!&\0}','wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-5.min.js',0,_binary 'ˢ\NZJz\\&\',_binary 'ˢ\NZJz\\&\',_binary 'Z`P\c&\\P~F!=\+','',0,'?'),(_binary '&\p\r\\3;\O','wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-6.min.js',0,_binary 'ˢ\NZJz\\&\',_binary 'ˢ\NZJz\\&\',_binary 'Z`P\c&\\P~F!=\+','',0,'?'),(_binary 'VefI4\A\D','wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-7.min.js',0,_binary 'ˢ\NZJz\\&\',_binary 'ˢ\NZJz\\&\',_binary 'Z`P\c&\\P~F!=\+','',0,'?'),(_binary '\3!$\\ x','wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-8.min.js',0,_binary 'ˢ\NZJz\\&\',_binary 'ˢ\NZJz\\&\',_binary 'Z`P\c&\\P~F!=\+','',0,'?'),(_binary '1!9\\(\\%t','wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-9.min.js',0,_binary 'ˢ\NZJz\\&\',_binary 'ˢ\NZJz\\&\',_binary 'Z`P\c&\\P~F!=\+','',0,'?'),(_binary '#\\$\Pi\Z\','wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V=PL\\s',_binary '}C\\\ .*\\\\kWn.x\\5\j','',0,'?'),(_binary 'LT\ϩ5#co','wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\(=\(g|',_binary ')0_\:})|\Lv :\\u\W\'ր_C','',0,'?'),(_binary 'Tյ|g\mxqH\','wp-content/plugins/updraftplus/includes/checkout-embed/class-udp-checkout-embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X,{Z.EwH_',_binary '(|]to݅o\7KQy\]oD_wMG','',0,'?'),(_binary 'ߩ@\?#e\(','wp-content/plugins/updraftplus/includes/checkout-embed/products.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$h}p\\X\\r\',_binary 'rd\\=ZŨ/ۢ\zvs\D\"y\cȎ\\꼖','',0,'?'),(_binary '\%\"T< \','wp-content/plugins/updraftplus/includes/checkout-embed/readme.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\e\r\\$\m\I\',_binary '9^C\+9e@^[u{/lο nh','',0,'?'),(_binary 'ڈA\nպ\E\\\','wp-content/plugins/updraftplus/includes/class-backup-history.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rS! \H\',_binary '\t7t\(6c\r\\7,\u ^5H','',0,'?'),(_binary '\fNɕW~EP','wp-content/plugins/updraftplus/includes/class-commands.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f[b9 D&y\\\',_binary 'j\n<V!\1OvW\00@\0\\r_','',0,'?'),(_binary '\!Q\~m\áj','wp-content/plugins/updraftplus/includes/class-database-utility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a\\.L7\',_binary '\w\,ha\nVynZ\<#','',0,'?'),(_binary '\vň&CQ\','wp-content/plugins/updraftplus/includes/class-filesystem-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^:M\W};I\\\',_binary '\h\5=Ո1ODc\7\\56\','',0,'?'),(_binary '\J\\In;\\q','wp-content/plugins/updraftplus/includes/class-job-scheduler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ڵ\KM\',_binary 'U\p\r\o\$i/ZAcKiČQ','',0,'?'),(_binary '_np\t]i\\\Gp','wp-content/plugins/updraftplus/includes/class-manipulation-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$1Q\\\H:[a',_binary '(إ\\a\CS\g|D,2zxӘ\K','',0,'?'),(_binary '\\\5Fc\?\\','wp-content/plugins/updraftplus/includes/class-partialfileservlet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\2\iTn=',_binary '\\BXASr!\kbfq`B@*c','',0,'?'),(_binary '\r\q\U\\','wp-content/plugins/updraftplus/includes/class-remote-send.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\&\M\jGuqm\',_binary '\Zs=i`W5\\\\f\h\1R\','',0,'?'),(_binary '\0U\\t\P\Px','wp-content/plugins/updraftplus/includes/class-search-replace.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nSBD>z\\ب\',_binary '\ئ\ΊA7\\)q\r\\\y\\\8M','',0,'?'),(_binary 'hɝ\r\\u\','wp-content/plugins/updraftplus/includes/class-semaphore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'mfd\n˜o',_binary 'h]֝O\rbJe=F\"1[\rTr\'\k<','',0,'?'),(_binary 'f`:\]\kh\z\','wp-content/plugins/updraftplus/includes/class-storage-methods-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7G\HPN\^Yᖃ',_binary '\\TIF>\\ZgU\\0NM$9[4','',0,'?'),(_binary 'C-4\\^#yN \T','wp-content/plugins/updraftplus/includes/class-udrpc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z!a\0fG\\\_Wph',_binary '.\\\n\\ZC\i>bl/4\Δ/\m9','',0,'?'),(_binary ')\ə\ɗ','wp-content/plugins/updraftplus/includes/class-updraft-dashboard-news.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R/[Y?\w&',_binary '6Jh=Pl֒\W\7\'\5?U\w9\rn\'\|','',0,'?'),(_binary '\\1$LOэ','wp-content/plugins/updraftplus/includes/class-updraft-semaphore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\L\bVSd2b{v\W',_binary ' \bg\w<\\\\y^÷y,<{\\','',0,'?'),(_binary 'r\Qo\Z\>\','wp-content/plugins/updraftplus/includes/class-updraftcentral-updraftplus-commands.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xf\54P\\\\',_binary 's\razA9O^Zs2yJۧN~M\cC؎','',0,'?'),(_binary 'gBRY\?fڱoPcϗZ','wp-content/plugins/updraftplus/includes/class-updraftplus-encryption.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G	S`쓌U',_binary 'j\r4jL9\0\@)zH\O)(.~V','',0,'?'),(_binary '\HB͜[!+<\,','wp-content/plugins/updraftplus/includes/class-wpadmin-commands.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aro\MV\,4',_binary 'S\i\\&K\>\[;\\eCpo\','',0,'?'),(_binary '\\\\Q\\icA\','wp-content/plugins/updraftplus/includes/class-zip.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KUJ	Oۤ\\v',_binary 'y]M\\\77s0\'R+V\n\\\R\mo$','',0,'?'),(_binary 'U!]\ɲ^\W.\\','wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\򘉱#q\~\O',_binary '\k\\\k[\w\\rnoI\\','',0,'?'),(_binary '\\!&\\z\','wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_exceptions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v!e(i\:h\Z',_binary 'i3\\F\\\0i7\'TdLF\0M}M','',0,'?'),(_binary '\\@1\\uM{','wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_http.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&g\KdC.ĵ&',_binary '?S>ȃH\'M-oԭ|c\&','',0,'?'),(_binary 'P\`D#|H!-u ','wp-content/plugins/updraftplus/includes/ftp.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɳT\:v\\"\x\"',_binary '\\\\\>\q\\ql!9Y\\ Rb\\','',0,'?'),(_binary '\5(Ƴn;ӎmA%\Z','wp-content/plugins/updraftplus/includes/get-cpanel-quota-usage.pl',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\3\kߚ\',_binary 'Ka_]p\v\ϩ-`\Ƹ+V\YlW','',0,'?'),(_binary 'Y\t\\Z\6A','wp-content/plugins/updraftplus/includes/google-extensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\\go1}\n^',_binary '\r%\\0\\?b\6qk3f\\','',0,'?'),(_binary '\x\8CTX7jcF','wp-content/plugins/updraftplus/includes/handlebars/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J\I\\׹5\<',_binary '\ZFp4k\YП\\\rƔ*]=	279','',0,'?'),(_binary '\0\p@\','wp-content/plugins/updraftplus/includes/handlebars/handlebars.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ӝ(ȝ\0g_',_binary 'nx[SZ(A^2MpR9','',0,'?'),(_binary '<\\3q\;iz','wp-content/plugins/updraftplus/includes/handlebars/handlebars.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\mU3\\\|!',_binary '~\\\ʘ\T(\\\01X\\rYE\T\\B','',0,'?'),(_binary '\ޓ\CMp6Yz','wp-content/plugins/updraftplus/includes/handlebars/handlebars.runtime.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\L\ł\\rqG',_binary '\]\n\4p+|ŭ<\Ņ1L\L)','',0,'?'),(_binary '4r\p$\D\D0I]','wp-content/plugins/updraftplus/includes/handlebars/handlebars.runtime.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0M\'u\\\|\\7\\S',_binary 'S\\\Z\&{uNN\\n:\Krj(9o\\'%ztn6','',0,'?'),(_binary 'ǤB\"\(~\g','wp-content/plugins/updraftplus/includes/images/ui-bg_diagonals-thick_18_b81900_40x40.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?X\'G9h\\\d1$U',_binary '\\C\]J\i\X^v\,(\','',0,'?'),(_binary '\Qu\}\WN','wp-content/plugins/updraftplus/includes/images/ui-bg_diagonals-thick_20_666666_40x40.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']8TP\\n\FL',_binary 'Xk8m(\3Lָ\熼[\r','',0,'?'),(_binary ')˼*\$\aT','wp-content/plugins/updraftplus/includes/images/ui-bg_flat_10_000000_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\R\\\:\7g D4',_binary '\n\T^{\x}\\m\B5?\\\Ge','',0,'?'),(_binary 'gCA\riNb','wp-content/plugins/updraftplus/includes/images/ui-bg_glass_100_f6f6f6_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\=`\0O4A\\	',_binary 'd\U\\\l\\M\\N4k\'DOxZ%k','',0,'?'),(_binary 'Խ\\G3P*\K','wp-content/plugins/updraftplus/includes/images/ui-bg_glass_100_fdf5ce_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ѿ\CT\rW\'\dc',_binary 'װXHj\\\'H*ڮA\\|BSng\','',0,'?'),(_binary '\IB\{θZ*_','wp-content/plugins/updraftplus/includes/images/ui-bg_glass_65_ffffff_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȩ_=n>\6',_binary '\u)#-\\iLI \W\)m\0+z\\\Z67','',0,'?'),(_binary 'I\qt\5GmƧ','wp-content/plugins/updraftplus/includes/images/ui-bg_gloss-wave_35_f6a828_500x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UeZEKx?\\r L\',_binary 'd$\\)o^\`? ]\%nIb\','',0,'?'),(_binary '&kh\0\\F','wp-content/plugins/updraftplus/includes/images/ui-bg_highlight-soft_100_eeeeee_1x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g-\\\*`@\\',_binary 'P\\\\#\K\h̿R0#\b,m','',0,'?'),(_binary 'A\u2\?\\\\m0','wp-content/plugins/updraftplus/includes/images/ui-bg_highlight-soft_75_ffe45c_1x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:\0N22\&',_binary '\\\Z\]\02}\"^۫\tx\\r','',0,'?'),(_binary '\Wkl\\\\\','wp-content/plugins/updraftplus/includes/images/ui-icons_222222_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"Pw?m\vt-S\{',_binary 'p˽	J\H\"\U\Q\Y;@[-','',0,'?'),(_binary 'F\\\C˄4~.\','wp-content/plugins/updraftplus/includes/images/ui-icons_228ef1_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	eo\n4#\~}W',_binary '\0\"p\\\\Gy\Np~\\* 7n\'\؍','',0,'?'),(_binary 'ݽ\ԦD\U\u\','wp-content/plugins/updraftplus/includes/images/ui-icons_ef8c08_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{.\\\7+\0\K',_binary 'ʫf\nJT3hY\\\c\1M8l\5E\6r\\','',0,'?'),(_binary '\_\\e\\f\\\','wp-content/plugins/updraftplus/includes/images/ui-icons_ffd27a_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\P74\1\9',_binary '2p\\\\pki˭!S\,\^e\\','',0,'?'),(_binary '%(7\s&ܻ\','wp-content/plugins/updraftplus/includes/images/ui-icons_ffffff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\j\6@O\ΐ\',_binary '\'\4[\\`ϐ?˓ܖS\Z\npժ\\[m\','',0,'?'),(_binary 'f\\\'\؍\ZSF\\','wp-content/plugins/updraftplus/includes/jquery-ui.custom-v1.11.4-1-22-11.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=,ׇ[\\C\\',_binary '2 \5)(Z\\UD~\\}W','',0,'?'),(_binary 'PP`.n+\1','wp-content/plugins/updraftplus/includes/jquery-ui.custom-v1.11.4-1-22-11.min.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\\\,|ʳ',_binary ';\KU\@M2\\\w\?/YF&','',0,'?'),(_binary '^:\2oQ.ᠵ4\\\'','wp-content/plugins/updraftplus/includes/jquery-ui.custom-v1.11.4.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\jHtw)',_binary 'K\\\u$\C7I q\K\i?\ؐ','',0,'?'),(_binary '\jo\\*i15N\','wp-content/plugins/updraftplus/includes/jquery-ui.custom-v1.12.1-1-22-11.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?	\+\qO\Cز\U',_binary '2\A\#\\	a-_\'\\D\\/1:\','',0,'?'),(_binary '̺\\lN\7#;\\','wp-content/plugins/updraftplus/includes/jquery-ui.custom-v1.12.1-1-22-11.min.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\N0L\0X\Zr`',_binary '\NG`\B	\\\n\r\H21Еۄ','',0,'?'),(_binary '$\ZTe4PJeʌh','wp-content/plugins/updraftplus/includes/jquery-ui.custom-v1.12.1.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\h[\Ǜd\0',_binary ')\\n\\]QY0\F\\5)\\\O\(##\','',0,'?'),(_binary 'c+m~\B,\\\S\{','wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-10.min.js',0,_binary 'hb>Լ\-Yu+=',_binary 'hb>Լ\-Yu+=',_binary 'dװ\\\9⑼\@\Hd\1\:ukٺ\rѫ','',0,'?'),(_binary 'X\jYS[\tpJ\\','wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-11.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hb>Լ\-Yu+=',_binary 'dװ\\\9⑼\@\Hd\1\:ukٺ\rѫ','',0,'?'),(_binary '\\0\\P\Q\2','wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-3.min.js',0,_binary 'hb>Լ\-Yu+=',_binary 'hb>Լ\-Yu+=',_binary 'dװ\\\9⑼\@\Hd\1\:ukٺ\rѫ','',0,'?'),(_binary '\\r\\^nPGµ','wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-4.min.js',0,_binary 'hb>Լ\-Yu+=',_binary 'hb>Լ\-Yu+=',_binary 'dװ\\\9⑼\@\Hd\1\:ukٺ\rѫ','',0,'?'),(_binary '\0Ņ\Q\ϣ\{\','wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-5.min.js',0,_binary 'hb>Լ\-Yu+=',_binary 'hb>Լ\-Yu+=',_binary 'dװ\\\9⑼\@\Hd\1\:ukٺ\rѫ','',0,'?'),(_binary ' \\ʣ QM','wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-6.min.js',0,_binary 'hb>Լ\-Yu+=',_binary 'hb>Լ\-Yu+=',_binary 'dװ\\\9⑼\@\Hd\1\:ukٺ\rѫ','',0,'?'),(_binary '\\\Mo\\n\a\','wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-7.min.js',0,_binary 'hb>Լ\-Yu+=',_binary 'hb>Լ\-Yu+=',_binary 'dװ\\\9⑼\@\Hd\1\:ukٺ\rѫ','',0,'?'),(_binary '\e\n\y#\\n0<','wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-8.min.js',0,_binary 'hb>Լ\-Yu+=',_binary 'hb>Լ\-Yu+=',_binary 'dװ\\\9⑼\@\Hd\1\:ukٺ\rѫ','',0,'?'),(_binary '\C\!j\\I\~','wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-9.min.js',0,_binary 'hb>Լ\-Yu+=',_binary 'hb>Լ\-Yu+=',_binary 'dװ\\\9⑼\@\Hd\1\:ukٺ\rѫ','',0,'?'),(_binary 'q\1X\|\\','wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>L7g\Y\\',_binary 'ӹQ5vܖnToBfSڄ\+\B\1','',0,'?'),(_binary 'x\$\n3y7\Z','wp-content/plugins/updraftplus/includes/jquery.serializeJSON/jquery.serializejson.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '뎖\\Z;\nJx%',_binary '$,\'JBv|\\\f@%\\[\tӉ\\','',0,'?'),(_binary '\0\\ZvT\QH\','wp-content/plugins/updraftplus/includes/jquery.serializeJSON/jquery.serializejson.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\*\'\01c\O',_binary '8V[9\\P6Y?Dć','',0,'?'),(_binary 'rR\/\#+\7<^','wp-content/plugins/updraftplus/includes/jstree/jstree.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']:;_h1u\c\n^:f',_binary '\fOCy\\.\fA\\<<yWV7\','',0,'?'),(_binary '\	Vq%\l#','wp-content/plugins/updraftplus/includes/jstree/jstree.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\gO\摻\Hs',_binary 'r\'<\b]\Ý}U;*(L=Q','',0,'?'),(_binary 'N\ަ\gC\I:','wp-content/plugins/updraftplus/includes/jstree/themes/default/32px.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!BWIN\'\ŸM',_binary '\C\\\\z \0(_D\Aذf(\r','',0,'?'),(_binary '*ty	7\(Z\sr;0w','wp-content/plugins/updraftplus/includes/jstree/themes/default/40px.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}/ڜ:sPeaO',_binary 'GO\ԆJ\N\}\aTĞ\|<G=%\\','',0,'?'),(_binary 'Y-8gm\\<Z28$Q`','wp-content/plugins/updraftplus/includes/jstree/themes/default/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZvgoON\mE\G',_binary 'kC	\q\9sN\\\`\&\rԹ','',0,'?'),(_binary '\\0wG=ǣwJ\\','wp-content/plugins/updraftplus/includes/jstree/themes/default/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#	\,.\ˆ\nW\"4',_binary 'U\b&\0coʰg\7<Vw\",','',0,'?'),(_binary 'ju\%\Ɋ\r\0Fҧg\','wp-content/plugins/updraftplus/includes/jstree/themes/default/throbber.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\g^x l',_binary '\s\nH\K!֐gkn\\\\\0\\w','',0,'?'),(_binary '\)k&\\`_i)\','wp-content/plugins/updraftplus/includes/jstree/themes/default-dark/32px.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\0r\n8I)\xk',_binary 'c\]\02$J\$\\B\\\3DA','',0,'?'),(_binary 'kQ{^\ZL_Ҽ','wp-content/plugins/updraftplus/includes/jstree/themes/default-dark/40px.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\"U\\GQ|\H',_binary 'K\	?\ES\=\a\n\3{wDa\m','',0,'?'),(_binary '\ΠM-h\\','wp-content/plugins/updraftplus/includes/jstree/themes/default-dark/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\o\㜇\j\\\G',_binary '嫝gG?3RװV\\B+۵\\v4\','',0,'?'),(_binary 'ሳ\\֊ZрW 9þ','wp-content/plugins/updraftplus/includes/jstree/themes/default-dark/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\zg)Jz',_binary ',V\\|\\\[rm$\lЅ8.&!\','',0,'?'),(_binary 'jծ\\\\hq|','wp-content/plugins/updraftplus/includes/jstree/themes/default-dark/throbber.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '//d\\\!\\r\g',_binary '\\^+tSbQ\\\V\PtccO\V\','',0,'?'),(_binary '\&\x9\niRu\','wp-content/plugins/updraftplus/includes/labelauty/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\\x\r\a m.UR\',_binary 'tN\ZqJ@ev,\BDس)\oq','',0,'?'),(_binary '4l\Aj,\','wp-content/plugins/updraftplus/includes/labelauty/images/input-checked.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\h<jH#늭\n\',_binary 'K\\p\\d;u\Ӥ\05f]s\8\\=\R','',0,'?'),(_binary 'S4`Z8\Z\Mi\0','wp-content/plugins/updraftplus/includes/labelauty/images/input-unchecked.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k5\\ \\/\hl\*',_binary 'y\\\j\\/\\9\@\0\\h','',0,'?'),(_binary ']\\W\~;d\y}\m)','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-10.min.js',0,_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'vx+>㝧X\\]>\}E\.u[^','',0,'?'),(_binary '\ lƞ\TW\','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-11.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{\K\\\ЈP~',_binary '\\H+ 	x\\~y\\','',0,'?'),(_binary '>`\9!Կ\bE','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-11.min.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\ZΥk(,fN',_binary 'R=\=\w\v\\\s~Sh\\\','',0,'?'),(_binary '\T잎8\t','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-11.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'vx+>㝧X\\]>\}E\.u[^','',0,'?'),(_binary '\KO\;\n.?G]ڍ\','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-3.min.js',0,_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'vx+>㝧X\\]>\}E\.u[^','',0,'?'),(_binary '\0)ѸTxiwf]','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-4.min.js',0,_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'vx+>㝧X\\]>\}E\.u[^','',0,'?'),(_binary '1\u\>\\B\'S','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-5.min.js',0,_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'vx+>㝧X\\]>\}E\.u[^','',0,'?'),(_binary 'ЯhԺ\7','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-6.min.js',0,_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'vx+>㝧X\\]>\}E\.u[^','',0,'?'),(_binary 'gh\\\\+\3RX','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-7.min.js',0,_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'vx+>㝧X\\]>\}E\.u[^','',0,'?'),(_binary 'hi4볜\\|ob\','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-8.min.js',0,_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'vx+>㝧X\\]>\}E\.u[^','',0,'?'),(_binary '\\ Ё7[\1/s','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-9.min.js',0,_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'D\ƻ|+ƞ\4-\\\'\',_binary 'vx+>㝧X\\]>\}E\.u[^','',0,'?'),(_binary 'n1v-\0k\qf\','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5I\\Z@\\\`',_binary '7Vplh)Ոݓ\0XÅ8\c;&','',0,'?'),(_binary 'B\'Ll\\nAB\K`?','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\\\9k][ډV',_binary '\{.\i\\"%9\>L\\\gʼH\\','',0,'?'),(_binary 'h/=b\\"	/#o','wp-content/plugins/updraftplus/includes/tether/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Z\p\إ\i',_binary 'B\?\\"{\n``\|HW\\\ju','',0,'?'),(_binary 'Lf\\e<GGU:','wp-content/plugins/updraftplus/includes/tether/tether.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\'Gr\|(x\\x',_binary 'D\\=F:\0}Z\\D\n2_;fTq','',0,'?'),(_binary '\\O1\r\','wp-content/plugins/updraftplus/includes/tether/tether.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Yy\\iz',_binary '\Ui(9ￌ\bUT,\RΕS','',0,'?'),(_binary '3\n\r\\n1','wp-content/plugins/updraftplus/includes/tether-shepherd/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BF=ǑG:\n\\I\',_binary 'V\\\\\S}\\K<+ϵݜ?\7\','',0,'?'),(_binary 'a#%-\2cؓ','wp-content/plugins/updraftplus/includes/tether-shepherd/shepherd.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\&T+\K\',_binary 'j\\\3\3IU\\޾8eP\nJ-j\']lv','',0,'?'),(_binary '[6	\`\{	\\\\z','wp-content/plugins/updraftplus/includes/tether-shepherd/shepherd.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\n+bA|-\\X',_binary 'g7>^rֲ\Ygd7羊\\`=','',0,'?'),(_binary '\QZOI\\rK\V','wp-content/plugins/updraftplus/includes/tether-shepherd/tether.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '٬MU6\/\\A1\',_binary '\nG\\#s\\UW\N','',0,'?'),(_binary '\\+*\'$G~\\','wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-10.min.js',0,_binary 'G\\Ə0\^\',_binary 'G\\Ə0\^\',_binary 'GApzU\0t\"a`~\\m','',0,'?'),(_binary '<3\1\0yo1','wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-11.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\\Ə0\^\',_binary 'GApzU\0t\"a`~\\m','',0,'?'),(_binary 'xP	un;m=\_/}1','wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-3.min.js',0,_binary 'G\\Ə0\^\',_binary 'G\\Ə0\^\',_binary 'GApzU\0t\"a`~\\m','',0,'?'),(_binary '\%״YaB','wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-4.min.js',0,_binary 'G\\Ə0\^\',_binary 'G\\Ə0\^\',_binary 'GApzU\0t\"a`~\\m','',0,'?'),(_binary '\dj\뒞T\n\\','wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-5.min.js',0,_binary 'G\\Ə0\^\',_binary 'G\\Ə0\^\',_binary 'GApzU\0t\"a`~\\m','',0,'?'),(_binary 'g#\f\YU9c\','wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-6.min.js',0,_binary 'G\\Ə0\^\',_binary 'G\\Ə0\^\',_binary 'GApzU\0t\"a`~\\m','',0,'?'),(_binary '\ƕ\\EYYv\\','wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-7.min.js',0,_binary 'G\\Ə0\^\',_binary 'G\\Ə0\^\',_binary 'GApzU\0t\"a`~\\m','',0,'?'),(_binary '\\7K֢vӂ','wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-8.min.js',0,_binary 'G\\Ə0\^\',_binary 'G\\Ə0\^\',_binary 'GApzU\0t\"a`~\\m','',0,'?'),(_binary '[\ ߠ\~\{Jw\','wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-9.min.js',0,_binary 'G\\Ə0\^\',_binary 'G\\Ə0\^\',_binary 'GApzU\0t\"a`~\\m','',0,'?'),(_binary 'h	\0h\\q{\A','wp-content/plugins/updraftplus/includes/updraft-admin-common.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\A\\\\V',_binary 'A[\Ӑ-\\\\	(\0\\`v\ZG\J\b','',0,'?'),(_binary '\\z63\D<[t\ˍ','wp-content/plugins/updraftplus/includes/updraft-notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '͔;\\z:߻\',_binary '\\\:\,߬\\r\\a?P	\h\','',0,'?'),(_binary '\D{\W\1\','wp-content/plugins/updraftplus/includes/updraft-restorer-skin-compatibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\C\\\;\e',_binary 'O7ޚn\#\\xY\\\6\f\UK','',0,'?'),(_binary 'S%M䑱\j7+PAK','wp-content/plugins/updraftplus/includes/updraft-restorer-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w\\φ\a\c',_binary 'R\u$`\\3w]\~\\Weֵ','',0,'?'),(_binary ']\a]\2wԢ\','wp-content/plugins/updraftplus/includes/updraftcentral.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lchO|\s\\\+[0',_binary '\\N;\!`/4Ϧ\0Y\E\hwViJa9oW','',0,'?'),(_binary 'Z	\?b\/$5','wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-auto-login.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}t\ö\f\D$.',_binary 'Q!C\~\2Zu\Q\bF\\\\T\}s\'','',0,'?'),(_binary ':e\7ѿ\\n86\','wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-dash-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',>\\ҙ\/L\\D\',_binary '\&H]pg0Jf\M\#~3\\VxBPb*\','',0,'?'),(_binary '\\\$Fxm','wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-restore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\m&<\O9\\v\',_binary 'AQ8= .rrJ\dm\d\J`}','',0,'?'),(_binary 'b=u\fF/\\!ͨ','wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\\\\k}\KF',_binary '\i6\:\h޽ Nw&N\^M?','',0,'?'),(_binary '?\U˕209Pw\','wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-user-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H7.\'\l2s\',_binary '\j֑O(\,\oc\v\L\','',0,'?'),(_binary '253k\\\	','wp-content/plugins/updraftplus/includes/updraftplus-clone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-lvD;CRt_U\',_binary '(FB\\>\I5\8Ņ\{E*\\ \	','',0,'?'),(_binary '\mZ|%\\d','wp-content/plugins/updraftplus/includes/updraftplus-login.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Vߦ1rn\\ez',_binary 'K:\Z\\Ewqˀ=y\/^%\\y\rݹC','',0,'?'),(_binary '\ì;_E\s\Dێ\','wp-content/plugins/updraftplus/includes/updraftplus-notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>*\\>@/',_binary '8\U7@\0\G\\0\\3@\\','',0,'?'),(_binary '\\\s0?BW\ǣ!','wp-content/plugins/updraftplus/includes/updraftplus-tour.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\ig\\E&xS6',_binary 'I0\"m(Jp\\XI/\M\Bߍ','',0,'?'),(_binary '5ivb\\@~)\','wp-content/plugins/updraftplus/includes/updraftvault.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']fFk<\듅\',_binary 'X\N}\]|(\`\k\!O\0Hn[q\','',0,'?'),(_binary 'H;c)\[\','wp-content/plugins/updraftplus/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a:+\BЇq\0\',_binary '\H3\˔IxA\;ev\9]\㳡','',0,'?'),(_binary '\\\\\ߙJ1\nz','wp-content/plugins/updraftplus/js/tour-1-22-10.min.js',0,_binary '>,笙d_Gs1\n\',_binary '>,笙d_Gs1\n\',_binary '\a9h;q^A^>.VM\\f\\1F\Z','',0,'?'),(_binary '9~Mߓ9\7\!&','wp-content/plugins/updraftplus/js/tour-1-22-11.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>,笙d_Gs1\n\',_binary '\a9h;q^A^>.VM\\f\\1F\Z','',0,'?'),(_binary 'J\ͬTv8AK\','wp-content/plugins/updraftplus/js/tour-1-22-3.min.js',0,_binary '>,笙d_Gs1\n\',_binary '>,笙d_Gs1\n\',_binary '\a9h;q^A^>.VM\\f\\1F\Z','',0,'?'),(_binary 'и Ns\c.M\/\P','wp-content/plugins/updraftplus/js/tour-1-22-4.min.js',0,_binary '>,笙d_Gs1\n\',_binary '>,笙d_Gs1\n\',_binary '\a9h;q^A^>.VM\\f\\1F\Z','',0,'?'),(_binary '؃\nO2LM~{','wp-content/plugins/updraftplus/js/tour-1-22-5.min.js',0,_binary '>,笙d_Gs1\n\',_binary '>,笙d_Gs1\n\',_binary '\a9h;q^A^>.VM\\f\\1F\Z','',0,'?'),(_binary 'wj\ֵ|\"˽p|','wp-content/plugins/updraftplus/js/tour-1-22-6.min.js',0,_binary '>,笙d_Gs1\n\',_binary '>,笙d_Gs1\n\',_binary '\a9h;q^A^>.VM\\f\\1F\Z','',0,'?'),(_binary '\\\J\\\}','wp-content/plugins/updraftplus/js/tour-1-22-7.min.js',0,_binary '>,笙d_Gs1\n\',_binary '>,笙d_Gs1\n\',_binary '\a9h;q^A^>.VM\\f\\1F\Z','',0,'?'),(_binary '=nr{I\\\"\\\\','wp-content/plugins/updraftplus/js/tour-1-22-8.min.js',0,_binary '>,笙d_Gs1\n\',_binary '>,笙d_Gs1\n\',_binary '\a9h;q^A^>.VM\\f\\1F\Z','',0,'?'),(_binary 'R^|b}Y\\3\u\','wp-content/plugins/updraftplus/js/tour-1-22-9.min.js',0,_binary '>,笙d_Gs1\n\',_binary '>,笙d_Gs1\n\',_binary '\a9h;q^A^>.VM\\f\\1F\Z','',0,'?'),(_binary 'dߨ6 #\<˯','wp-content/plugins/updraftplus/js/tour.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I3\$i\T\\\0J',_binary 'dg\0\\b Q.\Mx\SQ\\4m0\','',0,'?'),(_binary '\\N\ref\KPS\J','wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-10.min.js',0,_binary 'Ý\DlR\\Y0,\'',_binary 'Ý\DlR\\Y0,\'',_binary '\\YYȸqT\q@K.x{\'%F','',0,'?'),(_binary 'DT7}\','wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-11.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ý\DlR\\Y0,\'',_binary '\\YYȸqT\q@K.x{\'%F','',0,'?'),(_binary '\~j\\KXh~\','wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-3.min.js',0,_binary 'Ý\DlR\\Y0,\'',_binary 'Ý\DlR\\Y0,\'',_binary '\\YYȸqT\q@K.x{\'%F','',0,'?'),(_binary 'e.RHC>g{S','wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-4.min.js',0,_binary 'Ý\DlR\\Y0,\'',_binary 'Ý\DlR\\Y0,\'',_binary '\\YYȸqT\q@K.x{\'%F','',0,'?'),(_binary '\^xj G;\+R\','wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-5.min.js',0,_binary 'Ý\DlR\\Y0,\'',_binary 'Ý\DlR\\Y0,\'',_binary '\\YYȸqT\q@K.x{\'%F','',0,'?'),(_binary '\\}M\_x|iw\6dj','wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-6.min.js',0,_binary 'Ý\DlR\\Y0,\'',_binary 'Ý\DlR\\Y0,\'',_binary '\\YYȸqT\q@K.x{\'%F','',0,'?'),(_binary '厬\'RK\RJ\','wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-7.min.js',0,_binary 'Ý\DlR\\Y0,\'',_binary 'Ý\DlR\\Y0,\'',_binary '\\YYȸqT\q@K.x{\'%F','',0,'?'),(_binary '\\_\\\ݠ/Q','wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-8.min.js',0,_binary 'Ý\DlR\\Y0,\'',_binary 'Ý\DlR\\Y0,\'',_binary '\\YYȸqT\q@K.x{\'%F','',0,'?'),(_binary '\rS\A\Z+','wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-9.min.js',0,_binary 'Ý\DlR\\Y0,\'',_binary 'Ý\DlR\\Y0,\'',_binary '\\YYȸqT\q@K.x{\'%F','',0,'?'),(_binary 'ҩ]|y\\=x\','wp-content/plugins/updraftplus/js/updraft-admin-restore.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7M<X\X1qr',_binary '9&a2k/h<O\:\\\\\З3Tɶ','',0,'?'),(_binary '9U\^X#n\\r','wp-content/plugins/updraftplus/languages/updraftplus-af.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\G\0\1\',_binary ',&_u\_r^9\V\0#','',0,'?'),(_binary '\7\\lk\8','wp-content/plugins/updraftplus/languages/updraftplus-af.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3;s;\\0J5Dw;35',_binary 'L\F@$-\\\*\\\4w)8\G3\=','',0,'?'),(_binary '\쾅\<jv\','wp-content/plugins/updraftplus/languages/updraftplus-ar.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~i4b\iL9',_binary 'HR\\\͜\{\\	>[%`M*;>V[','',0,'?'),(_binary 'D\\\͝WS','wp-content/plugins/updraftplus/languages/updraftplus-ar.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Q0\7:]p6',_binary '\\0$E\\r\"QP\<6\\"(	','',0,'?'),(_binary '\O\\p+~\\m4KN\n','wp-content/plugins/updraftplus/languages/updraftplus-bg_BG.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\σNGNxa0',_binary ';\y\͵A(\\BC\\\5X	','',0,'?'),(_binary '$\㦰<;|q','wp-content/plugins/updraftplus/languages/updraftplus-bg_BG.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\\J̮\"Ԍ\0\',_binary '\\;mIɿ(\\S\Z1\\Я\\A','',0,'?'),(_binary 'ӹʱ4Y\#c\+,','wp-content/plugins/updraftplus/languages/updraftplus-bn_BD.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2g:y\ٻQ\)xd',_binary ')U\\\\)\"\@>Q\\\ܡ\\Y\$\','',0,'?'),(_binary '\$͔p\\腴3y','wp-content/plugins/updraftplus/languages/updraftplus-bn_BD.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V[\;W0.2^I]<',_binary 'Ԣ&4\\4H	\",\cyOd\n*\\','',0,'?'),(_binary ',\_\ \i\.\\0X','wp-content/plugins/updraftplus/languages/updraftplus-bs_BA.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eƣ-Bu2[u',_binary 'ߢx=\޺wЩ\\Z\K>rp\W\\\\	R','',0,'?'),(_binary '\Z@\I#\rF&\\>','wp-content/plugins/updraftplus/languages/updraftplus-bs_BA.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G %\5w\\,y',_binary 'dxj[tc\\\\l\Dj\~\','',0,'?'),(_binary '$5\/ޑ*W','wp-content/plugins/updraftplus/languages/updraftplus-ca.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\<}\kRU\S%u',_binary 'fL\\\Ց\X/\\B\\/\n\hfh','',0,'?'),(_binary 'k\\2.\g/\rn\','wp-content/plugins/updraftplus/languages/updraftplus-ca.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g{[3UC\;!X\',_binary 'x\bc4ƭE.\3\H{\\!I>\n','',0,'?'),(_binary '\\;3߯ϯYg\','wp-content/plugins/updraftplus/languages/updraftplus-ckb.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZgJ)\\\m\\Ȕ',_binary '\KSa/UӮ8A\\,\m\kۉ\*.Dr\','',0,'?'),(_binary 'U+\%\N{*N','wp-content/plugins/updraftplus/languages/updraftplus-ckb.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>\Bt\nx\\4\',_binary 'I|\\\@gt\\T\\+zq).\g\'','',0,'?'),(_binary '%HZ\Մ\*','wp-content/plugins/updraftplus/languages/updraftplus-da_DK.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\\vzQtt\ZK',_binary 'c\ Q@>7\"\0툪\˨\rn\\\$','',0,'?'),(_binary 'E>\0\:%)\C<\','wp-content/plugins/updraftplus/languages/updraftplus-da_DK.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fǈ^!iۺ\{',_binary 'E\a	,z6\\%N\"fX\7n/&c','',0,'?'),(_binary '\? !&4\\0\P1)','wp-content/plugins/updraftplus/languages/updraftplus-es_AR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '56n	fe\s\[_U>',_binary 'n\F~}Z4\%\?`P|S\','',0,'?'),(_binary 'ߠ\w\ө!','wp-content/plugins/updraftplus/languages/updraftplus-es_AR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:\\wdy\Xzg:\',_binary '\\8NJhO1\rI\T\\wwӑzQB','',0,'?'),(_binary '\Ga\\\0\\','wp-content/plugins/updraftplus/languages/updraftplus-et.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\jSxKv\r\nl\',_binary 'yH\oF-k/Eq\N0)N-<6K;\\4\','',0,'?'),(_binary '\d\V!$\N\\F\U\','wp-content/plugins/updraftplus/languages/updraftplus-et.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Yڿ\o<\\~k',_binary 't\\dy\j\U<|ׅ\\\u\\ZV\','',0,'?'),(_binary '\2M\\xFЙX','wp-content/plugins/updraftplus/languages/updraftplus-eu.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\^<\ZDX\o',_binary '\\2\pF\YC	<\Q\m=V\','',0,'?'),(_binary 'c\"\8\r\+\\Am','wp-content/plugins/updraftplus/languages/updraftplus-eu.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\gߴ\\W)	@L\Z',_binary '\nE\~ӹXuGD\7\PX\\S\>','',0,'?'),(_binary '\o2%F\^ף4\\\','wp-content/plugins/updraftplus/languages/updraftplus-fa_IR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\eF깍\\?',_binary 'w\,\_\==<v\L?V\\" 1\','',0,'?'),(_binary '76{ &\~lg','wp-content/plugins/updraftplus/languages/updraftplus-fa_IR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ׄR\\,\)',_binary '㿨\a<\~\۸XY\\-\','',0,'?'),(_binary 'a1\I\ 3Ƈ\\o\6','wp-content/plugins/updraftplus/languages/updraftplus-fi.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*B3ym\\v\o',_binary 'U\\Zs\n\\ S\UF\0YxeX2fM','',0,'?'),(_binary 'PzW3\|/A&W\r','wp-content/plugins/updraftplus/languages/updraftplus-fi.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\/U\*7\R\R\IO',_binary '\PL\d\F\8\\#dIE\ub\','',0,'?'),(_binary '\\HSf\nS\q\','wp-content/plugins/updraftplus/languages/updraftplus-fr_CA.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OD|;A\^P<;hJ',_binary '<#t\\\Cz\~Om!jwCUj\06{_>','',0,'?'),(_binary '39\\r\6ȯ','wp-content/plugins/updraftplus/languages/updraftplus-fr_CA.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\gؘt3\r\',_binary '\r5\қ\\M\G\\\\\R>M\Ŭ','',0,'?'),(_binary 'c4*)]+6eoY\','wp-content/plugins/updraftplus/languages/updraftplus-he_IL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(I\-/\\v\',_binary 'NW\k\>eUt3Y\\3\ri.]\','',0,'?'),(_binary '\j\ԏmbq݅ͥ','wp-content/plugins/updraftplus/languages/updraftplus-he_IL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_D]\\\\,\\\Ϋ',_binary '}*{`\mU\\F)*\U\\J\"\yn/','',0,'?'),(_binary '\'3\\\\P\@P_\\r','wp-content/plugins/updraftplus/languages/updraftplus-hi_IN.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's.3!\\\',_binary 'i\]C4\M4$R\*\\a\\{\p','',0,'?'),(_binary '\ME[S7czƛ\','wp-content/plugins/updraftplus/languages/updraftplus-hi_IN.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NS\r\?|\Hn\'\Z\',_binary '\\hBx\1%\8\nR\Yҁ F\|	\','',0,'?'),(_binary '\Zpi\f)Jܨ7','wp-content/plugins/updraftplus/languages/updraftplus-hu_HU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nq\\P\'F\\\:l',_binary '2[4\S2\'\\cS\WY+\'>\LD|2t\?','',0,'?'),(_binary '\\\\\rS\j{','wp-content/plugins/updraftplus/languages/updraftplus-hu_HU.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7y\z\\',_binary '\\0\\r\Z\ےR1\i5nMy3u	=Mx#I','',0,'?'),(_binary 'F\x\b\\WZT!qY','wp-content/plugins/updraftplus/languages/updraftplus-id_ID.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q75\l	W7F\`',_binary '\I9\\yCI\3*>#\>bfШoq,0','',0,'?'),(_binary '\PLN}0윣^','wp-content/plugins/updraftplus/languages/updraftplus-id_ID.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z=ԾK!]\څ}\',_binary 'Mў?\lx8zY\\"+eC8\R\\','',0,'?'),(_binary '\ά\"0ٵ\|','wp-content/plugins/updraftplus/languages/updraftplus-ko_KR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<cv\\-,M\cL',_binary 'Dk\UmjH\G\\"xc4Ts2M','',0,'?'),(_binary '\.9=RX	\5+(W','wp-content/plugins/updraftplus/languages/updraftplus-ko_KR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ԟ@+0?\6\\',_binary 'NV\"*ټ;N_&*\\\\;ɯ7>','',0,'?'),(_binary '+\\ar\Dt\2\\','wp-content/plugins/updraftplus/languages/updraftplus-lt_LT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H\5\l\"|\"烷',_binary 'kNswҪ\\&|\Z\H\\\b','',0,'?'),(_binary '$\\%\ւU','wp-content/plugins/updraftplus/languages/updraftplus-lt_LT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%女\4\~#r',_binary '4\&\0\\{lZ0#\0J9\룡/\ÖG','',0,'?'),(_binary '\\\<r٣\"\qܸ\','wp-content/plugins/updraftplus/languages/updraftplus-pt_BR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ʈ8\^q',_binary 'ã$\<y\r$\PY\\-Vޗ\i{','',0,'?'),(_binary '%Rfx\\?\"\D','wp-content/plugins/updraftplus/languages/updraftplus-pt_BR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7sg%=p^lJYU',_binary 'l^\o\X\1w6\\Lm\3iC,\\','',0,'?'),(_binary 'q \\\\%\Pd','wp-content/plugins/updraftplus/languages/updraftplus-ru_RU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\BJ!1c2\%',_binary 'j\r\`\0x54̖e\\Zw홞+=\\\\2K\','',0,'?'),(_binary 'f,b\','wp-content/plugins/updraftplus/languages/updraftplus-ru_RU.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x83\\ c\g< ',_binary '\\:\\DA.*`\"\H?\ns-\\\','',0,'?'),(_binary '˜cr_\4}','wp-content/plugins/updraftplus/languages/updraftplus-sl_SI.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"-g49f\M\\0@{\3hb',_binary '\\\\n<釲wO+\\'\\\WQ\\K','',0,'?'),(_binary '\\S\]\/}\rt\','wp-content/plugins/updraftplus/languages/updraftplus-sl_SI.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\=ѻ\n&ؘ	%X',_binary 'H`\	\d\rq*!\%b\(\\l`','',0,'?'),(_binary 'n$\;,\'rA','wp-content/plugins/updraftplus/languages/updraftplus-sr_RS.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#y\"c\V]\9ҳO',_binary 'j\\\\1ߢ5\[LzK\|.I\m','',0,'?'),(_binary '6T<\\\`\䰥] ','wp-content/plugins/updraftplus/languages/updraftplus-sr_RS.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Oac^\E2\',_binary 'f \\`m`_II+h)t\\U\G-\sz','',0,'?'),(_binary '\ʈ\w{\c{\"@','wp-content/plugins/updraftplus/languages/updraftplus-te.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\\\\uB\\\\U',_binary '\)bn8\\*\0\Zfȣ;xC8Q','',0,'?'),(_binary '\\q.\\','wp-content/plugins/updraftplus/languages/updraftplus-te.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wУ)J04\'\[n\',_binary ':\`B\\>\.\\*O:7,Ѷ[p','',0,'?'),(_binary '0uE\r+\\ۦ\\n\','wp-content/plugins/updraftplus/languages/updraftplus-th.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F^b\\Q\`6|\n]',_binary '+\;=t\\.$o\!F.y\(a\','',0,'?'),(_binary '}!-\2','wp-content/plugins/updraftplus/languages/updraftplus-th.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\e\502+b\\	B',_binary 'E\\ۆ<1,p\{\q*_j\','',0,'?'),(_binary '\\q*J7\\\','wp-content/plugins/updraftplus/languages/updraftplus-tl.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\\JV\\\ȜH\',_binary '\\\\z\k%\}l\\S\f\\Q}','',0,'?'),(_binary '-\\0\\\@\恎Q','wp-content/plugins/updraftplus/languages/updraftplus-tl.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '覃\@#;',_binary '*\<H\nCFٟЫ\%\6׌','',0,'?'),(_binary 'T(\2\\z\\','wp-content/plugins/updraftplus/languages/updraftplus-tr_TR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6z\GS\\\e{\"',_binary '\o؎e\5銵tO\1\\r3׺\=<AU\Z8','',0,'?'),(_binary '\6wd3ƎQ\}g','wp-content/plugins/updraftplus/languages/updraftplus-tr_TR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X1\ch\?0',_binary '8\'\R޴\\gJs\\'Cy*U#\\J','',0,'?'),(_binary '2]]B}*5D#','wp-content/plugins/updraftplus/languages/updraftplus-ur.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\$A7mW\\}',_binary '8k5%O\TоR?:\\2qJ%:\','',0,'?'),(_binary '\\\\$yf\X\\\','wp-content/plugins/updraftplus/languages/updraftplus-ur.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\ZWTDSik',_binary ';\WN.\^E\+H!\\JA쏯*','',0,'?'),(_binary 'Awb~_}<	','wp-content/plugins/updraftplus/languages/updraftplus-vi.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@u\Z`\\*}C7$',_binary '^\\Zcɲt\'6Isuj[k\','',0,'?'),(_binary 'R\xf\GD\gV','wp-content/plugins/updraftplus/languages/updraftplus-vi.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\00nw@K|T\',_binary '\\\FBK\V?b\D\[\\b.k+Z\','',0,'?'),(_binary 'AO\+o\\m','wp-content/plugins/updraftplus/languages/updraftplus-zh_HK.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=\=|§B\Z\',_binary '\*\ٹy4V\Zoz{\\׃wc/!P','',0,'?'),(_binary '>\\_]\Wn0\','wp-content/plugins/updraftplus/languages/updraftplus-zh_HK.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\y\'\WΰTx\\',_binary '\9+$lw\\\\Y\XK*\Ǹ5','',0,'?'),(_binary 'R {\p\H*\\0','wp-content/plugins/updraftplus/languages/updraftplus-zh_TW.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-\p#)*VZ;',_binary '\d\n;(\mv\y\z$XURP\ۼ','',0,'?'),(_binary '\\ʡ\x\0N\n0','wp-content/plugins/updraftplus/languages/updraftplus-zh_TW.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\WUoL\m/\\\',_binary '\]\\p\\\dlL\\\\A2!ԭ','',0,'?'),(_binary 'j(i,\q0ҙ Ȟ','wp-content/plugins/updraftplus/languages/updraftplus.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\uOq\x%\\7',_binary '\\p2;8(٤_wƐV\,\i','',0,'?'),(_binary '#Ĳ\ά/\\','wp-content/plugins/updraftplus/methods/addon-base-v2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rwΛ*tE\Q=F',_binary '#z	4\>\'v\;Nw.\$B̲\\4:','',0,'?'),(_binary '5Yv]0.','wp-content/plugins/updraftplus/methods/addon-not-yet-present.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\L\\\s*\@',_binary '\\,x.\0v2rUkr\nM\\n\,1Yٖ','',0,'?'),(_binary '{\\\gb$tI','wp-content/plugins/updraftplus/methods/azure.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k92h\\n\I\V',_binary '\n\\`v(?\\\UJ\\=\\5uI]','',0,'?'),(_binary '*qdqA\v\\\','wp-content/plugins/updraftplus/methods/backblaze.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~Uŝ\Zz\]',_binary 'B~:]_O\LAN/!q\\pf	N)|rO','',0,'?'),(_binary '6,uֵy\!y\(\g','wp-content/plugins/updraftplus/methods/backup-module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\R\\}\=Q\',_binary '\K\n\L\hn\\\ѣ\\\\w&GH','',0,'?'),(_binary '.z\!\\-Aaj\','wp-content/plugins/updraftplus/methods/cloudfiles-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@\H\\\\',_binary '\~\Z+\DZֆ9\;d\o\0ͦ( \','',0,'?'),(_binary '\ukJ]{\VTԥI','wp-content/plugins/updraftplus/methods/cloudfiles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\\^zM_a0\',_binary '\a>	\np\;\"o\"|[iI\.v-P','',0,'?'),(_binary 'xq\q\c\|!\','wp-content/plugins/updraftplus/methods/dreamobjects.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^)#\yzP',_binary '5p\*n2`,\Diji\Z\g\PEN','',0,'?'),(_binary 's2\0e)\\\܋','wp-content/plugins/updraftplus/methods/dropbox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	\\X\dÇ',_binary ',75DN3LD\C4\Z/_E֢èv','',0,'?'),(_binary '\+Tx*0r~','wp-content/plugins/updraftplus/methods/email.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nqe\Md\0',_binary '\\tQ\,\\1\\\\IPx\_\pX\','',0,'?'),(_binary '\`\-}i_\pB\','wp-content/plugins/updraftplus/methods/ftp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.QC\\\0hv?d:g',_binary '\,\o&Fm\)0~`;\n\*ͤ\\','',0,'?'),(_binary '\s\rY0h[8\ 4~','wp-content/plugins/updraftplus/methods/googlecloud.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ժ\'hz\\x',_binary '\lJ5ELgnjH\'f.C\\*|\O','',0,'?'),(_binary '\f{r#y\`#\','wp-content/plugins/updraftplus/methods/googledrive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\.\\\ϊ:\k!',_binary '~W@iwV^\n\\\\w$\q!\\x\_˔','',0,'?'),(_binary 'm<%\}W($\','wp-content/plugins/updraftplus/methods/insufficient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%V=\rT\,?Y',_binary 'mF\\\H\irnN;\	w\2P(rID\r','',0,'?'),(_binary '\+ta\b\\\ғ','wp-content/plugins/updraftplus/methods/onedrive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\PktrR\',_binary 'm*\=qBG\ZPho+9X\0^<xr\˴\	','',0,'?'),(_binary '`P\\\n\7\0 ','wp-content/plugins/updraftplus/methods/openstack-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\\"#\Zi\i',_binary 'S\\m\5\/K\\s]]\\\','',0,'?'),(_binary 'N\Ka]\\Q/','wp-content/plugins/updraftplus/methods/openstack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\\\i\8{va',_binary 'm\\y<0wzzކ\Dr#\','',0,'?'),(_binary 'hTԕw\\0\'F','wp-content/plugins/updraftplus/methods/openstack2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v .1I\\Ú\.\I5}',_binary '-\Aej\\\HoYA\<^H8o','',0,'?'),(_binary '^dGF\\%','wp-content/plugins/updraftplus/methods/remotesend.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\\=tQ9\"g%xٙ&',_binary '\hY,h}\\\ZSϯts`\','',0,'?'),(_binary '|F\(\-}ݧ\"H\','wp-content/plugins/updraftplus/methods/s3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3m\W\:\'ޗ*+',_binary '\MIR\[K\p:S0\\L\\n\* +','',0,'?'),(_binary 'P\0\\Z\nSgd\','wp-content/plugins/updraftplus/methods/s3generic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ʧ7\qG\v\B',_binary 'Q,XCDC\kgn\*daG\\\r','',0,'?'),(_binary '5\o%8|֚\','wp-content/plugins/updraftplus/methods/sftp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0Xt\\I',_binary '\1o?U=\\\0к\V0\FO%HS\f','',0,'?'),(_binary 'h\IKr\\(','wp-content/plugins/updraftplus/methods/template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[5\\Z	\\,\\',_binary '+=w{/[/m\j^\|}n$Q\y','',0,'?'),(_binary '\m\'\I\"TMW}','wp-content/plugins/updraftplus/methods/updraftvault.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\K8ǌ9\?c\\',_binary '|4\C\n\U\*Է\\\n|~H\\','',0,'?'),(_binary 'Jn>c\\` \','wp-content/plugins/updraftplus/methods/webdav.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\+;\',_binary '!f\\,FȠ\\J۰\h1\M+\?\^\X\','',0,'?'),(_binary '\\*A1\^)͡','wp-content/plugins/updraftplus/options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|@{\m\\\wMK',_binary '|\i;\">\\\\_o\\','',0,'?'),(_binary '(7V@\+T\MC','wp-content/plugins/updraftplus/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\;KjY\m\r0',_binary '&Y\	\"ؙE\85\ A\\\fk\3\','',0,'?'),(_binary '*k\K\,{JS/d\/','wp-content/plugins/updraftplus/restorer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\SΗɉ\\@',_binary 'fh\5EP\n9\c\\&]\\gA\Й\n\','',0,'?'),(_binary '\i:xA\\H=\r3N','wp-content/plugins/updraftplus/templates/wp-admin/advanced/advanced-tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)\0{\ƴ\K\[\',_binary 'Z\<?>J2F\~ǒ24\1Z\|\\ ','',0,'?'),(_binary '5\Λ\\\0e\\o','wp-content/plugins/updraftplus/templates/wp-admin/advanced/export-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JJ\K(	L\ZXw>!',_binary '\c!ݶ\!\0C@J,(eMÏ\<S\]Z','',0,'?'),(_binary 'p \\>*oȃ','wp-content/plugins/updraftplus/templates/wp-admin/advanced/lock-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ߥ\\\Z\QP\Z',_binary '$XI\fO\\"3Nk,pC\\\#Rr5\O\"','',0,'?'),(_binary 'Ƞ\\\f1\h\f','wp-content/plugins/updraftplus/templates/wp-admin/advanced/search-replace.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wiJ\\<\ً}',_binary '`\Y@y=`5؏\G\ǃ1$','',0,'?'),(_binary '\s\E\01J_p0yŹ','wp-content/plugins/updraftplus/templates/wp-admin/advanced/site-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'u\\`u\=Z\\',_binary 'U\\\Èd}\xèhd\\ӀkK\\','',0,'?'),(_binary '\*4ЬJRR\I<','wp-content/plugins/updraftplus/templates/wp-admin/advanced/tools-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#U.\#1#{\',_binary ']U\\Қ0\Ev\Z\tߐ\,ҢCl9n	\\','',0,'?'),(_binary ':8\2\EB','wp-content/plugins/updraftplus/templates/wp-admin/advanced/total-size.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\jޮ_{l',_binary 'tj\#1I\\\Zm  \סrZ3ʌ','',0,'?'),(_binary '\Vq(¨a\#','wp-content/plugins/updraftplus/templates/wp-admin/advanced/updraftcentral.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f)F\|{8\n&',_binary '=\`s$U\˶#	j[~)k\\\\m','',0,'?'),(_binary '$n+F*\c\Z\','wp-content/plugins/updraftplus/templates/wp-admin/advanced/wipe-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9\6x^~Xp\#\',_binary '#r\FI;Kɀ\\Ԣ5b\\\{!OV\','',0,'?'),(_binary '}\SU\2\','wp-content/plugins/updraftplus/templates/wp-admin/notices/autobackup-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\\\y\v?/',_binary '	cYR#\z1w\N\\u\\\n\','',0,'?'),(_binary '?\L\\\ 	Щ\.\\n','wp-content/plugins/updraftplus/templates/wp-admin/notices/bottom-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\7Ҥh\Y$o+',_binary '\_4BWIC%\\\\v|I\\n\\\8׀$9O:','',0,'?'),(_binary '蛢\3םS\g','wp-content/plugins/updraftplus/templates/wp-admin/notices/horizontal-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zߏ\\n6cz\Lu',_binary '-\Qje_M\\;͈\탋 \2{','',0,'?'),(_binary '\C\?\-I\(<$\','wp-content/plugins/updraftplus/templates/wp-admin/notices/report-plain.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\\5\\\\|',_binary 'a\F\\zoT\*g󩿞 Ĭ֐\5a\','',0,'?'),(_binary '%i\F\Z\\"6\\\ ','wp-content/plugins/updraftplus/templates/wp-admin/notices/report.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\fS\\L-I\'v\',_binary '\L7H)Т+L\n=<*\1\rsɳ','',0,'?'),(_binary '3EU\"Lw\r','wp-content/plugins/updraftplus/templates/wp-admin/notices/thanks-for-using-main-dash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E ǿ\!',_binary '6\(m4\|\W\'7e16g24\\G\\\w}','',0,'?'),(_binary '6c\f\r8.\k','wp-content/plugins/updraftplus/templates/wp-admin/settings/backupnow-modal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=1:p\,¤ȡ\\',_binary 'b-£	7YCc\{x衫G5	\','',0,'?'),(_binary 'u[ۡ6\\t','wp-content/plugins/updraftplus/templates/wp-admin/settings/delete-and-restore-modals.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tN2K}\$',_binary ' 6 &+\\ \\"_\\\'_;\\\r','',0,'?'),(_binary '\=\ݖg!Q\','wp-content/plugins/updraftplus/templates/wp-admin/settings/downloading-and-restoring.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k\\\\;\g\\_\',_binary 's\i;o`\޺ [N\;uTlR\\&','',0,'?'),(_binary '>\Z\!A\0E2\\8','wp-content/plugins/updraftplus/templates/wp-admin/settings/exclude-modal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\L^<\GJ\r',_binary 't\\0\CfK$`G(ڞ\-\`˥w\\6','',0,'?'),(_binary '\P=\W,*)','wp-content/plugins/updraftplus/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-heading.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4I\nZHu',_binary ']^M\;Y~\rm\@tE\]9J\','',0,'?'),(_binary 'ߥ\]\\\;Lc9\R\Z','wp-content/plugins/updraftplus/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-submit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xgۚlL#I(X\Z',_binary 'ju̞ߛ˙4fEvm\\?W\Z\\ng65','',0,'?'),(_binary 'ƛ=\\Bqf=x','wp-content/plugins/updraftplus/templates/wp-admin/settings/existing-backups-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\4C \Fre=\J\',_binary 'A\u%xVu\8N\=nw\ę\]','',0,'?'),(_binary '\_yH_y¦E7t','wp-content/plugins/updraftplus/templates/wp-admin/settings/file-backup-exclude.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\L=\[Go`\^',_binary '\D\\><\\Z\ޮ\\4K`\\?SL\p','',0,'?'),(_binary 'R\PcZ\\b','wp-content/plugins/updraftplus/templates/wp-admin/settings/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\J\\\\i',_binary '\{\]{\`\\\j\\nا1*','',0,'?'),(_binary '`{C\UVz/Z\-','wp-content/plugins/updraftplus/templates/wp-admin/settings/form-contents.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8gɆ\\;\w<Wsyb\',_binary '\\\S;H\e\\)\O\\\\+C\ZX\%0q','',0,'?'),(_binary 'b\\chGmey|D','wp-content/plugins/updraftplus/templates/wp-admin/settings/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\Zf餅ā7z.\\.',_binary '\k\N\nR\l\Z\ņh4t\;\','',0,'?'),(_binary '\a&\_	\'/\\\n','wp-content/plugins/updraftplus/templates/wp-admin/settings/migrator-no-migrator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ǩ8\;p#\\\+h',_binary 'L\oq\_~u+`ǒ\e\\\\YM','',0,'?'),(_binary 'l\F\[\FʬIs\','wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-addons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]\\rlܨr:p/',_binary 'gǑi\	\n}um\͒VZ\8֪','',0,'?'),(_binary ']\\\g\(^','wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-backups.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G%8!\Q2{.m',_binary 'x8y.\;]3\0w(FӳF߮y\','',0,'?'),(_binary '\\GHK	\\";#fhO','wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-bar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-qTww\m\E',_binary '\j\׺]\gGW\Z\_$@b\eE','',0,'?'),(_binary 'I\H\b=\j\\','wp-content/plugins/updraftplus/templates/wp-admin/settings/take-backup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\ZE\5B^O\',_binary '\"\\Ndx\pv\G\4\\','',0,'?'),(_binary '\1&J\'#2\5o\0','wp-content/plugins/updraftplus/templates/wp-admin/settings/temporary-clone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jsJ=!r3!',_binary 'o?\rصN(&\B\r-\C[\\','',0,'?'),(_binary '3G(F;\ݰst\y\\','wp-content/plugins/updraftplus/templates/wp-admin/settings/updraftcentral-connect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\TquD\r',_binary 'g0eҚ\?\q\բ|<zx\uM','',0,'?'),(_binary 'HP\zruԳxq','wp-content/plugins/updraftplus/templates/wp-admin/settings/upload-backups-modal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z`k*}ĖM\',_binary '^_^a\\\!-]xR\'\ᰑ\\2','',0,'?'),(_binary '\rۯj\o\Zm?	`];','wp-content/plugins/updraftplus/updraftplus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8I\F\s0x\Gb4\',_binary '(\\lvy\8\\h\\\\\1\','',0,'?'),(_binary '\\#R\yGU\,\\','wp-content/plugins/updraftplus/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\h\>\`c',_binary ']G\A\\7u}\$\+r\I\y>','',0,'?'),(_binary '\l\#E\\\\2','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/CODE_OF_CONDUCT.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\nD#8JR\\\z',_binary '-)Sc$(髆y7T+6)am\.\T','',0,'?'),(_binary 'kY\xĸX\d>','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/CONTRIBUTING.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\\*ĻTi\Z)@',_binary '}\\{\ۈԄ\sw\AP*;\S{\\`\>!<\\','',0,'?'),(_binary '0\\^I׳n\\hRq','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4@h-q\Т\n\rX',_binary '{+\j<yRt\\\\9\\K\xif[','',0,'?'),(_binary 'aZ^\\\M\ol\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/Makefile.frag',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\¸\et\r',_binary 'i\(\\Z\fkdNdD\G\\nHӞ','',0,'?'),(_binary 'J6vP\r','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/Makefile.frag.w32',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\%6JQ>f\\',_binary 'L\F<\=2e\\\nt\`Q\0\\V\\]]','',0,'?'),(_binary '\\\\Lqg8\\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/NOTICE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ӣ\O\2WL\\\',_binary 'AE\o1Xg\]+\rEHW\\\Z\\OH\\','',0,'?'),(_binary '*os\\\\a','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ԩ.\R\_\\\',_binary 'T M@A\\I\iB36u߶d%\Z','',0,'?'),(_binary ')\6\n\i\P^\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/builder.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\U;\f\',_binary 'h\	Ø~įʉ\)\'u`\\1\rI','',0,'?'),(_binary 'uXA\š#@\Ύڡ','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dF8;s}\ZO+T',_binary '\\E\#1׷>\E\y0Q\\=gF','',0,'?'),(_binary 'l`0\\\ L\Ɲ','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/config.m4',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\>BM',_binary '%~HS.\Vx\E\\s\'n\\\0w\Z8','',0,'?'),(_binary '\Y\Mr\Z*;','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/config.w32',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ro/\"$*o\'vׅ\r!',_binary 'e\:Z::N\p/\0@\",G\צ','',0,'?'),(_binary '/@.ފ1\\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/ext/awscrt.stub.php',0,_binary '>\\\M\W\^e',_binary '>\\\M\W\^e',_binary 'fdp:E߈\\ɨ~B4?\ƹ]4s֩','',0,'?'),(_binary '\]\ \\O\Y\q','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/format-check.sh',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\%grBj]TI',_binary 'GDLGXLA\0#99/1(4','',0,'?'),(_binary '\\!:4.|4\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/gen_api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2\^9\'\\\Z',_binary '\wxU#$\\Zb\\\6jiAr\\F','',0,'?'),(_binary '\Lm\o>y@!','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/gen_stub.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`4\\AJh|\EWn\',_binary '\\K\\i@x2\`\\m5\ZU@H\r&\','',0,'?'),(_binary 'm-m\\R\\\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/package.xml-template_post',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uS\/\&4~i߂\',_binary '\Ņ\Y5\\\ȱt\Uˡ\R\','',0,'?'),(_binary '\[T\	r($\\\}\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/package.xml-template_pre',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iؘs\Ũ\\\+o',_binary 'oʕqI\"BfG\rp\\\Zn\X-6tʵ','',0,'?'),(_binary 'c^\Ai\\\r\!:e','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/php-win.ini',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\{$;~*Ȕۘ\5',_binary '\K\\'\KR\I\(fBPi\Ҝ\','',0,'?'),(_binary '\\.E\_\.:1','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/php.ini',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\!\\zh',_binary 'Y+(\$8\\Z:\ё\\\"{l\n','',0,'?'),(_binary 'U	\5W\Aa','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/prepare_package_xml.sh',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\sݬ4	d\^[',_binary '![͓*\\8\GxOE!D\}>`\5\','',0,'?'),(_binary 'قx\nv*ߦA`x','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/prepare_release.sh',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x鈲_R^6\=\',_binary '\Z\o\\m\\y\q\0nfogu859S!}K','',0,'?'),(_binary 'MX5)\\lx','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/AwsCredentials.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',ԃf\D[`re\5',_binary '\\9Ԍ\=\3\E9|zpi)\','',0,'?'),(_binary 'ԣo\\\i!','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/CredentialsProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eDϰJ\\z\',_binary 'p\c\e\#@\0^	l\[1,\\Y\\\l;\','',0,'?'),(_binary '\.\\+\g!y','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/Signable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ak\z\?)V^',_binary '8\\Ԛʇ\D(\\)<\~\\','',0,'?'),(_binary 'Z\D\J\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SignatureType.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FLo\H\\"\\\\',_binary '16\B\ \Z\l\ѿ\\yh\'\\','',0,'?'),(_binary 'H͛S\\\\)','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SignedBodyHeaderType.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\qu9\n\U˞',_binary '\'.\\,FC\KoD\'[\Z=5;','',0,'?'),(_binary 'M5\lo\@B','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/Signing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\/\r(66y',_binary '\s0\T2\Q\\maE6\pB5\r˃\','',0,'?'),(_binary '+/!c@3=Fw\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SigningAlgorithm.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D+\\+s|Ó8v\T',_binary '(\\Շ`d70$.:O\~6\\9\_G\!','',0,'?'),(_binary '\rj#\g?','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SigningConfigAWS.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\rq\\'x&\\z:4\z',_binary 'h=!\\EaSB\AW\#a~+O','',0,'?'),(_binary '\v\n!\BF]','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SigningResult.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9\\\\\2wnt+',_binary 'bsi\4MV\\cS`]\2%9c\\','',0,'?'),(_binary ' B\d\\|^\+','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/StaticCredentialsProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm|Ԇ09\Oi8{\\',_binary '$\Jg\0\0\b\m\y\Z8\:N\m\ZwI\\','',0,'?'),(_binary 'Nʀu uyZ\,','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/CRT.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4\hN\\\!&',_binary '\p\nz`DJ\r|0љ̤\n\$%','',0,'?'),(_binary '2\H<oJ\\\v\8','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Headers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+wQ\\\A\\\',_binary '\<(\I\/&\1\nʹ\n\y<)_FIFG','',0,'?'),(_binary '\Ey;5{y޷\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Message.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\m\)\\P\\q\/!\',_binary 'zJ#K1X\F>\m37\,\\','',0,'?'),(_binary '7E\ϣJ\"7\ҥ','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\0\.\jK\',_binary '\<O\.Q\t\?\0\hǦvW\GkQFb8\~','',0,'?'),(_binary '\'c\	U\(\\\\"\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\އ:𑱧4y\',_binary '\uf\(HV;}U\)\a囝V\άu(}\','',0,'?'),(_binary '\`x\nxn\\\\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/IO/EventLoopGroup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\Z\P\\\}wY\',_binary 'v6g\\@;\r\X\\\,^\<o','',0,'?'),(_binary '[{&}\r8\n_c\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/IO/InputStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\r3\l\0\X]\',_binary '\C\f5\^9v\\\0ȇ\\\\H','',0,'?'),(_binary 'OmQ\r\B߆','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Internal/Encoding.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w+\1iݠ1',_binary ',dh\\\5\Sp\\J\2p\"B','',0,'?'),(_binary '\r\M[=!wL\<\k','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Internal/Extension.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A(\\&\ִ\_r',_binary 'p\qh\\+\r/mcO{C%J-W9','',0,'?'),(_binary '\05e\\\n_\%ɿ','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Log.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\H\n\(sju\R',_binary '\˷ݢC1/=\\UB\ݺ-x\*.','',0,'?'),(_binary 'd\Q\\B\Tp\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/NativeResource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%$A~^Ԡ\',_binary ',\\\0_G\{ju#\94PO\\nE\','',0,'?'),(_binary '\\[\\\\YEMr\','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\'\z\G8\hvpv',_binary '|\'~*\\\\}\\\\5M\\/','',0,'?'),(_binary '\6\/)tMl\\$','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/000_CoreTest.php',0,_binary 'I\\\\ּ\rm<\0\',_binary 'I\\\\ּ\rm<\0\',_binary 'Kh\&\B\dx\Շ\1t%\fӬ\"\','',0,'?'),(_binary '|\3)\\۵~','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/CrcTest.php',0,_binary '>@9r(~cDޞ{',_binary '>@9r(~cDޞ{',_binary '\,BVMd$2.ւ\I\oe^','',0,'?'),(_binary '{9q!ZǶ׀r>\J','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/CredentialsTest.php',0,_binary '1-\\(\V\n˩\\\',_binary '1-\\(\V\n˩\\\',_binary 'Ci\\\\דłKyh\?\\ق\Z','',0,'?'),(_binary '\\,4\\9Bx^.','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/ErrorTest.php',0,_binary '\+^DqhAu8ʑ',_binary '\+^DqhAu8ʑ',_binary 'g\UBe\X6C.Ԉ\a=ƌ\','',0,'?'),(_binary 'E\\&Xދ[','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/EventLoopGroupTest.php',0,_binary 'MZM	\T\\\%MQ',_binary 'MZM	\T\\\%MQ',_binary 'ZmA=M\'\{`ɝΐ0{ldf+B\\','',0,'?'),(_binary '\M_0շ7','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/HttpMessageTest.php',0,_binary 'Rt\@Q\kJ,fF+',_binary 'Rt\@Q\kJ,fF+',_binary '\k>\Z\\w>bdqSu\mSr\n8','',0,'?'),(_binary '.U\"5\\\( ','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/LogTest.php',0,_binary 'Q}bJtRBp\',_binary 'Q}bJtRBp\',_binary 'w	X\eR0DV\\0wh0N\R\уBc','',0,'?'),(_binary 'xѨv	\JR','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/SigningTest.php',0,_binary '\|\QPe\\q',_binary '\|\QPe\\q',_binary 'acN\$\u\Z9&\6M\\\\p\,\L\','',0,'?'),(_binary 'R\Y\䐣_\s0,','wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/StreamTest.php',0,_binary '\&\r2\긦1',_binary '\&\r2\긦1',_binary 'M\\)iK6k\"\"	~\UB갖@','',0,'?'),(_binary '5$_\rfT|]','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/CODE_OF_CONDUCT.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Mɨ\\!\r\',_binary '-)Sc$(髆y7T+6)am\.\T','',0,'?'),(_binary '2\J#,\\ʭ\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/CRT_INSTRUCTIONS.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U6+2\\n<\',_binary '\[GVI\$\cK\gΎ\\D\\'','',0,'?'),(_binary 'd	]6տgA|','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JX+\/\*\F',_binary 'XҶN\6qTX%IM-زjsޑ\\','',0,'?'),(_binary 'vju\Û(g','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/NOTICE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\_z\\',_binary 'ޣs@\D\@F\(\0\!ݕG[a\\x','',0,'?'),(_binary 'F7\bg\ɱX2k[\-0','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/THIRD-PARTY-LICENSES',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$6\*p\nW\Π6',_binary '?\\\W:\s\2&{|O','',0,'?'),(_binary '6\D\zj\\[','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F_Df$É\\[c',_binary 'r<TҬxB4\\\\rl/2\#		\','',0,'?'),(_binary '|\٪q\\<','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/AbstractConfigurationProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\'\\\C\rI\}\',_binary '@,$\\"u#\,.\\T6LD\\\P/f','',0,'?'),(_binary '.%a\K;\\":lv|Ť','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/AbstractModel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y$\P\u˂',_binary 'az`;\\[Y\\n\\\\\Z]&','',0,'?'),(_binary '\I\\\_o\0\^`','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ApiProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\=\7^i:\1',_binary 'n|8\B8a\q\\䡛*s}','',0,'?'),(_binary 'gHl\*Y\Zg09\-','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/DateTimeResult.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v;*8\"',_binary '\\]W\<VO@-\r\rD_d\ ','',0,'?'),(_binary '\l\͊','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/DocModel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\xftG3',_binary '\;\.\\+\SBn\\Q\\Ũ\\\','',0,'?'),(_binary 'a?\\S\Z\r;P\I','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ErrorParser/AbstractErrorParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2KAV{y`',_binary '	3L6\rڥ\"\Ґ*i\\\]','',0,'?'),(_binary '\L !\"=ܳ1\W','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ErrorParser/JsonParserTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w%!,+\rX\',_binary '\П\:\	\\_ơ8:ٗ`\)fB!%\\','',0,'?'),(_binary 'U5tj\us\\\n1;','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ErrorParser/JsonRpcErrorParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\\ZD\\\',_binary 'zD]j\\㰤\D&[d\H\G]435cor','',0,'?'),(_binary '(a~y\z\ub\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ErrorParser/RestJsonErrorParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\1YP\x\n\Ґ]\p',_binary '\Qt͑K\\\3\:\Z\7?','',0,'?'),(_binary '\a9Z\*','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ErrorParser/XmlErrorParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\HhcssPY',_binary '[.\0\\&\tհ\hm\W-:͚','',0,'?'),(_binary '|VM\\Qo\K(@\&','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ListShape.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#+b;e.\2\\',_binary '\"\*\2IamT,YK\\7ng','',0,'?'),(_binary '8F+2\kV\\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/MapShape.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?a\-(O?(\\X',_binary 'L},\\{K&U\UQeW_{Ve\#\SP((','',0,'?'),(_binary '[ÌĸܰIj','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Operation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'γ\rr\\ꌼ2x',_binary '[W\\\\ evx͋/R{\r\ص$','',0,'?'),(_binary '\4k@۷:','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/AbstractParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\E\\nɿ\0Iq',_binary '\\~rY\\^\#7\S\P\;\n^ҙ\','',0,'?'),(_binary '!oª>/v','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/AbstractRestParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')/\<\sJJ',_binary 'B\SOU\\Ʌy\\R\FVi\3l','',0,'?'),(_binary '\++?#RV|\\\Pp\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/Crc32ValidatingParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C8\Q\\[T*o',_binary '\'\\ir\M\\ \\6)?\Z\\Z\.-5e','',0,'?'),(_binary '\\\\Zx\I\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/DecodingEventStreamIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eW\\f17\\\2',_binary 'ŕt\\=\0\xȊ_\J','',0,'?'),(_binary 'M\\Zw^\~','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/EventParsingIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nqR/=h!ku弐P',_binary '𸠝\\ђXu\*X\\pAd\N','',0,'?'),(_binary '].;\o_:0D@','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/Exception/ParserException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\a(\\\!(\Z\',_binary 'f\mep*}J(.r$\vzӻ\\\\','',0,'?'),(_binary '\cZ\!\\B\VZ.','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/JsonParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a!q\Y\cDd\',_binary '\0\n\\\+\r\-\lE\ =\V\D\b*E\u\L','',0,'?'),(_binary '2<\\"XBoJ\Fj','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/JsonRpcParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%d&\\\\4Da',_binary '\^ZW@罶f\\\\ej\m;w','',0,'?'),(_binary '\Ol\ԍ~\\K(','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/MetadataParserTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\҈3',_binary '񬎪͒d뼘\6 X8dFw*5\\+\r ','',0,'?'),(_binary 'Y\\\}\|\PK','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/PayloadParserTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8n=\\ѯ)\\6',_binary '\)	\\mܬZ}\l9\E\\\Q','',0,'?'),(_binary 'ls\\\\?Q\\K','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/QueryParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4 !X@A\',_binary '\qz:6\V*hCJ\#ja','',0,'?'),(_binary '1)\S\\\U2u\{D5','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/RestJsonParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\(c!\Ϙ!\',_binary '|kE\sML\\\ډ$\&Z\|\','',0,'?'),(_binary ':\4DX;QJSF4\ ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/RestXmlParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uA3cG.\\',_binary ')&Mt\\e\̹\[+H3\\f~','',0,'?'),(_binary 'yp9ī\r<Y\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/XmlParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\0\aw\H.S\KD',_binary '\=\.\ c0\\\W\$\s.#t(\b\>','',0,'?'),(_binary 'D´\H\w\\\'','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/Ec2ParamBuilder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\0ll\n*P\\',_binary '\\\rWC&^\\\4Ƣ\9\9E','',0,'?'),(_binary '\˭6nb}\<','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/JsonBody.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\hղ^Bw`yb',_binary 'E\;>˻:/ۊՈ}L\n\YUwh~\ɕƔL','',0,'?'),(_binary 'W&i;ß\\| ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/JsonRpcSerializer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ѕ\O酟\\H',_binary '\|!\\|\81W8\rM\\','',0,'?'),(_binary '5\"\\4\~\T\\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/QueryParamBuilder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%.2ҁG\(k*',_binary '6AA\f<\\y\\\\"/\2ϔQB$','',0,'?'),(_binary '\\`)\\(e\3','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/QuerySerializer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\!\iW\0\n	',_binary '\0t\JX\\{_\k\iBL\\3.','',0,'?'),(_binary '鮪8#\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/RestJsonSerializer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r7λ\+\f\\`',_binary '\XgJ%\e%BaK\\\9V,\'uٴA\','',0,'?'),(_binary 'A\ZVe\;\qUW|','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/RestSerializer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\Up羶Ē+F\',_binary 'yic]]X\ɨ\\PwmK\nO4s*','',0,'?'),(_binary '7[\r\\K.\\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/RestXmlSerializer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|\\dh\\\\\9\r\0',_binary '\\saKYl/@{{e\x\\\Ku⑘','',0,'?'),(_binary '3p*\;0','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/XmlBody.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\\(v\'cd	',_binary 'z\#H\ѯG{Z\o`		G[|<1\\\','',0,'?'),(_binary '\^L\rLp\\w;1\x','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[a-`=!\',_binary '޼!M\UM2\#\\0v,0Qr#V(Z=DK\v','',0,'?'),(_binary '\ǐZ0?\1-@&§','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Shape.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\}hYY\\Qy',_binary '\\R\q\\n\\T-n\r\g\}','',0,'?'),(_binary '\y`\r)(','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ShapeMap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<m\\n&\ӍgC\',_binary 'Mh\\f\Z]_놷>\{es\>\i','',0,'?'),(_binary '\\nMi?\ErH','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/StructureShape.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3N\\Aw+Ws\N)',_binary '!+j\{&\\#\\\r4\\b%٠\Z\;\','',0,'?'),(_binary '\w\N\\&T20.','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/TimestampShape.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϗ\\؋)ѣ	\r',_binary 'NeqE.lǙy\\=\>\Nh\bd\','',0,'?'),(_binary '\R\Z-\r\x^','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Validator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\kb\\h[js\\*',_binary 'IR\rȏ*\\Ga.B\8vK\\\<\\','',0,'?'),(_binary 'F|\صZX)','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/AccessPointArn.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A0\\k㹋\',_binary '\T#\\Zxvu\G˼PFZA. ]4\\','',0,'?'),(_binary '@	\\'\ͥ\yom','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/AccessPointArnInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\R\|p',_binary 'c/V\(\\~d\Ӧž\\9r|YTI\\','',0,'?'),(_binary 'Lr\'\\6sϪ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/Arn.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jv\K4K\z\',_binary 'iK?\\\cD\Q\P5\r\\1fu\]y','',0,'?'),(_binary '	\\Lk\\#w҈M\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/ArnInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z^ሥNҲK#C',_binary 'Ox\h\V\Z\rum\L@xdV','',0,'?'),(_binary '\-+Z\N$\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/ArnParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%n)\Y9+N\n',_binary ']w\".hݥW\ e\Z\g\mv˽\\','',0,'?'),(_binary '̞0\@\n\F','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/Exception/InvalidArnException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' 늰^,Q',_binary 'p\t\,\0{f\nKmT\%\+\|J','',0,'?'),(_binary 'r*\bЕR%(B#,','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/ObjectLambdaAccessPointArn.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$;x\ȌFnH\',_binary '\\ˑ$~\\Q\M\j\y\Ҁ','',0,'?'),(_binary '/s߫7\3qM\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/ResourceTypeAndIdTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\"\>2\\&`',_binary '\'#ئW\na\r\?\\\ӂ\Z\\\$','',0,'?'),(_binary '\Ɔ\CwV[x!)8','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/S3/AccessPointArn.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\'6{\\ab',_binary '##>\[\n\6P\\EO,eMs\v\b','',0,'?'),(_binary 'g?^17\\\\/֊\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/S3/BucketArnInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\.\Q\4',_binary 'tF\F\al\\b䯞+2hz!>k','',0,'?'),(_binary '\\9xeUZy','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/S3/MultiRegionAccessPointArn.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ǆ4\J&=\WX+k',_binary '	h݉\\hʪWbRA9\Y3T','',0,'?'),(_binary '}Am\TVCI\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsAccessPointArn.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WRujTvJ<,',_binary ',1a9/\n~\k}\\vz!T\h \\\P]\','',0,'?'),(_binary '\\\\Qt]E','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsArnInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B8\sb![Ύ\EI\r',_binary ' S.c\\5\\aE7\Qe','',0,'?'),(_binary 'I\ry*<','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsBucketArn.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʹҡT+NR*ȽrM',_binary 'A\r;U\%)U4\	eL\72\!\Zu','',0,'?'),(_binary '\ogeY]\r\\e','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/AwsClient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c݄\t\'(}',_binary '}qEZ-/E.-Sw\\/u)\x','',0,'?'),(_binary '@&\\\&\1\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/AwsClientInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.<\7GL=wj`',_binary 'vl\05=Ғ\m\RQhnJ\','',0,'?'),(_binary ':\-,h\fDAV\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/AwsClientTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\i\R\r3\\"/ձ',_binary 'ȉm1\0!Y\\6wԹ&\n\L (\','',0,'?'),(_binary 't\[Z\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/CacheInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9m9Y6㴉!m',_binary '\`\RL\Qoҟ+l\\y֟:\','',0,'?'),(_binary '	z\rC$2]c\8','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientResolver.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\\e9\#8Q1=',_binary '\i䱒~\]qAwɎS\0\Wټ݅','',0,'?'),(_binary '\D;.Ǳ\nbrY','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/AbstractMonitoringMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&R\B:&9\i',_binary '\\W@ȑY7uD\F+\3\)ŷ\9\\।o','',0,'?'),(_binary 'F.\"\Z]\^Й','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ApiCallAttemptMonitoringMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j {1\\8q',_binary '=\u](C\:]@\[a\CrL\','',0,'?'),(_binary '_n\\nQa6C','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ApiCallMonitoringMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j?-{씪ݤ',_binary '2DbR\rR\HּJF\ax','',0,'?'),(_binary '޴.{\!\\ʷ\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/Configuration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z?i/M\'\>',_binary 'o\WjZ\D.XUu:&\\6\n\S\','',0,'?'),(_binary '\a{94\J\\\u','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ConfigurationInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^#R5h\\\',_binary '\ˈ7W\m\%)|nr\@\','',0,'?'),(_binary '\F\t{Z\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ConfigurationProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\`2\\[J\\c',_binary '\D\N~\ZO\\(Yy\\ ˱','',0,'?'),(_binary '!7{$MU\(\\n\\0D9\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/Exception/ConfigurationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T͟\\yE)^',_binary 'A2\\t(nYF8vd\g}a\z[Y','',0,'?'),(_binary 'DO\i%K\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/MonitoringMiddlewareInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5XQ*̓',_binary 'CZ\A7\nG\َY\%\\.Ӿmԛ/','',0,'?'),(_binary '.\`%p^&)^|\srCn','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Command.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \I^U\˻N\',_binary 'B}-9!\\,.S\n','',0,'?'),(_binary '\\nB)FvK02','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/CommandInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~y*\Hq\bCW',_binary ':K2[5\\۹Qԇ\6pճX\K\Ь`','',0,'?'),(_binary '\y\1ɒ\"','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/CommandPool.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\b^h\h\!{',_binary 'Dc\.\Á.|Y1v\\qCz_\\W','',0,'?'),(_binary '\ʂR\8Э:[l\\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ConfigurationProviderInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\\b)8TUJg\',_binary 'lS<)ɓ\\\Y\'SM\I\\)p\aD','',0,'?'),(_binary '\"n87S7L\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/AssumeRoleCredentialProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\-\_ pqΑ%\B',_binary '=E)\r\/a\\"*!\ \w,\z÷','',0,'?'),(_binary '\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/AssumeRoleWithWebIdentityCredentialProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gS3\T9\"z\2',_binary 'j;O\\"ѕ\\\Lx\\)\','',0,'?'),(_binary '[Y\rQl	7Uk','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/CredentialProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Y</)s2d|:Q+',_binary '\rW\^._\R0Z\\\K#\K\\$','',0,'?'),(_binary 'Z4N@-\DY','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/Credentials.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D4WD\\c6JUt\9',_binary '\+\,BGX*Ϣ\\[\,̩','',0,'?'),(_binary 'G(\"[*\W\y\/#','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/CredentialsInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\\b\S\n<\,\\\n',_binary '\k\^X\\Oo{>#kS!s	tk(<	','',0,'?'),(_binary '\n\?D@ \r\\\>\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/EcsCredentialProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'ӏk\F?R<\/',_binary '\\\"r\nϢꓑ\p\d\vz;Z\','',0,'?'),(_binary '\\\\\[I\Z> ¿\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/InstanceProfileProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%.1\A\*M\',_binary ';\wX\\>\\"F!O\rPjq~ܢx','',0,'?'),(_binary '%Sur\0\\0e.D','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/DefaultsMode/Configuration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\\]bFus\\%',_binary '\\+б,.,\\ח\\\tG`\T\0w ','',0,'?'),(_binary '.Es\ĐX\\\\42','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/DefaultsMode/ConfigurationInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\	0J\t-qLS',_binary 'gzT\W\;\r;\c/SP8X=T\\\\z\\r','',0,'?'),(_binary 'L-)\\R','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/DefaultsMode/ConfigurationProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k# MPƭ^\\\\\n4',_binary '%,\\\E\lm\\nޭ\02\'kƦ\\j<\','',0,'?'),(_binary 'ٶ0\c,\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/DefaultsMode/Exception/ConfigurationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\'a\D\6̵r',_binary '\]Uk܏\q\\[E~\e\B\\j\','',0,'?'),(_binary '\\\\\nձW+\Z5q','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/DoctrineCacheAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\'\\맜\z7N',_binary 'Y\-b#\\{|!\\юd\^hu','',0,'?'),(_binary 'vj(\&\\">nM\Ro','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/EndpointProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A#^\0\\C?\',_binary '\\>\\\E\\/0\t,ڨ#$j.','',0,'?'),(_binary 'emۊ$\\=f\Z\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/Partition.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ko,]\\lTv2\\',_binary '+ΛP\\n\\]1ZXk\\\ҙ;\\','',0,'?'),(_binary '\v\"Gf\pg','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/PartitionEndpointProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r=\Ҭ\r\G쏻',_binary '\XV}<\[6$ug\\҆1\d','',0,'?'),(_binary '\8a\^\\8<\|','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/PartitionInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?vmU?AJi?',_binary '{\"0\7M@IMO\jo|yJ\`\b','',0,'?'),(_binary 'fh~:)t\:A','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/PatternEndpointProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\ͪ\'\nV]',_binary '\`uh\\{\&\Z҈<\\0J\r\l􂷦\','',0,'?'),(_binary '@R\d\7\j','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/Configuration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\Z\Z\\HNWJض',_binary '2q\UӐ\Co웟ƨ\i)\"H!K\','',0,'?'),(_binary '\\BKa8n.y%','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/ConfigurationInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\*cHYF\fhS',_binary '\'[\jѱ-~qe\ð-*\\-B-','',0,'?'),(_binary 'Әӗ@.I','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/ConfigurationProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\@F$.',_binary 'A\Y\r\u\0\\\ \\\sL2T<#T\\','',0,'?'),(_binary '^Ej\%\Z0a\Y\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/Exception/ConfigurationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I_@\=ai3\;',_binary '\\ĝAR9ZK\\\\Ή\ع@x\\','',0,'?'),(_binary ';\bE&\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/Configuration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#0ڠw\'ngT[d%',_binary '@[l\\5ɋND͞L\^`u\\|b\{\+\8','',0,'?'),(_binary 'r\^Q])\k\\\l','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/ConfigurationInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>~Cs5\F\@)',_binary '.A^\`o˻J@kޱYW2\8\','',0,'?'),(_binary '/cZ\\`e\A_','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/ConfigurationProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b`7\LX2\PK(\',_binary 'c\\\\\T$\\K\9\jd\s','',0,'?'),(_binary 'ҭ>JR*3$E\ga','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/Exception/ConfigurationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\*ԮU\9Nc',_binary '4;x\X엖2\\zJ*\\\Ȫ\\\7','',0,'?'),(_binary '\1x\\r\rM-\@','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointDiscovery/Configuration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ؠq؈\\C|N',_binary '):+8w@\1\\\\R%5ʶ9K\"v','',0,'?'),(_binary 'W\+Y	\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointDiscovery/ConfigurationInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\b`\u\ZUՌ\\9',_binary '\\"gv2\\#RvS\}\gBF\\','',0,'?'),(_binary 'PP\n\K#\|S7M','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointDiscovery/ConfigurationProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\'c#=o3\\0\Gx',_binary '\OVǉx\"\\|OVU\ns>\\\U\Q>','',0,'?'),(_binary '(\\\ٌ̍\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointDiscovery/EndpointDiscoveryMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6;G\x ',_binary '\\TjƉW\\2\\\\Z\t\R','',0,'?'),(_binary '\\\o\צ\W\t','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointDiscovery/EndpointList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\"L\CW}Sc',_binary '\\\\\\7\[\?\#*)\S\\w','',0,'?'),(_binary '\=DBb\\d{k','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointDiscovery/Exception/ConfigurationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\\\\Rd2V2\A',_binary 'f\4\\\Ͷ%\i\<i\DR--\\+','',0,'?'),(_binary '\{6 \\lþȭ\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointParameterMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<\\\]8\ES',_binary ';\Zr,3.1X\Ӗ\YK\\l/\Z\0','',0,'?'),(_binary 'q\WR?','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/AwsException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/cU(\\Z\!\',_binary 'm\\\s\ێ\㒬*\\\\KQ\x9','',0,'?'),(_binary 'oɮ\e\i<\_\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/CommonRuntimeException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S\DNʍc|\',_binary 'IM`\\d\=.kb)}U\\\\\0\\rp̹','',0,'?'),(_binary '\³K\^R\ ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/CouldNotCreateChecksumException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'foUN\6\\\:\',_binary '0rNU\<//<F3T(q@6e','',0,'?'),(_binary 'SN\f\\n,3{','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/CredentialsException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\&mZ\\~\3\Z',_binary 'h\/,NMR\=Dw\1>\Q\qil\"\','',0,'?'),(_binary 'o,&Р&\\W','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/CryptoException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\Z\\՚\ 0U~A',_binary '\\\ߋ\.q^}lu+ZcN S','',0,'?'),(_binary 'F\~T\ʑŶ\v\0','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/CryptoPolyfillException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%l\.YL\K',_binary '?q\sꖎu5|\(O/ޅ;','',0,'?'),(_binary 'YkJ\|\*ꐠ\Sk','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/EventStreamDataException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0Zhw;	\\(6;]\',_binary 'vҲ>o\\6+Y:j\-	\>\nuJ','',0,'?'),(_binary '^\\\G\"q\X\w}G','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/IncalculablePayloadException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7k\n[܃QZ',_binary '\_{k\x\a\\\ZBWۻ\T0\FR-iaG','',0,'?'),(_binary '\\I!\\A\'\\&\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/InvalidJsonException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Δo\!H\',_binary 'P\¾ϑa#-`\\nIOWk\5~','',0,'?'),(_binary 'E\6uv@o\Z$+','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/InvalidRegionException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':C\,<\cБ\c',_binary '\8秪Iy<N\\/eF6\\','',0,'?'),(_binary '\\.g\E\\ZS\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/MultipartUploadException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]Yq\n\\o˶\\',_binary 'VC4jE\v=>','',0,'?'),(_binary '\E9d2V,W{\x','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/UnresolvedApiException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o	\\\I\\,',_binary '-RD&2[:q$4\\Z\3r}:','',0,'?'),(_binary '\^J2\dA','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/UnresolvedEndpointException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k\0io\\\\n\',_binary '\'X\R0\\\h;;[.\\'<E\Q-\','',0,'?'),(_binary 'm\\M|\\\a','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/UnresolvedSignatureException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l*#5M\&K.\',_binary 'L{@qlf\\'F_\Fu','',0,'?'),(_binary 't5\e6H\\0j~f','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5/GuzzleHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '࿷Z\"9D^',_binary '\\\8wC?\vj#\]\EI\`jT','',0,'?'),(_binary '~\eJV\F)','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5/GuzzleStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\gӞӝKe\\\',_binary '/_\o~t\z	69M\"\ `C','',0,'?'),(_binary '%CV7\RYΊ}\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5/PsrStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\93l\\_\B.\',_binary 'uw݇0QB\'W\\	4T	3W{M<aTQ8','',0,'?'),(_binary '\'\1\~/y\\fZry\T','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Handler/GuzzleV6/GuzzleHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nl^9r\K\φ',_binary 'sSL\h$Σ5i>1B\yn\=\\','',0,'?'),(_binary 'YÏ9q@ZMjƾ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/HandlerList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '͒\u\VR6',_binary '\\C|T2\\[;\qe,o\iz','',0,'?'),(_binary 'fn*mri\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/HasDataTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hKԯԎ',_binary 'Qcr\JL\\9\z\ӗ\n	ϿMv/','',0,'?'),(_binary '\Z\xU4sS@sJ-\"\'','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/HasMonitoringEventsTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_[\.\\\Df',_binary '\ecwI\bX[=A:6vc\i\\	[','',0,'?'),(_binary '\"6Cы\\e\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/HashInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\CIC\Y6Lv.\r\',_binary '`p/\\MBSt !5z@\L\H','',0,'?'),(_binary 'B\Wp\L\\P','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/HashingStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aϨp(\F\>Z\',_binary 'RL\B\ܟ\'_CP\Z%wNHiL\[','',0,'?'),(_binary '.Q\N\@\r','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/History.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\0\nEb\ni\\x',_binary 'FH\q&Ij=ٴv@si7\\\=\','',0,'?'),(_binary '^\/81\\\ZB\!TV','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Iam/Exception/IamException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p$+dˈq',_binary '\C;ލiZ\*\E\ԩGr\=\','',0,'?'),(_binary '@\prB^\ʢ\p=%','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Iam/IamClient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':k0(z\dN\\\`',_binary '\ro\%5\9Fe_}A5$x\Q\ғG\','',0,'?'),(_binary 'Xy\a\$ ަ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/IdempotencyTokenMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ExB7\եIi /',_binary '\0\	\w\݅ޯ<[<A\\jۈbd\"\','',0,'?'),(_binary 'G\\\IAMJc>D\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/InputValidationMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R]\[7\\mg',_binary 'q\\I\KP)󘺗\\ޕH\zZ\\X','',0,'?'),(_binary '\<\\45\\s^\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/JsonCompiler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\\T\ a!\\\&g',_binary 'M\bD\E4\f\`ځ\9R','',0,'?'),(_binary '\\\Vs\ӌo','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Keyspaces/Exception/KeyspacesException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4w\07@\7\!',_binary '\}C	˨G\3\=\dGE#\"Zkk\','',0,'?'),(_binary '-&-,Tdw0\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Keyspaces/KeyspacesClient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\_Y\8\\Xx\',_binary '+\\\j\rpr\n$\k\BNܯ,\Y\\','',0,'?'),(_binary '\d:	\0T\\Z\D','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/LruArrayCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z\wB!g\',_binary ':Xc\\>8^f.>\$Ӵ<\ռ','',0,'?'),(_binary 'ɇ\Ǜ˩17','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Middleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' K1\Xc\~K\Lo',_binary '\\|\n\}.\lfЅ\\A-tRt','',0,'?'),(_binary 'D\%\0p1E\&','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/MockHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{~g\K\\ڣ',_binary 'wЈC\iO\\\rUp|\z\jj K\\\Z?','',0,'?'),(_binary '=	t(6WC\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/MonitoringEventsInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\J\2\y\&',_binary '/j{hl6\\E./{\{\P9\\"','',0,'?'),(_binary '\5\'7_\nځ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/MultiRegionClient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TS[lTv{&ŕn0',_binary '\8\\iR\9ƭ]^g','',0,'?'),(_binary 'aN-ӯ=\\)5gۖ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Multipart/AbstractUploadManager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZQLo\E5^\#H}',_binary 'r\˞̽{C:\gc7s_D&\G','',0,'?'),(_binary 'PYqR+8\\!\+','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Multipart/AbstractUploader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1&պnY',_binary '\ltx\\'\0;d\\g\!\\"e	:','',0,'?'),(_binary 'kZ\Aޗ\\\h~\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Multipart/UploadState.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^b|l\r{I\xm\0',_binary '\Up,JR_\yY&6EWc=)\Fѕ','',0,'?'),(_binary 'E\hRfCv\\vl','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/PhpHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1@3I\\F',_binary ':-\"E\';.\"v\sA\5\",i3\\','',0,'?'),(_binary 't$\\\rqGxi\\3\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/PresignUrlMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\/n.)\\Э',_binary '\"O8\C\\R\\n*\ܘ^hǗo','',0,'?'),(_binary 'rcӋL\\j','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Psr16CacheAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6*)94\r\%',_binary '\Ҵ\^\0t\\\`\\;\\jԲ\J\','',0,'?'),(_binary '_\]O@}M\\躳','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/PsrCacheAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʮܫ\ 44',_binary 'm\q>C\ß~ud acH~ii\','',0,'?'),(_binary 'ªgd	\I\ę\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Yv~]Ic3oN\\',_binary '\%\\ \\0O\7<c.G\\؀N\\r^\S \','',0,'?'),(_binary '\XR#{\4A','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Result.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6t\\"\\sAA:C=',_binary 'H>\9!\\\/\\\y,,\ZdŤ\\08\=','',0,'?'),(_binary '\\0\Y\\\_BKn','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ResultInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DH+\T`5\`֞',_binary '`\nI\pvC\0rV\@::Õ?\0]:','',0,'?'),(_binary '\\(\Fx\4HC','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ResultPaginator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GB*p\\r|\\0\w\',_binary 'U&\R\l8*\Xl\Obg7	\:\','',0,'?'),(_binary 'S$O,+\\mn,\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/Configuration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`ނ\u\_99Ha',_binary 'R)t\1[M\\JR\cO!JzkB\','',0,'?'),(_binary '\Ձζ]\H\\'ȸ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/ConfigurationInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nC\_\\R]\\Gh\',_binary 'p.ԇ\"rI/kGÖJ\\\\@\','',0,'?'),(_binary '\\\{\ZbعS','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/ConfigurationProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A9\9~)\"j<#N^',_binary '\'e\\\ǌ;`\餇) YD\A=|\','',0,'?'),(_binary '\\\?32\{i\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/Exception/ConfigurationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fcұ\Z\<\(\"kY\',_binary '7U LV?ϳ!\5Z}\\\\'E\\','',0,'?'),(_binary 'rC\/\pr\\Fۼ\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/QuotaManager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GF\s\w',_binary 'o&\4a\^4g3cc\,\F\\','',0,'?'),(_binary '_\\k9	P\U','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/RateLimiter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\\3dO\l\\!Q',_binary 'Ά\H\M~\M\q\0\ٟ\N\p=\D','',0,'?'),(_binary '\:\d:nw\8g	L','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/RetryHelperTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\ܑ9GjNx$',_binary '\t;5#80\\,QO\\\ãG\\\ZqrBR','',0,'?'),(_binary '!\ō\+LHz\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/RetryMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z\\o\\#\(5\=\',_binary 'xD5^\\"r\ASX0y\\0`YF','',0,'?'),(_binary '.R\\8\06\ܙ\r\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/RetryMiddlewareV2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\fz\8&\*\/',_binary '`=A\0B-{dloӀ\'\\\r\)\','',0,'?'),(_binary '\nw\\{s\^%','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/AmbiguousSuccessParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e=\9	Xŋ\y',_binary 'ETH:E;ΕJN@LZ\8i\\\Sd','',0,'?'),(_binary '\@\0X)4','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/ApplyChecksumMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s;n=E\/_',_binary 'Jp[\\e7ήn;x\y\ͤ','',0,'?'),(_binary '\\\,l@\1\\'K\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/BatchDelete.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k61|~\',_binary 'U`萡x/\}u\\\no\]\l%]<5','',0,'?'),(_binary 'O~S$ǎ@t\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/BucketEndpointArnMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\d_\\n\a$.~Lt',_binary 'C\nS&{>R+EU\{\ u\-c*Pq\'(;','',0,'?'),(_binary '2ǔ4X:\m\x\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/BucketEndpointMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\2\y\w-a',_binary '5Z	\\$Κ\2㝛\\TV@\\','',0,'?'),(_binary '#ȹ\|T- \n\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/CalculatesChecksumTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\nU(4bD8',_binary '\\:`[\P\2\\yc\s\\\(@D','',0,'?'),(_binary 'fu\GVI\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/CryptoParamsTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\qh\\0T\/X',_binary '}5g2xx~dU\k\S8<Z<#,|#qA2H{\\','',0,'?'),(_binary '\ۨKAUߖŪ\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/CryptoParamsTraitV2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tE?Ze	e\Ͷ\',_binary '\DsW׵\\\\g9m{\\\T=\	%Qa','',0,'?'),(_binary '\\\H5\\]\)?','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/HeadersMetadataStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\Zh\\\x\\\q\"',_binary '+0\\\\OP\\h\\	X\uY>','',0,'?'),(_binary '\<\\+s\.\\\\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/InstructionFileMetadataStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(wА\\',_binary '\q\0lW}\"\tՃ\\&fA=j,','',0,'?'),(_binary '\p`\\\S#s\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionClient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\V݌j:\u>_\',_binary '\\\N\h;#~3R\0\$','',0,'?'),(_binary 'pah*\i\H±G\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionClientV2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M&J`v&!%Gխ|',_binary '\IU>J \e\\\2*\P~\','',0,'?'),(_binary 'R\^0\Q<LW','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionMultipartUploader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&=*nc\\W\#M\',_binary '\c9ѳ^\\\U\\\x<1\o\\wP','',0,'?'),(_binary '\]ΙBp{\\\U','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionMultipartUploaderV2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\n\՛\	h(',_binary 'dԦN~\\\O>x2ϭ悘RTp','',0,'?'),(_binary '\\~9\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/UserAgentTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TT\~\_\\~P\',_binary 'Y:\\:\\[\>*¾_\\\t\g}ڲ휁','',0,'?'),(_binary '\:4\SL*a9,T','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/EndpointRegionHelperTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A*ASn	SX.\',_binary 'Nq|4\:S=Ã`\\1y\"','',0,'?'),(_binary '\Ef\\0\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Exception/DeleteMultipleObjectsException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\<p\|+kNzM',_binary '\Zq-kM(\Z	-\s?8','',0,'?'),(_binary 'pB\\\\َT>\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Exception/PermanentRedirectException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(+2\\e2z*v.G',_binary 'rj$P%\㴇gHğ\D\[\κ\\(+\','',0,'?'),(_binary 'L,%2\\I\y','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Exception/S3Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f@Yysq\\\0',_binary '\\\rj\G Z[5ȩX\Sªy\\','',0,'?'),(_binary '}\Z$[\\N0ʡU5','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Exception/S3MultipartUploadException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L+Zʢb',_binary '\>V\\َ\\ͺ$\Q\\\n\ \\\','',0,'?'),(_binary '\FN\\0Wp\"2','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/GetBucketLocationParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' }I\32\\xNy',_binary '\P\rCz`\\L\\\%\Pۿ[i','',0,'?'),(_binary '\q\I\E#[FG/','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/MultipartCopy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\6\\\',_binary '?6j+\3VTA\V1\"-\\q\'z\\1I','',0,'?'),(_binary '(\ ܗ\C<5\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/MultipartUploader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}Ǚ\\mRv7\'',_binary '⃔4Y~I\0J\V\{\\:\PTw|','',0,'?'),(_binary '5S,qS:Pr\Z','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/MultipartUploadingTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\d\D\e\L}\',_binary '\\"\\I8\q\\\0\\\\z\"a','',0,'?'),(_binary '\\\p>L\\"\p','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/ObjectCopier.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\\϶\\%Ƅ`=',_binary '\\0\np\1=-K\'\','',0,'?'),(_binary 'Nd\tv\%\r','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/ObjectUploader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Ǌ\:#\"It',_binary '\n\%\3mpC;WQyut\ni 6Aͯ','',0,'?'),(_binary '\dk\Yw\\Jw','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/PermanentRedirectMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X#\n2\z4(߫(',_binary 'W=d6\\r\\̳8	\j\n}','',0,'?'),(_binary 'Tϱv\6y@A	','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/PostObject.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\?{ÄE\z',_binary '\r1w-\JI\=y\Q\݃W-Ǥ9','',0,'?'),(_binary '~*\ĤL\\k@','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/PostObjectV4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\}\\"@/&\A6',_binary '\H>~٠Y\ܙzMA@\bT|ڥD.P','',0,'?'),(_binary '9T\\w\\BP.0','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/PutObjectUrlMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\֩\[\\\M@w',_binary '\R\v<\", +>1R2\&(\6u','',0,'?'),(_binary '\Z@f;?\\	\-(nD-','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/Configuration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\\kj]\a[',_binary '\\\\dU7)fu߯JM\waT','',0,'?'),(_binary '_8\'4HAz\\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/ConfigurationInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I%k\c!\',_binary '\H\'Ρ\n+Wtq˿bw\"x\\'+','',0,'?'),(_binary '6Z\m#\\*\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/ConfigurationProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Mp(\\\Q\1\\G\',_binary '*\\1\{=,+i\g\'\g\;\IW\','',0,'?'),(_binary '\\\Zةܾh\%\][','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/Exception/ConfigurationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r޽J\Z\\0^t\',_binary '8XĢ=D+z\Hieʢ\\xv\\\\F7','',0,'?'),(_binary '[t\jFZS2֗\E','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/RetryableMalformedResponseParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\w\g@ˈ',_binary '@-gϡ]r\	\\\e4͝t\^\5|o+','',0,'?'),(_binary '5f\rp\P|͜s','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/S3Client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\[a\X~\\o',_binary '\ڥ\rc\;`\\/5\'4\\7w','',0,'?'),(_binary '7\8u\<b[`P','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/S3ClientInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʒO\BdN\nɉ',_binary 'mT+7h>vS|Fɿ\d \,N\','',0,'?'),(_binary 'K}pg8\fQ\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/S3ClientTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qU+\Z\\0\2x\',_binary 'J϶\q\g\ӚWNz\mC\n\\d','',0,'?'),(_binary 'h\\b\|\w|\\b','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/S3EndpointMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=i4\\%E(',_binary 'R[\\i\,TEO\@','',0,'?'),(_binary '1nf/o\$ \v_`','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/S3MultiRegionClient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',rH}v\ \;',_binary '~?cHϭ-\r\ݙll\t\\\_f\Xq','',0,'?'),(_binary 'h\\\v\LuAu\0','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/S3UriParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\;лԽ\+M+',_binary '\r\q=?	\5｝gfXlcܧ','',0,'?'),(_binary '\_{ƴ!W\"0G\]','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/SSECMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G:5\n:\\0,ӵ|\\',_binary 'Y\x\\r!)\V\r@k\qi\&\\;U!\\','',0,'?'),(_binary '\"\4 \?-<\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/StreamWrapper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0ݔ!57\J',_binary '0\Y\~9\j\\KWa\\0 D&q3;C\\2*;','',0,'?'),(_binary '-pf\dM߱>r\*','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Transfer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x 5\NY5\5',_binary 'HA\\\"\=\\\\\{t\\Ze}\rl\','',0,'?'),(_binary 'asd-H\0\\5p\'gW\n','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/Configuration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\\\wmW\\Y\"Y',_binary '\\\r,g\g\\ZߍRQw;B\tp	k\\Z','',0,'?'),(_binary '\Z㚵7bk\,','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/ConfigurationInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+4\p\\)`N\n',_binary 'Y[\}B8H\KR\U\]r\\[~\','',0,'?'),(_binary 'SmO\^j}tZ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/ConfigurationProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7pcR!',_binary '@m\06o\3\ֳ\\'\<\0W:H`-\YJ*\','',0,'?'),(_binary '\Aq!N3qy\Ȝ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/Exception/ConfigurationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2\x%-x\j\O',_binary 'kX\a9W\SroP|\b`mf','',0,'?'),(_binary 'ByEq\\_yb5\|Ǘ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/ValidateResponseChecksumParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9O\\\h.8\',_binary '\Ϲ\Z=S]h\FH\"\Z\"*','',0,'?'),(_binary '1XK\\4','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Sdk.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':u.$?Bmm,',_binary 'MāL*\n\\\2\n\054S\b','',0,'?'),(_binary '(\wvuN\v/_','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Signature/AnonymousSignature.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K8v7wU\\\xVX\',_binary '\J0;v84C\'\\\k\','',0,'?'),(_binary '\Q>\\^ݍ\[?*','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Signature/S3SignatureV4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ɟLnj}[\p\\'',_binary 'B%s/Sv(UvZ\&\%8E ','',0,'?'),(_binary '\"k\i\'[\v','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Signature/SignatureInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A̡gn#er7\\\',_binary '2P\\w7#\ǒ\e\\Z\%YtK','',0,'?'),(_binary '0z*u@A\\v','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Signature/SignatureProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZnJL\\\\Z',_binary 'u\e\\T\\<\ߖ\\\SK\\':\0','',0,'?'),(_binary '>|\\\\]Ρ\#1','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Signature/SignatureTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=1\Z77\\Y!',_binary '\q.T\	\\Gۉ\؉\i\na(̂rJT\','',0,'?'),(_binary '4\\\\?<\>\\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Signature/SignatureV4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/H_\:WQ4N+',_binary ']\,$^?UU\TE\	\\:`U','',0,'?'),(_binary '\\\\S%\U\\N','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/StreamRequestPayloadMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\\\\\"\x\KJ',_binary ',n\v,\\OIpM\\:\\p\\','',0,'?'),(_binary 'FɄFlFb873\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/TraceMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\Ds̳}\\;^P',_binary '\Z\\].Zr2J\\&wʥ\\\[c/ ','',0,'?'),(_binary 'J&&>XЧH\#X','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Waiter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ut.UD\c\\\nv^',_binary 'zʡ\IA,L\r(8\8O\"\','',0,'?'),(_binary 'FK|\Z9V3n\\i\>','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/WrappedHttpHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	\\.',_binary 'i\1.\l\̓]3\J@\\\֔U)>Pɑ','',0,'?'),(_binary '\P>A\2^*\"ؘ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/aliases.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p~u̇#\',_binary '\\r\\i\\\7\A\0\\\.q\\'\A','',0,'?'),(_binary '\\\NACY		`','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/endpoints.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '45\O{7Q\r',_binary '̢\qi4kKi6P\qJ1\\','',0,'?'),(_binary '\7\\{	橅l','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/endpoints_prefix_history.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<msȀZ.\\w5',_binary ']t|a\"\\8ral\\\_l\\\qɑ%','',0,'?'),(_binary '<gϷa\.&\2H','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/api-2.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\D<\R\'\\',_binary '\\\'+`hDU\.\l4Ԇ\\\:_\x','',0,'?'),(_binary 'ihz$r\n%\->KB=','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/paginators-1.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K{8L\/-\7',_binary 't$7:k\@\ɂ\NÝANV<\','',0,'?'),(_binary '\V\.ܵU\w','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/smoke.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hf&\í)dn!',_binary 'Ȁ9<Bi\\nGAe\ഄCHyȂ','',0,'?'),(_binary 'S\\/\]','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/waiters-2.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\n\ǉ\Ms',_binary '=\1i\\&\Z\%_n*%,\(\n`\','',0,'?'),(_binary '>B\J\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/api-2.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G)A\\rUĠz_',_binary '6Q\'~h\o\nd\4}','',0,'?'),(_binary '\W\[\#t\7\V3','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/paginators-1.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ѭwXw\\iq\'',_binary 'q\`fA\0\\*Շ19b<\LA0\(\=','',0,'?'),(_binary '\l#~\WEDTL\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/smoke.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y`\\olt#\B+',_binary '\߱\W\^À\R\<\2IB\reHZ\%n','',0,'?'),(_binary '+3l(.\AS,{\\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/waiters-2.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\4	\3\g\',_binary '\\"m,\\CE\\nP\D\`7\','',0,'?'),(_binary '6V\5\\0\H^\#','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/manifest.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\\'F\e͈a\0',_binary '\\\̲*G4\\X_ӊ|I\nH\|\'Gi/\0','',0,'?'),(_binary 'D=#\{K\r|9','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/api-2.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\:\1F\\\',_binary 'g&@Q\\n\:\Xcl<@os\','',0,'?'),(_binary '\\@Ha`pl&p\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/paginators-1.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd!z\!λ`',_binary '\2Q\Űe\/\\<TȪ\~oQۑ2.','',0,'?'),(_binary ')!~Y@~#\\k\\;','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/smoke.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\\\#\',_binary '1)@\\-Cec\\o\\'d,\\\\','',0,'?'),(_binary 'kׯD:A\\k','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/waiters-1.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\fC\%jq\!G\',_binary '\\r\\\.6(\M\\>@QL)\\','',0,'?'),(_binary '\-wC6','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/waiters-2.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K]]?\2\Z1ߊ',_binary '>\G }fڵ%`\IZL\Df','',0,'?'),(_binary '\%Ʈ4\\)\','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/sdk-default-configuration.json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\dזO\Z6T\',_binary 'MW4\QcJ\\e^J\"=Q> )f~\','',0,'?'),(_binary 'Ϲ&XRzkl','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';B=\ϴtV~',_binary 'ʊɤQR\dK\\\"=.\GU\jQ#ks\','',0,'?'),(_binary '볇\	PM$','wp-content/plugins/updraftplus/vendor/components/jquery/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\r^\bZȌ$\\\',_binary 'gD\G>Mrz\~\&yCW\9ۺ','',0,'?'),(_binary '\~5\s|\3\','wp-content/plugins/updraftplus/vendor/components/jquery/bower.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/#\"\v8{\L4',_binary 'A\\\\\>d\\\9r\\7y\p\-Ol','',0,'?'),(_binary '(vN\\\r\U2\\ReI','wp-content/plugins/updraftplus/vendor/components/jquery/component.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zy7dBOo1l(',_binary '\\Zܟ4\S\^\WdXzV\\}WA','',0,'?'),(_binary 'Ʋ\" jy\j\4+','wp-content/plugins/updraftplus/vendor/components/jquery/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\,x\a*',_binary '@J\B\\B\E#ƶ-f\I_+\Kc','',0,'?'),(_binary '[M\Ƃr\\\"\\bH#','wp-content/plugins/updraftplus/vendor/components/jquery/jquery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(I#\\\ ',_binary 'h{o\$\\g\\Q.6o\'\@\\E \G\','',0,'?'),(_binary '\[V\3qOۉ5\~','wp-content/plugins/updraftplus/vendor/components/jquery/jquery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\̆lrATĜB',_binary 'G,9Q\H\zUplXߥ\\+\>Ƥ\P','',0,'?'),(_binary '\4H-C_^`\[','wp-content/plugins/updraftplus/vendor/components/jquery/jquery.min.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n]f:\\AS\rK\',_binary '̦K\s VqI\\{B9\@\m❙','',0,'?'),(_binary 'cdx\PJQ߷h2','wp-content/plugins/updraftplus/vendor/components/jquery/jquery.slim.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E\\c\b\\s',_binary 'yAi\\ޞ\Z.{*ү\͖\\ELW','',0,'?'),(_binary 'Ux`Hnǒ|R','wp-content/plugins/updraftplus/vendor/components/jquery/jquery.slim.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vYR\\\"z16]',_binary '}bKT\)(٤}N\\xkUė\\','',0,'?'),(_binary 'U\¼bTta\0','wp-content/plugins/updraftplus/vendor/components/jquery/jquery.slim.min.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\fm>\a\\nL',_binary '\\iyxR\^\y7xQ\-/<\\\\P','',0,'?'),(_binary '\i\Z*&x{\:,\\','wp-content/plugins/updraftplus/vendor/components/jquery/package.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4R9LU+\fTr)\\',_binary '\\	ʺWnD\}\\\"D_@%R','',0,'?'),(_binary 'Hg\\7Ά5O`]l','wp-content/plugins/updraftplus/vendor/components/jquery-blockui/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(;\\"\]$v',_binary 'i\\Ö\xzb\\nfZ\D,\	\F\~','',0,'?'),(_binary 'B+&X}x(/\','wp-content/plugins/updraftplus/vendor/components/jquery-blockui/blockUI.jquery.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NM,)eV',_binary '+oOWʤ\\i}g\\d\\\\=\\\ߔ','',0,'?'),(_binary 'e\\S','wp-content/plugins/updraftplus/vendor/components/jquery-blockui/bower.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\4xT1=q-\]dm\',_binary 'l\\\rjuWXG\\\\ZTHo','',0,'?'),(_binary '\\5[J,ɋW','wp-content/plugins/updraftplus/vendor/components/jquery-blockui/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9E@:\\\L]U)',_binary '\F.\M2\Hx6\J\d\\jv?\/ʐj\','',0,'?'),(_binary ')5\[\$\n\0]\','wp-content/plugins/updraftplus/vendor/components/jquery-blockui/jquery.blockUI.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd ?\_\\:',_binary '\H\\@-*\\eJp\X	L\','',0,'?'),(_binary 'x\\\ճ=,=','wp-content/plugins/updraftplus/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"UE\"Eb;D\n\',_binary 'Ա\rg\\CXJU\1։Ya,\\1','',0,'?'),(_binary '`C\7[uA\\','wp-content/plugins/updraftplus/vendor/composer/InstalledVersions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q~f\\\\\"\',_binary 'p,\-\gWԎ\W\.cE\M','',0,'?'),(_binary 'F6\g{\Y\ R','wp-content/plugins/updraftplus/vendor/composer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']_\#D\\0\\',_binary '\Z ے\%4~N\~Gh!b\:wɌ\'','',0,'?'),(_binary 'b<SK\z\;\K\n','wp-content/plugins/updraftplus/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\X2w69	\o.M\v',_binary '\G\\VdP\0\\Z؉M\Ϧ\2\#','',0,'?'),(_binary 'dI\0\\gIm','wp-content/plugins/updraftplus/vendor/composer/autoload_files.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϛƇ޹-b\֊',_binary 'gM\a/\|=CHk4\\0?8\T\+','',0,'?'),(_binary '\8c\DHz万q0\','wp-content/plugins/updraftplus/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qb8#ZLkb\.\',_binary '~Gp0\\b\"9u0\r;3\"I','',0,'?'),(_binary 'A?OyA\/Z\\<','wp-content/plugins/updraftplus/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u\\c3[\#',_binary '\;-\6\5ջb\v\V\4]\7\','',0,'?'),(_binary '\]=\r6\5\','wp-content/plugins/updraftplus/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڄA\/\@',_binary 'Sw\\!+B\_k\q-mx\\3:\\(dc','',0,'?'),(_binary 'xQG9nJ|','wp-content/plugins/updraftplus/vendor/composer/autoload_static.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qc\-\r',_binary '.0b\\Z\X3X\\V9\g\\\','',0,'?'),(_binary '@]\qur|7.5z','wp-content/plugins/updraftplus/vendor/composer/include_paths.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BU\E\&DL\Q 6!',_binary '3\zl\Z#@\\\U預\\ZllȪ\','',0,'?'),(_binary '\)Crp),=e','wp-content/plugins/updraftplus/vendor/composer/installed.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\ 3\nmX1_e',_binary 'P\&9\$\\r\\&\\'\E(\(*\4+3T\','',0,'?'),(_binary '\`\0f<\\ɝKmc','wp-content/plugins/updraftplus/vendor/composer/installed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\/\r\;\\6n',_binary 'Hg\cdz=p\r됦ؔ\F\\!','',0,'?'),(_binary '\-m\\D\dͰ','wp-content/plugins/updraftplus/vendor/eher/oauth/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\on#煵\',_binary '\\'n\\+d\2]\	\k\8\\1\\','',0,'?'),(_binary '\<v\KŨf\+hM','wp-content/plugins/updraftplus/vendor/eher/oauth/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Q95j*>\LqX',_binary 'س	ίB\e4\0՜Ӂ8i\e˳+}','',0,'?'),(_binary '9bE\\g<n\\\','wp-content/plugins/updraftplus/vendor/eher/oauth/phpunit.xml.dist',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{ouW\	\\:\\',_binary 'O\"u5\=\\R[y\>\\ɂR}\@','',0,'?'),(_binary 'c\\x\\~9*Ru','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Consumer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\<MW\\\z',_binary '\\Eh1v\[5KQo\\sE\e\ÿEEk','',0,'?'),(_binary '\x\nԇ\t,,:\n\','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/HmacSha1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\eꮲI5\\6{4U',_binary ']\~G9\\٫\q)\],d','',0,'?'),(_binary 'J@\p\[+;\','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthDataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(I\\\\\\Y',_binary '\5\⣏#\ZDʠL\M7\P\i\&(','',0,'?'),(_binary 'V)-\Vd','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\ȍb\\xw)Q',_binary 'h\- K<\Ax<#\7&PI. #{\','',0,'?'),(_binary '\\\?>hk\x/m','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthServer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\yp?m\}\\\\',_binary 'O3\޻zT\\Z*k6\r\Ɓ\\\\Z\','',0,'?'),(_binary 'B\r\I\u)\\\b\','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/PlainText.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`|\\2\j?\3',_binary '\\\ߌ\\"%=\ќ/\^6Z\Yg','',0,'?'),(_binary '4pٺgv\猔\#','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\\X>>LZ4\\\',_binary '\DkF\" 2h|Tie$~*>\TZ','',0,'?'),(_binary '\\о.k','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/RsaSha1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\	׵\F\a>\',_binary 'q .>\0\\܂ď\+\q\M4W','',0,'?'),(_binary '\\*y4\\b=^_0','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/SignatureMethod.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xw\+;ax\jt|',_binary '|t\s|\\\E\*U\Ɣ*\k\ݹ\','',0,'?'),(_binary '\9 L\k\_','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Token.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qw<\Z-6\0',_binary 'E\'\'阌2\"ս\м|gE','',0,'?'),(_binary 'QUWܕ味','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t\>\\X\Q!V',_binary 'sX_\լ(c\0B\\ӄO\OU`R','',0,'?'),(_binary ':t1Χ\%Neb','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\V\O\\',_binary '\.%\+r=\ \\C\\N#l\l\"','',0,'?'),(_binary '\sG}-+\\\vq\i','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\,n\Z:\\tUɾ\\',_binary '\\f6Ѳ`UE\\jD5\*a\\\ZEQ<','',0,'?'),(_binary 'O_gHgM\|\A','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=aҭCwR\uZ\u',_binary 'Y\\r\\:\b:XRm\w!b\>#','',0,'?'),(_binary 'SǴ\l>U*\\r=\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/UPGRADING.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\!\Z\\rHDZ\L\',_binary 't\\\s\|͡K\\~\\/i%j','',0,'?'),(_binary 'QLd}\\\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/build.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VO~`CX};`\Y',_binary '\x\"\n}5q\涒\kA\\\O8@7?','',0,'?'),(_binary '\c\\r?8wF}\#','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VymT\*,b ',_binary 'M\L:=~;$2u\"Zޮv*\','',0,'?'),(_binary 'Oj~\ּk86','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/phar-stub.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\W\DKX\a\',_binary '\vq$u\\\B\q2\\Z/\|PT\\\','',0,'?'),(_binary '\z\80\C\t','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/phpunit.xml.dist',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F(;biMa',_binary 'G[_l(\OA\'0DP\','',0,'?'),(_binary 'otp\\4u','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/AbstractBatchDecorator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\յk!&\',_binary 'ⱉ\\\¤\	\AgϚRX-\\0','',0,'?'),(_binary '口SfF\\\\\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Batch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\,1\@b9',_binary '$-G\Z˵\yǀ\\n_\BTQ(','',0,'?'),(_binary 'WV\\r\I~','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchBuilder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\Em3+O^[\(u',_binary '\`5Hмʄ5d7h!\Ca\\|\'!','',0,'?'),(_binary 'Q\yq\mr','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureDivisor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T]\^P\0k	n',_binary ']3n\\˹0\Zb\-peW	','',0,'?'),(_binary 'xs\grS\\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureTransfer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CVsybo3`>j#\',_binary 'wA/e{zw\W&	1og\\R]D\','',0,'?'),(_binary 'P}L\\3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchCommandTransfer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q)XMԭ\`@Fv\',_binary '\\\\\\V%\9d\6M5\I\','',0,'?'),(_binary '$2(j,\Ѷ\\?h','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\?2K\\4\\t',_binary '~\a\\?oH3`])#)7\N\+_c\\','',0,'?'),(_binary '==x\D>*y3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\#\\\%\',_binary '\\6QX{:ֽ	aoZ\\\B\\\ZeJA3','',0,'?'),(_binary '\Z\a\d8p\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchRequestTransfer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\\Ө\'\\\\\=]',_binary '\q#6W۝\\'	V\Coc\ઋܨm','',0,'?'),(_binary '#FĚn\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchSizeDivisor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(#hW_Ev\[29!\}',_binary '\σG/.drU\꩜%8,D','',0,'?'),(_binary '\0빤\\\\>\ߡb\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.$E5s{m',_binary '\\ȲRk\<[z\?BP<PA8d]L`|','',0,'?'),(_binary '\\ʘGʥ\o\`D','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Exception/BatchTransferException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?O\\$+dz\0\\0',_binary 'c\\jevFw\Jߛ\R4G\\"Fo\','',0,'?'),(_binary '(#D(4ڛ\\f','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/ExceptionBufferingBatch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.ʹoCc*\Yq',_binary 'jb(\\^5\\4k\\6\0EDl\r#\\2','',0,'?'),(_binary '3y0K bxu','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/FlushingBatch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nl\\\\\\\\)s\c',_binary '}De\\'/\\\\"XM/xx%kZ\ۓ\X','',0,'?'),(_binary '\7?\\/qm.','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/HistoryBatch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bʼ\:\\\Q\s',_binary 'M#\%yߴ\enY=Ճa\\\M','',0,'?'),(_binary 'C\Z\O\\"\\v\![','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/NotifyingBatch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӑqhj!$:EB',_binary '})!Hs6s\'\nجu?aXK)1\pf','',0,'?'),(_binary 'O\r\8\Ƴs\\O','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VwP3\Pi\_DGuC',_binary 'j]7Jt\\\w\ῑ(2(܄\Gq\','',0,'?'),(_binary 'F\j\8\n9\7T\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/AbstractCacheAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ҙ[e9\rT\',_binary '\+*[J}\\S\hoJ=[\<ٔ\AL','',0,'?'),(_binary 'F1	\\ٛ)H','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\CڥK*Z\|4t',_binary 'ŃbF_a\sxq`\8D\!},-','',0,'?'),(_binary 'v竸6\\\Kڐ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j&y\\\"@tQ\',_binary ';0Bc#\ju\kIirR\"\L93\(','',0,'?'),(_binary '<6ˤhlb>R_','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/ClosureCacheAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a|	XŤD5Su[\~',_binary '\9\\zwL\5{\!\?\Y!	\f\','',0,'?'),(_binary 'CD\\E\\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/DoctrineCacheAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}RD\jƻd@\',_binary '(t<MAˮ~?$ \Кۘ\\\2\\Y9','',0,'?'),(_binary '\nc\\n$8:\n#j.','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/NullCacheAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\B.\Q\oWkG_',_binary '&殪T>I\\\ecu?~:%\%:\\h\Z\','',0,'?'),(_binary 'arqA\b@r\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*I\\V:rd',_binary '!78>vYY\^9Nem4J\@aܽ','',0,'?'),(_binary ']L<|<\2V=T\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf2CacheAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[&\E\rR\37Cg,',_binary 'T\\`\ZW\n\\/L\\ n:Zf\b$\$Nv[','',0,'?'),(_binary '*[\h\\5i^\s','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=^_\\0F\7S',_binary '\R	\\0FH\n#\^y\h+\r','',0,'?'),(_binary '7#i\\/74ZB','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/AbstractHasDispatcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ng\b\<g\[',_binary '\Z\#\'Ǔ\f\\n\	i=\','',0,'?'),(_binary ']\"\!29mD7\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Collection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$HLj\\ 	[',_binary '\Y\0\u\\_\\\[/PέWQ\:','',0,'?'),(_binary 'w.YsT]6]\]r\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Event.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9%	(²',_binary '>j\\\\\\\Kfg\]\/fMU','',0,'?'),(_binary 'y\\\\]\\|\Q','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/BadMethodCallException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ M\ߌu.<',_binary 'ݴ\\߂0\b}\?\n S\HBuL	\"','',0,'?'),(_binary 'qp\|\<\0*\"=\l','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/ExceptionCollection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' 7o-\&h\\R=',_binary '\X\Y}ö\N\\">C:%l*\IgY','',0,'?'),(_binary 'iy\\9\1a*s3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/GuzzleException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tVLmm8b-{e',_binary 'W|FU\\hy	\\T\m\\r\\\','',0,'?'),(_binary 'n+zo\hsW','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\vFό\:p&`',_binary '1FǛ\c\%\\L\o\]f+[zgy','',0,'?'),(_binary 'R\ĢA\YH\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P_:)q\`{#',_binary '\\\ibN)֑Q)S#7.','',0,'?'),(_binary '\Z\\s\)`','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/UnexpectedValueException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!3,S\\'\',_binary '\%:׶s\FJp\*kb\_Fjׂ/\L\\','',0,'?'),(_binary '0%v\+BɌ\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/FromConfigInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>bY	PHV\\',_binary 'c\\\\@\$ 7\ihkğ\ZV\\uI','',0,'?'),(_binary 'P$u匨\((]oRd','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/HasDispatcherInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ۨ0k~l<J4\',_binary '~_v\P\Gm,\ C\T@\*`QN','',0,'?'),(_binary '&	\4\|\\x\\un','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TfXO\'\\\\0x',_binary '_al\\\\_	\~9\`\r\'p\','',0,'?'),(_binary '(\\ni\\	\\0','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Version.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\5;ZW',_binary '\\!\\n襗u\v\2\\\}\','',0,'?'),(_binary 'gI\k\@i@\#\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\0\y\>\eg',_binary '](\\'Ip	lCZ41V:Ia.A=4','',0,'?'),(_binary '̤3\kM62D]','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6Ԧ\#hlܞs\',_binary 'Y\\\(z\\k\\ӎ̉1D~\\Dr$ցˎew\','',0,'?'),(_binary 'HL[k%̸qp','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/CachingEntityBody.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\\nfvQ_x%c\',_binary 'gdV\W8H8-\0E\\<#{\[?x\n','',0,'?'),(_binary '@)\z\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\%5vF\0*',_binary '\\У!Va\t\ \1j[x\\sBw','',0,'?'),(_binary 'k;\\f5k','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ClientInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@l7\	3\;5s\S',_binary '\ƒu\\Hn\\\\@d]\O$\H4','',0,'?'),(_binary 'F\; !~l^m\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlHandle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\E^\Z\\\\b&',_binary '\c\n\\d\[b\:O\\;F;@\SqB','',0,'?'),(_binary '\qšb\b53\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMulti.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\(\{\GvB\*z\',_binary '\JY\\LV\V1@QP\=\\\"\L\\=','',0,'?'),(_binary '\"!O\0[]\04<','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\~\i8\4YkC',_binary '%3	iF̥K\n\02$g\sA^2,~\','',0,'?'),(_binary '\\H/%,/\6','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ڊI_\r\tW0',_binary '\3LCŊ&Q\0\27,ރ\\\ZS\]','',0,'?'),(_binary 'դi_玝ΚD\r4','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlVersion.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xW\ }\t]-\',_binary 't6\FŃ6a\\#\T]>\\&r{\8','',0,'?'),(_binary 'B(\\(ƹݵ\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/RequestMediator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\nIP\Քhs>',_binary '\\W~\\\\@P\\X\Z::','',0,'?'),(_binary '\\\#dbiV<','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBody.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^}\NYs}7\',_binary 'Y\\Z_\\\\\a\\?\tbV','',0,'?'),(_binary '\ro\\(>R8Gts','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBodyInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ɣ/\\m[~q)',_binary 'X\,\\7\\j\Dd\v;\ft\','',0,'?'),(_binary '}RR^6n,xŁ-I','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.5\}ֲ&6j(~',_binary '~^\jl\\\S︐2\<8nnI\uz\','',0,'?'),(_binary 'T\\\))j\G\|I	Qq','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ClientErrorResponseException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʰL\@j\nn\',_binary '\b\\Ʀھu\N2GuWtWE\\','',0,'?'),(_binary '٬O\\Ƥ\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CouldNotRewindStreamException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\$t\kW\\',_binary '\ɥ\r \k(\\0>\\#\0Z:\t]u\%.\','',0,'?'),(_binary '@\\s\@/f\DS\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/OAI\Η\\P',_binary '(\,?L\xk3IHh]q\W!','',0,'?'),(_binary '\\\)\\EA&\b','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/HttpException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y\\0l\eԄ1,}\r',_binary 'dI\\\ޗ5K)\\\7?OJ\"jU<K','',0,'?'),(_binary 'Fu\й\\\s\`!','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/MultiTransferException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r{_d\]أ	To',_binary '\\'%G2G\\0ql\O\Lm\`\\0G5\'','',0,'?'),(_binary '|+7>\!ܨr?M','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/RequestException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}\d\	',_binary '\ۇT&#Jq\\N&ߔ\ZK\\G\ڂ*','',0,'?'),(_binary '\^^[(J@`5i\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ServerErrorResponseException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&!K<UZ\ʛ',_binary 'H?\ٗ\KHwJ5>шa&y\>','',0,'?'),(_binary 'C\\';Mb5\\\Z','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/TooManyRedirectsException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\l\\\\',_binary '\\1䎰T\ݐV@~p\\V\WΧ\R','',0,'?'),(_binary 'V\Wo/\\\HY\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/IoEmittingEntityBody.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D@\\\<(\xHm',_binary '{o\nLO/>e|r)Mq\b\n!{\ZB','',0,'?'),(_binary '4P\0ze8z\B','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/AbstractMessage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oSO',_binary '\\E8\\Ӛ\\%\\0 %8\0_`m\t','',0,'?'),(_binary '\~HN\6\|','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\H\ޥ\\0\i\\5',_binary '!WҪN\0֫(\\r\\\88A3F4\\','',0,'?'),(_binary 'Zt\\\0!>\n\TIAt','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequestInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tN\\\\JS\8\',_binary 'p\iz1\\qaڪ&_;O\','',0,'?'),(_binary '\Z%OH%p','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/CacheControl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_.\@a\p',_binary '0f2F=\d1RG\\\7\/E\\$Ǣ','',0,'?'),(_binary '.[=\\nc0\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderCollection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\G0\n\ny\nh',_binary '\1Fi \\ 8bsH\ľu1t_\','',0,'?'),(_binary '\q\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z4ۡ(\g[\',_binary '\\w\kj\.LT\?=EUݛEm','',0,'?'),(_binary '䋊\V!2d-\n','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactoryInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(Eɿ\'j+.T}\\',_binary '\Hٲy\G\\y?\-n \g`\a','',0,'?'),(_binary 'Н_O%\^\0)Ł','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Wq{:|e&M',_binary 'f*K}\-\ݲ$Op*$\'\P\V\','',0,'?'),(_binary '\Y\5g','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/Link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\/]dCHo-',_binary 'x[`ܧfGng.\w\\W\|\\\\0','',0,'?'),(_binary '.\\_\k\fH\O','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ஃLz*\\B\g',_binary '\C\ԑV,b\<p\Ul\%g\\6\','',0,'?'),(_binary '︀ܹ\Xu\_\\J','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/MessageInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k2bQ-\?a',_binary 'x\\\\r}`\1\08\\>\\\u\6o:','',0,'?'),(_binary '\\\\\\LlA\\\*','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}9\\\\\mZ\',_binary '\\\8d\s~K}A\HX%','',0,'?'),(_binary '\\\WdϞ+\\nnW','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFileInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \&\ʾ\0\"d\',_binary 'i\8HL&<\y<\0 C\0{H6\\nL','',0,'?'),(_binary '0^\\\r\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æY-[\~ ',_binary '\+ǡ\\8\Ȗ\J5\r&+\\<@\\','',0,'?'),(_binary 'li\c\`V-,','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';7:ǐY\n\\,',_binary '-KT\?\-A\o-\\\\\\0A\Z{','',0,'?'),(_binary '\\x\\b\rr\W\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactoryInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nha\\w*\',_binary '\\fk@ϱL1<\0\Q\z3.%','',0,'?'),(_binary 'qXo\9F+\_','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\CǡhF\.I`',_binary '\1A\\"kk%\\\!D\\\I,YJ','',0,'?'),(_binary '4\R	:|WT\ӶB\\b','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\yM\^S',_binary '\Xr\\2cm \[\\}C\0\\[','',0,'?'),(_binary '+>h )','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Mimetypes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')o<Yb\\\f\\',_binary '\ε?4J\cIX̉{̩AȔOy\','',0,'?'),(_binary '\/\UR\EǬ6','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/CommaAggregator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\\jGm*fYE\\T',_binary '\{ޞw\\n\0qɖ:w$\'WN+Q','',0,'?'),(_binary '[\]cim]Z42','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/DuplicateAggregator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']/p\\=}qd	;',_binary '\0@do3*Dg\㽅6ѴaMvsN','',0,'?'),(_binary '\\X12\mƇr','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/PhpAggregator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\\\&4K',_binary 'e=26dA\u,\\#ܥxp\ri;','',0,'?'),(_binary '\\'t\Z<.\ն','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\Z\l-cNX\\\'*7',_binary '\	\'e\'es\\{@\^u\0','',0,'?'),(_binary '[x%0\h\\N,z','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryString.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\TnJ\\x\x\\',_binary '\!Y\4#@ZJD\~4\\\_\$','',0,'?'),(_binary '=K3p*\=2l\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ReadLimitEntityBody.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's,sqԟ\\0߭\b?\',_binary '\\aVlK~W9!!A\\\\4\Og\','',0,'?'),(_binary 'L\G\E$74\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2\,E\4\lCA',_binary ':8\'\Ii`\7s0\p\L','',0,'?'),(_binary '~\7y\&\EI','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Resources/cacert.pem',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l32hL-YL',_binary '\\\\\An(W-\`[\K+v\!k;[\*#','',0,'?'),(_binary 'RK1Z\&A','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/StaticClient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0_\s7=I\ǚ',_binary 'y^$\Jz\z1\!x\Z\\\','',0,'?'),(_binary 'Hr>\'=\y\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Url.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kNc*\&\bԏ9F',_binary 'S#I\\Z\1\MX\_f^','',0,'?'),(_binary 'Υq\:\\q\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\]j\\\aGCc',_binary '5\n?\GU\\"g\$\W@)HY\','',0,'?'),(_binary 'GK\\\\\n-','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/Inflector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\B\P\KS\0',_binary '8nhT^\}=\\'EJP9\\|','',0,'?'),(_binary 'bF\\\D\\n;+','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\\3UGT\>-\',_binary 'M\i\Z\\3+\\\R}q1IA','',0,'?'),(_binary 'I\扙m|h','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/MemoizingInflector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	z).\N<\QWT\',_binary '\\_ չbw#|.#\\E\\\,;7Y','',0,'?'),(_binary 'ڊE5^d;\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/PreComputedInflector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+~P\\3',_binary '\7a?\'l\}ƭ/a$^^\\','',0,'?'),(_binary '\ȣ˕\\v','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.7N?gK\r}\\',_binary '\:\\\qb!\\J,\\\\\\y|*1','',0,'?'),(_binary ';n\7Ϸ\2','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/AppendIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~\#\[hoD\\\\\',_binary '\\]W7Ci\&\\\\'\T};','',0,'?'),(_binary '\ZUcsچH{=\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/ChunkedIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~jmd',_binary '89\\\8`\գ\5\i-I\Zj','',0,'?'),(_binary 'zFG\U\k&','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/FilterIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~\rU\\Fb{iI˦',_binary 'gr&[\m\nxHs\\x\')9ʻ\"A|\\','',0,'?'),(_binary '\\\n\\\\19o','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MapIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}(/D.OUtk(\',_binary '\96E >S\#0\bf3\Y','',0,'?'),(_binary '\j\\\h\յ\Z','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MethodProxyIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\\W!\"`h\\2',_binary 'I\\ʩd\Ϧ/\a\4Pu3\rn','',0,'?'),(_binary '\30\i]\G;','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\\n\Y)X\',_binary '-	\\ayR\[~\\ُ\2','',0,'?'),(_binary '.B\ݝ]P\0yuŴR:p','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\N\Yf\-&\}',_binary 'OGU\O-\"\\N=\·MA\C(\','',0,'?'),(_binary 'J?\\<B<kI','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/AbstractLogAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\r(Z2\jvۿ',_binary 'Vu\t\V\_\T|#=Ya\o\_\\01&','',0,'?'),(_binary '\a\GQ\7E\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ArrayLogAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\\\؏Ͷjh/\4',_binary '*& ;~\"0\Fܩ\jݬ\ZC\Mc ','',0,'?'),(_binary 'k\vcу}1','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ClosureLogAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\yF_\0W\\7ψ',_binary '\\0B1z4\;V\`V9\\\&x','',0,'?'),(_binary 'GNП>e-1vk.de','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/LogAdapterInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\I\z\.F\V:%',_binary '\\!G\儱\0:JAQnZe\gop\|G','',0,'?'),(_binary 'OEA:)(N.ɹ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MessageFormatter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\TM*c4\E-\'a',_binary '^VĿLPp1Ye\\\#C)','',0,'?'),(_binary '\\Ml\N\# x','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MonologLogAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\IpF\߷o',_binary '4.I0\\\\\!0yx\r\](FW\JV','',0,'?'),(_binary '\P\B)\\^\.L*','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/PsrLogAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\\\Z+@D1',_binary '\C<\g:xU9\\\3Jۖ1\\\"D','',0,'?'),(_binary 'nQC\_$\\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf1LogAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\V_k\0yĴ',_binary '\\v\,r4Wp\4û*\L}x\FX/','',0,'?'),(_binary '\\\D\a\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf2LogAdapter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nŶ\YpAkb߉0',_binary '__7]>o7v$\-*qX\\\@k\"\\}F\','',0,'?'),(_binary '\Ri\ݨ	\Y&\j','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\ /y \SkP\5',_binary '\:\Z	\\\nO+a\0H\!$Av','',0,'?'),(_binary '^Jb\]\ryM','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~p\_\\ZGr 4]',_binary 'K6\#o;͖җ\	\\\Z\\]8NkJ܂','',0,'?'),(_binary '>\A1@\a?,','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParserInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F\\q͚|#lf',_binary '\Z﵆\\{\5[\\:\!\\˪\','',0,'?'),(_binary 'n\\0_ڃ\\\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/AbstractMessageParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ڲ9c%4\k(A5\',_binary '˫\\])L\\p\ղxQ\x%)','',0,'?'),(_binary '@tQ.}խla+','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\\O/ݷ\\)',_binary '\}U\bf|\UU٦\\\)\fG[9\','',0,'?'),(_binary 'j\!iOگ\\\A^','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParserInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?S\o\0\Z\q\\9',_binary '\QYzoy^r\\YT8\Ɠ،','',0,'?'),(_binary '\x\	\Ptw\r','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/PeclHttpMessageParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\l|1aSÉ8',_binary 'bO=\J3E\Ƃ\s~}e2`kG@','',0,'?'),(_binary '\\NSw\'Ve\y\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/ParserRegistry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8WYl\\@\n\',_binary '^SW\u\\;QO\!ЌsP\\Y͊[','',0,'?'),(_binary '\\Ӡ\\QVժ\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/PeclUriTemplate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\O \qY\\Ys\i',_binary 'cy۫\8 O_\O>Y\\§s{%','',0,'?'),(_binary 'AF\\؅+6U','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ś!^۴+\EB',_binary 'a=\\X\n<9&\[\L\\\\P\\','',0,'?'),(_binary '>\}\^\ۛj\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplateInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ⁀*ν\jDX',_binary '6	^Q\\\s!\w$N\9\\0$','',0,'?'),(_binary 'ۉv\D\\{','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ef\rh2+\Z1\\Ԍ(',_binary 'Bbg\F\J9\?It\aAkTl\\_','',0,'?'),(_binary '*\قI\8\AR\\\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParserInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ˌ:Z\\\\\\\-',_binary 'balrz\iQT	\SZѓfJk','',0,'?'),(_binary '\{+\BSY\\0K(','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\b2A\'%\k',_binary '\\\Sŵ\@\Oڪs1\','',0,'?'),(_binary '^\'6\ْ{Dw\Bz','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\k\t',_binary 'T\\\MFjE \S(S\','',0,'?'),(_binary 'L\ǰ@\v\\~\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ۭgZ]̓i7NW',_binary '\\'ȏ\ɘ\\R\CBٖo`et5BD','',0,'?'),(_binary ':\v\{V~,','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractBackoffStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&=_\r\\\\2\\',_binary 'y\\K;.T\rrs!\[,.\	\o,\\','',0,'?'),(_binary '*C\.\\\zx\\1','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractErrorCodeBackoffStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sÿ1\.k\\',_binary 'YZL\0 --a8e\":\\\c0\','',0,'?'),(_binary 'a\B\r9d1\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffLogger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\څR\\`uDLHP',_binary 'XQt<\bm\y9#08e3+hn\\Z','',0,'?'),(_binary 'b]$\vn\rE','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffPlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\R͔%',_binary ':rBm.eFF\ncR/\":v5_\#LV','',0,'?'),(_binary '\b\\~\no4','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffStrategyInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5Խ18/\|o/',_binary 'cy\z\\]\\|a\"樘e\','',0,'?'),(_binary '\\݊;9vC@sԭ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CallbackBackoffStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n/\h\>\\\',_binary '6WD2Ҷ0zd\V:SR\0\\\h>\','',0,'?'),(_binary '\\h~vgdvS','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ConstantBackoffStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8H].̇n\"В\\9',_binary '|ƴϋ2r\gmR\\\l\"\`)L','',0,'?'),(_binary 'p`v\D\\X}','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CurlBackoffStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\0ݽD\hĻ%',_binary '\\Zϗj\Ą!\\\3\r	\\\4>','',0,'?'),(_binary '03VAt\x]','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ExponentialBackoffStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bt,p\7bT',_binary ';4\\GI\7\\C\\-R}\29','',0,'?'),(_binary '$\\\'\XR\ѥʶ۠','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/HttpBackoffStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DC\iun550g',_binary 'd.ҹ\4?\-͸e8\\Q\ጦ\\"','',0,'?'),(_binary 'dփ\4\ױ\M/','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/LinearBackoffStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z3\\]^\0\sm',_binary '	j_\\n\\V;t\\p\8\n\','',0,'?'),(_binary 'Ք{۪55ͥ\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ReasonPhraseBackoffStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EJs\@qNB>0',_binary '=\F|I*5vh\O\\\vA\\hn','',0,'?'),(_binary '#\.\ɷ\\Lc','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/TruncatedBackoffStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Qf{\B\9A',_binary 'PUn\[%=\\_\\\#\u_\','',0,'?'),(_binary '\=z\A\\\4\\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '${\A\" _K\\',_binary '\\\w \j)~q	\\\'q\@\%M\\','',0,'?'),(_binary 'š_1]9\9)\}','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a^q\-5\EZC\\RA',_binary '\=s-oS@\\TA_\ʏe<E{B\n\','',0,'?'),(_binary '\AqR\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';0K=2\g@͍',_binary '\\\R\\#\o; \*+zs{J\V-\F','',0,'?'),(_binary '%1<qWf	&١','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheStorageInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\F<)\ҿ՜l',_binary '뿦\'PT~;MC+@ge\t\','',0,'?'),(_binary 'L\\*̕$\\G\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CallbackCanCacheStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&/{h4\x\\2',_binary 'M\Ncc&?\)v+<(A\'\0\4\z\3\v','',0,'?'),(_binary 'SdRI*⌈G\9O\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sY\(\\Xw\\K7',_binary '\fy\!\O\y\lF5\v\ Dw\i/\\\','',0,'?'),(_binary 'QGg\X\\kq\;j','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheKeyProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_e㙩ͮ+\\',_binary 'i|\r5+j/*s\\\Zv\D','',0,'?'),(_binary '`\\\C*\r','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheStorage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p~\\\\\'\acl',_binary 'V\\P%oa<DH\+\ƶ','',0,'?'),(_binary '\n\Όbm\0!1\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCanCacheStrategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rܜG#i\=ö/<',_binary '\<t@/\|£`ʻ+I\"2\\ɞ','',0,'?'),(_binary 'GQ\Κͣ`A\'','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultRevalidation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\⩩m\PyS\\\',_binary '%b<\24!\cIgc\(\;cD9\\','',0,'?'),(_binary 'Ρf\\WyL,YU','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DenyRevalidation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\w5y؝\\w]bg',_binary '55\\dNae^G\','',0,'?'),(_binary '\>q^8č/\Q','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/RevalidationInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\E\\TQFu\\\',_binary 'TT\'h.k{&F\'v\0\\\/`\0p\cif\53\','',0,'?'),(_binary '^pI|\0\_yfѹ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/SkipRevalidation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\M9a\\'\\\',_binary 'b<\\\w\\:$t/׼\\\@\n_','',0,'?'),(_binary '\\Ze_\m','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l*3E>\\',_binary '\er\\8ѓ[\hx<1e\\r5\v+K+w','',0,'?'),(_binary '%,R_\\ۀF','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Cookie.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2aC?\\\rfqn',_binary '\\iá\ꧭx\\\'AW\yVpR5','',0,'?'),(_binary 's\\<B){Kg\O','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/ArrayCookieJar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\;\5JDc\',_binary '<\\\\\"R{\1}6y6o\','',0,'?'),(_binary '.R\F4	\jyn','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/CookieJarInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'Xw\\<hJLڏ',_binary '\Lr\0\\QTTdm\orƃ\4Qj','',0,'?'),(_binary '4x\I:uoQ.\'','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/FileCookieJar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\\\>!LG\\',_binary '\\_\\'\D6\ ЯPY{\01M\G Ha\0[','',0,'?'),(_binary '\D=xX6\ت\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookiePlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[t.ޱƳ\u\u8{',_binary 'ro\_Fw\\\\Z$w?@q]Qb\f\2o\','',0,'?'),(_binary '\^\\輹L&L:\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\jzm#Ir\ny\',_binary 'da\\\ng-G\\\\C7~F\ܳ+2gh\','',0,'?'),(_binary '\yBY\W\\ZV=5','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MgPyR%:P\\ra',_binary '\\*&=\\Q!^6\\Nזm\\*W\9','',0,'?'),(_binary '4\3ko3q1W','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/CurlAuthPlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5j\>?~\[-\{',_binary 'w\N\\\uǃ\ro\;ADfa\\','',0,'?'),(_binary '@uX\\n\\\"\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\(]/I3\\\"',_binary 'x\ϯem\D|A+?\\f7r[\\\ؾ.','',0,'?'),(_binary 'W\\bLU^,\=@','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponseExceptionInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\&3f=g-\n',_binary 'Q\NF\0;\7\\xQ\!\|\h\\?V','',0,'?'),(_binary 'd\2\[\*^Mt\lc','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponsePlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\z{\8;j\\Za\',_binary '\\\F#\\\am\\rX|tARW\','',0,'?'),(_binary '\\%O6O8','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\9CZg',_binary 'YRWe\u\\\\\\\\p\{³\R\>\','',0,'?'),(_binary '\;\\F0ߍ\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$1yRm\\\q',_binary '\jV\=}59ʒ\[JF7\ګ\?\','',0,'?'),(_binary '@\Hd3\&ʩ\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/HistoryPlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eH\s\r\\O\Rif',_binary 'i\\\մLĢȬ7q\Z\\\p\\r]V\^','',0,'?'),(_binary '\*9\rSb;;','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7!\,3#\$2`',_binary '\)l<]\\s\\\4ʊ\\G','',0,'?'),(_binary '*YF	N7\F`7	','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/LogPlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{\(A,d\1B',_binary '#\\>ig\[\r1\?U0\\0','',0,'?'),(_binary '9\\\=ti\\v','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\6I0$6\\m\',_binary '\u6a{\A\0#bTC\Am4\\de','',0,'?'),(_binary '\\\\ʨv.\p','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/CommandContentMd5Plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\dIJ>\\\\',_binary 'c&\??r\pipW\RpE\0è','',0,'?'),(_binary ',L+AO8a=\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/Md5ValidatorPlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!+vmٷ\޲|\\',_binary '[\\Qiv[*\\\G\_\)C}','',0,'?'),(_binary 'ʯ\①\1W','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\`\\nh\Y\r`',_binary '~el\8\ڭ\-ֆ\j@BOz([','',0,'?'),(_binary '\/?\rh\g;E&T','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/MockPlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~S5>,oV.ϡle\',_binary '.ѩ\"\rF\;\\VڞD\','',0,'?'),(_binary '\RlVRѪ@\̧','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hٞ9\\l',_binary '{\:\\@q?\8U_wx\y\\\','',0,'?'),(_binary 'Ii\軼\\\Za','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/OauthPlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_mAB\rM%FQ\',_binary 'z!.>\\1YH\h\d@\Z','',0,'?'),(_binary '	v\5\\ߙ\t','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0o֬ļq*',_binary '\\\P6\L*\\n_\.\7.\ۤ\\0','',0,'?'),(_binary 'I$)ӄ.\i\\rߖ\0A','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r:{yiQ(b*\\\',_binary '\\\n\46\ͳ\BwcI6A#\','',0,'?'),(_binary '5\qn`\s~n˝','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/AbstractConfigLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݢyi1\+Ɛ\^',_binary '\%\n\|_,JJiX/1\\	\2o@\','',0,'?'),(_binary '\\D\\\l)\4-0','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'\\/	v\\',_binary '5>@)n*\]uٵb\9v/','',0,'?'),(_binary 'W)YG0Aւ?J\Z','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e U\n\\~\\ɹ',_binary '\wd\'\{\\.\w;Ξ\Z@vH`E7\\','',0,'?'),(_binary '$l\ty\\u;R3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sd\u\0Nkga',_binary 'QD?\\'>.זBBǶ\,\Uk','',0,'?'),(_binary 'wD\s.}P4H\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/CachingConfigLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',iS\\'d',_binary 'VKw0n\~1[Z]\00Ot\','',0,'?'),(_binary '\'\"(\̟BҬZ\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\~gx\#}\u\',_binary 'l*\"J)m1\nΈ;\$OX1','',0,'?'),(_binary 'z\ԤХE\'64','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ClientInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ib\ZKhdL\\\',_binary '$CĄ05H~1;p\1\%Zd>toá','',0,'?'),(_binary '{(\\\\\\zM','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/AbstractCommand.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\ުz)~c',_binary '^\U\w1\\xN\ۭE!X\Nq^d\|G\Jq','',0,'?'),(_binary '\LT\n3\T\+]\Op&','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ClosureCommand.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8v0~ۜ߭R$',_binary '\1\Uxfj\oI\}\','',0,'?'),(_binary '[2\:\\S?/\\j','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CommandInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OA\'9\'+;姗ax',_binary '!C,V-\g$\Fx\Z\\ܷ뗆l\\','',0,'?'),(_binary '&	Jko\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CreateResponseClassEvent.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\n.\\nPh=',_binary 's; 2\i/[\?\\ڪ;ﻰ\\ő\`\','',0,'?'),(_binary '\r~/t1jIe\\\*\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p)]z\\\j',_binary '~\9\\\\%G\W\B\','',0,'?'),(_binary '\\,p4\\\T','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultResponseParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OjjbwX3',_binary '\@\"\\UsX\W5&qV\HOr','',0,'?'),(_binary 'a\\\Gj>\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/AliasFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\UQGjD5_;',_binary '\c/F;gG\}*RF\SQɡ\\\\\\V','',0,'?'),(_binary '\*\ZJ\\ZX7n','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/CompositeFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\+PjJ?\!S\',_binary '\ӣI0\~\Zu\\\n~\|h\(\Ry\\"','',0,'?'),(_binary '\}\Dx\"\>. qq','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ConcreteClassFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\nz!\w><T',_binary '\ȸGnq\6S\{\\nY\kO!޿C(t','',0,'?'),(_binary '*K)]\pȡ\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/FactoryInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`\\r\\?}\\',_binary '\\\\5-tP\"x\X\\0w\"2\q\','',0,'?'),(_binary '$)J\\r`?3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/MapFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DE\W\'\\\&\',_binary '\\"\'\/M-T\~\\Jo\D\u','',0,'?'),(_binary '7T\h\Sm{\r]','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ServiceDescriptionFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hPmpC3\V',_binary '֎\Mg錷\\3ccɂdw!\ͧ','',0,'?'),(_binary '\9\\\\w\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/AbstractRequestVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E!fD\\]r\KԚ',_binary '\\0\pX\7A\Z\lǚy2\\r\\\fY\+','',0,'?'),(_binary '\ߪnn\p|','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/BodyVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\m\YQy',_binary '2ǲ\0}?\C\\\"͋\§\r9C','',0,'?'),(_binary '%\e\ݍ\w|','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/HeaderVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"lѼ)&L{6\g\G',_binary '\\\;\\f\\6)\T\"\\\','',0,'?'),(_binary '/E\\?\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\t>e=\\8',_binary 'Ƥe\IMܾ_5L~R\㹆Meߝ`\Ѩ','',0,'?'),(_binary '\+}>c\,-\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	:\\\gJ\ď\',_binary '\@k*\_r\d:\\g$T|&\;','',0,'?'),(_binary '\vڝ\\vJ\3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\k7ۻ\+\',_binary '\\h˨d0\*U|\Z\7!sJˁ̋.','',0,'?'),(_binary '\.\/CA\\\\0\v','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jJI`\r\L\\w',_binary 'I=Q \(\9ιop\/\HY','',0,'?'),(_binary '>9\.p;q\l\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/RequestVisitorInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']D.\,X\e\',_binary '\nx\itS\\\韻C>\\JZ','',0,'?'),(_binary ' \qqUzA~\"','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\J@M/e_L',_binary '[w-,\=LĴ\\0)\ا{Ζ:\\K','',0,'?'),(_binary 'Mtm@0IU*T','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/XmlVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UUx3Je\\)&',_binary 'xꟃEH\UiO\X32\\','',0,'?'),(_binary '\0X\nS#\5\M\J','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\\\\ȅ{G߭',_binary 'q.9ꃊ)QK!W\tt[\ne\','',0,'?'),(_binary 'vq5B@Pf]6Hha','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/BodyVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1ͩ#3',_binary '\\ֽ\=lB壥\\0O<d\n\\','',0,'?'),(_binary '?U\\|R΢','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C2O?\LJ.\"',_binary 'VBں]!\$[m3H;\?Iglї݃)&a','',0,'?'),(_binary 'k-\ow&<\\}}','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/JsonVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƫY\\Ӥ7\iIчU',_binary '\\Z}WT\0\+A \ff','',0,'?'),(_binary '\\\0','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nA\\jJm8W^IM',_binary 'E|6EJ\5\\X\K}\"\F\\\\\>3\\<\f','',0,'?'),(_binary 'D\"enC[`\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ResponseVisitorInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#)^sP\$\',_binary 'ૠHK51F\Wt=Ė\\E\_Lr~h','',0,'?'),(_binary '$};/ꃲ{1','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>{O\<܅\\b\1\',_binary 'o8\\%d=D-oj\\SYJK$7\\','',0,'?'),(_binary 'dd!\n\'0\+','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/XmlVisitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/\"W.r`xD',_binary '|G7W߉\\\r	)N\JQ`J}\g\"Q','',0,'?'),(_binary 'jx\\ҁ\l\\G','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/VisitorFlyweight.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '72\c\,Y\\\',_binary 'pxeP̋_\X\\$8\MJZx|\\\\\','',0,'?'),(_binary 'g\n\VT+\5','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationCommand.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\SO6-7#\h\\r',_binary 's\\\\Nt\\\\xwp{','',0,'?'),(_binary '#;bM[sF,\J\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationResponseParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\es\!\\\Z',_binary '	\\c\u\Z[\Y\0^\uO() \0&T\\L3\','',0,'?'),(_binary '7Ҏ)5?_\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/RequestSerializerInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'$Cd\"}\\|k@',_binary 'XA54Ե7\\,mҕJ\`\ݫ\Z','',0,'?'),(_binary 'g\\n\Z@\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseClassInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pyud#΁S\$5\',_binary 'R\mե8/fx\:Ӑ\to5~\ą[\V\','',0,'?'),(_binary '_\\3\t c\T!X','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseParserInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\N\wy[\\8',_binary '\YT rl\QT\"@u?\\3x\	?','',0,'?'),(_binary 'i뽼\i?=','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ConfigLoaderInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\	qL+Sm',_binary 'h\0wg\A[Y\z?\\y!\ɳ~s','',0,'?'),(_binary '\\\H$`\rDG\|BY\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Operation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\EV\I\%wF\',_binary 'BTX\T\h96\nr\m\*>6JM_Lr','',0,'?'),(_binary '\r\nٽl\\'w\\R7[','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/OperationInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yc\٬D[nDK',_binary '+/\r-/-tg!Qh\q$','',0,'?'),(_binary '\ԗBLY\Єd','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Parameter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\\m\\\u\ZU@',_binary 'hG?ei낲ݿ٘I\/\d3ة','',0,'?'),(_binary '/[H3}\[F\(','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaFormatter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S5»\9\\',_binary 'Z@\[\	8ƍ>;\'+N\','',0,'?'),(_binary '\\=܀\AjA\c\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaValidator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W9P\\ڠ&B\\',_binary 'TB>4څJz\'PvUfn\','',0,'?'),(_binary '|j\s\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescription.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\<\\B[224;͎=',_binary 'br\cs\\nvU[/8\4E\l!֋\\','',0,'?'),(_binary '\*\ɬ~|$\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvRGUy\r	f\\\',_binary '$0(\\p,_;%g=r*p\%\p','',0,'?'),(_binary '\%hi\r\0I\\V','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"\1:o\8\\\c',_binary 'V\\9\{\3HO\\\$w_wߝ\'\:','',0,'?'),(_binary '\KV	llhku\kI','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ValidatorInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\pjmɑ>gGT',_binary '\\\\\\\\{\G!\\j\\\Zox','',0,'?'),(_binary '\YB\\3\$\\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\X\:4tqnh\m',_binary '\G{\]apGRj|)TA\d\ZƧV\Ǯ[t','',0,'?'),(_binary 'Z(aK\1\'Ẏ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandTransferException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\W.\\h.C^d\',_binary 'dR5e(`cfyT\r\D\\\\ٓ','',0,'?'),(_binary 'k$`1.Jr\\\\.u','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/DescriptionBuilderException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\^{\oq>',_binary 'M-\β\X\{Adoz\m(\\g>','',0,'?'),(_binary ']KU%9-\7)','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/InconsistentClientTransferException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\'Sh]8\B\\?=\',_binary 'Jy\)\N\0ǖܠAħNi*\"\ls	','',0,'?'),(_binary ']H߹v;	TLc\9','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ResponseClassException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$i\M\rIa&#',_binary '\ I_\ځY8\;ǋ\y\\\?\\','',0,'?'),(_binary 's(#</4\\0\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceBuilderException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',(\\^\\N4\',_binary 'ܤ\R#liici\:3\QG&h_Ƨ','',0,'?'),(_binary 'eZ|˸	\v*\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',&\e\5\jƛR ',_binary '\ɶ\+\(\,[O\0,_\:hJb','',0,'?'),(_binary 'i3,\"u\\ĉZ4\"E\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ValidationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\kB\G\\bw>!\+',_binary 'z \Fߓ\o\eU&\uw\3\\Zt\c&','',0,'?'),(_binary '\!QK\bY.&\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/AbstractResourceIteratorFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\o\\\\w&kc',_binary '\g\r\\F\n.o\UPd\\ǱdgW\','',0,'?'),(_binary 'g?\?\a\\-','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/CompositeResourceIteratorFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rp\\=\þk\\n',_binary ' +Y|v\s\sx\e\\ zK\fI&','',0,'?'),(_binary '\00\\ɝ4\ɥ^u','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/MapResourceIteratorFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I&殀!!\T.\"',_binary '\x\\BfgQU/\erU\Uk\o8','',0,'?'),(_binary 'Clpt.\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/Model.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\sH\Y\\Ө*',_binary '\Z\1%Eb\}鳢t/D\L5','',0,'?'),(_binary '\Zb\@k.i.p','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Bb\=\x\\\ZS\\',_binary '\niV5Ki}\EAt7̉\rt)f|\<P','',0,'?'),(_binary '\"soƯa\a晐','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorApplyBatched.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$H7\RE\~',_binary '`\\8j~\\\\\Z\T\R}\Du\\','',0,'?'),(_binary '5^Uy#x\rIHt\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorClassFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lN6Y)K\\/R',_binary 'Gvd\"\-ϰ>ɖht\#\E$[/L','',0,'?'),(_binary 'z[R\5\v\3\x','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorFactoryInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ghG\i\0*T\"\n}',_binary 'GBh\\	䋚czs\\Z\\,','',0,'?'),(_binary 'ð\J:KqS7Iv','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ge\_\d\٬\n',_binary 'ZGgE\\"\\\?3\L/','',0,'?'),(_binary 'C\\\OU0.\\&\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z=\L9|CR_',_binary 's\ި5\\9\\\9\ZI\Ƹ>9','',0,'?'),(_binary 'Ƽ®\p}tQ$N\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/PhpStreamRequestFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WVѐFQ#ԂB',_binary '0fdgI\{{]3t\\;Rs\d','',0,'?'),(_binary 'T(T\ved\$f','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/Stream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\0!\\',_binary 'j\	f\'\\gH\"E\x\2\b~\F\\\e4','',0,'?'),(_binary '\٪\#|1\\\2Um\\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2,AN\S[',_binary '%g\\t\隆lpXIѥI@C̲\r','',0,'?'),(_binary '[gPY\ϖD\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamRequestFactoryInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\-HX\H/0D',_binary 'OJ褼TkQ\r.LzY%0D\\U2','',0,'?'),(_binary 'B\2\U\/HDS','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s\";K9\\,>s',_binary '\V}\nK\4T\bߡ.S\n͇\','',0,'?'),(_binary 'ㅅ\	C~KI\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\<\8\B{\',_binary ']c\,g\!W\j\Lϫ\\\<Tv\','',0,'?'),(_binary 'zJm\mjN\(Ű','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/Dockerfile',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\í\r\'1\',_binary 'xzv[\.4Aٞ2h \1\<','',0,'?'),(_binary 'N\\\,\\\Vز','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\x\\\Y\O\\z',_binary 'xx\@pZxS\'滹C\V[\\\Y0','',0,'?'),(_binary '\~1|v\_\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\AD\Y_\',_binary '.\0Y8 n)\;|\X\\W\\ ','',0,'?'),(_binary '2m\\ͿF','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/UPGRADING.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\{\p*&$g*c',_binary 'L\\(\}N)U\\2\\W\nZz\!~\\','',0,'?'),(_binary ')\ZbOU<\~','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\u\(\;',_binary 'b\y$\r`(;udJ~%\VP','',0,'?'),(_binary 'iC\PVY\Ok','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':	ZP\Z?(?\',_binary '$\\y>$t\\2\/\"LPL\FSD\','',0,'?'),(_binary 'օY&\^\\\\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/ClientInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƻsk\\;8z\U9',_binary 'V\ژyL\"\/r%\\"})\`\\\','',0,'?'),(_binary '?~\>ZsZ@\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uTT#!av5-<',_binary '\\01\\޶b	!ﵯ)y+4?\q','',0,'?'),(_binary 'w$\d/`ٳN%R','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u3\\_{:\',_binary '\|\/y륵$\"ag,k\\\\tr','',0,'?'),(_binary '\]V\znOF','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<>\$F',_binary '\\I`jYIY?\\M_(bB(\ny','',0,'?'),(_binary 'Y\熓uz\s=','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\eK._%I`H\',_binary 'Un\\$[:\QDY\#{\\\mQ','',0,'?'),(_binary ':-/\^\\\1\g\\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';&r\pٗ5\\/\O\',_binary 'uI34\\f\2\UYqRxP箠\=','',0,'?'),(_binary '\L5~\\\l','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~2\CLFrTV\3',_binary '=5I\;:U\Rxz~\^','',0,'?'),(_binary 'E:\\6\h-?l\n\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/ClientException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ѹ\0){pWr ',_binary '\׃;Z)\\"X\X\⼴n\\','',0,'?'),(_binary '\qK;\;\)̧R','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/ConnectException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L:T©xA|\IV',_binary 'bՕ\Ѿ6\\Mw\\UYʲz\','',0,'?'),(_binary 'uI.\\\rYB`c/\"','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\\\',_binary '@\Yu^EF\ݨҚ,?,|xЈL','',0,'?'),(_binary 'xG\\\r\Zu\xg','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[H`\4u\'\c\Fs',_binary '}Ư\\ہO`{+IBLdJ=\\"	','',0,'?'),(_binary '\xZ\34#~ȅp','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\m`dÏܵMP',_binary 'J3R\Kȉl\1\ĹW?\\b\t','',0,'?'),(_binary 'a\.r.\\\\=','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/SeekException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2KcOa*Ў\nt',_binary '#>ǒ\\\V(\M\^#ER\n߫I\ڸ','',0,'?'),(_binary 'qr\\\B\\\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/ServerException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&&rXrC5Yb',_binary 'NE|\ndʶ=\Ƅ4\\t9&ˮp','',0,'?'),(_binary 'NM9f\\R-g!','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\N׫\\\',_binary 'V:\k9h&v\\\\Z\\\g','',0,'?'),(_binary '0\\.\\fu\\1K','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/TransferException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZGAJ:\\8\\)',_binary '\?/+B:T<\[km\\*\\s\m0','',0,'?'),(_binary 'V\\v2+\01\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lFч{\K\\\',_binary '&\\7~ϧ\)`QY\\\c\','',0,'?'),(_binary '&pk\'$@Ƨ\3','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ܤ\9yA\^O',_binary '^.OFR\l\Lv.\H\\H:}','',0,'?'),(_binary '\$Cۺ2k 7','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rzW\m8+L',_binary '<yb\\\Ŋ	ȭҒcX۟\\Z4','',0,'?'),(_binary 'vj8\=&\"\K\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\^1\\H&',_binary '\v\\ܠx#i6\\\26	M\\nF','',0,'?'),(_binary '?\?я*$M\7(','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\-\\<\\l\G5\\',_binary '\},Bip/]&W)\p\;\\*X','',0,'?'),(_binary 'v\"%VIk\}\I','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x|\X\kR{5P',_binary '\:\w\|\eV&4\Q5t\h\\4','',0,'?'),(_binary 'z\1\BL\o\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\l2pH3Hʘ',_binary '\Fc*G_p0gԾ\"pD\\\\5\','',0,'?'),(_binary '\\7bW\0<\_D\[','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'qh؄_٣',_binary '/KѳTF\r\=}\;Wm\4}y','',0,'?'),(_binary ']\\\\Z\/}\fİ','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/HandlerStack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<C\ʸ\ւ:}ϙg',_binary '=hG\/oWK[\'qNz=Jh\/\Z','',0,'?'),(_binary 'dsd\r%z\O\x,ο','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/MessageFormatter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\[!\R0t',_binary '\Wdh,\DY\ԍ\\7fB\Z','',0,'?'),(_binary '\еgj\]3Qwd\T\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Middleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~![>w\',_binary '\\"I\\")ɤ!P\"y\l\N\"\O}\8*6','',0,'?'),(_binary 'Im\6\\0\\\\cs','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Pool.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\nŨ\F4Js',_binary '\\\)4_4w!\7\(A#wPCRٺ','',0,'?'),(_binary '>&W~\n\WȟX)','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&\&\cW\\\\',_binary 'JT\\\z	zgN\'\F\Dnsڄ\','',0,'?'),(_binary '\r(euY\(|\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӆ;\I$\]\o',_binary '`\2\\{\`\2\EY#\]X`\\\+','',0,'?'),(_binary 'A f\]\΄\q','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/RequestOptions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"]\\\` \^7*;v\',_binary 'q	\!\\5\ֶ\l\;\g4\\$\','',0,'?'),(_binary 'B\\Ə[^\Z\C','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']5<`n.FWv}',_binary '/\\\N\'h\n\*=D\\?D+','',0,'?'),(_binary '0Y@\m\bQ','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/TransferStats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȸXc\i?\0@&',_binary '	\IuO$1$\<,\^\ZH\Az~','',0,'?'),(_binary '#zϊ%\É\\.\-','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/UriTemplate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'enKfPwI\',_binary '\1\F.g諂C\ \\5&>)M\rړ','',0,'?'),(_binary 'J@\Ak铊\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\t\w\\-j\\y\',_binary '4\.-sUO&\\ԑ2|z\kE\۫','',0,'?'),(_binary 'riH\\|!\SK','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gǰ\\SQ0',_binary 'k\\A@0rVȲ\Ή\]_\%{8\T','',0,'?'),(_binary 'ȄO\G\\f\','wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/functions_include.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_n\|\h8c\\PA[\',_binary ')~WCrκ\\?\\$,`]@\D1\pp','',0,'?'),(_binary '\}J\⩹lV\\y3','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' [_\\\?\\*',_binary '\)\\\tv@ll\\C\y\^\Ax','',0,'?'),(_binary 'n*c\nG衐','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\Ƴb\Z܋',_binary 'j8\en_l\nJ\\0pc\	IP\','',0,'?'),(_binary 'P\`2`\\','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/Makefile',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\n\Z\#\\]T:\',_binary 'GuR\\\Ү%\\\O\\\#\\\\','',0,'?'),(_binary '\\\|}ڸ\838g\n','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',db0:Xg',_binary ':,4\(H%\apz\od','',0,'?'),(_binary 'L\\0m$Һ\','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nhI\NO[\>W`',_binary 'Ro<¡MƦ @G\Z?[\,s\˰}%','',0,'?'),(_binary '8\ZJ\\r\$n{','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/AggregateException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v &Q\k3\',_binary 'R\R\	?\1\|}5f Yx\?7\HR+e','',0,'?'),(_binary '\#$\\\\Ħ\ZRt','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/CancellationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|3\\'\>G1',_binary 'k:\\URy\c\C\-ZF[`\\\\P','',0,'?'),(_binary '8J\\8\\\*\d','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/Coroutine.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\\*\׶J',_binary '<:2h))9ѧȲe','',0,'?'),(_binary '\Ի6G\\ͺ$\','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/Create.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@!\sQXN:e\',_binary '\a\\\$N \$\T\*\pX\|\','',0,'?'),(_binary '`\IrH\DlE\_','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/Each.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '![R5qZ;\r',_binary '2^:\ya\#L+ˢfW񜾳\@\$g\sy','',0,'?'),(_binary '\E߷i3x&\H$','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/EachPromise.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L]\ި0;Zm',_binary '\rg\׷\l\ʟE\nh\-\sa/','',0,'?'),(_binary '\*\%w7','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/FulfilledPromise.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S&\8\HY\\\',_binary '7t\\\;\t-0\\\\\{%\\Cf','',0,'?'),(_binary 'U~\BL\\ev\M','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/Is.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't/߯1rיt\',_binary '[~\\`	/!oHmm\G\E2tf`\t\','',0,'?'),(_binary 'Wx\\\X8nt','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/Promise.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SDl2\\\#M\'^ڞ\',_binary '\}JHo\R\"E8`o\9)KG','',0,'?'),(_binary 'zp\Qe+\BbL\','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/PromiseInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ɇ˪\;ݹ\?\',_binary 'Q\\I\L9і؅Lc;٢%̚\ZIC2','',0,'?'),(_binary '\9\\$e{XWYm\','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/PromisorInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\e\k8A@2',_binary '`R\h\\^nt\asF;\}Š','',0,'?'),(_binary '>\\L)yeq\','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/RejectedPromise.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\iI(\\',_binary 'M\\ɬD󰱌L\n]\7\\\t6F\','',0,'?'),(_binary '\I\\v\'\\Z\\3yG+','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/RejectionException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\: <o@Mx߆',_binary '\JPӞN1\+\i\R\M\B g','',0,'?'),(_binary 'w\4uZqt \;','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/TaskQueue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^|H\\\\\ZZ)',_binary 'y\\pc6\.WXMy\n\\C\?\\©c9\P','',0,'?'),(_binary '{\J<','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/TaskQueueInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ohĥ\ƞ}J\\Z',_binary '\on5q%\\\xN\\Z{\cy','',0,'?'),(_binary '\0_[ Rf(y\s','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/Utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\J؇&\z\\\$',_binary 'A`)d^rw}\s0\\Z4^\ic\','',0,'?'),(_binary 'owl\7\ c\Y3','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>:{Q+;7q!/',_binary 'ʗ\\\x4\"?\\=Ӆ\\O^inl','',0,'?'),(_binary '%utr	^\p','wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/functions_include.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\˝\\\3A![\',_binary '@5\!\"\q\\?n^\f\pd\x^n','',0,'?'),(_binary '\M\y\\W\3A','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PcDN=ÆT',_binary '\s\fQ\\R7dyT:3\"\\\Zt\\K','',0,'?'),(_binary '_W0DL\nO\\','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p\\\\\\$\3a ',_binary '(|\\F\\ޚ\oHS1\xY\'\'76ѧM','',0,'?'),(_binary '\gpTѩ\rߒ\\\r','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4yc$7t#g\#\7<\u',_binary 'DFS\.\~\M|u9ɡ\%F\\\l','',0,'?'),(_binary '\\\b\\\;,','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-U\'\\\0>n[Ӑ\',_binary '\\}\\"0\7z\@\w\uW̻\\4 &(','',0,'?'),(_binary 'dw\\\}Y\\E','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/AppendStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\2$\Q\fs)',_binary '\\,\4\cx\\߳%\e\w\3b\\\Z@Mn','',0,'?'),(_binary 'Α\"\NKY','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/BufferStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yy\'n~xF\',_binary '\D\$OyR<6<[\;\˛\,\','',0,'?'),(_binary 'P?\^\)nBa`b','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/CachingStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S5wp$Yz\\\\މ',_binary '\|/;R\'	\E~?\K\\ݮSH1\\g','',0,'?'),(_binary 'eS\e6\Y9\L','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/DroppingStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\B:9r\2Q`',_binary '\r\s\rIvܓK\\ptOvwB9+\IGz','',0,'?'),(_binary '\\\ؾH3e','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/FnStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<\r\\\:l\\(',_binary '\FrmD\\\f\hܠY>|3\'FN\"DT&&3','',0,'?'),(_binary '\\z\{P\\%eܮ\\"','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\\@\dyoL\q!',_binary 'An\Pi7G+aM\\^$$:o','',0,'?'),(_binary '\jEf\{\','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/InflateStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' w.@]\{#:i~\$',_binary '\\ <}.;\\wVFޏ Ʀ\?	?B','',0,'?'),(_binary 'U\JV\+\m\','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/LazyOpenStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lc\(rR',_binary 'CY\'UC<=\˺xc%TvL3]\nnF','',0,'?'),(_binary '6	\\\fX=bp\\','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/LimitStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\\\P_\\d\Rn',_binary 'LTC`no_x\l\4\\S+\B< ','',0,'?'),(_binary 'VzW>њD\\dOzIh0','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Message.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fMKl\\\o\Z',_binary 's\\\԰(BT\`\ߗUi\\4\\','',0,'?'),(_binary '4\n(MՃI#h\\\','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/MessageTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cA\Ba\եLV$',_binary 'XKnѶv\\e\s\g\Vcr\"!','',0,'?'),(_binary 'n@\\Q\S:3t','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/MimeType.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\SiK!*',_binary '3\r+\#`E*h4<\=f+_2L\*Z\(j','',0,'?'),(_binary '͋\;/\\ah\\','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/MultipartStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<a\\\\l\r',_binary '\H\\\\  \\jr\uS\rƚM\[','',0,'?'),(_binary 'R&\	-Sv(','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/NoSeekStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\AE\8~\0\\',_binary '\\\\\\\\\`>Wh@N]\6\Ɋ','',0,'?'),(_binary '5\H2n\-%\9','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/PumpStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\\)\b\0n',_binary '\ v\Z>\\\Y\n\n\\!\\&8','',0,'?'),(_binary 'om\_P\5;a','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\\\\\Ŧ',_binary '\;tY\\\"Ӫ\\(o\\"e;\\\=?+','',0,'?'),(_binary '\#G\hgx\T','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u9\?DV',_binary '\"Կ\Y\\rי}\W%	Oj\Q	','',0,'?'),(_binary '\\\/Cg\$_l\\\Y','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qV\0\r\b\r\',_binary 'ܖU4J!)ǭ7M4\ZB$\','',0,'?'),(_binary 'AЀǐGuwDJč\4','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Rfc7230.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\cݷi\I=\\w',_binary 'O+\\\-\\}YBQZ	\Q<','',0,'?'),(_binary '|(^ܬvR5,vg','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/ServerRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4v{}\rg\\U',_binary '~e\)މ\?F\Ǳgn\A	9','',0,'?'),(_binary ']Q\\\\ڊ\w','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Stream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zNHVH7\\P',_binary '<ntȜ\Bzr\%k\\?kAF\hB@x','',0,'?'),(_binary '=TS\IK~','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I2y<\YyN[\E\	\',_binary 'H\W\m|gn\6\\\Z\\rٲ%\\I','',0,'?'),(_binary '(\\\\klGD\oo<\~K','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/StreamWrapper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i(Sq!\\VNda-',_binary '\Jv\Do%\<\\M`/Np','',0,'?'),(_binary '`B\Xs\XU','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/UploadedFile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Pf\'2`i+',_binary '<\&9P\0\a=e>\%\\\.\SWޙU\3','',0,'?'),(_binary '2ի\\\\mw͋','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Uri.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\a^U{\\+',_binary '.1V\np:\_kӤڐ\N){(h͠','',0,'?'),(_binary '\nM?؎E','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/UriNormalizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'alZF-EzK9I',_binary ' Źi/\\xMK4//;+c8}+kl','',0,'?'),(_binary ' #q\\.G\\(r~','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/UriResolver.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rdc)3\\}',_binary 'r\\0魮2\\\\+l\Ή\'N~','',0,'?'),(_binary '6[8{D\E\}<||+','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\\	\Qŗb',_binary '\HB;ܭCp\~h\B~	\r\9','',0,'?'),(_binary 'ؒ2A\q\o\$UE','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\tCZ\ΆN(C\0\',_binary '\n_fʬ^\=gɂ+\]|7-4','',0,'?'),(_binary '_)\]Tcī\V','wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/functions_include.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\tD$S\<\',_binary ' F樹O8`5\ƚqi}\\Wbݫ','',0,'?'),(_binary 'si\ˆ\"','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/CHANGELOG-1.0.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\c\;0(I\>K\r',_binary '\)E]\\N\e\e\8\\s\R)\\Z','',0,'?'),(_binary '\pn5\2\\Wc','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/CHANGELOG-1.1.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xԾ#9 #-\c;',_binary '\^\0yP	\8P\4uQ\064(/]2\Z\\.','',0,'?'),(_binary 'd\\s^iVb媏bW\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/CHANGELOG-1.2.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kܵ|\X/ւ\\A\\',_binary 'Sl\/nP\ܠ\\f\ح0Dz9\\z','',0,'?'),(_binary 'ecW \;3cv|\R','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/Gemfile',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wFQB\m\ref\',_binary '\c\ȹ\#\>\r0\\Rr\\GI','',0,'?'),(_binary ':IwG\ftF\)','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\Fxhh\6',_binary '0Ԡ\\\M\oefoer<)|\Zm\DP','',0,'?'),(_binary 'ʼ\\*M\2y\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\O\ƒ~\a',_binary '0uw\b\/*|<f\XL\\"\B\g\\\','',0,'?'),(_binary 'aP`A6qQ\ ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\6᭰c\0\#',_binary '`R\\\\?\\Ȍ\\\1\t\n\<','',0,'?'),(_binary 'hOMK-\n\n','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/package.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{P\2˹kX\A',_binary 'Pi5SR\y\ۓ7|G\nB','',0,'?'),(_binary 'F\\,\¢\'!T','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'egJ\MٝH\\\',_binary '%h?\\nӺ1\Eo\P\/f\/\Z\Y','',0,'?'),(_binary '\s\M\Z{\}','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B\\\g\\/m',_binary 'j](\\R\Z9\N_=\k$\','',0,'?'),(_binary 'F[\\RslݘMz','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollectionInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\>9\Ǧ:̭',_binary '\ʸT\޺%K\R\\Ǖ\i>=b','',0,'?'),(_binary '6p}\\s\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}/m}\硑',_binary '+8\Zk\`~\)v1٪\','',0,'?'),(_binary '\}\\\H;\\a\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetReference.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӯ-/\\\-',_binary 'jv6];P\Wf.)苲!-\*','',0,'?'),(_binary '\pfxFlc94\"|\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/BaseAsset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1Xw?\\\m\\$',_binary 'Г pĩ(c\3o\8%B5Ihs\L͐U','',0,'?'),(_binary '\ smPB\8','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/FileAsset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\\g$$\5k',_binary '\"e\o8oZ\\\"x\z%5p\a\\\r','',0,'?'),(_binary 'c]/\U`b','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/GlobAsset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I4RJC0NB\\\>',_binary 'U\\C81`\\d\n		\YVG\<\.\pu','',0,'?'),(_binary 'r\^\rA\.]5iy\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/HttpAsset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[G?\hm\0b_\',_binary '\r\\\]Z\hQ\6!\\'~.bꂨ\\d8I','',0,'?'),(_binary 'q\|\rn]\>B*y','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/AssetCollectionFilterIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7Ү\\<$\ٛ \',_binary '\%m.\[6A2\\^aa#(R=\r#\*','',0,'?'),(_binary 'tZ@WյE\\\~','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/AssetCollectionIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.\\d\Y)\\L',_binary 's\h\\7t\JE_\"0\\Z','',0,'?'),(_binary '\\Zc;\$Q\\\"̑=','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/StringAsset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\T\WMIMe',_binary '\?\-\ye\P/#\\\\\\\','',0,'?'),(_binary ' \\\\Q','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/AssetManager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q`\A[\n\\a\\0\',_binary 'B\\\[p?m\p\m~#FE,y\0ק\\','',0,'?'),(_binary 'cl\\h\J>8M\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/AssetWriter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\\Ib ^w\\F\',_binary 'z\\Eky\n\E;1\\]G\\mY|','',0,'?'),(_binary '	Į<\\~\G\~','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ApcCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\cs*\ ݦ,R',_binary '\neg\\j]CVs\ʀ\E5\fD\q','',0,'?'),(_binary 'F\䃴\`\n\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ArrayCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\2Cd\n\\\',_binary 'Ai\=\\\'\]&p\\#݉1{\]\\r','',0,'?'),(_binary 'e\<LzcU$\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/CacheInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Έ  Cr\Z\`',_binary '\\|\ML\2~ܥ@&b\\Һ','',0,'?'),(_binary '\w\\ι2\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ConfigCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h-\\Sa٬\\',_binary 'ڤrpu0哗Χ*/\\I\\nU(','',0,'?'),(_binary '}Y9Ø\\\\U<\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ExpiringCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/VDS@,2~^ԡ',_binary '\rE\n(16ȇ\\\\:;fg&Is','',0,'?'),(_binary 'K\lb\\1Y\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/FilesystemCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\\瞻!\'%8',_binary '\̿.o\]0!RI凁@ޙ4\Ll\','',0,'?'),(_binary '\\U%DX\6fu','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Exception/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c>\#lPE\\::',_binary '?d\r\!HY\\\\0@0u[','',0,'?'),(_binary 'tƇwWL\D','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Exception/FilterException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\&\{Q',_binary '/\x\\%Rl\:\H4%','',0,'?'),(_binary '$\w(_-sB','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticExtension.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w`̕~?P 3\Z',_binary 'qW:\[W\M5\JnDoRqdT\˛J','',0,'?'),(_binary '\\nz(\0\}','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterFunction.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\}XzA',_binary '$&j\zpF#\+\ec΢{tDY۲','',0,'?'),(_binary '	X=\'M=@\j','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterInvoker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|:\\a\}|x',_binary '\Aĵ\ \Vّ\wCP|\aQԹ\H','',0,'?'),(_binary '\|\\\-I\5','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterNode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=W\)}n+SҖs',_binary '.J3\0}\\"v\\:\ޭק&ǚ#?\i;','',0,'?'),(_binary '&}h5ije&{\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticNode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'чˀKa\\\cxT\y',_binary '-\d\zQ)\c8Z>\@ΤS?','',0,'?'),(_binary 'Y\^\2H%y9W','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticTokenParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QXJu*U\rf\]O*O',_binary '<f\}\\\{HOڥE>FM\','',0,'?'),(_binary '\\\\z\\Gd','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigFormulaLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|\\\7F03jU',_binary '\\B*Gt\b(MI5s	^F\\\\,A','',0,'?'),(_binary '8e^㰆\\\|Fe','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigResource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\\9/W9|v',_binary '\B\rda7ӷ8\`K;\l\9(\\\Xȸ','',0,'?'),(_binary '\x.\а]\.&Y\v\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/ValueContainer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\4Y@\Zm/܌v\%',_binary 'ӍB\ߤ-kMdH\0,$?,fM\<','',0,'?'),(_binary '{\@<Ǚi','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/AssetFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VR\.\\\\r',_binary ']KU\"4KX^\\n\.?e\\@\P2e','',0,'?'),(_binary 'SkT$i;oc\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/LazyAssetManager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʖ\	DY',_binary 'DdC\\:16\0\rw\ʍxks\-x\\','',0,'?'),(_binary '|8\nb\MmeNJ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/BasePhpFormulaLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5,^i\\\\M\E',_binary '	3s\\2aT3O\n\ԏh\&GB\\\d/','',0,'?'),(_binary '_\\\qf\5Ԍ4','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/CachedFormulaLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nYn}\\\7~ \0\\',_binary 't䣛\\&\`Zz\><|X\ЛzgP','',0,'?'),(_binary 'gjTd\(kHo\\\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/FormulaLoaderInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Qo@H#',_binary '\p\$)f2\m4\\QLR\k\\','',0,'?'),(_binary 'ܺq{dKBw_','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/FunctionCallsFormulaLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ԇ\\]\rN\\j',_binary 'q\\\k\\kxL.=\E\0U\\x\','',0,'?'),(_binary 'T4,\\\\{\\[\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/CoalescingDirectoryResource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\V\\_\',_binary '\\I\\\r\k\\]\,TT	.6\X','',0,'?'),(_binary '&d*ib\v!','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/DirectoryResource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9^\'J\',_binary 'N\j]\sCU\'+Ěw\2\[G\D\wk\;\','',0,'?'),(_binary '\w\\r؋\ui\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/FileResource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\p\v\\',_binary '3SJ*oiU˗-u	\!\\\\\','',0,'?'),(_binary '=\_^1G\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/IteratorResourceInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!Ȍ\%LB\{T\\',_binary '\\)2!\\l\n\\\ڡq!','',0,'?'),(_binary 'E\\c\3$ya\\Xz','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/ResourceInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rf\\qǏt٠',_binary 'V\\]\\]*@>|z}\'\\\"\'M','',0,'?'),(_binary 'w\q5X\"5H\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/CacheBustingWorker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F+\/*(',_binary '\ޏ\\;\|>\}\\\p$pʲ\\BZ\','',0,'?'),(_binary 'i\\\\e@\\R','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/EnsureFilterWorker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}z7#\sFx#',_binary '<_~\n\E^l\~!,wk7dZ\f+','',0,'?'),(_binary 'p\\\r\\l\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/WorkerInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cյ\\\_|\nrׅ',_binary 'r\\r:N\\E\Q\\a=e\\\!\:8F/','',0,'?'),(_binary 'Ά)\'5M&&\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/AutoprefixerFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\8\:\R\\')S',_binary '\l\J\cmDe\ZL\!(\n\S','',0,'?'),(_binary '\\\E\"\݄Q́','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseCssFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3z~iiҠ\Gg6|',_binary '	G\\T{;\n*KXBM3ooN3@H\','',0,'?'),(_binary 'n\I.r(\\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseNodeFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_CvLSNP',_binary '9;Z\0#\\ĵ\\\{7\\l\','',0,'?'),(_binary '(~\	\X\[\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseProcessFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&\:(]u#O\a\I&',_binary '\YQ<CdT\\\nζ\.Z`RC/','',0,'?'),(_binary '\\\(*(\rX\ռ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CallablesFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '# \.\\\\V\\k',_binary 'q\\\\aTb\rl\n\8\0k\\','',0,'?'),(_binary 'Z\S\}`V\Z~cR','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CleanCssFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\)*7r\\0',_binary 'Ø+\\\\\@)>\01yWbkX\'\z','',0,'?'),(_binary 'N\rE\\l\"+͇3','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CoffeeScriptFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%Q-j\\r\n\E\',_binary '_р\rQ{O[n\B=<o*6\	$\.5x','',0,'?'),(_binary 'N\<\\_\ȴTy*','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CompassFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\\\F\'\\',_binary '\:|zB\=9Rd^{j\dׄd<','',0,'?'),(_binary '\";\y\\=e\a','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssCacheBustingFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\)gp\x3\'\?',_binary 'nLة\\n\m\x&\\8Q1\n','',0,'?'),(_binary '\+e2x\q&\_}','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssEmbedFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\W\E\X$pE\',_binary 'ϫ\\\'W?	E\\\T\#\\\[I(','',0,'?'),(_binary '\3\\O\-r\\\R;','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssImportFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vĜL}8o8',_binary '8\;\T,D\\\2z*{\0C','',0,'?'),(_binary '\j@-\3U4Y','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssMinFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\}iYT\?\',_binary '\\/\\t\ϜT\ji7:U8Lv@\7JW\','',0,'?'),(_binary '`V̻lf','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssRewriteFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\U$޳iR',_binary 'J\Y\"뱅NÆ\;k M\@\Bʅ\}\','',0,'?'),(_binary 'M\zt\/i]\Z\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/DartFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\~\#]Ek\',_binary '\f~=\\\qTV/3OK\>X\\','',0,'?'),(_binary 'T9\&\v\V2I','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/DependencyExtractorInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƺ\\0?B\\u\c',_binary 'p/d\\\X+d;b\N/Z\\\','',0,'?'),(_binary 'ϘP$d\\G','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/EmberPrecompileFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\cU',_binary '\ye\riSr\Os\\X$\/\J\','',0,'?'),(_binary ']\Zkfs\\?\3$/','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterCollection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\aN~Q[7',_binary ')-Ҏ\LF\~\ <`p$\+r.f \g','',0,'?'),(_binary '\K9A\\W|87','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\~:1Ho\ o',_binary 'P\<qrMЉb(He=-zJ\њKM{6','',0,'?'),(_binary 'GJ \~M}JZO','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/BaseCompilerFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\8;\ç)ua',_binary 'E\1t\Ԩ;\V\Кm\"z\\\T\QR\i','',0,'?'),(_binary '\'łEg3#\\\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/CompilerApiFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D7r\0t֧HS\\K|m',_binary 'VHƴf\-X\ \\^o','',0,'?'),(_binary 'B<R\\'#%׸\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/CompilerJarFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\\%\8RaY͌',_binary 'dM\"B\]_\0z2k\N\\rZ2 s\\y\','',0,'?'),(_binary '\!(\\/1\/w\60','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GssFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rӜ\v\g0',_binary '&L+\\rm<BZk\0\\O{\z\%','',0,'?'),(_binary 'Fjoii9\2L\\)','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/HandlebarsFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\j\\\\r\n\\"F\',_binary 'uߩ\\nF\A\\\VW\\\nHMJ','',0,'?'),(_binary 'b\x%\r\\q','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/HashableInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Za\<ã_WSX',_binary '\,^Ev\+蟸8M\nn\0A','',0,'?'),(_binary '\\~\n񌵭\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSMinFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\#	fD\\\\+GZ',_binary 'ep\$cz\/R}h\"8n8\n$','',0,'?'),(_binary 'tfQ/KP\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSMinPlusFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's8~`\xS\T\3',_binary '9s\\ov\\no5_iX_\@\\','',0,'?'),(_binary '*Fn\M\\\\\"','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSqueezeFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\\	UМ\bݼ,',_binary 'a\LYak\G\cT]\'P|*d\\Zt','',0,'?'),(_binary 'IP+h\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JpegoptimFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\-\\"gSr`',_binary '\\\(ܧ2R\/K|L;S@I\','',0,'?'),(_binary '\\P\d^d]N\ ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JpegtranFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_7\\\\&@\\\n',_binary '\§ ]$\1\\TtZ\"efN\c\n\:]dd','',0,'?'),(_binary 'YG\\l\\<\K\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/LessFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\&\x)O\V@V\\0',_binary '\njh\?z\\\Q\({\\\(=','',0,'?'),(_binary '\z\O|b2+&S','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/LessphpFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\DyF\?K>\n0',_binary '\\6qW{zXb\\$͒z\\H\\@ ','',0,'?'),(_binary '#h*l\\=zQ8','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/MinifyCssCompressorFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\*GKn>\dܶ\',_binary '\r!Ftpv=\\2\','',0,'?'),(_binary '\\|h\\\R~','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/OptiPngFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\\\g\WΊE',_binary '\j%\nC\o	ڎf\\-d♍\)m\Qpx','',0,'?'),(_binary 'cq8/l\Cpm','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PackagerFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\'?\=_\0<\y',_binary 'z\\	:ԋ/p2(U\({sw&\	j~f1T4','',0,'?'),(_binary '\"[*\vO\Kx-6V','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PackerFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\z\z=f\AH',_binary '\,\\n\\͞\I6Y+\\d','',0,'?'),(_binary 'P&\\{\C','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PhpCssEmbedFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@-}\C3,7\',_binary '~>\K\@h~\\'\r7\\DN\\yLr','',0,'?'),(_binary '\V\\\\\n\$]','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PngoutFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<q\b(\C\',_binary ',\\r\\$\K\jݶ\\\O\vv	_#\n','',0,'?'),(_binary '\\/*%\,gcR','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/ReactJsxFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '85\\Yb\\{f[W\',_binary ':7\Cւa\@ش٥3X\&\{rbp','',0,'?'),(_binary '\x/x\+{!\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/RooleFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/0ۿf\'a\\n|\!',_binary '(\Z	\60\0H\mnODL-,v\d\o','',0,'?'),(_binary '\r#9\\p,ਧX','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/BaseSassFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '֫:\[m\?!P?p',_binary '\n#`bn\	H\\=,k\\\䩱K\\\\','',0,'?'),(_binary '~Ec\ \\\\j','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/SassFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f:\U\c\l\\n',_binary ':\rk<0Չd4\7=H4{\\r\G','',0,'?'),(_binary 'p\+\\\ZA\nO&','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/ScssFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&rԶ\\Y슞\E\2\N',_binary '}KMg\(5&\m\\Zm3xF%l@\V','',0,'?'),(_binary '\lO \+\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SassphpFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PŞj6X߈v',_binary 'L._s\\on&A6\wO8\"k','',0,'?'),(_binary '@\5\*\CēE','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/ScssphpFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\yt\n\dfN',_binary '\fJ\6<&b\iG\#\jG\re^\\','',0,'?'),(_binary 'bÙ\\6\,/=','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SeparatorFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\ɽ\F\[\±\',_binary '\^\M	m69\7J4cu\','',0,'?'),(_binary '	\P>(|\67d','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SprocketsFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' EIr0 첯\9\',_binary '\ٰNE4AÞ(\nB>\[\`X@\\','',0,'?'),(_binary 'm\\\nx4@=\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/StylusFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VR\"iR\:\|/',_binary '\ULc5>\\܍\mdݰY(\n\\\\6}\"','',0,'?'),(_binary '\r,\\S\wT^\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/TypeScriptFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~\\\>\L/*<',_binary 'K\\r\\J\\H\3yAQ&\\'\JU0','',0,'?'),(_binary 'SP\| \"\\"qu','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyCssFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+GB\\0e5\r',_binary ']\\-\V3\إ\3R*]j1','',0,'?'),(_binary 'b\\W\\yz:\'','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyJs2Filter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r1_&-\^',_binary '\;\\m\ 8l[o,g\~\ujy2','',0,'?'),(_binary 'W\n\3O\\"\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyJsFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fv\j=m\JFp\Zc',_binary 'rmW[ \u~.k4i\?\\TI','',0,'?'),(_binary '\V:S˭%0Q8','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/BaseCompressorFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6	;\cTYi\',_binary 'Q\n[jU\\x\\f\hݳaz\Zfǻ>','',0,'?'),(_binary 'HHƶ/qթ\P4\\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/CssCompressorFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\\AdH\',_binary 'TF\XEsy\yl\\"H\\Ij','',0,'?'),(_binary 'zE;|\\0','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/JsCompressorFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a\\\p\%^\"\',_binary '=\z=O\8\kB\\'8UPnOj:<','',0,'?'),(_binary 'T\w\n6{','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/FilterManager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FLr\(\؟K\G',_binary 'ƓN\\;Q\^\r\\O]W\Y\\\\','',0,'?'),(_binary 'D\\=b[\*WgM','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/CssUtils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ro,WNS\C\',_binary '\v\<b\A5h~G5)q\bn','',0,'?'),(_binary '\4\pĐ\r]\`N\\\"^','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/FilesystemUtils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '֖E15zHKKmgY',_binary 'g@n\\"\\[E:\7n\','',0,'?'),(_binary '\|8T~\D\n','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/LessUtils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J.\\()%t',_binary '\\N\V!\5#阥\7Z&\(lբ','',0,'?'),(_binary '\\Z,ڀ\\F','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/SassUtils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\n\\R1M\',_binary '٢\\\\\zGVy?2\\#DS*','',0,'?'),(_binary '\@\:\@=o`0+','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/TraversableString.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/.{#D=D\\hpH',_binary '\+<}ej\\r:	Wę&cp6°}w\}0\','',0,'?'),(_binary 'rߺVK[7\31=','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/VarUtils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\\.&o͔\i',_binary '\}b($\Cǻ4^0\jY\tq','',0,'?'),(_binary ')Y` Ьxvz','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/ValueSupplierInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`ߴ\'n\>	`',_binary '\\$\W1U\@g,\Nd@\\8','',0,'?'),(_binary '[[ۈn\_Z	9ps\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\gW-ZV\\0',_binary 'n\x!!J\eb2kA۸|\\1','',0,'?'),(_binary '<DJ@\\\"','wp-content/plugins/updraftplus/vendor/mikemccabe/json-patch-php/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\U\X6\M\'+',_binary '\r\X9D\s}g/Ҕ\:\ʭ	(','',0,'?'),(_binary '\\\0M\HR\-q','wp-content/plugins/updraftplus/vendor/mikemccabe/json-patch-php/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\bĖ>\0ޚ%\s',_binary '\Y3HZ`?\N\0\\\\Z\'\\.q\\ʏ','',0,'?'),(_binary '<Y2\0<\uPQ\','wp-content/plugins/updraftplus/vendor/mikemccabe/json-patch-php/local_tests.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\K@\\5\w',_binary '-oY\\\%f\r~Q\齙3a*\','',0,'?'),(_binary 'Y\gH0>V\"\','wp-content/plugins/updraftplus/vendor/mikemccabe/json-patch-php/run_tests.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\2ICF\\[jn',_binary '\\n\G\\,|6\\\r\ Rϲ\','',0,'?'),(_binary '9\\n\M\\\\Ĕ\\','wp-content/plugins/updraftplus/vendor/mikemccabe/json-patch-php/simplexml_tests.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?\\],\B*]X',_binary '!\\Zx\0\یxӜ2X\P\I\','',0,'?'),(_binary '\\z;)2pf%\,R','wp-content/plugins/updraftplus/vendor/mikemccabe/json-patch-php/src/JsonPatch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZA+ \'\r?M/',_binary '\\\\\}\O\7\+\\nPҷy~','',0,'?'),(_binary '\ub-KTQP&P\\','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\j\-x\\.',_binary '\\\?ԓ\|\P\@ۋn\Z\ҕ\|8','',0,'?'),(_binary '\Z\^\7B4\ke','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|1\\S9幇8\',_binary '[tCp\#P^~\\F\%t	\','',0,'?'),(_binary '\wZ}\\%\)k','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/README.rst',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nmN\\,D\',_binary '&\0{S(?^٬S2\U,\\W\\+^`\GW','',0,'?'),(_binary '\V\,f\Liz3:h','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/bin/jp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\\/WMp|UF\>',_binary '/\\Z1\Ǉe\Xhc\:+gM','',0,'?'),(_binary '\\\Cb{n\c','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/bin/perf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o}+=WTdq\[',_binary '^.wok\d=@xP\\ֆ<\\Lk','',0,'?'),(_binary 'Q@(HV5q9','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V$\e{ή\\5cq\',_binary 'nj\\\\6J\\0x\}C~|\\?','',0,'?'),(_binary '/Gp2\\\\QG\','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/AstRuntime.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' %P10h2\N',_binary '\l3\\n\6!YE.\ZF\\bl\a㠊|M\c','',0,'?'),(_binary '\m\G\\','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/CompilerRuntime.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B.\'',_binary '*bC<iH^\m?\\Zjs@.\=b5փ\d\e','',0,'?'),(_binary '0\\§,8d!:!\\','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/DebugRuntime.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\UrwQ',_binary 'Gg\mA\:\\Gb\e\OvM','',0,'?'),(_binary '\\t.`@	x\c}','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/Env.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\o\\\(\=A\v',_binary '\\\n7G\ruK\\\Z\/','',0,'?'),(_binary 'x\l\f\TK\Qgul','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/FnDispatcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\@\\\hS',_binary 'ԽN~\\Zďv:c\\_J$p\\0\','',0,'?'),(_binary '\!\rFwz粅=','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/JmesPath.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M4\"6ߖ\mx\',_binary 'B\,\$\F\gAPW\\e%','',0,'?'),(_binary 'L18`\D\\<[\','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/Lexer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0t\B\n\\n	',_binary 'od\\}^0\\0Rţhr;\','',0,'?'),(_binary 'k\X\\1','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_80\]EBO;\\',_binary '\+\\)\\cd	\;~@dp>\0Ę`\'@','',0,'?'),(_binary '\@8xg	Vv*\','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/SyntaxErrorException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V@6 \:$=q\k\',_binary '\\\8aF	\*4\E֛Ն\','',0,'?'),(_binary '\\\\%\\ w','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/TreeCompiler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r\LK.\',_binary 'ݯ\܊\hYjb\w6#e&\ǯJ\n?','',0,'?'),(_binary '\#vZ@XlLQ\V\','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/TreeInterpreter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\k\Sր}ǈR',_binary '\;tJot!ћs\ZqjX\\I','',0,'?'),(_binary '	6y(\\FcLg','wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/Utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\^T\~U\0=',_binary '=U\\\\6=\[\0ɒn`NCޤ\\\','',0,'?'),(_binary 'bA-\Sn톔\K#','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\H\\!#>b\W\',_binary '&\xw\αh\\)œ@5m\\.)9\R','',0,'?'),(_binary '6-70ʔ{4\','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g(\\#X\Z',_binary '\Xf5tϱ\"#\\*ts}^˛^\:4','',0,'?'),(_binary ':G\\\o\','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\\?\\n\	:{Q%',_binary '\ZIK/Iw¥OvyEBi\\$G&','',0,'?'),(_binary ' u\c\nb\P\\','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>ǈ\"C\ix',_binary '\\x眪!\}\\Z\W\d','',0,'?'),(_binary '\0\\m³\\BS','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/byte_safe_strings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sٹ\x38C\f5c',_binary 'L$\k\㈼\\O!F\h[\Śڟ','',0,'?'),(_binary '\F*۞xoL)\5V','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/cast_to_int.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y)zH/>',_binary '֜_\[2(y+9}QI\*\0A\Z\ʁfg\>\','',0,'?'),(_binary 's\H\+GZr2','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/error_polyfill.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',9\\\\G',_binary 'hͼ\\\ƾekY\\\Zf\m','',0,'?'),(_binary 'a1p\\\ޜV','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\X\0%=݈A!',_binary 'bZG~\u&\r坯1楃/+/i','',0,'?'),(_binary '؊0\nPv<Ґ','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-6\\"?$b[ŁD_',_binary 'X\%B{0\y2|\k\TU\gm\\\#Y','',0,'?'),(_binary '\7oI4\\\=w','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\\kIT\=ր/',_binary '\\|5/\i\\VV#V\\\A\\\\`','',0,'?'),(_binary 'm\\4\\\l;{','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xG?\Mxl|\',_binary 'B\S\ZBeLƓ3#ھ\\bj52=<P\3v\','',0,'?'),(_binary '\<\nD\,t\\8','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Z\#zK\',_binary '\k!PBxQA.T\\ۄ\\๠\ێ','',0,'?'),(_binary '\D\n5!vh\nO<','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\o)d\',_binary 'Z\9\@-\B\xi\U\\M?\q!0','',0,'?'),(_binary '~(s^s+k̸u','wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random_int.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9ɯ^?\r\>',_binary ')OyX\K\'A\\\A}a\̣r-hķ','',0,'?'),(_binary '\\$w \ym\','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/AUTHORS',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\g\\^?\^m',_binary '<6 \ Aa=*\4OH\\;$sd= h','',0,'?'),(_binary '`\<LCu\TX]\r','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/BACKERS.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\ޕuk',_binary '	\p<j+\\\\kH\!U\yE\Q\\N{\','',0,'?'),(_binary '\\L\\\VJ\\\\+\','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sh)~GR\wp,',_binary ']傼\S\\\#\`\\\\\\<\Y\','',0,'?'),(_binary 'ٍ\rQ=w05\\'','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a@2Dˬ9\\wF',_binary '\`D.UWi.\k\\Zv\\\F%G','',0,'?'),(_binary ',-ɀ$\?@C1-','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/appveyor.yml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GL\\c\"H4\j',_binary 'U\rT	p)MS3\\\Jh\\\:?','',0,'?'),(_binary '\I?\$9\\\_oʕ','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '43@\<N,z(7',_binary 'ܹDӪ\#n=o\0֘I\^2s\\\','',0,'?'),(_binary '.M\A\r4\1','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\x)0\\R',_binary '	[\1ʢ\\\\!hh\\u','',0,'?'),(_binary '\4\\@D\j`u\','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\N\\O9\GwΞ',_binary '90\d\[`bX\\\ Kڤ\t!\9\൚L','',0,'?'),(_binary '\U\sd3\ȧ','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`H\\\\6t\\rY`\',_binary '^\)?{\Y\QJEx\%3`x<o%\>N','',0,'?'),(_binary 'O,\.\'y1ԺKvP','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*<дH,\\n5$',_binary '?b\z4w\	\r#pPթР\Qgw\','',0,'?'),(_binary '\/ΰ\Fٞ\?','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\+V%b}P#',_binary '\hEP~gߪQR=[ն\k ֫\\\=a!;','',0,'?'),(_binary '=\7UUv7\\\0','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\\nK\\'Z5D',_binary 'wB\F͞}y\Gg(V:\\\\	','',0,'?'),(_binary '-#ߓ\'\EDA\','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>=&\nE\h`ۉ;\0[',_binary 'ϣ)V\'\\5\\r6S\[\,\)\\','',0,'?'),(_binary 'u\88%\[\\\	\X','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\\z*q\bY\7#n',_binary '#\s^\J_\\c\@\_!\3k7V$\','',0,'?'),(_binary '\=hȄ\\k\҃(','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+\U-`l:\',_binary 'E\mk\5\--Խԩ9=w\\\xX\I','',0,'?'),(_binary '/\\rZ\\q\'\rIi','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\rx\ak\rG',_binary 'h\|y)\m\tz**\P\'\vyF\\gcY\','',0,'?'),(_binary '\4B\E4s\_X','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\iڼ\M>(',_binary '7CU\X	nUU¿\Bi%Ȁ\m','',0,'?'),(_binary '\\2]k\\\^','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ί\\rF\A',_binary 'r\3\۾hi-\\kBq\sC\n\u\\jG','',0,'?'),(_binary 'oc̐ܺ\P4/]','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DMRťsP\',_binary 'i\-fa\>b2CF\"rA\io\"','',0,'?'),(_binary 'I\\p\mdW\J\','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\\J޴\P',_binary '1\\	\@w7\~\H\\\E\ZM|','',0,'?'),(_binary '*O[\\%*V޶\','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/X509.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zwuc\?KJ\a@',_binary '!\{|]DV\Ī1Doy\i\~ЕRsvJ','',0,'?'),(_binary '\\\\fGBKH\"\WvĴ','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'!6\B.[N]jJ\',_binary '\LJ\^\\m\x\9\u2\S','',0,'?'),(_binary 'ʽ;,\-\Gc}ꗟ\','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\\\\\\VkP$\',_binary 'zSqŚ13\\\A\Vl\*del*\ȔP','',0,'?'),(_binary '\\\!=[d3\\?\','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uFY\/?K\\\3\\1',_binary '\\]\Y:\bp\.	*&t#\\\a','',0,'?'),(_binary '\>\s?\i}r%\\\7','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\JH\\"t\\m>',_binary '<?jݬ;7LSI\kc\кyRL^\\','',0,'?'),(_binary '\9w2~s5E;?','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Мf]\ZL',_binary '\.F\\5AX:I6h沤H;Z\\(','',0,'?'),(_binary '\n<y \nmtE=','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\/;\瘄G',_binary '\07\%z\I{\`L(r{\V\v\','',0,'?'),(_binary '\\\!n*]\z,F\','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ԡ\+jߗ\\v۷V',_binary '&>e\S\o?\\/\O\v&\9`Qq','',0,'?'),(_binary 'P;_\\kR\%k\ݰn','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/System/SSH_Agent.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\b\r5E',_binary '61E)\ri\\JK஫/\@̋e*','',0,'?'),(_binary '?R0+T\U\vLQ\0','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q\\\es\\rBv?\',_binary 'K[(H\/\CNB\`Ev\Ds9','',0,'?'),(_binary '& b׺g$*V','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/openssl.cnf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@#V,aq|\Mg\',_binary '\0^ª#vp< ,x\I+,\\','',0,'?'),(_binary '#]\e3Ei\n|\\w\','wp-content/plugins/updraftplus/vendor/psr/http-message/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŻA\\rE\q!\c',_binary 'aM\\|\J/\\%\\0,\7\\','',0,'?'),(_binary 'M`kK\V\\=','wp-content/plugins/updraftplus/vendor/psr/http-message/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\yr\1\\a\K0',_binary '\\a3d\\'4u#\\҃vi%Jq]','',0,'?'),(_binary 'Ǆ1V׮FJ','wp-content/plugins/updraftplus/vendor/psr/http-message/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QZ\G,Vy\',_binary '5/\nlKQ#R\,Ȝž\\!\e\\}','',0,'?'),(_binary '\\\͙d\p)\P','wp-content/plugins/updraftplus/vendor/psr/http-message/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a\?\Ax5\R',_binary 'x	a\ o%z\\\NHL~Dn\S','',0,'?'),(_binary '\}\\\M\R\','wp-content/plugins/updraftplus/vendor/psr/http-message/src/MessageInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[KB5\CZ㐢Ҵ\',_binary 'i\>,\N;\"k\\\D-}\t\zJ','',0,'?'),(_binary 'k\vV\8\\\Z\\\','wp-content/plugins/updraftplus/vendor/psr/http-message/src/RequestInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\\V\is\6',_binary 'a\ؽUZ\"(5s\g\\0\\uYD[\\\','',0,'?'),(_binary '4uG\[π\3\Qxx','wp-content/plugins/updraftplus/vendor/psr/http-message/src/ResponseInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':.W%7\@ñ',_binary '\q@w\4(\]r4\w\~#\\r\Z\\','',0,'?'),(_binary 'pj\N\n7S\r\KV2G','wp-content/plugins/updraftplus/vendor/psr/http-message/src/ServerRequestInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h\\LDM)\',_binary '0d?d\ñ\Sa\\d\?\ޏ*d','',0,'?'),(_binary '\\\\U1_\','wp-content/plugins/updraftplus/vendor/psr/http-message/src/StreamInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\z85z\T',_binary '\Ŧ!\\Z\E|s\I\g\ߘV4\qN','',0,'?'),(_binary '4\\\|\rEҬ\','wp-content/plugins/updraftplus/vendor/psr/http-message/src/UploadedFileInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '00q\\LD\0&',_binary '߸3k=4D\S/of\\\j\i\\','',0,'?'),(_binary ':\_\~L]','wp-content/plugins/updraftplus/vendor/psr/http-message/src/UriInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\\\\:(H\\\\',_binary '.x2ж\=2\"\#ЅJ!\{i	Q','',0,'?'),(_binary '\YwzKσ','wp-content/plugins/updraftplus/vendor/psr/log/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZtbryI79J2~',_binary '\KԼ\iEl19GRM\C\','',0,'?'),(_binary '\\Z\g+\o\9/bv','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/AbstractLogger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\\je¢\\\0\',_binary '$Q5P2\v\\Zi$RE\}\','',0,'?'),(_binary '\O\\\\\\','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/InvalidArgumentException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}/\X5$\9\/\e',_binary ';5bG\SB:e}\\\\!q|z\6\','',0,'?'),(_binary 'S\r\Uk~Fb+s\','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LogLevel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"aB]9\r9\xC',_binary 'nYy\\"\0\\nd#.eg56\d\\\>^','',0,'?'),(_binary '\|[f','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϬmM\\\\\\tѼ\J',_binary 'f\\.%\*ƚWn\C\\\s\Si','',0,'?'),(_binary '7\"z\ZJN\\\s','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\\cB[zk0۞\',_binary '_KA\*pA#\\ʄq\^\r\\\','',0,'?'),(_binary '{6UP\r$P\\\','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\\c\]',_binary '\skYA0)V\v\'Z\#E\'\#','',0,'?'),(_binary 'A\9G]\\D#M#q{','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\\2\\\՘80',_binary 'MEIe_sZx/\|\;\Jz·\M\-','',0,'?'),(_binary 'yK\:x}0\J\Fm','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/NullLogger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,$\j\B',_binary 'ʃ\\>\7KO\}\"H\sWÜx','',0,'?'),(_binary '/I\"\B?t\.%','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/Test/DummyTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\q\&E\V\\\Ǌv',_binary 'n+\g*\z\\b@F8%\\\swE','',0,'?'),(_binary ')\n/]\n5J\'','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S@L7\*\\',_binary 'q\\[\#tsQY%hR0\7\\\^fQD','',0,'?'),(_binary '1\0ؐ_5','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/Test/TestLogger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_c>\\Z=sw\',_binary 'Z\\,$\Ҽ\'}\q(ϝ\T^\','',0,'?'),(_binary ' \\HzK~\\E=\r\','wp-content/plugins/updraftplus/vendor/psr/log/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0s\RV1\u\\\_\',_binary '\\..vv:38O\Ai)\','',0,'?'),(_binary 'XO1{\F`','wp-content/plugins/updraftplus/vendor/psr/log/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Eor\ ¾ϔ\',_binary '?oKχ3J\\u56\"\\7jm}!C \','',0,'?'),(_binary '\',\E\^sAM2','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/CODE_OF_CONDUCT.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J\]u)4\\\',_binary '?J5Q\\\@\ޟ0/3V\0e\0\K','',0,'?'),(_binary '-AJf\ۭb','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/CONTRIBUTING.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\0u\W\D$,bEW6',_binary '\O7ęҵ2r\F?+\rq38','',0,'?'),(_binary '\\])Ѻg','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\\d\cӮ\$',_binary '\\ECð_6\f\gԳ5g\\','',0,'?'),(_binary '\~f\g\k','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Lᨇik7#z\\D',_binary '\3C|\=L\\\N\hN)\0׀','',0,'?'),(_binary '$87\\O_c','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/apigen.neon',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's}\Xe{.9\\\',_binary 'V\\\E{Cm\J#@R-#\J3','',0,'?'),(_binary 'w\Vk\\{K*','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!E^\HW\\ad',_binary '&\\&h,C{\@Ԁ%\S(?`\֞','',0,'?'),(_binary 'VSV\PT','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/CDN/Resource/Flavor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\5!\>h%7\',_binary 'F7U܂\4\S\\nj\\ѧ\۟cQ','',0,'?'),(_binary '=E`1\dNS','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/CDN/Resource/Service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CYa֠B5-ܯ&\N',_binary '\{`8b\\\Z{\0e\gv\\n\Z\9\7','',0,'?'),(_binary 'E\'BR\\t\r|\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/CDN/Service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\̻Ds\TI\@\\\',_binary '\B\\4IT\\j`X\\\\\_ok\	fFq','',0,'?'),(_binary '܂&:/\0\"_HF_','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/ArrayAccess.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w|Z\Ts>Yՠ\',_binary '8\׾9\\M\j\q\\jzZ)y\H','',0,'?'),(_binary 'I}\9\L\g\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\!t\m\'9\>\U',_binary '\eJ-|xI\-p\r`\\~Țnk\\','',0,'?'),(_binary '\\4puDI','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ArrayCollection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\~eoVU\-',_binary '+(T\EBn\\`UHK0\v6v48A','',0,'?'),(_binary '\GƦ\<\\-','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/PaginatedIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\K\U\IjwB\',_binary '_jsI6*º\\LL\'\OV@J\k','',0,'?'),(_binary 'J\uam\i\"d\\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ResourceIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ץ/%#\\kvF_(',_binary '\\d\\\B3nqDo\}Ϧu	?\6','',0,'?'),(_binary '\\\a)[+o\91a\Z)','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\.\\LL\\p^',_binary 'y\\Ab-\\&\3CO\\^\','',0,'?'),(_binary '۩^\*%A\NiA','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Datetime.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\"\\Q3C\\\',_binary '\"TM\oNFGE\	+\:\+\\e','',0,'?'),(_binary '0_\j}\8IAh','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`Ey/\$\ȅ9 \\',_binary '\'V\C\\\ӻ;&\A\\q\++\k','',0,'?'),(_binary 'aóh\G^i\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Mime.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\fˣ\\	O:*\',_binary 'YC\<\"\\Q\HZMc\wڒEp\Ҥo\','',0,'?'),(_binary 'uӨ\+̧xT\d','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\\i&j%9ݜ\2',_binary 'KA\S\'\}\rT8W\Z\_L8\!%\\@\\','',0,'?'),(_binary '\nF\u}҉\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Size.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4<k5M\\'\_D\',_binary '0+fU\Sn|+M<0.+q\HKTh`F','',0,'?'),(_binary '\0\'r\O\\5\,8\B','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f6\'\Z m\ˡI',_binary '\\hh&9Ey\G;\n#O\(\~\','',0,'?'),(_binary 'c\Ҥ|.L\\~','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r2:\\&t~m',_binary '\'\(;\U\=J\rf-\r\Z\\y/6ިm9','',0,'?'),(_binary '3k\N%_\IT\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncHttpError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JЃ\ː&D}\',_binary 'FԒ\	VI\_f\n\\0\\\\','',0,'?'),(_binary 'NR\i|CW','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncTimeoutError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ߝECMI`',_binary '\8r\ZBx\on\\)=٣c\R\','',0,'?'),(_binary '#\>Cj\ӈb!','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AttributeError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\hv\\M?0q\h',_binary '8\TD{1)[ݴ\1Fp\e','',0,'?'),(_binary '\S\?5L\!\	*','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AuthenticationError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W{\\]m	em\\H',_binary '\ȋh?eu-3Ɲ\P\r\)+\rW}\\\=C','',0,'?'),(_binary '_\~=fP\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/BackupInstanceError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%/\\)H\r\',_binary '\Z\+܃p[\\\ [\Ō@#\oif\x\g','',0,'?'),(_binary '\(\\2m\n\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/BackupNameError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']`\0\;!(䂍\\',_binary 'Jx=*e*{(vP7\Y0m,\\$t:Q!e','',0,'?'),(_binary ')\	\wJa^(','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/BaseException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$u9$hoy%\',_binary '7\t\:s{(,\5\U)\fr7Ox\!','',0,'?'),(_binary 'a\'\[\~p\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ց\\\\:\v\\ø',_binary ';\Y]]\0Y2hiI\TnH\\R\F','',0,'?'),(_binary '&K\&\ڄXg','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnHttpError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\wU@71	,5',_binary '}~\n*k(\\\\\{CM\\3\0$','',0,'?'),(_binary 'J[\dEb','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnNotAvailableError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\\0+6}F\\Zٽv3',_binary '\C\*}&D\\Z\|n\([\\<','',0,'?'),(_binary '\Z\e\n/]\Z\1','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnTtlError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uU\'x~1ÞK',_binary '^\\N\\\xN\˰gZ´xi}p4#','',0,'?'),(_binary 'y)wQ!\0\\3`M','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CollectionException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bB!~\-Ȇ٭',_binary '\>TkH\~;oELwpJ\\Z','',0,'?'),(_binary '\g\D\	S\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerCreateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nCiS<:Ӹ',_binary '\r\9X琅>\\C!Rx\f\\[\'Mǌ','',0,'?'),(_binary 'j\\\@u\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerDeleteError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tԞBޓr\7',_binary '\K\ı\\:\.XSʠEmn\n\0k\\#Z\','',0,'?'),(_binary 'Oc\[\'ɭ}\G','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4Ș\\\z\3(',_binary 'A\7;iДp\\yKMe\\)\\Z6-','',0,'?'),(_binary '\_1\\\8\\\5','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNameError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',7\fS\'G\'C',_binary '$)C\:ʤ\r \\F4@N=\\','',0,'?'),(_binary 'LVr@sR\C\}','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotEmptyError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jc1z{\\'/@EHl>',_binary '(\\0\\\-\\\ !ߨ:k΢>I\n\.Wma','',0,'?'),(_binary 'u\\i\\\\tz+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotFoundError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\U ,\2\6L\M',_binary '\Z\\0KTa\r`\\y*\{','',0,'?'),(_binary 'Zʧ#cg/\~','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\oجѢ3;]T\Z]',_binary 'VI\")\B&Q\JҊ\!ٞ\"v\C\','',0,'?'),(_binary '\\g\R\N\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateUpdateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ⮆<_jS<J\',_binary '#\2k\6\O؀C\JlxN3\m91B4','',0,'?'),(_binary '\\\c\О\M','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CredentialError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FY?ʊ1s/\',_binary '<\\lI\!/\\{\KS|i\$\6','',0,'?'),(_binary '2:]\Z<Atb\\0,','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseCreateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\t\2n\p\U^',_binary '\Rù;@0\Z`\$\\X7ԭȅN{ͻ\`	\\','',0,'?'),(_binary ':R\L\?&=','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseDeleteError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';yCh}V~>\Y\',_binary 't9cv\|\u4\NkjE}?5\$r/','',0,'?'),(_binary '^^\\\ .޻\v\\\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseListError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*soTP29\",]n',_binary '潜n1:7?ܷ!\՝\\\âv\\','',0,'?'),(_binary 'l\nVg\\ƪ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseNameError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\\Ku\\\\',_binary '?p&k\w\Z\"\Gl\\r','',0,'?'),(_binary 'CdQ\}s\_Z $','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseUpdateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\e\\@\M=&;\\',_binary ':\\KТ\\A?\y?M\|L2','',0,'?'),(_binary '~y\0dx![>&','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DeleteError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\z<a 0x\"\\',_binary 'Px\eÕV4\0\"\n1ë)6\n','',0,'?'),(_binary '\[t>\mк\0','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DocumentError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\Ov\\',_binary '\\I|z\l*\ZUM\o-L}\,`O\ܷO\Z','',0,'?'),(_binary '[$\\ַYN;d\"','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DomainError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nm\u\\lv:',_binary '$\\Y\JK|\oq)]\o','',0,'?'),(_binary '\\(WkD\{\f.\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DomainNotFoundException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\g֞(z$I,',_binary '=VOׂU_Pg\K\\ەl','',0,'?'),(_binary 'UT}^C	<+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EmptyResponseError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~j\\\"\\W ',_binary '\zY5\>:z\u\W0瀟\@#pV@','',0,'?'),(_binary 'nL@\\\\H9\`','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EndpointError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+%DV=\r~\rL',_binary 'ñ^Ab\	#+\\&\\Ӧ\\+U\V?s','',0,'?'),(_binary 'U\^$l\D=Y','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/FlavorError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xo\S\\,J\\\\\'e',_binary '3_}\"\\'\\"\po\+P\\YE%\P','',0,'?'),(_binary '!\'\Z\^SUJ\o\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ForbiddenOperationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ji\Zm\\ LZ	D',_binary '2lX\'LKs5w\<+v\\N\1bDqG`','',0,'?'),(_binary '#3J:qɭ\_\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P^ZF\{t_\K',_binary 'ʨ\\\\Y=\I\r\\\\S\n\o0Zz','',0,'?'),(_binary 'Kߨ)@\\Z-','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpForbiddenError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\']{xN\}',_binary '\S\h)\;\ѩD\\Jfvṗ','',0,'?'),(_binary 'u1>Jel\6\\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpOverLimitError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pm/d^\\rJN\o',_binary ']jq\n;oz\\\r\	O(H0ࣉ\','',0,'?'),(_binary 'ڌ\\D2f&\c','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpResponseException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\\ą,\\kTw',_binary '\0\罼\\%\|_\\\[x\Vh-','',0,'?'),(_binary 'UpHs,M\\r\*a','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpRetryError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3D0ɺ\'1>\\M',_binary '\r\_\y?\\\&\oG϶\\\\N\n','',0,'?'),(_binary 'Q\\.\izU/Q\>','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpTimeoutError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9#w>\ò7~<?',_binary 'B\\rSj\/\}~[7P@Ef\"ğ\\','',0,'?'),(_binary ')»F&\ڮ\h\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUnauthorizedError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\\{܇AK&',_binary '\\<t\0ٸS}!/\\njʘk\DPB\','',0,'?'),(_binary 'Lwfx\ΘM','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUrlError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'שa_}G\\ֶl',_binary 'H[\μ\CQH*E\\BR\\rrt.!\=Tx','',0,'?'),(_binary 'd\\\oܕκZ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IOError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{LƲ(',_binary '\߁P\\uQ;\\琮J\G%U','',0,'?'),(_binary 'v\\z\Zqr\\@\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IdRequiredError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n,(O',_binary '%͊\\:SR\uI\0G\r,h:[','',0,'?'),(_binary '01\\\ޟs','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ImageError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \\rVj\\Ԉ\Qa',_binary '\p\(@\k\7,Gq?\`W\\F\','',0,'?'),(_binary 'Ţ\%8vs6\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceCreateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zt\\\\Ki\ZIAW',_binary 'ůC(#\r\(\0\'[Θm;x\\','',0,'?'),(_binary '\\r!ޗ\L0\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceDeleteError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q59\,\rE[\9+\',_binary '-\\\S\\RkW\ԩ\bc\\\ S\扩','',0,'?'),(_binary '6BT	8\\ѝ\8\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kth\*-x8\\',_binary 'v\\yQ\Mhb\\ \','',0,'?'),(_binary '\R\~P}*cI:','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceFlavorError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6+5I\燋Vp[\',_binary '\\\(\RY\o3\\\'\^D)\P,\|t','',0,'?'),(_binary '\IA@f\Ab','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceNotFound.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\Z\\\\I^\',_binary 'dzZb:^=\'S\Z\.\*=\^\w\\1','',0,'?'),(_binary '\b]a25\5l\a','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceUpdateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\n3p*\~\\n\e=\r',_binary '\p\f\g\!U\\_\#xB,p','',0,'?'),(_binary '&C\\|\\\rUC8\\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidArgumentError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ri\4Db-\${\\\I\;',_binary 'L\\͂\\n\\M\\n2\','',0,'?'),(_binary '\0\Oi\Vi\`\]\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIdTypeError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/I;\F\Ar',_binary 'ʡ\.\JFoP0@\\ƀh\\\%z>?\\p','',0,'?'),(_binary 'Ր\WB\\\\"Q\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIpTypeError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W+^?Ś\Ц\t\"',_binary '+~=Ladߓ35\0ϱ]M,7*ϙG͋','',0,'?'),(_binary '.t\9ks\t7r','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidParameterError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\aJy\N_',_binary '*쁮\r<Z\ł\\\B\w^','',0,'?'),(_binary 'i些b\6\eg','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidRequestError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aM\ZX\	\K',_binary 'XBNyU(ү 9@W\\\7\\l\;\\\','',0,'?'),(_binary '\\;X!\0\k.','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidTemplateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nͣMİ97\y;',_binary '\U\"qϛgia\Y[\\{\0\\Rh\','',0,'?'),(_binary 'ڛ!{EM$\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/JsonError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K7hh.:k\',_binary ')\\\ln#\'S\\fBߩ/ ĩ','',0,'?'),(_binary ']\E4jd)(\Zx+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/LoggingException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ԝ\-+\\GJ垸',_binary '	/\r\"D5˨\g>@.\\D\*\\','',0,'?'),(_binary 'v(>1{L\6','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataCreateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\\\0t\\\0Cng\',_binary 'z\/\΅H:`R=i\X\Wz2&','',0,'?'),(_binary 'j\n9?KCgO\5\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataDeleteError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	hI09*w\\Q',_binary '\\퉝IXa[T-\\J<6)\\'Qa\','',0,'?'),(_binary '3\5SZ;׎\x%@','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\\1}nafZc(',_binary '\y&\<C\\ֆ7b\\i	7*!b','',0,'?'),(_binary '	\˦3;e\"','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataJsonError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z1\M	gՎ\r',_binary '<H\pKѤ\F\r\\\V\:K\Z\\\3','',0,'?'),(_binary '\9\ Á\\!\m\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataKeyError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qGlX\\\\\ZpJ',_binary 'N\oqbw\8=\Dn7w\\0t\#}\'\v','',0,'?'),(_binary '\$\0\Slaşq|\'\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataPrefixError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`\\imq\\r{l\Z',_binary '\Z\[6qϽ\\HO\\\\gnBdG\6','',0,'?'),(_binary 'G\0YVr޼*\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataUpdateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;&γe!xh>\',_binary '\ri\Z]\\"\\\zebw\<\<\ZZA','',0,'?'),(_binary '\\n¢#ȮU','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MisMatchedChecksumError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\Js?\\K',_binary 'ޅ\\AO\\Vs9|n\\yOt\','',0,'?'),(_binary 'p:7\j!=b#3M\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MissingValueError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B}6\K\~\S',_binary 'Em:\Z+cg\\*i\c\Ny\\LR','',0,'?'),(_binary '<n|ޫ0)\;z\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NameError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\G\\\ \-As\',_binary 'ke\ v0\\Q7\\]<	\ eǤ','',0,'?'),(_binary '@\b$Y\\D!A\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkCreateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\|N\"g)RH',_binary ' 1/*-c{Ԗ&4Mcl3ix\=,\','',0,'?'),(_binary '<\ajY\\\\wr','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkDeleteError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&p\	\\\\NK',_binary '\vu?>-*/l\&	\\<sXam','',0,'?'),(_binary 'Սs0LBO\\0\&A','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R[\h\r}$z\',_binary '\W\2I\\j^\Xs1f\\pҩ4','',0,'?'),(_binary 'U|Jy\>\\߄cc','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUpdateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\;Ǎ\\\c{',_binary '޳tg%\vb	x@\Z[G\[JM','',0,'?'),(_binary '\p*1E\'\J-S','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUrlError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\\\$\b\0R',_binary '\\\n\\d(\\pb#\'&4\|>C','',0,'?'),(_binary '~\c5\\R\"\@2\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoContentTypeError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vi.(\)\v\4',_binary '\{cx\0x+,d7\r\\i=\4\x','',0,'?'),(_binary 'n|M\O\s','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoNameError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\\B{0G\',_binary '\\')LYi9>;B\q]\r\8','',0,'?'),(_binary 'cKK\{7ⴔ)\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjFetchError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\\{A(F',_binary '\\\\0	|\\\扭+uP?\zCڹ\','',0,'?'),(_binary '\F\SNfZ\\"u\\\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectCopyError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8\)wd',_binary '븪\0d\n\\\T92T嫼V\\I\j0iǵ0<','',0,'?'),(_binary 'h5oC[֒\\\˘^\Vq7','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\"\΃\Yp&F\`',_binary 'n\,^G\\~{	S\+7\ȱ|\\\','',0,'?'),(_binary '\H\0E\6@','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RebuildError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\(M+Cmk>B\h',_binary '\7 \	\x 1h1$\\].\\-_\\\Z6','',0,'?'),(_binary '%^\\p\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RecordTypeError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K6-S\h\"t0˹w',_binary '3\n\\e\*9_	Pw/\h\Y\&','',0,'?'),(_binary '\(\BY]\2\\~Ky','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceBucketException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'J\\\Wf*\',_binary 'ɳ-6\\Tv\+3#kA˩ LU','',0,'?'),(_binary '<;H=t~bc:','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceNotFoundException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ąK?\\↖\\b',_binary '?\8&􌠺\\QfV\n\^\\\<\\','',0,'?'),(_binary 'Wf&\[Oص?S\ȏ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RuntimeException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\\\/*Mi͗\\',_binary 'sV\"P$}]\\\ućy[r\X','',0,'?'),(_binary '\e\RWUʖhr','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerActionError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pR);\Z`\زy8',_binary '=\˨៪<RE\'<,2Y\>Q\l?o','',0,'?'),(_binary '\t\x^z\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerCreateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Jtv\nUn%%\k',_binary '\"\0\\n)\^\\\ʙTO\Z\<W\\<d\','',0,'?'),(_binary '-\0a[\\\Q\>','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerDeleteError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nq\\\\0M_0\K',_binary 'gtW\}\\\TVeiX\\+\X','',0,'?'),(_binary '\J2\\<\\8Z%','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerImageScheduleError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cG<ӈ޼\/\',_binary 'ɼ}\6Ny(\G\+n\"+\8P\','',0,'?'),(_binary 'b/\/)\A\1\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerIpsError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';RcP\\\ZM\',_binary 'zEF\\\E\\\\ؖH\m\\','',0,'?'),(_binary '\lG\_\J\t\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerJsonError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\`o>\\HLRU',_binary '\~֗A\z\\I-\]:Ⱦ\E_h6h>\','',0,'?'),(_binary 'G9\\0&\\&','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUpdateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\#҃{9N溵',_binary '^\#bd\ޞ\W\@\قv\0arv}\\:','',0,'?'),(_binary '\U\bxBUA[m`J','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUrlError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=5\n-~(bjg\]Z}(',_binary 'sO3a}W\\\Up\\9&\\A\hW','',0,'?'),(_binary '\??#\\\\$\K','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServiceException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<}\\rBƕ70q',_binary 'J\@\\J\\\l\S4zC\\k\85','',0,'?'),(_binary '}\\_\pHD<','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/SnapshotError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n\\\8\&\i\"',_binary '?\\Nȟ(U5uQ?6y?\\P\ڲ\\Z','',0,'?'),(_binary '>\\\͙x\ft\n','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/TempUrlMethodError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2E!Es\Ge?_',_binary 'P#YfG\GÓo\Jd02J\En><','',0,'?'),(_binary '\}a][ܪ^\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KS+2H\AN',_binary 'Y0Z\lٚ\\\\\\N#h\nN\3)','',0,'?'),(_binary '\\_9w[o\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownParameterError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\`\"pq\!Y\\\',_binary '\?Ҩ\X%oA\\\Ӗ\r%tO.9l޼','',0,'?'),(_binary 'B\]\(P\˶\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnrecognizedServiceError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4yEM3\f\',_binary 'u^MS\\w(7\0HXZdU','',0,'?'),(_binary '\\6\\#-\y','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedExtensionError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f^\;.#x!\n',_binary 'q\<6C\"\|3[\Z\;^L\\_ͩ\f','',0,'?'),(_binary 't\NZ3Ҿ\\°','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedFeatureExtension.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M8\\\\3<\\nBeo\',_binary 'zHQ\\ v\\:L\Y\+6k\1','',0,'?'),(_binary '\\<a\e\\7z*\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedVersionError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q\"H\\\qyDM\B',_binary 'cMP\\J\=@HPZ\v*Q[\A\','',0,'?'),(_binary 'o%@g)`M','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UpdateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<8\l%W9\\\O\',_binary 'Ro\:mQ:P\S6лwy[','',0,'?'),(_binary '<\U֒-\\Z/k\Z?Z','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UrlError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*\\4\\k\<\M',_binary 'W+O֦`։ӻ\o\gV]\\\\\ce\','',0,'?'),(_binary '(\+,\\V\vP','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserCreateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P\\^oձ,c',_binary 'Y\;\9M\~\jGO+|R$}|k','',0,'?'),(_binary 'hOM->J-\Q:\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserDeleteError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\˃\$f',_binary '1\\\r{l5\Z(;o\,b]hF*5L\','',0,'?'),(_binary '%4>\]\Zw','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserListError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ő%\\uHI',_binary 'N\p>\\\u\\j\ۉJ\\2E	\7','',0,'?'),(_binary 'x(-MmWL\\\2\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserNameError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FQ:\X',_binary '\'qܺY\~\\8~\}	2:\&Mn','',0,'?'),(_binary '4*6k\\,\Yh\v','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserUpdateError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#5m7`Y,o¾v',_binary 'Ǔl\\0\\ErɿS)bJkx\\"n','',0,'?'),(_binary 'P\n\\yK','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>ǯ\ɇ\"Q\Z, ',_binary 'oL\yۘG=^\{\om#j8\"lL','',0,'?'),(_binary 'BGF@k+ѓ<s\+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeTypeError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>\~\@\Jb.',_binary ' %\C/j.E;.3[8Ѹ\>\','',0,'?'),(_binary 'l\\'yK~\K \\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0o\\l\\,xP\',_binary '\w<.Sh5\\\[[c^4\&\<\\";','',0,'?'),(_binary '\<\\\\\g	\F','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/Formatter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#,Z\E\',_binary '\\.E\}l\_\wT\n\V;	\P;','',0,'?'),(_binary 'j@PrF\\͊馕','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/RequestSubscriber.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,\<B>_C#',_binary '\s\jZ\\\N7`a[\0\MZI\\ߵ3\n@Ӟ-','',0,'?'),(_binary '\fO\\ߠ\%bi\Z','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Lang.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n\KT\\\q\',_binary 'r?\swa\\"]ve\Zśel\ڈB\wy','',0,'?'),(_binary '~\[\"+\Z\qu','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Log/Logger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G\\\\	&\"˸\\',_binary 'D\\\\E8\\J	jGDG\Уr','',0,'?'),(_binary 'Z;\\\s\~X\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Metadata.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\RtH@G\qVV\Zc',_binary ')}3	\\-\\\hS,\ʇ/ח\\N\\','',0,'?'),(_binary '<Y\\{䕾]$j','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/PersistentObject.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N(\ڢ\P6ʚ',_binary '\n\ΰ\uXXywVTܳJ\\rx','',0,'?'),(_binary 'fYûmE\g\xD','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/BaseResource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\3T&q\K.\',_binary '/\M|I,In\K\Uk.4EKp\%\','',0,'?'),(_binary '!CaP-%v\"`','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/NovaResource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~%D\\ ;C\F',_binary 'I=a\o\4r6ь\\!Tv\\\Mw','',0,'?'),(_binary '؂i\>Ǯ\\d\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/PersistentResource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c	7z\\\X',_binary '\5\6naZ[pT@#|R\ci@\:h','',0,'?'),(_binary 'gJӯE--+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/ReadOnlyResource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*+_@\{4\Gc',_binary 'erO,v*\rbz\\7\\~\\}','',0,'?'),(_binary '\w\6?k_+\\R\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/AbstractService.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\\\@\\\dP',_binary '0\yWb/Vbp*0:\".\:Q\\o⽸','',0,'?'),(_binary 'Aǟ8;%\0Eg','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Catalog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\Ze\\nExq\X\',_binary 'ևD\7\\߽iT\\0Bl!rm\081','',0,'?'),(_binary '\>E\~\\0擾W','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogItem.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0d3\\t,\c]5',_binary 'Jgr\c\!\\Ztg\7\wIﭕ҅D','',0,'?'),(_binary '\]\\\9Qo\\\.\nO','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogService.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<%d\\b\H3˂m',_binary '\7A\\0\\XdHہŦ\'w\Z\,ۅ','',0,'?'),(_binary '\7W\_%9Z','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Endpoint.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\t\\CD|i',_binary '\*TAY\4C(.u\\-q	Y','',0,'?'),(_binary '~\#\rϳ\1e','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/NovaService.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ٚF870F\',_binary '|\kGӄ\,.\Mn/迕\\ZtT','',0,'?'),(_binary 'ЋV\jLMz\ث\Ѻ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceBuilder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\\S2\\?x\\',_binary '\hTA\\n\\V&Nn\󶗡','',0,'?'),(_binary 'ox\\\ƗW\7\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't*\\#5/\'\',_binary '\\#iޖ\M@\B[/  u9gM\m','',0,'?'),(_binary 'Mϩ\,ҁXG\K','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Constants/User.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڵ\@\\\q\'\\=',_binary 'u\\\\K\\ٍWaK~~\"\*','',0,'?'),(_binary 'ǂM}G\\A','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Role.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7E\S\\e<',_binary '>f\^1Pf<9D\JRDyM\','',0,'?'),(_binary 'vP6\)\\\U3\ah','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Tenant.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Pxe%Ȁ8',_binary 'X\\f\ρ\}4\\6\Nc\\KKQ\G\Z','',0,'?'),(_binary '[\\\\\r1K\8','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Token.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\*آsz\\!',_binary '\\)\9<bӿ@Q\hɢg;̀e>\g~Q','',0,'?'),(_binary '2\ =5\a~\+,\'j','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/User.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#7\@>\\"\B*',_binary '[\6-\\S.\8:\\}:ͳ,','',0,'?'),(_binary ')t\*\b<[\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƕ-p%\n\rk',_binary '\'ݺ0pa\\3!(u}\LV۽','',0,'?'),(_binary '\aK\v\ꬩF\F\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/AbstractService.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}3g|a\	a',_binary '\\u@\(C9>0\(0\$#t%\H3','',0,'?'),(_binary '\\\f/,\\!\\n\n\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/CDNService.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZΨ\J\\\\\۞',_binary 'i\8\\?A2\Pd\{\\\+\&>]','',0,'?'),(_binary '1\L\g\zB<','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/Header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9\#z#X(\',_binary '\\\5E\\\\0mMf_\\$\r3\]\6#','',0,'?'),(_binary 'XQ:Iq\ա0cr','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/UrlType.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\z$\\+_',_binary 'Ew;JT_m4iZx#\\Bnd\\Zd	','',0,'?'),(_binary 'e\c\\k\O*\]','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Enum/ReturnType.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D}ΤwS\o!f\p',_binary '\\l\[7;Y\A*nJo\\','',0,'?'),(_binary '\ɱ0,x(\!c\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/BulkOperationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ҝI\n\ \\R',_binary ':c\Zі\n	\جM\\r\"\N`G{\	\','',0,'?'),(_binary 'h#ٕQ\Y\\-ai','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ContainerException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p.͋S4\;ɭC+s',_binary 'ZI|\Y\E=P\CZ\\Z@[o\9&=\','',0,'?'),(_binary 'Fÿ]ZـL$L','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ObjectNotEmptyException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5r\",nй)E',_binary 'Ed#eQmYu\\\"hP*\~\O\1\j\','',0,'?'),(_binary '0jYr\\\\r[{\0','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ObjectNotFoundException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\0%ql\',_binary 'L#ZO<\\\e\rG$\\M','',0,'?'),(_binary '?_\\\t\׺\P\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/StreamException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ۂth0H\\t{',_binary '\/sGx8\'1*X\ă\:\\g\a','',0,'?'),(_binary 'ļ	\Y|pt\4(','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/UploadException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\T\\U\\',_binary 'η\\Z\z\\Ch`Ha\;:n,n3\','',0,'?'),(_binary '.\7\\\f[','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractContainer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0cY\Ҝ\j\r',_binary '_٦.\\g/T\$3\'X@TD4J:\','',0,'?'),(_binary ')knV\mGe','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractResource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	ό\1Ҡ\',_binary '2z\[\:\X\0LVG\JyM!\','',0,'?'),(_binary 'y\\vfs\Yb','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Account.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\^Pj%^\\6\{\',_binary '-f\]w\UoT\\e({?\ǀ','',0,'?'),(_binary '\\\\Б\!t$0v&$8','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/CDNContainer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}\\Z\yb\7#',_binary 'P5tk4t\I5pm\N\ȗo-\\','',0,'?'),(_binary 'H\\\\\\	)\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xfrh񙬒$\\s',_binary 'j뫑\\'jE\Y\=݂ưjd ','',0,'?'),(_binary '<\&l\aL(4V^+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/ContainerMetadata.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\\s\C\>\X',_binary 'A_&\-(+h;\sĕOcr\h\\\9]\\','',0,'?'),(_binary '\\\n(ٓh','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/DataObject.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<Ly\\~MʡF)',_binary 'b?Y\\D3\	*ų\\Yʦ\n\o~\9\','',0,'?'),(_binary 'Qٳ\4\f|\nN','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '00\\bhz\"\屆ڙ',_binary 'P\Uv\\r\tv\+k\<ܘ^','',0,'?'),(_binary '(]Ex\{<3','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/AbstractTransfer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŀ޷\v,Z3kCD',_binary 'gO\\D>+\MU\\\Ax\','',0,'?'),(_binary '\~\rr㴄}\\*','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConcurrentTransfer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jb\K\\$C\',_binary '\y\+q\jHq\[Hj\\','',0,'?'),(_binary 'HF]w?yv\y','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConsecutiveTransfer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\\o_YҼ',_binary '?Uؚ7I\\9\޶\'TT\Ŏ\\#ƚ','',0,'?'),(_binary 'l\LXiUv8F\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ContainerMigration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!-0\\r#`1U=b$71',_binary 'l0\ZKn񋤉E>\"\\\\\=\','',0,'?'),(_binary 'Hbh\519','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/DirectorySync.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1^{\b$,f',_binary '\X\\hes\d	Z[U0<a\\r\!','',0,'?'),(_binary 'AuP\s\aUs\"','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferBuilder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_ASx\\\\\\',_binary '\6kI\A͌eL{%3\i:','',0,'?'),(_binary '\0m`!st\0\P\0 ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferPart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kz\s\\\>靡\',_binary '!]1!\\{D3^\U6Ι*n\h^','',0,'?'),(_binary '\\JvOB\\ R\i<\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferState.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\\>ߗH)RM',_binary '\\"_\Nsɐf N?RHn\\','',0,'?'),(_binary '\\拳ĉ3no9','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/OpenStack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N>ߨ2V否;',_binary '\\WiPJ>\\k3z\M]\\PU9\Р','',0,'?'),(_binary '\\Q^z7K\b\n\h^','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Rackspace.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hŲ r3\[\As\h',_binary '>f0O?\0h^\a\d\r\\.ҥd','',0,'?'),(_binary '\1\ng4F.K\e\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Version.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\\,M\:~\\o',_binary 'Rih\r\\~Tv\\\C*0\','',0,'?'),(_binary '$\q|#\"	\ҹ<\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/php-opencloud.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ĵ\֜Pb',_binary '\UTXpŚd8wy>8ǈT\r+x(','',0,'?'),(_binary '\$K>w`\^','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/phpunit.xml.dist',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '߿\Z|{j\:\s\6',_binary 't	\\~(V	d\<\\FO+[^','',0,'?'),(_binary '$\Mn%H\jͥ','wp-content/plugins/updraftplus/vendor/ralouphie/getallheaders/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\xoF\pj9\[^\\',_binary '\@\X[\p:\\j\:h\x\\(?\\','',0,'?'),(_binary '\yܥ|\\\\V\','wp-content/plugins/updraftplus/vendor/ralouphie/getallheaders/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C\"V\\\د{Ί\"\',_binary '\ =\͋xAFs\\9{`\K','',0,'?'),(_binary '\\js\\?>\B\t\m','wp-content/plugins/updraftplus/vendor/ralouphie/getallheaders/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\M\y\£\"q',_binary 'UxzuIǿ~+\\EZ\\S','',0,'?'),(_binary 'QB\NMϣ\','wp-content/plugins/updraftplus/vendor/ralouphie/getallheaders/phpunit.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\,Ǘ!\\z\Y',_binary '\\m`!\\0\T 4/\P7\\\y%','',0,'?'),(_binary 'a}7沨rM\Y\U\','wp-content/plugins/updraftplus/vendor/ralouphie/getallheaders/src/getallheaders.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qx˂\~b\\$\:',_binary '\ZY6#OSf\RC\\0z\\$','',0,'?'),(_binary ' \\^F\}i\\Z\}','wp-content/plugins/updraftplus/vendor/ralouphie/getallheaders/tests/GetAllHeadersTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zV\\v\֋\\\\G',_binary '$#vz\.\\\\\VOcG\"N','',0,'?'),(_binary 'O\X\,ԫ\za\"','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't]\gN\+8J;q\',_binary 'N\bߥ\I\na^ wҬy-\G;\\Rs','',0,'?'),(_binary 'd@\Q\\ۅ-Y','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&S\\\q\@\⬠c',_binary '㣜h&GG5!\!wb1\-@','',0,'?'),(_binary '> \j\ꈬZRÏ0','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6\\qYmc>\u;r',_binary '1Ή:_d\@\g.k\oE\=9K?\l\','',0,'?'),(_binary 'AÙ\}\ ','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\ZU\\\#En(P',_binary 's4\\:W}\uq;q\'@zNFľ`','',0,'?'),(_binary 'N\3\I՛\\;$','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/WrappedListener.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2K\\\/\\̇\',_binary '\L+zN\DE\\rvcg\0q\nMu','',0,'?'),(_binary '\D\\\'iQI','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\\Q:֊3\r\',_binary 'q\Ե\nvZ\g\Bz?-\)\5[Pz','',0,'?'),(_binary 't$0	,]b&\','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Event.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JyP\J',_binary '\\\Q\1\v\Vx`љ\\r\\]=\\\\\r\','',0,'?'),(_binary 'Jw\ޏ.?\','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventDispatcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jt\}\\V\f\\q',_binary ']\9@\\\Z+\y\\U\\V\ I','',0,'?'),(_binary ',㺢\z] !0Y','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventDispatcherInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=cP)ȇ\G\\',_binary 'S\"r\\1\JŸ	6\*\)-{','',0,'?'),(_binary ',Z\\n\K(','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventSubscriberInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\dT̚\d',_binary '%\\Uq\zύ4k41؊b\tDFy\','',0,'?'),(_binary 'e&\\c\a\y~k!\','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/GenericEvent.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/b\e\\X\%\t',_binary 'ηMzE\r-\'Q\>Z\\攫\	\R<\\ا','',0,'?'),(_binary '\3+oY	','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rJ\\Ʒ\\\\L5h',_binary '\=]\r\Gl\">\\!ط.ye6f*\','',0,'?'),(_binary ',iT \Ne!g	','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\p\\mzx',_binary '<&\0\08߫`\0B\\H\)\0i\\\\v\','',0,'?'),(_binary '3b\\<ף|lZoq','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3`\t\0c^8E\g',_binary '{\o\ͅ\-WFN\\B&\\\#\p','',0,'?'),(_binary '\q\\\\H6\','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'wy1\\\\V,',_binary 'P5(\/z\[N1KF\\W	','',0,'?'),(_binary 'Ɋ\WisG~ ','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/phpunit.xml.dist',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \\Rau\j)D_8',_binary '\@\q>>\)S\f,MDsg\l\','',0,'?'),(_binary '6U3\\'\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Idn.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\.\\Z0R,',_binary 'pG԰_\\͵U\ǪB\#\.4n@B\','',0,'?'),(_binary 'p\)q_\n&uʖe\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=D\'\\Wj*<3C',_binary '\qDec7O\\x@.x\\\k`V(','',0,'?'),(_binary 'hg\t\#\@\0\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Қ7ۑ9;N\'\$',_binary 'JMیZ \NG\rD\\/\\W\r.xt','',0,'?'),(_binary '\\$W\?#ʐ]y','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fhũ`tB\G+',_binary '\\ZTlfN@\\I;\\!E\\Lt\\\','',0,'?'),(_binary '\y\ԧ٘{','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ǜ}ª\?(Ln',_binary ';XYxTyTq\^B[0? /Ɏ','',0,'?'),(_binary 'Rc̆,\\nE7','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/Regex.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`\Z$BQԡ;~C',_binary 'b蘿V\oqu]\n2{4\4ˮ1~c','',0,'?'),(_binary 'ЌW\fX\2\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/deviation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/}D\\rm(`',_binary ']M\q\'Z\\5v~\\\\Y}(V','',0,'?'),(_binary '\!\\F\\xJ6','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O^t⽉\niTb',_binary '\\>n\\j\\&f{\a\{\\?GgO\','',0,'?'),(_binary '\J\n\\\d\B','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';z3\0\\',_binary '\\\\a\\\H)ݞ6\.4sϤЗjI\\','',0,'?'),(_binary 'q\=BB\\\\@YG\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E͆\k\@\>R꿷',_binary 's\\\իWUV\il\\\'#\bU','',0,'?'),(_binary 'O\\*tE3Bj\T','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/ignored.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\qʓӧ\c',_binary '\+\0]bs\Ps_\\\\\','',0,'?'),(_binary '\\Ѷ|O\\%Ĉ\n}','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/mapped.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\\\9\hnW',_binary 'kzy:\\,L=m\\ݡdN\\m\\<^!$\','',0,'?'),(_binary '<7{?a|\?','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/virama.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jS\^M\\"\\\\',_binary '[W߭j\\b mPw(\\.Y\\\\m','',0,'?'),(_binary '\\r\ɇ|듓Rq','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ug\>2\\~$<-',_binary 'lfm\H\0L*ƔZ`\ΫMfa@Aw\','',0,'?'),(_binary 't\Z\	l\BE\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '߽̂M\G\K	\',_binary '`#	\\Q&}^\\A#j\S\','',0,'?'),(_binary 'n3c\\\ԧsm]\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^s~\ǆ\n\-\`',_binary '2A\pr\A\$ {s\\\_p\>\f','',0,'?'),(_binary 'R\|.i\\P','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/Normalizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\:P\'Q(\̷9',_binary 'E\Up\\\@G\iLwξ]]58\U!\','',0,'?'),(_binary ':\Z\ئ^\6\\L\\1\\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',u\Ώ\4<\"M)8',_binary '/ˤ6\´\r\邶\>Z\N̹;\}\\','',0,'?'),(_binary 'd\ZT1 B&w{\\\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ѕ8DJ-\\\6*SP',_binary '\\s:/\@7`5եK1DSV\	\','',0,'?'),(_binary '\ɽ`lg\M\J\\a','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\\մ3\=',_binary '=Yh\#\H\X\\	\Iw\-\0Q\J\','',0,'?'),(_binary 'i\u,tJ@\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zIQ\4\"\\\\1\',_binary 'B&?ߑLaJY\\0gq\.u\'\Ȩ','',0,'?'),(_binary '\.̍0<;d>\np','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zu\ݚKb^\Cw',_binary 'qY\0\L\04ὦ{*\\\'\>\7\p֒','',0,'?'),(_binary 'i\O\Z0\R','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U)2ڤ9\ߗjVr',_binary '\\2kT\\Mr\;\eWNhN	/\','',0,'?'),(_binary '\\T\\\Z=\ 4\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\&HpjoM4$',_binary 'ڍz\\\0\|~ߒ\`$E\\"L\؀','',0,'?'),(_binary '!\?<dzXd3O\\\\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7ǒԦ/CY{\\',_binary '4S?\J\`\\(\\nm\\"n','',0,'?'),(_binary '\Rw\\#=(\^?4','wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^s~\ǆ\n\-\`',_binary '2A\pr\A\$ {s\\\_p\>\f','',0,'?'),(_binary '|U\#Uu\N\î@','wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/Mbstring.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,/8G3ln\',_binary 'Ћ\n\\0\<Z! 5Qa\3ѣ\O','',0,'?'),(_binary 'R鉮\\\R\Z\{T','wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Gn\f\\\',_binary 'K$4K3蜪DeR\\u(\\.fc-qL0','',0,'?'),(_binary '|\-\1ߪI$2LN','wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/Resources/mb_convert_variables.php8',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7n9\K}71xӄr',_binary '\\D>\\N~ɰ\Z\\\\\c\ՕRT2x)J','',0,'?'),(_binary '\i׃\\\@\N','wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\\0y&\rQ[\\',_binary 'hZ\\W*d\!7mmAp\\)ZZ\o\','',0,'?'),(_binary 'C6\l[E\ʙ\[ǁ','wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a5dxa\\\Ar',_binary '\c\j̀i\\\\D\rF\'܈s\\','',0,'?'),(_binary 'ڮKfL\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f\(j|ewR!{;',_binary '쎅g9{u\>q&z\~m>`DB?','',0,'?'),(_binary 'Ws{Qqi','wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't֊qک\?',_binary '\o\\͌P\3\ZJ\y\ܼ\`o\0|\=','',0,'?'),(_binary '\W1\If\\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ewp*\\<\!\\n',_binary '\\HF蘺)r>J7\ЂyE\0','',0,'?'),(_binary 'eq\$\n{kYuH','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^s~\ǆ\n\-\`',_binary '2A\pr\A\$ {s\\\_p\>\f','',0,'?'),(_binary '\c5\\\<`','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Php70.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0eA\^*-\\',_binary '\T\ \ @MSKX\\9ui\\\g\b','',0,'?'),(_binary '_6H&[h~','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\0\.t\-漄<\',_binary '!l:ȐUmExպ^\\B,\b7\1','',0,'?'),(_binary 'J\f/vcG0\"','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zR\f\OVx',_binary '\-BlIE\\bM+p*\ww\l','',0,'?'),(_binary 'y\G#3\\\0z\ک','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/AssertionError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ƌ5S\*',_binary '\\R-W-\%\r\\5̽G{L\','',0,'?'),(_binary 'y\KX\\<l\2','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\\cEbKk\',_binary '\}\,\|/\\%J\\=\\FU>\qdtν','',0,'?'),(_binary '}b\ƪN\5\I\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/Error.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\\\[鈊\,K#',_binary '-\Sá	qpiW\r\"fw&`\YBl\\"[','',0,'?'),(_binary '\ebLc\6Ƨ','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rs.-0\\\\>y\'^t$',_binary 'D&Ú`\i7\\\؆\\A\%PXYz\:','',0,'?'),(_binary 'plբԎ`!\>f.\x','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W?;\!\\Kl\',_binary 'A\\v:4&\\qI\rp\UE߾\l;M0','',0,'?'),(_binary '\P\\0\6r\\Z','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/TypeError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',=Ҹ1\\"o\\',_binary '߿m	s3%\(gX@Y.\l/^]r?','',0,'?'),(_binary 's\9=t\o\ٕU','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\nSVΙ\ru',_binary 'M\N\\H\CW\n\\ʆYrs\\#\','',0,'?'),(_binary '\\4	!ҰsM`%b','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qM\=a|/\0',_binary 'F;A5\/\\\\- \g53\#*\\','',0,'?'),(_binary '۶?\\>v!\\=u','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php72/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^s~\ǆ\n\-\`',_binary '2A\pr\A\$ {s\\\_p\>\f','',0,'?'),(_binary '2T\4\~\<','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php72/Php72.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+Q\Bg`\J*\O',_binary 'i>zش\$\ZrPצ1\\lo/I\\\l','',0,'?'),(_binary 'n=E\\\\F\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php72/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:K>\z۽J\\',_binary 'UO\^J\\\KɆ<2g\\U','',0,'?'),(_binary 'be*.$\\','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php72/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\{Pb\\Za',_binary 'Z\*/XR{		ocMmj\n6\,','',0,'?'),(_binary '\\\[a;.@C','wp-content/plugins/updraftplus/vendor/symfony/polyfill-php72/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\<\cKo[',_binary '`)rVTl\0U%9(\y\\{\<','',0,'?'),(_binary 't^fi\jԷ','wp-content/plugins/updraftplus/vendor/symfony/process/CHANGELOG.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\GY\-8\\EEI2\4',_binary '꼜O\'\\ZRp\#\\7.\(,޳3\gsv\','',0,'?'),(_binary '}Bؠ\q_\N^u','wp-content/plugins/updraftplus/vendor/symfony/process/Exception/ExceptionInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r:FJ!\y\\\]\\n',_binary '\g\\&mnY\\'\~\\:\) 4.\k','',0,'?'),(_binary '\0*=\/#k#','wp-content/plugins/updraftplus/vendor/symfony/process/Exception/InvalidArgumentException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y\d=\l򟳺',_binary '\e\=\\.\ on\ҴԿgБeu','',0,'?'),(_binary 'KZ[f\:\R\\','wp-content/plugins/updraftplus/vendor/symfony/process/Exception/LogicException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\>\\'[zq\\uM',_binary '`\\\'ӭƀ˞O02U &h\\\^\i\\','',0,'?'),(_binary '~\7\}/\\[s\a\','wp-content/plugins/updraftplus/vendor/symfony/process/Exception/ProcessFailedException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\A0J',_binary 'B\\)R\Iep\VL\v%\^','',0,'?'),(_binary 'mB\:R\Z`[\g\[v','wp-content/plugins/updraftplus/vendor/symfony/process/Exception/ProcessTimedOutException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\`s~z^\',_binary 'SX\*>c\B\\:4F+\Vq\\\\-S\\y','',0,'?'),(_binary 'h\I|\"\','wp-content/plugins/updraftplus/vendor/symfony/process/Exception/RuntimeException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QsPSRz\0w[-g',_binary '\\\FI\\\\O\˄\\Ʊ[?4{YC','',0,'?'),(_binary 'cx\\\8S\q\','wp-content/plugins/updraftplus/vendor/symfony/process/ExecutableFinder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\\\\3٪_f',_binary ']\LKʰ\'\\TKCy\\i\;\','',0,'?'),(_binary '\%\b	Fy4','wp-content/plugins/updraftplus/vendor/symfony/process/InputStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w~4\^\EU{%c0',_binary '7\FHg\	8dЅ`\\n38Gu^\','',0,'?'),(_binary '\\n\\c#<Q\D','wp-content/plugins/updraftplus/vendor/symfony/process/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M^\Ͳ=n=Yzy',_binary '0B=\\M^4d\\N\0`)\*D\\i\\\','',0,'?'),(_binary '\ި\\\+\^\','wp-content/plugins/updraftplus/vendor/symfony/process/PhpExecutableFinder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\pSADdQ/',_binary '\$\K\\FhlםP\ZI\b\','',0,'?'),(_binary 'DBR\\0cZxz','wp-content/plugins/updraftplus/vendor/symfony/process/PhpProcess.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%:OYvšQV',_binary '\piIl|.(\\gh\\\OP\h@&,\bx','',0,'?'),(_binary '\ E\\\aŐ=\','wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/AbstractPipes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^_KI\1\+,',_binary '\kQλR\*i\1\YP>&\&2','',0,'?'),(_binary '*\\I\\\i9\n?','wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/PipesInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\\\f\=֏w&;',_binary '\x׽S+\\@Vv\\K\H','',0,'?'),(_binary 'xm\f\>>%\n','wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/UnixPipes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~\;\R',_binary 'ca,\\n01)FǇO\]L\pnsC\]','',0,'?'),(_binary '0\0{Xdy','wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/WindowsPipes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\8\s5I',_binary '\6sur?\f2>z\Bn\_k\X4','',0,'?'),(_binary '^\\e&\yԴ\\'','wp-content/plugins/updraftplus/vendor/symfony/process/Process.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\s4S?\W\'',_binary '\\\y5USr \1^eq\\=N17:F3','',0,'?'),(_binary '\\\\Kz[\hOe','wp-content/plugins/updraftplus/vendor/symfony/process/ProcessBuilder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ށH\PW\,\'t',_binary '\\\\(46ǞݡoVl1\rބ¥','',0,'?'),(_binary 'k&\ADj#p\}g\','wp-content/plugins/updraftplus/vendor/symfony/process/ProcessUtils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uBw51l\',_binary '\Y\Lz\\`݃\lg6\L\','',0,'?'),(_binary '[SNRXFAvX','wp-content/plugins/updraftplus/vendor/symfony/process/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\\`M\n\`',_binary 'L\Y\\nM F?.\\r8\qRradئ|\','',0,'?'),(_binary 'E9ۅϝ:\\\	','wp-content/plugins/updraftplus/vendor/symfony/process/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-1_\"\:\',_binary '\\ޮU\-$Iả\cQ\+,i','',0,'?'),(_binary '\#l;K\\\\','wp-content/plugins/updraftplus/vendor/symfony/process/phpunit.xml.dist',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\&K\T',_binary '!y<o5\\x\Uk	>UhM+','',0,'?'),(_binary '\vd\|ă|g\Ti\','wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/CI/php-compatibility.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uL\*CE*ԁF\',_binary '_Q\9,h=)U%\?B\\9\	mH','',0,'?'),(_binary 'D\\:jl\M%A\N','wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/CI/php-syntax-check.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J.+ \":	Ԃm\',_binary 'MI4x\g~\0\R\n4e:NԨ\','',0,'?'),(_binary 'X\\\\u1\\N?','wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\mI\nl\Z',_binary 'ߤ2+|\&\rX.ch\g\<\W\ɒ\"\','',0,'?'),(_binary 'b<0yIe\\"\\\\','wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(k\8Lc.\\\4h',_binary 'wwK<AJǏs6\)\$[\1sR\n\\','',0,'?'),(_binary 'LjƢsjFB3waw','wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-semaphore/class-updraft-semaphore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\L\bVSd2b{v\W',_binary ' \bg\w<\\\\y^÷y,<{\\','',0,'?'),(_binary '=&\l9to{rB\\\"','wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-semaphore/test.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\u\UҀ',_binary '(lʥS\|l>\0\p8r\C4p+\','',0,'?'),(_binary '\\\\6\")-Ī','wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager-commands.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C}to{\\(g\\O',_binary 'Jמb?\\sPPϘZ4|H\t\㵭\','',0,'?'),(_binary '\U&ɟ|\ſk','wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|)\\4zv\{',_binary '\޴\`*\\\\|G,\\7O\JDOL','',0,'?'),(_binary '	3XR\t^l!+','wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#=\V\GMGf',_binary '\'cf\Z5\uɩ+N\Iv\鍛,_\\\@l\x','',0,'?'),(_binary '~\\I\.>E3q\','wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r]\Cp\MSN,lK',_binary '\\zrK\\%\$\nUڋ=3\h5\\ZM','',0,'?'),(_binary '\\>\?\x\\	\\','wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\f\Q\\\0 ',_binary '*g8\r\LA\5 \:sզA}\=Z','',0,'?'),(_binary '@D\\23}A{','wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-tasks-activation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\g\7uz',_binary 'IӇ\Ԅ  lb\\T\\% m!\','',0,'?'),(_binary 'ݴ쥇G-`','wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerFFWDShortcode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȑ8\G\o\s\\"',_binary '2\W4I%\h\\GewU9\\M','',0,'?'),(_binary '\ (ۉN%','wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerInfo_ffwd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}*\w\}\\ZO\;',_binary 'uK\)x:\]lc\\PǞn\.\\\^\','',0,'?'),(_binary '\\6X6\8J9','wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerLicensing_ffwd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's!`>\4\\:',_binary '\P&\\Q`N\a@d\=\&L*D\r?\','',0,'?'),(_binary 'd\yORؗ\'xb3','wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerOptions_ffwd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\rF_홾xh\n^\',_binary '@\W\6wsP1O-z@[\V','',0,'?'),(_binary 'F14n\\R\','wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerThemes_ffwd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' =\\\׳\d',_binary 'oT\iBF*FO߭<G\[\&','',0,'?'),(_binary '\\\q7\(\3','wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerUninstall_ffwd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\ʳu\λ?',_binary 'w=U>\&\sT\p \=\1NS3!xR\Zۅ','',0,'?'),(_binary 'd`\O\P','wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerWidget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\-s\\\mX\\',_binary '|CMrQ\c\\G\C,\\\w','',0,'?'),(_binary '\L\\?,~\I','wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelFFWDShortcode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@RH\\1\r\\V',_binary '`]]\ .\Zb2\\Z\]@\y:\R\ϒ\','',0,'?'),(_binary 'eb\Z@\r\E\I','wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelInfo_ffwd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$Ç\_^!<+硹',_binary '|#\W>׳\I\>g`\%\eCy','',0,'?'),(_binary '\\#\2/VL\','wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelLicensing_ffwd.php',0,_binary '\\!2\X0Wi',_binary '\\!2\X0Wi',_binary 'X.,<=\Wt\nw\:DV\D\Z\'%','',0,'?'),(_binary 'ʯ\j$}L\.{[\','wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelOptions_ffwd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;%(B.\r?d',_binary 'k<G\\gjN`6;XzMq\\z\~\\Z','',0,'?'),(_binary '_#?Id\\\OEb\','wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelThemes_ffwd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'υ\\Gۤ1\\\nVY',_binary 'Ghs	\wRq;\!DZƯZ2\)','',0,'?'),(_binary 'd\s\ \Ӂjbb','wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelUninstall_ffwd.php',0,_binary '(՝mEιA\',_binary '(՝mEιA\',_binary '\0W\&\=$\'guĿx\ZqMAt\\2','',0,'?'),(_binary '\N\{@Ti\','wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelWidget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\V\\O\,3o',_binary '\\g\BTX%\]\4\vJdj!}','',0,'?'),(_binary '\\\\Er\\0\q\EI<','wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewFFWDShortcode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\HRY>̧(a',_binary '\hA\>\L\k\\!?K\\ \:г','',0,'?'),(_binary '\\\׼t\\[d\[','wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewInfo_ffwd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b{!hm\UE',_binary 'U9UsT12E\v(+\K@\%\K\ ','',0,'?'),(_binary '\dU|S篚7','wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewLicensing_ffwd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5O[C-\\O\\?',_binary '\\\O\X掶K\hR\\r\e\7~,b|','',0,'?'),(_binary 'W֥\\=3k┒%P\','wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewOptions_ffwd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\FM\\\\r\0R',_binary '\Gʶ~\!Rd\\W4U>r䜉\','',0,'?'),(_binary '\S\ D\jO<\','wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewThemes_ffwd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ZP,\n\W\\\Cꁮ',_binary '`:\Mmt\\0 lhݔxU#\\b\','',0,'?'),(_binary '6n-\\LB\\e','wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewUninstall_ffwd.php',0,_binary 'Onj\p;SݿSl',_binary 'Onj\p;SݿSl',_binary 'y\\su\/ޜB\k\\Xpr\;X˷','',0,'?'),(_binary 'T4P\r\8\d\J3','wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewWidget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\v+\TX߁\>\\mx',_binary 'w~_l\\\\'5\&\\\D\\i\\','',0,'?');
INSERT INTO `wpjj_wfFileMods` (`filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`, `SHAC`, `stoppedOnSignature`, `stoppedOnPosition`, `isSafeFile`) VALUES (_binary 'g\f6.l6\r\','wp-content/plugins/wd-facebook-feed/admin/views/uninstall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%Ӛ\R\@\1',_binary '!PăK\r/\\O6˒Иo\3&E_','',0,'?'),(_binary '\\C\jDŢ\^i\9','wp-content/plugins/wd-facebook-feed/css/ffwd_frontend.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q8n/c)a9\',_binary 'j\"<F6@\네Q\\zW-\\a','',0,'?'),(_binary '\\y}Y1\}Rr\\'','wp-content/plugins/wd-facebook-feed/css/ffwd_notices.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zɯ\\r\]|9',_binary '\\jnCs.njxFj\"\0\^\\','',0,'?'),(_binary '{\P	\Z\\\0 F؁','wp-content/plugins/wd-facebook-feed/css/ffwd_shortcode.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cBN\=S\0\^\\a',_binary 'R\L^)\\/>ԶK+m\\%\u1','',0,'?'),(_binary '\	\5JD퐕\\\=','wp-content/plugins/wd-facebook-feed/css/ffwd_tables.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"͸MFf\\mD\',_binary '\OЕ\8诲\qq4jBmR\G\3\','',0,'?'),(_binary 'Q\\9Û욷\\\(','wp-content/plugins/wd-facebook-feed/css/fonts/ffwd.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T4?\\HȘF\3\',_binary '\֤\R/Ɩ\[\\Z\.%Tq\\?$z%܊q','',0,'?'),(_binary '7\Z[h/\\h\','wp-content/plugins/wd-facebook-feed/css/fonts/ffwd.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\iQ4\r\Ԣgf',_binary 'r6Jcv3!2 (SȕG^G8\']W','',0,'?'),(_binary '^\\>7\\';ou\0','wp-content/plugins/wd-facebook-feed/css/fonts/ffwd.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lJ\{D\ h',_binary '@Ұ{\nRPr\vXQ\J_*\%y','',0,'?'),(_binary '\\K\UFyKF','wp-content/plugins/wd-facebook-feed/css/fonts/ffwd.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dSH\M\\GrX\>',_binary '}\\,b\<\gv-\\\\','',0,'?'),(_binary '\8aH\0Fu=','wp-content/plugins/wd-facebook-feed/css/fonts.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\`\N|sQ\x',_binary 'l\p\\nE+7\c\'n	\n\ޏ?`','',0,'?'),(_binary '\8>\\\\>\Fd\','wp-content/plugins/wd-facebook-feed/css/images/animated-overlay.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+/|S\0ͤ%\',_binary 'z<L\\V홉%\'\Pk\&@DS\ܥ','',0,'?'),(_binary '\j\ީ\\\\','wp-content/plugins/wd-facebook-feed/css/images/help.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\sl`0@6\lg\',_binary 'wW\0+\-\š4\.~\ւ\\\0,鷉\j','',0,'?'),(_binary 'S[<YG0Sr','wp-content/plugins/wd-facebook-feed/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\[\\\\\\Ae-',_binary 'lsRئ\]4\0h\\\'g@\>ѧ\\Z','',0,'?'),(_binary '=R^!\wiN8\<\','wp-content/plugins/wd-facebook-feed/css/images/ui-bg_diagonals-thick_20_666666_40x40.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\Cg\0\p\,>[T',_binary '\B\\Z\\\ɭ\\Ol2/\\\3Z\','',0,'?'),(_binary 'i6k\я\"P\\','wp-content/plugins/wd-facebook-feed/css/images/ui-bg_flat_10_000000_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\| \\\@\',_binary '\>$\h*1\`i9|ss@\IC·y5','',0,'?'),(_binary '\rE)g`-Ɋ	J','wp-content/plugins/wd-facebook-feed/css/images/ui-bg_glass_100_f6f6f6_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YE~a*e3Gm\M',_binary '\a[/X*\I^\vO~!\?*\OʁS\ѱ','',0,'?'),(_binary '@o\G\O\O','wp-content/plugins/wd-facebook-feed/css/images/ui-bg_glass_100_fdf5ce_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/E\C\1I\pB\',_binary 'Ȣ%/n\n]ߴE-j⠐\()\\e<','',0,'?'),(_binary '\\\\IZ\\\rF','wp-content/plugins/wd-facebook-feed/css/images/ui-bg_glass_65_ffffff_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\'wGb*\0',_binary 'vl5\`SzC\\!\\$Zz\\\\','',0,'?'),(_binary '\4оX5 \lD','wp-content/plugins/wd-facebook-feed/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)\\S!Bb4X$\\',_binary 'S=1\e\Z\)\\\߫o.|\Y','',0,'?'),(_binary 'u\E\\V\\ް','wp-content/plugins/wd-facebook-feed/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E\2L\IJ\',_binary 'م|\n\v\t:<,\,:tF>\q:L\0','',0,'?'),(_binary 'N5%Tb\\+b','wp-content/plugins/wd-facebook-feed/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h\\\xVrᕙ\ڌ.',_binary 'a\m\x&\-\@\[\b\EםH@-','',0,'?'),(_binary '\`Y\Y\\\','wp-content/plugins/wd-facebook-feed/css/images/ui-icons_222222_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\<S\X_',_binary 'ھ\\*61Z(\\'\n#W=6','',0,'?'),(_binary '\>&_M\E\AmT','wp-content/plugins/wd-facebook-feed/css/images/ui-icons_228ef1_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sO\k,^\.퓷ӭ',_binary 'lZ\484\\4M\\\3!}\N\S\Z1','',0,'?'),(_binary 'li\Z\D\\q>\7\','wp-content/plugins/wd-facebook-feed/css/images/ui-icons_ef8c08_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%nO{$\\nϿ',_binary 'b\r\F\\^>#\M\ݔ\\߲i','',0,'?'),(_binary '3\\Z-`\\:4VC\','wp-content/plugins/wd-facebook-feed/css/images/ui-icons_ffd27a_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[\9#!\H',_binary '\\aa\㳌HV\uYgϓ\)\jc\'','',0,'?'),(_binary '\\\\	!ِw\S','wp-content/plugins/wd-facebook-feed/css/images/ui-icons_ffffff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\tzM\$2',_binary 'CDv!n#\[\/\xOd9\q{G\+E','',0,'?'),(_binary 'V\\q\|]-\\)','wp-content/plugins/wd-facebook-feed/css/jquery-ui-1.10.3.custom.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(]S)jҍ',_binary 'glpvy\ú\\?\=h\Py/\t','',0,'?'),(_binary 'D\vlb[Szzў','wp-content/plugins/wd-facebook-feed/css/jquery.mCustomScrollbar.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\D\Z qTV',_binary '\\{\^\!܊B⤶BHgo\`,\^/$','',0,'?'),(_binary 'Bw6ѬFgѸiϳ\','wp-content/plugins/wd-facebook-feed/css/topbar.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\;d׆q\\n\\\ZF',_binary '⺾aH֕\\B%`\\lz1t','',0,'?'),(_binary '\sf:S?ian.7Á','wp-content/plugins/wd-facebook-feed/css/tw-gb/block.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\\l\-+jm˞E',_binary '\\M߻ƪ\sKm3\9qp\Z\\7\ ','',0,'?'),(_binary '\.\O\\R[','wp-content/plugins/wd-facebook-feed/css/wd_bp_install.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4T+zq\\ޖNѶ',_binary 'ͫ*Ԡ\κګ*\JW\A<\nW\\','',0,'?'),(_binary 'Q\\P=~\\)h','wp-content/plugins/wd-facebook-feed/elementor/elementor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\)\\A%(ɿngb|',_binary '/\\n0\/7\\i+屈\\TNdWAb\.','',0,'?'),(_binary 'p6S`jf\{\','wp-content/plugins/wd-facebook-feed/elementor/js/ffwd_elementor_widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n	l\T-Dn',_binary 'JH3\.\\\0\\\z\+Ɗ\~K','',0,'?'),(_binary '\+\\znu5\','wp-content/plugins/wd-facebook-feed/elementor/styles/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]X\Tű_N{\\',_binary '=R9\p\\u\Y\d\!\\\Jl','',0,'?'),(_binary '5^	7\^n\b','wp-content/plugins/wd-facebook-feed/elementor/styles/fonts/twbb-icons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Hs\0\\qD;=\h',_binary 'Aml/ \\rE\\u\\\%\\ GB','',0,'?'),(_binary '%F\}/\0xO6\s[','wp-content/plugins/wd-facebook-feed/elementor/styles/fonts/twbb-icons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,]?0\k\\J\C',_binary '\ǦӟP/I݉[z^PB\\','',0,'?'),(_binary '$\\O\wH|\'','wp-content/plugins/wd-facebook-feed/elementor/styles/fonts/twbb-icons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\O\6[O',_binary '\ܰ8xj!O\0\r\듖zt	[//\N(S','',0,'?'),(_binary ' ʸ+(cpl u','wp-content/plugins/wd-facebook-feed/elementor/styles/fonts/twbb-icons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y3#\0v8d	R\',_binary ')?-;=\:^\x\\0\\HT*DVj','',0,'?'),(_binary '\J\rϾbE\','wp-content/plugins/wd-facebook-feed/elementor/widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z9TZ+\N',_binary '\4\\v{sjظgQeWȐu\l','',0,'?'),(_binary '@o#Ey6\P|\MQC','wp-content/plugins/wd-facebook-feed/facebook-feed-wd-notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xPp\`\',_binary '\k\kS\\}I<f\'7\Wa\k_\l,p','',0,'?'),(_binary 'eK\1My\','wp-content/plugins/wd-facebook-feed/facebook-feed-wd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ё95JD\`\',_binary 'G/kILɽtw2X?\TH\764','',0,'?'),(_binary 'e\B\\tS\:M','wp-content/plugins/wd-facebook-feed/fonts/arial.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ns}l\\\q-',_binary '%6LF\i\no\"O^cu\\\\u','',0,'?'),(_binary '(\~\:B\b','wp-content/plugins/wd-facebook-feed/framework/WDFacebookFeed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \u<l\ݤ',_binary '\iftnFwpn;^M\'Qƾ>In','',0,'?'),(_binary '}A=v^\','wp-content/plugins/wd-facebook-feed/framework/WDW_FFWD_Library.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Fr\\',_binary 'Q*\9vzYg5ڰOi\\/\[\','',0,'?'),(_binary '\\\0\/9p+\nV&','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/base_facebook.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZP9X\F\yjo5\',_binary '\!\\FRoA]\\\\\KZ/r','',0,'?'),(_binary '(D}yH$n\\4:;','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/changelog.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\3mգ\aho\\m',_binary '\\i\!j)k\\\\FA$qvl\f)p\','',0,'?'),(_binary '\aUb\\s7','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/facebook.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')6\^\H\4',_binary '\ͬZHx*HJౝ{B\(\Jo:w','',0,'?'),(_binary '\^G\]-Ǭl?\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/fb_ca_chain_bundle.crt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)\pо\gh\\',_binary 'S9	1\-\%{7̯kA\n\lbP\\','',0,'?'),(_binary '\	=a޴\}+','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/readme.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*7,\]\',_binary '28\/\S\)@\W6\5\\n\\','',0,'?'),(_binary '\J1`xg7\\\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Authentication/AccessToken.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0=D1XE',_binary '_8D\"J؋ir^\j\H\N\y7ѿ\'S','',0,'?'),(_binary 'ck\\0<\U8\.?9','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Authentication/AccessTokenMetadata.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\J]\Iv\I6\',_binary '= Lwp\\';]\T\\\0\.\\!ć','',0,'?'),(_binary '-\N8e=\o','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Authentication/OAuth2Client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gm\\5XQ@',_binary '-_V^arg^3jkjiC\\>qI','',0,'?'),(_binary 'dk#gq\N\0','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookAuthenticationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~\\TE\\'s',_binary '\\g\ߌ}a\\UjA4l\{','',0,'?'),(_binary '0{N	\rz2\h\e','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookAuthorizationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\|\\яu\-\.',_binary '\\\mV\$L\?|[\`\\Z\','',0,'?'),(_binary '\\H\\ZC\\\n','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookClientException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\\\^ݺ\',_binary '\0RYB]bCNHJ]\ޠ\mH_\#\g\','',0,'?'),(_binary '\:UVx\\\-F;','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookOtherException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9\\0%T\',_binary '^K0n)>\o%Y\\?\+/B.\\ȍ','',0,'?'),(_binary '\\3\ĵP\S','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookResponseException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^0e\i&R\r',_binary '\%I|\i^j8\\\f\ 1\xIP','',0,'?'),(_binary '\I6-n+e\CO*','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookSDKException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-=\{\\-?\U',_binary '\n\\\L\'*9PW\T*1Y\>bEՇ','',0,'?'),(_binary '~\|N\\\7h	\\\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookServerException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '..R!e1\z\\\',_binary '\32B7\7-qTTr\o1FP\\v\\','',0,'?'),(_binary '\\\\U\\(','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookThrottleException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jH\[ 0\ZO',_binary '\Y\oF̿s\ABH3.73\xG=D\','',0,'?'),(_binary 'K^C\S\Ֆ`','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Facebook.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\\\x_\\"t\R',_binary 'B\M\;\\BB\h\;z\\x\','',0,'?'),(_binary 'La\Z\\\ҿb&0','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FacebookApp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E բ\\袠\l',_binary 'TJP\r.T4J@!\Z g\ʵ=\\"?L\M','',0,'?'),(_binary 'e2KyK\"S*.','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FacebookBatchRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9%2Ip3~gs',_binary 'J񬼝\\k\\0#@Ga\7EH(','',0,'?'),(_binary '\\fj','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FacebookBatchResponse.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\\n؂8\^=\B\\',_binary '\g\\"05{&M\\7|,?OAUZ','',0,'?'),(_binary 'G8Ҩ\\C\\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FacebookClient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ps\ZmI\\{F\ ',_binary '|5$\0\\nZ<,T\\i\\r>fa\<G\','',0,'?'),(_binary 'e;n]뫂','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FacebookRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\љ_.oQhC',_binary '5\p,	\y\\aSZdRdp\\'HE*Z','',0,'?'),(_binary 'ej2\\13hT\\>\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FacebookResponse.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\\iYMi\\Z',_binary '\i\\\_Mmju\޷\95fzs\&I6','',0,'?'),(_binary '\=D\\\]ŵ*t','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FileUpload/FacebookFile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'բ OjIc',_binary '\\~z	\\}\'.\l\n\8Hs8','',0,'?'),(_binary 'h!\n\\\pd\Z','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FileUpload/FacebookVideo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tLQ^\\+',_binary 'U\+az\\\\\ϸWUr\{BF\\r','',0,'?'),(_binary '<i?\Z*U\0','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FileUpload/Mimetypes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݟ\My\3@\\-%\rڄ\',_binary 'v^\0V\/\\۲\\nC\','',0,'?'),(_binary '\\ʟ%ĕΨZ\\'','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/Collection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\Y\\\PJ/',_binary '\Ty+䵸\Śf\,=Z<(Zf\S?AW','',0,'?'),(_binary '\N\a\쮬N#','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphAchievement.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t{&\}t\(R',_binary 'ee\\y-F\y:vJ\\P\K\6o\','',0,'?'),(_binary 'P7Xz\oGѪ\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphAlbum.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gm\]>\ylw$',_binary '4/	vt[\\X\Y\n\kcFҹ\"\\^\','',0,'?'),(_binary 'qgjm4%\F\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphApplication.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l@\\\ɦI}c&\',_binary '>(\24rctJ\\\0x\sJ^*s\5`\<','',0,'?'),(_binary 'p\r$\\ξU[9','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphCoverPhoto.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gg}[k',_binary 'b\\U\!\#\B\ǫ\6~\~M\','',0,'?'),(_binary '*\	s<$d','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphEdge.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dQON %UKF\0\',_binary 'E\-\.26\N{\\\\M\9t\\\\','',0,'?'),(_binary ']\cL\~H\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphEvent.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xI\\6\r\;\',_binary '\M\=\\#^s	s@8\\a\@u\qr','',0,'?'),(_binary '#\M\Z\Qap-','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphGroup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M\2_\\Mgu@m',_binary 'mIɪ:\X*\u_Ǿp-HU-','',0,'?'),(_binary 'j`\[&\'L?\\T\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\rj\\"YEAt\',_binary ':\\RU~c\rK\nB\\\\+\.?	','',0,'?'),(_binary 'w\^ao27','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphLocation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',r\Z]\Q6bi\',_binary 'D6d.\\ZNDd\\}cz','',0,'?'),(_binary '\At\ZHRSK','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphNode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\-ճrԷ',_binary 'y]na\'cET<\(\R%\','',0,'?'),(_binary 'b([!\Z1e\0}','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphNodeFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\@H\6\6p6',_binary '7iK\`\̽\nyn\SEͳĉM8\2z\','',0,'?'),(_binary '\L6\r,','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphObject.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Fj$\m\\'',_binary '~y\\9\Ě2$\\(Lu#lsI%\G','',0,'?'),(_binary 'q`bDL\o\\\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphObjectFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\).\v\\',_binary 'Z}\][^0T\$U\Tξ\\\Z3?\4p','',0,'?'),(_binary '\8k执\ǃ\\\'ڣ','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphPage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O݅(I\\0\f1/D',_binary '\\\n#H\rhZ~W\rw\\j!+L3','',0,'?'),(_binary 'b,,!S햟3','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphPicture.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\U\p\\p',_binary 'q\\\kh\r\sGă28Ͽ3[','',0,'?'),(_binary 'n˕אb\FY4	','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphSessionInfo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*w\1,Z/\}',_binary '\"/\\]\\\qTT|ߊ\Uoz\0','',0,'?'),(_binary 'u\n\}\"\X\sF','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphUser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p6\X\w9\+WZ^',_binary 'I1\@Ő\\"u\O>:\".Xü6	\y\>','',0,'?'),(_binary '\専\\o\\Q','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Helpers/FacebookCanvasHelper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vy5\F(2\\S\\"',_binary '\66\\Zm=Ө\-M!!oĘ\'\vk\\','',0,'?'),(_binary 'W9̣\\e\:2}jY','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Helpers/FacebookJavaScriptHelper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gy3gI\N\Z\\r\-',_binary 'cb5\w\uG\m\dtݫ@&','',0,'?'),(_binary 'Ju\r?\\S*2\0x\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Helpers/FacebookPageTabHelper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ʡ\PӝI',_binary '`\LW5󒆐Up{\\\ӓɭ','',0,'?'),(_binary '\e78	O( cg7','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Helpers/FacebookRedirectLoginHelper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\\4?',_binary '\6\08\Ȁ\aeӱR&] ','',0,'?'),(_binary '\\Tx\'\M;GJL','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Helpers/FacebookSignedRequestFromInputHelper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '҆K\P!Ν\i\',_binary '[y\7{\\\ns#tC\dDE\%','',0,'?'),(_binary 'ǐK@\b','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Http/GraphRawResponse.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\w^oY\Vew',_binary 'u\";\n\\m8U\XE\\ɥ<>\'ԟ9\H','',0,'?'),(_binary 'd,Fp\\R\\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Http/RequestBodyInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\\VeUB\r5b\',_binary '7,\\.\n3wJ\\dO~ǢY\','',0,'?'),(_binary 'ެ\~Qr\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Http/RequestBodyMultipart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\MW\|\'\\i@\',_binary '\\\#\\8\R\\\\\\'_\','',0,'?'),(_binary '̱u	VY\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Http/RequestBodyUrlEncoded.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\Ry^9',_binary '5\Q+^1 \Z6_\\\\\,\n\`\W','',0,'?'),(_binary '\\,ExF- h','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/FacebookCurl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ƞ\Ū녖\rՂ\',_binary '\0\\y\Y\"\%sM7\ZzÆ\\l鰧W','',0,'?'),(_binary '\d]\J_\'\\\x','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/FacebookCurlHttpClient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\pjRS%>`',_binary '۰X6\\rLM\^D`a\\D\\\\','',0,'?'),(_binary '\A\\ap\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/FacebookGuzzleHttpClient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\\&\a\\Z\\\',_binary 'y\vk\Wm}P\=\g\\lȚ\n%7','',0,'?'),(_binary 'Ѐ/\L\\62%t9D','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/FacebookHttpClientInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\Eq@\\r\1s',_binary '$\r\b\\?\\\<YLl򉳟POk\:','',0,'?'),(_binary '9\Xd\Qp','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/FacebookStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/暉291C	iY0J',_binary 'L7\3I\3H\rҦ\\3\Qm8\rvا','',0,'?'),(_binary '%%?Kڈm!93~','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/FacebookStreamHttpClient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\e \+e!s\Q\',_binary 'Z\a\\Z\$^\6F\È@\\l\eD\\m*','',0,'?'),(_binary '\av\\p\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/certs/DigiCertHighAssuranceEVRootCA.pem',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';}\UXFm1[d',_binary '\\\Zِyq\\\h\$\\0߀ӥf','',0,'?'),(_binary 'hur|_h2\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PersistentData/FacebookMemoryPersistentDataHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ֹ\\\=\n\J\\k.h',_binary '	t\n7\\\#O3\i\\7$2b\\"\4\\','',0,'?'),(_binary '\WK\u\\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PersistentData/FacebookSessionPersistentDataHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\&\7&\#Ah\',_binary '4\4\e\\4\:\()G [1\x','',0,'?'),(_binary 'C_gĮ~X\+F','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PersistentData/PersistentDataInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Uo4B\\)',_binary '<^,jK.\\ ьDfy\>\d\\\t\0','',0,'?'),(_binary 'Jp\aX֛K4=','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PseudoRandomString/McryptPseudoRandomStringGenerator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\0\\O*SL+',_binary '&}z<)j\\\Ή8X&і_\N\Īf\*','',0,'?'),(_binary '\\\\Ū\īpEl','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PseudoRandomString/OpenSslPseudoRandomStringGenerator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \]\0X`rS`Qlc',_binary '\	]\J\\a\\fn~(\ne5\O\\\','',0,'?'),(_binary '\\bzDӻ\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PseudoRandomString/PseudoRandomStringGeneratorInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NQ0\G^\6`a',_binary '؅\\\e5$%\s\MQ\ZOV|','',0,'?'),(_binary 'X\\\\+X\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PseudoRandomString/PseudoRandomStringGeneratorTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%\RË\',_binary 'w\\v\@\裐\Uv\\3˩\Qu','',0,'?'),(_binary '\0q\P\\\n2:\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PseudoRandomString/UrandomPseudoRandomStringGenerator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Y$Mn~_Gx',_binary '2}\\\}!G\^.\YY\\|#Z}UzM\\','',0,'?'),(_binary 'U\\<\\syp','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/SignedRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't*k״`]\0C;#f',_binary 'WXzs\]Գsxd\&qN/\\\ZJw','',0,'?'),(_binary 'ep\dt\i\\','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Url/FacebookUrlDetectionHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\a.\_\+s#\r#\"\',_binary '[D*o\OyVw`\'y6x\d%j','',0,'?'),(_binary '>z~\\[\\\\m','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Url/FacebookUrlManipulator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q\"3\\$',_binary 'qeTZTw\n\@\\%t?$X\Z\\|$','',0,'?'),(_binary '\L5\\\y`','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Url/UrlDetectionInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rڣ\\cDO<',_binary '_N\n\U::\z^P\w]Wo\:\do','',0,'?'),(_binary 'P}Xä-ah{7\ng1','wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jC.X\0\8ҿ\7\X',_binary 'x\\)Z1)*k\1La\\̾\Ğ','',0,'?'),(_binary '\C\n\\5\0\\\\','wp-content/plugins/wd-facebook-feed/framework/linkify/Linkify.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\),@0\-VC',_binary 'g΃\\J@P+	_6=}阐\>','',0,'?'),(_binary '*Amhm^\+\','wp-content/plugins/wd-facebook-feed/framework/linkify/LinkifyInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\LR\J|\\4\',_binary '\\wW-a\YɬԅZ\"9In\HP_\\"\5','',0,'?'),(_binary 'R5γ?\}\\ȡ','wp-content/plugins/wd-facebook-feed/frontend/controllers/FFWDControllerMain.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's>\⢗䚓U!',_binary 'K\*\_\W8\vW\r\\7)eKB\','',0,'?'),(_binary '\hܩ7\L','wp-content/plugins/wd-facebook-feed/frontend/controllers/FFWDControllerPopupBox.php',0,_binary '\n<LǜI\K8',_binary '\n<LǜI\K8',_binary ')\\iڨ\u\J\\iw\n4@','',0,'?'),(_binary '}iTTN\\\1\'?d\','wp-content/plugins/wd-facebook-feed/frontend/models/FFWDModelAlbum_compact.php',0,_binary '\\}YEa\RD_m\r\',_binary '\\}YEa\RD_m\r\',_binary ';\\dL\rRyƏU\sh\	D]`E7\&','',0,'?'),(_binary '޽jR\E\\,X:Gd','wp-content/plugins/wd-facebook-feed/frontend/models/FFWDModelBlog_style.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\9Czvli',_binary '3xO.\	\t~\+i\\k\\<b\','',0,'?'),(_binary 'C?L\~\X\R\Xݔ;X','wp-content/plugins/wd-facebook-feed/frontend/models/FFWDModelMain.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XV)yE%zNkd=y',_binary '\h\^\\\\"\+PfR:+Qn\\U\\','',0,'?'),(_binary '}gBe);\','wp-content/plugins/wd-facebook-feed/frontend/models/FFWDModelPopupBox.php',0,_binary '(\sen\rd\j',_binary '(\sen\rd\j',_binary 'Q\W︩\\PpgŚ?n0\\N\\SD','',0,'?'),(_binary '\0JT\\EHL\{\5R','wp-content/plugins/wd-facebook-feed/frontend/models/FFWDModelThumbnails.php',0,_binary '^\,BTCGJ',_binary '^\,BTCGJ',_binary '&2P܄w\\OSR\	\C.Y\','',0,'?'),(_binary 'Ca.\!O','wp-content/plugins/wd-facebook-feed/frontend/models/FFWDModelThumbnails_masonry.php',0,_binary 'Ñ\/\(B\eܩ	',_binary 'Ñ\/\(B\eܩ	',_binary 'Xx3E%\b*\DGoST\p\\','',0,'?'),(_binary '#⇗Wj\\rce\X\s+','wp-content/plugins/wd-facebook-feed/frontend/views/FFWDViewAlbum_compact.php',0,_binary ':\\N\\\\3j)',_binary ':\\N\\\\3j)',_binary 'N\ZL.i\r\ɽ7nCb}D\nxĠ\;hu\','',0,'?'),(_binary '\Ԧ^\\^@Ռ\','wp-content/plugins/wd-facebook-feed/frontend/views/FFWDViewBlog_style.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VR\\RH\vFP\',_binary 'u\[q,p\\J\\\@/6\-MW','',0,'?'),(_binary '\E`\O=\\ե\\|\','wp-content/plugins/wd-facebook-feed/frontend/views/FFWDViewPopupBox.php',0,_binary 'K\3%\Hm',_binary 'K\3%\Hm',_binary '\i7\6Pݻ\nRS\\\ZCzKg\z\\xT\\\','',0,'?'),(_binary '&\s\(\n\\PN\\;)','wp-content/plugins/wd-facebook-feed/frontend/views/FFWDViewThumbnails.php',0,_binary '@uwz7\;N',_binary '@uwz7\;N',_binary '{s\xm?\ej.E%\$n\ns\e\','',0,'?'),(_binary '=B\/\\+=pk\0\','wp-content/plugins/wd-facebook-feed/frontend/views/FFWDViewThumbnails_masonry.php',0,_binary 'iLf\\Sᥓ',_binary 'iLf\\Sᥓ',_binary '\\Zi\{A-\Բ\02\Cވ	B\RM\','',0,'?'),(_binary '\\O_o\\.=','wp-content/plugins/wd-facebook-feed/images/add_but.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\v>oA\\t6Þl',_binary '൹]nV\\%\Z\6\"Y\\&Qm\\觾D','',0,'?'),(_binary 'KL\Z\BOӳ','wp-content/plugins/wd-facebook-feed/images/ajax_loader.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5`,ہOO\0C\%|',_binary '\\\јe.H>\0n`\\\\@\\I\?wA','',0,'?'),(_binary 'G\\nnl]kd\!','wp-content/plugins/wd-facebook-feed/images/album-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&[,k\\˱!_\\',_binary '\Z\S|\\]K橢9۶&LyʷO$5','',0,'?'),(_binary 'ZjP٨\R\\','wp-content/plugins/wd-facebook-feed/images/album_compact_preview.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\qiŠ^%\ru',_binary 'qV\\?\X \y\\0\'w[s\\"','',0,'?'),(_binary '0.\`\r\Ӕz\\','wp-content/plugins/wd-facebook-feed/images/album_extended_preview.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cBa\\4\',_binary 'l~\W\Y)\\#%h\30%E0S6?<8\','',0,'?'),(_binary ';VzFxZm\','wp-content/plugins/wd-facebook-feed/images/arrow3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I\ܢ\\\r>Ʊ\7',_binary '\rd\ZKfxxg\GU6\'Vv','',0,'?'),(_binary '`\\\j|΋\:','wp-content/plugins/wd-facebook-feed/images/backup_logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f]{}\";\W',_binary 'XMk\̿?L\mm\Zo','',0,'?'),(_binary 'N\~tjo\Vdl','wp-content/plugins/wd-facebook-feed/images/best-wordpress-gallery.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fr\iM:Ǵ',_binary '-h-KK\u\\\o\"\ZR(gq\E\\g}','',0,'?'),(_binary 'vSD\bd#\%=8\','wp-content/plugins/wd-facebook-feed/images/blank.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Tr`q\\t\h\5',_binary 'D.;ܯf\XǫE\&\cP)','',0,'?'),(_binary '叛 P,Wf','wp-content/plugins/wd-facebook-feed/images/blog_style.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[K\͝CژŸ\',_binary 'DxܜK}`$u]n\`u`\}x^ҷ\','',0,'?'),(_binary 'jvy\G;n','wp-content/plugins/wd-facebook-feed/images/bwg_shortcode.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\i]LA',_binary '!ju\lVIWB\pI3\3UE~B,','',0,'?'),(_binary '-\R\\lߝodN\'','wp-content/plugins/wd-facebook-feed/images/captcha_refresh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZιC\Z)8e',_binary '\\\>\u\cAĊ\:i$\j\\K\fy\','',0,'?'),(_binary '4%\3f`\','wp-content/plugins/wd-facebook-feed/images/comment-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0KfQb,\R\{e',_binary 'd0{ȣB|H%\mS\]\\\Ys','',0,'?'),(_binary 'X3\\\VY1','wp-content/plugins/wd-facebook-feed/images/comments.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\jP.>& \f\0D',_binary '<\v;E\E\;98K?g\\\Uw)jp\O','',0,'?'),(_binary '\`6)\\r/','wp-content/plugins/wd-facebook-feed/images/crop.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]/ц\nnKzl',_binary ',[\c2\a\\\00%hIٴT(,<\(fXj\','',0,'?'),(_binary 'l\\r\uĝ<0R','wp-content/plugins/wd-facebook-feed/images/default.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6g\<\r\\\nl\\K',_binary 'K^c8\K\nzJ`-\X|-d\\\','',0,'?'),(_binary 'SR:Z\攁\\n{','wp-content/plugins/wd-facebook-feed/images/delete.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ۙ\`LB\',_binary '\"A1YW\Wb\-`=e?4KL	7y','',0,'?'),(_binary '\mQ\!k\\\\9@','wp-content/plugins/wd-facebook-feed/images/draggable.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4+\l\C\6l',_binary '֛\\wS\er\\\\i\"\','',0,'?'),(_binary 'z\-\\\\\Yg\n','wp-content/plugins/wd-facebook-feed/images/feed/angry_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '쎆jEVΧT~e',_binary 'x c85>\qQ$9Y1\\&Ʈ8','',0,'?'),(_binary 'w$x\׿`Rc\\L','wp-content/plugins/wd-facebook-feed/images/feed/cb_cont.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\V\0\\{;\\*\',_binary ';=VXiڣƹ\rp\Ɓ\-e6\\)J','',0,'?'),(_binary '.n$\/cw\h\9^','wp-content/plugins/wd-facebook-feed/images/feed/comment_white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+9ۯ}{S^\n',_binary 'I5\n\wI\?|0\\t\	\J','',0,'?'),(_binary 'f\俽.\\rd','wp-content/plugins/wd-facebook-feed/images/feed/download blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\0E\>\E\U',_binary '\Ab\\'\\P̻7\\%Q','',0,'?'),(_binary '\#\N3K\P^k\8L','wp-content/plugins/wd-facebook-feed/images/feed/download.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n1\\嚇n%\',_binary '!%6\\Zu^>%A1\اST=\r	','',0,'?'),(_binary 'u\\J\ZM\$\\t','wp-content/plugins/wd-facebook-feed/images/feed/f blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MI\OQ\\+8',_binary 'rsLUN~N\0\\\ZFW\S{?/\G','',0,'?'),(_binary '\\0\稘갟\C','wp-content/plugins/wd-facebook-feed/images/feed/facebook_blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MI\OQ\\+8',_binary 'rsLUN~N\0\\\ZFW\S{?/\G','',0,'?'),(_binary '\\u1\\\")\Z\g`','wp-content/plugins/wd-facebook-feed/images/feed/facebook_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e#Z\\\ϵ5ju\\',_binary 'Q|\"p0+\)kU\B!\44\\nJ\','',0,'?'),(_binary '|\y0%','wp-content/plugins/wd-facebook-feed/images/feed/facebook_hover.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'ch\VC/\\A\h',_binary 'DK\{5ǿgAOJ`밾}\T','',0,'?'),(_binary 'A3\O\hT\@','wp-content/plugins/wd-facebook-feed/images/feed/facebook_white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\XBYy\\Q,/+\u',_binary 'XX6S\<>ML\$8\8\a\F','',0,'?'),(_binary '`\V\8B\]\\\','wp-content/plugins/wd-facebook-feed/images/feed/fullscreen.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q?\Z9Tw\{}\',_binary '\rLނ\0\N S+AN\ӄi՞(\מ1','',0,'?'),(_binary '\Gvai!R03\Ҩ\','wp-content/plugins/wd-facebook-feed/images/feed/fullscreen_hover.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӱ\fz9q',_binary 'C#\}7@\\w\\%6HUCNՎe)y','',0,'?'),(_binary '9j\{Unգ\ĭ','wp-content/plugins/wd-facebook-feed/images/feed/g plus blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~=\\׹\P\',_binary 'k\t\\#S~-z]\\\ٜ\HuC','',0,'?'),(_binary 'b:M.+\','wp-content/plugins/wd-facebook-feed/images/feed/google_blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~=\\׹\P\',_binary 'k\t\\#S~-z]\\\ٜ\HuC','',0,'?'),(_binary 'ǂNI\\(^qGt','wp-content/plugins/wd-facebook-feed/images/feed/google_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\\ivK4\\'\',_binary '\i*\\\oվA{G\nhڗ$\Zz\','',0,'?'),(_binary '\\5\#\1P','wp-content/plugins/wd-facebook-feed/images/feed/google_hover.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(>\P\*Q|=',_binary '\l\`#L\\6L\4\D&黗^\;(','',0,'?'),(_binary 'H\I\<Gkpg','wp-content/plugins/wd-facebook-feed/images/feed/google_white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F\'!;8\\"	',_binary '\\r\\\o\َr\\R\w\4\k\\(8w\','',0,'?'),(_binary '+O+\N#\)-h','wp-content/plugins/wd-facebook-feed/images/feed/haha_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '03ɧxD\)o\',_binary 'QŅ\\@\\n\ZPV\\\\Z4\U\','',0,'?'),(_binary 'Ƕ\8Z6POg\Q','wp-content/plugins/wd-facebook-feed/images/feed/like_blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G{Ŵ>*j׿\C=',_binary 'w\]޶f\Kj%\\v8\XԾHX;7','',0,'?'),(_binary '$)_t+7\W','wp-content/plugins/wd-facebook-feed/images/feed/like_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jgUw1a$\<?',_binary 'L,\_3BƲ*\\x\d\\\N\`hw','',0,'?'),(_binary 'ԼXQ\"\rҗJ','wp-content/plugins/wd-facebook-feed/images/feed/like_white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!wF\lQ\\6H\',_binary '\'\\4\R\C%e\0\y{S)},\','',0,'?'),(_binary '(ek\rS\׬^&\w','wp-content/plugins/wd-facebook-feed/images/feed/love_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sr\\Z~0[\\SaV',_binary 'ECqE\#\\n}\N\Y珝\\"\KN3\ \L','',0,'?'),(_binary '\A|ymh-\n\D\','wp-content/plugins/wd-facebook-feed/images/feed/pause.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\\'Ĭ~\}c\0\\',_binary '$5PE\I\\n[f@J\\0\'4T','',0,'?'),(_binary '/\~E]0;*','wp-content/plugins/wd-facebook-feed/images/feed/pause_blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\0u\\"8+b\뉸/',_binary 'u=gzY\H&\ȳ\\w\$;	','',0,'?'),(_binary 'j*G۰\r','wp-content/plugins/wd-facebook-feed/images/feed/pause_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\oz4M\\]',_binary '=\b\\\\ij$ ߑQ^j!+p','',0,'?'),(_binary '\%Fz]\$\[\@','wp-content/plugins/wd-facebook-feed/images/feed/play blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K\0`\\L \',_binary '\ \\\	Zm\0NL\Y~w\','',0,'?'),(_binary '#g3\7\n\V\'P','wp-content/plugins/wd-facebook-feed/images/feed/play.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\U҇\Zʅq\\\',_binary '\}tf\k\r׋L\}B1\D:N]','',0,'?'),(_binary 'dmR\PJ_','wp-content/plugins/wd-facebook-feed/images/feed/play_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0<n\h}8U',_binary '\H`\\,lb\X\p]ܗm','',0,'?'),(_binary ',\rKY\K\9 P','wp-content/plugins/wd-facebook-feed/images/feed/resize_in.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٍ\\<\\u?\\',_binary ',JBn;\`\\U\\\\\mW\\c','',0,'?'),(_binary 'zV\/x7\','wp-content/plugins/wd-facebook-feed/images/feed/resize_in_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Գ\nrUcnzB',_binary 'S\)\\'|r\_H\\rI{^v$a<\nqo\\3\','',0,'?'),(_binary '()ȣ\D-\'|e','wp-content/plugins/wd-facebook-feed/images/feed/resize_out.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n 0\PQ?f%',_binary '\Zhǻw )F\\",d1{\um','',0,'?'),(_binary 'ǒ\\\\4\n\\(','wp-content/plugins/wd-facebook-feed/images/feed/resize_out_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iX\@?cNI:\',_binary '\\\\\Т\W<\cS\?\&\ɭ','',0,'?'),(_binary '\\nJk\\4(\\K','wp-content/plugins/wd-facebook-feed/images/feed/sad_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȣ\(`\&_ky9v',_binary 'H\nV\\0@\r\'f`$*<','',0,'?'),(_binary '\\Ѿ\;','wp-content/plugins/wd-facebook-feed/images/feed/share blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\׿)O_b',_binary 'R0ui7\L	@\2:\.-.','',0,'?'),(_binary '\tτ_<0JW','wp-content/plugins/wd-facebook-feed/images/feed/share_blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\׿)O_b',_binary 'R0ui7\L	@\2:\.-.','',0,'?'),(_binary 'z\\Í\vZ#U','wp-content/plugins/wd-facebook-feed/images/feed/share_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\nQ\\\uz\q\\r\\\',_binary '\bB9\oxs\ˣv%\\\r8\','',0,'?'),(_binary 'ڷ	h\6vIԻÓ','wp-content/plugins/wd-facebook-feed/images/feed/share_hover.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȔҸLi\)+$',_binary '\N\\`Uށz2[NW@\o\sGv','',0,'?'),(_binary 'i\\0\#4dӡ','wp-content/plugins/wd-facebook-feed/images/feed/share_white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	s6\hB<Fc5\rno',_binary '^\\\0\	\"\\\KfOsS\"+\\','',0,'?'),(_binary '\\OiBX\\\x=\','wp-content/plugins/wd-facebook-feed/images/feed/t blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\&\\\R',_binary '\\\qu\nD\\&o1Vav\','',0,'?'),(_binary '\E\ZgAӄ$H','wp-content/plugins/wd-facebook-feed/images/feed/time_blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uS\\5\\.',_binary '9\\\\ gq};\\"\\dX','',0,'?'),(_binary 'tHF\\"\bwޤ\W','wp-content/plugins/wd-facebook-feed/images/feed/time_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"1?\naȮ\qL',_binary '=\\ڑ\0U\m!<4\2ʃǧe8','',0,'?'),(_binary 'ڿc\\!','wp-content/plugins/wd-facebook-feed/images/feed/time_white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\Z\\0\d`',_binary '⣱ho~?}Mp{<e-\G\','',0,'?'),(_binary '̏\\\W0+v\)','wp-content/plugins/wd-facebook-feed/images/feed/twitter_blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\&\\\R',_binary '\\\qu\nD\\&o1Vav\','',0,'?'),(_binary ')\\\0\O','wp-content/plugins/wd-facebook-feed/images/feed/twitter_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\~7a-h\\e\',_binary 'ac롇SwaJM\Z4^qn\ѽ5\\','',0,'?'),(_binary '\/\\/VZ\\yK\x3','wp-content/plugins/wd-facebook-feed/images/feed/twitter_hover.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\I\bv{(W\A',_binary 'Ȣ\\\p\\"ĦN8	\T*$\F3$','',0,'?'),(_binary '\lG3tX(\E','wp-content/plugins/wd-facebook-feed/images/feed/twitter_white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'reV\\I.',_binary '\S\\v\	7~\\kߒ\\X=\','',0,'?'),(_binary 'KZ\S z\rRߘ^\','wp-content/plugins/wd-facebook-feed/images/feed/wow_gray.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\0?\\<*',_binary 'u8\p_\V?~c(\\.9\Cu','',0,'?'),(_binary ' \\̯s\b{I','wp-content/plugins/wd-facebook-feed/images/ffwd/add_new.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4)\ml\C6S\t\',_binary 'v\Z#\6\\XV\{Q5$a\\?}','',0,'?'),(_binary '/\ؿt˯\&','wp-content/plugins/wd-facebook-feed/images/ffwd/button-icons.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݢK\Go0\a\',_binary 'x##\Ap@Bhp7R%\+ɜ\3\','',0,'?'),(_binary '<442\1*H\\\X|','wp-content/plugins/wd-facebook-feed/images/ffwd/button-icons2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>O\0;K\\xK1{',_binary '}T\Hy\BD\/Jl\!\tDW0\\','',0,'?'),(_binary ':\"\\:[sf\\','wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_album.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\\ˏ\#i\O',_binary '\\\:~X\\P\0\Ftk$Ҍ\\͟{D','',0,'?'),(_binary '\̤I\NsZ','wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_blog.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B4&\\',_binary '\l#car\\8Bf%Ŝ3$洱','',0,'?'),(_binary '4A\ǟ+4h[\:','wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_logo_editor.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9Ϣ\*\*sc',_binary 'ЫK\>\\nl\'\<i\\^*{iN3p6\&','',0,'?'),(_binary 'Li\$\\','wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_logo_large.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nGw\Cc\\f\ա',_binary ']u\Z\qnpJV\1\NS	}Hߎ','',0,'?'),(_binary 'WwkL\P','wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_logo_small.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A\\\oyC>\r\\',_binary 'G,\\8\r\oU゠)W\\d\/.rjZw','',0,'?'),(_binary 'c>et\\\\	','wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_masonry.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\뱬,\i\*\$',_binary 'S؈@w\aNǯ\ۉ\M\\+\s','',0,'?'),(_binary '8\ކ\q','wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_thumb.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Q\0(G\a',_binary 'V#j\e7k\BO{>\\ZBF\mI\0\','',0,'?'),(_binary '\_wuA`>8	J\"\','wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_views.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\w\p8qw)N0G',_binary '\\0r?_G+d%䙮\rq3','',0,'?'),(_binary 'ݪ3Zk}@)\M,','wp-content/plugins/wd-facebook-feed/images/ffwd/no-image.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T\\\Z\\\o_a\',_binary '˫Da\II\'\]y\\qA\\'?','',0,'?'),(_binary 'U;\\|Ϧ_B(uC','wp-content/plugins/wd-facebook-feed/images/ffwd/themes_options.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\V)X\'\\x,sU^',_binary 'Ü\k\܆ԋ;\\\r=K\\\]?\ȸ','',0,'?'),(_binary 'Q\u+Zk?}WJn','wp-content/plugins/wd-facebook-feed/images/ffwd_logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'è_\\\޻7_\l',_binary 'Ny!Z#Cܵe^\άO\\\4\r','',0,'?'),(_binary 'BB\\7W%','wp-content/plugins/wd-facebook-feed/images/flip_both.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\e;?l\RT/\',_binary 'yy\\Z%Ȭ\=#$G}-','',0,'?'),(_binary '\*[0\: \\F\','wp-content/plugins/wd-facebook-feed/images/flip_horizontal.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TnwJ\R\9z\\s*',_binary 'йڏ\n9\3h1э2ͨf%\\8','',0,'?'),(_binary 'xR*`M$0+gShr\i','wp-content/plugins/wd-facebook-feed/images/flip_vertical.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Lk\\Ds\xրV',_binary '/\%:s?}*DX\oi\2\Ue#\\','',0,'?'),(_binary 'Ҥ\Y9\C$,E*l','wp-content/plugins/wd-facebook-feed/images/gallery-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\i]LA',_binary '!ju\lVIWB\pI3\3UE~B,','',0,'?'),(_binary 'p\Vj&GZ\ ','wp-content/plugins/wd-facebook-feed/images/i_support.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z|\"D4/$G\n\',_binary '\0R=2P+	jsO	\6`=/','',0,'?'),(_binary '\0!ͺG\0˴Jp/\0','wp-content/plugins/wd-facebook-feed/images/icon-feed.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kT\\*\\\\d',_binary '\\5&\" #\\\^v♘\0--','',0,'?'),(_binary '\g\\bʨ\[\4','wp-content/plugins/wd-facebook-feed/images/image_browser.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʄь\\l=ބ',_binary 'Db\\[3\C^\b6\\\-\+\^','',0,'?'),(_binary 'p(5o\,׹k)Ɏ','wp-content/plugins/wd-facebook-feed/images/like.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|z\\r\ӈ\~\',_binary 's\z[\\I\IUM\\J򤙃','',0,'?'),(_binary '\\C\\'\0\Wø\\','wp-content/plugins/wd-facebook-feed/images/loader.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\36$\\\\r\',_binary 'im\~b9ݤK|l5nM\B)vMh\','',0,'?'),(_binary '\'\q\\U\"&\Zv`\','wp-content/plugins/wd-facebook-feed/images/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QF\Sє`I\0r',_binary 'ȬF\b%	zG\2߫Z\_:Q8\l~','',0,'?'),(_binary 'A\bU\E:J\nBP\5','wp-content/plugins/wd-facebook-feed/images/logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'll\Hf`e\@ q',_binary '\!0\C\\$\?WJ1+w','',0,'?'),(_binary 'CRR\\\ap\x\\','wp-content/plugins/wd-facebook-feed/images/minus.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7%tQ_d',_binary '_V]9=+\$\\\`Vgq)\"2ə!','',0,'?'),(_binary 'Ռ\(;p\	','wp-content/plugins/wd-facebook-feed/images/no-image.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}[\[ȓ+׎\',_binary '&\\1\\\xv\_j+;[d\\݅\','',0,'?'),(_binary '\&2gε[\͢Yz3','wp-content/plugins/wd-facebook-feed/images/notdefault.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4A$!\\Q\^v\',_binary '2hjN^1\h\87F\P j̝\~\','',0,'?'),(_binary '튄02\1*L-','wp-content/plugins/wd-facebook-feed/images/option-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C$e,\32b\}\j',_binary 'C\r#\Ql6<-\]lU^','',0,'?'),(_binary 'NpbR	\c','wp-content/plugins/wd-facebook-feed/images/plus.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' -~\}ue\\\@\p',_binary '@256\Aؾ\g\J\\n\m[M.`\','',0,'?'),(_binary '>\\r-u\y\','wp-content/plugins/wd-facebook-feed/images/publish.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\"u\0\'\Ħ\n!5v',_binary 's6k\<ɠɅ=\j/\\U\ ;{d','',0,'?'),(_binary ']3f\0Y\"!.wt','wp-content/plugins/wd-facebook-feed/images/rating-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T,ʉ\i\V',_binary '\\XTN\"\d(\4w{gv+ᠰ}|','',0,'?'),(_binary '\|\X','wp-content/plugins/wd-facebook-feed/images/rotate_left.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gd\5:\|ɀ\r',_binary '=c	\hE\po)_u=cS\\W~bu','',0,'?'),(_binary '>H\\ˬ|;\I','wp-content/plugins/wd-facebook-feed/images/rotate_right.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\O:\0\\\5MT\K\',_binary '!\\[˺\J\\	l|\\l\Lc\0L<','',0,'?'),(_binary 'wR\\{\U\%Ec^','wp-content/plugins/wd-facebook-feed/images/short_extended_preview.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\7P\s\Az',_binary 'MW<y\\Y(g\8E\0>F\H6fx\','',0,'?'),(_binary 'D\"\\l4\','wp-content/plugins/wd-facebook-feed/images/slideshow.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lvɌ/;9O\d',_binary 's .w$ѩſ\i1Yw;޵K\\?','',0,'?'),(_binary 'l\\\\\\WG[=d*','wp-content/plugins/wd-facebook-feed/images/tag-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\77\\\\\\+',_binary 'SQ\%\;tN\TV0\)0\]\\\"g','',0,'?'),(_binary 'G\nÊY@}','wp-content/plugins/wd-facebook-feed/images/theme-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^`l(>T\\CS\\\'',_binary 'ʃ4:q\|^Z\\\eC@\#	 \=\','',0,'?'),(_binary 'IJ\Ku\@v\','wp-content/plugins/wd-facebook-feed/images/themes/album.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rkKYC):\\'qa',_binary 'u\1>L\r\\5l\\1VY\\y','',0,'?'),(_binary '![\\nPh\S8','wp-content/plugins/wd-facebook-feed/images/themes/almum.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rkKYC):\\'qa',_binary 'u\1>L\r\\5l\\1VY\\y','',0,'?'),(_binary 'GE_Ōƀb./','wp-content/plugins/wd-facebook-feed/images/themes/blog.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\2v1\\\\',_binary '\"\M/oN\}ގ.0','',0,'?'),(_binary '_a\[iE\\\','wp-content/plugins/wd-facebook-feed/images/themes/lightbox.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'жW^\=\\\M6\^<',_binary 'T\\\_;Ytkڔ7\\X\\Z\\\o','',0,'?'),(_binary 'P[Jm\`IA\\','wp-content/plugins/wd-facebook-feed/images/themes/masonry.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\>\c\"OzA',_binary 'p\5kg\J\e + \\\\\\r','',0,'?'),(_binary '\B\\\aF\0@p\y4','wp-content/plugins/wd-facebook-feed/images/themes/pagenav.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\tiu-gF\ѓ',_binary '\т/6Ue\ZP-\_\9 +\ާ','',0,'?'),(_binary '\\h/\0Tw\0\:+','wp-content/plugins/wd-facebook-feed/images/themes/thumbnail.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\yT\BX\rƇ/\-',_binary '\\y\n\n,*T\q?V]G:%ˉՆ\\	\','',0,'?'),(_binary 'a\\0\V\M\]\u\','wp-content/plugins/wd-facebook-feed/images/thumbnails.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ƚ\sVO\',_binary '% \\H\|\	TJ8<\','',0,'?'),(_binary 'b\\f\9\]\J','wp-content/plugins/wd-facebook-feed/images/thumbnails_masonry.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vش^Gͱ\_r\|\',_binary '\ne0~8\n	7\rP	\TҠoK','',0,'?'),(_binary 'xgM\J4vg','wp-content/plugins/wd-facebook-feed/images/thumbnails_mosaic.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y$5>ʟ3m+a*',_binary '\r~	G.\Z\2r\ߧ\5\)?y\@','',0,'?'),(_binary ']A,GQ\n\hNe:ph','wp-content/plugins/wd-facebook-feed/images/uninstall-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\D3*>Ȫ\\g',_binary '(\rE\Cd,\\\rv\L&W\\gD\_^l','',0,'?'),(_binary '\1\	S%\\\','wp-content/plugins/wd-facebook-feed/images/unpublish.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\%\}g\b\\',_binary '\1\)\K\]M@曂\','',0,'?'),(_binary 'aX\Q;ٚa`\\','wp-content/plugins/wd-facebook-feed/images/views/album.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tUMl\58?',_binary '\X\\_/\0\qWR̕5ȕ\.wte0pw','',0,'?'),(_binary '\\\6Kǃ0\\^o\\','wp-content/plugins/wd-facebook-feed/images/views/blog_style.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\CLM\a	\Fl',_binary '1\\=#0\J<3z\很\\d\U','',0,'?'),(_binary 'eW\N\b\\ͫA\','wp-content/plugins/wd-facebook-feed/images/views/logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'll\Hf`e\@ q',_binary '\!0\C\\$\?WJ1+w','',0,'?'),(_binary 'iHw~9\\m.l\','wp-content/plugins/wd-facebook-feed/images/views/masonry.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\\U=(\\\^g ',_binary '3ehr{Nd\\[/\ʼp\.W\\','',0,'?'),(_binary ',.r\[2p`m','wp-content/plugins/wd-facebook-feed/images/views/thumbnails.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	&\\\\nTp3\',_binary '\untٺz\\M\T53L8A\','',0,'?'),(_binary '\\~)\Lex\g','wp-content/plugins/wd-facebook-feed/images/watermark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nlz[)\nz]',_binary '߲\!3\	\\{e\\7(\>@Z','',0,'?'),(_binary '!aƚˢ5\U=','wp-content/plugins/wd-facebook-feed/images/watermark_preview.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YS\QrʹfJs\K',_binary 'm\\w;\9V2 otc\\'\M\\n\\','',0,'?'),(_binary '#~w{\Z\\:','wp-content/plugins/wd-facebook-feed/images/wd_fb.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TS+˂8\',_binary '\U	y\\\	pN\2ԧ(?K-{','',0,'?'),(_binary '\:XSZ\\'\	N\','wp-content/plugins/wd-facebook-feed/images/wd_fb_menu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H+5\\\J͑X\r孕',_binary 'kj5\K/(\'\0\A\\u\\0','',0,'?'),(_binary '3 *\J\H-','wp-content/plugins/wd-facebook-feed/images/wd_fb_shortcode.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\ \=\\=\w\\\',_binary 'gʚnF\6n)z]\\{HJ؏`cu','',0,'?'),(_binary 'D\p\s}̾\j','wp-content/plugins/wd-facebook-feed/images/wt-gb/ffwd_logo_editor.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'af\\\\\\\\',_binary 'D\\v\9\3U<\'(rG%5rZ\|\'\3;%$\i','',0,'?'),(_binary '!b\0\\s\iY\G','wp-content/plugins/wd-facebook-feed/images/wt-gb/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=܏h\'\"Ā6>r',_binary '\\jah\\?e\n\\fc$8N\΂','',0,'?'),(_binary '\n>\i\	{~','wp-content/plugins/wd-facebook-feed/js/3DEngine/3DEngine.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z,h\\',_binary '&B\n^(MCP(	\\=KJe\\Z','',0,'?'),(_binary '\"\9YW@\<','wp-content/plugins/wd-facebook-feed/js/3DEngine/Sphere.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C~\Ep\ٔ\Z',_binary '6\\\\';VV\/Y\Zl;\]\U	a\R\1','',0,'?'),(_binary 'ܡ{X\\3\\0\\v','wp-content/plugins/wd-facebook-feed/js/ffwd.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ýE\	\u\',_binary ']5/\\\>9륲9bb<:pɹ\\k','',0,'?'),(_binary 'a\i3]5\0/;','wp-content/plugins/wd-facebook-feed/js/ffwd_cache.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`ο\\}e\1\\\d\',_binary 'Nk(\H_g	\-\(vD\','',0,'?'),(_binary '\\\gaz0\P\\','wp-content/plugins/wd-facebook-feed/js/ffwd_editor_button.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\\~\[1Q5\Iw',_binary '\A!؁<HT#ǃ\A\!\	\\\,%(','',0,'?'),(_binary '\\`\?\\\\[\\\','wp-content/plugins/wd-facebook-feed/js/ffwd_embed.js',0,_binary '\\\U\\UM\c',_binary '\\\U\\UM\c',_binary '4\\0T@#9J1\\\\V1','',0,'?'),(_binary '4\\l\L\\- \"','wp-content/plugins/wd-facebook-feed/js/ffwd_frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j2d\q\n\$CR!',_binary '\\\\\\H\0\"74}\-\\';\\\','',0,'?'),(_binary 'ODΡ\~\n),\[','wp-content/plugins/wd-facebook-feed/js/ffwd_gallery_box.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.\\\yw',_binary '+oθ\\\ٟ%\\\\0+a\βH','',0,'?'),(_binary '\kCMX\؊Os0','wp-content/plugins/wd-facebook-feed/js/ffwd_shortcode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o\0ϯl\Qu\Z?Q[',_binary '[W\飢#\0\7|q\\\n','',0,'?'),(_binary '~,ST\j؈S\','wp-content/plugins/wd-facebook-feed/js/images/bwg_edit_but.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\c»\\ZM',_binary 'Ò\l\R%\c!|,R.\[s\j<\','',0,'?'),(_binary ':ǊT]\n\0\0wr','wp-content/plugins/wd-facebook-feed/js/images/wd_fb_edit_butt.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\ \=\\=\w\\\',_binary 'gʚnF\6n)z]\\{HJ؏`cu','',0,'?'),(_binary '\\]X{\]\n\\','wp-content/plugins/wd-facebook-feed/js/jquery.form.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TK\n|<x.',_binary ';\l%ym)·R@-lt\\\u\z','',0,'?'),(_binary 'sy\rp\vpʟ\\\a','wp-content/plugins/wd-facebook-feed/js/jquery.fullscreen-0.4.1.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̗c$\V4LU',_binary '\5On:_`s\"\\\wZx\\'\B ','',0,'?'),(_binary '5ˊ)	A%\\\\\2\'','wp-content/plugins/wd-facebook-feed/js/jquery.mCustomScrollbar.concat.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Yip4iv\?',_binary '+r>!a:\F\!eH4g\\?`\','',0,'?'),(_binary 'i\;nGI\{','wp-content/plugins/wd-facebook-feed/js/jquery.mobile.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}{F~YaX\\',_binary '\0ݱӭ\nj-M7\҇f\$Ȼ8','',0,'?'),(_binary 'U&\+\\&\\\c\','wp-content/plugins/wd-facebook-feed/js/jscolor/arrow.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P4pJv\U\\ŎR?',_binary '.+XL \i@Rʥipk\e=@W','',0,'?'),(_binary 'D,\) 9H\xo;','wp-content/plugins/wd-facebook-feed/js/jscolor/cross.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'K#u<\[ñ\/N_',_binary '+\oNFw\+I9֧,oL4;\\\\','',0,'?'),(_binary 'o$&\N# B','wp-content/plugins/wd-facebook-feed/js/jscolor/hs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\.\\\ܩJc\',_binary '0|\ω4\0a\"\\^\"\[+PkT\0\O','',0,'?'),(_binary 'B\}\\)uP%]\n','wp-content/plugins/wd-facebook-feed/js/jscolor/hv.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rq\\\SclI',_binary '\\8ϼ4!n&		\\T\B\L9/\)\','',0,'?'),(_binary '`\\\>h6q\]\','wp-content/plugins/wd-facebook-feed/js/jscolor/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lVϹγ\',_binary '\SF24\c\n\#p@\{rK\g%$','',0,'?'),(_binary '\xN\	;9\','wp-content/plugins/wd-facebook-feed/js/jscolor/jscolor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\rH\\K*|\n\',_binary '\\\k_\h$¨\E!}({n`M','',0,'?'),(_binary '\aAs\\\e\)\','wp-content/plugins/wd-facebook-feed/js/tw-gb/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\S:E\\N#l',_binary 'g&\:\(wS\O~sЙ\\\L\','',0,'?'),(_binary '\*~<-5_H','wp-content/plugins/wd-facebook-feed/js/wd_bp_install.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']2v\8czi',_binary '1\n\moB\\	M`2	\\T,\r\\sF\0p','',0,'?'),(_binary '\'F\fk)JL\\\','wp-content/plugins/wd-facebook-feed/languages/ffwd-de_DE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\r\x\\\U',_binary 't<DV֝8b-q\\f6l#=	ǥ','',0,'?'),(_binary 'B\T✿\Y\URx*','wp-content/plugins/wd-facebook-feed/languages/ffwd-de_DE.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.\~O=4`\z\',_binary '\L\޿W\p\'\\\}u3\\\\\','',0,'?'),(_binary '.\D<\\.\\\2','wp-content/plugins/wd-facebook-feed/languages/ffwd-pl_PL .mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f`\(\ 2',_binary '\WF\܈\\\\r\}\\\1n]ɿ\ڕ','',0,'?'),(_binary 'PZXg(`~aUުD','wp-content/plugins/wd-facebook-feed/languages/ffwd-pl_PL .po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<J\\N?\n𶪵',_binary 'gj]g}(5\<\\(\<i?n','',0,'?'),(_binary 'S+fHG\7\FT','wp-content/plugins/wd-facebook-feed/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	TN\@,?\\0',_binary 'AN\g.8Mⅱ\`\QjY-\2xst','',0,'?'),(_binary '\\(\\ط\$#\\','wp-content/plugins/wd-facebook-feed/update/ffwd_update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9\өN\\W',_binary '\hKdf\'ͅ\ID7;T\3\\]\','',0,'?'),(_binary '\\7\\Fvx\','wp-content/plugins/wd-facebook-feed/wd/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J\T\\w\M',_binary '\nH24]\\zA3\\5\"i8v;|i','',0,'?'),(_binary '\>ʁ\aޙF','wp-content/plugins/wd-facebook-feed/wd/assets/css/deactivate_popup.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ug\x#\\',_binary '\Zg\n{\%M5m\7k\\?','',0,'?'),(_binary ',9zA	.{\B','wp-content/plugins/wd-facebook-feed/wd/assets/css/img/allow&continue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gSh,,\\~\\i',_binary '*7]}D\$-P\\dtŜ:Â\npUK','',0,'?'),(_binary '1g8\\\6>?\','wp-content/plugins/wd-facebook-feed/wd/assets/css/img/close.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~D>\E',_binary 'x\\Vu\\9\\H\Y\K\A)\]{\','',0,'?'),(_binary '\\\f?_r{Gⵝ\','wp-content/plugins/wd-facebook-feed/wd/assets/css/img/coupon_bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\@\*; \m\[\',_binary 'y\Ap䅄b*G\E{k׆!N\0/\N&q|','',0,'?'),(_binary 'Y1S\\g\\n','wp-content/plugins/wd-facebook-feed/wd/assets/css/img/plugins_header_bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\q\rb\\G%',_binary 'nrxg\?YXU\\\\o?)\"uJ\','',0,'?'),(_binary '*s\e\\z\U\','wp-content/plugins/wd-facebook-feed/wd/assets/css/img/skip.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	i\i\\\djYY',_binary 'c\\\\'3\\\	1\(\81\O \','',0,'?'),(_binary 'k\W8\\%~b','wp-content/plugins/wd-facebook-feed/wd/assets/css/img/themes_headrer_bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\7k\W\ٲ',_binary 'Dh*\\R\HW\(&V\{	g\','',0,'?'),(_binary '\s|$Ym\S\','wp-content/plugins/wd-facebook-feed/wd/assets/css/img/ug-icon-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\FR\:&e\0y',_binary '\[f.\|\0lM\:.W\(g\z','',0,'?'),(_binary 'O\6\+Ol#\݊%','wp-content/plugins/wd-facebook-feed/wd/assets/css/img/ug-icon-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(pI\wyϯ-\r',_binary '+\r\\9\\/^E\dB025\'$L̨+0','',0,'?'),(_binary '\\A`l\\!]S8F\','wp-content/plugins/wd-facebook-feed/wd/assets/css/img/ug-icon-3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G5^:z',_binary 'U7R\<\^4#\ki6\>\0{O','',0,'?'),(_binary '\\jjxӇ\ʣ','wp-content/plugins/wd-facebook-feed/wd/assets/css/img/ug-icon-4.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3ݴ\\f\\\',_binary 'Q~^\&ʫ\O\6&\b8\','',0,'?'),(_binary 't\[W\,SñJ\\','wp-content/plugins/wd-facebook-feed/wd/assets/css/img/ug-icon-5.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}\\w\\\<pn>',_binary '\_\Z\f4j+nr\j1\{\\','',0,'?'),(_binary 'l~q\\\HY.','wp-content/plugins/wd-facebook-feed/wd/assets/css/img/welcome_bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\'\\bV4\ӱA',_binary '<R\}\D|\\\\EW85\x\\\0X','',0,'?'),(_binary 'E\:\_\\ޡ`ֵ','wp-content/plugins/wd-facebook-feed/wd/assets/css/notices.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/-I\\\sXvI',_binary 'p\n4bE\'.\>b\0\s\/Ű\1\','',0,'?'),(_binary '\\E\rqwf','wp-content/plugins/wd-facebook-feed/wd/assets/css/overview.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\`CQD{',_binary 'd7eG鎼vf06\B`.G\#J-[','',0,'?'),(_binary '\a\'[M\\B\у1c','wp-content/plugins/wd-facebook-feed/wd/assets/css/subscribe.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\MiQj{\\M',_binary '8Vʠe(٪7Ѵ\\\r/;.\\`','',0,'?'),(_binary 'd<\s\\\D\\v~\\du','wp-content/plugins/wd-facebook-feed/wd/assets/img/allow-and-continue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\n\K1_',_binary '6&(Ɯ))ц˧6S`uHFo\\"|\r+X','',0,'?'),(_binary 'VlQՏ\\L~ƯЪx','wp-content/plugins/wd-facebook-feed/wd/assets/img/bwg_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ԇ\\"U',_binary '\\j\lY@o\4\o;a	`[nB\\','',0,'?'),(_binary '\;\\\Fii\9y','wp-content/plugins/wd-facebook-feed/wd/assets/img/cfm_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K,V˗j\t\\0\',_binary 'P\0\s\\-\Z%Br\Ys\\'Nc\\Rcf<','',0,'?'),(_binary '	!X_&K\5y.\','wp-content/plugins/wd-facebook-feed/wd/assets/img/ecwd_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\J$\Gi\S\n9',_binary '󥝃\Z\tǳ\|\3P\?V','',0,'?'),(_binary '\0\\n,b^\nF_','wp-content/plugins/wd-facebook-feed/wd/assets/img/faqwd_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\Wc\(Y]Cs\',_binary '@b2b\\׬;\B\\99\6\ \鏵','',0,'?'),(_binary '\}L\\pb{\\','wp-content/plugins/wd-facebook-feed/wd/assets/img/ffwd_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}K(1\\0c:1\\n',_binary '2CLZ\\/\{\|W\\(Bm-F','',0,'?'),(_binary 'q\`B1IHr7\Ï','wp-content/plugins/wd-facebook-feed/wd/assets/img/fm_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\eaa\]i',_binary '\Z(\\\>m9=^Mv\'\\m6\','',0,'?'),(_binary 'v$\"alf*Sa\','wp-content/plugins/wd-facebook-feed/wd/assets/img/fmc_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n3·]2B\|\j_O',_binary ',<\Ҙ1\z$O$5\ߜ\\Ou\\\\','',0,'?'),(_binary 'gh\Ҋ\VM|[\u\','wp-content/plugins/wd-facebook-feed/wd/assets/img/gawd_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\B\\Vmn|',_binary '`\\\i.֔\\3\\0\i\0hy\ð06\"u\','',0,'?'),(_binary '6\Kb3?~pDa','wp-content/plugins/wd-facebook-feed/wd/assets/img/gmwd_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YM?\>X\t\',_binary '*V:\RVV	YC̩\\\\1\Z','',0,'?'),(_binary '\*\?G\_\u\k','wp-content/plugins/wd-facebook-feed/wd/assets/img/header.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZdZW\x\MǱ',_binary ' f~사l\\!\Zs\\0\l\n\\:Y\C','',0,'?'),(_binary 's/n\A{4','wp-content/plugins/wd-facebook-feed/wd/assets/img/how_it_works.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'is%\\ȇ',_binary '\ȃ\o\\ZI\Z:p* 6','',0,'?'),(_binary 'oĬ3\x','wp-content/plugins/wd-facebook-feed/wd/assets/img/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_D{q\V-q/',_binary 'uɫ#oJh\n\\/,\\8Z͗[Znh0','',0,'?'),(_binary 'Q\Z%ٵ:y\ƛ[','wp-content/plugins/wd-facebook-feed/wd/assets/img/mwd_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7Ngq!\ԓI\71',_binary '&ү\hXT\\"\\\QJV\%:Ȋ;\','',0,'?'),(_binary '`u\nkD\njA\','wp-content/plugins/wd-facebook-feed/wd/assets/img/slide-1366.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x^\\\\\y	\b',_binary '7MόE-L_\z;\\\\lƑ#G','',0,'?'),(_binary '\n\\\f5Lʍ','wp-content/plugins/wd-facebook-feed/wd/assets/img/spinner.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1c~\'dv\vHq',_binary '\I\9%-7CP\<r\\\c\"x\{','',0,'?'),(_binary 'P}\oރF\*','wp-content/plugins/wd-facebook-feed/wd/assets/img/twd_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\6vA;\\\\',_binary 'DX6,t߮욷%9\\QRe\\4\','',0,'?'),(_binary '⾴\\X;\?-%\','wp-content/plugins/wd-facebook-feed/wd/assets/img/wd_ads_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ė\\~,F\\"A',_binary '7e 1l9vf]\\'N\{`rg\96o','',0,'?'),(_binary '\0\\>5R#\H@\i','wp-content/plugins/wd-facebook-feed/wd/assets/img/wde_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8OՂog\Eˤp',_binary '/\g\\\ZR\(\LП64Y8h\','',0,'?'),(_binary 'i	\bz\ZL\\")AX','wp-content/plugins/wd-facebook-feed/wd/assets/img/wdi_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eq_i\\0\ ',_binary '*5\\nL\<\\ZD@\\\\\\uc','',0,'?'),(_binary 'ʚ, C\\mS\У\','wp-content/plugins/wd-facebook-feed/wd/assets/img/wdps_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\x\N\\:\\+/\n',_binary '\\&iƓZCs\\sougy\t\ʿ2\','',0,'?'),(_binary '\8\Ä.%-m','wp-content/plugins/wd-facebook-feed/wd/assets/img/wds_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bGoeҀS)',_binary '{H6ԕ\\\r5\\FR\\\2W45ae','',0,'?'),(_binary 'of\~\4smE\r','wp-content/plugins/wd-facebook-feed/wd/assets/img/wp_logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\07˙\<\\\0d',_binary 'oP\o\\=\rz\u\\02sKY!','',0,'?'),(_binary '2+\\b\,\','wp-content/plugins/wd-facebook-feed/wd/assets/img/ytwd_main_plugin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`5_re9\r/\_',_binary 'ft?\n)\V\"S\\GHZnzA\-\z~','',0,'?'),(_binary '\B\~w9(i\','wp-content/plugins/wd-facebook-feed/wd/assets/js/deactivate_popup.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '覩(8$P;\nD=',_binary '\\ᱻ0|1\\]\\Y\"N\C*Rz','',0,'?'),(_binary 'A\:\#B\','wp-content/plugins/wd-facebook-feed/wd/assets/js/overview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6Fk\\').!\',_binary '%\\~~\\9\\l\\rSPz}\\}','',0,'?'),(_binary 'J\#P*\\;\','wp-content/plugins/wd-facebook-feed/wd/assets/js/subsribe.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&+Ra\A*\ɧVF\',_binary 'g\\ep1ة\~@ɠٜc9}\ve͸','',0,'?'),(_binary ';mXHPQ{#','wp-content/plugins/wd-facebook-feed/wd/config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w ~\0y]\.\09\n',_binary '\"\M\DxkY\69\\\\r\Hom\\','',0,'?'),(_binary '\-=\ru챹\0Q','wp-content/plugins/wd-facebook-feed/wd/includes/api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\/C\ތ<\\\RN',_binary '\U\ڞ\W\Qr-6!Kط\Lz\M\Z\y\','',0,'?'),(_binary 'րM6I\M-|','wp-content/plugins/wd-facebook-feed/wd/includes/deactivate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\)t\q5$\',_binary '\99]ż\izX+=vLV**|Vk(','',0,'?'),(_binary 'YX\VxhV\8L-K@','wp-content/plugins/wd-facebook-feed/wd/includes/notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o1ڤ%\P)\0\"',_binary ';\{Olȥ\G\Hj%LA~:\j%\','',0,'?'),(_binary '-\\G=R[j?\\ e	*','wp-content/plugins/wd-facebook-feed/wd/includes/overview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\\O[Q\\\\',_binary '̈ګQ\¬\ժ\t	\D%.R~o','',0,'?'),(_binary 'a\0}>\Еvq<&o','wp-content/plugins/wd-facebook-feed/wd/includes/subscribe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 're\X\7\k\$&ZsT',_binary '\\;\]%_r9S\\I\\on*3+6q','',0,'?'),(_binary 'n+,ڪo>\JZ\','wp-content/plugins/wd-facebook-feed/wd/start.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\o\f.^gzRB',_binary '\(fҫ6@?\w\\nͰu*\"','',0,'?'),(_binary 'I\s!ʻ\\'*l','wp-content/plugins/wd-facebook-feed/wd/templates/display_deactivation_popup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e(U~\\o\:\L',_binary '5$\0\"\ɗF\	&\Z1\0@\0\G^R]\','',0,'?'),(_binary '\\*\k\Z\\\','wp-content/plugins/wd-facebook-feed/wd/templates/display_overview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`6`P\\"6\n.\',_binary '6nO\\(g/\\K\0)\c;\g','',0,'?'),(_binary ' \4uX\>','wp-content/plugins/wd-facebook-feed/wd/templates/display_subscribe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#	\qȱ7m',_binary '6)q̻=+S\R\'\\̣o_RVk\\_\)','',0,'?'),(_binary ';\Io\^\\	s{:','wp-content/plugins/wd-facebook-feed/wd/wd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E`\K8t\\\',_binary 'QYLK\$\9\\0Op_','',0,'?'),(_binary '>w1w\','wp-content/plugins/widget-context/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\ɾ\Nҥ\Olɝ\',_binary '\0v1\s\N\>cID٦\I\0-','',0,'?'),(_binary 'b N\)4\\Y','wp-content/plugins/widget-context/assets/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\\qo=\qP*\\',_binary '{Vۤ\\Z\&\ءX\\\wd\\','',0,'?'),(_binary '\\\@\я-0','wp-content/plugins/widget-context/assets/js/widget-context.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\Vdzg?R9',_binary 'C\2AWi\\\0\\\Fߛҵ\\C\','',0,'?'),(_binary '\\\\̌z\1\	\p','wp-content/plugins/widget-context/class/class-widget-context.php',0,_binary 'T̍dj/\\',_binary 'T̍dj/\\',_binary 'Q	\\P\2%d\fѹ\0\x\\\A>^','',0,'?'),(_binary 'iU\|<i@e״\','wp-content/plugins/widget-context/class/modules/custom-post-types-taxonomies/module.php',0,_binary '\-\0\\r\\({#',_binary '\-\0\\r\\({#',_binary 'BlY:5\R\\\m\:H\I}Q2','',0,'?'),(_binary '[vjH̀XL','wp-content/plugins/widget-context/class/modules/word-count/module.php',0,_binary '1\׀T-\\8Iֈ[',_binary '1\׀T-\\8Iֈ[',_binary 'w~\~-\𵡔\\\N\cvs쭖\','',0,'?'),(_binary 'd\T\/s\\o@\','wp-content/plugins/widget-context/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڍ\.dn;|/',_binary 'yzuu;zi_(.ƌ\0\mԤsއ','',0,'?'),(_binary '\\X\gm\','wp-content/plugins/widget-context/composer.lock',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XZw<\{D~qt6\',_binary '(Tϑ	X9oٮu]iw1\cz\1\J\','',0,'?'),(_binary '\\\YvĞBp','wp-content/plugins/widget-context/debug/debug-bar.php',0,_binary 'QabG4\Z=\[',_binary 'QabG4\Z=\[',_binary '\Z;H\Uʣ3	U9ܨ:zi','',0,'?'),(_binary '\\\\1rT\\\\R-/{y','wp-content/plugins/widget-context/debug/debug.js',0,_binary 'FG\fǲq\*',_binary 'FG\fǲq\*',_binary '\7L4\$\\0\N[MnS*\Js','',0,'?'),(_binary 'n\\TLsT9\','wp-content/plugins/widget-context/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\;\'Fvƙ5߄',_binary '\,\bu\i\J\7\5a\:%\\v','',0,'?'),(_binary 'Q+D\\#\_8l','wp-content/plugins/widget-context/screenshot-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@L\\Mġ̔',_binary '\\'\=8>&\\e\J\<!$0Ӭ\\WQ\т','',0,'?'),(_binary '\\QH\׬\V','wp-content/plugins/widget-context/screenshot-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[w\H1tz',_binary '6\\\i]\\\3p\0k\Ş\Z\0\','',0,'?'),(_binary 'sgך\o\9,q','wp-content/plugins/widget-context/src/Plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\7\K<',_binary '@}\|\"X&O\-\\#\\','',0,'?'),(_binary '\9wB\Yw16\\R\','wp-content/plugins/widget-context/src/UriRuleMatcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Ӓ\0\S',_binary '>\y5(W\)2r^dU\\n\\R\T(m','',0,'?'),(_binary 'p\\HzI\n\+\X','wp-content/plugins/widget-context/src/UriRules.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Ȫ%t\˱\%',_binary 'Fr\\\\\\\9㕞EFrY\<\','',0,'?'),(_binary '\\\:Id\\D','wp-content/plugins/widget-context/src/WidgetContext.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\/j\\\r\>\i1',_binary 'Q\\\	c\G\ry;(\\D\=\Ӯ','',0,'?'),(_binary 'OmS#[:b\\	','wp-content/plugins/widget-context/src/modules/custom-post-types-taxonomies/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\COm\V+\Z',_binary 'a\\\$\m~\\tO!\YmF2','',0,'?'),(_binary '\\0jbz\ޝ','wp-content/plugins/widget-context/src/modules/word-count/module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\\\?<~\'\\\Z\',_binary '\8\c\\\]h.ږ8\JMj\\','',0,'?'),(_binary '\+:q\','wp-content/plugins/widget-context/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0X\\7\',_binary '\eL\\IVTg\b\y\)[R\t(','',0,'?'),(_binary 'o<Nz]#\x$J','wp-content/plugins/widget-context/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|%*T*`',_binary '\289vu3n	C2sva/','',0,'?'),(_binary '\\\\\\\-^y','wp-content/plugins/widget-context/vendor/composer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']_\#D\\0\\',_binary '\Z ے\%4~N\~Gh!b\:wɌ\'','',0,'?'),(_binary '*0\0_t<~','wp-content/plugins/widget-context/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fe\\\e:\\\\B',_binary 'a̛ٱO\jd\UK\\\K\F\\H','',0,'?'),(_binary '8\QXy\ĥs','wp-content/plugins/widget-context/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\,}vĨ3\G\)',_binary 'Er4@\0ԡ$\z\3\$l\\Z\`i\ex\l\','',0,'?'),(_binary '5k?n\0Ff\$\\','wp-content/plugins/widget-context/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:\0\\>\\\}LQ\0',_binary '\\_U\0]q=Չf\\/	@d\\r+v\*(','',0,'?'),(_binary '\\@8jhax\'C\\','wp-content/plugins/widget-context/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\LaP+7T',_binary '*\*\r\B\ILē\\"S÷~:\h1\'4','',0,'?'),(_binary '\\Դ\\w\w\\x\','wp-content/plugins/widget-context/vendor/composer/autoload_static.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8u\L\\3{\\s\$z',_binary 'ǭ0[BQ=\r\tW^\(\EMT˞\h3','',0,'?'),(_binary '`f|[b@,jM\\k\\','wp-content/plugins/widget-context/vendor/composer/installed.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\ILQ\IO|k',_binary 'OS͡+T_>\\\M</E','',0,'?'),(_binary '\\8MjnfR_','wp-content/plugins/widget-context/widget-context.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\EL[\',_binary '\NL \\'HP4i_\\M$ӆ˕7/\|','',0,'?'),(_binary '\h$`;\{','wp-content/plugins/widget-logic/languages/widget-logic-de_DE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	]\\#1]T/\ߥ@',_binary 'N\'\$l\r{Gǵ\2\{ʋV&Jh+','',0,'?'),(_binary '*\dʶ\\\\B\0F','wp-content/plugins/widget-logic/languages/widget-logic-de_DE.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\\~V{14\\\Z',_binary 'A}L\ksUaY\up	\\#ˢ\@','',0,'?'),(_binary '\\[\}\\\'d\@','wp-content/plugins/widget-logic/languages/widget-logic-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l~\\R~0lf\ZW',_binary '\ˤ\\v\(:\\\M0\e$JG\J\'q\\','',0,'?'),(_binary 'Z(3\\\r?\\\-L8\','wp-content/plugins/widget-logic/languages/widget-logic-es_ES.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kA^1\\Z\]\',_binary 'v\4_lKv\kgu\\P^̤\Wq;','',0,'?'),(_binary 'Π\Jy\\\C\','wp-content/plugins/widget-logic/languages/widget-logic-hu_HU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6Hs{r\Q',_binary 'd=*y6d&\'\f%\\N\\]\>`n','',0,'?'),(_binary 'NW\ϴ;,','wp-content/plugins/widget-logic/languages/widget-logic-hu_HU.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\z@\\pCK\',_binary 'Tϓ\\\0Y3u=\^\<ospj','',0,'?'),(_binary '\81z[Ly\\\\9','wp-content/plugins/widget-logic/languages/widget-logic-pt_BR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u{X\\!Io',_binary '$.\rm߀\"u\\n\uQf\}M','',0,'?'),(_binary '.s\\\gq<','wp-content/plugins/widget-logic/languages/widget-logic-pt_BR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u2kO9?\\',_binary 'O\F<\L\qཧ\rڬ\2	','',0,'?'),(_binary '\\S\J\(ۅ\sl','wp-content/plugins/widget-logic/languages/widget-logic-uk.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g*M\Zr\²U8h\',_binary 'rbqgO\\\h۳\{\Z	p\-]xXV\','',0,'?'),(_binary '\\d;\5~+\\nh','wp-content/plugins/widget-logic/languages/widget-logic-uk.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ۜ߻\\\h\K',_binary 'bְL\\\#\i\$\^Y','',0,'?'),(_binary '(z\*[RdNu','wp-content/plugins/widget-logic/languages/widget-logic.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\n5܄\+vLT\\r\<',_binary 'X\'7\GzODD\G\ЉLO*','',0,'?'),(_binary '\nf1b\۞\#}\_','wp-content/plugins/widget-logic/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9\\{\\ z@\',_binary 'H\\s8S\\ˁ\"]9u[wMLwL','',0,'?'),(_binary '\o+*a+!\KZ\','wp-content/plugins/widget-logic/widget_logic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Y0^lg.\',_binary 'ҞotmgprD`*∷\\\߈\Z\uv\\Z','',0,'?'),(_binary 'sE\\\GKP|','wp-content/plugins/widget-options/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\M+SO\]',_binary 'x6\@\\n\qv\dR>\\{8^_\\pQ','',0,'?'),(_binary 'q\\YG{\\\N\','wp-content/plugins/widget-options/assets/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\\.d\\"\c\8C',_binary '\'w\,\\nޤ\n\Z\w>D','',0,'?'),(_binary '\(\Ӝ\˸eQ[$','wp-content/plugins/widget-options/assets/css/animate.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\33\yޓ\0\_',_binary '==L\[Ӧ-\J\ZWGGsQ\VN\;','',0,'?'),(_binary '.)ߌ*Ai$xדg','wp-content/plugins/widget-options/assets/css/beaver-widgetopts.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TM=f\\^\\n\.',_binary '&\Шǫ\\}/M\x,\0i\۠\','',0,'?'),(_binary '\n\Zh\	߭\\\R','wp-content/plugins/widget-options/assets/css/jqueryui/1.11.4/themes/ui-lightness/images/ui-icons_ffffff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\tzM\$2',_binary 'CDv!n#\[\/\xOd9\q{G\+E','',0,'?'),(_binary 'Y5\܍7\\r/\\o','wp-content/plugins/widget-options/assets/css/jqueryui/1.11.4/themes/ui-lightness/jquery-ui.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n]:@2O8\vj\',_binary 'W\Pk\6f\\\.\\'k!)\\\','',0,'?'),(_binary 'at6\n׽N\\C\','wp-content/plugins/widget-options/assets/css/select2.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9\'\-',_binary '-9\^\\\0b\wo)#\\\\-w\Z\0K\','',0,'?'),(_binary '2lS~\\\\ \','wp-content/plugins/widget-options/assets/css/welcome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\\\@\\\',_binary 'k\\\q\%\?\Z\އLNWURp\%s','',0,'?'),(_binary 'xh\~H\','wp-content/plugins/widget-options/assets/css/widget-options.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ij\\c;+v?R\Z',_binary 'cu\u\L\\,H\jIr_`','',0,'?'),(_binary '\,Wlx0\Ig','wp-content/plugins/widget-options/assets/images/cover-book.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\T\\\'\Y\&',_binary 'wѬ.XF6\^p\6\ZAAV\\\ \','',0,'?'),(_binary 'DdYGCv!0','wp-content/plugins/widget-options/assets/images/logo-mascot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\M+\\׾ߗDG',_binary 'ގ\\J\\\Y\\\\v`6S˻S\w\6\','',0,'?'),(_binary '\jѐ\v\C\','wp-content/plugins/widget-options/assets/images/ui-icons_ffffff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\tzM\$2',_binary 'CDv!n#\[\/\xOd9\q{G\+E','',0,'?'),(_binary 'vi홧Y\','wp-content/plugins/widget-options/assets/images/widget-options-profile.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[E)B\L\U\',_binary '\\rE\\pY\\&zIB%\fPL5\y','',0,'?'),(_binary '8:\nN\vZ\\p^','wp-content/plugins/widget-options/assets/js/admin.js',0,_binary '\\\2$jNĸ\\ֻ_\\Z',_binary '\\\2$jNĸ\\ֻ_\\Z',_binary 'G\\}\M-DV\Y\m=Q}\\.}','',0,'?'),(_binary '$3<^\w\\x\B','wp-content/plugins/widget-options/assets/js/jquery.liveFilter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ⱦ50pz\q$|',_binary 'g,\ٷjOXx\:Q\܀\\DpGk\','',0,'?'),(_binary 'NŮ\\"F\','wp-content/plugins/widget-options/assets/js/jquery.liveFilter.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bB6\r_\XBE',_binary 'u8\yM6q_ޏ\0\b\0\1\G\\k','',0,'?'),(_binary '\ajN\]U5\Tv#','wp-content/plugins/widget-options/assets/js/jquery.widgetopts.beaver.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\/;!p%\^*\<u',_binary 'v\0<?6*׃ja=H>\%\\zU\f','',0,'?'),(_binary 'v$\\rbP)wE\R','wp-content/plugins/widget-options/assets/js/jquery.widgetopts.beaver.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7r@׈X\+!\q',_binary '\b銥_>\`v\\\T1ĉ','',0,'?'),(_binary '͕Cn<z\*','wp-content/plugins/widget-options/assets/js/select2-settings.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü0mB\\c`',_binary 'G\"d4qr\`t}A)p1\Y9h`\&','',0,'?'),(_binary 'C	xD\\'fQ\\}?\','wp-content/plugins/widget-options/assets/js/select2-settings.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j?\"f\Kt{\\C',_binary '\r\\n\$bgK/xFdl9\4(Yu','',0,'?'),(_binary '\8\\_fTO]Ia\','wp-content/plugins/widget-options/assets/js/select2.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Wb*&\I黴',_binary '.n\n6)W|y\J\6\n;!\lfZT','',0,'?'),(_binary '\o\0iƑ1V','wp-content/plugins/widget-options/assets/js/settings.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0)?\Q\'\',_binary '+cō)z\H~7xm\5lټ','',0,'?'),(_binary '\3\\.	\\\Zip','wp-content/plugins/widget-options/assets/js/settings.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uD$\k({.vt',_binary '\{CUW\\\\]sFR\\<T','',0,'?'),(_binary 'k5oͨ\C׭','wp-content/plugins/widget-options/assets/js/widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tB_\3',_binary 'Dq\Z*\\\Y\\4tCH3\Uf\u','',0,'?'),(_binary 'Z4Rp[O\4!\̼\)R','wp-content/plugins/widget-options/assets/js/widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8 $\7\0\\|3i',_binary 'A\\\%\N̓|t\5l=*\\\\Lؽ\d','',0,'?'),(_binary '96\\]\\\Y\Su\','wp-content/plugins/widget-options/assets/js/wpWidgetOpts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rj)IxIo\\*',_binary '\\^\\X=C\㚄\t\y\VYC\5\D','',0,'?'),(_binary '\*ɫ{U\\0\~','wp-content/plugins/widget-options/assets/js/wpWidgetOpts.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\\(T+\+',_binary '\\wsy\y\w\\Z߂x\F','',0,'?'),(_binary '牂\2\\+\\','wp-content/plugins/widget-options/assets/scss/welcome.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*G˺\nd{.',_binary ')\\E+G`z\GaWl:ݠ\l\\','',0,'?'),(_binary 'V\nb\$%q','wp-content/plugins/widget-options/assets/scss/widget-options.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.j\rv×\\',_binary '0\x\#\'\i\u)<\\w3Y\n,JI9v\2','',0,'?'),(_binary '\\rOi\4{Y\̕S','wp-content/plugins/widget-options/includes/admin/globals.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Bv.\\\\\Zb\ZϚt%',_binary 'N7t%&\\\ᑸ\\"Q+\\UcsB^','',0,'?'),(_binary 'ʊXy{( ','wp-content/plugins/widget-options/includes/admin/import-export.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*54v\xX`\>\,',_binary '\Z=7M\fڵ0\#\n띻Ee\','',0,'?'),(_binary '~se]\n&\a','wp-content/plugins/widget-options/includes/admin/notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zb\}~\\v',_binary 'T40\\~YbE\`\:b._\c\($1','',0,'?'),(_binary '\EWSB	$\\','wp-content/plugins/widget-options/includes/admin/settings/display-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kN\#\C\[\ӈQ\+',_binary 'N\_L\\(\\Ls~\\.Z\C\Ws\r>','',0,'?'),(_binary 'uD\"\\~tNf*w','wp-content/plugins/widget-options/includes/admin/settings/modules/acf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'T0\-\jRw:p8',_binary 'ǆva-\0\~m\7aߌ(g4Ň','',0,'?'),(_binary 'h@}\\+\РHy','wp-content/plugins/widget-options/includes/admin/settings/modules/alignment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FZ\\8.x\).\L',_binary '\ō\(@\Yo\\\W %\\&1N\\(B','',0,'?'),(_binary '^\;e\J+T.S\"','wp-content/plugins/widget-options/includes/admin/settings/modules/animation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E#szB,T\\1',_binary 'ΔU\J/)o\\RdKU\\\͚[','',0,'?'),(_binary 'U{\\\zD\#','wp-content/plugins/widget-options/includes/admin/settings/modules/beaver_builder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\"\-@\',_binary '5ʱ\0SjL|?\GQBq\\','',0,'?'),(_binary '8I\\k=6\P:','wp-content/plugins/widget-options/includes/admin/settings/modules/cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\M\o\;\\u',_binary '>T,\,ܧ(S\\r{\\\TR~]\/\','',0,'?'),(_binary 's+sx^+\','wp-content/plugins/widget-options/includes/admin/settings/modules/classes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>H~jd\rnV\\\\\'',_binary '\\\Pp\\\z\ـm\%l\_g','',0,'?'),(_binary '<\g\Yv\W\E{,`','wp-content/plugins/widget-options/includes/admin/settings/modules/classic-widgets-screen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6خr9%\>}',_binary 'J<\e\n\lj͆\\XZ{yYl|}(','',0,'?'),(_binary 'ı\\\5','wp-content/plugins/widget-options/includes/admin/settings/modules/clone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\IOVj6Yt\',_binary '\\]emFZq\/\s\}ĕ','',0,'?'),(_binary '#ݢ\RJM\','wp-content/plugins/widget-options/includes/admin/settings/modules/columns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',>\u#\nR\s>b',_binary '9q\jsރQjF\\lbS\9g\m','',0,'?'),(_binary '|>\}ciK\v','wp-content/plugins/widget-options/includes/admin/settings/modules/dates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\νMr\^\֦4M',_binary 'Lw2\i@8L9/\\r\h\ iT\\\'\\\J','',0,'?'),(_binary '\`,\\\v:%Nk','wp-content/plugins/widget-options/includes/admin/settings/modules/devices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŷQX,pYQ2/ڐ',_binary 'x~*K?A((\\6S\\\r\V\\\H~','',0,'?'),(_binary ' @\	U\R\k\','wp-content/plugins/widget-options/includes/admin/settings/modules/disable_widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I^5\Q^\\\G\b\4\',_binary 'f\(Y(\"25]AUN1\','',0,'?'),(_binary 'Ugg}h\\$\y\[ ','wp-content/plugins/widget-options/includes/admin/settings/modules/elementor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\U<ǻ*׌Zi',_binary '\\,by#m \\R3z~ ,\\','',0,'?'),(_binary 'x\n\d\','wp-content/plugins/widget-options/includes/admin/settings/modules/fixed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',˭yA|f6m\p',_binary 'C{4G\]~eNm75f7yGDX^7I\','',0,'?'),(_binary '(x\\-`Pؗ	','wp-content/plugins/widget-options/includes/admin/settings/modules/import-export.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ήd\\"\\\XvB',_binary 'i\2\3\Y\\>Pvud\rK\>\','',0,'?'),(_binary 'AC\T\"dfVy\','wp-content/plugins/widget-options/includes/admin/settings/modules/links.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/y\n3NU\\q',_binary '6+	ɾ\\n?j3{Wiz\\\!ֆbc','',0,'?'),(_binary '(V~\Y\D\6','wp-content/plugins/widget-options/includes/admin/settings/modules/logic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\],Le_B6_7',_binary '\yC9n\\ȪgПj\\6=Z','',0,'?'),(_binary '`6}$]B8)\\K','wp-content/plugins/widget-options/includes/admin/settings/modules/move.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\*\jt}#M',_binary '\8g);\\n$kĉ\\\','',0,'?'),(_binary 'kAf\a\q1W\','wp-content/plugins/widget-options/includes/admin/settings/modules/permission.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r4K\(_T\\',_binary '`o&\S\'\P\a\m2HY\\m}CE\\','',0,'?'),(_binary 'j\\\-,F\\\5','wp-content/plugins/widget-options/includes/admin/settings/modules/roles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ҢZC܈\C?܇',_binary '`vpP\eڿ\n\Λ\qg@\+\','',0,'?'),(_binary '%\\\\G:\%','wp-content/plugins/widget-options/includes/admin/settings/modules/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[.OV\ڰ\)fQ',_binary '\ct*LCq\\\\tCN)ޙr\(N','',0,'?'),(_binary '\u Cd\\¶2n','wp-content/plugins/widget-options/includes/admin/settings/modules/shortcodes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '͚&\\\\'[\\س',_binary '\s\n\\PϽL]~	\NbHs&>S&','',0,'?'),(_binary 'h\\8\XGR֯+','wp-content/plugins/widget-options/includes/admin/settings/modules/sidebar-more_plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zV\ܟ\"s\',_binary '=mJj^\BZƄ$R\~\h\K','',0,'?'),(_binary 'ߕ쀼SB5b','wp-content/plugins/widget-options/includes/admin/settings/modules/sidebar-opt_in.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\}Ohs\Roh',_binary '\%\s\t\\'ab\\R\"\\\$','',0,'?'),(_binary '}\װ\[\c\-\Z','wp-content/plugins/widget-options/includes/admin/settings/modules/sidebar-support_box.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f><Nm1\\',_binary 'u\[\\g\\\@a\\r\/ҼlԐj','',0,'?'),(_binary '\[KJ:঳Q\\'','wp-content/plugins/widget-options/includes/admin/settings/modules/sidebar-upsell_pro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\U\=$;i/+t',_binary ';6]\\WSYm7b\ճ?\\e$:`','',0,'?'),(_binary '\iTC2r\\\Eo^\','wp-content/plugins/widget-options/includes/admin/settings/modules/siteorigin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\\ܠ#V)\x\O',_binary '.g\\dC\0o\\'\҂jH\ƃ\\'\','',0,'?'),(_binary '\!A(\\JO\','wp-content/plugins/widget-options/includes/admin/settings/modules/sliding.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\:ƿ\\ڨ8k',_binary 'H9(	\EBk;ת)(kI\P\%','',0,'?'),(_binary '󕏡>\\|\!?F','wp-content/plugins/widget-options/includes/admin/settings/modules/state.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'ϼ)zLT',_binary ')\\Zh6\\L\F\[tz\\D5uO;P\','',0,'?'),(_binary '\=9\z\\D\','wp-content/plugins/widget-options/includes/admin/settings/modules/styling.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NI\HV4\\ki',_binary '\o2\h\\R!t.w\\\\\','',0,'?'),(_binary '~~\lhB\4\b\Q\','wp-content/plugins/widget-options/includes/admin/settings/modules/taxonomies.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\gKu:\\\ab',_binary 'E0OT=\\\\'\x\G\@YG\v+\q%R','',0,'?'),(_binary '\\\\z\"\\&\N','wp-content/plugins/widget-options/includes/admin/settings/modules/title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2j\P\\nGKf/',_binary 'U]\\\o^\zT\NቝuG܃	','',0,'?'),(_binary '<Bڿ\\[\\N\','wp-content/plugins/widget-options/includes/admin/settings/modules/urls.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\v1\\o\\\',_binary '\\'G\\>7yXXi!\V%\x','',0,'?'),(_binary '&k\\G^1jk\','wp-content/plugins/widget-options/includes/admin/settings/modules/visibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\㦓&>\.',_binary 'L%\\\M\\׺1II\5rߠP\O\[','',0,'?'),(_binary 'M^NǜĎ!8hI','wp-content/plugins/widget-options/includes/admin/settings/modules/widget-area.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\"<\\*o\\\',\c',_binary '\P\K4\!X\\:v\\/h\]','',0,'?'),(_binary '\0-\\x\"\HV^	','wp-content/plugins/widget-options/includes/admin/settings/register-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\\*b\\ܾ\',_binary 'DPbL\0Xz\A\\n0,\Z=AlE','',0,'?'),(_binary '4q\Zyp','wp-content/plugins/widget-options/includes/admin/welcome.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\M	\>ı?',_binary '\\KXS%`)\8,`ƍ\(\o\D#S','',0,'?'),(_binary '\`m巭\\n5=','wp-content/plugins/widget-options/includes/ajax-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g=}-W.0 ',_binary 'D٦P*\hfXQ\/A\t$A','',0,'?'),(_binary '̶\V\\\\','wp-content/plugins/widget-options/includes/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N;}\[_\giI^\',_binary '9\-࿵4\^W\,`=\\L\g{\F','',0,'?'),(_binary '5\'$%\_\\','wp-content/plugins/widget-options/includes/install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z#+\9DY',_binary '.>Rnm##6.\\}i\\\\")ҁ0','',0,'?'),(_binary 'W\\\W\i\Y','wp-content/plugins/widget-options/includes/pagebuilders/beaver/beaver.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#-Z\\G\Q-<\z',_binary 'E\\܁O<\Z\0\0~\\\\\GO\','',0,'?'),(_binary 'T\0j\Qx,<$\','wp-content/plugins/widget-options/includes/pagebuilders/elementor/elementor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SgkkJ\d4\]T',_binary '\ղ \lI\W5\#\\`\X\O!\S#͎','',0,'?'),(_binary 'FC& 6K\\\\\','wp-content/plugins/widget-options/includes/pagebuilders/elementor/render.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̇~aeb\8 ',_binary '\\Џ\؜\\\[C','',0,'?'),(_binary 'e\\tYQP٪Q7hV','wp-content/plugins/widget-options/includes/pagebuilders/siteorigin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\'\bI\,K\\',_binary '0Eͭ0\\3,\)F\+\Z\ȇѶ\','',0,'?'),(_binary 'Ũ\rVZ[\nƄ\','wp-content/plugins/widget-options/includes/scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!_>X96p\n0d\i',_binary '`U\mƶrZN0tEA-\5\\$/g9ͮ','',0,'?'),(_binary 'p\;\$q','wp-content/plugins/widget-options/includes/transient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\"Ӧ\\3/\8*ݍ',_binary 'T͢=R\rΙHFHi6\505`\','',0,'?'),(_binary '\𜑬9E','wp-content/plugins/widget-options/includes/widgets/display.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H8\\/Ok\\'\',_binary 'n/Og&sA%\e\[\({\긯\\3l','',0,'?'),(_binary 'u\\\Zy\Z\,\\','wp-content/plugins/widget-options/includes/widgets/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eh\\Z>DV\',_binary 'Wrݛ?r?LDJk϶\ga69%u3\\\\','',0,'?'),(_binary 'K닺#^x\','wp-content/plugins/widget-options/includes/widgets/option-tabs/alignment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\'z8d;\S',_binary '\^\Έ\"\\\&:%Ԫ\a%Q','',0,'?'),(_binary '\\L1\~\N$\ܣjC','wp-content/plugins/widget-options/includes/widgets/option-tabs/devices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z/c\\"jE9rФ+',_binary 'MF|Q)ק\?\\\an^*B83\(M','',0,'?'),(_binary 'p@c\&\r(V','wp-content/plugins/widget-options/includes/widgets/option-tabs/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\4\$T\\\rMQ',_binary 'm\Z\lD\\~YӖ/\+Y\6N{\8M-','',0,'?'),(_binary '	\\UM\\zbXR`7','wp-content/plugins/widget-options/includes/widgets/option-tabs/state.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=~}\ߞ\fJQ',_binary 'L\VI(g`Gj}\'Ah\"OCv}GFW	B','',0,'?'),(_binary 'gYxs\!\\ᄫ\','wp-content/plugins/widget-options/includes/widgets/option-tabs/upsell.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\V\\q\݈',_binary 'S\:SG܈\ֳ&B\X*s9IƤ\wñ\','',0,'?'),(_binary '/mA$9\6!g','wp-content/plugins/widget-options/includes/widgets/option-tabs/visibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\DⓂNiG\!',_binary '|f\\w\\\t\\\5\\\b\\\ki{','',0,'?'),(_binary 'Kхq\ \\V*B\0\`','wp-content/plugins/widget-options/includes/widgets/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l5f}Kرi\*',_binary 'Aq۫5_\h6]||\@_K&I~J\E\	8Dt','',0,'?'),(_binary 'Qc\a~\\\%ƫK','wp-content/plugins/widget-options/plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jm\ɳ˶\S',_binary 'LBmF04VeU\\\l\[D\0','',0,'?'),(_binary '\\\sj/\\nU','wp-content/plugins/widget-options/readme.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '})\?\\T\[ښ',_binary '$_Bn>\E˹\[\V4l1su\R8','',0,'?'),(_binary 'q\Z]ܱscgڥ\','wp-content/plugins/widget-options/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\nex\\ v\#',_binary '53\!d9`0\C-\S1\\EO~','',0,'?'),(_binary '\.\\|);j\Z','wp-content/plugins/widget-options/screenshot-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ѓۥ0\\\3[',_binary ')I\(T3/{ӯ\0g\,U!\\Z/wۏp\R','',0,'?'),(_binary '\_\Sެyy\','wp-content/plugins/widget-options/screenshot-10.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P,\Z\0bT<\',_binary '#\\XC\\019/(y\\r\\1\Wb','',0,'?'),(_binary 'X\\Z\Z듌K},','wp-content/plugins/widget-options/screenshot-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '352%\Jf1\',_binary 'nk4V2o\'+Lc6a\4\\F\\\\\\Ϩ','',0,'?'),(_binary 'DA\"0\\','wp-content/plugins/widget-options/screenshot-3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\+@&Gz?ĳ',_binary 'Bl`\Y-\YWGP\	\}\_7\\-T','',0,'?'),(_binary '\nٛCNS\D\','wp-content/plugins/widget-options/screenshot-4.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\T;\G\)',_binary '\ns\\\M۠0x\\J\r\rob-.,E\\\\','',0,'?'),(_binary '2\	2(\nX\I','wp-content/plugins/widget-options/screenshot-5.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h[\"\'\',_binary '\\;b(+͊J\)2hZ\$\'nbc|ă\','',0,'?'),(_binary 'dsu:\"x\W','wp-content/plugins/widget-options/screenshot-6.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3-\ȓ?ۛVɞ;',_binary 'hѺӪl*⟉\yS\8\ĩ\bfv\','',0,'?'),(_binary '̆,v)\zĸK\\','wp-content/plugins/widget-options/screenshot-7.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&WۖS=\0|\',_binary '?\\]\F\cC2\\ڈ\|Vs\?p\<m],','',0,'?'),(_binary 'Y/\^Wt\\\߂F','wp-content/plugins/widget-options/screenshot-8.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q+*\e\\qn?M=',_binary '\\G\xl\|U\\p\\U\\n$hڜc\','',0,'?'),(_binary '\&Aű:%g$','wp-content/plugins/widget-options/screenshot-9.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[=Y+\\|\\\\\',_binary '|\7<WMxk^\n\A.O\/sо','',0,'?'),(_binary '\\*(*+Wjcp','wp-content/plugins/wordfence/crypto/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3Կ:\V	U\'',_binary '\|<\\P*tg3dYs\\/\','',0,'?'),(_binary '\BImS\96\7\X','wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yG\M!ex9\\',_binary '\!ZgbZ\\FZ\z\\|YE\	','',0,'?'),(_binary 'Cy\\8\\'a\','wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0mj\\Ԟ\W',_binary '͛=\ېIhKg\0%T.\]\r\~','',0,'?'),(_binary 'S\n\pލG%','wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']_\#D\\0\\',_binary '\Z ے\%4~N\~Gh!b\:wɌ\'','',0,'?'),(_binary 'a5\ͅB_\s\','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EӤ㭇\\Mg',_binary 'Q\*\'B+Eߞ:\m\yu\W','',0,'?'),(_binary 'k\PP1<\','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ou\l\\_4@',_binary '6b% \"\ʴs\J\p3\8ӷSǙ:','',0,'?'),(_binary '\MAH\\\\0\[d_\!','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\,}vĨ3\G\)',_binary 'Er4@\0ԡ$\z\3\$l\\Z\`i\ex\l\','',0,'?'),(_binary '8Y\\v\C\[,','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:\0\\>\\\}LQ\0',_binary '\\_U\0]q=Չf\\/	@d\\r+v\*(','',0,'?'),(_binary '\Zp%\'n\ZWj\','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ey\\\BJ',_binary '>?z\yO\IncC!Y\\\;/:<\nJ\','',0,'?'),(_binary 'PK2I\)','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3[h\kda4\p',_binary '\&!\7^\@\9N\BT\\\\\*8\','',0,'?'),(_binary '&PDt\?5u1Ym\','wp-content/plugins/wordfence/crypto/vendor/composer/installed.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\jy*_iI\',_binary 'z~ti\\\D5\Z9l9;I\','',0,'?'),(_binary '\\˕r&\q\Fi','wp-content/plugins/wordfence/crypto/vendor/composer/installed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K:\Q)˸\:-*',_binary '\8}\ު\]\\"1&(\䙄\','',0,'?'),(_binary '^u\uWdM=','wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z\\=Eo0[\',_binary 'm?\Z\\"\g\=0\N\"\Q`u\'\\~I','',0,'?'),(_binary '\N\\\'!\rB\j\3\','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\H\\!#>b\W\',_binary '&\xw\αh\\)œ@5m\\.)9\R','',0,'?'),(_binary 'F|\w\ZQ,O','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\\?\\n\	:{Q%',_binary '\ZIK/Iw¥OvyEBi\\$G&','',0,'?'),(_binary 'O4ǳWQ\0\R\','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>ǈ\"C\ix',_binary '\\x眪!\}\\Z\W\d','',0,'?'),(_binary '\\\.\U\	Y\\=','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h`VAf',_binary '<\\G\\;1#kLà\(փ','',0,'?'),(_binary '>G\O\jP\l\B','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\\\'Ρ0\g2',_binary 'ؚx\"o*I\\nQ\j\T(\G\Z.\Z','',0,'?'),(_binary '1-\\\g97\\','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PB\.\\}\F',_binary 'c\(k1\\\2Qw4\?0','',0,'?'),(_binary '\46\1\m\\YR','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nH\0\u} `\\\',_binary 'R\\&X\d\[49V\I','',0,'?'),(_binary '\r\\\X\+\-Ta','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@ \MϼV_i	\\',_binary '\\U\s\\\\DMÙ\d\(\\0ā~\\\','',0,'?'),(_binary ' \v\bu)','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G\r\\]\\/',_binary 'yus\\\Կ\\\\\:\\0)\y\zsݿSkH\','',0,'?'),(_binary '\\PJ\t1z','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wU \\ې6M\\8',_binary '<\0\\rIB=\"P8D\\"\\\L~\I[','',0,'?'),(_binary 'wË\\\9/,+1','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\ Z8\t\"',_binary 'avxu흶j=IS\D{\!','',0,'?'),(_binary 'YV\29}D8','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=on~Z\TOQBe',_binary '<H\"\\F@\\%\1`7<\\	\}','',0,'?'),(_binary '\\\\PIcD\\ƾ\','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Js\ǙB',_binary 'ER\Jb\ȸI\"\\t\],qP1\\fD','',0,'?'),(_binary '@L\:(','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/psalm-autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p\\0\6&	',_binary 'ujv\d_\\\=\n\2fY+V\\\','',0,'?'),(_binary 'IooԆ5nuѭH','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\x\6F\0f\',_binary 'N^q\\yqܯ\r]S\\\\\[\C{Vy\w\','',0,'?'),(_binary '??Q$P.:X6','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-fast.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0@ISB',_binary '1\\đ\,\h-\h>fھ\G]','',0,'?'),(_binary '\\ƄNB׭','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-pedantic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@8\sA\\',_binary 'b\#x\\hF4_ \De\qeD\\','',0,'?'),(_binary 'iȜ\1\\0\\8','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S;h8\^\\g\R',_binary '\\m\fʬ\SXT\\8\\A-g','',0,'?'),(_binary ' es(N^+q','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-phpunit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2MEƱ(\(',_binary 'E\a\\r\f U\DLbVҪW#s\s','',0,'?'),(_binary '\^&\`R\y\J','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}n\3;g)\\',_binary '\nj\^\C\(\\UU\i\'9\O','',0,'?'),(_binary '&\\2\\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ylh\w%Re\',_binary '\\njqW\\	\v_\#\ f\~\\R>','',0,'?'),(_binary '-췓\9\ExZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xw\Tg\A}\\n',_binary 'kcQxe\˳`=n6\X5y\dz5u]WB\'','',0,'?'),(_binary '\\yKv\\.\Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>_\3\\Nw#\',_binary '\ǥ\mZz*,=:\n\-\3|\!\\','',0,'?'),(_binary '?H\\hD0	','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ﬨrz\d\',_binary 'h\+\][e+\hӆ\FY\ V','',0,'?'),(_binary '\\*h^\\\\\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n<Tfw\Y_I\\',_binary 'e\'#\\?\O-U\L]5\6\$','',0,'?'),(_binary '\n\:\X2\Lnc','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\cz\p\(,',_binary ',\\\%u\Z\\RzB\r#~+`\5y\','',0,'?'),(_binary '\Z\(\|\Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QUp~ocÊ4\Nt',_binary 'L\\nl2@ΐ\>hi,uJYH\\\L\,B','',0,'?'),(_binary 'ν\}\V+tB','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '꤀x\٠%cl',_binary 'N8,c\\\\ae\\Οi<5p$\','',0,'?'),(_binary '!Id]5$[\\~','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oL\\\ k\'k1',_binary '1\\\Qt*\J\\\%\\s\&','',0,'?'),(_binary '\\\'\|?\>\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L\\aDJ?Z',_binary '=F==<_%=\M?\\\\\u/','',0,'?'),(_binary 'I\PE\XtFH\%','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\\\Lv[c\\)?',_binary 'C\h!݀F$\}wd7b(!\p\IF.L','',0,'?'),(_binary 'W= \\\'x\"W\}\\d','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\թ\K^㥾',_binary '\M8:naƋGZ\qQdý!\\'&g1','',0,'?'),(_binary 'Zя\ݒS','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\\Z^ZHG%O',_binary 'mc;\\ny㐲\\0,\5\F|=\C','',0,'?'),(_binary ',z\e\Y#uJ~[P\r','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' OpR{ҵ\Gݍ\',_binary 'Y:B\\P5Ms_.ن֎','',0,'?'),(_binary '\BK\Aa<\l2','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Xߓ\Œ\"X3\6DQ\',_binary '!l..\GI\\n7oe\ѿ\\';I\n\n\','',0,'?'),(_binary '\\\\Z\e	\)\Up','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȑH\\Zb>V\D\R2',_binary 'rћJԑI/\\nOY}xņ\\\U ','',0,'?'),(_binary '\bq/\\Fk','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\7\¤\rF\\g',_binary 'nV\'VV\)F|*ᑝ2N\\z','',0,'?'),(_binary '^Sx_?uG\D\\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H\d9<C\ˤ\bl',_binary 'K\.Bo\\ࣸvb%\\S~1K\\','',0,'?'),(_binary 'N=f\>$K\\HT\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\?G{\\\g',_binary 'ĀР<W;-\Z񀍙(C+,M\U\\W6','',0,'?'),(_binary '\/\\؊!N>\\n','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f<_2S^IZ',_binary 'iݯ8{i\q!d\Ս\Az\\','',0,'?'),(_binary 'YBWy	+\BOm\z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#:\N\\'Dx\N',_binary '[\_|А\~E\+~\E\(`\_','',0,'?'),(_binary 'K\Lx<CH\e\Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-EN\Ăۛ(\nn',_binary '\\Ѭ}^EF\\\>\ڂB\\','',0,'?'),(_binary 'F1+\Z#\+d\{w\{','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.D6pir`fw\=',_binary '\2\KJ73\x2\M2&+LL','',0,'?'),(_binary 'E\S\c+\\#)','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\NmS\\\C\\{\',_binary '\\P~{p\\}x{\82hX\x\','',0,'?'),(_binary '!Plu6\\\CZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\P\\\e1',_binary 'T*\+\\z]ʜ;>\n\3\\\]?x\','',0,'?'),(_binary 'ia{-\\\Z\ؙo','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}<\\܎s\9',_binary '\Q\\'\r t7\=s*a`<z\o\_','',0,'?'),(_binary '\\"8Y74O<','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'diBD\J\D5\O',_binary 'NaiB\\\\r\AO]@\P\','',0,'?'),(_binary 'j\ֹJ\\0Y','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p0W\"F)\8O',_binary '5\)&\\BoK]ػ\rm`%\h\O','',0,'?'),(_binary '\	\\")\"\0Io\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zq\Zsq776\',_binary 'CDa$\=f[Q4\JW\7l).\=%','',0,'?'),(_binary 'ZLOl\\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\F\h\z',_binary 'oő\nwn\pL+;\\\\~t2P*ƃ6','',0,'?'),(_binary 'd`#)?ϳ\0(w','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' oY\-\)EHd',_binary 'l\,8E\TCeylaS\\;)\'\"d\`z','',0,'?'),(_binary 'G<7et/\W','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[f0Lş\\r{VW\',_binary '\\'&ܔ[m`\ϊ\c2E\%\WGW䉷','',0,'?'),(_binary 'a\.\j@\\^','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-above-3.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|<Qq\\)@\MJ\',_binary '/\jo\z\y\\@z%9&F%\[','',0,'?'),(_binary '^d?e.oʨL','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-below-3.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[\C\=sy3\L\\',_binary '_\o3\tY_o\f2k#06Ps;','',0,'?'),(_binary '\t\h	,Gx\"M','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\R\N\Zb8M\g|',_binary '{\RtH}ܧYQ\{\F\ZH\','',0,'?'),(_binary ' GʴGtؑ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Oū3(	iaY\\(',_binary '\\\\%\\Z0b[u\#v._\	O=0','',0,'?'),(_binary '3JΑTg0\\'e','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Common.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`4\\uB\nE\#@W',_binary ')r\xUYJ\;hpjH{\\\1\'#\\ s','',0,'?'),(_binary '(|ZxT[u','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z?\(E\Wup',_binary '+\\D\\0ej\rg\\\ϧ4\','',0,'?'),(_binary 'Kkf\g\T#V','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'er\x|2c\',_binary '\\\.C@2P\c֜^n\n\'-v[~','',0,'?'),(_binary 'q\L\>\\#Q\\0','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\B\\gY\\',_binary '\:\IZ\CZ\8Ȱ\L\]\m','',0,'?'),(_binary 'xLKx 2Is\!#Q','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\rU\\\CB\"',_binary ')M쩂tU\\δ\Ԫ\\F.','',0,'?'),(_binary '\%#\\t\\4x','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yW0{X\nZ0',_binary '\\0AV\RX\ȕ\~\\d^\/)@R\\','',0,'?'),(_binary 'P \\NtD݌n\"','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\!,^\q',_binary 'X߇p\Ք\ZЉ\ֱo\\r=˸<!~3\','',0,'?'),(_binary '$\P\`\0g\X','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yF\\\\2\\',_binary '2ks\\\>RI:nH\ȿDm\!zz\','',0,'?'),(_binary 'Z9\}.\\J\k=','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8I\\Z\n\ӣ',_binary 'i>zR@\\\\\k\W\6uk\y','',0,'?'),(_binary 'Pbw=\\i\\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Z\Iw5AlLۢ',_binary '\K{8fl7sRh\\嗋\I','',0,'?'),(_binary '\-\'gP\\\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9V\#ҹ\\4',_binary 'GpfHv\Z\\x81C[\4A','',0,'?'),(_binary 'AK<\\jgsr\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4Kb(\\\\\pB-',_binary '\ճ* ʰ	\[q˜P\\k','',0,'?'),(_binary '\ ލ<:9\|\\6','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-_\b\->O\\苃',_binary 'sɔg\%riCP\w%\{\\J\','',0,'?'),(_binary 'vLM.f\\\%OMR','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4V+=?k\\r\\',_binary '_\\x:\nOsO:d\\'\0N=\k\','',0,'?'),(_binary '͍\\ρbB','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Ǳ(r\q֧#',_binary ')0\\\\\\+\\\^hv.(\>\','',0,'?'),(_binary 'oC\\"\Q\\t\y','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+\\%',_binary '4!H:6>\lE\\Ec#\\a{A{','',0,'?'),(_binary '*\\\b\*ee','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\x\\8z\M\~.',_binary 'vR\0S~[\rҮ6\\o\\:Ś\r]','',0,'?'),(_binary 'HY6o\\D{LH\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u.S\\y\l\=\0C>',_binary '\?\\x`Q=\\8:vsT\','',0,'?'),(_binary '\\\\\➞^՘R\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\o\\hg[',_binary '\߁.\-h4`9S _\r\)I\(\W\\','',0,'?'),(_binary '%$\\\Mq\T<\\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CUO\\ZߠxtH',_binary 'G\n\"_/A\gh	U?\Ss\H\בY\ٳ','',0,'?'),(_binary '0\\a\OZI|I\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\WHY \²',_binary 'zI]_ǲ!\bш\6d\uY\3','',0,'?'),(_binary '̙~Ȍî+\\byȁ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{숊z;5!\\',_binary '\D\\Z\LޠΔa]n\\n\\L&\\n','',0,'?'),(_binary 'K0\\\r\\ܐcn\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\29Y¿,E#\/',_binary '\  h<)s\>-P{\\\KI\\0','',0,'?'),(_binary '?U\\'_l.p','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o>B\	IN-y',_binary '\hl[\(l~Q\u\FM	','',0,'?'),(_binary '\gxAȢ}g','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]ኮ\\\ȣ&',_binary 'K\#\@JU}F,\![','',0,'?'),(_binary ']*.>`E\f','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\F\h瀁1-',_binary '6!om\ݎ^.^@˨\\v7\	I\}','',0,'?'),(_binary '\l/<\U\\ZA\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\SzLHAWr6~',_binary '0pU\\\gוG/%\'\\Zd\\n\n','',0,'?'),(_binary '-\\[\\Jץ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\1\	\M\\\]',_binary '\A8\\{!\Vt<SqHoh\4y`By','',0,'?'),(_binary 'of?\3P1\\"\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\"̤/O\Y\'',_binary '\8\e\Tet\r jP\/J\<^rӥz','',0,'?'),(_binary '\71\\}\n\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '12+;F\\\нNM',_binary 'w\\"*5U T@\nyȳ\^au\'','',0,'?'),(_binary '\\w\y*X\O\nG','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\Vl~\m[%Wt',_binary 'Pq\0V{|\0m\0;\\\2f@U\','',0,'?'),(_binary 'W8h!ɩkĉ\'','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rRUb\*\\\0\'',_binary 'x\\\\<\sBZ2jRM\'0%$\i{ V','',0,'?'),(_binary '\ͥ`FJ\\Su','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kz+U\\Ÿ(\5\\',_binary '8:oI\9,\=zDk8;\{A{\Zij','',0,'?'),(_binary '\Ia\n؎\\a','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>\Z\\\Z+,',_binary '*y$MQ[q\:h\\"\)XTC\0\\\k','',0,'?'),(_binary '\cYF\\}\j`','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\\b(浏К',_binary 'n;<\	Ǖ-W\t]\<s\\u','',0,'?'),(_binary '\u_\\\~!\0\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y=\nY\992',_binary '6\Z/p\y5\\E\حOE','',0,'?'),(_binary 'o\\\	l\Ѵ\cd','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\n@LjwD\',_binary '\r8d\\8sڇ\\6\FȌ\','',0,'?'),(_binary '\~+\q\X\\"`','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oaQ\|g\4&\\',_binary 'c\UX\\+]Wvd\=,\Z0)\\','',0,'?'),(_binary '\\\h]CA*','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'I\˞aFtz\\\Ǯ',_binary 'Ҭ\\ZADs5\?D\A/<:','',0,'?'),(_binary '\_\n\paV','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>*L\1\˵\"k%F+',_binary 'Z\i\M\fUvi-\})\f\\"Mnd?X','',0,'?'),(_binary '\Xp\\\~0D','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Woe~oB2_;',_binary '5q\SrL\]OXsq\\\+l<\ɒ','',0,'?'),(_binary 'A?\]\\8PMT\l','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C\B\)c\ae\',_binary '\[}D\\\\0OV:~-\\"~mBh\"<\pW\','',0,'?'),(_binary 'B\PXW\\6\\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \QA\L\󚜆U',_binary '\\G\n<.\ZWr\ʪ\\Ø)','',0,'?'),(_binary '[\'\/\;','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yP58\\Ƣ\',_binary '\z3qS\\T=\䞌HL<Y5A\#H','',0,'?'),(_binary 'a@WrQw\Z\n.\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ܑzg<N\\\n?o6f',_binary 'R\EgX3JAc\!a_\\S{','',0,'?'),(_binary '\ \K iDt','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\Zz#H\\',_binary 'n]\x\\Z_Ѫk\B-a&̃','',0,'?'),(_binary 'W\LjN/@Ϣ\ư','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T	\nrk\',_binary '\;\\\Xځ\\/0;Q\P.B4\\\Z\','',0,'?'),(_binary '_\#\\U1pGS\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\rt\w\(e',_binary 'ҿD\I<\^\i2dW]G\_\-+A8\W','',0,'?'),(_binary '?Fϸ\AR1\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pԏd0\\lN&7+',_binary '^s\n@G,ږ\n;|3P	nԔ/\rzA\\"\nd','',0,'?'),(_binary '/	E:K\R寥v','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\[\SPkC',_binary 'ںمŴ}C:\ø=~\\Q(8\$Q','',0,'?'),(_binary 'z9	\`d3\\0\Iay','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ @\\^8J',_binary '\ؽ@B-K\\m\\\-Ȼ\\Z\2p','',0,'?'),(_binary 'B\@R*GxF4N}','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'_?Sş\Z]\y',_binary '6\[-\,9YRr\\rY\"-an\6$','',0,'?'),(_binary 'GG\a\"','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*M]YnM$^ù\"',_binary '\ϐ\N\\oKtQV\r3-\\y\-','',0,'?'),(_binary 'aJr\\\&\-D\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uo\}S}8.',_binary '\$\s\\\\?;fĠ=`\r\	\\&!','',0,'?'),(_binary 'XX*\\!2\~\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eb:lx-\<\s99`',_binary '\,\{ mZBV\TL;*\\<','',0,'?'),(_binary 'q\$\'6e\\-W]','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nb\x	BC?\Z',_binary '\eC8&\r\\\\h\r\2w\(^Й\V\0','',0,'?'),(_binary 'TL \߈,]զm','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8	:{\W\\e',_binary '6{w\^GkΫ\25\b\\r\\񓫄\','',0,'?'),(_binary 'K\\t3ӳ\\'b','wp-content/plugins/wordfence/css/activity-report-widget.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J^x;y\c',_binary '\ӡf\aMWv+\W%}\\`D\N\','',0,'?'),(_binary '\{\\%(\Qoj\','wp-content/plugins/wordfence/css/diff.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '܀g		$`r\Q',_binary '\$\hEJ^54<$ӭYc\\\\&','',0,'?'),(_binary '?d\#\\\ce','wp-content/plugins/wordfence/css/dt_table.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\gJbjJ9k:\',_binary 'o[P\HyЊ}\\iGc~\<cD\R:D\','',0,'?'),(_binary '0˫&´U\','wp-content/plugins/wordfence/css/fullLog.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\.i`΁U\v',_binary '?\>?h\ξ[²\P\u{\puaa','',0,'?'),(_binary 'hr\Z;%e-x','wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G\Ju;Q\Z6',_binary '\\\MU\KhQwCi\V\J\'','',0,'?'),(_binary '2v\'\9\r\\z','wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\bD\@pG+\',_binary '*DZ\>Bg\&YY\4(</','',0,'?'),(_binary '\Z \R\[\\'\>','wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J\\c7yx\гl',_binary '~\qV\*\'\1]3^\\\m','',0,'?'),(_binary '2r}\V\ĥ$^n/','wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h^n=(&\݂N&',_binary 'S\DIBz\_-?(Y\\pEyƹA','',0,'?'),(_binary '\\\\\7\\Qo','wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|%;wQ8\@',_binary 'wi>\6Ƭ\4\\.N\C\\Z4IO\','',0,'?'),(_binary 'vO\#\JN\\+쁁','wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aa+JD$2J\',_binary '/#?T\iOLyv\uTKɤ\\ػ\','',0,'?'),(_binary '4Gqh\"ݡ\\jO','wp-content/plugins/wordfence/css/iptraf.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ebf.\\n\V[\xPh',_binary 'J-@ ]\-\\	\cq\\WQ$8','',0,'?'),(_binary '	`\>\RJ,.\','wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')e\\f\#`P~7\n',_binary '-m\\z\\n\N\FE\0ѭ\\vq\sL?Z\Z','',0,'?'),(_binary 't\'\/\nh{\0#','wp-content/plugins/wordfence/css/jquery-ui.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}O\^\0tGG\\Q',_binary 'ٍ$rb=p\hx\K5]8\QRjn4','',0,'?'),(_binary 'y\h\Biy/@','wp-content/plugins/wordfence/css/jquery-ui.structure.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\/\h<U\\',_binary 'n\\\i\뗅NvX7Y]D','',0,'?'),(_binary '^\\PA聸G\o\','wp-content/plugins/wordfence/css/jquery-ui.theme.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bK0b\xљ]',_binary '4\\\\ncE2=V{\+\\\goЅO','',0,'?'),(_binary 'VDp6@%\\','wp-content/plugins/wordfence/css/license/care-global.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kK.\ǴU\^',_binary '2\Ʋv{\"S\\=^!\W:C,OJe:\9','',0,'?'),(_binary 'g%6\ P\5\@[f','wp-content/plugins/wordfence/css/license/care.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qC\*&h)F',_binary '\\\Zm\ʘ\:Nӹ_\n8Q&y\rx_Qy\','',0,'?'),(_binary '\ʲ	\x$c=.p\pZ','wp-content/plugins/wordfence/css/license/free-global.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\j\gEB7q,\',_binary '\\R1\"`l 2\L\L\cXeEt	BM|','',0,'?'),(_binary 'P\r;V\\\\\\mV/6','wp-content/plugins/wordfence/css/license/free.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\)#Ds',_binary '\\!5\,Ώ;f\E\@\','',0,'?'),(_binary '&]\\lX\','wp-content/plugins/wordfence/css/license/premium-global.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '٬5\&\]U\\0',_binary '=:I\\#_A\\R\\֣X\\FSOre\c','',0,'?'),(_binary 'ň\Ȍ\wH\\"','wp-content/plugins/wordfence/css/license/premium.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A\\]UQ\\甝',_binary '-{)f\\\n :\}\\F\\3j*\c%','',0,'?'),(_binary '\_\QU\)L\d\\\','wp-content/plugins/wordfence/css/license/response-global.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}#\!+h\N\i@',_binary 'V\\[\'\\yyX?yeV{F\\eC\l%','',0,'?'),(_binary 'c~\\','wp-content/plugins/wordfence/css/license/response-variables.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary 'kƌC\09\6\"[\','wp-content/plugins/wordfence/css/license/response.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?VjB!D\{\B\r',_binary '\6I^\(\1*GmE9-ne:R)G֎\\','',0,'?'),(_binary '\\r^\ R9f$.','wp-content/plugins/wordfence/css/main.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1\r\\8\#\;',_binary 'lj>HI\	\"\&Hq2ea\\1\\\2^','',0,'?'),(_binary 'uIh=[\6ozVI,߬','wp-content/plugins/wordfence/css/phpinfo.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\\Q\\\!0w/蓴',_binary '\a@|I\r=\Z^ε\d)[\W\','',0,'?'),(_binary 'k\\Z\0x/\Yݤ\\','wp-content/plugins/wordfence/css/wf-adminbar.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\"TU%\\N~',_binary '\G\\\\ZA\(rI\T.1\q<I\\r\	\Q','',0,'?'),(_binary 'R;9grl\\','wp-content/plugins/wordfence/css/wf-colorbox.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PX)p!N8j',_binary 'ot0\rP2\N\\\i\\\K\\u\\','',0,'?'),(_binary 'к~1\O1κ)\','wp-content/plugins/wordfence/css/wf-font-awesome.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\M\\ًV:',_binary '997dIOu\-\\%enԻ1\\\I','',0,'?'),(_binary '\&`\;\i','wp-content/plugins/wordfence/css/wf-global.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ADmqc\\v\d9',_binary '(O\ӛˀԟMAW\D\0޳\\\\5LG','',0,'?'),(_binary 'q;\\\"\)\q\U\\','wp-content/plugins/wordfence/css/wf-ionicons.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Als\\j⯃',_binary 'ג\4\ˮv\M\`V\\Z\','',0,'?'),(_binary '	Q\K\*$\','wp-content/plugins/wordfence/css/wf-onboarding.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\)\\02w\\nd',_binary '!vsl\\r\\z-\L\\\\PT\','',0,'?'),(_binary 'Ʃ襖5!\F:\N','wp-content/plugins/wordfence/css/wf-roboto-font.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\\Ouݵ',_binary '\+\hJ~ʆ*\\a*\Gb67\r:','',0,'?'),(_binary '~QE\pF=\\\n','wp-content/plugins/wordfence/css/wfselect2.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\\3,B\V\\\',_binary 'ڑ\t4U\\";t7\\ZJy\rb@','',0,'?'),(_binary 'y\!ޓ\\\T+','wp-content/plugins/wordfence/css/wordfenceBox.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\WY~\H#\]',_binary 'r{\\ZI5O1Q\\Ӈ\\C\\','',0,'?'),(_binary '͎3ע\Jyn\ĀM\','wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nq*\\ZF)2',_binary '\&4\"\rQjX\mN\"\\?Po\\\\\?','',0,'?'),(_binary '\2\Z\ {DZ-','wp-content/plugins/wordfence/fonts/ionicons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\I15[I]J',_binary '*\\\&t䭨\\\	gTw,\1','',0,'?'),(_binary '\Z\\Q!\\\*','wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`y\0#x\sG\J\t\',_binary '\A\r\\\x?j\#\C\F\OG-S\\$','',0,'?'),(_binary 'jt\Z\\ܿ\,','wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\aa\\i',_binary '{JL\\ͻ&\\{{\T:\\B','',0,'?'),(_binary '>u\ʸ!4N2\\','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,\;L\'dee',_binary '+GT}\m)*\\[\c5Z\N-v>','',0,'?'),(_binary '\\m\{@m\','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oLFʒ4\\i\--',_binary 'Cc#1_|\Z  1ɾ\\\Yx\','',0,'?'),(_binary 'ӕ\\\nt\0','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mpG\\\aBNX>\(',_binary '%-*Ψ6F\i\rWϹM׽WI:vD','',0,'?'),(_binary 'и+:3\XnNtex\X','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\{W7h>',_binary '	2m\w\3)zWg\v{Af\Hu`Co','',0,'?'),(_binary 'G:Z\]Y!tI\\"','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\jI78{r\P',_binary 'Uk\\ZM=OEwDw\ |I;','',0,'?'),(_binary ']K{\ٯ\`\{,','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+E\YH\\<YPK=S',_binary 'ۋ&\:^G\\&B2\PC~\\','',0,'?'),(_binary 'pw\\QF\c\ߠb*','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@$\qG2k5$z',_binary 'ֆF*`\\'\O triR:\j0\\W\Z=j','',0,'?'),(_binary '\U]R\)Y\m','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nj\0\\\9',_binary '\Z\Ҩ2#s:\Р\n		vØ+l','',0,'?'),(_binary '4;`߯z?	\{Ǟ@','wp-content/plugins/wordfence/images/2fa-whole.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h»\\\\$\ZPfX',_binary '\ƪɝ\\\\U[Z~\^\d\'\X\ٮ\\\','',0,'?'),(_binary '\2\6,̞|keL\ns','wp-content/plugins/wordfence/images/2fa1.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/)\h\\ hG\8',_binary 'C\%\0z)f @\t>\ɶ{T\8o','',0,'?'),(_binary '\J=R\'\t^\}\n','wp-content/plugins/wordfence/images/2fa2.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\0H',_binary 'np\ʅG\0\6KqJ]\\J','',0,'?'),(_binary '様\7\^\b\"','wp-content/plugins/wordfence/images/back_disabled.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\\\g\\i\\>',_binary '䏛N\7\g΋\?\Fb!}ݿ\C鳇','',0,'?'),(_binary '\\\׮F\\p\s\4','wp-content/plugins/wordfence/images/back_enabled.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]\\\H\',_binary '9퇥)R$px#q \{#LO','',0,'?'),(_binary '\n\\n\\0܁-i','wp-content/plugins/wordfence/images/blocking.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'-Hf<1',_binary 'A5Y9\\0\O\tq\ЖL\\}\a\&\','',0,'?'),(_binary '^yG=ڜFg;3á','wp-content/plugins/wordfence/images/button-grad-grey.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\RC\\Ty\?\',_binary 'D\\\H\~ϨP_\{!\\','',0,'?'),(_binary 'N7A\\0\nnV֑\','wp-content/plugins/wordfence/images/checkbox.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\G\r6|􈘀\'',_binary '\y~`w(j\~\=뤼&ݴ\\Q>`^\x','',0,'?'),(_binary 'o\\\Y\څ\X','wp-content/plugins/wordfence/images/flags.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W7\ (\˿!\Z7\',_binary 'Bx\0%Ly6!\X\\z/<n6=\ZW\','',0,'?'),(_binary '.E\[J\\lx\\','wp-content/plugins/wordfence/images/forward_disabled.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M_\\Z?\N)Ҋ\:\5',_binary '/\<>O&\ȕJR݇e\}(m','',0,'?'),(_binary '\0h\Kf\0\','wp-content/plugins/wordfence/images/forward_enabled.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\0/3e4e\\\\',_binary '0Q7018ު9-z9ؽq\\SrĒ\P\\','',0,'?'),(_binary '\\窒u\rZJW+','wp-content/plugins/wordfence/images/help.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$N\;\'M\\\ Y',_binary '\\\Z7\0\\r/i\z;ki,=LZg','',0,'?'),(_binary '٘\\"Pܞ\\,\','wp-content/plugins/wordfence/images/icons/ajax24.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K:\m𙗣P',_binary 'j*\e\\doX~7\\&N9\|L\','',0,'?'),(_binary '\' o\\S','wp-content/plugins/wordfence/images/icons/ajax3.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mw\ߴtꍓ\'\n\\s',_binary 'dz\\\nyKƮ\\'#]\x	VJR.=:','',0,'?'),(_binary '\y\&aA7\]Dm','wp-content/plugins/wordfence/images/icons/ajaxRed16.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%B\ng2;',_binary 'D,AJ\lOSpe؇&\\','',0,'?'),(_binary '\\4\=','wp-content/plugins/wordfence/images/icons/ajaxScan.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʖѴ\~fi',_binary 'ߩ0ԍ\\ѦƻH\n¡;\','',0,'?'),(_binary 'j&V164\\','wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r9 #\{',_binary 'ﾱ\\nѿ0c~Nr\\Au\g~Δ\\I','',0,'?'),(_binary '(x*J,LÛn\<K','wp-content/plugins/wordfence/images/icons/arrow_refresh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kw`\`|\}$G',_binary 'u/2/@H_Ilh\/aU:	','',0,'?'),(_binary '6[f9? _\','wp-content/plugins/wordfence/images/icons/bullet_yellow.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J&\\Ɍ\\ԔQ<',_binary '1Nߗ\׍?*i\í!FMp\9^.','',0,'?'),(_binary '\\9\BϠ\3','wp-content/plugins/wordfence/images/icons/check-care.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\n?du\ǡos?',_binary 'J\\\\X\;W\`i\"[*\\&`K>r4\	','',0,'?'),(_binary '\\\m\]I{\B]','wp-content/plugins/wordfence/images/icons/check-premium.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '߇`ީ:\rN',_binary '&\y$f\\D\\z\\9ͧ\|VqV\','',0,'?'),(_binary '\cڮq\".|0>','wp-content/plugins/wordfence/images/icons/check-response.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NF\\\\\\',_binary '82f)o>\\5iq)\e=\\\G}\\','',0,'?'),(_binary 'ta;_Y\np=[_:B','wp-content/plugins/wordfence/images/icons/check.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DF\\\\P\L',_binary '\\\+\\ʣфȯ\\?\\\+\\0_\ŴQq','',0,'?'),(_binary ']\*J','wp-content/plugins/wordfence/images/icons/email_go.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\\EH).\',_binary '\& \qC1QU_.O\\3\\\1!&\\۴','',0,'?'),(_binary '`%{\\+\','wp-content/plugins/wordfence/images/icons/error128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:\%7\!.\',_binary '{h\0,]\z\kV\{җ6nG\nxs9\','',0,'?'),(_binary 'z5*\ZADZCk\j','wp-content/plugins/wordfence/images/icons/magnifier.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uO{:qcV\\\'',_binary ' atvdQ\\0(\IjƖO$e(*','',0,'?'),(_binary 'Ρ~\ߓ:\\\eo','wp-content/plugins/wordfence/images/icons/tick128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ğch4\"\\',_binary '\\\V}X e~G[C峆\5\','',0,'?'),(_binary ';`$r\\\$=','wp-content/plugins/wordfence/images/icons/warning128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\GI\t*\\\Np=',_binary '\\*/\\Ⱦst\A\}.b\'\\','',0,'?'),(_binary 'u\6\\4E~\:\\','wp-content/plugins/wordfence/images/icons/working-indicator.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VF\{N	\'G',_binary 'fX\RZ|:Ob\=f\[y\\\5 ~	','',0,'?'),(_binary 'X\\@\%1Ci','wp-content/plugins/wordfence/images/lightbox-controls.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm]a\\$\',_binary 'Ǘh?\\\S\\\):\i@h.X\g','',0,'?'),(_binary '?\\z6\aDz','wp-content/plugins/wordfence/images/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K:\m𙗣P',_binary 'j*\e\\doX~7\\&N9\|L\','',0,'?'),(_binary 'Kj\\h\','wp-content/plugins/wordfence/images/loading_background.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'\2p\nKX\',_binary '\Ύ%X\ŖF\\\1s\;\L\zr璻','',0,'?'),(_binary 'ﾘQ\)B\n\,','wp-content/plugins/wordfence/images/loading_large.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y{ObUW~Y˙',_binary 'p8\\'\	t\\:Q\o]{5G1\\\\E\','',0,'?'),(_binary 's♼{DR\[k\1I','wp-content/plugins/wordfence/images/logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zF\ހW\\rl\~6',_binary 'V\{Q9\V	\J	Xq\ڀc','',0,'?'),(_binary 'D8-¤r\l','wp-content/plugins/wordfence/images/logos/shield-care.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	 sh߉\0tv\',_binary 'f2\"(>l\H93 \\\\\	\C$<','',0,'?'),(_binary '[A0b[\BG','wp-content/plugins/wordfence/images/logos/shield-free.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm3k#^\Z\Z+W',_binary 'Lmd\1a ףM\\m(#p^1M\','',0,'?'),(_binary 'ۑ݀m\9l^H\','wp-content/plugins/wordfence/images/logos/shield-premium.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\r-ȭ\nQ\V',_binary '?mUL\\-lZOI\,XSM׭\ޝ-','',0,'?'),(_binary '\Ӡ_Q?#','wp-content/plugins/wordfence/images/logos/shield-response.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\nو1:/(d%܅',_binary '\\ZjtY\aW=x![\4H!|\\\','',0,'?'),(_binary 'd\]\&3\N=','wp-content/plugins/wordfence/images/logos/shield-white.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\dX\#\pRðJ',_binary '\LO\\'\(\EqH\\l\@\\)O','',0,'?'),(_binary '\z^}¤hh3\rw','wp-content/plugins/wordfence/images/options.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\Ѵ\\A\',_binary 'D:\bw\#^\4BKIP?	znV\_','',0,'?'),(_binary '\xD.\\m~<\2','wp-content/plugins/wordfence/images/ratelimiting.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0[\MɞyP\',_binary '\@\\S\\y\'\N+k\B3J!PbƖ','',0,'?'),(_binary '\\\Q\oH*(\','wp-content/plugins/wordfence/images/sort_asc.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',I\+ƾ\=',_binary 'dC\T\\\e&,)Ѵ\FG\\Zd\ON\','',0,'?'),(_binary '57\N	C=\-\c\','wp-content/plugins/wordfence/images/sort_asc.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&DK\\\zS§0',_binary 'NQ\*TZ%P\%\\jܑtZn/','',0,'?'),(_binary '\lXw\B\*XW\','wp-content/plugins/wordfence/images/sort_asc_disabled.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Oɧ\\*\X\9e',_binary 'v\Z|5.YX \\Z鹁Ź','',0,'?'),(_binary 'x\_,[\5','wp-content/plugins/wordfence/images/sort_asc_disabled.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Ǐ#a]2\\',_binary '[8l\Y\\\ckl\	u#KV\\n','',0,'?'),(_binary '?Yvq_\ۮXO','wp-content/plugins/wordfence/images/sort_both.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%\BQxSV.D',_binary '6\\\"@X\g\'\W7w\\gJ\q','',0,'?'),(_binary '	7\\\f	`','wp-content/plugins/wordfence/images/sort_both.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dm	8\f|\Y\',_binary '~\%\\ۉ%>\\BlouI)ȉ7g','',0,'?'),(_binary '7c\.$P!\\"򹚆','wp-content/plugins/wordfence/images/sort_desc.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\j_ˊR2',_binary '*\-\9\.HGO6/\L\):C\d\z\','',0,'?'),(_binary 'ZD\:-h\${\ma\','wp-content/plugins/wordfence/images/sort_desc.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\?զ)X?N',_binary 'b\EԚ\B#:\(#\=_(\\Z\|U\#\','',0,'?'),(_binary 'xy!\\q)\.ˉ\"','wp-content/plugins/wordfence/images/sort_desc_disabled.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\m͟\\r\\ 9',_binary ';	\_\Y\\\t7K\\smC\\r\\\\o','',0,'?'),(_binary 'us\T­B\\B','wp-content/plugins/wordfence/images/sort_desc_disabled.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J%{OZ\"/\o',_binary '^*\n^\\0m+!Nk\Ɍ\\/ԯ^k','',0,'?'),(_binary 'o\'RD-\\0o\','wp-content/plugins/wordfence/images/support.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cl\$rn<.',_binary '\$\MԮ&\\\(ᩘs^	Ϣ*N\','',0,'?'),(_binary 'PC<\\	\\vn\R8','wp-content/plugins/wordfence/images/tools.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@cI\\\\\',_binary '\\Y\=\\\\\RB)	~\\\\ܖݟr','',0,'?'),(_binary 'O+\[IB\\mm\'','wp-content/plugins/wordfence/images/wf-central-logo.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\(\\VѤ\',_binary '\0{\rߘJ/\ ^+\\,\\S\\','',0,'?'),(_binary '\@\:<o|J-e','wp-content/plugins/wordfence/images/wf-error-badge.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EQt\\s	Mzy\\',_binary '\殙F\`\a݀\k\\mE\Q+~\','',0,'?'),(_binary '#-g\\\L%3\S݋B#\r','wp-content/plugins/wordfence/images/wf-horizontal.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E%Zlo9͒\',_binary '0	6ӭ\Iv\hJ\\`\\\\','',0,'?'),(_binary 'F\V\\\Od%\|u','wp-content/plugins/wordfence/images/wordfence-logo.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\\\\]\j-\',_binary '8\\#̄(8\O\"\	+h\"Fb\','',0,'?'),(_binary 'E(zRA1;eN\qD3','wp-content/plugins/wordfence/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\e\\ª\\\\og',_binary ' o\\MJ#A|ߎ\(\;6R\n\','',0,'?'),(_binary '\!s!\\/0ڀ_\','wp-content/plugins/wordfence/js/Chart.bundle.min.1637598990.js',0,_binary '\\5]d\df\',_binary '\\5]d\df\',_binary '\>\\`NN`\N\"KӞckG<;','',0,'?'),(_binary '>\w-3֫\@<\','wp-content/plugins/wordfence/js/Chart.bundle.min.1643748814.js',0,_binary '\\5]d\df\',_binary '\\5]d\df\',_binary '\>\\`NN`\N\"KӞckG<;','',0,'?'),(_binary '\@+\#:\?H@\Qw','wp-content/plugins/wordfence/js/Chart.bundle.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\5]d\df\',_binary '\>\\`NN`\N\"KӞckG<;','',0,'?'),(_binary 'zB\Rq\F\"[','wp-content/plugins/wordfence/js/admin.1637598990.js',0,_binary 'Υ<?<\\A&\',_binary 'Υ<?<\\A&\',_binary '}ٕ\ZH0B\vW\Yp:\\4o3','',0,'?'),(_binary '\\iϤ\q-X\\','wp-content/plugins/wordfence/js/admin.1643748814.js',0,_binary '\%\\$\\\v',_binary '\%\\$\\\v',_binary '4y<#z\3x\'C+B\/\4Q[\<ԃH','',0,'?'),(_binary '~S7B1c>^M','wp-content/plugins/wordfence/js/admin.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%\\$\\\v',_binary '4y<#z\3x\'C+B\/\4Q[\<ԃH','',0,'?'),(_binary '_\4n\"Tg\\}9','wp-content/plugins/wordfence/js/admin.ajaxWatcher.1637598990.js',0,_binary 'N\\\\ů)\\\\\',_binary 'N\\\\ů)\\\\\',_binary '\\'vᦸ\ =\\'Xk\\<6YSt\','',0,'?'),(_binary 'S\\?Ӄt\t\"^','wp-content/plugins/wordfence/js/admin.ajaxWatcher.1643748814.js',0,_binary 'N\\\\ů)\\\\\',_binary 'N\\\\ů)\\\\\',_binary '\\'vᦸ\ =\\'Xk\\<6YSt\','',0,'?'),(_binary 'ʯe6\kѭ\/','wp-content/plugins/wordfence/js/admin.ajaxWatcher.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\\\\ů)\\\\\',_binary '\\'vᦸ\ =\\'Xk\\<6YSt\','',0,'?'),(_binary '%\e/\Vw\\)A','wp-content/plugins/wordfence/js/admin.liveTraffic.1637598990.js',0,_binary 'ڗU_|\$>7',_binary 'ڗU_|\$>7',_binary 'wRu\sXq\\s\aOFvQy\Ł#\\\','',0,'?'),(_binary '\\|\r1\-Ni','wp-content/plugins/wordfence/js/admin.liveTraffic.1643748814.js',0,_binary 'ڗU_|\$>7',_binary 'ڗU_|\$>7',_binary 'wRu\sXq\\s\aOFvQy\Ł#\\\','',0,'?'),(_binary '\C{\k\\\f\_','wp-content/plugins/wordfence/js/admin.liveTraffic.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڗU_|\$>7',_binary 'wRu\sXq\\s\aOFvQy\Ł#\\\','',0,'?'),(_binary 'k$78\7*WЁ-9','wp-content/plugins/wordfence/js/date.1637598990.js',0,_binary '\\jPER\_c',_binary '\\jPER\_c',_binary 'B=\\0\dƩ\"BtUc^1>q&','',0,'?'),(_binary '\\RLf3\W\','wp-content/plugins/wordfence/js/date.1643748814.js',0,_binary '\\jPER\_c',_binary '\\jPER\_c',_binary 'B=\\0\dƩ\"BtUc^1>q&','',0,'?'),(_binary 'd\\r\	\}\','wp-content/plugins/wordfence/js/date.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\jPER\_c',_binary 'B=\\0\dƩ\"BtUc^1>q&','',0,'?'),(_binary '\r\\r\2]B澢\C','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1637598990.js',0,_binary '89\"\\zz\Vv*\\]',_binary '89\"\\zz\Vv*\\]',_binary 'ۆ%%l\:J\f<\bq\\P\Pt˯}ߝ\"\f','',0,'?'),(_binary '\bє[\r\ :\','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1643748814.js',0,_binary '89\"\\zz\Vv*\\]',_binary '89\"\\zz\Vv*\\]',_binary 'ۆ%%l\:J\f<\bq\\P\Pt˯}ߝ\"\f','',0,'?'),(_binary '\\ϥȈS\\y\%','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '89\"\\zz\Vv*\\]',_binary 'ۆ%%l\:J\f<\bq\\P\Pt˯}ߝ\"\f','',0,'?'),(_binary 'p\	4}\','wp-content/plugins/wordfence/js/jquery.colorbox-min.1637598990.js',0,_binary 'Y5=\\\q\)\',_binary 'Y5=\\\q\)\',_binary 'H\4\\\v\\/XG\K:gkl','',0,'?'),(_binary ')&#gk\\ӍiE\ȹ','wp-content/plugins/wordfence/js/jquery.colorbox-min.1643748814.js',0,_binary 'Y5=\\\q\)\',_binary 'Y5=\\\q\)\',_binary 'H\4\\\v\\/XG\K:gkl','',0,'?'),(_binary 'iG\Z2*\nt\\PH','wp-content/plugins/wordfence/js/jquery.colorbox-min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y5=\\\q\)\',_binary 'H\4\\\v\\/XG\K:gkl','',0,'?'),(_binary '2NUnE|%\0Eb\','wp-content/plugins/wordfence/js/jquery.colorbox.1637598990.js',0,_binary '(O0%69\e3\j',_binary '(O0%69\e3\j',_binary '{\L#\\r]\\ngL8P,@\Ir,{ \','',0,'?'),(_binary '\-A\!S','wp-content/plugins/wordfence/js/jquery.colorbox.1643748814.js',0,_binary '(O0%69\e3\j',_binary '(O0%69\e3\j',_binary '{\L#\\r]\\ngL8P,@\Ir,{ \','',0,'?'),(_binary '>1ޅ\\pSSh4','wp-content/plugins/wordfence/js/jquery.colorbox.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(O0%69\e3\j',_binary '{\L#\\r]\\ngL8P,@\Ir,{ \','',0,'?'),(_binary 'F)>\\"XhOGЍ\Z@','wp-content/plugins/wordfence/js/jquery.dataTables.min.1637598990.js',0,_binary '<\\\\ ͕h',_binary '<\\\\ ͕h',_binary 'v\Ao;uD\3$WB95\_\"\ ','',0,'?'),(_binary '\V|Լ:\\\','wp-content/plugins/wordfence/js/jquery.dataTables.min.1643748814.js',0,_binary '<\\\\ ͕h',_binary '<\\\\ ͕h',_binary 'v\Ao;uD\3$WB95\_\"\ ','',0,'?'),(_binary 'jvȋ=Qb\̋','wp-content/plugins/wordfence/js/jquery.dataTables.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\\\\ ͕h',_binary 'v\Ao;uD\3$WB95\_\"\ ','',0,'?'),(_binary '	`\\_f\0l\7\','wp-content/plugins/wordfence/js/jquery.qrcode.min.1637598990.js',0,_binary '\\ԹXp`me<',_binary '\\ԹXp`me<',_binary 'wP\0\p\zuYDS\z(Wߥ\P3$S\\','',0,'?'),(_binary '*j\;+\"\l\3C1K','wp-content/plugins/wordfence/js/jquery.qrcode.min.1643748814.js',0,_binary '\\ԹXp`me<',_binary '\\ԹXp`me<',_binary 'wP\0\p\zuYDS\z(Wߥ\P3$S\\','',0,'?'),(_binary '\\Pb%FD\n','wp-content/plugins/wordfence/js/jquery.qrcode.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ԹXp`me<',_binary 'wP\0\p\zuYDS\z(Wߥ\P3$S\\','',0,'?'),(_binary '{n${\9)\','wp-content/plugins/wordfence/js/jquery.tmpl.min.1637598990.js',0,_binary '\\}\\"7ڷDZ',_binary '\\}\\"7ڷDZ',_binary '\.I\H\Zg\0\H!7`gޠZzȄž6|','',0,'?'),(_binary 'TPQ\%,bi[hU','wp-content/plugins/wordfence/js/jquery.tmpl.min.1643748814.js',0,_binary '\\}\\"7ڷDZ',_binary '\\}\\"7ڷDZ',_binary '\.I\H\Zg\0\H!7`gޠZzȄž6|','',0,'?'),(_binary 'C|z;Ew\\','wp-content/plugins/wordfence/js/jquery.tmpl.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\}\\"7ڷDZ',_binary '\.I\H\Zg\0\H!7`gޠZzȄž6|','',0,'?'),(_binary '\0\a\\N5D鰈','wp-content/plugins/wordfence/js/jquery.tools.min.1637598990.js',0,_binary '\:-\Eՠx$\B',_binary '\:-\Eՠx$\B',_binary ',4\~aTlS fQO	f\\Tӵ\;\\)','',0,'?'),(_binary 'V*\xq\f^\','wp-content/plugins/wordfence/js/jquery.tools.min.1643748814.js',0,_binary '\:-\Eՠx$\B',_binary '\:-\Eՠx$\B',_binary ',4\~aTlS fQO	f\\Tӵ\;\\)','',0,'?'),(_binary '\8Z\30$u','wp-content/plugins/wordfence/js/jquery.tools.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:-\Eՠx$\B',_binary ',4\~aTlS fQO	f\\Tӵ\;\\)','',0,'?'),(_binary 'rs÷@7=\\\','wp-content/plugins/wordfence/js/knockout-3.5.1.1637598990.js',0,_binary '(aUHw˲I\O',_binary '(aUHw˲I\O',_binary '\\\&$\z\\;o,\4ca','',0,'?'),(_binary 'Ҧ\b\'BqbM\','wp-content/plugins/wordfence/js/knockout-3.5.1.1643748814.js',0,_binary '(aUHw˲I\O',_binary '(aUHw˲I\O',_binary '\\\&$\z\\;o,\4ca','',0,'?'),(_binary 'kxGhCU)\}jҠB\','wp-content/plugins/wordfence/js/knockout-3.5.1.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(aUHw˲I\O',_binary '\\\&$\z\\;o,\4ca','',0,'?'),(_binary '\K\0N;x\})','wp-content/plugins/wordfence/js/wfdashboard.1637598990.js',0,_binary 'ԽP\`\{i',_binary 'ԽP\`\{i',_binary '=Pz\r!\?w\Z/d!LӪ\\1!','',0,'?'),(_binary '\<\-\jF#\$','wp-content/plugins/wordfence/js/wfdashboard.1643748814.js',0,_binary 'ԽP\`\{i',_binary 'ԽP\`\{i',_binary '=Pz\r!\?w\Z/d!LӪ\\1!','',0,'?'),(_binary 'Ǫh\k\\j<T','wp-content/plugins/wordfence/js/wfdashboard.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ԽP\`\{i',_binary '=Pz\r!\?w\Z/d!LӪ\\1!','',0,'?'),(_binary '..SoF\#:','wp-content/plugins/wordfence/js/wfdropdown.1637598990.js',0,_binary '\\\rp\\\c\'\Z',_binary '\\\rp\\\c\'\Z',_binary '\\SGs8;Z!זJ\u\1z?','',0,'?'),(_binary 'o\"TYC[¿','wp-content/plugins/wordfence/js/wfdropdown.1643748814.js',0,_binary '\\\rp\\\c\'\Z',_binary '\\\rp\\\c\'\Z',_binary '\\SGs8;Z!זJ\u\1z?','',0,'?'),(_binary '\\\ #H7&!','wp-content/plugins/wordfence/js/wfdropdown.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\rp\\\c\'\Z',_binary '\\SGs8;Z!זJ\u\1z?','',0,'?'),(_binary 'Ȗ\\~*\u\2O\\','wp-content/plugins/wordfence/js/wfglobal.1637598990.js',0,_binary 'jf\'?gm:\',_binary 'jf\'?gm:\',_binary 'X\c\Z]R@\1qw\)\klQ\\Q\','',0,'?'),(_binary 'ގu\ZNql\0','wp-content/plugins/wordfence/js/wfglobal.1643748814.js',0,_binary 'jf\'?gm:\',_binary 'jf\'?gm:\',_binary 'X\c\Z]R@\1qw\)\klQ\\Q\','',0,'?'),(_binary '9fP\=pM\v\O','wp-content/plugins/wordfence/js/wfglobal.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jf\'?gm:\',_binary 'X\c\Z]R@\1qw\)\klQ\\Q\','',0,'?'),(_binary ')]XJ\L\g=)','wp-content/plugins/wordfence/js/wfi18n.1637598990.js',0,_binary 'i&XDE\\\p/N\',_binary 'i&XDE\\\p/N\',_binary 'GU	*\k\P,:\?+}xHb5\\#','',0,'?'),(_binary 'ؽbqQaJ:HT>C','wp-content/plugins/wordfence/js/wfi18n.1643748814.js',0,_binary 'i&XDE\\\p/N\',_binary 'i&XDE\\\p/N\',_binary 'GU	*\k\P,:\?+}xHb5\\#','',0,'?'),(_binary '\5J[A)=\\\\\\r','wp-content/plugins/wordfence/js/wfi18n.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i&XDE\\\p/N\',_binary 'GU	*\k\P,:\?+}xHb5\\#','',0,'?'),(_binary ' 4W6]q*pd\\','wp-content/plugins/wordfence/js/wfpopover.1637598990.js',0,_binary ';\&mA\hlMPZX',_binary ';\&mA\hlMPZX',_binary '\_.V袏\X\\4N\i_\k=\\C3','',0,'?'),(_binary '\13~\Z< ?','wp-content/plugins/wordfence/js/wfpopover.1643748814.js',0,_binary ';\&mA\hlMPZX',_binary ';\&mA\hlMPZX',_binary '\_.V袏\X\\4N\i_\k=\\C3','',0,'?'),(_binary 'tɴ\&(\\\','wp-content/plugins/wordfence/js/wfpopover.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\&mA\hlMPZX',_binary '\_.V袏\X\\4N\i_\k=\\C3','',0,'?'),(_binary '\l\9N:E\q\','wp-content/plugins/wordfence/js/wfselect2.min.1637598990.js',0,_binary 'J\!.\\i',_binary 'J\!.\\i',_binary 'lk}[\ZjA\.!=+5+~q\ 1','',0,'?'),(_binary '`қX\n!V\\\','wp-content/plugins/wordfence/js/wfselect2.min.1643748814.js',0,_binary 'J\!.\\i',_binary 'J\!.\\i',_binary 'lk}[\ZjA\.!=+5+~q\ 1','',0,'?'),(_binary '2<\3\u!]','wp-content/plugins/wordfence/js/wfselect2.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\!.\\i',_binary 'lk}[\ZjA\.!=+5+~q\ 1','',0,'?'),(_binary '\Rq v\\z\rPU','wp-content/plugins/wordfence/languages/wordfence.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0%\\=XӼ/',_binary ']%N8ܠ\럷\\_;\rD,e\','',0,'?'),(_binary '4\X.-Ӳ\\nAJ','wp-content/plugins/wordfence/languages/wordfence.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\%zվ`Wf\y\',_binary 'E;L>ގ|ࣜx蘱y~}\9gM\','',0,'?'),(_binary 'R1?Y\VDt','wp-content/plugins/wordfence/lib/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\"xK\\{\8\dS',_binary 'C\\'r9\@\Kކt\\w#@k','',0,'?'),(_binary '\'FEAvQMv','wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\r\5]xVI\\'i',_binary '\\G݅\'!\\YE3\P5adM','',0,'?'),(_binary 'y1\-\/fIנ','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\09\rɘadP',_binary 'F*O\Оq^\l\\gz,I?\b\R\]K\ֳE','',0,'?'),(_binary '\-n\$.#g%\}\\','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \OّCHؖs ',_binary 'pX\\uc{\-\K׏ژ/OnE0)JB','',0,'?'),(_binary '`c0\\\\\3\','wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	>\U6ƪgv\f',_binary 'R\&sX$6#\_ν\J\|\b0o','',0,'?'),(_binary 'ۖJBwC|M\v','wp-content/plugins/wordfence/lib/Diff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5VzY]#yR\Jݮ',_binary 'YM\"z)tϖ\*cwL\01w$d\','',0,'?'),(_binary 'Ը%\ZD\y\Z','wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DGp\ʓ\\vT',_binary 'd\=\]\+j\aw\ʱm\3\','',0,'?'),(_binary '\\J\\![W6ݧ\','wp-content/plugins/wordfence/lib/IPTraf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8w\VX8~$\\',_binary '\%\\\\m\\򳚫-[\0:&','',0,'?'),(_binary '^2^T:\mJ:','wp-content/plugins/wordfence/lib/IPTrafList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UI\& I',_binary 'ak*a\r\\tҷ\ \¾^\JO','',0,'?'),(_binary '\au\"9s?H\\','wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%1sËG',_binary 'EWٳ?\4\\@U?0\bP+\h','',0,'?'),(_binary 'K\\ߺ\b','wp-content/plugins/wordfence/lib/compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\\\z\xC}',_binary 'Nܓ#d\tB!\"M՞==\@o','',0,'?'),(_binary '\Z;5\(O\O\R','wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ǜ\lmD!',_binary '\\'\9\r9\0o|\\\Z\\\\|0K','',0,'?'),(_binary 'zvo:\B%\\','wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\h%u-C\0\',_binary '\"Y¤&6HU^\\'$\=_;>\','',0,'?'),(_binary '\rҗ\r׾ \\n\Z','wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\@\ޯ]&',_binary '7aP\\\T\\\\"S\z\J\&b\ٸ®D','',0,'?'),(_binary '\$\o1\T2]l','wp-content/plugins/wordfence/lib/dashboard/widget_countries.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\d*W\\1g',_binary '\+q\~;fE_\#\]IV\\\k?l\ÝϞ\','',0,'?'),(_binary 'Ws\\{N\hPr㼱','wp-content/plugins/wordfence/lib/dashboard/widget_ips.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w\\9\64\"\ky',_binary 'X\\\\"v\\-*\\3','',0,'?'),(_binary 'e؟\v\笪Ej','wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ UwYI\I\}\',_binary 'ݠ\r\\ڗU\D\PT\V+6\^:2!\\','',0,'?'),(_binary 'L\\.\n\w;[','wp-content/plugins/wordfence/lib/dashboard/widget_logins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E	4mY\>`',_binary '\#_[Ѹ\@uHa\(+j>V\Z+q[V','',0,'?'),(_binary '\u;Ȍ0\qw=\\','wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+6\΀J\h',_binary '),olR\\\ZJ\eT(y \5+','',0,'?'),(_binary 'k6*\\\H	u١','wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!,d\\	Ta;\\R',_binary '\7\#\}5V\\\0\\\\\ZO?v?\\\\Aԍ','',0,'?'),(_binary '\)\\\\\0e_\5=','wp-content/plugins/wordfence/lib/diffResult.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\Q \f7\F',_binary '\Ҏ\E\\\؊>^!j\0O\ca^\','',0,'?'),(_binary '#\n\/\PZ~h\','wp-content/plugins/wordfence/lib/email_genericAlert.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+I*kCe;\PS',_binary '_\'\\q\\F0{\ТF\\r\.\OK','',0,'?'),(_binary '\\Fe	57[\','wp-content/plugins/wordfence/lib/email_newIssues.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q3岛u\`At',_binary 'm)Th\)\"=>\#a\\Z;V<\0`\h	5w','',0,'?'),(_binary '\\^\u\\}G\','wp-content/plugins/wordfence/lib/email_unlockRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\΁~͟\\ak\',_binary 'u\Zg$}o\bĄ\+\r\\n8','',0,'?'),(_binary 'e\0\h\Lщ\','wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\\ѱƔUy{',_binary 'pa\i\v\\INa\'%\\fE?Mv\','',0,'?'),(_binary '\*Q.	\-c\%\D','wp-content/plugins/wordfence/lib/flags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\i\\c\磭c\-',_binary '8Y\CO\\0\j{\ZxD\ĖxO','',0,'?'),(_binary '$\\-#q`\l$Wۉ','wp-content/plugins/wordfence/lib/live_activity.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ik\s',_binary '^&V\b\,s\\B^\R4Ѹ\V','',0,'?'),(_binary '\d\To\f\ҷ\bS','wp-content/plugins/wordfence/lib/menu_dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\Go2\rT~',_binary '\0p\{dM\]{\\⪥ \]\\\T-\K','',0,'?'),(_binary 'ޒ?I\Ωi%g\y','wp-content/plugins/wordfence/lib/menu_dashboard_options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\\	9_\\',_binary '?0\\\)ɼԅ$\ZV\0FYN\f','',0,'?'),(_binary 'WP旃^q\y','wp-content/plugins/wordfence/lib/menu_firewall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5X\PK',_binary '\S\\PA_\l\W2?#_\rQ\x','',0,'?'),(_binary '3d\yj\\\\\V','wp-content/plugins/wordfence/lib/menu_firewall_blocking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@O<\.<)$\\ޓ',_binary '\Zޛp	\>\B*\'\^\T\','',0,'?'),(_binary 'Ͷjʃఱ-','wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':د_x\\O0\8\X',_binary '[\|\r;\\\\Ƹ\lb\\\	Q','',0,'?'),(_binary '6cbkk\i3@H','wp-content/plugins/wordfence/lib/menu_firewall_waf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\m}\#`:\Po/\',_binary '(˕=9L/\*m,{o\7ܺhVT\\\\','',0,'?'),(_binary '0\dۦZP\2\o\','wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\rL_C\\\jəȝX',_binary ',\ް+RQumm\\(e\ЅX{^','',0,'?'),(_binary 'WM\\{h\(','wp-content/plugins/wordfence/lib/menu_options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\\\\\e\ډTa',_binary '\nS\x\B[\\)ɩL6ۖ>\\Hϫܥ\\','',0,'?'),(_binary 'z\8 L\{\\q','wp-content/plugins/wordfence/lib/menu_scanner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/صtba\0\'2',_binary 'J*e*0\qCs\'GO.~r\1OmS\4','',0,'?'),(_binary 'I|K9\(\{s\X','wp-content/plugins/wordfence/lib/menu_scanner_credentials.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\0\Z\̿\',_binary '|\?b~ڬ\(ʹ׺;l\G9','',0,'?'),(_binary 'O\\\\\HI!K!0[\','wp-content/plugins/wordfence/lib/menu_scanner_options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\\\D\X\;I',_binary '\C\&YBp_d$,+Ŝ\\\J','',0,'?'),(_binary '-jާ \\~hyb','wp-content/plugins/wordfence/lib/menu_support.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z[t*\&Y5\ٙ',_binary '\\)D	\r\#\"\GҥPU\J\0@8W\','',0,'?'),(_binary 'o\j\y\V','wp-content/plugins/wordfence/lib/menu_tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\9\\V\>\1',_binary '\\\\%\\6i\;K2P>}\','',0,'?'),(_binary '!##sw:\rH*$q\','wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n-\ߠ2g\l',_binary 'ӀODI{`b\ı\=ʬsm\q.','',0,'?'),(_binary '!\Tۦ\\\	l\I\n','wp-content/plugins/wordfence/lib/menu_tools_importExport.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɳ\\xm46c)\\',_binary 'en*\~\aيc]\\Zbi\XCq','',0,'?'),(_binary 'UI_\\\Ym\\_','wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\\\%k\&е\\',_binary 'WW?,#zNt qC\.g\F','',0,'?'),(_binary '@\L\߯7٭kقE','wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`3\0h~ݻ\\\h',_binary '\ZR\'\\Zw$߃\\_ɐxT\{-`\','',0,'?'),(_binary 'C\s\\\n\\\s\\'m','wp-content/plugins/wordfence/lib/menu_tools_whois.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\EF?xO\0',_binary '\wwRŎ\\\I\|so-o\8\t ','',0,'?'),(_binary '7\"\妿W\r\ѽ\','wp-content/plugins/wordfence/lib/menu_wordfence_central.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\D\\ǓGJ\',_binary '2\ެ\ijB\\]ƑF\\BN3yk','',0,'?'),(_binary '@ȯ\\&O\o\','wp-content/plugins/wordfence/lib/noc1.key',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9eb\0\\PO',_binary '_\u\\j\\\P-KOAܫ\\\','',0,'?'),(_binary 'kU/^\\\\ ','wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z֟0}_\\',_binary 'O\+WE(\Zvl%`\\¢x6\n\ ','',0,'?'),(_binary '\HC\\\)C\','wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\y\\K\\n\u@\x',_binary 'Aݶ݁;_|s\Ȥ4\\_\)zaK\QEe!','',0,'?'),(_binary 'e-\RȉL:\','wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\Z\\\O;m\#',_binary '\v̀\O\\=\n\\u#\}զ`4\W\','',0,'?'),(_binary 'i/pEt\\n\\l','wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\\0mb74$',_binary '\{h\D\X\^w6Dfc\@Q\\rf','',0,'?'),(_binary '\F{\A','wp-content/plugins/wordfence/lib/sysinfo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{X6\92\\\\',_binary 'G,=\\\\C\Z3~f(8\Ψ\@,ї','',0,'?'),(_binary 'LR7Q\ToG|\{','wp-content/plugins/wordfence/lib/viewFullActivityLog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\\F\r\vC\',_binary '\X74\u\rt{MlׄqT}\\\','',0,'?'),(_binary 'ٵ\nh\Jxdv\ԃ]','wp-content/plugins/wordfence/lib/wf503.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\-\op\`Os}B',_binary '/\];\%X_\kz#Oa\;\\H\ߟ','',0,'?'),(_binary '\2]hqu:\T6E\U','wp-content/plugins/wordfence/lib/wfAPI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=S6\v',_binary '{:G\\:\ER\W\n$Im\r\rDğ|','',0,'?'),(_binary 'Ɇ8\\pŻѵV','wp-content/plugins/wordfence/lib/wfActivityReport.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/}\\U\G+\\',_binary '\'ow,X^\x(*\\\\/T?a','',0,'?'),(_binary 'zoܲ~\b','wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\5\uNi\\!\z',_binary '\\\#\\ɛ!wcw؃}6\\~A\','',0,'?'),(_binary 'Ni\~	\`\WE','wp-content/plugins/wordfence/lib/wfAlerts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K(A|ϯy\L',_binary '\\'_;?\|US5d}K/+,I!|\\t','',0,'?'),(_binary '\ދ1F\\\a','wp-content/plugins/wordfence/lib/wfArray.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'Fbaۆ\ₑ1ʤ/',_binary 'n2q8D\-AR\>xqYq$ ш','',0,'?'),(_binary '\-=QCw\tnL\#','wp-content/plugins/wordfence/lib/wfBrowscap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\e.\\\\\b\\',_binary 'Hzn\\O\#/tɚ\"U \Ai','',0,'?'),(_binary '\\X\Jp','wp-content/plugins/wordfence/lib/wfBrowscapCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\\Q\xj',_binary '\\1Y\TЈ\q\W6݋\h	','',0,'?'),(_binary '\\1]\M|K\FZ','wp-content/plugins/wordfence/lib/wfBulkCountries.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9	+OyծurO\3\\n',_binary 'X&o1\'\cg\mlyS\\\\t\r','',0,'?'),(_binary 'ґ-\\\\r{,\','wp-content/plugins/wordfence/lib/wfCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7 ƿ\\s\y\',_binary '|\uIP\wh5ڎ.m\"*n_ 9\J\P\','',0,'?'),(_binary 'hJD\㰗G \n','wp-content/plugins/wordfence/lib/wfCentralAPI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '耳\B/X\n`2r',_binary '>C\]!կVMՍ4UU\\\\\Z','',0,'?'),(_binary 'Z4<n?e\','wp-content/plugins/wordfence/lib/wfConfig.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\k\\\\kg',_binary 'a5,4\k@SJ&/`\D~%M\z\','',0,'?'),(_binary '8ÛZEQ$}UP\T\','wp-content/plugins/wordfence/lib/wfCrawl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\铇ܙ~\\rm',_binary '%&\9	/D\XG؞\߇\U\\\\4','',0,'?'),(_binary 'ڥ^i\$\\&','wp-content/plugins/wordfence/lib/wfCredentialsController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\0իw6',_binary '76ay5?}%.]\\\\؞u\S','',0,'?'),(_binary '\xβЦ\A	<\','wp-content/plugins/wordfence/lib/wfCrypt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CR`\\9|e',_binary 'U͊s\ds\9;\CO\\Ȥ@','',0,'?'),(_binary '\J\\^\Z7uGk+','wp-content/plugins/wordfence/lib/wfDB.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P_<-1\__Iu',_binary '\%dd\_\01@TY$\\\A','',0,'?'),(_binary 'i\\kmCxʷ\\','wp-content/plugins/wordfence/lib/wfDashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\.\q:\j\\R',_binary 'ua\v\R+We\rTJ%\"\\r7f\','',0,'?'),(_binary '7ruF\@J,','wp-content/plugins/wordfence/lib/wfDateLocalization.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4K_J2Cmcͭ\t\',_binary 'Djy\,\Lw\a\ <U\\ \S','',0,'?'),(_binary 'l9\=h\,>\\\&','wp-content/plugins/wordfence/lib/wfDiagnostic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\X\\s?\\\\˟\g',_binary '?`yRե\\`Uʙ\Zǆ\fs\\b\sO','',0,'?'),(_binary '\F\\Z\C\1P','wp-content/plugins/wordfence/lib/wfDict.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\ L\\Z!bE\l\',_binary '\\.{0Je\{\5-\\\~[T$Ğ','',0,'?'),(_binary '\\A0ff`\ Kǁ}','wp-content/plugins/wordfence/lib/wfDirectoryIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n+Z/_\Zxu\v',_binary '\u;IVa[~㵭TZ\\^\yJj','',0,'?'),(_binary 'q5@*=\&\\\X\','wp-content/plugins/wordfence/lib/wfHelperBin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\\!ȍ\\4Q\\X#',_binary 'չ%-^\q\U\q\M\\eY\\','',0,'?'),(_binary 'P\M\\Z\I̸ݭY`r','wp-content/plugins/wordfence/lib/wfHelperString.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Euƻ\\S w?,\_L`',_binary '\\ i\Lƛw\\6\_\,n2S\Zh)','',0,'?'),(_binary 'i\k\\C\\T,\','wp-content/plugins/wordfence/lib/wfIPWhitelist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2h\2aE\0',_binary 'D\:\]踝z\\\w%[j\o\\X`\','',0,'?'),(_binary '1\ϣ\\I','wp-content/plugins/wordfence/lib/wfImportExportController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\+>',_binary 'dlы۹`\\\\\J\#|i{','',0,'?'),(_binary '\jsw2\pqS','wp-content/plugins/wordfence/lib/wfIssues.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9=hw\Z{\"`Pl\',_binary 'NU\2\\\|2A\T\$\\r#%:\','',0,'?'),(_binary '(\>f0\Zg[|\\','wp-content/plugins/wordfence/lib/wfJWT.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}{ j\N\c\K',_binary '0mhN`xx~HLj\s\O\\P\\,','',0,'?'),(_binary '!HufɁD\7>=g','wp-content/plugins/wordfence/lib/wfLicense.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G|iǭ,\fv#$\U',_binary 'H%j\\7M4$\\\^[`\M?\','',0,'?'),(_binary '\ؠ]\f\P\','wp-content/plugins/wordfence/lib/wfLockedOut.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\6/N\\',_binary '\'$\{\\i\P\'\ZTBP\<Pp\W\','',0,'?'),(_binary '\\w\+\"+$\^','wp-content/plugins/wordfence/lib/wfLog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"W~\SM\\\!',_binary 'R2h\/rOr\k_+lfR>k,R','',0,'?'),(_binary '\\\h RX\<C','wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\߅w@L\O\R',_binary '\\EFj\rč;s\΀.f:\\ϤF','',0,'?'),(_binary '\w:k@DiWQ','wp-content/plugins/wordfence/lib/wfModuleController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oI\Ʒkb',_binary '7.ݰ̿\\U\L>\\"\TM5]\>','',0,'?'),(_binary 'tǱ%\F','wp-content/plugins/wordfence/lib/wfNotification.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0Ǎ V2\(\dhVD',_binary 'S\a\\Y\gj+|\ \\JM8','',0,'?'),(_binary '\+\3\pU','wp-content/plugins/wordfence/lib/wfOnboardingController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y%̍ų<\',_binary 'ŔWF&x\Z	\"g\\ߠ\;=Dٗx','',0,'?'),(_binary '\\TоR\'\{','wp-content/plugins/wordfence/lib/wfPersistenceController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\\kyi\MO*',_binary '\\\\X(30\r\n\\\nPE̠ 9\\\','',0,'?'),(_binary 'm\qPoD0\*\\L','wp-content/plugins/wordfence/lib/wfRESTAPI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\8\\\H mi+',_binary '++Ɵ\0\͂b=[㜁','',0,'?'),(_binary '\ތt+\\\\+\XaZU','wp-content/plugins/wordfence/lib/wfScan.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qdb\r\`俷',_binary 'M)HMXhn\\\'TDh\\`','',0,'?'),(_binary '\\6XԪ4\\[_=t','wp-content/plugins/wordfence/lib/wfScanEngine.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\?v\I8\0',_binary '#ѱ\Jffhw.(\\j[\\0F','',0,'?'),(_binary 'b\\HzfWgw','wp-content/plugins/wordfence/lib/wfSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O@\\	\|\\O',_binary 'gv\K%\oiS7.\]\siH2:p','',0,'?'),(_binary '\\K2;\<Dkub','wp-content/plugins/wordfence/lib/wfStyle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's1_ek2R\',_binary 'j\颎\_c\6323օ\]Gs}.\n','',0,'?'),(_binary '\\\sk6/н','wp-content/plugins/wordfence/lib/wfSupportController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!eZu\0z[\OO<',_binary '\Q:4s-¦\\n\\y\\\}\xz5','',0,'?'),(_binary '\hLJHX#0','wp-content/plugins/wordfence/lib/wfUnlockMsg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\c)Re\Y\l\7\',_binary '.\`i\W	t1\}\sty\ɪ\\!K','',0,'?'),(_binary 'e\\\\1\tƋ\<	','wp-content/plugins/wordfence/lib/wfUpdateCheck.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&?C]\\\\g~\J;<:',_binary '3*4\Sxg\r\Z\n1?N#?a]\\p','',0,'?'),(_binary 'Q49\\Lz\J','wp-content/plugins/wordfence/lib/wfUtils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_6\,)~',_binary 'Gd[e`\V(i=Rd\AG;\\0@','',0,'?'),(_binary '@G\t\eY\\\'>O','wp-content/plugins/wordfence/lib/wfVersionCheckController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\iC^Ao*\',_binary '\'iU\\'FL[\	5\\\'*\\a8MgG\>','',0,'?'),(_binary '\eŐ\\nA\','wp-content/plugins/wordfence/lib/wfView.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[ܺ\-ˆN\n\\\nO',_binary 'x\2Q\\mk٫@IFRh\Hu~\R8\"z\K4\','',0,'?'),(_binary '\\v{C\ҧ4I','wp-content/plugins/wordfence/lib/wfViewResult.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\\"J3Z\\w',_binary '\m\e\=HoDOT\\0\v\\','',0,'?'),(_binary '\ݡ=NxK\`*','wp-content/plugins/wordfence/lib/wordfenceClass.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v|\	tE\\\'k\',_binary '[wgܪcSm\\_x[/\}|h','',0,'?'),(_binary 'kHm\1\\`0ѹ_','wp-content/plugins/wordfence/lib/wordfenceConstants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\\\sg\5䃥l',_binary '\?*\0Z:WX̩kk\0IM\UT','',0,'?'),(_binary '\X\\\-4J_3','wp-content/plugins/wordfence/lib/wordfenceHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\"MJ\7Y(\nAj',_binary '+#>\\9˖9?,ox\QN:','',0,'?'),(_binary 'z|*6S\\5\3','wp-content/plugins/wordfence/lib/wordfenceScanner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\عw$\',_binary 'S=\u\%TM\\"\\7\G\	\\"M(\','',0,'?'),(_binary 'h<]\OpNCƴ\','wp-content/plugins/wordfence/lib/wordfenceURLHoover.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0{\C-\\.',_binary '5%꒛⁚\d\*<nԗ\ҜNZ\z','',0,'?'),(_binary '\6\wr]\\*\\#','wp-content/plugins/wordfence/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\B7&\]NDd',_binary '\@H\\\\M;ﺾ5 i\\\'\o\5V\','',0,'?'),(_binary 'Jl\1\\\\','wp-content/plugins/wordfence/models/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\"xK\\{\8\dS',_binary 'C\\'r9\@\Kކt\\w#@k','',0,'?'),(_binary '`&%eFg\d','wp-content/plugins/wordfence/models/block/wfBlock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=\\\L@\ʐA\',_binary '\n\SY>\l\*ϸC@z&+ zdAWw\n\r','',0,'?'),(_binary 'j4-O Մ\rL\n','wp-content/plugins/wordfence/models/block/wfRateLimit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$1\D\'wm',_binary 'E&&\na\\\~\b+\Z\\)j\\M\pM','',0,'?'),(_binary '֔\ߚy(qDw\','wp-content/plugins/wordfence/models/common/wfGeoIP2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\YJs@jrjtm',_binary '\3ÑѲs\\\r&z=\\ds\\pJx\3w','',0,'?'),(_binary 'g]e\!^(PK\\','wp-content/plugins/wordfence/models/common/wfTab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\T\}HW\'<}\\',_binary 'Z¥|s\S\8e3\Eؗ$\\ܜ-h\','',0,'?'),(_binary 'X\~\Vzl!_]/-3','wp-content/plugins/wordfence/models/firewall/wfFirewall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\C#BsTb',_binary '×GH\\\\5kӹr\ܰRR\_x\-','',0,'?'),(_binary '\\9XU7z','wp-content/plugins/wordfence/models/page/wfPage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tbo i%HXw\Xv',_binary 'ƅ1h\/jw\<U\\kq%s|W6\\','',0,'?'),(_binary '\O܎$8Je','wp-content/plugins/wordfence/models/scanner/wfScanner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\X)\f\.\T\',_binary '3/x\"W\h@fP\0]\\','',0,'?'),(_binary ',:\\3չC@\~','wp-content/plugins/wordfence/modules/login-security/classes/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Aabvr\',_binary 'C\\'r9\@\Kކt\\w#@k','',0,'?'),(_binary '@\={&\}\_','wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=Ơ\\\Hxߗ5\',_binary '\\f)\f&Bx\j\E#]u\-e\"y6\','',0,'?'),(_binary '/\-TǻT<S','wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NkyIk\wה=i',_binary 'LS=Wf&d\\=]_fvesW\\','',0,'?'),(_binary '\ZO3F5K;@ \','wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@\q\\}[\',_binary '[\T\nEjd\($:!h\Ν\0s\><','',0,'?'),(_binary '@q\G\-$\|\','wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\gPʋ\i\\[',_binary 'DeJ\Z\fxb	x\'P\:\U','',0,'?'),(_binary 'p\\*e\\n\rψ\\','wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\cd\x\W{f\Nb',_binary 'Oj+hŤ\nⵃ8Qܮ#w\_p\C\\','',0,'?'),(_binary 'V\\rz\(nol*','wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)S4C@\r\0\\Z',_binary '\0\nbǻ\\I꾊N܂Ӡ\fR\z\','',0,'?'),(_binary 'SC\i1ۭj\','wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%|6\V!;O',_binary '\JDƜ.[\\\\\){\','',0,'?'),(_binary '{4.##','wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' B<<LU\:uUn',_binary 'ZІ\\\\@@GP\#=|\'k4\','',0,'?'),(_binary 'ȁ\#/\06','wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Atz`\n%\YP',_binary '\\\\1\\[\Z>EK\\Rk\\W\\v','',0,'?'),(_binary '\&	Y\tz(\Z\','wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j.\\\0*\	[\\',_binary 'f\\8\'!RF\\L\\\˙^\w\\','',0,'?'),(_binary 'H\\\CTp(^\\l\','wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\o\\nq]\\:\\c\',_binary '<\'@þ\\\Zh\\Ӏ\\\o\@>\\','',0,'?'),(_binary '\L\Z\\|=c','wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B0\\\oǔ\',_binary '7/Q\\ƐՐwg:\?#{s\ɟ','',0,'?'),(_binary '\S	\g	Nd','wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Vg@ݕX43\Ё',_binary ',D\\U}\>\\q\\!\5r\)0G\\','',0,'?'),(_binary 'Wx\ZTa\\7{\\','wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\|s,=K#\',_binary '6\ly6ɦi\3U\,E[鲓9','',0,'?'),(_binary 'o1i\L5\z$\7','wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u1\\\\\8;#j-',_binary 'P\|l_\Z\3z<NɧK\\','',0,'?'),(_binary '\%w45X\泞','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't^I\'\]!\\',_binary '\Ǧ\bt\5f\c\kdm','',0,'?'),(_binary '.\7\f\w9Pm@\\','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0H\#IHD\\\',_binary '\vo\VYx?\\n\\\n&3c-\r8\m','',0,'?'),(_binary 'w@\Ie\\Rf7\\','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hR\',_binary '\=\mH\/\ne\\C3\u58','',0,'?'),(_binary 't[[\=6u7;YT','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4s[\\lAc4f\',_binary 'ƺ\>\y\.~yK^)*f6F','',0,'?'),(_binary '\rz\@_ÐmdM','wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '96f\\;0',_binary 'mgc%\i\ZnAB@wFz\;\y`\rN','',0,'?'),(_binary 'rY\0S\(z|','wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-Gbyf\|\S',_binary '\oG5}[\`\nx\ܡ^@B#\\\lb','',0,'?'),(_binary 'cp	PU3/\','wp-content/plugins/wordfence/modules/login-security/classes/model/request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&ܮM\,~/\\r',_binary 'F;\\\W]\&\\z~o\'\/q\+','',0,'?'),(_binary '\2p)tI\\','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \\\0\">y>=\',_binary 'xVQ/}琾:(3&\\%UJoC','',0,'?'),(_binary 'ǖd\!s<X\Я','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*1{,˾\ʂ\',_binary '<G\\$U+\k\L>\0hahBS-\','',0,'?'),(_binary '-_\mq+\1','wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h㠲\\\ieɡ',_binary 'IHMp\\\\Nh\n׈NF=-Z\=hO','',0,'?'),(_binary '-6Yw@i\=','wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Oh\\\\O<FҬ\',_binary 'PJ\H\tNsnd*F\'WW\aq\]','',0,'?'),(_binary 'H)\\\jH\j','wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\'B\l\If\\\\"c',_binary 'O$\U?\\nRy\V\=T\Z','',0,'?'),(_binary 'g\Z\\\\r`=m','wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\rL\\\{ǀ\',_binary '\\VZ+\&\r\Щ\U;L)R\!ӵ\','',0,'?'),(_binary 'U.\\G\0\\h7K','wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{\\ǲ\\겊\\T',_binary 's׷my(\[~M\\N\Ԙ\\;i','',0,'?'),(_binary '\;Dth\E\G\>H','wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Γ\jN\y\8',_binary 'U\AMV\n\\PWkxu		\/=','',0,'?'),(_binary '#:\\SkU\{','wp-content/plugins/wordfence/modules/login-security/classes/model/view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*:\?\l]\\u',_binary '2P\\탚\=w=7Ar\nfQ\~,B','',0,'?'),(_binary '\a\!57\	\\\5c','wp-content/plugins/wordfence/modules/login-security/css/admin-global.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n\!m]\'\x\_',_binary '\WIY\T\įQ.0(?\F\f#|\M','',0,'?'),(_binary ']*\\9\\W','wp-content/plugins/wordfence/modules/login-security/css/admin.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S:\\W\ݱb',_binary '`\ʂw\\'\J^\8Vh\o7c0','',0,'?'),(_binary '+ڂa\\r&:\\\u}W','wp-content/plugins/wordfence/modules/login-security/css/colorbox.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<w\ri컎vL*x\',_binary '\N\b\r̎/?+\'\\bi\'W\$@i\0','',0,'?'),(_binary '~\\^;5','wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\2J娳YB瘱',_binary '\ZPL㨒\Zi\tA\\\\7d','',0,'?'),(_binary 's\(\=3*9	','wp-content/plugins/wordfence/modules/login-security/css/ionicons.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\ƣٿc;\\z',_binary '\N\Js@\3	:h)7K\<\\N+','',0,'?'),(_binary '-w\khP{%','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l.(\KpQ\\',_binary 'ٍ$rb=p\hx\K5]8\QRjn4','',0,'?'),(_binary '\m^\"p\','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')/4;\$۔\ެvi\\',_binary 'n\\\i\뗅NvX7Y]D','',0,'?'),(_binary 'g`\U/M	BH\Q','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kXZb\\\5\\',_binary '[\0NEg\\\gdq\r\\\\*\'I\','',0,'?'),(_binary 'H@Q-\	8IŶ','wp-content/plugins/wordfence/modules/login-security/css/login.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\0|\\Z1\\r',_binary 'F݌\rw,K\\_\m\-N\\"*tF\','',0,'?'),(_binary 'ow*\\nΛ΢GҜ]','wp-content/plugins/wordfence/modules/login-security/img/header.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\\\\]\j-\',_binary '8\\#̄(8\O\"\	+h\"Fb\','',0,'?'),(_binary '\\}\CwXTC','wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm]a\\$\',_binary 'Ǘh?\\\S\\\):\i@h.X\g','',0,'?'),(_binary '\\\1݃\%\VE|<N','wp-content/plugins/wordfence/modules/login-security/img/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K:\m𙗣P',_binary 'j*\e\\doX~7\\&N9\|L\','',0,'?'),(_binary '\\E?tB9bvF`1','wp-content/plugins/wordfence/modules/login-security/img/loading_background.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'\2p\nKX\',_binary '\Ύ%X\ŖF\\\1s\;\L\zr璻','',0,'?'),(_binary '%fW\	\P0\}+','wp-content/plugins/wordfence/modules/login-security/img/menu.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\\\\]\j-\',_binary '8\\#̄(8\O\"\	+h\"Fb\','',0,'?'),(_binary '\M\\\\z\ŭY','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G\Ju;Q\Z6',_binary '\\\MU\KhQwCi\V\J\'','',0,'?'),(_binary 'f r\p\(p$','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\bD\@pG+\',_binary '*DZ\>Bg\&YY\4(</','',0,'?'),(_binary 'Jլ4\\r\n\\\','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J\\c7yx\гl',_binary '~\qV\*\'\1]3^\\\m','',0,'?'),(_binary 's\\4RX>O','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h^n=(&\݂N&',_binary 'S\DIBz\_-?(Y\\pEyƹA','',0,'?'),(_binary '\\H\%\\\,','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|%;wQ8\@',_binary 'wi>\6Ƭ\4\\.N\C\\Z4IO\','',0,'?'),(_binary 'b\0݀>j\\"G','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aa+JD$2J\',_binary '/#?T\iOLyv\uTKɤ\\ػ\','',0,'?'),(_binary 'r\\?EkLZ\NЌ','wp-content/plugins/wordfence/modules/login-security/js/admin-global.1637598990.js',0,_binary '\q!\\\0𭀠\'',_binary '\q!\\\0𭀠\'',_binary '\W4$a\\\'x\\\-\Kμ#Z\','',0,'?'),(_binary 'Q\\AVz;\'','wp-content/plugins/wordfence/modules/login-security/js/admin-global.1643748814.js',0,_binary '\q!\\\0𭀠\'',_binary '\q!\\\0𭀠\'',_binary '\W4$a\\\'x\\\-\Kμ#Z\','',0,'?'),(_binary 'Kw\	?\WZ','wp-content/plugins/wordfence/modules/login-security/js/admin-global.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q!\\\0𭀠\'',_binary '\W4$a\\\'x\\\-\Kμ#Z\','',0,'?'),(_binary '~f9\nR','wp-content/plugins/wordfence/modules/login-security/js/admin.1637598990.js',0,_binary 'gej\\\'I7',_binary 'gej\\\'I7',_binary 'U\%jGħ\\\|]SЩn2\\PT+J','',0,'?'),(_binary 'JYYO\܈b)\Ľ','wp-content/plugins/wordfence/modules/login-security/js/admin.1643748814.js',0,_binary 'gej\\\'I7',_binary 'gej\\\'I7',_binary 'U\%jGħ\\\|]SЩn2\\PT+J','',0,'?'),(_binary 'H%-yP`djԒ\i,','wp-content/plugins/wordfence/modules/login-security/js/admin.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gej\\\'I7',_binary 'U\%jGħ\\\|]SЩn2\\PT+J','',0,'?'),(_binary ']g=NK *^\Z\C','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1637598990.js',0,_binary 'lYZ\iਆ3\02[',_binary 'lYZ\iਆ3\02[',_binary '(\A#\F~+Fgh\S.b','',0,'?'),(_binary '\)C\\n\\3\\#[','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1643748814.js',0,_binary 'lYZ\iਆ3\02[',_binary 'lYZ\iਆ3\02[',_binary '(\A#\F~+Fgh\S.b','',0,'?'),(_binary '7Kђ\*Z\\"+','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lYZ\iਆ3\02[',_binary '(\A#\F~+Fgh\S.b','',0,'?'),(_binary '̦N\UwTv\cB','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1637598990.js',0,_binary '\\lWe\U{\9',_binary '\\lWe\U{\9',_binary '\\\\\\G\\8=\0> 3wg3.4','',0,'?'),(_binary '\\UǉGPut\"L','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1643748814.js',0,_binary '\\lWe\U{\9',_binary '\\lWe\U{\9',_binary '\\\\\\G\\8=\0> 3wg3.4','',0,'?'),(_binary 'ؽa\\\r(\\$','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\lWe\U{\9',_binary '\\\\\\G\\8=\0> 3wg3.4','',0,'?'),(_binary 'Ầfzɋ\5	','wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1637598990.js',0,_binary '\\ԹXp`me<',_binary '\\ԹXp`me<',_binary 'wP\0\p\zuYDS\z(Wߥ\P3$S\\','',0,'?'),(_binary 'Rj&c]R\\nOT','wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1643748814.js',0,_binary '\\ԹXp`me<',_binary '\\ԹXp`me<',_binary 'wP\0\p\zuYDS\z(Wߥ\P3$S\\','',0,'?'),(_binary '\\O[\Їt','wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ԹXp`me<',_binary 'wP\0\p\zuYDS\z(Wߥ\P3$S\\','',0,'?'),(_binary '\y\~?Pd\\\p','wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1637598990.js',0,_binary '\\}\\"7ڷDZ',_binary '\\}\\"7ڷDZ',_binary '\.I\H\Zg\0\H!7`gޠZzȄž6|','',0,'?'),(_binary '\0ǑV\\\ǆ\(','wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1643748814.js',0,_binary '\\}\\"7ڷDZ',_binary '\\}\\"7ڷDZ',_binary '\.I\H\Zg\0\H!7`gޠZzȄž6|','',0,'?'),(_binary '\V\\`?wIyl^5\','wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\}\\"7ڷDZ',_binary '\.I\H\Zg\0\H!7`gޠZzȄž6|','',0,'?'),(_binary 't^\n\e?^i\','wp-content/plugins/wordfence/modules/login-security/js/login.1637598990.js',0,_binary 'gx\"!ق\0\y',_binary 'gx\"!ق\0\y',_binary '[Jo\w\\-\`3\\\-aQ','',0,'?'),(_binary '`\|\+#\0\\n7','wp-content/plugins/wordfence/modules/login-security/js/login.1643748814.js',0,_binary 'gx\"!ق\0\y',_binary 'gx\"!ق\0\y',_binary '[Jo\w\\-\`3\\\-aQ','',0,'?'),(_binary '\Z\C_Wϕ-ȝ	3','wp-content/plugins/wordfence/modules/login-security/js/login.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gx\"!ق\0\y',_binary '[Jo\w\\-\`3\\\-aQ','',0,'?'),(_binary '\dt\S0[\\Og:','wp-content/plugins/wordfence/modules/login-security/views/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Aabvr\',_binary 'C\\'r9\@\Kކt\\w#@k','',0,'?'),(_binary '\\@~}c\Q\\'J','wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\9\\;%\mM6Z',_binary '6-\2Xjݒ[\l\ÆL	\'8FJ','',0,'?'),(_binary '\q\8\]C\\֔\','wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\6\Ϝ\{/\y',_binary '\?a\d&\.\ɖ\q\V$\\Md','',0,'?'),(_binary '\x#*W`PD','wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a&\\:^\\!y\',_binary '\\\yӑ4UVȡF>/\\m\#<{\r\','',0,'?'),(_binary 'jp\0Z\\','wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\Zxut\nx\',_binary '\\p!ŗ$\<\#|j\\f#-z\','',0,'?'),(_binary '#ynہ彐[hr\\\U','wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@{Թ6',_binary '\دh\Z\o>\:즱l 5D_\'-w','',0,'?'),(_binary '4#հ}','wp-content/plugins/wordfence/modules/login-security/views/manage/code.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\j-\W.\{@',_binary 'i%X\Y`FmZ\E^ab}r_E3\','',0,'?'),(_binary 'O潼m$\݋&_','wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\^\F\\n\Dҭ',_binary '2\"ޡ\4e\\Kӗp!w#\\\1\,','',0,'?'),(_binary 'wF\ȶ\\# ','wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\o}\$\Z\X\',_binary 'EʕG\!ܷ\[\~r\:\\'O','',0,'?'),(_binary '\#\' ~\\/zF','wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ޜ\tj̥<',_binary '\\\\T	?WE>}u\+','',0,'?'),(_binary 'E\B3A\\\-\r\&!\T','wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\o\y\벍cK',_binary ':P\cc\z\\"Qa\\QZd','',0,'?'),(_binary '\sݜÞ3\\\','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\\7Ih!\\\_\',_binary '\y۹\\!\H\\\HGH','',0,'?'),(_binary '\u\\C~7\n\\\We\','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\k-xf\C/',_binary 'q~xY\\Zk\\o\ϫ(NS\B\','',0,'?'),(_binary 'mA\p\\	1\G\U/','wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '׋Po\v`',_binary '\ZuE--߈SC\di5$r','',0,'?'),(_binary '\F\\\\m','wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|<\>sZKze',_binary '\̆;\nE\\!\\Z\\ZV\\V H\\w','',0,'?'),(_binary '\b+\\aX\\\X','wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!h\0,\ \%',_binary '˃\\B\n\\G/͉Cw\9,$ŐJ!\8&','',0,'?'),(_binary ';\d+;C?\\','wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*2\ng筴{\\',_binary '{\\\u\ǘg\\L\n}\S\!Nϗ','',0,'?'),(_binary '낏\r?8[9kQ\'s','wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!7\r\\eys\Z',_binary '@\}\ny.\'w,\5\e\"FEYb\v@\.','',0,'?'),(_binary '\\2\?!\u\܆\"','wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[(AɊ\\\\h',_binary '\ͳߘQ6̨!*\\\X\x\\\MMu@','',0,'?'),(_binary '\Z&\cR\< FiC\','wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ƥܐ\W^[g',_binary '\dLcK~=0jE]\~\"\','',0,'?'),(_binary '\j\\nj<c@BX','wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\q\טwU\\ͰR',_binary 'JwYwun[\\&D\FLV-\2L\\\','',0,'?'),(_binary 'I<\\U\CMdZ','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\nA\Ig\+\\.',_binary '5N叜p\o\'\GYNsC\IS>Ǉ','',0,'?'),(_binary 'wDI-E\I\l\','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T%\a;B3>|CX',_binary 'B;,\y_\:$\\\\\E5B0\\0','',0,'?'),(_binary '\F\\ruDb7','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\mE\}8ןb\,',_binary 'dh\\\nC\\[$\\\P7xH\"8i\Z*\','',0,'?'),(_binary '\|:\xZ~*\wl','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\\\[f0\=G\',_binary '\[Gf\N\\\	rG\Ƭ.','',0,'?'),(_binary '\rP\)4_\"\'1','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@܌\ͣ~E||W\r',_binary 'J\4\5⯷XI[)*\3=TUgK','',0,'?'),(_binary '\\*沫Q\N','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oV7PR~׬\\ai',_binary 'b\\Z\s#:\*\\\\'i@qa','',0,'?'),(_binary '\\/qRR\|\','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\!z@;\Ve\\\',_binary '#\\l#\к;	KAH9Q\@	\\\B~','',0,'?'),(_binary '$QsP\R3}/','wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@9o;&\t\',_binary 'C۞`\)\t\fK|jd\~','',0,'?'),(_binary '8\=\[ձ','wp-content/plugins/wordfence/modules/login-security/views/page/manage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\\iYn$\qG',_binary 'v_eIܑz\"\[\1\no\\F','',0,'?'),(_binary 'C\I\S7\<','wp-content/plugins/wordfence/modules/login-security/views/page/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ш>\\g\ǡ\$\c\',_binary '\\iiGC\\\NFL\)7%ʙ\','',0,'?'),(_binary 'tt̸\T\.\*óU','wp-content/plugins/wordfence/modules/login-security/views/page/role.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!|3\is:\\\y',_binary ']F\ŀ\T\\ݵ\*\b`u\\\n\\9\'(','',0,'?'),(_binary '\ZL6N\1\;8','wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\\w^\nk6',_binary '!\5@\a6to5(D\s\\\n\\Kf','',0,'?'),(_binary '\g\[z\\0ή','wp-content/plugins/wordfence/modules/login-security/views/page/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\կ\\\#\z_\'\\+',_binary 'vT\\oC\G\Ng\\\3?\Xm\K','',0,'?'),(_binary 'T\\\r\fV+\ j','wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gxXJT\\bx\',_binary 'fx/\x\\G\\n856	Z\+','',0,'?'),(_binary '\˩6f/\6YjI\0\W','wp-content/plugins/wordfence/modules/login-security/views/settings/options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\a\Rd\\\T',_binary '3\\\\$ׁʌe\}K+\"~y\``','',0,'?'),(_binary 'Yg\$z\H\.Y\\','wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\(\`W6\$',_binary 'fDYr\tt\\}}}1q/u|\\;B','',0,'?'),(_binary '\yx\\\x4* ','wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BP\\\\r粓\0',_binary '[fv\\AlԻ˄N\A:4QP\\\	r','',0,'?'),(_binary 'dk\JQAw6im<B1','wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's}ch\VL\/',_binary '\pd\\\2a\\\oI:\\?\#@','',0,'?'),(_binary 'v\FI\2h\n','wp-content/plugins/wordfence/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\'#7d\ng\E',_binary '[/q\\E}\\1%\[D\\_\\\ұ	\\S','',0,'?'),(_binary '\;L\t׬Cɣ','wp-content/plugins/wordfence/tmp/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iz~\i,L\',_binary '	HQI\qzڤp\9C4>H\3G','',0,'?'),(_binary '\\\"\C*\\.','wp-content/plugins/wordfence/vendor/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\"xK\\{\8\dS',_binary 'C\\'r9\@\Kކt\\w#@k','',0,'?'),(_binary '=S6\aXo,2','wp-content/plugins/wordfence/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nV8\\\\Bs',_binary '7\h\\\>8but^^Rx26\#i(','',0,'?'),(_binary '_k4\\!*}݄ ','wp-content/plugins/wordfence/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|%*T*`',_binary '\289vu3n	C2sva/','',0,'?'),(_binary '0\&Y\\\','wp-content/plugins/wordfence/vendor/composer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']_\#D\\0\\',_binary '\Z ے\%4~N\~Gh!b\:wɌ\'','',0,'?'),(_binary '\"0\rN1M\\#\','wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EӤ㭇\\Mg',_binary 'Q\*\'B+Eߞ:\m\yu\W','',0,'?'),(_binary 't\\!\\Z%\n','wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\,}vĨ3\G\)',_binary 'Er4@\0ԡ$\z\3\$l\\Z\`i\ex\l\','',0,'?'),(_binary 's\\˱Y*u\O','wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*qBItӟA<\"',_binary '6qQ\`\d!cf.\Bxq','',0,'?'),(_binary '~\Ӹbc\\\Z$@$\*','wp-content/plugins/wordfence/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+>r*\\mI',_binary 'E\\\0\.\¿¯1F(Dfu\v\\˔','',0,'?'),(_binary '\!֐(yJo*\\J\','wp-content/plugins/wordfence/vendor/composer/autoload_static.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\\BH+\)	',_binary '\84E3I6-9\!zGL5','',0,'?'),(_binary 'k}:\\\\VN\\\\G','wp-content/plugins/wordfence/vendor/composer/ca-bundle/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x>P\H\e6\[GF\5',_binary '\q!홐\\%ހP٧Hr.L~','',0,'?'),(_binary '\p1	?\\J@','wp-content/plugins/wordfence/vendor/composer/ca-bundle/res/cacert.pem',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ǧn3Q2\G',_binary 'd\\\"fݎ6em`\z\\P<KO\','',0,'?'),(_binary 'O=\h\0}O\\rLb','wp-content/plugins/wordfence/vendor/composer/ca-bundle/src/CaBundle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZU\~L5\@\ZVU',_binary '/r\\Trm\Gс\r%e\r\\|\[','',0,'?'),(_binary '\]mٲ	▭\','wp-content/plugins/wordfence/vendor/composer/installed.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>w\̩	\\&J)',_binary '\M\\,P:k\nN\2[s\nWze]oN','',0,'?'),(_binary '6N]bN\R','wp-content/plugins/wordfence/vendor/geoip2/geoip2/.gitmodules',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڄ \q\?s1\\U',_binary '\REkks&]!i_\"\\y~Ka','',0,'?'),(_binary 'ECW\``\\-\','wp-content/plugins/wordfence/vendor/geoip2/geoip2/.php_cs',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_@\e\\\3b\B',_binary '\L\ؤ@J\9OhG@@\Z!\\08#l\(','',0,'?'),(_binary 'c\cgu\\\','wp-content/plugins/wordfence/vendor/geoip2/geoip2/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\8e_\T\\ƽW',_binary 'ݬ\IS\P\"\a 7J6\QSv\_y','',0,'?'),(_binary 'k|DD*@4\','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Database/Reader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\nAgv1Pص',_binary '0o*\r\vA\o\3\:\\j\uy','',0,'?'),(_binary ']\j\RX','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\//R\\j\\\.',_binary '\3\'X\r\o`/\\D\\/\3\Z','',0,'?'),(_binary 'Zg\Ui1i\ƾ\x\=\','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\W\,XEE\o\',_binary 'l?\\)&&\\\\P\\P$@\\\/','',0,'?'),(_binary '\\{Z\n\0D\rOM*Ut\','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N	S\X\?z\\',_binary '\\\Ԧ\n\ٲLK\Y1\%X7\~\*','',0,'?'),(_binary '\\퇴\u46','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/HttpException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l\fk\<\\r\n\',_binary 'R!\O]pI\n\\\\\VP\9=!\?\\','',0,'?'),(_binary 'K?\r\a#Qh','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ia\\Rɞ%x',_binary 'M \b\\d\]Fi\POZq\','',0,'?'),(_binary '^4\j|\I\','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\H*f\\$\ʝӐ',_binary '\\Ɲic\z\P1\\"ݢӛoTWry*F','',0,'?'),(_binary '\܆R(\'2Whp\G','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AbstractModel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@ҏHC5̨[\0\',_binary 'X\f:Mt\˃#sD4(NGF\','',0,'?'),(_binary '\[0\^\','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AnonymousIp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'emg\ݜ|<뼸Dh',_binary '+%\G<t1]\I\5m\Z}\E\>\;','',0,'?'),(_binary 'vV5ǃ\D\u','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Asn.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڄ\n1h;!\',_binary 'Mϡ\	\pk\\)\\!\r','',0,'?'),(_binary '\QK\\Q95Ɣ`','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/City.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\>\\Y!\\zJX',_binary 'B*yL˰a\\u\"t\Z4\\Z۳Nk¥','',0,'?'),(_binary '+b\n\DfX2YC','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/ConnectionType.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\\S:-N!Q\0\"',_binary '6\)?\^\"F\*g|\\&\\R\Π\\\0	','',0,'?'),(_binary 'eiy\\,:\\T\)','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Country.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0Q#2Џ\R',_binary '~G)\R\7i-\#\\R 9Hǫ\ b','',0,'?'),(_binary '%~WN82QO','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Domain.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n4F0JC\ nk',_binary 'Cb,\"\\">j\\Ŋ\\AlD','',0,'?'),(_binary ']\r:@I','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Enterprise.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6:\\2kP3',_binary '%uMp\\\\,.\0\@Zq\r/\Q','',0,'?'),(_binary '%D?\m1QZ\"\cAXQq','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Insights.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\\=1\nV\0\',_binary '8}>\\k6`uid\\eH\P\^\','',0,'?'),(_binary 'Dmu\ϣ!\I5H','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Isp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pٽP\]G\',_binary '| )YM\\,3\0\\\Z*9\p','',0,'?'),(_binary '\V<\\r\nQ]jvXP','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/ProviderInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\*Nf\ټ{',_binary 'i˶|1\\v.4[(\\m@f>\\','',0,'?'),(_binary 'J?#͌$M7\c','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\I.:\`PR\',_binary '#z\R\ZHU\\\>B\nP,\'eTtߺ','',0,'?'),(_binary 'MӼ\7T~\\','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractRecord.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\kA\`lw\\\y',_binary '7\r4	춥Q\nc\\>c\n>\Pf8\4Hk','',0,'?'),(_binary 'we\jZ\\qI\','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/City.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(,Eڎ\;',_binary '5+S\sY>%\r97\5[I\=\`<2M\\','',0,'?'),(_binary ':1()p]V1-ȩ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Continent.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qDL\\a[	?\$',_binary 'Gs\0\\\r\/1\v=\pS-yE.\\U','',0,'?'),(_binary '\\݈3+P\r','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Country.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',0Z%\\',_binary '\g^\M\9=&*M{\Xb0*\u\','',0,'?'),(_binary '\\rBeׯE\7','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Location.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Y}`8v\FJ',_binary 'U߆([r嵳g\\h\\嬵!m9(\"','',0,'?'),(_binary 'k1/͓ݐ%=','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/MaxMind.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dqd6+\"U\',_binary 'I\s;֮i\k\\E@)','',0,'?'),(_binary 'F[\㵋Pѳ@','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Postal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\bP\"\x\Y@0\\',_binary '\\'\\\n*2nԋ\\\\)\a(_\Iqɘ{','',0,'?'),(_binary '&\\ɚ%\)\W&\i','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>XVD\m|P6\n',_binary '\l=\b:џ\\	R\Z\	\	\6','',0,'?'),(_binary 'P[D\XP\a\\','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Subdivision.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\;uS\l',_binary 'M>:\r&\V\`\\Z:O0\Sv;\0Vw','',0,'?'),(_binary '\\tV\\<C\\','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Traits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';HoĴ`\׳m\%\',_binary '\(\l]h\\Юa	y\fh0v\'uvm','',0,'?'),(_binary '&\Yz\q\[Ff@','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/WebService/Client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ⶨ;*\?\z',_binary ':O.\\'~y\@Y`FMN\:n\.\;q@','',0,'?'),(_binary '\\\`I\\,\y oY','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\8e_\T\\ƽW',_binary 'ݬ\IS\P\"\a 7J6\QSv\_y','',0,'?'),(_binary '\\d=\\@hs:k}','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K#lJPe0ug۔',_binary 'UWM\\slL\\\9#TbWj?\\\u','',0,'?'),(_binary 'T\.\)m\&\\\\I','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/HttpException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '41l#}p\\\zk1',_binary '\h	\_\֚\!E\4\Zv\F','',0,'?'),(_binary 'ؽ\)uҶewl','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mhOലf\.I',_binary 'oO\b9_\b-4\\-x%T\5E9\'','',0,'?'),(_binary '\\Z3\H{\ǲ','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\ Ϭ\n+n',_binary '^q\N\\\Т\&yN~\'S//>}\p','',0,'?'),(_binary '])TN25F\','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GR˗c\?qt\',_binary '֝Rz5B\,nɲ\nHoڨ\\|','',0,'?'),(_binary '-[\S\_عQ\','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1:\!G~q\ic',_binary '^\DCguPT!>\W\\Z\k\~_5\n8','',0,'?'),(_binary '2]&֔#\\^F\q','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2΢\	/E!\<s\',_binary '\\\=\53	ώv\\_%\2A?$','',0,'?'),(_binary '\85\\Rqo\-\=','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\\\$x /\\\',_binary '\<b\obnA\\\E\7_\\GK','',0,'?'),(_binary 'ȿ-\\`u\o\\','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'am;SV#\\m\I',_binary 'R9F\\\\\\47i}ʧ\C^\%','',0,'?'),(_binary 'm>\\00X&^Q','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\pKz\`\)9_@',_binary 'aғYe\q\7YTcȊi$Wت\/\!,','',0,'?'),(_binary '\ۅnPE6T\\','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/Request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KdWؿE\W',_binary '\R\W].da\\\\s\JMLq+p},\','',0,'?'),(_binary 'ӎA}ҎWZ5=*t','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\b;v\'g\\~k',_binary 'm\!\MJ\"v>,\\\0\\0՜ɫ &jِ\','',0,'?'),(_binary 'i\\Z!\[8$\"','wp-content/plugins/wordfence/vendor/maxmind-db/reader/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\8e_\T\\ƽW',_binary 'ݬ\IS\P\"\a 7J6\QSv\_y','',0,'?'),(_binary 'Sdlz\sV7','wp-content/plugins/wordfence/vendor/maxmind-db/reader/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V~МI\\XP/$',_binary 's\em/;֘\\\\ aZH`g3','',0,'?'),(_binary '%\\(w\&','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\0\\$K  \	',_binary 'V\p\Z1͌э\\'=~\ٲF_u\\\P\','',0,'?'),(_binary '\Ϗ\\RCOh\\','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\6.tz\x\o',_binary '\\;\p^\03Թ\( A\\a\\w','',0,'?'),(_binary 'O\5e\\\;hzw@W','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z<\\{~G\f(',_binary '\\,ב[\Z\@+\\\?x\P\\А','',0,'?'),(_binary 'k%\\r0̯IN6\D\'y','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\+کd\ݬ@\',_binary 'wbjY\S\tc I\dQ','',0,'?'),(_binary '\Z[`0CI$T\'\','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\H$I3^0',_binary 'Dsmr?v\jz\\Mo3=b0K\R#','',0,'?'),(_binary '~iI\;ݭ]A\S','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '54\\⓿\`',_binary 'DOo;oO]+\\0\\\5\]/\"\޸&\Q','',0,'?'),(_binary 'I6U\r7\\3p\','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h<\|\7b',_binary '\\_^F\"\;+r&Z~ӦQ\\\\|\5','',0,'?'),(_binary '\nvZYV\\','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x9S\\\ru\>',_binary ')6H$\/\\j2m\O\o\<4\v)\giAp','',0,'?'),(_binary 'BJO\zD','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{\1MRKE_\/',_binary '|qUUѿÎ|zG>*ۜ\"\\I\;','',0,'?'),(_binary '\Pd\c3','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\.<$E\0g:T',_binary 'ƝER%\f\\\ɾ\\rv8C^\h','',0,'?'),(_binary ',`\t\\t\b7','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MP\<^f\G\\ C',_binary 'V$oBޞj\\f0֫Qx\uT\=a\`K','',0,'?'),(_binary '^Q6l\J!	\ͦ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\oN\.',_binary '>4\i3|v1N\\6wD)M\jr','',0,'?'),(_binary '߹V\=\"\#n	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\-T\0\2L-\',_binary 'ȴ\\gA\]\z-ۣ\᷸[\','',0,'?'),(_binary '\\r\M\ܴ-\nS','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eR\\r#U犏',_binary '\\s\Gdl\IB-?`7|r\R\\3V','',0,'?'),(_binary '\\\X/\\\0	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\iJB!<\0',_binary 'V\4^C\D\Z\\\\\\\;Uz','',0,'?'),(_binary 'n\\\09jv8\\"','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ň\0s\4z9>\_',_binary '	D+Ĵ\\!̈́Q\\\WC','',0,'?'),(_binary 'ҭ\_VlKg!p1','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Oҡu\/B\&?h\\',_binary '\Dٽ.j7It\lKD\pCO\\\Уh\n','',0,'?'),(_binary '!\O4\bCRRfO','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BZ:3\hr$~\',_binary 'FC\5#\\\C<޺bGG\!̮@','',0,'?'),(_binary 'IW\9\a\W3(','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\W\\0\N(\',_binary '\\z4dһ`	\0B5M\ ','',0,'?'),(_binary 'c[b]\ݽJF','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I]U\	Xg',_binary 'T\Ϛ-\1 [\@./i󒶦i\\q\\0o','',0,'?'),(_binary '\СqD֚?\iX','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JgMN\elwD\.v',_binary '\U\\';P^P	\\^0\d\0Ѯ\P㛇*\','',0,'?'),(_binary '\\'\`F̔\~\Ė','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\؍\\0\+C',_binary '`>&i(ŹC\\f\\&\\\>Y\"','',0,'?'),(_binary '\\<\x\B','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\r\|UZv',_binary '\\Z^L\\\a\\~z\0;3e\,˒\\-=','',0,'?'),(_binary '\n\@g\+T;V','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\f\\r@)뻚',_binary ';\_I\m\1\n\9|!޶\','',0,'?'),(_binary '8K\ ?O]ʹY','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZlY^[F\r\2xʻ',_binary '\6=\Sq-5 )EL}AViA]','',0,'?'),(_binary 'xVM\>n\{Oǟ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I,0`\-=OxH',_binary 'ⰁmWka\\\2Sj\>\\"\w<','',0,'?'),(_binary 'Aػ#\"\\\j','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J<1/%$\J=Δ',_binary '\v\\p	eKK7\\9\8\\\','',0,'?'),(_binary 'Q\\6K4\\\\H','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xAI6m\NdSpVBׇ',_binary 'Z?RA+7#C\-\\\4g[o?J_g','',0,'?'),(_binary 'rI\0yg\E!2\0C','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	n\{\\\0\0U$\',_binary 'G\n\\Ks\\I\'\my9\ZV\D\\:\ć\','',0,'?'),(_binary 'j\)nQ8ޮ\D','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"t0\,06\<',_binary '\Q#f9\;8\*B3W\ao3Fc\','',0,'?'),(_binary '\\{ \r\Slſ\	','wp-content/plugins/wordfence/views/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\"xK\\{\8\dS',_binary 'C\\'r9\@\Kކt\\w#@k','',0,'?'),(_binary ':f\?bj.','wp-content/plugins/wordfence/views/blocking/block-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']#{\1\\\\&v',_binary '^P\b.|=>\S\\#\'\rl]\^','',0,'?'),(_binary 'r7\/y*aڛP] 0','wp-content/plugins/wordfence/views/blocking/blocking-create.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9l\nXQ0hQ*',_binary 'Ź\\YZ/\\+`\_{\TnH','',0,'?'),(_binary 'fp\\\j\H\'','wp-content/plugins/wordfence/views/blocking/blocking-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\a\\\G]:',_binary '^Ķ\UO\95Eֹ\~z\qM\q\3@','',0,'?'),(_binary 'hx\*(&\\kO','wp-content/plugins/wordfence/views/blocking/country-block-map.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uyGF,{Xz',_binary '%Ԝ5;\x^)G(\o','',0,'?'),(_binary '4\ہ;0.*','wp-content/plugins/wordfence/views/blocking/country-modal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(G\"nrPi\)߬\j',_binary '\rFAmea	r-wY\E\u\\\\\u','',0,'?'),(_binary '\m5^\\u\\9>','wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(t\\\r4\\cR',_binary '^\V\x\_:\\k	\(\?B\!','',0,'?'),(_binary '1?ox\<\?\\\6','wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?v@Ya\pv',_binary 'p\ZʇO\F\M\\4\V92\QP\0\\\\','',0,'?'),(_binary '4To\iE\t','wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\s\r>J(E\',_binary '\K\(wB$\rs줇!ਿ\D','',0,'?'),(_binary '2ģ_D\x','wp-content/plugins/wordfence/views/common/block-navigation-option.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\\~}t.\K',_binary 'MN\F`\r9\\ӫ\rP\,Q','',0,'?'),(_binary '\\,@\\\Q\','wp-content/plugins/wordfence/views/common/indeterminate-progress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\\"\sg4\\(8',_binary '@\Zn\"ξ~QՔ\8s\P\07\3','',0,'?'),(_binary 'BUjv\\ѣ\\\\(','wp-content/plugins/wordfence/views/common/license.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:8\\\^r',_binary '\f\B-h\^\>A\\\nH0\\r&\\','',0,'?'),(_binary 'llx\L,7W\N\','wp-content/plugins/wordfence/views/common/modal-prompt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0J\.H[|\E3$d',_binary '\Zz%\\\;\\on\\m&\\\\','',0,'?'),(_binary '\]p\R/$1\','wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+$B`w\ƕ\',_binary 'a\\\6\\\Ο\\v]z5\\rp\c','',0,'?'),(_binary 'x\\|s\\Ka\','wp-content/plugins/wordfence/views/common/page-help.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!\\\YJ\Jk\\',_binary '\Z=DBא	%%A?Ow\*/\~u','',0,'?'),(_binary '\ˋ\_o!\'\u\r','wp-content/plugins/wordfence/views/common/page-tabbar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\\\VdЌX@qș\\',_binary 'S\تA\\\Ӥ\@5\\|~?KBK9U','',0,'?'),(_binary 'qqC$\@','wp-content/plugins/wordfence/views/common/page-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\*<\X;',_binary 'N5%=\kUHVKAlEI\"3\j\\','',0,'?'),(_binary '\%G]f\@\%\Z\\','wp-content/plugins/wordfence/views/common/section-subtitle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n^\r\#fstW\Z',_binary ':\taQE&͜\\\s١\nGb\\Z S1{','',0,'?'),(_binary '%?\\)\','wp-content/plugins/wordfence/views/common/section-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!z\\\̥',_binary '+\A\SџbH\濳$V+\N΂\','',0,'?'),(_binary 'w	+j\','wp-content/plugins/wordfence/views/common/status-circular.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\)\.=g',_binary 'q4^\"-9\\\\nd1q\O,\\','',0,'?'),(_binary '^O|\':QǙE\\\','wp-content/plugins/wordfence/views/common/status-critical.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R/C[\]u%',_binary 'W\\\B&69\gk_EF6\I','',0,'?'),(_binary 'sՌQ7o\\\','wp-content/plugins/wordfence/views/common/status-detail.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`Ufxy9\9g4',_binary '\\E\F\j՗&\n\E&J՟gWk.T/','',0,'?'),(_binary '#\7\r\Y\\0\i','wp-content/plugins/wordfence/views/common/status-tooltip.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\fZ\؍PIR&i\\',_binary 'EQtY=\j.#eW㈤A3QcP\T\','',0,'?'),(_binary 'Dd.P˴{-yo\g','wp-content/plugins/wordfence/views/common/status-warning.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kRf,\J\k',_binary 'f!\\rWe=?\\KjP&\*y\|','',0,'?'),(_binary 'p̓02@\\PF\tk','wp-content/plugins/wordfence/views/common/unsubscribe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y:h3>a ݑ4~',_binary 'E\q\Tg\O>F-\\O(\IƚZz','',0,'?'),(_binary 'Mx1ǋTmR_2o','wp-content/plugins/wordfence/views/dashboard/global-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˫\'m\`0>\+#\',_binary '\\\\\\p\Pv?Z\F\QQcj','',0,'?'),(_binary '{[\/ڑ\','wp-content/plugins/wordfence/views/dashboard/option-howgetips.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '܎h\\(v1',_binary '\Z\leknj\'=\|C\,\0\\MlDG\\\\','',0,'?'),(_binary 'b\E4t=','wp-content/plugins/wordfence/views/dashboard/options-group-alert.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\̻o\wG>p',_binary '\I`I^{\PנhQ\e:sG^8sĚ','',0,'?'),(_binary '~Ⱦ/m\ր\!\','wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s\X][sC>Q\\',_binary '>\_c\ZJ+\\a\Umv)lg','',0,'?'),(_binary '̋q\B3a\Y\\-\','wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0`\'}(bA#',_binary 'c,Bp28\\0j7}hp-\宆','',0,'?'),(_binary 'Q.ì\\\XeOI','wp-content/plugins/wordfence/views/dashboard/options-group-general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NF\Y\\"\4\\',_binary 'fNϻ`\nq\^Z\Z~\<\\'I[!','',0,'?'),(_binary ',\\M;v','wp-content/plugins/wordfence/views/dashboard/options-group-import.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\+:\C\\gQ',_binary '(#\><\\"(\n\\'K\\\\\','',0,'?'),(_binary ' 5\\rDg籃','wp-content/plugins/wordfence/views/dashboard/options-group-license.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ORS',_binary ']\\JokqK\$\Z\\\ȥyt\'\','',0,'?'),(_binary ']oM\seJ4\','wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oh5\rxܖN',_binary '6y\Zu\υ;\	0~\rs1J9\X\J\','',0,'?'),(_binary 'P\M˝=U','wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʿm\\m10f*)',_binary '	m\\Y\_\\\\\\\'.]WyW0\0','',0,'?'),(_binary '\7\0tt.','wp-content/plugins/wordfence/views/dashboard/status-renewing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hwB\\\e (',_binary '\\^K$\\1\0nƄ&\iM{\$^\h','',0,'?'),(_binary 'YBt\n\nc\ݟ.vi','wp-content/plugins/wordfence/views/diagnostics/text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\nW\hgq',_binary '\;<c6\|_])\m\\}pdg	','',0,'?'),(_binary 'OS\Y\Wz!8\ʣj','wp-content/plugins/wordfence/views/gdpr/banner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>69!G\\z>\S',_binary 'ZQ\a̿|꣞`!C\\2C\K%#l','',0,'?'),(_binary 'Qcm\uX\Z3B+X','wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$mR\_`\W6\\0',_binary 's)W?Pӎ\B*?x\BZ\dɗ\eZٞ{','',0,'?'),(_binary 'B\\\\!vݡɶ','wp-content/plugins/wordfence/views/onboarding/banner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zz#uv\\0',_binary '}\|IRvJ%-\/\n\V\\','',0,'?'),(_binary '\mה\\F@$~r','wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w|q\M+{3,K#',_binary '_t=ԑ\G0ɽ*67\\t\\*s','',0,'?'),(_binary '/7ñ\cx\\pg','wp-content/plugins/wordfence/views/onboarding/fresh-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o٫+\\J\ٽvE',_binary 'bIn\\'\nS*\/\r?\\'\\r7+h\','',0,'?'),(_binary ';\%N!9\nL&N\\','wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\\\β\J',_binary '\!\fc,BR\"9,\V<\	F#절K','',0,'?'),(_binary '3,\cvk\','wp-content/plugins/wordfence/views/onboarding/overlay.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'М\\\\s\',_binary '\a:F\VW\5W<n\o`','',0,'?'),(_binary '+\ZDZe}\','wp-content/plugins/wordfence/views/onboarding/plugin-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~+x\m+t',_binary '叶g\K\\\Q?gC-eON\\r!','',0,'?'),(_binary '\'Ac\,	~6\ܦ\','wp-content/plugins/wordfence/views/onboarding/tour-overlay.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\% );\0',_binary '\Z\\\'ġ맪\\.s\'\\sd\4^\I','',0,'?'),(_binary 'Z\\\d*\Y\ژ','wp-content/plugins/wordfence/views/options/block-all-options-controls.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5bcjc\Tcsq̣]',_binary 'W:.@H9KB5\\\\at	얗\ʪg\/','',0,'?'),(_binary '\\eҕ\hV\"','wp-content/plugins/wordfence/views/options/block-controls.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B\#jT,	D',_binary 'x\La);\%ƵR*\','',0,'?'),(_binary ',\\ZJ\'AWh\','wp-content/plugins/wordfence/views/options/option-label.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'`\\\\\a\\ \\',_binary '\\\y\DFR#\\\\F/G%RY\x!B6a','',0,'?'),(_binary '``\'\l`=\\X(','wp-content/plugins/wordfence/views/options/option-select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J*E\%v	N\a!Uw',_binary 'M#3a@xh\s\r5qB\N٣X#\','',0,'?'),(_binary ' oƕ\t_\0.\','wp-content/plugins/wordfence/views/options/option-switch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\'|\',_binary '\C\Z\hau\ݣK\Cif!\'~Fp','',0,'?'),(_binary 'Җ6\\M֦5wH\','wp-content/plugins/wordfence/views/options/option-text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kߟ*׉k+;8',_binary '7\\\M$<\\rO9Gj\\\Ey\Q*+\3','',0,'?'),(_binary '\YmR\lX\0\:','wp-content/plugins/wordfence/views/options/option-textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w\nMus\\',_binary 'O=~jc#6L窜\\\\as\W\OQ-','',0,'?'),(_binary '2\0mK:r²\\0\nB\','wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x9/Zh\6\n',_binary '\J<<\x?#\oJn8:j','',0,'?'),(_binary '\d\nv;\O1:,Tn','wp-content/plugins/wordfence/views/options/option-toggled-multiple.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\о6\\',_binary 'r\\nz\\\>g\i\\ru\u<\F','',0,'?'),(_binary '.麉D0uL-c','wp-content/plugins/wordfence/views/options/option-toggled-segmented.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\B\W#\#\',_binary '\^<4\\e,\\0\l\\\\r\!d','',0,'?'),(_binary '$%#\_U_d\','wp-content/plugins/wordfence/views/options/option-toggled-select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\|Cw@\\m',_binary '5ã\0ӊVbAŇ\\.Z;Mzq]','',0,'?'),(_binary '\rz\D\D\\','wp-content/plugins/wordfence/views/options/option-toggled-sub.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\m\\_\',_binary 'RȆF\nD\~H\08),:llWn\rc\','',0,'?'),(_binary 'D\T[\-\\U\\\','wp-content/plugins/wordfence/views/options/option-toggled-textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=\q(\\tݣ˻',_binary 'atÁ}(\0oß%\3\\\p\u~ĥ','',0,'?'),(_binary '*\	\ą\\\\\\\','wp-content/plugins/wordfence/views/options/option-toggled.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Du\nL\\E',_binary 'L8M\0=Y\kb\|59\b+\z:4','',0,'?'),(_binary '7ڔ!\2x%XN3','wp-content/plugins/wordfence/views/options/option-token.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xEJR`5\Z\C\n',_binary '\_NRϦg\Nr\{oXӮ','',0,'?'),(_binary '\몳@\ =\y`','wp-content/plugins/wordfence/views/options/options-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ۘ\\\j玓݆E',_binary '\Kxf\+eǖ٭ʌ\m','',0,'?'),(_binary 'T??:q׮P\\ah\'','wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AN\X[`h\0\',_binary '\"xIB6E?\\\\i\'26\5y/','',0,'?'),(_binary 'Nd#R+r\0s[','wp-content/plugins/wordfence/views/reports/activity-report.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?ue\wD:E\',_binary '\\ζ\Z\\)v\vG\,\h/ӈ','',0,'?'),(_binary 'p{\r \%>/Z\:','wp-content/plugins/wordfence/views/scanner/issue-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm|\&vfƲ~',_binary '\i\"\m$\PyM\\\\d	S\','',0,'?'),(_binary 'ܑK\ݓ\\\%eP^U','wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g}\hk9\yb(W',_binary '\\ZDQ\^\\\9;\7v\F\','',0,'?'),(_binary '%|ݽ>?v{j\','wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\=\l\\	2\X',_binary '״0\\M\"r,_\Ǝ>)G\\\wg?','',0,'?'),(_binary 'ep\r}\u_4\','wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Щ3^7DPk@c_l',_binary 'e\נc\10F\\^\b\B\Q@Bu','',0,'?'),(_binary 'D\\\u\r\ɲ\Z','wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aի\\ Lqw\	',_binary 'r_iQ\	a\R\\+\\\','',0,'?'),(_binary '\\c\G(`E','wp-content/plugins/wordfence/views/scanner/issue-configReadable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"Xjozo\\\Y\',_binary '\{\gk{aK\\\*\\W\\ׅ\$ף','',0,'?'),(_binary '$\\|c\ \\~\','wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\^>5pa\W\>',_binary '\\\\\DC\\XG4WFP#\NS\Z','',0,'?'),(_binary '\SHLenP\q7č','wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\`\j|y',_binary 'iOGiF|48\V\\j\\n#V-L','',0,'?'),(_binary 'ΦHc\^\)','wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\'\{=ͺ',_binary '\R\\_fW{*3\\\ݔ	\"\/','',0,'?'),(_binary '(dwI\0:\r\\Xx1DC','wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\\[A.F3D\',_binary '@ړV\C\+\<!;@89\(\n=G','',0,'?'),(_binary '\'@S \\D\','wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U?\q>@\\p',_binary '\0{aq\(w\!Iz\}+lx/I09|1%','',0,'?'),(_binary ')\6#_\\̟SAF','wp-content/plugins/wordfence/views/scanner/issue-control-repair.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9gs \`V\',_binary '\j(\ؠ\r	緪\U+\\\.\d','',0,'?'),(_binary '\u78¸\KԊkh\','wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\tJֶDܒ+C',_binary '\\\"uugI$ED=\\\nQg-\TZ','',0,'?'),(_binary 'e\\\Xǌ.\\\(&d','wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '推c@g\\\h',_binary 'ɿT>\Efg\\K\ r\\)','',0,'?'),(_binary '/\0)\Z\','wp-content/plugins/wordfence/views/scanner/issue-database.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\>Z\\\\G\',_binary '\\n#Pw3Id\\}͇%\J\\\jU\+','',0,'?'),(_binary 'Xɘy_\7XN/','wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\h\\\'\n䷺',_binary ' 7\\RG\$/\\-i\Nm(\W\;̅','',0,'?'),(_binary '4\n	m]ĿЊ\','wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\\{\\\ d\\\\`',_binary '\\ǿ\'\ɜLҪB>\\	&-{','',0,'?'),(_binary '\VtS-\','wp-content/plugins/wordfence/views/scanner/issue-file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KW?~\\rc\\H',_binary 'i%>\\\6L\\{8\y\ZAH\','',0,'?'),(_binary ';fJ1˘+C','wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\n\\+ծ.jqAZ',_binary '\0\I36ěnj7jk:\\','',0,'?'),(_binary 'B\Q\aU%','wp-content/plugins/wordfence/views/scanner/issue-knownfile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȒSd\9Q!\Zp\3',_binary '\.:\\\2KS1vGHV','',0,'?'),(_binary 'we\\i!<sy\n','wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h8FK3Eqs\',_binary '\0TE\Va~\'55h4o՞{Mɱ\\\'','',0,'?'),(_binary '\㱛 V9{\\b','wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\Jnw\\8z2\swa',_binary 'u<O\8Be\'Ob\0yPJ\x7\\I\','',0,'?'),(_binary '\\!<\\B4\ZS}','wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\le\@1\-',_binary '+	[P\ri-\\b0m\ƥM\"#@','',0,'?'),(_binary '\\n\#T\?׻\\','wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2WL\;m06',_binary '\Є<EHm`^\w\I\b\\M\','',0,'?'),(_binary '\H %9\\\lԅE','wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\|JS\\\',_binary 'i\\\JkF\\t\\\\0x\\Re\he&j','',0,'?'),(_binary 'n[	X}\0','wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LL#\\\0uD,\Yi]',_binary '~^\\\ٴ\	d\i*\\W\\<6\\','',0,'?'),(_binary '$7y\\]\\\N','wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F\\\Y`8\',_binary '^zy{b.n&o@\{\<,$\}\','',0,'?'),(_binary '$\SCk\\d\W','wp-content/plugins/wordfence/views/scanner/issue-timelimit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\\\"V%		|',_binary '\X>\\[6_\\\\a3\\\s\V','',0,'?'),(_binary 'd\0ٷ\Z\\\\\Ԍn','wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0<N5Җo\\\uM',_binary 'p\\"\r<\P13rz\\\=\\\\Ɠ]','',0,'?'),(_binary '\\\"LJ1\C4ND\','wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pD*\L}',_binary '\\fƾߜ=i\\s8\Z}\','',0,'?'),(_binary '=\F\혣Æ\K&','wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0Ko8E2\',_binary '(\~SS\Z[5E!nBj\D ','',0,'?'),(_binary '\,\r\	\g\H\6','wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\H\v\',_binary 't	Nɼ!\'W\\`1\11\\኿!\','',0,'?'),(_binary '\;NQ>\\\','wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5>\\Z\!\̄\\',_binary '\"`\n2Zgo\j1\p\hG)M\OYa\rci@G','',0,'?'),(_binary '\rJ<p>\\Z','wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Q\\l~\!',_binary 'tRS)\z\\{ӑ(\Wd\\9cKF','',0,'?'),(_binary '|\T]:Y$=\'h','wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\\4\oV\'',_binary 'D?#}$e\w2\6#\\0M\Ë\RSL\','',0,'?'),(_binary '\\\L.dDv\','wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\\aH{ڶER\N',_binary 'տ\\\\o\Z^JU\B\l\5\\\n','',0,'?'),(_binary '\ma\vMvK\\Z','wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n-ɞ3Z2>\',_binary 'z\ri\\'\\\rjL\㤑\4!U\\','',0,'?'),(_binary 'zh9\\ꈦ\\Xp+','wp-content/plugins/wordfence/views/scanner/no-issues.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xt-|F\\\\e',_binary '\\_?7\\\c\:_\@\E\Js[','',0,'?'),(_binary '\\\C.yj\0o\*f','wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\Z3`fі{_zq',_binary ' .IET\أJ#\J\Uk\7hy\\\0','',0,'?'),(_binary 's\AsYD]','wp-content/plugins/wordfence/views/scanner/options-group-advanced.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P\\Co\\>~',_binary '#~6˞45\\LW\\V^','',0,'?'),(_binary 'e}0wTnv_\g~','wp-content/plugins/wordfence/views/scanner/options-group-basic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VEgO`#jV\4C|',_binary '\sc\	;*r3$X\\G8ͬRK\','',0,'?'),(_binary '\NTZto\r%F','wp-content/plugins/wordfence/views/scanner/options-group-general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tL\Ga\0\oҠbY',_binary '26l\n\r\\\" c:\ƅz\v\J1ܶ\\','',0,'?'),(_binary ' ń1r}mJGW\R\','wp-content/plugins/wordfence/views/scanner/options-group-performance.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\P=\PҤ\\ ',_binary '\-9\0t\\D\\69s]\\e\0Rr\','',0,'?'),(_binary 'lxy\Z\\\\"','wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EU.7\\\H>i\;\',_binary '\,\\+x>\\ V7rLKs&G\','',0,'?'),(_binary '<3\v&F','wp-content/plugins/wordfence/views/scanner/scan-failed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ŝ*\7\\P	rx',_binary 'ôp`)28$iw6\J\g\jnDj','',0,'?'),(_binary 'հ	̋\Ȳ\S','wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q*ZZ\sq\\A}p',_binary '?L\0e}\\\z4t,\N)^\Q\\\À۲','',0,'?'),(_binary '|]D\\\Z.E','wp-content/plugins/wordfence/views/scanner/scan-progress-element.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dꫯy\5\pc',_binary '0(5D=U\Ԕ~\\ڈI\")\7h','',0,'?'),(_binary '\pխ^\@#\Ԓ','wp-content/plugins/wordfence/views/scanner/scan-progress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b1{\	@\m90',_binary '\K\M$\)+SCQF1qZ\Tv`\r','',0,'?'),(_binary '\'\_iYm1R','wp-content/plugins/wordfence/views/scanner/scan-results.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qxM!\\nB+=L\',_binary ';Oҥv\\\̉\	\\\\n\','',0,'?'),(_binary '\\4\\\$ꎪ','wp-content/plugins/wordfence/views/scanner/scan-scheduling.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&JHN\\ԑ',_binary 'rh,ИQ\U\\2 V\J\6}N\'3\iuK','',0,'?'),(_binary 'F_q\\CF!o4p','wp-content/plugins/wordfence/views/scanner/scan-starter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\\xh3\\',_binary '\U\~AVkr\%Rx$pZ1\"\U','',0,'?'),(_binary 'D!VD+\\\','wp-content/plugins/wordfence/views/scanner/scan-type.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NV\	9\J',_binary 'փ\\hbf\#\\Ђ\OE\\R\\9H\r','',0,'?'),(_binary 'KKOfSdiB0Ov\\','wp-content/plugins/wordfence/views/scanner/scanner-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\v\\t\',_binary '\\9\\`N>ɞ\9:A\\\\0\L','',0,'?'),(_binary '\9\~\0{@\\\','wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®\uM\',_binary 'JEzٙ6\)P)\\\0\','',0,'?'),(_binary '&#\pJh\','wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J&|\ɦ\\\{\',_binary '\7\\rO!6\k-ڥv,f;oJ[\','',0,'?'),(_binary 'o}\C܊8\E\G\','wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E8\\u\ChG<\o܅\"',_binary 'TQ\\t\\ݓz\ωT0\\A','',0,'?'),(_binary 'Ŋ\6\@\L(`\\','wp-content/plugins/wordfence/views/scanner/site-cleaning.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\!ߴ_&xhG',_binary 'lt!o\VL\`͂eܶ\<`\','',0,'?'),(_binary 'm\ñ~\\R?','wp-content/plugins/wordfence/views/tools/options-group-2fa.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\\\n2\0\\\0',_binary 'aG\ִ\nOk&1\`3*ҿf\\_W\','',0,'?'),(_binary '\j\\5\f\j','wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\L|y+5*\M\0Qk',_binary '\O\q\\Fri\e\+K	/;C','',0,'?'),(_binary '/=\+HhE\\14\ʆ','wp-content/plugins/wordfence/views/tours/login-security.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Pɖ\3Tر#',_binary '>㈳ec\¯f4s\78\#G`x0','',0,'?'),(_binary 'V#7A@\?\)','wp-content/plugins/wordfence/views/unsupported-php/admin-message.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(`\HMDA7\9',_binary 'y\\I~	@VY247&\U\uމ\','',0,'?'),(_binary '<YD\-A\\'\|)\\\','wp-content/plugins/wordfence/views/user/disabled-application-passwords.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%t\Z)\♟\\V',_binary '\G͌\rA{\\r`\rY\\}~h\Jd','',0,'?'),(_binary '֋\8[0ʊ','wp-content/plugins/wordfence/views/waf/debug.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\Nz\\	ܿ',_binary 'ŗ5bDG!\\\{t*\"\y','',0,'?'),(_binary '\y\66l\MC','wp-content/plugins/wordfence/views/waf/firewall-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\S\4,=tP',_binary '\\-.\\zo֑ʈg\mPP\R.\$\','',0,'?'),(_binary '\÷g$\\M\s\','wp-content/plugins/wordfence/views/waf/option-rate-limit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E,bٿʊNE\\',_binary '|J\\\Z^(\׌xDsX\\8\\?\R','',0,'?'),(_binary '@\\Z!zr\\\W\p','wp-content/plugins/wordfence/views/waf/option-rules.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)\0Q\N\#$|\',_binary 'tϷ\0\re(x\T\n\_CQ\=\K2UC','',0,'?'),(_binary '2X69G3\\Z\+}A6','wp-content/plugins/wordfence/views/waf/option-whitelist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\ #\v}',_binary 'i$h}\ws\\\\X2c','',0,'?'),(_binary 'zɐ@\/\/@','wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\58OO}\\s',_binary '$9dS>;\:\n\\ad_X\[F','',0,'?'),(_binary '\[\\\Ӄ\2W','wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[><\r\w\\wɴ',_binary '\T;\F\\\\5@>X\s\F\#&\$','',0,'?'),(_binary 'K<H<7\E,l\\','wp-content/plugins/wordfence/views/waf/options-group-brute-force.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',p\k<\#Y',_binary 'Qx\bnbWK\\\\E*lo\\ޅ\\ʛ\','',0,'?'),(_binary '!y\\'U\b\\#}','wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zY\\衆:Lk',_binary '3`R<!\\0)B\W\gH\Z\','',0,'?'),(_binary 'gs\\)m\%','wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\`rll3@ޠ!s',_binary 'F+RZςeQ$ep\G%Ev\-\xE','',0,'?'),(_binary 'nAj+uVG7d','wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nR1\՞\\nixBi',_binary '\S\⃧\\=ȌbjK\\\i$\\y','',0,'?'),(_binary '=	]\}\*<.','wp-content/plugins/wordfence/views/waf/waf-install-manual.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pmQynRPqؙ',_binary 'l,\\\d.\"\bִ\lz\w\\\E','',0,'?'),(_binary '\\H:u3\%Fw','wp-content/plugins/wordfence/views/waf/waf-install-success.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't2\H\$\\n\',_binary '5(\/PhJS\Z\"&]}\rIp(\-t\\','',0,'?'),(_binary 'Z\\Dl=컫','wp-content/plugins/wordfence/views/waf/waf-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']oFoO\"IR\',_binary 'L\H?-Z(G	\ILL\Dν\Z\۲|','',0,'?'),(_binary 'u\[\\\D','wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#g\x\@\o\TM',_binary '\\\ee\6s\--I$\Q\¼@ٍy\','',0,'?'),(_binary 'p:,`OlL(\A','wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k~\H\7<B\\',_binary '\0!F\E\KP7߻0\\\n;6}\$','',0,'?'),(_binary 'A\o\r\ZԔ_t','wp-content/plugins/wordfence/views/waf/waf-uninstall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '񘅊89a',_binary 'svZ\\\kr\r\\܈D:auu\\','',0,'?'),(_binary 'YJ\|\\[D\yY','wp-content/plugins/wordfence/waf/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\"xK\\{\8\dS',_binary 'C\\'r9\@\Kކt\\w#@k','',0,'?'),(_binary '\H\a+\̰I','wp-content/plugins/wordfence/waf/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\r\ئ8W\',_binary 'gʌ\pqnv<]\\\\IAHȈ','',0,'?'),(_binary '\obBr\j3#\r','wp-content/plugins/wordfence/waf/pomo/entry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';²iGQA\\w',_binary '79]#/\\rbCte\\c\ߏP','',0,'?'),(_binary 'R	(,	!)\Z','wp-content/plugins/wordfence/waf/pomo/mo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D6\~.\\S\[',_binary '\\\\'\_F\u\C)CR\"(CO\YW\!\)','',0,'?'),(_binary '\*\'Kj̰!c','wp-content/plugins/wordfence/waf/pomo/plural-forms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P!7G\Ǌq`.',_binary '.\n)[.\\cf\r\rF\Zk\','',0,'?'),(_binary 'Bϵ\\H@x/','wp-content/plugins/wordfence/waf/pomo/po.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vc+p*\\"G?\B',_binary 'MO(\\ G\rkHԽeq\\	\ǈF\o\O\-','',0,'?'),(_binary 'P\/:\\̮҉\H','wp-content/plugins/wordfence/waf/pomo/streams.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'З:4z\M\E\7\',_binary '\!8\\s\w\#)\\r\<r|2y*LS^','',0,'?'),(_binary 'f(9\\6yaN|2','wp-content/plugins/wordfence/waf/pomo/translations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z^:@JKL\S',_binary '\rH\\n`>--\\Tr\\\7,\','',0,'?'),(_binary 'X\\\\shv]\iB','wp-content/plugins/wordfence/waf/wfWAFGeoIP2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '݇(0,m\G_Y3',_binary '^)oBfg\*\VP?~\\u:','',0,'?'),(_binary '\0\D`8R\ɲ%','wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}\\`i\\y\\',_binary '\\\Tܯ\19^ջP\'Ld%\k|\P؞','',0,'?'),(_binary '%\7\\娳\','wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yFH\\'\'n\\ގ',_binary 'KD[Rஞ\ \5:grP7*X\Z','',0,'?'),(_binary 'E#\\\-v37\6\Ť','wp-content/plugins/wordfence/wordfence.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':9\\}\@W\\\͹',_binary '&\\$\T`&T\{,\g\!z>5q߶.,9s','',0,'?'),(_binary '\Ϫ[{d`\!','wp-content/plugins/wp-author-date-and-meta-remover/css/entrymetastyle.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)\P!QeS\#\\%',_binary '|\ްFC\QuPvHvCu\\\o\!\޽','',0,'?'),(_binary '(g6F:\y\X\G\','wp-content/plugins/wp-author-date-and-meta-remover/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	z\\ȵϊ\\\rA',_binary 'NF\tjr\3HI\i$\`k-h^8O','',0,'?'),(_binary '\r^\\C`5eJ6\','wp-content/plugins/wp-author-date-and-meta-remover/wp-author-date-and-meta-remover.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ES\?\\da',_binary '2^\N^\\d\ \m\\%\l@.\rǜ	','',0,'?'),(_binary '%\vZ5ҹZ7ե\','wp-content/plugins/wp-editor/classes/WPEditor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4¸,Wc<h\t',_binary 'řz@=[\YhȾFto\\"\0\:\','',0,'?'),(_binary '\(\vK\ƫ','wp-content/plugins/wp-editor/classes/WPEditorAdmin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U+\RL\\n;HW\\',_binary ' {?ݴ\ڨ^|\Q\w\\z8;\(\4','',0,'?'),(_binary '\Z|\n»Dޓ=V','wp-content/plugins/wp-editor/classes/WPEditorAjax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\k*]S\k',_binary '_\>~\r>v5p\V,U \\','',0,'?'),(_binary 'e\:\&\\\\0','wp-content/plugins/wp-editor/classes/WPEditorBrowser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',(Ɨ\\\Z_\'=',_binary 'F\+EM3/4\흋\X\Ι','',0,'?'),(_binary '\\+\T5=\e\a\','wp-content/plugins/wp-editor/classes/WPEditorException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\aֱ\Sݨ\\:	',_binary '}xxe}Ƕ16L T\T\i3\"T\\','',0,'?'),(_binary '\\e\W\H\LK+}կ','wp-content/plugins/wp-editor/classes/WPEditorLog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\l\5k\y8t',_binary '\nXXq[6C|\q_{,,?\\?\H','',0,'?'),(_binary '#\vr\\\\C)\','wp-content/plugins/wp-editor/classes/WPEditorPlugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4w\\!{\\\r$\',_binary 'mt\3\0`\@\&Eً)46O\\k/\ī','',0,'?'),(_binary 'O\ĵ\(','wp-content/plugins/wp-editor/classes/WPEditorPosts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\1L\\\n\ZX\`',_binary '\\a\0\/PgT\x0L͕@\\øok\\r','',0,'?'),(_binary 'uI\\/\8.\]','wp-content/plugins/wp-editor/classes/WPEditorSetting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\$\*\l',_binary '\O[\\pG,j\m\b̉p','',0,'?'),(_binary 'G9cG\ŕ;\Ԕ\','wp-content/plugins/wp-editor/classes/WPEditorThemes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\uL\9\\\f\\z',_binary 'gEGduY`N\zGЅG2\Y\"\','',0,'?'),(_binary 'Pd\\s\\Դz','wp-content/plugins/wp-editor/extensions/attrchange/attrchange.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\L?|F\1\',_binary 'hkw*\\M\\\\`kǊ).\\','',0,'?'),(_binary ',.\h=N\K\6`L\\','wp-content/plugins/wp-editor/extensions/chosen/css/chosen-sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\"\+\\\6\ח',_binary 'Sk 1Q:\\\adDQT\IBx1F`IQ{','',0,'?'),(_binary '|p\U]\ ','wp-content/plugins/wp-editor/extensions/chosen/css/chosen-sprite@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aOamMSg\hP\\5',_binary '\\(\\\n\k:J!X\X<RЈj4','',0,'?'),(_binary 'v\\\%\\','wp-content/plugins/wp-editor/extensions/chosen/css/chosen.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\\\Iw\+\\',_binary '\-o\t͘}r3F\MMmi\"\}M','',0,'?'),(_binary '\\CKǄg\7mxQ','wp-content/plugins/wp-editor/extensions/chosen/js/chosen.jquery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'We]V\Ց5',_binary '\6~\\\\\L@6\U$\6\0','',0,'?'),(_binary '\\\x\pa','wp-content/plugins/wp-editor/extensions/codemirror/css/codemirror.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1	\\F\ZA\\u',_binary '~\\\"B\\LǦȄ\06\Lx \ntp\\','',0,'?'),(_binary '\wq9\Qi=\','wp-content/plugins/wp-editor/extensions/codemirror/css/dialog.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f_?2\=RY',_binary '\n3=q\]p\\qïf!Q-aܞ\','',0,'?'),(_binary '&U)4G\R/\ky\','wp-content/plugins/wp-editor/extensions/codemirror/css/fullscreen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4\w\\gG4\',_binary '\\7G	O\K\'R*\)N\it','',0,'?'),(_binary '\Ip_z5x/\','wp-content/plugins/wp-editor/extensions/codemirror/js/clike.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l\n^\V㹾ܘ1-\',_binary '/\\\5\v?ypuѶ\\ɹ\\kъ&\W*7','',0,'?'),(_binary '|Q\Mv\xHar','wp-content/plugins/wp-editor/extensions/codemirror/js/codemirror.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÞYt*sE\\',_binary 'n	\i\J:_T7`Hy;/=\nʪ\V\ZF\','',0,'?'),(_binary '\jw\Ze]\;\\\','wp-content/plugins/wp-editor/extensions/codemirror/js/css.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NnLN\\BU',_binary '9\9#m\xo\l\\k	D̴\','',0,'?'),(_binary ',X\\Z7\:','wp-content/plugins/wp-editor/extensions/codemirror/js/dialog.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\'ی\wU,\',_binary '\0\9׬J\19\یa!9\\RzT^+썡\phj','',0,'?'),(_binary 'b>:Nv\oA\\\;','wp-content/plugins/wp-editor/extensions/codemirror/js/foldcode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=\LMI\'N',_binary '?~T\\"49K\8գJ','',0,'?'),(_binary 'ra\,)\FÔGL\\','wp-content/plugins/wp-editor/extensions/codemirror/js/fullscreen.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\:I\ZFXr',_binary 'ax\Ŵ)lLmݵ\\B\o*\8','',0,'?'),(_binary 'j\Fs\x)\?\','wp-content/plugins/wp-editor/extensions/codemirror/js/htmlembedded.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\<$.\\B!',_binary 'Q/:(r{u\\\\0\\kwVn\dT\\PJX','',0,'?'),(_binary '\'m,}e\]\ˈ+','wp-content/plugins/wp-editor/extensions/codemirror/js/htmlmixed.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_F\@ľĔ',_binary '\U\sW\Ұ_\P7+*MT.&\Q','',0,'?'),(_binary '3*6\S[\0\PC','wp-content/plugins/wp-editor/extensions/codemirror/js/javascript.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$0-\b\\-$X',_binary 'b\\ْޘ`+;\\Zz܇#(ʋ\0!7-','',0,'?'),(_binary 'jp-\W\;\a\\'̸s','wp-content/plugins/wp-editor/extensions/codemirror/js/mustache.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c[\Z\\\\N\5',_binary '{Z\i\\\	\BNAn1xv;H','',0,'?'),(_binary '\\\\\\0u72W^\d','wp-content/plugins/wp-editor/extensions/codemirror/js/php.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"X}7dh\',_binary '\~ӷǁF*/E\LRPSzG\D\\','',0,'?'),(_binary 'z\r̚z1@_c>yI\','wp-content/plugins/wp-editor/extensions/codemirror/js/search.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\e\6Q\',_binary 'Ku\4\B\3\\q\\\\\\\\\rV','',0,'?'),(_binary '\+y1&\TlA','wp-content/plugins/wp-editor/extensions/codemirror/js/searchcursor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.\\o\G`\',_binary 'M430+?\ŎkV.aˀ<\n\N\!','',0,'?'),(_binary '\\Zn2h2\V\\'\P\','wp-content/plugins/wp-editor/extensions/codemirror/js/xml.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\y	8p95DH\\%',_binary 'Ԇ->\揘wF!\p\n|G\.\a+NR','',0,'?'),(_binary '\\QJ\\\}\\','wp-content/plugins/wp-editor/extensions/codemirror/theme/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+\-\\MTV\\',_binary 'Ҕ\yb~!?6_\q\-}P)N','',0,'?'),(_binary 'v92\8 1','wp-content/plugins/wp-editor/extensions/codemirror/themes/themes.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ny>>\1jkY\\',_binary 'am4OJ\\r(\\vHL\Ϙñ','',0,'?'),(_binary 'BI\됾\0h͋\','wp-content/plugins/wp-editor/extensions/fancybox/images/blank.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Tr`q\\t\h\5',_binary 'D.;ܯf\XǫE\&\cP)','',0,'?'),(_binary '|\\Z:\\*O|$','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_close.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n(y$nr\ɂ\\',_binary 'ы\\i\\\K@[c\\S@[S?z','',0,'?'),(_binary 'f)\0m7p9','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_loading.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L$\nA\r\i8',_binary '+\|ψTK\q+\mk+Ӫocg','',0,'?'),(_binary '\e\nc\Lkl\[\-\','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_nav_left.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?>@a,\#cV@5',_binary 'Z\Ӥth11(Mb\0¥<O\0\\','',0,'?'),(_binary '\ͮB|~>\t\','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_nav_right.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!nK\[\\`\=i(',_binary 'G\Z?E\=E	;C\'@\q䇢T\\\','',0,'?'),(_binary 'V#BU\\$','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_e.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OIҟ\w\L',_binary '\\=gD!\\|J\Hwe[\\}ѝ.j\','',0,'?'),(_binary ')\:󊰉O','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_n.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\cyέ\qM4m	\',_binary 'pQ}J\n\\\"j\\[6h|\W','',0,'?'),(_binary 't\r\)\>G!:\ڊ','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_ne.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\\\\\d-}y1%',_binary ' dTd\\W\c\Q<\-Z\'F\C\ueς\','',0,'?'),(_binary '2\H;\\nke','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_nw.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \x\zq5|e',_binary 'QbV{\gVQ\\\h\Js\Z<K\\\\','',0,'?'),(_binary ',2jZ0\s\r$Otb','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_s.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\(\@[j6?)',_binary '\\\"X\\Qt1BU\`ZcD[{','',0,'?'),(_binary '=qa\OZ\\h','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_se.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ՠC\q-q&',_binary '\^V\BRXMӷ\\I\	%\r\\','',0,'?'),(_binary '\\i)s\~&','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_sw.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Xv<\\~~y',_binary 'py,dە\r*Ez\\0^s+u','',0,'?'),(_binary 'H\G\j\rU;Jj\','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_w.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\>Y卓,S\M\',_binary 'Tbwl\\۬:x/xia>Dk\','',0,'?'),(_binary '\ĸ\\\),5*6%NV','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_left.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-;\jdE\\\'A\',_binary '\_?~5\\@z\\З\צѦ\˘','',0,'?'),(_binary '!x[\\J\Z\Q̞M','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_main.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\\\K܁\!޸\',_binary 'S׫\-LuSYܬ\cyHo\Hs4\Ɠ','',0,'?'),(_binary 'v\r4\\G-h\uOe','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_over.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']Kz\}AR\`',_binary '*\9&	)	7dwI1*z\n\YZ','',0,'?'),(_binary 'o\G\og]','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_right.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lU\U\\\js$\',_binary '\\\\\Tg\\'\~','',0,'?'),(_binary 'Q\1\\\aa\','wp-content/plugins/wp-editor/extensions/fancybox/images/fancybox-x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ئ!@\\)\\',_binary 'Ţ\Z;x\\\\\(7Iݿ!}e\@\"xSY','',0,'?'),(_binary '\|\'45]`\ay\r\','wp-content/plugins/wp-editor/extensions/fancybox/images/fancybox-y.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6Y\"tf\',_binary '\p0n1p4m	cQ\"\n(\y-\At','',0,'?'),(_binary '\\Zq`}f[\\\\','wp-content/plugins/wp-editor/extensions/fancybox/images/fancybox.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~I.\1@|ǡ\\\',_binary '4\\|};\~;άV\F\YӲ','',0,'?'),(_binary 'h(A\\Nzv\\','wp-content/plugins/wp-editor/extensions/fancybox/jquery.fancybox-1.3.4.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o:,5E\\8(8',_binary '\T5\L\?WF߸\^R䏟< \0','',0,'?'),(_binary '\E\\A#)#\5','wp-content/plugins/wp-editor/extensions/fancybox/js/jquery.fancybox-1.3.4.pack.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j\g7u(\bl\|',_binary '\\\#[D\\\n\".Mq4ݒP,\3Ii0','',0,'?'),(_binary '!\\ZQ\ѓ','wp-content/plugins/wp-editor/extensions/nivo-lightbox/css/nivo-lightbox.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g}J.\\q',_binary '\įOCQ\"#xT\\\ŕ݁\"}E+-vkF','',0,'?'),(_binary 'RT}iN(W;\','wp-content/plugins/wp-editor/extensions/nivo-lightbox/js/nivo-lightbox.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\@}Ń=\',_binary '+\\8\\'\1cR\u\\Iy\6','',0,'?'),(_binary '\\=\\c+s|^','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/close.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\v\SaÞa',_binary '\l\KYh\J_(,\cEL^#\\','',0,'?'),(_binary '\\\t\A5\\\s*\','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/close@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\FV\@u%\\$=H',_binary 'ww\h7\\\;u\21Q<1\/\0B2\\?D','',0,'?'),(_binary '\\\\r\\\g篱\','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/default.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Q\cc\'&',_binary '\rƦ24)8%\Q\\+_\%L\U\\','',0,'?'),(_binary '\\q\\jie\`\','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Tᠳ?nb,',_binary '\X\LHRݽ+\eo\\t\','',0,'?'),(_binary 'ߕXY\,YRO\','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/loading@2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\2b@\+ʫ\!',_binary '=\n!CO\N\-tX}h\rO\4LԼ','',0,'?'),(_binary '\\>\r^/ѢMcI','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/next.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Lf/\t:	\\\\',_binary '\0A\vv7\khnP\\|z>\`\\gO-','',0,'?'),(_binary '4\bP9\!\`\\','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/next@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A=\\n	삳6_',_binary '=\ hㅮ\:\0\t6%=\"v^*H9','',0,'?'),(_binary '\\>\Hn\Ot\Ȕ','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/prev.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\81JY]=',_binary '\Ғ\*\֮\Zg\\\7\}:f\','',0,'?'),(_binary '\lW\\!ĸJi7','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/prev@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\c,CI\g7o',_binary '0u\\4%\\&QV>\г0حc\Eeu','',0,'?'),(_binary 'N}JVr\\\g\\','wp-content/plugins/wp-editor/images/css.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W_\ns=P)',_binary '\,\\U7͗\\\}$D+w\\U\k','',0,'?'),(_binary '5W[w\rdJ','wp-content/plugins/wp-editor/images/folder.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_k\\d\咴\',_binary 'P\}H\c\x\\\\\{J\Y\ng\\̧','',0,'?'),(_binary 'T%\s/1Nbe7$@','wp-content/plugins/wp-editor/images/gif.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C*h\87h+,',_binary 'ɻP#\\z\ܐ\ :Hj)','',0,'?'),(_binary '\jd\|\\)E\/ ','wp-content/plugins/wp-editor/images/htm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bo\Lq5H\߱',_binary '\=n\b+\&{j7x\\y!+\','',0,'?'),(_binary '\};\rwr\\\\qw','wp-content/plugins/wp-editor/images/html.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y>\\\t\q\\t',_binary '6\u\\"-\rF	i\ؤ\Z3-\r3ɬ','',0,'?'),(_binary 'λرnºG8\\','wp-content/plugins/wp-editor/images/jpeg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r`M\ryU,\=9',_binary 'Bi\\Lo\\Mz2\k[9ԇTKL\K^{','',0,'?'),(_binary 'W\\\\\\_n\','wp-content/plugins/wp-editor/images/jpg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sK\xFpE\I',_binary '\"9\G@bqeںy\hé\\o-\rU#','',0,'?'),(_binary 'Z\LL\>\&qܶ','wp-content/plugins/wp-editor/images/js.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\{(\`T\sC',_binary '&\\F\GR|H=\&s\YEp\rtz','',0,'?'),(_binary '\\I\}GCs$\*g','wp-content/plugins/wp-editor/images/less.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cQ\"Ņ!\\:epNmc',_binary '\(\(l+\25v\\ӥ\쀁\l\','',0,'?'),(_binary 'z\}fkÒ','wp-content/plugins/wp-editor/images/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\\n07C\\\kFz',_binary 'U\Úyr\*\	\\\`\LnSW','',0,'?'),(_binary 'G\\\0͉]\','wp-content/plugins/wp-editor/images/php.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Q\\',_binary '\w;mK[):4\nS?F\>z\\\\','',0,'?'),(_binary '\\i\b%\\3\*gT\x','wp-content/plugins/wp-editor/images/png.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r!\\Ӑ\^7n<\0',_binary '?\毴Rb߫\\\۝\	[ʞ9c','',0,'?'),(_binary 'E\rI\#Az\?\m','wp-content/plugins/wp-editor/images/po.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lmBb-#h\1',_binary 'EeHPn^\mm^/e\\\','',0,'?'),(_binary 'zn\m\^u\"ϙ\','wp-content/plugins/wp-editor/images/pot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\5|\J\\\\4\',_binary 'b\\=b\iLd	M\\:\d\\\\\$\\%\','',0,'?'),(_binary 'R9\\r>\0\0\\[','wp-content/plugins/wp-editor/images/sql.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\EvvFY\',_binary 'ҳ ڒ:\\'NV[*\nn\	D\K\\`','',0,'?'),(_binary 'U\^+AB\nɰMAu','wp-content/plugins/wp-editor/images/txt.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\@t\C.V\\vg',_binary 'XZTQt̙\\gdzJ^\\y\Q4GP7','',0,'?'),(_binary 'b6\1\\'*\0V','wp-content/plugins/wp-editor/images/wpeditor_logo_16.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\#Apj3v',_binary 'UC\\\'\#\\(\\nE\,n\\Bs\BY','',0,'?'),(_binary '&x\6Kvs(d\\r','wp-content/plugins/wp-editor/images/wpeditor_logo_32.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\go,qF\nU\$\\',_binary 'a\"\\wtJe\r7Tt\'Tu00,p\','',0,'?'),(_binary 'Dó\\-}\\\\','wp-content/plugins/wp-editor/images/xml.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϐK\\\\\s{Z\',_binary '\\*\pא=cvW\?\\\\rLPuO\','',0,'?'),(_binary '7RE`4	','wp-content/plugins/wp-editor/images/xml.psd',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A7\\כs.',_binary 'uK\D\\ʍUHv\6\ڧ\`c\A-','',0,'?'),(_binary '\oR,gf15:\\R*\','wp-content/plugins/wp-editor/js/posts-jquery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\ɧ0\]\M[\',_binary '\mǭ+\\\\\\\z\8\\\va\','',0,'?'),(_binary '1Z\#\tCG$l','wp-content/plugins/wp-editor/js/quicktags.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\֣\G\pl\z\\',_binary '\\i\9\ސI	\DiЧ`_\','',0,'?'),(_binary '\\.\\r\\d[','wp-content/plugins/wp-editor/js/wpeditor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;\/n\\r',_binary '\0\3p\\V\Ĕ\@Rx#\Zkt=i^','',0,'?'),(_binary 'BaFh0ӘhG^m\','wp-content/plugins/wp-editor/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(\7\QM{|\D',_binary 'J\6\n5t\\\z)ϐ\Ձ>\'m\\','',0,'?'),(_binary 'e3LP1CI\/\\n','wp-content/plugins/wp-editor/screenshot-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\ea!F\nR%!\',_binary '\sNJ>Lu7\p\c%=\ﮱ','',0,'?'),(_binary 'hsf>\)\\"\ߠ#','wp-content/plugins/wp-editor/screenshot-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;\5|9xd\'\',_binary '^6I\#6x\\l޹\v\(@A','',0,'?'),(_binary 'cQ$z{ľͿ','wp-content/plugins/wp-editor/screenshot-3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\	\%zɳ]\Vٙ',_binary 'O\nP\\\ɥ>\'\KM\9\\P','',0,'?'),(_binary '~\Ԑ\)bD?\\\','wp-content/plugins/wp-editor/screenshot-4.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\a;+0\s	\rZ4',_binary 'º\N\m\Я\\|Z!j\','',0,'?'),(_binary '~\S2YW\nO','wp-content/plugins/wp-editor/screenshot-5.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`^\\\DZ3w\\\\}\',_binary 'ӻ|M0\qd@ԕ\"]l\\t+\\','',0,'?'),(_binary '9\u܈z]\#MC','wp-content/plugins/wp-editor/sql/database.sql',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\\\<q&\ʴ\,\\',_binary 'L\~\Ԟv\ъTBes\*\\\\','',0,'?'),(_binary 'Ӌ\ܣ\TD2m&٬U','wp-content/plugins/wp-editor/sql/uninstall.sql',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\{F\Z	t',_binary 'M	{\\ \i\N%T\e\]3۹9\\','',0,'?'),(_binary ',\<\VA\B!','wp-content/plugins/wp-editor/uninstall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7S\L\^\,\O\',_binary 'حZ\\\d\i/\o7rkF䣠\\\b','',0,'?'),(_binary '\q\Ɓ\+q3\7f\npj','wp-content/plugins/wp-editor/views/OLDsettings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J~\v\\xj\ ',_binary 'bsvѕՙRL0\\\o>#)\O\','',0,'?'),(_binary '.\H\8\Ø\'=\\','wp-content/plugins/wp-editor/views/plugin-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{ 8\'',_binary 'c\\EL\\\'I,6\\n>\g\5<6','',0,'?'),(_binary '?\TIh\`','wp-content/plugins/wp-editor/views/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_-1\\\;?D\n<',_binary ';\09Ƣ햻\pߜ\0!\v\`8+\\','',0,'?'),(_binary '\G\\\ߒ\;e','wp-content/plugins/wp-editor/views/theme-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\4g\\\M{e',_binary '\0K~H&\)\$Z(٭\N\]N1!','',0,'?'),(_binary 'ƹf\g4f1.UH','wp-content/plugins/wp-editor/wpeditor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z2\\\`s&\\',_binary '\\\\\mEI\f9\\釶\~','',0,'?'),(_binary '\\_:\\-º>/ r','wp-content/plugins/wp-editor/wpeditor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\l6',_binary ' \U\\\'ζ\	Y~\\K','',0,'?'),(_binary '\ 0\\\\\\','wp-content/themes/Divi/404.php',0,_binary '>\B\mv/a',_binary '>\B\mv/a',_binary 'W\\ҧw[V)hٛ\0\\a\','',0,'?'),(_binary '\n\%ABKK\1\{\ ','wp-content/themes/Divi/comments.php',0,_binary '\ܢ\0\06w',_binary '\ܢ\0\06w',_binary '\!\\ZVuA\\2{X^Vho','',0,'?'),(_binary 'q7]\zq%}','wp-content/themes/Divi/core/_et_core_version.php',0,_binary '\qC/N|0&4,.\',_binary '\qC/N|0&4,.\',_binary 'ox\89\n*\3\\51EKԯ\Gs','',0,'?'),(_binary 'W c\\&V\j܂\\','wp-content/themes/Divi/core/_metadata.php',0,_binary '-Wy\\:\'\L',_binary '-Wy\\:\'\L',_binary '\r\s3HM\Wg\\\\jڬVa','',0,'?'),(_binary 'd\.\CC\kf','wp-content/themes/Divi/core/admin/fonts/builder.svg',0,_binary 'rqY\\wMf\\Z',_binary 'rqY\\wMf\\Z',_binary 'U\X\{_m\\\j|T;L/@ z=','',0,'?'),(_binary 'T\\>Uolr\\w','wp-content/themes/Divi/core/admin/fonts/modules.svg',0,_binary '\e\%oP\\\\\0',_binary '\e\%oP\\\\\0',_binary '̄Sp+\\n\\\;ԭ$[?i1,oY\','',0,'?'),(_binary ',ؾ:jaRgܟU','wp-content/themes/Divi/core/admin/js/common.js',0,_binary 'Mr\32\Zu _',_binary 'Mr\32\Zu _',_binary '\\'\x\o\\q\/@\\P9\ `y','',0,'?'),(_binary '>;\-Mo\+vR','wp-content/themes/Divi/core/admin/js/core.js',0,_binary 'mf\g[oL4\\\',_binary 'mf\g[oL4\\\',_binary '\ӡ3qbq\\\T\\rKm\-Y','',0,'?'),(_binary '{\/\r+\]\!UϜ#','wp-content/themes/Divi/core/admin/js/page-resource-fallback.js',0,_binary 'VOWγ\#\\qiJ',_binary 'VOWγ\#\\qiJ',_binary '7P\r\}t\ w`&\ە\0{A','',0,'?'),(_binary 'f_R \o\24','wp-content/themes/Divi/core/admin/js/page-resource-fallback.min.js',0,_binary '\9ըtrp\',_binary '\9ըtrp\',_binary '͕\LGI9\X\wa?\T<\1i','',0,'?'),(_binary '\0\'a\\s5','wp-content/themes/Divi/core/admin/js/portability.js',0,_binary 'f=L\D4<`Q',_binary 'f=L\D4<`Q',_binary '诽\|L\@*K\vәR]W<\:d\˂m','',0,'?'),(_binary '#?\/\\+]\','wp-content/themes/Divi/core/components/Cache.php',0,_binary '\\cJ\O\-\\^ۨ-',_binary '\\cJ\O\-\\^ۨ-',_binary '\	D\\!N\p\Fc$:LP>\\\\','',0,'?'),(_binary '\tC\`aJh\\l0\N','wp-content/themes/Divi/core/components/HTTPInterface.php',0,_binary '.E4I$M,$[',_binary '.E4I$M,$[',_binary ' ΒpFXqSډ\@#\iARq\v','',0,'?'),(_binary 's\,vL\\p\\r\X','wp-content/themes/Divi/core/components/Logger.php',0,_binary 'g8\.\Zo\6_4',_binary 'g8\.\Zo\6_4',_binary '1\B[\W\M\9C|a\ݧF','',0,'?'),(_binary 'e\~TaA\q','wp-content/themes/Divi/core/components/PageResource.php',0,_binary '~a;q	ib)',_binary '~a;q	ib)',_binary 'UMs\\\\CZ\0*֐o\\"\f','',0,'?'),(_binary '\\\qT:j7','wp-content/themes/Divi/core/components/Portability.php',0,_binary 'FIѡiXt0WW0',_binary 'FIѡiXt0WW0',_binary 'W\\Vn\}%\\\e\13r\n\5','',0,'?'),(_binary 'ZoAW/<\Eg','wp-content/themes/Divi/core/components/Updates.php',0,_binary '11g\\\e\\;',_binary '11g\\\e\\;',_binary '\H\N\Z\m\)m\0r\ƃǄUQ\\-','',0,'?'),(_binary '\ͺZvߕ\ࠬ9','wp-content/themes/Divi/core/components/api/OAuthHelper.php',0,_binary 'DX[,\y\ɰQ\',_binary 'DX[,\y\ɰQ\',_binary '\˛\\*7\\D_\Ryj@Z\\','',0,'?'),(_binary 'WY5ͭ]\\.\r\','wp-content/themes/Divi/core/components/api/Service.php',0,_binary 'z\K6\$b㜉',_binary 'z\K6\$b㜉',_binary 'r;\!?]\"Mmm+ӆ$rw30i\w','',0,'?'),(_binary 'M\\8}:ļ7d','wp-content/themes/Divi/core/components/api/email/ActiveCampaign.php',0,_binary '\\\\_<L\\h\ѕ׉',_binary '\\\\_<L\\h\ѕ׉',_binary '\Ul\\\\jS\PG2?\yJ()','',0,'?'),(_binary '\ğC\x<','wp-content/themes/Divi/core/components/api/email/Aweber.php',0,_binary '\9\/g@\"S\',_binary '\9\/g@\"S\',_binary '>˨\kK·>U\\8\\\Y\\z\Fδ&','',0,'?'),(_binary '8#1\\\-\','wp-content/themes/Divi/core/components/api/email/CampaignMonitor.php',0,_binary ']<8\\c\',_binary ']<8\\c\',_binary 'yPeN\\C^o$R!w\4ޭ\8\V','',0,'?'),(_binary '@)T9\+|\PI\4','wp-content/themes/Divi/core/components/api/email/ConstantContact.php',0,_binary 'a\'\\#:M>\?\0I\',_binary 'a\'\\#:M>\?\0I\',_binary '@#\+ېk\WEŚ0\ 8','',0,'?'),(_binary 'O]\Q_a','wp-content/themes/Divi/core/components/api/email/ConvertKit.php',0,_binary 'l1@\p@YV\\r5',_binary 'l1@\p@YV\\r5',_binary '\r\\*y\\rw&wy9I<D\ޢ7䰋','',0,'?'),(_binary '\瞌\<\\GZ\'','wp-content/themes/Divi/core/components/api/email/Emma.php',0,_binary 'Qm.?A\\\n\r\cx',_binary 'Qm.?A\\\n\r\cx',_binary 'ʘ\w)\\/Yj%\/JݐT:\{\','',0,'?'),(_binary 'b_-YJ\\7Jk','wp-content/themes/Divi/core/components/api/email/Feedblitz.php',0,_binary 'tV\\jEb\0Z3b\*',_binary 'tV\\jEb\0Z3b\*',_binary '+W\\F\0\'p\V:\G\(X\z\"z\K\n\','',0,'?'),(_binary 'R/\\϶\\\\B\ӣ\n','wp-content/themes/Divi/core/components/api/email/GetResponse.php',0,_binary '\/F\V\\`-v-~',_binary '\/F\V\\`-v-~',_binary 'x#$,iz+6,h]897\\\Z3','',0,'?'),(_binary 'c \?Ϯ~]\\\ٵ','wp-content/themes/Divi/core/components/api/email/HubSpot.php',0,_binary '-<\\NTJBr\',_binary '-<\\NTJBr\',_binary '?\\edhtWN\/\Z{b43/\*}2v,9\','',0,'?'),(_binary '\T_v\\\\\','wp-content/themes/Divi/core/components/api/email/Infusionsoft.php',0,_binary 'F\'#I\n\',_binary 'F\'#I\n\',_binary '\\XU\V~4h\\'\\\J\'c\','',0,'?'),(_binary 'b{a\[Yc#:[\}\','wp-content/themes/Divi/core/components/api/email/MadMimi.php',0,_binary '!\=A\?\',_binary '!\=A\?\',_binary '\\ɘĳ\AX\\d9\`\@]\y<\O','',0,'?'),(_binary 'wEn\\q','wp-content/themes/Divi/core/components/api/email/MailChimp.php',0,_binary 'nv(#\\--#?',_binary 'nv(#\\--#?',_binary '\\\.@+@\W\x\"$\\n\L\0\\\}2M','',0,'?'),(_binary '\jI0\dcU\Rڞ','wp-content/themes/Divi/core/components/api/email/MailPoet.php',0,_binary '\Zw[s؞\g\l펝',_binary '\Zw[s؞\g\l펝',_binary '!aKj\\\\@s\AMo6\AXW','',0,'?'),(_binary '^\]G\\p=x','wp-content/themes/Divi/core/components/api/email/MailerLite.php',0,_binary 't;4%M\0\_l ',_binary 't;4%M\0\_l ',_binary 'r\3\nj]\6\+\U8\\U)D	c','',0,'?'),(_binary '{\\b\\\|\G$\','wp-content/themes/Divi/core/components/api/email/Mailster.php',0,_binary 'AI׆\q\n\\md',_binary 'AI׆\q\n\\md',_binary 'JVAJ`\D@X\<J\z\J-*?[','',0,'?'),(_binary '\\#q\[\K\=','wp-content/themes/Divi/core/components/api/email/Ontraport.php',0,_binary 'A=6g7PT\2#s',_binary 'A=6g7PT\2#s',_binary '`\TRJ\Q\\\ދ)s32Ȼ\\t\\5b','',0,'?'),(_binary '3\0<\'\\0\еZ\k','wp-content/themes/Divi/core/components/api/email/Provider.php',0,_binary '\\"g/􌵨\',_binary '\\"g/􌵨\',_binary 'Qb\P+V~,\j\\RFZ\','',0,'?'),(_binary 'n\r@\:};~s\w','wp-content/themes/Divi/core/components/api/email/Providers.php',0,_binary 'yO0Y-n.c\\',_binary 'yO0Y-n.c\\',_binary '^v\ƣwc+ڇDd\Z=\شAp','',0,'?'),(_binary '\\=0B=z|t','wp-content/themes/Divi/core/components/api/email/SalesForce.php',0,_binary '\\uK\zh_\',_binary '\\uK\zh_\',_binary 'DN\"\\tTM3ns\\\X\	V\\\r9','',0,'?'),(_binary 'E`\)\tz,','wp-content/themes/Divi/core/components/api/email/SendinBlue.php',0,_binary '	v\\\\[\\\<',_binary '	v\\\\[\\\<',_binary 'B~6H\0B*l\\0\\eV\','',0,'?'),(_binary 'y\FkS\/d','wp-content/themes/Divi/core/components/api/email/_MailPoet2.php',0,_binary 'l\SȞQp/1\\\',_binary 'l\SȞQp/1\\\',_binary 'N\oa\ɼԜ\b\Hb\;*?\u','',0,'?'),(_binary '\$=,Pab\\"\#','wp-content/themes/Divi/core/components/api/email/_MailPoet3.php',0,_binary 'Eeg`M\.j\KN',_binary 'Eeg`M\.j\KN',_binary 'k\wm6)\\ᖾ\\'i^wf>Nz\8ݕ','',0,'?'),(_binary 'E.1|{?-_x\\9','wp-content/themes/Divi/core/components/api/email/_ProviderName.php',0,_binary '8\@\0\/F\\$',_binary '8\@\0\/F\\$',_binary '-{:\%\.=\YR8ŕ拞W<','',0,'?'),(_binary 'evl(=/H\Zl','wp-content/themes/Divi/core/components/api/email/iContact.php',0,_binary '+8\0[X\Z`',_binary '+8\0[X\Z`',_binary '\"\T_\_\m>\{X<h\r\A}','',0,'?'),(_binary '@0Qet72','wp-content/themes/Divi/core/components/api/email/init.php',0,_binary 'i\9\ܓ\liO.',_binary 'i\9\ܓ\liO.',_binary 'ǣ#\<\u\0\d\"\"?ynu','',0,'?'),(_binary ';\\ח,\u U\\"','wp-content/themes/Divi/core/components/api/init.php',0,_binary 'C\sN@\s\',_binary 'C\sN@\s\',_binary '\d\jL\\t*\'0\\r\¦r\\\0\','',0,'?'),(_binary '4#t~S\+]\\0','wp-content/themes/Divi/core/components/api/social/Network.php',0,_binary 'Z\A\Z\ 獴hḧ́d',_binary 'Z\A\Z\ 獴hḧ́d',_binary '/bGtߔ\N/L\.p*<N \q\r','',0,'?'),(_binary '\7GwiK^_-Ͻ','wp-content/themes/Divi/core/components/data/Utils.php',0,_binary '\\}\E\,\h;J',_binary '\\}\E\,\h;J',_binary '\OXu\5\F\?C\Z#','',0,'?'),(_binary 'li\\\K\\\6','wp-content/themes/Divi/core/components/data/init.php',0,_binary 'w\n\"R\\!',_binary 'w\n\"R\\!',_binary '{\0ԧ3\\0R\r\"\Hf\4\U\PVKf\r','',0,'?'),(_binary '\D\wl\lDTha','wp-content/themes/Divi/core/components/init.php',0,_binary '\!X\ø9í\6',_binary '\!X\ø9í\6',_binary 'He~\):y)\\e\m],\\\w\','',0,'?'),(_binary 'i)}\\\\"L3\\\1','wp-content/themes/Divi/core/components/lib/BluehostCache.php',0,_binary 'ȧ-1 MNƝ\\i',_binary 'ȧ-1 MNƝ\\i',_binary '.ZB\#&\\n#\X\\Q\\\`i=\\)8','',0,'?'),(_binary 'V*$pgR\eEP\','wp-content/themes/Divi/core/components/lib/OAuth.php',0,_binary '!R5-\)Mܼ\',_binary '!R5-\)Mܼ\',_binary 'HN\\\0\Lv|2|\DI\\<i	\t\','',0,'?'),(_binary '\`E\<AIC','wp-content/themes/Divi/core/components/lib/WPHttp.php',0,_binary '\D.V\!m )n<	',_binary '\D.V\!m )n<	',_binary ',\Qύ-\@z\˭\\ͩ<taOL','',0,'?'),(_binary 'j	Q\\i*/T','wp-content/themes/Divi/core/components/post/Object.php',0,_binary '>\#\\5[\\V\\R',_binary '>\#\\5[\\V\\R',_binary 'l\_\\\@\\/Ixs#Y\\\\','',0,'?'),(_binary 'U\.\U\oc\','wp-content/themes/Divi/core/components/post/Query.php',0,_binary 'C\\`ig\\Z\\',_binary 'C\\`ig\\Z\\',_binary 'i~\͹s\OH&\Ie\\[\5;\\\0\\','',0,'?'),(_binary 'r\~\K/s0\D','wp-content/themes/Divi/core/components/post/Taxonomy.php',0,_binary '\"<\S\W61\"\6\',_binary '\"<\S\W61\"\6\',_binary '\Kh#\riiR\7gU\W\0=<','',0,'?'),(_binary '\q\Z1BG9;;\','wp-content/themes/Divi/core/components/post/Type.php',0,_binary '\Ωo\\v\\.\',_binary '\Ωo\\v\\.\',_binary '\\\\r\\\U\\\n\0U\L\P','',0,'?'),(_binary 'I\qq)E%p\l','wp-content/themes/Divi/core/functions.php',0,_binary 'Ké\8\\\0',_binary 'Ké\8\\\0',_binary '\\c\M?\dWr1dW\D3\:$az\0\+N','',0,'?'),(_binary 'VB\O5\.Ae2','wp-content/themes/Divi/core/init.php',0,_binary '/Fi{\*b\\8#',_binary '/Fi{\*b\\8#',_binary 'X\\k:\\\`7_S^\\I\0\-','',0,'?'),(_binary '\͙W\\\\fE','wp-content/themes/Divi/core/updates_init.php',0,_binary 'EURB\Eh',_binary 'EURB\Eh',_binary '\K^cx\Ox\2\\_2t!۾7t','',0,'?'),(_binary '{*B\`Gp\\¢^','wp-content/themes/Divi/core/wp_functions.php',0,_binary 'ZefJ\\H]\C\',_binary 'ZefJ\\H]\C\',_binary 'F~i^Ȁ%WX8\\k>R\\mg\-R','',0,'?'),(_binary 'f94X%Q?[32\\','wp-content/themes/Divi/css/tinymce-skin/fonts/tinymce-small.svg',0,_binary '߾\\H]\9Z',_binary '߾\\H]\9Z',_binary '\rzm]\H+yqG(S\\ZU\\\/','',0,'?'),(_binary '|Eoi\\R_^X#','wp-content/themes/Divi/css/tinymce-skin/fonts/tinymce.svg',0,_binary 't|\z\q\',_binary 't|\z\q\',_binary '2s\*\t<\\'\+\x\r_\\Xz\c ','',0,'?'),(_binary '\f\\獍\\\r\\','wp-content/themes/Divi/epanel/core_functions.php',0,_binary '\k:d\0lC',_binary '\k:d\0lC',_binary 'n&qr%{+[馣8\'\\H\\\7\r\0','',0,'?'),(_binary '\\0felҝZ;','wp-content/themes/Divi/epanel/custom_functions.php',0,_binary '\\\(q%zo\"f\\',_binary '\\\(q%zo\"f\\',_binary ')ׄHԔ\n7/\l\_\"\"A&l\Em\','',0,'?'),(_binary 'Y}\\w\','wp-content/themes/Divi/epanel/google-fonts/et_google_fonts.js',0,_binary '\dV#T6\-',_binary '\dV#T6\-',_binary '5{\+.`3<&[~L`]k\'5\\\\\','',0,'?'),(_binary '\\}\Ԩ\\rvy\\0\','wp-content/themes/Divi/epanel/js/checkbox.js',0,_binary '\op\oe',_binary '\op\oe',_binary '4FAlLwG\~\0\.;\\>P $','',0,'?'),(_binary '}tb:z\F\"@','wp-content/themes/Divi/epanel/js/colorpicker.js',0,_binary '|rpP\r5ys^*	%',_binary '|rpP\r5ys^*	%',_binary '|My7aFruu&PǖC\s\,8\','',0,'?'),(_binary 'AieMK!','wp-content/themes/Divi/epanel/js/custom_uploader.js',0,_binary '(\rz\Zvc',_binary '(\rz\Zvc',_binary '%H.O\V\\HS@p\0Bμpo\P\\6','',0,'?'),(_binary 'o\FW$4NA\E\>','wp-content/themes/Divi/epanel/js/eye.js',0,_binary '\\#0ޝ\\\&\Z噐',_binary '\\#0ޝ\\\&\Z噐',_binary '\-\\/\bq΢e%\Ad\B\\','',0,'?'),(_binary 'Be*\\&l\\\*j','wp-content/themes/Divi/epanel/js/functions-init.js',0,_binary '\\2\\\\'X\N',_binary '\\2\\\\'X\N',_binary '\\Z<U2y\Nk+C\w2%\\Z\+c','',0,'?'),(_binary 'V\\;\\!NN\u','wp-content/themes/Divi/epanel/js/layout.js',0,_binary 'Z\\)\n\LHhcYݣ',_binary 'Z\\)\n\LHhcYݣ',_binary 'LWy\!~\'9z\xrFJՈY<ђa','',0,'?'),(_binary '7T؀e\|=:\G','wp-content/themes/Divi/epanel/js/wp-color-picker-alpha.min.js',0,_binary 'bSUnp\M\4=Y`',_binary 'bSUnp\M\4=Y`',_binary '\kݸ\v\@\hH\Ut|X-\\Nl\','',0,'?'),(_binary '8y\A\0M.D','wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.js',0,_binary '\\\\$v=>)\0\0E\',_binary '\\\\$v=>)\0\0E\',_binary 'Ԑ}Z-{7^f\c:֏\O','',0,'?'),(_binary 'r&\ۙ\󷢨%\0:','wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.min.js',0,_binary 'g\\\f',_binary 'g\\\f',_binary ']\\\c%	+׼\]z\si\!IU','',0,'?'),(_binary 'FRuH\o','wp-content/themes/Divi/epanel/shortcodes/js/et_shortcodes_frontend.js',0,_binary '{]?êq~\\tT{',_binary '{]?êq~\\tT{',_binary '@+b\\p*\d=\\},sde|\pqV','',0,'?'),(_binary 'FXť\4\öA','wp-content/themes/Divi/epanel/shortcodes/shortcodes.php',0,_binary '\dF?P\',_binary '\dF?P\',_binary '\P9*֥\|SpaHn]v\pѝ','',0,'?'),(_binary '%0\H2\߷\','wp-content/themes/Divi/et-pagebuilder/et-pagebuilder.php',0,_binary 'ڄq;~Ȅ\',_binary 'ڄq;~Ȅ\',_binary '\٬\ 鈫G\3^3W<	_','',0,'?'),(_binary 'V\\\a}\s]','wp-content/themes/Divi/footer.php',0,_binary 'A\Z\,iAwY',_binary 'A\Z\,iAwY',_binary '0YU(Z#w\T\\\-j\)P\','',0,'?'),(_binary '\\%4\Hd\','wp-content/themes/Divi/functions.php',0,_binary '\Zс=ݽ_2\F\0',_binary '\Zс=ݽ_2\F\0',_binary 'V]\\/\C*f{)ٷ~q\3D.n6I','',0,'?'),(_binary '\i4}\n1a','wp-content/themes/Divi/header.php',0,_binary '~Zlg\U[x\',_binary '~Zlg\U[x\',_binary 'Bp8׸\`X24\6\?Mh~\G','',0,'?'),(_binary 'o23d;_\Y<T}9','wp-content/themes/Divi/includes/builder/ab-testing.php',0,_binary '\3\I[\\8m',_binary '\3\I[\\8m',_binary '\L_!\T^\\\Zb]\4`g\'_U','',0,'?'),(_binary '\mĥQ+NФJ','wp-content/themes/Divi/includes/builder/class-et-builder-element.php',0,_binary 'wQ\8d^\#',_binary 'wQ\8d^\#',_binary '\L,[5;z9V\\r\0-@\\Z0;a6f5 ','',0,'?'),(_binary '\A}h\\qq6\nc','wp-content/themes/Divi/includes/builder/class-et-builder-plugin-compat-base.php',0,_binary '1_KVaۡ\"X',_binary '1_KVaۡ\"X',_binary 'E96f2\\0^ǎ\4j\IJDK','',0,'?'),(_binary ')c*\ۮm\0:*6&','wp-content/themes/Divi/includes/builder/class-et-builder-plugin-compat-loader.php',0,_binary '`dP8ԟ\PC\',_binary '`dP8ԟ\PC\',_binary '\Qe\n\b5\\̸\\\\'IJ\,','',0,'?'),(_binary '. n4\k{	 \Hr&','wp-content/themes/Divi/includes/builder/class-et-builder-settings.php',0,_binary '\+AT\0j	\\J[',_binary '\+AT\0j	\\J[',_binary '\U\\*\*;z\\բ\q=x)ah','',0,'?'),(_binary '\\nH|\:\Dc0','wp-content/themes/Divi/includes/builder/class-et-global-settings.php',0,_binary '[ށ\\h',_binary '[ށ\\h',_binary '\xjYk?\<Kd\nnp\\\9q&I\0','',0,'?'),(_binary 'Xa\ s\n*LlAg','wp-content/themes/Divi/includes/builder/comments_template.php',0,_binary 'Lj)i3	5\_',_binary 'Lj)i3	5\_',_binary 'X\\\꣡p%O՘+\Hw.\D4&\\'M','',0,'?'),(_binary '\BBnr\\\ki]','wp-content/themes/Divi/includes/builder/compat/woocommerce.php',0,_binary 'jb\@p\˪}_',_binary 'jb\@p\˪}_',_binary '3s\\ǞHG\`\\п\j\'\\Z0=wx0w','',0,'?'),(_binary '\\0\\0ߐU\\C&','wp-content/themes/Divi/includes/builder/core.php',0,_binary '\N\=\~0C\a',_binary '\N\=\~0C\a',_binary 'E¼˄.-$\dE.\ҧ\-','',0,'?'),(_binary '\\'v.@(f','wp-content/themes/Divi/includes/builder/feature/Library.php',0,_binary '\lo\>\\g\f\',_binary '\lo\>\\g\f\',_binary '!*ΰ\\\I{\.C\n\\j','',0,'?'),(_binary 'R\2$t\\ED\\6','wp-content/themes/Divi/includes/builder/framework.php',0,_binary 'JYP\"PD\ȍ',_binary 'JYP\"PD\ȍ',_binary 'fo9\ւ@K\ߊIя\\k=X`','',0,'?'),(_binary '\ĸr\0;>\0\j\}','wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/mediaelement-images/bigplay.svg',0,_binary 'tl:\E9n^\',_binary 'tl:\E9n^\',_binary '(Θ\\\\n \lpuꑝ&]yiJ)','',0,'?'),(_binary 'm\t\Ŭ?\,e\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/mediaelement-images/controls.svg',0,_binary '@\oZsm\\ۊR\',_binary '@\oZsm\\ۊR\',_binary 'sP\3\4	5>۲#\v\\\G\p','',0,'?'),(_binary '\i\sM<\E\-g(','wp-content/themes/Divi/includes/builder/frontend-builder/assets/scripts/failure_notice.js',0,_binary '@&f\b\sQ\\G-',_binary '@&f\b\sQ\\G-',_binary '͆̇`mn߻_0duj\<\\\8/P\'j\\n','',0,'?'),(_binary '0\,\<RYl1\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/advlist/plugin.min.js',0,_binary 'v\|o~=0\s\Ԉ',_binary 'v\|o~=0\s\Ԉ',_binary 'vrūy+=\\L/\\[P#xS%5Ћu','',0,'?'),(_binary '\~*[Z%ѶܽKU','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/anchor/plugin.min.js',0,_binary '\b`\#\\',_binary '\b`\#\\',_binary '\p\<\$zXЫ\Z\Ϫ}\W\\\5\','',0,'?'),(_binary 'p\j\\19\_','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autolink/plugin.min.js',0,_binary 'oTT\\\̃V\',_binary 'oTT\\\̃V\',_binary '\\=bL\0\)T\#p{\H޵͠\\i','',0,'?'),(_binary 'x\ဇ\\\6j\\n[','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autoresize/plugin.min.js',0,_binary 'R\\]	D\\%)|',_binary 'R\\]	D\\%)|',_binary '9r\"|(:S9\&\n}G\\\,U','',0,'?'),(_binary 'D4\p57B%','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autosave/plugin.min.js',0,_binary 'wdI|\\\^f',_binary 'wdI|\\\^f',_binary 'a{Ja>l\=L\">\HHĆ8er\\\\','',0,'?'),(_binary 'N@\| UKwO\3','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/bbcode/plugin.min.js',0,_binary 'sFB\e\{\Ϝ',_binary 'sFB\e\{\Ϝ',_binary '\\fzX\10\\o\%O\{0`\\'\.|','',0,'?'),(_binary '^\\\\\\\\\QP\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/charmap/plugin.min.js',0,_binary '|0onf>>',_binary '|0onf>>',_binary '^ft\ۗ\#\f\ϒWϻ\.','',0,'?'),(_binary '\\\"U\\[\\~v E\n\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/code/plugin.min.js',0,_binary ';KUvȇ[\8\	',_binary ';KUvȇ[\8\	',_binary '~1M}@\[\2\n:\\\z)HW6Ý\؀','',0,'?'),(_binary 'A55\\nE\#U_ќ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/codesample/plugin.min.js',0,_binary 'viMRr؏t\\`',_binary 'viMRr؏t\\`',_binary '\Z\\"\Hk\\\\\gfKSxC\g\ZgY|','',0,'?'),(_binary 'u28CS+N','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/colorpicker/plugin.min.js',0,_binary '\\PPīZ(\)A',_binary '\\PPīZ(\)A',_binary 'ѥ\n-\$\u\'\"xjn\Ǝ+','',0,'?'),(_binary '\r5!G/\SN\"/\+','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/contextmenu/plugin.min.js',0,_binary '\"!]bx\,y9\',_binary '\"!]bx\,y9\',_binary '\<|\Wn\P@\\\\o>u0)','',0,'?'),(_binary 'SA\L&\L걂=\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/directionality/plugin.min.js',0,_binary 'nH]H\\\\r\cV',_binary 'nH]H\\\\r\cV',_binary 'w()D~\ұ2\\bG4G:V\\$\_$','',0,'?'),(_binary 'ˡ\KFRa\wS\\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/emoticons/plugin.min.js',0,_binary 'R8l\2uE0\\0',_binary 'R8l\2uE0\\0',_binary '<1\\\\\\V>\\KjPưRv\','',0,'?'),(_binary 'Y\;J\wz\\\$\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullpage/plugin.min.js',0,_binary 'f#ѻ[L\\aЭ/\',_binary 'f#ѻ[L\\aЭ/\',_binary 'dI\=F͈{;zJ\.$r\ZGzz','',0,'?'),(_binary '}>n\r4\\n\b4+','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullscreen/plugin.min.js',0,_binary 'ip\x\\\Cdɜ',_binary 'ip\x\\\Cdɜ',_binary '\rSH\\f\Z\^_\\pq\+Bu\\','',0,'?'),(_binary '\\\\G5xbն\\<','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/help/plugin.min.js',0,_binary '\a\eW~',_binary '\a\eW~',_binary '\\\\(\\"-\ZǺҘC\b#Z?','',0,'?'),(_binary 'v]rQ\f`','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/hr/plugin.min.js',0,_binary 'fa*ΐi\T%Y',_binary 'fa*ΐi\T%Y',_binary '\Ȩ\V\b-\ZUD\q3\\\Φ','',0,'?'),(_binary '\|\LwƴiKr{','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/image/plugin.min.js',0,_binary '\.\\ϙ\"񝬘\',_binary '\.\\ϙ\"񝬘\',_binary 'B#T\Cp[;Gf&\59|\\"\'i','',0,'?'),(_binary '\0\a\\<U\\y1/I','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/imagetools/plugin.min.js',0,_binary '\\\6$\"\"\GEK\',_binary '\\\6$\"\"\GEK\',_binary '_S.8x\K\\X6	 Jr6o}:!','',0,'?'),(_binary '\\\0)5[\W\\\ӽ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/importcss/plugin.min.js',0,_binary '\2z\a\',_binary '\2z\a\',_binary '\\{95\m[\5Tm\\\\R','',0,'?'),(_binary 'fͻ⡠P\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/insertdatetime/plugin.min.js',0,_binary 'U%K&\:;Y\\q',_binary 'U%K&\:;Y\\q',_binary 'lӷR\\N`@\\V\w	&\~?\\t\'','',0,'?'),(_binary 'F%\&9\iB˧h','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/legacyoutput/plugin.min.js',0,_binary 'M|\N\LR\.',_binary 'M|\N\LR\.',_binary '@X\W9\r\$y\ZpFu߫9\̫','',0,'?'),(_binary 'e@xEj0qŁ\h(','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/link/plugin.min.js',0,_binary 'ـFGvE?awM',_binary 'ـFGvE?awM',_binary '\"\\'	԰SFN\A8\%FW\Z_l0','',0,'?'),(_binary '׿o\ZkL\W','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/lists/plugin.min.js',0,_binary ' \󶤧+w\\gB\\',_binary ' \󶤧+w\\gB\\',_binary '@DxOw\Z<P؂Q\%A.8P\','',0,'?'),(_binary 'Ҟ\>\*R#F~ \n','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/media/plugin.min.js',0,_binary 'h\DX(\\R!uAU',_binary 'h\DX(\\R!uAU',_binary 'r0\h!,\\"\\/\\c\'\{	','',0,'?'),(_binary '!>\p\\\\L\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/nonbreaking/plugin.min.js',0,_binary 'D7y$^LT\sKZ\',_binary 'D7y$^LT\sKZ\',_binary '\B\5w@L\\\~\}\˅:P','',0,'?'),(_binary '0\\\\./	G\AY`','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/noneditable/plugin.min.js',0,_binary '&\\\g\'j\\',_binary '&\\\g\'j\\',_binary 't9k\nLюxqYQẰM\\\6\','',0,'?'),(_binary 'Ym85\\\\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/pagebreak/plugin.min.js',0,_binary '?\I\=o}\\\Vyt',_binary '?\I\=o}\\\Vyt',_binary 'w\Vh\\zTcd\\ҁ]S`','',0,'?'),(_binary '\3DA\tI','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/paste/plugin.min.js',0,_binary 'IY\r\',_binary 'IY\r\',_binary '\L°\ڊ:FT\7f\\ǔ}q\\\Z','',0,'?'),(_binary 'n\2\0c\\b\lUV','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/preview/plugin.min.js',0,_binary '.\c<\]yقi\',_binary '.\c<\]yقi\',_binary '%\\0v\,h\\!Ҹ\}@]','',0,'?'),(_binary '\v;t)\(\~\%\:ԑ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/print/plugin.min.js',0,_binary '\aO&\\*\Z3\',_binary '\aO&\\*\Z3\',_binary '9\S\r\0CGD\kr=T','',0,'?'),(_binary '\\\rE+U\"M.oX\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/save/plugin.min.js',0,_binary 'b5\'Ʃ`F&nO>',_binary 'b5\'Ʃ`F&nO>',_binary 'ւԫg\"\=\ǚXR\D\\ߧ\)F\\K','',0,'?'),(_binary '\!=&A삨.\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/searchreplace/plugin.min.js',0,_binary '\ٲ+l\ᎺHm\',_binary '\ٲ+l\ᎺHm\',_binary 'Qg,CwBҜ+\'s3\\\X/6^\Ӆ+\1ye','',0,'?'),(_binary 'N5ù_0\DI','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/spellchecker/plugin.min.js',0,_binary 's\\\MfއK',_binary 's\\\MfއK',_binary 'k)dL@\\\Zv\Z\\e\\R\\v','',0,'?'),(_binary '=\\C\e}','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/tabfocus/plugin.min.js',0,_binary '1=uc\\$\0B6',_binary '1=uc\\$\0B6',_binary 'cy\Zqm1i.ZX/\Z\ĕI[JN','',0,'?'),(_binary 'Cܐ[3cgQ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/table/plugin.min.js',0,_binary '\\)eEhD',_binary '\\)eEhD',_binary 'z+Bi<\ZQ\AK_]:\;	Y\','',0,'?'),(_binary '\TI\Y\\0?','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/template/plugin.min.js',0,_binary '\\57<',_binary '\\57<',_binary '\\\s\9ބ7\\\ZiƔςt(u⯽\ΒE','',0,'?'),(_binary '*$vx]%\s66ҋ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textcolor/plugin.min.js',0,_binary 'ktH\J tL\\LA',_binary 'ktH\J tL\\LA',_binary '!󓶋\2\zlrr?\K)\\r\t{\','',0,'?'),(_binary ':\\\\\gTУ\\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textpattern/plugin.min.js',0,_binary '\%r\&\\Z@\',_binary '\%r\&\\Z@\',_binary 'NW;WIp :\'lU\cy\Zo\8e','',0,'?'),(_binary '\\^]s(z','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/toc/plugin.min.js',0,_binary 'Y\O\J}=\ϧ',_binary 'Y\O\J}=\ϧ',_binary '}@`[\\1\\\"RLUqۖ<\n(','',0,'?'),(_binary 'l\\0ޱ\E6','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualblocks/plugin.min.js',0,_binary 'r\\0or\',_binary 'r\\0or\',_binary '\K#)sRL\\p/d\Jj','',0,'?'),(_binary '˯b\*~\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualchars/plugin.min.js',0,_binary '\\L\\\\r3a]t',_binary '\\L\\\\r3a]t',_binary '}(\f\\\͑q~M5/\\D#\','',0,'?'),(_binary '8lx\l\2y','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/wordcount/plugin.min.js',0,_binary '-_t\\\Ħ',_binary '-_t\\\Ħ',_binary '* \>\\\?\=\s\Hn#K?\Lǃ','',0,'?'),(_binary '/y:L\9l\'6','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.svg',0,_binary '\2\4vLhN\!\\2|',_binary '\2\4vLhN\!\\2|',_binary '\\3iA(\\p\\GDڔ\\\\','',0,'?'),(_binary '2m\4%)l','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.svg',0,_binary 'rb\\T4\|:\k\sP',_binary 'rb\\T4\|:\k\sP',_binary ':\r\k:yZ{\\Ȼ\$\*z]','',0,'?'),(_binary 'i^,k\M:$','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/inlite/theme.min.js',0,_binary 'YE\t>\?\',_binary 'YE\t>\?\',_binary 'nS\R\vAv?l\[@\r\0','',0,'?'),(_binary '5\\F\|\g\9|','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/modern/theme.min.js',0,_binary 'u\y#\N`e3\',_binary 'u\y#\N`e3\',_binary 'swŤGj\'s??6\X\+\rg\F','',0,'?'),(_binary '$<\\\!YB݄Y~\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.svg',0,_binary '߾\\H]\9Z',_binary '߾\\H]\9Z',_binary '\rzm]\H+yqG(S\\ZU\\\/','',0,'?'),(_binary '\]~Xe(','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.svg',0,_binary 't|\z\q\',_binary 't|\z\q\',_binary '2s\*\t<\\'\+\x\r_\\Xz\c ','',0,'?'),(_binary 'J\\:?2Rz\\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce.min.js',0,_binary '\\Z\F\1\\R`',_binary '\\Z\F\1\\R`',_binary 'B\"\1\D\p\\1dk\\\7Ƶ6&','',0,'?'),(_binary '\FʡV\r{WM','wp-content/themes/Divi/includes/builder/frontend-builder/assets.php',0,_binary 'JϨʙ\ꇂ.',_binary 'JϨʙ\ꇂ.',_binary '\8 \\Zr\\\Z֠ߜ\Z*$0ٗt','',0,'?'),(_binary '\\"\]?\\d\?\8','wp-content/themes/Divi/includes/builder/frontend-builder/bundle.js',0,_binary '\qY.\\|\c\',_binary '\qY.\\|\c\',_binary 'ȹ\,p\]\(\\\\\i{\.\\$D\n\J%','',0,'?'),(_binary '%D~\n2\0!A','wp-content/themes/Divi/includes/builder/frontend-builder/bundle.modals.2d731ae0.js',0,_binary '63]*\`\@b\]a',_binary '63]*\`\@b\]a',_binary 'p%G%\m7%$G.Ѽ@\\o','',0,'?'),(_binary '/u\ɸ\i	)','wp-content/themes/Divi/includes/builder/frontend-builder/helpers.php',0,_binary 'Ҹk\h0nFX',_binary 'Ҹk\h0nFX',_binary '\_9	R\s F#N\\L\\f$|\\','',0,'?'),(_binary '\\\e\\','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/categories.php',0,_binary 'C\\0\Ecb\Xd.\r',_binary 'C\\0\Ecb\Xd.\r',_binary '._0b#\i.\aU\U::\\\	x','',0,'?'),(_binary '\Lv\6\0\n@\\;m','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/layouts-long.php',0,_binary '\tq\\}̈́8',_binary '\tq\\}̈́8',_binary '\Jw`e5d\\\L\u-','',0,'?'),(_binary '7{gR00g\G','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/layouts-short.php',0,_binary 'Sww7\#^\G\')yl',_binary 'Sww7\#^\G\')yl',_binary '\\lCAU\\LZ@ۭO*yq\!\"$\','',0,'?'),(_binary '\\"Z^\%\q','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/packs.php',0,_binary 'R\Y\҆>\',_binary 'R\Y\҆>\',_binary '\[Ɉ\i\"fkȨ{-\$bh\\PP\','',0,'?'),(_binary ';\|r\u	]MO','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library.php',0,_binary '\Vn])\oWT >',_binary '\Vn])\oWT >',_binary 'qr/(e\g$EoFc\҆W\r\{\\zd','',0,'?'),(_binary '~J\\\I^H\K','wp-content/themes/Divi/includes/builder/frontend-builder/init.php',0,_binary '\\؉\ARp\\l]',_binary '\\؉\ARp\\l]',_binary '\W\V.T\KIg@2\>r\\\\6Bk\','',0,'?'),(_binary '\\L8ډ\(\\ց','wp-content/themes/Divi/includes/builder/frontend-builder/rtl.php',0,_binary 'c\-i\~{N+A',_binary 'c\-i\~{N+A',_binary '\s\_?\5_o]MaR1r![\@!\','',0,'?'),(_binary 'l\\Bj\2\','wp-content/themes/Divi/includes/builder/frontend-builder/view.php',0,_binary 'hh8i',_binary 'hh8i',_binary ':\]Π\i\8ivS\\gM\Eȋ','',0,'?'),(_binary 'H!\d{\0\\','wp-content/themes/Divi/includes/builder/functions.php',0,_binary 'V\\74\1\C',_binary 'V\\74\1\C',_binary ')4;4X߻!X\n[\\) ۧL\','',0,'?'),(_binary '\\\\\v[9','wp-content/themes/Divi/includes/builder/google-fonts-data.php',0,_binary ':S^\P\\\\TQ',_binary ':S^\P\\\\TQ',_binary '˪@\\6(K6oWhI^ \@8\Ljлn','',0,'?'),(_binary 'P\EG\\W[\\G	','wp-content/themes/Divi/includes/builder/images/library-global.svg',0,_binary '\\\:@Vo(6\Uè\',_binary '\\\:@Vo(6\Uè\',_binary 'u\\knE\؛\\Y\e\f4j6[W\','',0,'?'),(_binary 'gN\"ʋA-&,','wp-content/themes/Divi/includes/builder/images/library-layout.svg',0,_binary '둉ҒM\$ന',_binary '둉ҒM\$ന',_binary ' Hu\|\ܖ\Fл}Y%\0=Q_','',0,'?'),(_binary 'RTj\%e2<蠯o','wp-content/themes/Divi/includes/builder/images/menu.svg',0,_binary 'O\\tPpɋ',_binary 'O\\tPpɋ',_binary '\$UgG\0L[,\\ٷ\"#\ 3','',0,'?'),(_binary '@N\j\\ˁ','wp-content/themes/Divi/includes/builder/images/stats-no-data.svg',0,_binary '@w=\\\4j-$+',_binary '@w=\\\4j-$+',_binary '4վȪ\\r\\"b\\*uLB','',0,'?'),(_binary 'S\'k\;[δ','wp-content/themes/Divi/includes/builder/images/stats.svg',0,_binary '\\N \䄣\hB',_binary '\\N \䄣\hB',_binary '\\\\r\t2t<Ti\\0\V0Gzy','',0,'?'),(_binary 'g3\n\?\\σ21','wp-content/themes/Divi/includes/builder/main-modules.php',0,_binary '\݀\y:`\n\A',_binary '\݀\y:`\n\A',_binary '6\$oyxJP?v֠\"E/,S','',0,'?'),(_binary '7X>\h\19ms','wp-content/themes/Divi/includes/builder/main-structure-elements.php',0,_binary '-/\r44a\2A\.No?\'',_binary '-/\r44a\2A\.No?\'',_binary '$\\d@	\Ze\-%*\!m\OU','',0,'?'),(_binary '\ƾ{m\{\j\','wp-content/themes/Divi/includes/builder/module/Accordion.php',0,_binary 'i\RܖF\\^Q^',_binary 'i\RܖF\\^Q^',_binary '\\R\\\\\a\]\W\q{A','',0,'?'),(_binary 'kud\GĥRD','wp-content/themes/Divi/includes/builder/module/AccordionItem.php',0,_binary '@c7W6&\_\\@',_binary '@c7W6&\_\\@',_binary '\i}]>b\O=\q)\5t','',0,'?'),(_binary 'g\K=|\\Z\I\','wp-content/themes/Divi/includes/builder/module/Audio.php',0,_binary '\v^\p*ب\!',_binary '\v^\p*ب\!',_binary '#׆.f](\N4\#Eg\HXu\0@\O','',0,'?'),(_binary '9Q𾍚@;>ь\r','wp-content/themes/Divi/includes/builder/module/BarCounters.php',0,_binary '9|\8%\m\\m\S',_binary '9|\8%\m\\m\S',_binary 'ָS\{$\0,RpW\\.g`','',0,'?'),(_binary 'sjJ<\W\Ba+\','wp-content/themes/Divi/includes/builder/module/BarCountersItem.php',0,_binary 'aU!\Ce\nI',_binary 'aU!\Ce\nI',_binary '\Ƿ\wKm(ue\\/4\0]W\VE;','',0,'?'),(_binary 'E\j-\^\,','wp-content/themes/Divi/includes/builder/module/Blog.php',0,_binary 'rb.\rt\nzqJ',_binary 'rb.\rt\nzqJ',_binary '\!\\˪>\gQFq%\\y\','',0,'?'),(_binary '\\\؛]\\rY#u\','wp-content/themes/Divi/includes/builder/module/Blurb.php',0,_binary '\-c|-w\܈o\O',_binary '\-c|-w\܈o\O',_binary '\qN=J\gW\\GX3@\h\\3\\\Z\','',0,'?'),(_binary 'W129q5\\kt\','wp-content/themes/Divi/includes/builder/module/Button.php',0,_binary '=^K-2\}\X',_binary '=^K-2\}\X',_binary '&Ϋ,\:7\H\Y\\~u\\Lj','',0,'?'),(_binary '\n\D\pqU','wp-content/themes/Divi/includes/builder/module/CircleCounter.php',0,_binary 'y}A\\nN\'\ʹz&',_binary 'y}A\\nN\'\ʹz&',_binary 'd2\\Ep	|rI u\Z$\ͭ','',0,'?'),(_binary '\\CP\\K','wp-content/themes/Divi/includes/builder/module/Code.php',0,_binary '\3c5vRG',_binary '\3c5vRG',_binary '\12o`	QQ\\\=dL\/O9\\xi','',0,'?'),(_binary 'i\DF%T\\\\','wp-content/themes/Divi/includes/builder/module/Comments.php',0,_binary 'ͬ\ʈh^H\ =',_binary 'ͬ\ʈh^H\ =',_binary '\\8^CG7`\r]y\z\M\0\z;','',0,'?'),(_binary '\\rD_\7KGsp\\\','wp-content/themes/Divi/includes/builder/module/ContactForm.php',0,_binary '*>z\\_B,\4\\]=',_binary '*>z\\_B,\4\\]=',_binary ':\rpd.\"ϯ~hVok̔u& F&_9z\n\\\-','',0,'?'),(_binary '\\\ruzW~N','wp-content/themes/Divi/includes/builder/module/ContactFormItem.php',0,_binary '\*߳\@A^\\',_binary '\*߳\@A^\\',_binary 'rjlxpD\>OBK\d!&p0\US','',0,'?'),(_binary '	\\)\OarK\\u','wp-content/themes/Divi/includes/builder/module/CountdownTimer.php',0,_binary '%6\ŽD|Z',_binary '%6\ŽD|Z',_binary '\\j1\\\\;],bxU\\(Y','',0,'?'),(_binary 'C\NV\Cg\Qѵ\','wp-content/themes/Divi/includes/builder/module/Cta.php',0,_binary '!K(߶a\G\*SUCDp',_binary '!K(߶a\G\*SUCDp',_binary '|c\t\XQgvcG\7δu','',0,'?'),(_binary '^\0\,8\|kIPM','wp-content/themes/Divi/includes/builder/module/Divider.php',0,_binary 'x/lfsn\JY\0',_binary 'x/lfsn\JY\0',_binary ')\\mMtC\xI[||J\%o.\Z;2','',0,'?'),(_binary '\5MFĥ/o\\\','wp-content/themes/Divi/includes/builder/module/FilterablePortfolio.php',0,_binary '*\`^\rF?O^\n;\v',_binary '*\`^\rF?O^\n;\v',_binary '\!\a-\D^8eV{\1\`LM^e5','',0,'?'),(_binary '\Bx\r\\4.?\','wp-content/themes/Divi/includes/builder/module/FullwidthCode.php',0,_binary 'R$vM\<0tm\\+',_binary 'R$vM\<0tm\\+',_binary '^;n\\\F?:?\)VX=W','',0,'?'),(_binary '\\\\bI\\\\G9^\0','wp-content/themes/Divi/includes/builder/module/FullwidthHeader.php',0,_binary 'y\F\`\$\^\n\',_binary 'y\F\`\$\^\n\',_binary 'v^\'6,\\n]:zw\2T#\ HT\\','',0,'?'),(_binary '\ J\'\D\','wp-content/themes/Divi/includes/builder/module/FullwidthImage.php',0,_binary 'cn\)_D\\\C\',_binary 'cn\)_D\\\C\',_binary '0SU\\NP)\"dSM^fѰ\\Ι\21a\4','',0,'?'),(_binary '\\\I\j\g%h\q','wp-content/themes/Divi/includes/builder/module/FullwidthMap.php',0,_binary '\ƮR!s\ߠ#\<\r',_binary '\ƮR!s\ߠ#\<\r',_binary '}֦l\\(b\0ưhk\cm\uA\','',0,'?'),(_binary 'mMd\\-6\'K\','wp-content/themes/Divi/includes/builder/module/FullwidthMenu.php',0,_binary '\Nݚ\y҄\',_binary '\Nݚ\y҄\',_binary '\hk\1m\ra\X\j,\X\sy\','',0,'?'),(_binary '?\EsD\mF\\\','wp-content/themes/Divi/includes/builder/module/FullwidthPortfolio.php',0,_binary ' &\\\$',_binary ' &\\\$',_binary '\n@!\\\$$\\^\\\7\aƙB','',0,'?'),(_binary '\\Ɔ\0ϗ\Za\\','wp-content/themes/Divi/includes/builder/module/FullwidthPostSlider.php',0,_binary '?ەUʅ$\\F',_binary '?ەUʅ$\\F',_binary '@=\"\P6mօ\k,$}[J\<23\7','',0,'?'),(_binary '\\'67~iT4R','wp-content/themes/Divi/includes/builder/module/FullwidthPostTitle.php',0,_binary '\q\.\DfύX2',_binary '\q\.\DfύX2',_binary 'q\JZ_\[\TMUcE\q#kZZ','',0,'?'),(_binary 'Zб\Ĝ@#l','wp-content/themes/Divi/includes/builder/module/FullwidthSlider.php',0,_binary ']\ ҩ\n\',_binary ']\ ҩ\n\',_binary 'yҨO\\`(\6R&_m\\\Zv','',0,'?'),(_binary 'p\ZVftxY','wp-content/themes/Divi/includes/builder/module/Gallery.php',0,_binary '	\Z\F\ӹ',_binary '	\Z\F\ӹ',_binary '\\\=\yC}\\z] !	E;!(ť','',0,'?'),(_binary '\r\M2E\?\','wp-content/themes/Divi/includes/builder/module/Image.php',0,_binary 'X.l#[y\0\j',_binary 'X.l#[y\0\j',_binary ':Y]\\	>\Ø`\{,ƛ8+^\s','',0,'?'),(_binary '-s&<ǣm','wp-content/themes/Divi/includes/builder/module/Login.php',0,_binary 'Q\K5\\zV[\2',_binary 'Q\K5\\zV[\2',_binary '\\rD3a\I\\}=̝M`\Z[\\','',0,'?'),(_binary '\=lm\\czy;\\','wp-content/themes/Divi/includes/builder/module/Map.php',0,_binary 'C>ˌq\\ӂN',_binary 'C>ˌq\\ӂN',_binary '\)ʒ\\\\⩂!&МW\#O6\\*','',0,'?'),(_binary '\7WD:\ܙgU\','wp-content/themes/Divi/includes/builder/module/MapItem.php',0,_binary 'a\|\3S$\5\~s4',_binary 'a\|\3S$\5\~s4',_binary '{-Dx\/\$\6>6}\3\w:\\\T*\\\','',0,'?'),(_binary '1l`PqXMvh\\','wp-content/themes/Divi/includes/builder/module/NumberCounter.php',0,_binary '\G\%𣭛s]g',_binary '\G\%𣭛s]g',_binary '\6\\\I\e=\\n\SX(M6@q\','',0,'?'),(_binary 'Ij\L\P5\'VArI+','wp-content/themes/Divi/includes/builder/module/Portfolio.php',0,_binary '[M$8i\L\',_binary '[M$8i\L\',_binary '\\G<l,\Pl\}\|)\+u\P<','',0,'?'),(_binary '\}P\o\\','wp-content/themes/Divi/includes/builder/module/PostSlider.php',0,_binary '$.\W\B\\a\',_binary '$.\W\B\\a\',_binary 'B3l\\\"ve\w/2ZR\Jr*\\(/','',0,'?'),(_binary '\\rNv^S\k:k','wp-content/themes/Divi/includes/builder/module/PostTitle.php',0,_binary '\I=#\H\';\ (',_binary '\I=#\H\';\ (',_binary '\W\Fh7\v_oPw\¸\N','',0,'?'),(_binary 'rd|\\"t`ew\','wp-content/themes/Divi/includes/builder/module/PostsNavigation.php',0,_binary '>\\$ӄzۼ\]܃',_binary '>\\$ӄzۼ\]܃',_binary 'ZK6\"f[\\\Kh\\\\*u','',0,'?'),(_binary ',u=q\tOZF','wp-content/themes/Divi/includes/builder/module/PricingTables.php',0,_binary 'f[#bZ@',_binary 'f[#bZ@',_binary 'G;\Z\0n0\\]떏()tDYI','',0,'?'),(_binary '`\ex\y-дu','wp-content/themes/Divi/includes/builder/module/PricingTablesItem.php',0,_binary '\_e\7p	$\n\\',_binary '\_e\7p	$\n\\',_binary '\\\\k5-4\\ڞT_i&\'_','',0,'?'),(_binary 'z:.g>[\\x','wp-content/themes/Divi/includes/builder/module/Search.php',0,_binary '\Ạk	`\"wŹ',_binary '\Ạk	`\"wŹ',_binary '\1Z~\~yO\ \z\,ݝ\','',0,'?'),(_binary 'ӄ,	\&bEW\','wp-content/themes/Divi/includes/builder/module/Shop.php',0,_binary '{4%^\J',_binary '{4%^\J',_binary ')rܤv{\˓\O(&څ\`H|\Z','',0,'?'),(_binary 'lrn4\pRJ\z','wp-content/themes/Divi/includes/builder/module/Sidebar.php',0,_binary 'gEٍ7Q\',_binary 'gEٍ7Q\',_binary 'sVq,\~\rn1\T\'gaV\\','',0,'?'),(_binary 'm\\I\\L\?h\\','wp-content/themes/Divi/includes/builder/module/Signup.php',0,_binary 'κN\%s#\',_binary 'κN\%s#\',_binary 'U\\9y=wj9\ZHB\>Q','',0,'?'),(_binary 'fc\\n\p\\f]p','wp-content/themes/Divi/includes/builder/module/Slider.php',0,_binary 'i\6\OA`.L	',_binary 'i\6\OA`.L	',_binary '\ZHs\ӳ5%u)45`2w}','',0,'?'),(_binary '|\OPz^z\7Hd','wp-content/themes/Divi/includes/builder/module/SliderItem.php',0,_binary 'r\\\\',_binary 'r\\\\',_binary '\X\\t\'<\%h\\Z\A;\&\\\z','',0,'?'),(_binary ' RR0oKlSr','wp-content/themes/Divi/includes/builder/module/SocialMediaFollow.php',0,_binary '\\=4NtQ\',_binary '\\=4NtQ\',_binary 'IvPx\+Y\}H\\k	*׭]','',0,'?'),(_binary '\\B	*f6RW6%','wp-content/themes/Divi/includes/builder/module/SocialMediaFollowItem.php',0,_binary '\Ռ{n\\5a',_binary '\Ռ{n\\5a',_binary 'Hk\\4sia\.\m?ߜD\\rӥq\','',0,'?'),(_binary '\n$|GP?-p\\','wp-content/themes/Divi/includes/builder/module/Tabs.php',0,_binary 'PrIڏyWy\"\2w~\',_binary 'PrIڏyWy\"\2w~\',_binary 'V#O?\\\U؝pcj\\_b2V˘\\rȖ\','',0,'?'),(_binary '\_\3}*NJ\0','wp-content/themes/Divi/includes/builder/module/TabsItem.php',0,_binary 'fq$p5J\\N',_binary 'fq$p5J\\N',_binary '\Mm\=J\<\o7\\3\)\k\1EՋ\\','',0,'?'),(_binary '!{UQG\r\[','wp-content/themes/Divi/includes/builder/module/TeamMember.php',0,_binary '\[\h|N\\\\0e',_binary '\[\h|N\\\\0e',_binary '\+~|\\X\9\\pT\o1\\ܙ\]','',0,'?'),(_binary '\-nB\\\i\JI\'\','wp-content/themes/Divi/includes/builder/module/Testimonial.php',0,_binary '2\\\'0\;g䃝]z`',_binary '2\\\'0\;g䃝]z`',_binary '\"E\"P\~\\!_ \_\\o#.','',0,'?'),(_binary '@;^Y\','wp-content/themes/Divi/includes/builder/module/Text.php',0,_binary '⛾0\͚',_binary '⛾0\͚',_binary '\\\0	aAw\\\\\I\WD<\L','',0,'?'),(_binary 'eYI,\','wp-content/themes/Divi/includes/builder/module/Toggle.php',0,_binary '\`7L]%^]e',_binary '\`7L]%^]e',_binary '菍1b}\\6\2\\ʝTN\\','',0,'?'),(_binary 'X\\%\\;:\','wp-content/themes/Divi/includes/builder/module/Video.php',0,_binary '\( Je\\\a',_binary '\( Je\\\a',_binary 'a\\\'\k\\H.\a~Ӯ^-','',0,'?'),(_binary 'jX_m\.wq','wp-content/themes/Divi/includes/builder/module/VideoSlider.php',0,_binary 'j\\>[\i>\',_binary 'j\\>[\i>\',_binary '8\\\-z\_%BE (X\\\8o	','',0,'?'),(_binary 'έ\\h\:\)Q\"*','wp-content/themes/Divi/includes/builder/module/VideoSliderItem.php',0,_binary 'v\\\\M\?\\\',_binary 'v\\\\M\?\\\',_binary '5І,\r}e\\\l\9#Sz!\','',0,'?'),(_binary 'q\!\P\ɼb\:','wp-content/themes/Divi/includes/builder/module/field/Base.php',0,_binary '\x@\\Q_wC',_binary '\x@\\Q_wC',_binary '\\J}DpkSXWb\b\\ι','',0,'?'),(_binary '\\\H\"\ڨ|\A!','wp-content/themes/Divi/includes/builder/module/field/Border.php',0,_binary ' F-Jږ\Z',_binary ' F-Jږ\Z',_binary '\:=dV#\\OKaz448/|H\0Z\.','',0,'?'),(_binary '$j?\rե','wp-content/themes/Divi/includes/builder/module/field/BoxShadow.php',0,_binary 'uHz,\\\\\O\,]',_binary 'uHz,\\\\\O\,]',_binary '!\\Z^ZF\RՕ18-\Y\\p','',0,'?'),(_binary 'kEM\\x$S\30','wp-content/themes/Divi/includes/builder/module/field/Divider.php',0,_binary '\IC\\d{0pp\}',_binary '\IC\\d{0pp\}',_binary 'J\a\}h;\}\\n\r\nM\ȧ_wJ','',0,'?'),(_binary 'ڋz􌹛lo\ֵJ','wp-content/themes/Divi/includes/builder/module/field/Factory.php',0,_binary '}\\4\ۥ',_binary '}\\4\ۥ',_binary '\\\Ĩ3p\\|eҟȩ\E\_S\q','',0,'?'),(_binary '\~}\Y\\s2ګ\','wp-content/themes/Divi/includes/builder/module/field/TextShadow.php',0,_binary 'A\'\K\6\\\Y\0',_binary 'A\'\K\6\\\Y\0',_binary '<s\\'1\5mTJTeMH\?{,\.','',0,'?'),(_binary 'ؙAJ&\AgiT','wp-content/themes/Divi/includes/builder/module/field/attribute/composite/Parser.php',0,_binary '\\ײ.:\\Y\',_binary '\\ײ.:\\Y\',_binary '\(\\\B\5()`\R\\\\#%m','',0,'?'),(_binary '\ a\E\ˎ\\','wp-content/themes/Divi/includes/builder/module/field/attribute/composite/type/Tabbed.php',0,_binary 'Q2G\\\\w\<^\',_binary 'Q2G\\\\w\<^\',_binary '\\aG\\ ̒\٥\G7OR\\n','',0,'?'),(_binary 'ϐ\n\\)\\','wp-content/themes/Divi/includes/builder/module/field/template/Base.php',0,_binary 'YM\\UJrI\&s',_binary 'YM\\UJrI\&s',_binary '\ntF܌q#ݣ}\f\`j0\H\\j','',0,'?'),(_binary 'ܧ-\Kq','wp-content/themes/Divi/includes/builder/module/field/template/Tabbed.php',0,_binary '7K%I\\&H\',_binary '7K%I\\&H\',_binary '$\^\P+~a	2\0]!^A&,k\̔; d','',0,'?'),(_binary '	T7T\n\\V\Xk','wp-content/themes/Divi/includes/builder/module/field/template/border/Radius.php',0,_binary 'ߝ<\\\/',_binary 'ߝ<\\\/',_binary 'aY\q\n\cFzC\i4F\\7|~}\Gq','',0,'?'),(_binary '7\y~\\\?\lI|','wp-content/themes/Divi/includes/builder/module/field/template/border/Styles.php',0,_binary '\LO\\?\\6\ro',_binary '\LO\\?\\6\ro',_binary '5/]r\|G)\\\3؞X<\\M\06qi','',0,'?'),(_binary '\\Zt4dn','wp-content/themes/Divi/includes/builder/module/settings/Migration.php',0,_binary 'Zf\ߖ1Ţq	',_binary 'Zf\ߖ1Ţq	',_binary '\rUCI\\\23e\\;<8Ĩ\Nԃ9\Z\l\4\','',0,'?'),(_binary ')~9/q\δE\t','wp-content/themes/Divi/includes/builder/module/settings/migration/Animation.php',0,_binary 'R\\"g\ӂ',_binary 'R\\"g\ӂ',_binary 'ߙ̈kI\U2\d)\\W\Hb\:\','',0,'?'),(_binary '-w{0c7m\\','wp-content/themes/Divi/includes/builder/module/settings/migration/BackgroundUI.php',0,_binary '>p/\0Dc#Ԃ',_binary '>p/\0Dc#Ԃ',_binary ';\0\d\\\'o\\yՃ?I3}wL1','',0,'?'),(_binary '\(S\Dg2+o','wp-content/themes/Divi/includes/builder/module/settings/migration/BorderOptions.php',0,_binary 'h+`\r8wQ#s\Z',_binary 'h+`\r8wQ#s\Z',_binary '[\\ט\rO	\;֪FYӽhh\ך','',0,'?'),(_binary 'QLcy\\n\O:Ӡ\','wp-content/themes/Divi/includes/builder/module/settings/migration/DropShadowToBoxShadow.php',0,_binary 'o6\dV<F<\*2\',_binary 'o6\dV<F<\*2\',_binary '\o\=AF\Ϛ!|\h?O\u','',0,'?'),(_binary '!⵳\x\ձБ','wp-content/themes/Divi/includes/builder/module/settings/migration/FilterOptions.php',0,_binary '\{&AI\*\\\'\',_binary '\{&AI\*\\\'\',_binary '\wP\G\h\Azz\Sܯk\','',0,'?'),(_binary '\lqf\\\0C<\ۓ~\\h','wp-content/themes/Divi/includes/builder/module/settings/migration/FullwidthHeader.php',0,_binary '܀\?\.',_binary '܀\?\.',_binary 'p\J\r#o\h\^FbR\\\ӊ,\gT07\','',0,'?'),(_binary '\\'\\*yG;:','wp-content/themes/Divi/includes/builder/module/settings/migration/FullwidthHeader2.php',0,_binary '4{oe	04c',_binary '4{oe	04c',_binary '%A+v\XS.N\Ae!\O\\8','',0,'?'),(_binary 'nC\Mc]b\h>;','wp-content/themes/Divi/includes/builder/module/settings/migration/InnerShadowToBoxShadow.php',0,_binary '\0`~ؕ\>tLS7',_binary '\0`~ؕ\>tLS7',_binary '	i{\]+L\iN\ud\7p\5n\\\v	','',0,'?'),(_binary '.%\g]\~n\|','wp-content/themes/Divi/includes/builder/module/settings/migration/OptionsHarmony.php',0,_binary 'z[\@jS.\\\%\',_binary 'z[\@jS.\\\%\',_binary '8r\\;0\>w*\\\yᶶ','',0,'?'),(_binary '\nG>YO.)YQ','wp-content/themes/Divi/includes/builder/module/settings/migration/ShopModuleSlugs.php',0,_binary 'k\\8\b\'z|\',_binary 'k\\8\b\'z|\',_binary '0\k\\\&\4\e|\\g\n\=L-3t','',0,'?'),(_binary '5Y6(\Z@SB','wp-content/themes/Divi/includes/builder/module/type/PostBased.php',0,_binary ']\*hx\G7{R',_binary ']\*hx\G7{R',_binary 'C\穏 \M[vB\9\"vKLe\\$\\\%o','',0,'?'),(_binary 'sJz\߼1!\\','wp-content/themes/Divi/includes/builder/plugin-compat/amazon-s3-and-cloudfront-pro.php',0,_binary 'p\闷ajF\a.hi',_binary 'p\闷ajF\a.hi',_binary 'SV%	Ɣ{E\	,^XE8q\'k%','',0,'?'),(_binary '/\Q(B̋]','wp-content/themes/Divi/includes/builder/plugin-compat/amazon-s3-and-cloudfront.php',0,_binary '7\/~q3\\y',_binary '7\/~q3\\y',_binary ' wDH\=\\ U[\ft\r\1\x','',0,'?'),(_binary 'TI\G\x\TN','wp-content/themes/Divi/includes/builder/plugin-compat/divi_layout_injector.php',0,_binary '\Y%\\VR ͍$\	',_binary '\Y%\\VR ͍$\	',_binary 'U{;B\F\n;+\>bՏ\\d\\/\','',0,'?'),(_binary '<Z\{\\\xs','wp-content/themes/Divi/includes/builder/plugin-compat/dk-pdf.php',0,_binary '\i\QS\E\\',_binary '\i\QS\E\\',_binary '\n\q+N6\\^BrEh\(\r<q\','',0,'?'),(_binary '-\H\rhꈟ\jB','wp-content/themes/Divi/includes/builder/plugin-compat/easy-digital-downloads.php',0,_binary 'y\'8y\ꆾo߈:r&',_binary 'y\'8y\ꆾo߈:r&',_binary '$%~\@tȗ\\.9a-ˮ2,M\\Z','',0,'?'),(_binary 'Le6\muzY\ ','wp-content/themes/Divi/includes/builder/plugin-compat/insert-pages.php',0,_binary 'wI}L`R\\Mh\\\\',_binary 'wI}L`R\\Mh\\\\',_binary 'w\g\nQ\\m؍Nj\~\Sw\','',0,'?'),(_binary '\;\^ء1<Z^\','wp-content/themes/Divi/includes/builder/plugin-compat/mappress-google-maps-for-wordpress.php',0,_binary 'oJ&;\r{H\P',_binary 'oJ&;\r{H\P',_binary 'ڲ^-asZ&ܟa C\\0qtv1	\:','',0,'?'),(_binary 'Co+J\&?\Ǘb','wp-content/themes/Divi/includes/builder/plugin-compat/siteorigin-panels.php',0,_binary '9	}Uŕ\+\Y',_binary '9	}Uŕ\+\Y',_binary '#	\)^\iN\"\\\-\Fk/\E\(䖊','',0,'?'),(_binary ',(御\-0\"5$\\','wp-content/themes/Divi/includes/builder/plugin-compat/sitepress-multilingual-cms.php',0,_binary 'DD}\5\\?\zJ',_binary 'DD}\5\\?\zJ',_binary 'Z3\Ta\ncOAt\\k\\\$','',0,'?'),(_binary '\MPsX!\P\\','wp-content/themes/Divi/includes/builder/plugin-compat/table-of-contents-plus.php',0,_binary '0^4qU\\9-Ea',_binary '0^4qU\\9-Ea',_binary '\T4M\B\\R\I-\ZXH^|\\\}','',0,'?'),(_binary '4h26V١','wp-content/themes/Divi/includes/builder/plugin-compat/woocommerce.php',0,_binary '#\ZF\\\ٍ&',_binary '#\ZF\\\ٍ&',_binary '7T]7\\+\n\\\ \\P\\\0\\n4V','',0,'?'),(_binary '=lf\G>\\\\S','wp-content/themes/Divi/includes/builder/plugin-compat/wordpress-seo.php',0,_binary '\ՀJX\\^\v:e',_binary '\ՀJX\\^\v:e',_binary '\<D(/p\'s\ ġ0\\}\fJA^	','',0,'?'),(_binary '\O\}\\'5T!\ZOܷ','wp-content/themes/Divi/includes/builder/post/query/Layouts.php',0,_binary '\\ktؽ\\$Az\|',_binary '\\ktؽ\\$Az\|',_binary '\h\JR\r}\"xr\S\*CŲ\QL','',0,'?'),(_binary 'h\p܎\nPotI','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutCategory.php',0,_binary 'ӟ!\_Z\r\h+\',_binary 'ӟ!\_Z\r\h+\',_binary '#t\\\\\\\0\\/9#0X\\']K̨\ʐ?\0','',0,'?'),(_binary 'f[/iOe\}-j#','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutPack.php',0,_binary '4\\nCLr=',_binary '4\\nCLr=',_binary '\1\ws?\\OzvM676R\$','',0,'?'),(_binary 'tg(&uj','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutScope.php',0,_binary '<\\\os\+N%$',_binary '<\\\os\+N%$',_binary '^Â\\\yK\阙\u&N\Zj}\A','',0,'?'),(_binary '\\oz5\}ҭӉx>\f','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutType.php',0,_binary '5&U\\J',_binary '5&U\\J',_binary '\\0\!vM˗\P{q\'ۏ3\','',0,'?'),(_binary 'j\qԃ鿑W=\','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutWidth.php',0,_binary '\j4\Y^\V\r',_binary '\j4\Y^\V\r',_binary '\<\\njyT\,\=L\@.\\شU\','',0,'?'),(_binary ')q4/\mII0 ','wp-content/themes/Divi/includes/builder/post/type/Layout.php',0,_binary '5d\n\Z94\t\Jj\r',_binary '5d\n\Z94\t\Jj\r',_binary '\"g\%T[\G\?\\\\̺\.3 $','',0,'?'),(_binary '\\'\vwy*F','wp-content/themes/Divi/includes/builder/scripts/admin_global_functions.js',0,_binary '*9W\ip1u&\\',_binary '*9W\ip1u&\\',_binary '\!\v2]}[\T\3a8E|\*ȸA|','',0,'?'),(_binary '\Tg@p@\\\\0\','wp-content/themes/Divi/includes/builder/scripts/builder.js',0,_binary '\4./\\\\\P\';',_binary '\4./\\\\\P\';',_binary 'Y\rr\\+B_\Zo!\_C*\8.į','',0,'?'),(_binary '\\\h\\','wp-content/themes/Divi/includes/builder/scripts/cache_notice.js',0,_binary '\Q>b\',_binary '\Q>b\',_binary '\\)s$\\פ=CB|!\\r\Z\b߱','',0,'?'),(_binary 'ڠ{KC2tѫ[','wp-content/themes/Divi/includes/builder/scripts/ext/chart.min.js',0,_binary '\r0`\ZZ= 5T(',_binary '\r0`\ZZ= 5T(',_binary '\r !\\\\"nN\!vD\a\\2̏\y\:','',0,'?'),(_binary '\'_3\n\\\_t\\','wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.10.4.custom.min.js',0,_binary '#)\(\jMnC8X',_binary '#)\(\jMnC8X',_binary 'ٱ\\WP}\݀$#\J\\1\Чo:','',0,'?'),(_binary '5Y92*BHh','wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.11.4.custom.min.js',0,_binary '\\\(g\!~!뿪\',_binary '\\\(g\!~!뿪\',_binary '\NP\\\\m\J\u6WT\\>\','',0,'?'),(_binary '\OR\'\f\R\','wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-timepicker-addon.js',0,_binary '\\\\\AO\$S',_binary '\\\\\AO\$S',_binary '\\\Z8N\g\"2X\?9qgKC_\94)','',0,'?'),(_binary 'p\\\r\.\1D\n','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.minicolors.js',0,_binary '3\nFG\\-X\?',_binary '3\nFG\\-X\?',_binary '	b]AT΀j{\^`\5\K{\6A\Z\1pNa','',0,'?'),(_binary ')>2\Z\ӧ','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.tablesorter.min.js',0,_binary '\	\Ao\ n~\\',_binary '\	\Ao\ n~\\',_binary '\\rsґ*gD\t$źnQ\\*sw','',0,'?'),(_binary '\\i3~\','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.validate.js',0,_binary '2I\EAG\rA\\',_binary '2I\EAG\rA\\',_binary 's\`#\\汏G%\ \\⡪El\'','',0,'?'),(_binary 'MRaΫr\wgČ','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.visible.min.js',0,_binary 'GArdY\\|\\y˓',_binary 'GArdY\\|\\y˓',_binary 'q\]TQwjWt\\\p7l\0','',0,'?'),(_binary 'zU#;ǻhf\1m','wp-content/themes/Divi/includes/builder/scripts/ext/media-library.js',0,_binary ')<߮\֞Y\ \0\',_binary ')<߮\֞Y\ \0\',_binary 'zz\3.q@gFϦ3\ر^-','',0,'?'),(_binary 'cӭRXb\a1lT','wp-content/themes/Divi/includes/builder/scripts/ext/widgets.js',0,_binary 'nq\zv#֟r',_binary 'nq\zv#֟r',_binary 'e\Zv9yuAu\\2|\=Aʂ','',0,'?'),(_binary '\ܹa\\\\\|8\O','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha-48.js',0,_binary '\~	d-\J.\\',_binary '\~	d-\J.\\',_binary '>u.CͧWV{M\[\b?\iZ','',0,'?'),(_binary '\oR\\#۴-(\\%','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha-48.min.js',0,_binary 'fwv\X<V\\',_binary 'fwv\X<V\\',_binary 'X\c1gU\\'h\zd*\<kā\\Z','',0,'?'),(_binary 'w\\\[@hS','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.js',0,_binary ';5/<\Rr\\',_binary ';5/<\Rr\\',_binary '^\"Q~\\\\\+k\ع\]-\\.\\','',0,'?'),(_binary 'L++0O\_\j','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.min.js',0,_binary '\\\(B| \\b\r',_binary '\\\(B| \\b\r',_binary '3\4\\\}ؠc	\n̎}1+n8\\y\','',0,'?'),(_binary 'c\0\Γ8Io}','wp-content/themes/Divi/includes/builder/scripts/failure_notice.js',0,_binary '\\\\4Mi\\'',_binary '\\\\4Mi\\'',_binary 'N\\-\s\4 !\n\lP\<Xb f1:\$','',0,'?'),(_binary '\9?7\\V3\0Ư\','wp-content/themes/Divi/includes/builder/scripts/frontend-builder-global-functions.js',0,_binary '\\\Ul\\\\',_binary '\\\Ul\\\\',_binary 'Ձ\\E\e*\39v\\/\\($H\','',0,'?'),(_binary '`P\%5\\\W\}\','wp-content/themes/Divi/includes/builder/scripts/frontend-builder-preview.js',0,_binary 'uRfIZ〭\\/',_binary 'uRfIZ〭\\/',_binary '\񢤴\0\\,q\\\\Η}2C\HJO\H','',0,'?'),(_binary '&\?j\k3>L\','wp-content/themes/Divi/includes/builder/scripts/frontend-builder-scripts.js',0,_binary 'S\-v(\"\',_binary 'S\-v(\"\',_binary '\'~\\!yf\\\\ߝϊb--2m\','',0,'?'),(_binary 'S\Z\W]e\M','wp-content/themes/Divi/includes/builder/scripts/jquery.easypiechart.js',0,_binary '7zvȀ',_binary '7zvȀ',_binary ' \\\>T\Ϧ\`\p\~+3S\\\\u\\','',0,'?'),(_binary '\S\dk8q\\F','wp-content/themes/Divi/includes/builder/scripts/jquery.fitvids.js',0,_binary '\ZS	\G԰r',_binary '\ZS	\G԰r',_binary '\\r\n\ҷn ȥG췔i\Z8ݏ- \n','',0,'?'),(_binary '3r%Bwz\.\@q\','wp-content/themes/Divi/includes/builder/scripts/jquery.hashchange.js',0,_binary '\` \5jYb\(&',_binary '\` \5jYb\(&',_binary 'LH/K<\N?u\\Ռ\\A\\ܯB6','',0,'?'),(_binary '؇3\\:OA()','wp-content/themes/Divi/includes/builder/scripts/jquery.magnific-popup.js',0,_binary 'DA\ȬeQ\',_binary 'DA\ȬeQ\',_binary 'G(\0k\*A\f%\ZI\"\\t\\G\nRskW','',0,'?'),(_binary '\c?Tٓg\\ZG','wp-content/themes/Divi/includes/builder/scripts/jquery.mobile.custom.min.js',0,_binary 'Z#\Q\\\\)^\f\',_binary 'Z#\Q\\\\)^\f\',_binary 'E_/s\}F1\&E;g\zǖhP','',0,'?'),(_binary 'q^\vƴ\"\1h\vxH','wp-content/themes/Divi/includes/builder/scripts/library_category.js',0,_binary 'ps7\\$\\\R2<',_binary 'ps7\\$\\\R2<',_binary '\o}M\:\x\+#\ZH%\^\>W=','',0,'?'),(_binary 'm\߷FQoڅ\\n(f\','wp-content/themes/Divi/includes/builder/scripts/library_scripts.js',0,_binary '@\s,\Ó{@L',_binary '@\s,\Ó{@L',_binary 'n;D (%r\X/rU>\,!υ5W','',0,'?'),(_binary '΢7|J޸BN\M\W','wp-content/themes/Divi/includes/builder/scripts/lz-string.min.js',0,_binary '\̧\r\\+',_binary '\̧\r\\+',_binary 'P`\\⺣)\0Y\\3.N\[a\\k\\nn','',0,'?'),(_binary 'B\J\xګ)J','wp-content/themes/Divi/includes/builder/scripts/reset_memory_limit_increase_setting.js',0,_binary '\`3\r\<;\m\0$\',_binary '\`3\r\<;\m\0$\',_binary 'S\&\\z2HߪPd;\>Tx\','',0,'?'),(_binary '!+?\:\\]c\~','wp-content/themes/Divi/includes/builder/scripts/roles_admin.js',0,_binary '\-\Y*\Ps:#*i',_binary '\-\Y*\Ps:#*i',_binary '\7XFܠ\\J0,\r\\\','',0,'?'),(_binary '\Q\՗2\%:','wp-content/themes/Divi/includes/builder/scripts/salvattore.min.js',0,_binary ' |$0i\(\\p',_binary ' |$0i\(\\p',_binary 'LC?Y\\n4\?2','',0,'?'),(_binary 'L\0 cl~;jid\','wp-content/themes/Divi/includes/builder/scripts/waypoints.min.js',0,_binary '0೏\ey\0C\\Z',_binary '0೏\ey\0C\\Z',_binary '(-\xf\"e\2`K	Q1=M\\','',0,'?'),(_binary '\@\\a l\QDm','wp-content/themes/Divi/includes/builder/template-preview.php',0,_binary '\\_h:;\N}U',_binary '\\_h:;\N}U',_binary 'ȥ\\\9\Kk[*~\\Z0=f-:','',0,'?'),(_binary '?\\Pp-Q\\j','wp-content/themes/Divi/includes/functions/choices.php',0,_binary '\ے<s_[\\',_binary '\ے<s_[\\',_binary '(\\=5\uW\\5{\"H\njS\o','',0,'?'),(_binary 'Fkl#6\Z\','wp-content/themes/Divi/includes/functions/installation.php',0,_binary '\z\\'PW[m\\\{',_binary '\z\\'PW[m\\\{',_binary '$?Z\\\K3}\\J`˪\P>\0','',0,'?'),(_binary '\yb	\	\\\b	\','wp-content/themes/Divi/includes/functions/sanitization.php',0,_binary '\(-\wtxʶ\\\\',_binary '\(-\wtxʶ\\\\',_binary 't յ\\\-\\\iVE\dS`w\n\\','',0,'?'),(_binary '{\OS3=;(cŧ','wp-content/themes/Divi/includes/functions/sidebars.php',0,_binary '@N;O\w%\',_binary '@N;O\w%\',_binary 'E\O\\ET\rC\\Fj\9=\#s\'3\i','',0,'?'),(_binary 'icdk,\q7','wp-content/themes/Divi/includes/functions/tutorials.php',0,_binary '\"I<^X\c\+GtX\\',_binary '\"I<^X\c\+GtX\\',_binary 'v0\R\\"\\\n\Cأ\@\h6L\nI\\j','',0,'?'),(_binary ':ru\R\/˹\na','wp-content/themes/Divi/includes/navigation.php',0,_binary 'ȼ\\\6\m2',_binary 'ȼ\\\6\m2',_binary '*\k\\\n`9\\o\d\Z7դY }','',0,'?'),(_binary '\8\{.WQ\','wp-content/themes/Divi/includes/no-results.php',0,_binary 'G҃\\2t*|U',_binary 'G҃\\2t*|U',_binary 'a&\\\Z\\\\Lܠ\OR	:\','',0,'?'),(_binary '0{Z,MڹԚ\Z\','wp-content/themes/Divi/includes/social_icons.php',0,_binary '\\\0\VsY\ԨHH',_binary '\\\0\VsY\ԨHH',_binary '\5eG*\[\\񺅪13\\\A\z\\','',0,'?'),(_binary 'hu\O\\n$x:<w,','wp-content/themes/Divi/includes/widgets/widget-about.php',0,_binary '\r\\/5-/\Cf\\',_binary '\r\\/5-/\Cf\\',_binary ' /2\\\_T{\/\ؑ!lm','',0,'?'),(_binary ' De4G0\\\@d','wp-content/themes/Divi/includes/widgets/widget-ads.php',0,_binary '.gU^ċ\\K_	',_binary '.gU^ċ\\K_	',_binary '\Cՠz4cg-o\[[)\+','',0,'?'),(_binary '\nS@\\JF\\!\','wp-content/themes/Divi/includes/widgets/widget-adsense.php',0,_binary 'L\r\s\5\\U\࠺Q',_binary 'L\r\s\5\\U\࠺Q',_binary '\\P\?\\\%\:\w\2','',0,'?'),(_binary '\~\\,F\\\','wp-content/themes/Divi/includes/widgets.php',0,_binary ':P\X\\/>8@\',_binary ':P\X\\/>8@\',_binary '\\HR+><!)n̷Mq\\\Nu\r¯','',0,'?'),(_binary 'xi\\i\%pMΜ6@','wp-content/themes/Divi/index.php',0,_binary '\LS\յl',_binary '\LS\յl',_binary '+\F.h%)q\\\Dּ*\\<Xru','',0,'?'),(_binary '\,R\\l(=\nq','wp-content/themes/Divi/js/admin_post_settings.js',0,_binary '\8.~xKR,',_binary '\8.~xKR,',_binary '{\4*\\n\\'kK\\\Q\nq>X','',0,'?'),(_binary '\4\(&Q\Z','wp-content/themes/Divi/js/custom.js',0,_binary ']ƒ=\R\ɸI',_binary ']ƒ=\R\ɸI',_binary 's<?oA\0y\\&\,{lF\'m\\=w%BWV\<','',0,'?'),(_binary '!\3e&\:eF\\','wp-content/themes/Divi/js/custom.min.js',0,_binary '\w\X\ↁE.l',_binary '\w\X\ↁE.l',_binary '_|2\%w쾆rJ\5v;\','',0,'?'),(_binary 'uT\֦n\\','wp-content/themes/Divi/js/html5.js',0,_binary '_\\ucW#',_binary '_\\ucW#',_binary ',SAu\`\r(5n9NaO\IU\','',0,'?'),(_binary 'E\\e<\W\\\','wp-content/themes/Divi/js/menu_fix.js',0,_binary 'y8^C\r\'\\V\',_binary 'y8^C\r\'\\V\',_binary 'j>X͆\2\Z3\\ry4`\\P1K5C','',0,'?'),(_binary 'd0re&','wp-content/themes/Divi/js/smoothscroll.js',0,_binary '\܋@d\R=T',_binary '\܋@d\R=T',_binary 'U;kw\\\\"=P:_g:wڛ\7m#0\','',0,'?'),(_binary '\\kO@ȏ|W','wp-content/themes/Divi/js/theme-customizer-controls.js',0,_binary '\\z~Lz\\?ʝ\\',_binary '\\z~Lz\\?ʝ\\',_binary ';W\ޛl5ai=([`a!z\'\KilD;','',0,'?'),(_binary '\'\"p~Z\k','wp-content/themes/Divi/js/theme-customizer.js',0,_binary '$\\5\\Z|z',_binary '$\\5\\Z|z',_binary '\\`\}͠>^\\\\yM\=','',0,'?'),(_binary '\\flWIk\\','wp-content/themes/Divi/options_divi.php',0,_binary '?\\Z\]Nt\',_binary '?\\Z\]Nt\',_binary '\\aܣ\\D:;\{4pT\','',0,'?'),(_binary 'v\Z\\\n3','wp-content/themes/Divi/page-template-blank.php',0,_binary '#1^\M\L\<]$\',_binary '#1^\M\L\<]$\',_binary '\W _[\m/3&hV4RwˑW=:\	','',0,'?'),(_binary '\אa\8S\\','wp-content/themes/Divi/page.php',0,_binary '\)4\\I{\\\_\\',_binary '\)4\\I{\\\_\\',_binary 'l\^\\\Nru\ׇ\?Y\S','',0,'?'),(_binary '\\}\MKBbU+','wp-content/themes/Divi/post_thumbnails_divi.php',0,_binary '\hԛ0\&',_binary '\hԛ0\&',_binary '\n\'N>\rR~\CAW\c-\n1Wt?','',0,'?'),(_binary 'RE:\`*T,\'','wp-content/themes/Divi/sidebar-footer.php',0,_binary '~=\h-\k\n',_binary '~=\h-\k\n',_binary '/X$\0VH2\,\C\ZMd\\=ny+','',0,'?'),(_binary 'U+C\#OK\\\','wp-content/themes/Divi/sidebar.php',0,_binary '23xo\\\',_binary '23xo\\\',_binary '_\ȼcˑx	\wOȹǀ?r+\f;Vǭ','',0,'?'),(_binary '>\q҇s\0\@AP','wp-content/themes/Divi/single-et_pb_layout.php',0,_binary '\r7\r\\J5v\\O',_binary '\r7\r\\J5v\\O',_binary '\Gx\rxO\\\0\\oYu0\d\睱L ','',0,'?'),(_binary 'I簽\VmFk\8','wp-content/themes/Divi/single-project.php',0,_binary '\`\8i\ڿz',_binary '\`\8i\ڿz',_binary '^fG.)\\\\+\V\\}\7̆9','',0,'?'),(_binary '֠#XX4ǽ\\Z\\\','wp-content/themes/Divi/single.php',0,_binary 'Zj\\\ёU҆M\'v',_binary 'Zj\\\ёU҆M\'v',_binary '\[ݵ\P豺\ǩJ\\G_e\\=/yؐ','',0,'?'),(_binary 'I,\khmIb\w','wp-content/themes/avenue/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6+\\\r%\6V3',_binary '\\99+\\2\Zu\agl!]\F76','',0,'?'),(_binary 'nwa\\0l\rR~,','wp-content/themes/avenue/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sP\\\\Z\\',_binary 'X;\1Mr\G{\\y\\%1\`\\ak[','',0,'?'),(_binary '\\PpxUeKd\\j','wp-content/themes/avenue/README.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2B\\"HR?\|K<',_binary '||g6¸@Z2܄k}_\\pOpu\X','',0,'?'),(_binary '\KUO\\k\ruY','wp-content/themes/avenue/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ߦ~!c\<y/',_binary '8\\O\\\\:\'\\}m$لg̠\\\_ǷE','',0,'?'),(_binary '\\X\q%\\\N','wp-content/themes/avenue/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B\\fw5\\\Z}\<',_binary 'n*\/\a	\z>\Zި؁}\F~\ɂ','',0,'?'),(_binary 'ҧc>\\\"','wp-content/themes/avenue/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f?\g\WʽW;\\',_binary 'e\B*\/\S\hb\\Jj-\\','',0,'?'),(_binary '\\VSjU$u䙁','wp-content/themes/avenue/front-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|p*sG\',_binary 'nE\\\mL9\\d^l\\9r\','',0,'?'),(_binary '\\ӨDw&;\\r','wp-content/themes/avenue/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~-NcȒj[\',_binary ' \`\\\\[\\\Z\EI\|\\\Z\Z','',0,'?'),(_binary '~`{VQ\zw\','wp-content/themes/avenue/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\\kc8p%',_binary '\5V\ {7_o\\\]B\\5\+ܔ','',0,'?'),(_binary 'Xk5҇Đ','wp-content/themes/avenue/inc/avenue/avenue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\\\T\\\4wH}k5@/',_binary '\\'}\\{\(8@U12HU\%n\'[6','',0,'?'),(_binary '\b?\hm0,','wp-content/themes/avenue/inc/class-tgm.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\cMʍ\'TKat',_binary '?xv\\\eS<ytgieI\d`\\Kݻ','',0,'?'),(_binary '\~\\\UQy]55','wp-content/themes/avenue/inc/css/animate.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\J(Q\r \[',_binary '.஢8\\Q<\Z/\dȉ\hV\v','',0,'?'),(_binary 'աsq\N\0ޠ\','wp-content/themes/avenue/inc/css/avenue.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@1v\\|s\',_binary ']\Ňl.\\&ǣ\"\T7)P;','',0,'?'),(_binary '\*7Yg\{\&','wp-content/themes/avenue/inc/css/bootstrap.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*1ܡ\i#v\vLX\',_binary '.bHԱ=\\\-\]3\\\\k{','',0,'?'),(_binary 'XŉP\0','wp-content/themes/avenue/inc/css/bootstrap.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;*\0\vEM',_binary '%\Ҵ p\\{^sD\@V\X\!\]M','',0,'?'),(_binary 'nڧ(\\Ӣ\','wp-content/themes/avenue/inc/css/camera.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\*!\t\0cZqm',_binary '+9=\U\k%\nj\3?\'\\\|5\\\v\','',0,'?'),(_binary 'o?Z\\#\Fx','wp-content/themes/avenue/inc/css/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ĕeHix[\\`!fJ\',_binary '\\}\˹t$\)\ʦP\1~܀\','',0,'?'),(_binary '5IaU1[B,Q\VF]','wp-content/themes/avenue/inc/css/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&PS\'Z5Z}\\',_binary '\\qa#T0\Tn=\\8X\nBg%΀L','',0,'?'),(_binary 'q\\blg12.','wp-content/themes/avenue/inc/css/old_avenue.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\g\"\0hoy\@V\',_binary 'VG֟bG(O(\pY\VǴ\0F\J\','',0,'?'),(_binary '#7i\.\\@','wp-content/themes/avenue/inc/customizer-panels/settings-appearance.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4N\esM0\_\nan',_binary ':\7A;N@6b\"<RSz\\nK*SUF','',0,'?'),(_binary '*_s\I}\ƽ\)\:','wp-content/themes/avenue/inc/customizer-panels/settings-blog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r4\\\F\H象ߌ',_binary 'ۋ\4K>=8<PA\0;\"Vh\2\','',0,'?'),(_binary 'fސa&8\\j\rp','wp-content/themes/avenue/inc/customizer-panels/settings-frontpage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̮ųA\\7mN\',_binary 'q\ϓmFu\F!\\S+l+\$+,\','',0,'?'),(_binary '\\\@\i\Z)\\g \','wp-content/themes/avenue/inc/customizer-panels/settings-header-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\J\0ZAh\\Z,',_binary 'h\y<\6[sA\\r\,a\0\c\','',0,'?'),(_binary '8\\9\"P#\','wp-content/themes/avenue/inc/customizer-panels/settings-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CK	ϋ@Sh~>U',_binary '\'3\\70+\]EX\e[\"z8]','',0,'?'),(_binary '3Y`0\F=vEK','wp-content/themes/avenue/inc/customizer-panels/settings-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\{\7\/',_binary '\u\|!#-Jw{\\Z\H)\롄','',0,'?'),(_binary '\\\b\\/;lVI','wp-content/themes/avenue/inc/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r\\\\G\',_binary 'MW&\2\"TP)Z\Prs9\\V4','',0,'?'),(_binary '\qR\\Ҿ;.`','wp-content/themes/avenue/inc/font-awesome.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\Y\_\AW\',_binary 'c\\my\'_\\nZıg,e\'w2-#hu','',0,'?'),(_binary 'IZxDqW\\\yI','wp-content/themes/avenue/inc/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hq\\A\i',_binary '	q68xօ\\\s\rN~.Zخ[\"','',0,'?'),(_binary 'ڞ\\\\m\Z\Yo\','wp-content/themes/avenue/inc/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nq*\\ZF)2',_binary '\&4\"\rQjX\mN\"\\?Po\\\\\?','',0,'?'),(_binary 'C4jӛJ~uc\d\3','wp-content/themes/avenue/inc/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\\\ 6>',_binary '\@⣂L\EQ\\(ieq[N|&\Ð\','',0,'?'),(_binary 'fHWrqKt','wp-content/themes/avenue/inc/images/avenue_demo.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KjLt&ؔv\\8',_binary 'q\\\'\\'h\ӧ-CuhGO\w-O@L-','',0,'?'),(_binary '\\udnT6p\\9','wp-content/themes/avenue/inc/images/camera-loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.)\\\\u\m',_binary 'QǬqu|ā::\\)xE\\=\%Xd-)9\','',0,'?'),(_binary ',\9\*MDFiF\','wp-content/themes/avenue/inc/images/camera_skins.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D#K!k1G\黾\',_binary 'eyJm/o\ZA`}C\R\U۴\II\','',0,'?'),(_binary '\"ͻ;ZQ_\Kc','wp-content/themes/avenue/inc/images/cat_logo_mini.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ry¢c~\w{',_binary 'Vw|\gbV]WG\t[\P9\_S)}{v','',0,'?'),(_binary '\\\OSll܃)5#','wp-content/themes/avenue/inc/images/close-mobile.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<t\vv\r=ݍ1DD*\',_binary '\ɨ\\/wC;\\ߥd8m\םM\M¯p','',0,'?'),(_binary '	\\Ԡ)1<Szw&','wp-content/themes/avenue/inc/js/avenue.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JC\\v`/s',_binary '\ԓ#\Ψ#B\\\\ΘS\k%\\\Z)\','',0,'?'),(_binary '߷w\4և&j\-=','wp-content/themes/avenue/inc/js/bigSlide.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6`\S\\\jlJ\'\',_binary 'K0w\P)7ӕqcA,z\\\vi\'','',0,'?'),(_binary 'Q\0\jUADO\P','wp-content/themes/avenue/inc/js/bigSlide.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&^5ߜ{r\',_binary '\H9|4n\0AjiL>\w\kZ\"\.\"','',0,'?'),(_binary '@	$\*\~\r\)j\','wp-content/themes/avenue/inc/js/bootstrap.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\e\W\',_binary '&4\\lw\\0\jD\n\\zVMG\0\\\','',0,'?'),(_binary '~\I7\Z\g','wp-content/themes/avenue/inc/js/bootstrap.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xi\l\񐆮\%\p\A',_binary '\Ho,\8\Jz\\8\fm\ОVp%3','',0,'?'),(_binary '=\zݚ\\b\z\','wp-content/themes/avenue/inc/js/camera.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0I,\\̺',_binary 'NӧPP<J}\L3&V\Z\"@+e r\\','',0,'?'),(_binary '\3<4P\-nZ\h','wp-content/themes/avenue/inc/js/camera.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>XQ@@\#UJJS ',_binary '\'\2@\䕯B\\\;]\rS','',0,'?'),(_binary '\|y6\[\\Y\','wp-content/themes/avenue/inc/js/jquery.easing.1.3.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eD\w\=~/B',_binary '{\ύ\{G[q\"\\\\\2a\\\\','',0,'?'),(_binary '%	ߑ$S41s\\cӝ','wp-content/themes/avenue/inc/js/jquery.sticky.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Si\\?B\\',_binary 'M:ƃb_\\\W?^\\_\','',0,'?'),(_binary '\i\\l\\Г\tD','wp-content/themes/avenue/inc/js/wow.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿ks\rR\Wr\g',_binary 'w;,Yný럢[vpyј2\"\\O','',0,'?'),(_binary 's$QPB%V=','wp-content/themes/avenue/inc/js/wow.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\MUKJ`\\g',_binary 'Pl|X	oa\I9\(Ӣ\\4CI336B','',0,'?'),(_binary 'k.\rH[I#̵\','wp-content/themes/avenue/inc/template-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\\\g\',_binary '\G\\\"\\t`}SLk\nc!\Z\)d','',0,'?'),(_binary 'V\hS!m\\(P','wp-content/themes/avenue/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2\C~JcT\Z',_binary 's6\\\\\}h\'W<Me\\v_s','',0,'?'),(_binary '(gV\\)t\\\V','wp-content/themes/avenue/inc/tgm.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̀\X\n5F\Q.',_binary 'a`@\ll UZ\Ԓ	U\\{\a\\\"g \','',0,'?'),(_binary '\n{[V`\\\;','wp-content/themes/avenue/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\6\\&(]V:',_binary '\\0ZlWTYr\0~\\ޚ\r\n\0','',0,'?'),(_binary 'd\\E?uiv<O','wp-content/themes/avenue/js/customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\m\)gj!r\T\8',_binary ',_Ц\\?t/*8`ϋnRG@','',0,'?'),(_binary '\N\\ 0\	L4\q`','wp-content/themes/avenue/js/navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'II3=|\[1|',_binary '6\製9\z\\eʿ̻kv\l','',0,'?'),(_binary '\\\\g{9(.m\','wp-content/themes/avenue/js/skip-link-focus-fix.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!uvʜ5/a',_binary '\:($KѼyϏ\7b\\f㓶','',0,'?'),(_binary '\\z{|n\S\Fg','wp-content/themes/avenue/languages/avenue.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\W\{%P\T X',_binary '[L+*\)*Ki-js~TaހQ\[p\','',0,'?'),(_binary '\l\˲B=5-,\\','wp-content/themes/avenue/languages/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V%\\W\n$`\"/c',_binary 'G\ܷ\B\^#0Z\8\;\\Q\\','',0,'?'),(_binary '^PF\l\]B\%\','wp-content/themes/avenue/layouts/content-sidebar.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$e*P8Kfw\\e\',_binary '\\\f\RB\";\\K.H7r\\1F\\','',0,'?'),(_binary 'r\\Ayq\C\v\js','wp-content/themes/avenue/layouts/sidebar-content.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\}`UK\\?',_binary '\S\h1\0\Mr=\y\\x\}ǌ','',0,'?'),(_binary 'ر\s\zsj躑VGJ','wp-content/themes/avenue/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a<*u+hh\n~d',_binary 'sG\\րYϚv\~\'C?\S=d\R','',0,'?'),(_binary '\!cb\d|7\\N\','wp-content/themes/avenue/screenshot.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h+\\ف\\\',_binary '\~>\@U[$\G\\\Ww\iq}\\','',0,'?'),(_binary '&\5\G\7*	\!M8','wp-content/themes/avenue/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\@l7*d',_binary '\\\Q`½(S\m\','',0,'?'),(_binary 'Aq\aTK\d\\4\\','wp-content/themes/avenue/sidebar-left.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hiro\zv혬\Z',_binary ':`;\}}?ULr3Ŀc y}\\','',0,'?'),(_binary '}\E1,\re\.c	%','wp-content/themes/avenue/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\ND/\\\\ϖ5',_binary '\%\)X\mp5`\\B׆_5\\','',0,'?'),(_binary '>O\b+0?','wp-content/themes/avenue/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g1rK\I\\',_binary '0\ǦeEױy Lxy29xR\S+','',0,'?'),(_binary 'Jm\\0\ti','wp-content/themes/avenue/smartcat-modules/views/CTA_Widget_View.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Eا]<dn\r­\\H',_binary '.\\]\d\\gq\g|\%D\\\','',0,'?'),(_binary 'zDL~!(D\0Y7','wp-content/themes/avenue/smartcat-modules/views/Contact_Form_Widget_View.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\ob)9	HG\',_binary 'kJ\MtE`:P\ZۦȱRxƩdI','',0,'?'),(_binary 'Q:9\Z\\0K\','wp-content/themes/avenue/smartcat-modules/views/Contact_Info_Widget_View.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\ZXs>\eb\',_binary 'Jo\G53:\\3\A\&ҽ8qK','',0,'?'),(_binary 'B@r\\0\l\mD\\$','wp-content/themes/avenue/smartcat-modules/views/Events_Widget_View.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\jΫ\\',_binary '\\0)B\[*\ UIh(Xc׌?v? ','',0,'?'),(_binary 'T\\','wp-content/themes/avenue/smartcat-modules/views/FAQs_Widget_View.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Es\\Uy\}MO>Ȳ',_binary '\Tu]Yd\'ePD/6ں8\re\','',0,'?'),(_binary 'vVV\0\\m8S','wp-content/themes/avenue/smartcat-modules/views/Gallery_Widget_View.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	ņ#\\D\\',_binary '2a\"\r$7x\+@E5\\{lڢ/x','',0,'?'),(_binary '\\ZwT\\/5;\&','wp-content/themes/avenue/smartcat-modules/views/News_Widget_View.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@A\\\"\z=SX\T',_binary '\(f?!qނv\0gsS\nN\4K=͗96T','',0,'?'),(_binary 'lY\MxZ.>Ҡ','wp-content/themes/avenue/smartcat-modules/views/Pricing_Table_Widget_View.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9j\ȍ\g\'R',_binary 'S5\"\\H⺧^\\ZuS\3e>q!\','',0,'?'),(_binary '\4к;RP','wp-content/themes/avenue/smartcat-modules/views/Testimonials_Widget_View.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<k\Ǟ˙xs',_binary 'k~\ƀ\\~ۊ\\%Rp\\\0sW~]\2','',0,'?'),(_binary 'ۮ4聸\\e4\\\','wp-content/themes/avenue/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\~\ХRK\\r',_binary 'q[\z{tu?+4\\\A\Tix<|','',0,'?'),(_binary ']t\"\\@s~X\','wp-content/themes/avenue/template-parts/content-home.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(BD#+T\\\\j;T',_binary 'l\\K\\a_}gF9ᔑSWE\a\|','',0,'?'),(_binary 'v{ImN0\kH','wp-content/themes/avenue/template-parts/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(t|R\uuI{>',_binary '\,`&s8\Q\n\2-\\+\ \\','',0,'?'),(_binary 'D(Kݴ0\\\','wp-content/themes/avenue/template-parts/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;\\V\kF\\\\y\',_binary '$KևoU*?\\|/\I\~u','',0,'?'),(_binary '%\P \Ɖapb_z','wp-content/themes/avenue/template-parts/content-posts-alt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/2\\98',_binary '\SNeG\\KM]Z5|H	\M\b\\\Z','',0,'?'),(_binary '6q\0\~','wp-content/themes/avenue/template-parts/content-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>oG\_Y۫[\\/\4{',_binary ')HLf\7ۜ\0#Xv\\+?\W\\1`\','',0,'?'),(_binary 'M`\ 9И~\','wp-content/themes/avenue/template-parts/content-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(>`B#\U\',_binary 'Cjl%RC\\0l\\\\0jj{','',0,'?'),(_binary ' 1JsZ\ֱ/.b{','wp-content/themes/avenue/template-parts/content-single-alt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bXA\xJ|*s',_binary '\\\=\\_h\\6Y}N7^F\','',0,'?'),(_binary '\WMߺs\2*\\','wp-content/themes/avenue/template-parts/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\'+&$V\',_binary '0X\SA\;\61FL3\sڻ','',0,'?'),(_binary 'm\~A[\\R/\','wp-content/themes/avenue/template-parts/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\D\;:\NĠ\+',_binary '?Fx\K\Z,, \m̊+X	\\','',0,'?'),(_binary '\}Q\_\&4\s','wp-content/themes/avenue/template-parts/layout-cta-trio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\紂\UD&\\\|v',_binary 'Kd#\\\PZ\r-I!\6qD','',0,'?'),(_binary 'y,\\_/\.-\o\','wp-content/themes/avenue/template-parts/layout-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\B\?\ƴ,\[\',_binary 'V\	Cuo\rƣa\u\O\x\\\0~]','',0,'?'),(_binary ']\n\~۾[\\rw','wp-content/themes/avenue/template-parts/layout-homepage-areas.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\4\}hlT)R?\\|',_binary '\"c5,ܤ\IX\0٠o:dZ9','',0,'?'),(_binary 'PqoOio|\Z\O','wp-content/themes/avenue/template-parts/layout-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '䘜v\'\&!\5\ب',_binary '\`\	\F\\d2\"\\Z݊ΖU:AQ\','',0,'?'),(_binary '-Mu*\?\\\+\;e\','wp-content/themes/avenue/template-parts/layout-toolbar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\M%o)\θW\',_binary 'H~F\\3\ѕ\@ҼC	Tܛ\\'\\\o','',0,'?'),(_binary 'B\Yr\J\\ha','wp-content/themes/bg-photo-frame/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\\eG\',_binary '\\\jT@6\0t*KW_\\Yp\*3\','',0,'?'),(_binary '͋0ie\h:!3G\Z9','wp-content/themes/bg-photo-frame/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(z\\zpk`\',_binary 'f\\c\nB=\RL\e~2LFBP\\','',0,'?'),(_binary '\\u\ryYU)\\','wp-content/themes/bg-photo-frame/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\\~<\8o\t',_binary '\Ő)d^K׀\ZTVѝ(*hָ\\"','',0,'?'),(_binary 'kв\\ne\\\p5`c','wp-content/themes/bg-photo-frame/custom/css/bg-photo-frame-style-dark.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q<\Шցw\',_binary '\\\\e:_Xj\\\0CQ+R\@\|\]','',0,'?'),(_binary '\sD)g]s-s','wp-content/themes/bg-photo-frame/custom/css/bg-photo-frame-style-light.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\\/Qҽ\=\\',_binary 'گ\\w(	4_\/:\N-\ҭ','',0,'?'),(_binary ',\J\*\038£t[CT','wp-content/themes/bg-photo-frame/custom/css/bg-photo-frame-style-sp.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\\XDq\ۙ\',_binary '\UI X6L픶9\\E>R\[','',0,'?'),(_binary ' \\\\\I&s\Z\','wp-content/themes/bg-photo-frame/custom/css/bg-photo-frame-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\FCr\\]\y',_binary 'cBy⠝m2!h# \G뀜\nS`\\\\%\.','',0,'?'),(_binary '\\ZxB0zoV\ZV','wp-content/themes/bg-photo-frame/custom/css/bootstrap-theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\S\hBi\\@\\',_binary ')\Qkc#~|dC\K\nxxu\(\(','',0,'?'),(_binary '\˪\Zn\ARb\A\8','wp-content/themes/bg-photo-frame/custom/css/bootstrap.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[z\6C\\"Q6gT\*',_binary '-uf\_F\nPc1=m\\\rW\\\\\5','',0,'?'),(_binary 'Ե.\m@xz\xmN ','wp-content/themes/bg-photo-frame/custom/css/bootstrap.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/b@\_^y[ŧB',_binary '\!J=\\R#\˳\0\(ǉݿtk\z\|','',0,'?'),(_binary 'ԗjNT[7;T*z\]','wp-content/themes/bg-photo-frame/custom/css/jquery.bgPhotoFrame.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a=lx\Y\"\(f\',_binary 'Cc\[\z\\[՗LD-\lp1\V','',0,'?'),(_binary 'y\OI@ǀqٴ}\\','wp-content/themes/bg-photo-frame/custom/css/jquery.bgPhotoFrame.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x*ꙒVJ2',_binary 'ؘT\2\\\7\n\ZƸG\\QO\W\D\p','',0,'?'),(_binary '?\a;w\\R\m','wp-content/themes/bg-photo-frame/custom/fonts/glyphicons-halflings-regular.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\tfe9 F\',_binary 't\a±\\0ӫIDv2u\\\\0\\\+T','',0,'?'),(_binary 'z\g\R~ \','wp-content/themes/bg-photo-frame/custom/fonts/glyphicons-halflings-regular.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\W]c\'\rd\`',_binary '\$\6`\|y+\^	8c%k\','',0,'?'),(_binary 'td-p\^Xe\S','wp-content/themes/bg-photo-frame/custom/fonts/glyphicons-halflings-regular.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ዿa*.Cq/N',_binary 'Iٖ\KJ\"\tϭ^\\b_[#f\K:O)g','',0,'?'),(_binary '\\z>S0u0vXfq\','wp-content/themes/bg-photo-frame/custom/fonts/glyphicons-halflings-regular.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'r2U\X',_binary '3u2;Wm\\j\ۻ\\"\0!4h0l:','',0,'?'),(_binary '~\SdBo\FfS','wp-content/themes/bg-photo-frame/custom/fonts/glyphicons-halflings-regular.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D4mi)z\d\:\',_binary 's-N=ipf\7{\\άTO\\\@\\x\<X','',0,'?'),(_binary 'e\\C6U9\\(\\'','wp-content/themes/bg-photo-frame/custom/img/bg-default-dark-0.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\4\K\hd>\\o',_binary '\Zjq\\c.k\\\\\\$C\'XV5kw','',0,'?'),(_binary '@\\*-\\ɠ\\n','wp-content/themes/bg-photo-frame/custom/img/bg-default-dark-1.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\\'\\;z\|\',_binary '\	~4|\\\\n8\1WZ\>\'q\P','',0,'?'),(_binary '\L\*]\F\\\c','wp-content/themes/bg-photo-frame/custom/img/bg-default-dark-2.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#G\*jx#\^2',_binary '\\nfK\\?Y\)XJg\7\J\\','',0,'?'),(_binary 'ef#\\+)\\\','wp-content/themes/bg-photo-frame/custom/img/bg-default-light-0.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R_6E<vxqn382',_binary 'Icϭ(u\\\\NP\\nhgF\`\Z\\','',0,'?'),(_binary '3yK\\\&c\','wp-content/themes/bg-photo-frame/custom/img/bg-default-light-1.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7w\2\q\5',_binary '\{\^\7\n{\ڥ0\ Dq','',0,'?'),(_binary '$εA\\','wp-content/themes/bg-photo-frame/custom/img/bg-default-light-2.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ea?4\Z1J˙r',_binary 'pC\eY\T/\B\F2 H1iU@','',0,'?'),(_binary 'mlOi˨\\Bs','wp-content/themes/bg-photo-frame/custom/js/bg-photo-frame-master.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\YOe\I\et',_binary '\ڽ)\187s5) [!aN\R\7Rz','',0,'?'),(_binary 'Lto(m|\','wp-content/themes/bg-photo-frame/custom/js/jquery.bgPhotoFrame.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<\BP;\\\-',_binary '\@\cv\r\\\+\'?\ \#Rw/','',0,'?'),(_binary '5B\y\M=DZ$\{','wp-content/themes/bg-photo-frame/custom/js/jquery.bgPhotoFrame.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9_\]\NhN a\',_binary 'O?V\')Z\n)5\$\\	D\GU\*','',0,'?'),(_binary 'LD2\n\7:)c','wp-content/themes/bg-photo-frame/custom/php/bg-photo-frame-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T2\]\M\<v$ )',_binary 'Z\ݳ\>\\qq\~w\Hʌq\\"','',0,'?'),(_binary 'Gv\Z6>','wp-content/themes/bg-photo-frame/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B .g\Mʍr',_binary 'Um\\\nJ.}P\=*@rt)\\ƛ\','',0,'?'),(_binary 'V\\r\\\!-WݥP','wp-content/themes/bg-photo-frame/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\9\\\n\P',_binary 'yc8\r6rǿu\ֶ\xyŇ\\Pb>3\','',0,'?'),(_binary '*{\Y.n\r\X\','wp-content/themes/bg-photo-frame/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fYIYҊ\0\\]',_binary '\~6<\ܛf\}h\\ZأYu2\Td\\','',0,'?'),(_binary '\b\le\;z','wp-content/themes/bg-photo-frame/inc/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZU#\\"w>',_binary '\䬍\5M\m\̻84/GcӐ	\M\*M','',0,'?'),(_binary 'bg\v4\9a\,W','wp-content/themes/bg-photo-frame/inc/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'8(\3b\ڎ` \',_binary 's\XT[\"\\\\0\0\\T\M','',0,'?'),(_binary '\\1\A;\nG#F','wp-content/themes/bg-photo-frame/inc/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sr\\*z\00\3',_binary '\d@f\C\\|\-p\8L\\@~\ݰU\','',0,'?'),(_binary '\&^\\g,I3\','wp-content/themes/bg-photo-frame/inc/jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\<2y|\\Jn',_binary 'Ǥ-\ؚjv9R\\d灑\F}߻\\','',0,'?'),(_binary '8a1=~Zm\n','wp-content/themes/bg-photo-frame/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`f03}J\LE\?',_binary '\}\q\\\DC\\\8\\`KJ8','',0,'?'),(_binary 'Ѻ\:\,ڒ\\"ZfzkKI','wp-content/themes/bg-photo-frame/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E>Hq\E4\\\n',_binary '?W\#\\\+Q\\mSd\wM6ሙ P','',0,'?'),(_binary '\'\ԫpK\\','wp-content/themes/bg-photo-frame/js/customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŞVm\:O	\',_binary 'kSBA\\>؀\r(\\x\cףf-','',0,'?'),(_binary ']+.ޢZ1O+	Zs','wp-content/themes/bg-photo-frame/js/navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'å\\0Ipw\\^',_binary '\'9rzC~\dCh\Pyk}:Q7:k','',0,'?'),(_binary '\\\i4\\E{\ \','wp-content/themes/bg-photo-frame/js/skip-link-focus-fix.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tB\"\G\0Ƽ\*e<',_binary '6xSZ?\\\$jY%\b','',0,'?'),(_binary '\\3\2M\/\','wp-content/themes/bg-photo-frame/languages/bg-photo-frame.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\# ,\\ro\\\9',_binary 'P_2D\\\\\Ţ.S!!t6\,v\,\\','',0,'?'),(_binary ' \2Y=t6\\2\i','wp-content/themes/bg-photo-frame/languages/bg-photo-frame.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/0\fo\EǬS\',_binary '\\\A\N`\\Z-՚\\\ l%a8\','',0,'?'),(_binary '\n\Sj&\\','wp-content/themes/bg-photo-frame/languages/ja.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\d\8H\qG\\'',_binary 'jVHT\l\\2\0fe\S\\\','',0,'?'),(_binary '\\\.~\P\*\n','wp-content/themes/bg-photo-frame/languages/ja.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\l\\\\$q',_binary '\rQLp#f\ei.A\Lary\','',0,'?'),(_binary '5	 @\\'\\~','wp-content/themes/bg-photo-frame/languages/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V%\\W\n$`\"/c',_binary 'G\ܷ\B\^#0Z\8\;\\Q\\','',0,'?'),(_binary '\\\\׺귍&','wp-content/themes/bg-photo-frame/layouts/content-sidebar.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9~Oӱxݘ\rPQ',_binary 'ܜt?o7BP2`\f|zU\\y2%`}\\','',0,'?'),(_binary 'Z0o^v\-.j','wp-content/themes/bg-photo-frame/layouts/sidebar-content.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '߱ru=7a\',_binary '\\aƹ܃\\h\{\l\Z\Zɽc','',0,'?'),(_binary 'mt\'\\II6\ae\\','wp-content/themes/bg-photo-frame/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nD\~\Af\\',_binary 'PnFJ\\yf6\q\R\>\Gy\!\\U2','',0,'?'),(_binary 'lLܵ\\%|\\m\','wp-content/themes/bg-photo-frame/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\nRc*.{',_binary 'S\v\x)\\]+\\W\Z\ѣ\E>\','',0,'?'),(_binary 'FBw9-	ZV2','wp-content/themes/bg-photo-frame/rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qM\n*\\8a\\GC)',_binary 's\\ь\\ih``Lmt8č\0\Hs','',0,'?'),(_binary '\+\Z\0\xҪ,\Oe\','wp-content/themes/bg-photo-frame/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't|\8\M\\2&\D',_binary ',t6-6R\Mb\o+	\/\\3','',0,'?'),(_binary 'h\"8\\\\\#ep\#','wp-content/themes/bg-photo-frame/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M49a\\/t',_binary 'TSHH\\1\\m\\\"\\2и<ז\9','',0,'?'),(_binary 'kOW\m\Pf[k/','wp-content/themes/bg-photo-frame/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Vۑ\=S\Z\\\',_binary '?\\\rXȩ\n+۫\n\\\{=Z\\\','',0,'?'),(_binary 'K;u|hΝ','wp-content/themes/bg-photo-frame/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hޙ\.\+X\\\',_binary '\'l\7\'im;\R?{\3\ZW\\\\QiQw|','',0,'?'),(_binary 'G\\\\-\?\t4\','wp-content/themes/bg-photo-frame/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\o\\\\6\',_binary '?-)-B\\\\no\(3Oű\3','',0,'?'),(_binary 'Rp_\kz\\.\','wp-content/themes/bg-photo-frame/template-parts/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\Q\Qz\Z<I\p',_binary '\o\\%\\?7R9<\Z\7PB\\J','',0,'?'),(_binary 'Ec\DA \\c\E','wp-content/themes/bg-photo-frame/template-parts/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<\\-\%m',_binary '\',\\Z`\\%ڳ\\\i>t3c','',0,'?'),(_binary ']~ۏ\\C\ZZ\','wp-content/themes/bg-photo-frame/template-parts/content-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rd+\IcT\n\\',_binary '\\Ǆ\'5!\\'\\#w5\}9DΠ','',0,'?'),(_binary '7^\ZR|A\Y','wp-content/themes/bg-photo-frame/template-parts/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ۛ\ˀ\Q|F_j%',_binary '>0Ei\0\"IB{\\\\b','',0,'?'),(_binary '\3ˤ\ѷ \','wp-content/themes/bg-photo-frame/template-parts/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q<c3\Z1RXA',_binary '\g0hw3\)e*;\iL\','',0,'?'),(_binary 'n\\f-ٵu1/\','wp-content/themes/bizworx-pro/404.php',0,_binary 'V3Mj\\-\ZXYEx',_binary 'V3Mj\\-\ZXYEx',_binary '\4H(c :XU\%o\6E9\"\\\\','',0,'?'),(_binary '\{\x\ 9\q$','wp-content/themes/bizworx-pro/archive.php',0,_binary '\p\\\\2_\\HU',_binary '\p\\\\2_\\HU',_binary 'C\\'.u\\\l\T\> \U\-JjDFqH\m','',0,'?'),(_binary '\ܦSo\tyv','wp-content/themes/bizworx-pro/comments.php',0,_binary '\\4p\ <7\',_binary '\\4p\ <7\',_binary '@\\\\r\Vb\=Jw\du\\\0','',0,'?'),(_binary '\_?31-|v\ZG ','wp-content/themes/bizworx-pro/content-classic-alt.php',0,_binary 'X^\@\\z\\\\s',_binary 'X^\@\\z\\\\s',_binary 'Gyy\\\2X\ֈ]:mKÛ\7\','',0,'?'),(_binary ')9\LH=\\\','wp-content/themes/bizworx-pro/content-front-page.php',0,_binary '\r\\LUyM\K\',_binary '\r\\LUyM\K\',_binary '\ކ\E{WIr1fHM\_\`','',0,'?'),(_binary 'ד(\\Zf0l\\=\f3','wp-content/themes/bizworx-pro/content-none.php',0,_binary '\\0\;ߗ([',_binary '\\0\;ߗ([',_binary '~U7\ri\5\Ü\z\\\','',0,'?'),(_binary '9:\\b\l}ƫo','wp-content/themes/bizworx-pro/content-page.php',0,_binary '|Yߜiq`e\',_binary '|Yߜiq`e\',_binary 'Mȡ>\*ƍ6FEnW㊛\K\\,p\c','',0,'?'),(_binary '\J,&\t\x\=\','wp-content/themes/bizworx-pro/content-single.php',0,_binary '\ԭ\o\\\\',_binary '\ԭ\o\\\\',_binary '\\GfքWh/\E㳀F','',0,'?'),(_binary 'J-{~[Ot${M','wp-content/themes/bizworx-pro/content.php',0,_binary 'TE\0\Y7w*\y*y\\\U',_binary 'TE\0\Y7w*\y*y\\\U',_binary '^\(=\\\Z\ZNNw\\"vQG6\gH5Dg','',0,'?'),(_binary 'Kp\2qr\cC\\p','wp-content/themes/bizworx-pro/demo-content/demo-content-setup.php',0,_binary '7,z\\ }+_',_binary '7,z\\ }+_',_binary 'cM\tΪ8:^=\k|P嚷^\I\A','',0,'?'),(_binary 'ݒ-Q\n{\.9}c','wp-content/themes/bizworx-pro/fonts/fontawesome-webfont.svg',0,_binary '.\murI1G\',_binary '.\murI1G\',_binary 'Lr7D@y\ɂ]NK(\ti\G9\\Tm=','',0,'?'),(_binary '\Տib9\wb\yW\','wp-content/themes/bizworx-pro/footer.php',0,_binary '\*\'\R',_binary '\*\'\R',_binary 'ZpP-r\\cz\\C/o\\\\R','',0,'?'),(_binary 'ċx3o\\\\\\\','wp-content/themes/bizworx-pro/functions.php',0,_binary 'x\	\Tl˒U\"\\',_binary 'x\	\Tl˒U\"\\',_binary '\\\n\@f򦄥o>k\\:F\O\"Z','',0,'?'),(_binary '^\	\?\5\v','wp-content/themes/bizworx-pro/header.php',0,_binary '\27k\\\Rf\',_binary '\27k\\\Rf\',_binary 'HY\"z\\nSB۾dE\\(Ґy\f\̓/','',0,'?'),(_binary '\~\\\\r\','wp-content/themes/bizworx-pro/home.php',0,_binary '\\؂w؂!HL1',_binary '\\؂w؂!HL1',_binary '\n\"B5D\ΩQ\p\ꍂ\\\ow\\\','',0,'?'),(_binary ')\T\ZqjL:ʄ','wp-content/themes/bizworx-pro/inc/carousel.php',0,_binary '˷\&KdqyZ\ؙ!',_binary '˷\&KdqyZ\ؙ!',_binary 'LS~\\\\\eq\\\r5.\\','',0,'?'),(_binary '	:\o&Zm\>L@\','wp-content/themes/bizworx-pro/inc/custom-header.php',0,_binary 'W\\\O\\6n\\\',_binary 'W\\\O\\6n\\\',_binary '\\\H}\.O:$\\^ۨwG,zDt','',0,'?'),(_binary '\\m\o`wʌP','wp-content/themes/bizworx-pro/inc/customizer.php',0,_binary '\gYc]Kд\#\',_binary '\gYc]Kд\#\',_binary '#	\I\%C7LLeF+gk\Ms\H3\(5','',0,'?'),(_binary 'xV\ȡ}zY\ײ\\$','wp-content/themes/bizworx-pro/inc/styles.php',0,_binary 'C\SMϊ\ȑ,\',_binary 'C\SMϊ\ȑ,\',_binary 'Q\`=1ѝ#\\րf\\G92\\\\"\','',0,'?'),(_binary 'eֺzoH[gK','wp-content/themes/bizworx-pro/inc/woocommerce.php',0,_binary '\\68qh\z\',_binary '\\68qh\z\',_binary 'WsxsF2Nu\Zi+Λ\r\$V_8@','',0,'?'),(_binary 'tǤX\n&\Ll','wp-content/themes/bizworx-pro/index.php',0,_binary '(bx|\3\ؔnѤ',_binary '(bx|\3\ؔnѤ',_binary '\`]M̑\\fWzZz\Z\\"uo','',0,'?'),(_binary '(.\(ZJ9*f:0ω','wp-content/themes/bizworx-pro/js/_-owl.carousel.min.js',0,_binary '\\%%V\\ix',_binary '\\%%V\\ix',_binary 'RBISyPH Y/\nwe!\eӶ\O\\'','',0,'?'),(_binary '\\\.\4FxM\@','wp-content/themes/bizworx-pro/js/jquery.min.js',0,_binary '\\RK~*r}@9',_binary '\\RK~*r}@9',_binary 'y-h\\f\5@\\d<\\v','',0,'?'),(_binary 'WAw\M0MF:+','wp-content/themes/bizworx-pro/js/main.js',0,_binary '\B\uO)O\\z',_binary '\B\uO)O\\z',_binary 'AEPpjX+9ODo|$>\cQ\A\\','',0,'?'),(_binary '.\\Zǐ\\53\v3','wp-content/themes/bizworx-pro/js/owl.carousel.js',0,_binary 'r`b\\\֦~<\\\',_binary 'r`b\\\֦~<\\\',_binary '\k\\\\\a9\\E\Z%\Vft','',0,'?'),(_binary '1:H\_77G','wp-content/themes/bizworx-pro/js/owl.carousel.min.js',0,_binary '\r/>(cp',_binary '\r/>(cp',_binary '\"\g\O\Nd\\\Z\m{x\%@|:w','',0,'?'),(_binary '\j*\n\\Þt\x','wp-content/themes/bizworx-pro/page.php',0,_binary 'D\\0[\\n\瞍pV',_binary 'D\\0[\\n\瞍pV',_binary '+Y84wa@\kA\"I֫I0r}P\Chv\','',0,'?'),(_binary '\KOF]L`\i/','wp-content/themes/bizworx-pro/recommend/class-tgm-plugin-activation.php',0,_binary '\\E\&!K~\l',_binary '\\E\&!K~\l',_binary 'vڝL\\qtS\TJP5?8QUq\','',0,'?'),(_binary '=\w\'J\\t\'xJ','wp-content/themes/bizworx-pro/search.php',0,_binary '8\l\Խ\',_binary '8\l\Խ\',_binary 'i	l8JB.W\~\uD\ܠ7\Y','',0,'?'),(_binary '*̎vOZ\\\Z\F\','wp-content/themes/bizworx-pro/searchform.php',0,_binary 'w8$/4Q\RG',_binary 'w8$/4Q\RG',_binary '1\\`W1X\'\2\'z\]\-\\\%\[}','',0,'?'),(_binary '*\v}/\\pH*H','wp-content/themes/bizworx-pro/sidebar-footer.php',0,_binary '\":\\p\\\',_binary '\":\\p\\\',_binary 'rc~k-\[/\\n~a\#7h_\\>\\','',0,'?'),(_binary 'Zy\T	&G','wp-content/themes/bizworx-pro/sidebar.php',0,_binary 'yqϘϭlc݂',_binary 'yqϘϭlc݂',_binary '&\\'\\\BZ\ZU\\f) &\5[','',0,'?'),(_binary 'E\\]\n_kzU\"y','wp-content/themes/bizworx-pro/single.php',0,_binary '<VѬ\\n\R\\\\',_binary '<VѬ\\n\R\\\\',_binary ')=\77j\`c3\0϶\acz','',0,'?'),(_binary '~\0\\5l+\','wp-content/themes/bizworx-pro/template-files/page_home.php',0,_binary 'R\Z?/e\\_O',_binary 'R\Z?/e\\_O',_binary '+Ҍ\5\r.=SN&xR=Q\\\mT\\\','',0,'?'),(_binary 'lJȼ|\Ԕ\{\"Bx','wp-content/themes/bizworx-pro/woocommerce/fonts/WooCommerce.svg',0,_binary '6PI?\\\V\FcF',_binary '6PI?\\\V\FcF',_binary '\\f\)YqM\\A;\cS\ج+>^\r','',0,'?'),(_binary 'ebmůcQ\N\\','wp-content/themes/bizworx-pro/woocommerce/fonts/star.svg',0,_binary '\v \\0\9(<8',_binary '\v \\0\9(<8',_binary 'YP2:q4qӌ\\r\eCO#\K','',0,'?'),(_binary '\݈\\TR	\r\c','wp-content/themes/bizworx-pro/woocommerce/single-product/_rating.php',0,_binary ')I-\7\\r~\',_binary ')I-\7\\r~\',_binary '0K|\U)+\\nq~Q\\\0	T&S\','',0,'?'),(_binary '@\c\0/d\ƨ\\','wp-content/themes/bizworx-pro/woocommerce/single-product/add-to-cart/simple.php',0,_binary '\2+dT\Z݈\>h',_binary '\2+dT\Z݈\>h',_binary '\\.LR\\\\rPwOq5\r\.y9F|','',0,'?'),(_binary '\\\s\, Gu\\8','wp-content/themes/business-center/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S`Y\-\`Tl',_binary 'D\Oq2l\7gz\0\a>','',0,'?'),(_binary '\kj\0S©d\0\?','wp-content/themes/business-center/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X	/n8Â\\QK',_binary '^\\P\Fhj#0z(\^C3~\DTm/','',0,'?'),(_binary '>x\#;4\D\\','wp-content/themes/business-center/assets/css/blocks.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Jf\@}*zh6',_binary '-7<\^\hU,\\1ԴQQX\.hk','',0,'?'),(_binary '\+fj\,ZY%\','wp-content/themes/business-center/assets/css/blocks.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y]EL\\u7F',_binary '^\}S\\\\VwU\l L\\=i\naM','',0,'?'),(_binary 'ߔ	VV\喍`\\#','wp-content/themes/business-center/assets/css/editor-blocks.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Jf\@}*zh6',_binary '-7<\^\hU,\\1ԴQQX\.hk','',0,'?'),(_binary '\q\\6\\F','wp-content/themes/business-center/assets/css/editor-blocks.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y]EL\\u7F',_binary '^\}S\\\\VwU\l L\\=i\naM','',0,'?'),(_binary '1b^!\ro\\nW','wp-content/themes/business-center/assets/css/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\'\\\YRÒ-',_binary '\\0+\{z\)C\f)H\J\r\\pR^_\\','',0,'?'),(_binary ';ȮϚ\\^','wp-content/themes/business-center/assets/css/editor-style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\	\&3f',_binary '\\"rf\n\Ys\D\{Ɉ\Q\H2\\\U','',0,'?'),(_binary '\CΑhR\\r\A̵F','wp-content/themes/business-center/assets/js/custom.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\0\m;bu\]\0\',_binary '\h\HwhAR\31\nLcl\','',0,'?'),(_binary '}\\7\}K\\A','wp-content/themes/business-center/assets/js/customize-control.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\"}\LËz',_binary '_Ȍ62x\\%\\\	\ R\}X\\','',0,'?'),(_binary 'Jҙ^\E\\\0L','wp-content/themes/business-center/assets/js/customizer.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dzh`3E\'0',_binary '=ד\\L\<hWd/f˶cݲ','',0,'?'),(_binary '\qmvW\\','wp-content/themes/business-center/assets/js/navigation.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f	1G*l\v32\',_binary '\0\j\0\#]>l\Y\&\β?\\\\\s\','',0,'?'),(_binary '[\ZO\5wkT\\','wp-content/themes/business-center/assets/js/skip-link-focus-fix.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+)\v\⾒',_binary '\on|#`\]bhb\\\Ȇ͟\GK{<5','',0,'?'),(_binary '\\E\{\\Ih1	','wp-content/themes/business-center/assets/js/unminified/custom.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\\\9#}/FPqTy\',_binary '\h\HwhAR\31\nLcl\','',0,'?'),(_binary 'PtBP\0-','wp-content/themes/business-center/assets/js/unminified/customize-control.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/K\0\rb\\p\\\2H',_binary 'i[<\\raH\u\2\"	','',0,'?'),(_binary '\,ǯkn\x}\v','wp-content/themes/business-center/assets/js/unminified/customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\\uA\',_binary '>\\\>+\.\\\ʪ\\X\2C','',0,'?'),(_binary '\\Z^ZA1t33~','wp-content/themes/business-center/assets/js/unminified/navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '` @\.&8\#oz',_binary '\O\U\S\ψNt-WS\0d\B5\','',0,'?'),(_binary '>t\\&m\Ly','wp-content/themes/business-center/assets/js/unminified/skip-link-focus-fix.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\Z)\Z\Nb(c6',_binary '-\\\\,]\Z7qLt\GΧ','',0,'?'),(_binary 'DȶP1\\H©\x\0>','wp-content/themes/business-center/assets/js/unminified/upload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r4K%\H6__\,\\',_binary ']>4\\T\ev0\ pfVv\\n=85\','',0,'?'),(_binary '\`r$~Ng\r\)','wp-content/themes/business-center/assets/js/upload.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>wIɐi?ki',_binary '4\\!~G\'qp\\n(sd\\','',0,'?'),(_binary '1\g\[\\jG','wp-content/themes/business-center/assets/plugins/css/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4j8\\\\G\\%',_binary '\MG\å\J\(K}\','',0,'?'),(_binary '١\x\[jWCr\aI','wp-content/themes/business-center/assets/plugins/css/slick-theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_7j7\9f',_binary '؆\\\nLS\\\t\uܷaXh\','',0,'?'),(_binary 'm\\Z\\Sj\\zp]','wp-content/themes/business-center/assets/plugins/css/slick.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\e\]\o#\Mo.',_binary 'J\~\9\I\H\ük\`>8)\','',0,'?'),(_binary 'Ұ\Cŷ[r\	qS\r','wp-content/themes/business-center/assets/plugins/css/unminified/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\g=㹖 ',_binary '&zB]<\\\\"d\5z\y;{-6<\C	','',0,'?'),(_binary 'MP\@\\8','wp-content/themes/business-center/assets/plugins/css/unminified/slick-theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\˜\%Ԁ	j\bA<',_binary '\Z\Mp)\\r\r\\9;\\%		Qi','',0,'?'),(_binary 'm;%餂)ˎ','wp-content/themes/business-center/assets/plugins/css/unminified/slick.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uΦ\kyh\\\0\',_binary '.dJ\\r\iqko\\iճ\\fl/\','',0,'?'),(_binary 'we,\/W','wp-content/themes/business-center/assets/plugins/fonts/ajax-loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\S\0WjȂ/m\b',_binary '\m׋IWGP\]c.\z	\\48\\','',0,'?'),(_binary 'h6Hcks<%H6','wp-content/themes/business-center/assets/plugins/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\6{\\9AH',_binary '\\r8\\γe\y̿ǹ\H\-_','',0,'?'),(_binary '?7}D\>\\I','wp-content/themes/business-center/assets/plugins/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|n\\\\pv&\',_binary '\1+<K\M\˷F@&R̲\t|a==m\R\','',0,'?'),(_binary '_\rwԼZ$\/?#','wp-content/themes/business-center/assets/plugins/fonts/slick.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\UoIQ(x\7\',_binary 'SJdOv\"y~\\OlQwj|\\\n\+\','',0,'?'),(_binary '\U\@\}C\=y','wp-content/themes/business-center/assets/plugins/fonts/slick.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\y\;S\\\\@:',_binary 'GrSfK\r\\\M5Su\rP','',0,'?'),(_binary '\Z\^RI*wka\r','wp-content/themes/business-center/assets/plugins/js/slick.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%EP\',_binary '|\x+Om7\ uqT\mANK\','',0,'?'),(_binary 'L|\`\X`A\','wp-content/themes/business-center/assets/plugins/js/unminified/slick.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ruw{\',_binary '8\vJ]N\F\\\"\V>\9PV\'R2\	','',0,'?'),(_binary '\Xef\\F=/I','wp-content/themes/business-center/assets/uploads/contact-us-bg.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&W>\\"倸mRO',_binary 'L~3S\3uk\\\\\/j¨9K\','',0,'?'),(_binary 'n\Cގ1M\\','wp-content/themes/business-center/assets/uploads/header-image.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\N0p7X\E%os\"S',_binary '\\,\T\-1\6˞U2\鸱?\4\ג','',0,'?'),(_binary 'z\U\\\:\\\','wp-content/themes/business-center/assets/uploads/no-featured-image-1300x600.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\aYS#\nj@\Y^\',_binary 'P\\H\ad\YHW?M\lv%[','',0,'?'),(_binary 'Л	v\.N','wp-content/themes/business-center/assets/uploads/search-loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tSJ1\{\\K\1\',_binary '\;\0#%R\Z\\T{ƀ\\\Ͻ?z','',0,'?'),(_binary 'o>g\'U\\\%\n','wp-content/themes/business-center/assets/uploads/user.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}ozj5\g74\rK@g',_binary '\F`\m{\\mҴ\"\\8\0','',0,'?'),(_binary '$\i\f\\\㽡','wp-content/themes/business-center/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(SU܇}OX\',_binary '\[qX\\ړ%p7S夘 JÅE\n','',0,'?'),(_binary '	\яQ~\`4l\j\"','wp-content/themes/business-center/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yR\\>%l[։Ж',_binary 'ǪbN\j^mz\\0\(\\\.','',0,'?'),(_binary 'i\6r\'p_t','wp-content/themes/business-center/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\c\r\Hb2',_binary '\0\\NvT~m=\\\\\&h޺G','',0,'?'),(_binary '\5m\\j}|<##','wp-content/themes/business-center/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q-R\'^\r\v',_binary '\+wl\y\$lc5\rtx܋D59*\r','',0,'?'),(_binary '\&\\a8JW!$\4','wp-content/themes/business-center/inc/core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DZ\\\s)	\l',_binary 'B\"p?]. 9އ\:*1-%:ԟ','',0,'?'),(_binary '\?\FxQ\r&i\\','wp-content/themes/business-center/inc/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\$2g/4',_binary '2`Kb L\M2P\w\H\U','',0,'?'),(_binary '\gbAW\pP\n\N\','wp-content/themes/business-center/inc/customizer/active-callback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\O&	\ŝ\',_binary 'mBgD\HS\%\ҙc\\r\5\\\3','',0,'?'),(_binary '\\\\*\)W','wp-content/themes/business-center/inc/customizer/custom-controls.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\D(\,\,',_binary '&u\Z\f\\/Mb\K\\\t[\kWx,\|}','',0,'?'),(_binary '\\\|d\M','wp-content/themes/business-center/inc/customizer/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"7~^{2\"',_binary 'S4d\y\\\Z\}t\'T8F\7','',0,'?'),(_binary '	2<\Zeڴہ\\','wp-content/themes/business-center/inc/customizer/defaults.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Wj\\FB\T.w',_binary '\0\1\\\!ګI\\\J\V˺3\p\sg','',0,'?'),(_binary '\\ܦ5-^U	83\Z\','wp-content/themes/business-center/inc/customizer/partial.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?}dm\b隵\',_binary 'Ӭ\k|y6\$wQ+D]#\D#OJ\C','',0,'?'),(_binary 'W8Mkt\\{\j','wp-content/themes/business-center/inc/customizer/sanitize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\SP=>|]\\"U\0',_binary 'j\')ϰs\BKgz8BJ\C\3\g','',0,'?'),(_binary '\0ye6Mh/5','wp-content/themes/business-center/inc/customizer/sections/call-to-action.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gv<\\^_҅,|k]\',_binary 'S\\\a&q054\\'	!=\\p\','',0,'?'),(_binary 'X\^KdfA\E!x\\','wp-content/themes/business-center/inc/customizer/sections/contact.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	7\\ܾ\Q\\\',_binary 'iTG\Z})w5XF|\"\H','',0,'?'),(_binary 'q\/NF\\\}Y','wp-content/themes/business-center/inc/customizer/sections/feature.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\WXa<\	T',_binary '\ \=:\p\\vH@WН\H8T\\Ph','',0,'?'),(_binary '\=\k\"\\n6\yx','wp-content/themes/business-center/inc/customizer/sections/front-page-blog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\nQ\l@\0>5',_binary 't\)\s(,l#\0+7ϝ_\.\\','',0,'?'),(_binary 'Xv=+6\ߍ\','wp-content/themes/business-center/inc/customizer/sections/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M?\R\\\',_binary 'O&\ZP]\\\\\,#)RsMc\i	C\\','',0,'?'),(_binary '\Ud-\\IE\{\GF','wp-content/themes/business-center/inc/customizer/sections/service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-K;5\\[\\\',_binary 'Py\\\nVá7\\\h\0,۾\1\fm','',0,'?'),(_binary 'x|\vCI\','wp-content/themes/business-center/inc/customizer/sections/slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F1?ZzP\\',_binary '\\n@{\*r-$\\E7Il!߅3\'7','',0,'?'),(_binary 'rSr{2\\XT<','wp-content/themes/business-center/inc/customizer/sections/team.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mqt\1{\',_binary '\\wF$Ԅ2\tȘҚ\G řS`т','',0,'?'),(_binary 'j WJϰ\海3','wp-content/themes/business-center/inc/customizer/sections/testimonial.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\0:uo\n',_binary '\\iny\=OK\]w5Dk\.\\\\`k)','',0,'?'),(_binary '\\J#c\\','wp-content/themes/business-center/inc/customizer/theme-options/blog-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L;db\lWò\\f9',_binary '*G\y(K\ZFw@\\\ߏ\Z_w\v','',0,'?'),(_binary 'L,.\|*`n.I','wp-content/themes/business-center/inc/customizer/theme-options/breadcrumb.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t\\<^3S\$\',_binary '8O\\A\\%_;%<t~\靦۝4^\','',0,'?'),(_binary 'E\=wN$Ş','wp-content/themes/business-center/inc/customizer/theme-options/excerpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\KW\*0\"3xq/\\',_binary 'i\\4\kǢۡ\nd\oC\\\','',0,'?'),(_binary '-\`+\\n*\','wp-content/themes/business-center/inc/customizer/theme-options/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rmQ)8\ZCN`',_binary '\n\Y\fM\\\\]:\\KÚ\b9','',0,'?'),(_binary '\\"H\69\Eo\','wp-content/themes/business-center/inc/customizer/theme-options/homepage-static.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sq\QX\\\',_binary 'i\\J\\\x\H2h\\]%\\ֻX~]}','',0,'?'),(_binary 't\I\\[Ҍ','wp-content/themes/business-center/inc/customizer/theme-options/loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'r@ä!8LB',_binary '\AkzXH;̱=\~bp_2\\ek','',0,'?'),(_binary '@-Y+iH\3	','wp-content/themes/business-center/inc/customizer/theme-options/pagination.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t\'\Oy\^',_binary '1q\6\n\Փ\\ɤS=Z˄\g\9','',0,'?'),(_binary '2LK\sIP܋o\','wp-content/themes/business-center/inc/customizer/theme-options/reset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\J@p]\nZܻ=',_binary ']\\\+\K\!\_UC d)\/!\G\"\','',0,'?'),(_binary '	\\"\em\l\\8}','wp-content/themes/business-center/inc/customizer/upgrade-to-pro/class-customize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{4R*gQ9CqC',_binary '\Zm\\\u?_HR\1ѻe3J-\','',0,'?'),(_binary '\\vS(֡Ӱ\\#','wp-content/themes/business-center/inc/customizer/upgrade-to-pro/customize-controls.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\'P\{iÆ/',_binary '\gMO4<M><S]۠(\NU\f\\','',0,'?'),(_binary '\vo?l: (M','wp-content/themes/business-center/inc/customizer/upgrade-to-pro/customize-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\(> \\оud\\nQ',_binary '9s1\\\r?\-VM\\!!\޽d\b\\','',0,'?'),(_binary 'V\f\njj','wp-content/themes/business-center/inc/customizer/upgrade-to-pro/section-pro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\npa1',_binary 'ff\Y.4\\\;Ɗ\\_T{&\Zl(~','',0,'?'),(_binary '\EkdA$4\\b1','wp-content/themes/business-center/inc/customizer/validation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';r{z=\Z%\\\*',_binary '\ac\9\/\b\[0F\\rZ3iلUݬ\','',0,'?'),(_binary ',ӂ\\n\H','wp-content/themes/business-center/inc/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HA\Ï{\g\.>)',_binary '\\^e\^1\EHdN\\}Q','',0,'?'),(_binary '1\\\>(Ǫbw5','wp-content/themes/business-center/inc/helpers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\nrH\v\"@Bh',_binary 'ڪ\\<*/A\n\\Z\.d\\0\}\\r','',0,'?'),(_binary '&q-\@Mׄ1\\q','wp-content/themes/business-center/inc/jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\0#\3N=\',_binary '$\\0\\:E#L>Pq\Bip\^','',0,'?'),(_binary '\\\c$jI\^\\uD','wp-content/themes/business-center/inc/metabox/header-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&W+W\\\'\dɧ9Z',_binary ')~L\>zL촿.@_y\RzV\','',0,'?'),(_binary 'fE^q\b\&Mg`','wp-content/themes/business-center/inc/metabox/metabox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EV\x5Yn\',_binary 'jAP\ CU|\\\-zx\Fъ\','',0,'?'),(_binary '*\p[d<\0u\3\˺\','wp-content/themes/business-center/inc/modules/breadcrumb/breadcrumb-class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Նt~\E)ڂ<L',_binary '\r$mdy͗)8\+Ǧ2\\s:ueu[g','',0,'?'),(_binary '=\_)\d{=hhֱt\','wp-content/themes/business-center/inc/modules/breadcrumb/breadcrumb.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\6[\\JF&X\',_binary ')\\0\\F*;\\\W\1\P¢\','',0,'?'),(_binary '\\	4Yhl','wp-content/themes/business-center/inc/modules/call-to-action.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\P \(',_binary '\/-v0sf\רlMm)\\(\\?Hw','',0,'?'),(_binary '2Z\\\\U\@I','wp-content/themes/business-center/inc/modules/contact.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'\\\ZS\xʃ\"2',_binary '\\\q[ƕ\g]\#7E\.9O4','',0,'?'),(_binary '\/Z\5 \n\n\\?\\','wp-content/themes/business-center/inc/modules/feature.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '51\\\0\n\y\',_binary 'P\\QH\\_7\g2\Z&\\ ','',0,'?'),(_binary ' \\szBr\X\\G','wp-content/themes/business-center/inc/modules/front-page-blog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\\\K\0\GI',_binary '\~\\Ӆ\B֬Jh!\\','',0,'?'),(_binary 'VF<\\vC%\','wp-content/themes/business-center/inc/modules/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OֲG\N\~\l',_binary '\e\Q\\\\=W6)okkK\0~T*ͧ@','',0,'?'),(_binary 's\J&$\m~-좔[','wp-content/themes/business-center/inc/modules/modules.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\wk(\7\0} a\'',_binary '\P}r\k}Ķ\nx\\W\\\0\o\\\5\n','',0,'?'),(_binary '\q\Ѽ\7j_\\\','wp-content/themes/business-center/inc/modules/service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٳa\#\pIb\\',_binary '\՗\\\s=ҷkb:w\\\\`','',0,'?'),(_binary '\\\\ܐD\[\','wp-content/themes/business-center/inc/modules/slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\aq\~K|I\',_binary 'CK\&\eZ\\\\nuo\,UY','',0,'?'),(_binary 'b=OcOa<:e\F','wp-content/themes/business-center/inc/modules/structure.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<A\^\',_binary 'ݥbt|\"n \0d,|e\X\\','',0,'?'),(_binary '\\\=\\\\n0r}m','wp-content/themes/business-center/inc/modules/team.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\..\+\ٿ',_binary '\\\x\\dZ3\\5}\V5,7{(7G|','',0,'?'),(_binary '\BJ\Q/\Z#`^	','wp-content/themes/business-center/inc/modules/testimonial.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j:*\mA	k\Rf',_binary '\5&BȷV?/4\*rV?\'ʃB\','',0,'?'),(_binary 'x8\u\\\\5 s','wp-content/themes/business-center/inc/options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OH\Y\"\\\fk]',_binary 'A\\\\6(^;U\5	\\}J(z5','',0,'?'),(_binary '\t\f^c}\\Z\&','wp-content/themes/business-center/inc/scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/FHJ\'nZ\\\8',_binary 'x.?B\"\:\\^\S\nE\\\\\x࿥','',0,'?'),(_binary ':v<\^e=^u','wp-content/themes/business-center/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0`iy>OP\E\',_binary '\)6\J_\\Ԏ\\\S','',0,'?'),(_binary '\4\G\\ٿ\J','wp-content/themes/business-center/inc/tgm/class-tgm-plugin-activation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZH^\\39\\a',_binary ')<}=G_/zg	v.\@fl','',0,'?'),(_binary 'B	0\*O0','wp-content/themes/business-center/inc/tgm/tgm-hook.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\\aI5\\O|',_binary '6 RCF\z\`oW\w\psуP+#','',0,'?'),(_binary '	L[B\\\\','wp-content/themes/business-center/inc/widgets/featured-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~l\"\M\\',_binary '_*R4\6\\a\\o\\ʃ\K \\#4Q','',0,'?'),(_binary '0$8\n\\0\\\\0','wp-content/themes/business-center/inc/widgets/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<?\\\	',_binary ' JӬ(Ҿ^,g\!Eᅼ\R8h4˧]','',0,'?'),(_binary '\\u\?\P.ϙ\ol','wp-content/themes/business-center/inc/woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\`/ۛ\Qf8',_binary '\$I\(p&z\P\Z>af*','',0,'?'),(_binary '{FEM\','wp-content/themes/business-center/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B(%\\\\',_binary '|\\n\\*\c\`:+\'U\\\HAO','',0,'?'),(_binary '6j\\9f\0$w[\','wp-content/themes/business-center/languages/business-center.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\]]E mY',_binary '\D\Ъ+D.J\c\\`z\\0$6Fk\','',0,'?'),(_binary '\ld)\\"BW','wp-content/themes/business-center/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lA\8abQ׈\r1\',_binary 'Od \&\n2,_\<0Ԥg\\','',0,'?'),(_binary 'u\CLJ1k\N\Z','wp-content/themes/business-center/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|\4\´\ܱY',_binary 'Tm\\rX\qjstRb^nV\O\D\@[t:','',0,'?'),(_binary '\Zg\)F{Y\S\6:','wp-content/themes/business-center/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0fG\"캁\\rk\0',_binary 'vj\1o\7\\\:L\\	n	','',0,'?'),(_binary '\MUP6	\]','wp-content/themes/business-center/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7昴/@',_binary '!\\]rK\O\n!\=;PSxC\eU\P','',0,'?'),(_binary '˺	4\+\r','wp-content/themes/business-center/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z >_\"6lM?ɚD\	',_binary 'M(\\0QF{pͬ\ZvSϔ.\r9','',0,'?'),(_binary 'bq?5\;\6','wp-content/themes/business-center/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YE\.Va2\\',_binary '\nr~{\$\\d\\Dׄ\N|','',0,'?'),(_binary 'wafiܚ넅','wp-content/themes/business-center/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j꾑\S\>/S?',_binary '* \3h\ɹ_^Rkk\f^R','',0,'?'),(_binary 'LM_\0-p+~׉mb','wp-content/themes/business-center/template-parts/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\\0$\,_\F,?',_binary '~$8\k*\J\u\\u\\H-?WӘ\}p׫','',0,'?'),(_binary '\\N	\%\r\_[Pǒ','wp-content/themes/business-center/template-parts/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\N \\E',_binary '\[)$ML8hw2dX\\jK{n','',0,'?'),(_binary '|	KLTD):}','wp-content/themes/business-center/template-parts/content-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*S7rrq\3\HC<l',_binary '+yJ>\'u\\\\\b\G\Z7aUr>sg\zd','',0,'?'),(_binary '\E`1rv\m{P\','wp-content/themes/business-center/template-parts/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r\~P\g\_\,',_binary '#ɿIϝxd\&`0\>Zg \	\\9f','',0,'?'),(_binary 'ճ|hq\s5','wp-content/themes/business-center/template-parts/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F1,PFG\',_binary '\Q3ʽ\\5\\@A@\0\\0%W\v\.','',0,'?'),(_binary '\\e\`oYGG\','wp-content/themes/chic-lifestyle/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\C\mR2\\\17',_binary '\n\OV[\\0BxzSU(g\};g%\a\r','',0,'?'),(_binary '\']1e\NM\:o\'2d','wp-content/themes/chic-lifestyle/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8Ip\\r)\R4\*-',_binary '\m68ʱ\"r-L9\\\\\D\hݰ','',0,'?'),(_binary 'g\dy\ZR\v\/6\\','wp-content/themes/chic-lifestyle/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\`\xzi3d\\S',_binary '\}\6PZ@\::9N+\0x|h$\','',0,'?'),(_binary '\Br5CO,r','wp-content/themes/chic-lifestyle/css/animate.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\O\\4',_binary '~\RhL7\00\DViג`1R\R/at','',0,'?'),(_binary '\o\\]+Ю\\\	','wp-content/themes/chic-lifestyle/css/bootstrap-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\8\/M\"ƍf\"a',_binary 'k\*<y^_*\\uH\db):\D\2\','',0,'?'),(_binary '\w\\q\\Vrx7','wp-content/themes/chic-lifestyle/css/bootstrap.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)Ţ\\pX\&\Z\',_binary '-uf\_F\nPc1=m\\\rW\\\\\5','',0,'?'),(_binary '*P\7w\^\A\4','wp-content/themes/chic-lifestyle/css/dynamic.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƙv\$a\6',_binary '\Ҭ{\vS7\$\rk^J\+wY\qIQ\|\','',0,'?'),(_binary 'h\\O`\'','wp-content/themes/chic-lifestyle/css/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\YXe^0\oE',_binary '\r\\\,1XvN\Zp\"i\\ ܵq','',0,'?'),(_binary '\0`h<ל@ŵ','wp-content/themes/chic-lifestyle/css/owl.carousel.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\l-l\\\\',_binary '\*1-s\$Z\0Tx\\^\A\J[k:\','',0,'?'),(_binary '\\t=Xw\\-l\Z\','wp-content/themes/chic-lifestyle/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϣ-\\\\[\\',_binary '{VHٰ\\0\MUDO\?6nB\','',0,'?'),(_binary '%\7\}\Ap','wp-content/themes/chic-lifestyle/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@JRU\~\-',_binary '\\\ZKb\\\'5\\.\\X\n\ʫz4','',0,'?'),(_binary '\#Y%\--\9ʣ-\','wp-content/themes/chic-lifestyle/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]\\\dE\T3\\r\\Ğ',_binary '/\"\\D~oԽ\5~D[s_Qy.!z','',0,'?'),(_binary 'h\/\\\1d\\9\','wp-content/themes/chic-lifestyle/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\nsoAs',_binary '4\.}\qdLp\Դ\\\\E\{pv0','',0,'?'),(_binary '7? Q+*E','wp-content/themes/chic-lifestyle/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?4&\B\\\h',_binary '\\9?\\\\\\\\\\w	q\n','',0,'?'),(_binary '\\@%#\\k','wp-content/themes/chic-lifestyle/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\Q\\Q\XF\',_binary '5ɮ\H󆛌\0{0\Q\<u\\x','',0,'?'),(_binary '\!W\)X\v(L','wp-content/themes/chic-lifestyle/fonts/glyphicons-halflings-regular.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\tfe9 F\',_binary 't\a±\\0ӫIDv2u\\\\0\\\+T','',0,'?'),(_binary 'P>4E,tk\ُ:w','wp-content/themes/chic-lifestyle/fonts/glyphicons-halflings-regular.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!Fhey#-\e[',_binary '\$\6`\|y+\^	8c%k\','',0,'?'),(_binary 'K(\0}\b޲0ͤ\','wp-content/themes/chic-lifestyle/fonts/glyphicons-halflings-regular.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ዿa*.Cq/N',_binary 'Iٖ\KJ\"\tϭ^\\b_[#f\K:O)g','',0,'?'),(_binary 't\ԸVG\ɢ\v~','wp-content/themes/chic-lifestyle/fonts/glyphicons-halflings-regular.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'r2U\X',_binary '3u2;Wm\\j\ۻ\\"\0!4h0l:','',0,'?'),(_binary '`dI1űq3dpPl[','wp-content/themes/chic-lifestyle/fonts/glyphicons-halflings-regular.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D4mi)z\d\:\',_binary 's-N=ipf\7{\\άTO\\\@\\x\<X','',0,'?'),(_binary '¬,I17e\','wp-content/themes/chic-lifestyle/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fr!\@\e{\',_binary 'u%a\'3g,x\A\\1\"\\q!vCW	\','',0,'?'),(_binary ')\Z%Y\\\U\','wp-content/themes/chic-lifestyle/freemius/assets/css/admin/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\,z\\\\@Y}\','wp-content/themes/chic-lifestyle/freemius/assets/css/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'x%\Qty\	\L','wp-content/themes/chic-lifestyle/freemius/assets/img/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '/QPFA\С=\\','wp-content/themes/chic-lifestyle/freemius/assets/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'y\r\uZV\','wp-content/themes/chic-lifestyle/freemius/assets/js/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'U`\(/\C\','wp-content/themes/chic-lifestyle/freemius/assets/js/nojquery.ba-postmessage.js',0,_binary '\s\\rL\\[\',_binary '\s\\rL\\[\',_binary '\D\\\ZIӡ[۪\\\jcPZgsW','',0,'?'),(_binary '\nň~\\\Q\2','wp-content/themes/chic-lifestyle/freemius/assets/js/nojquery.ba-postmessage.min.js',0,_binary 'gI*Bo\\v\\\',_binary 'gI*Bo\\v\\\',_binary ']\ހ\\\+fR\nQ%\נJ>','',0,'?'),(_binary 'S&#+Lƥl\','wp-content/themes/chic-lifestyle/freemius/assets/js/postmessage.js',0,_binary 'e*\&o\'',_binary 'e*\&o\'',_binary 'bM\r	{\TT\tװ\\t={\\aϽ#\q9','',0,'?'),(_binary '죰W\\\,\"X\"\','wp-content/themes/chic-lifestyle/freemius/config.php',0,_binary '姉{.l\c]',_binary '姉{.l\c]',_binary 'F)wB$45C\Kmy\ո4','',0,'?'),(_binary '	vrCQ\E\u','wp-content/themes/chic-lifestyle/freemius/includes/class-freemius-abstract.php',0,_binary '\(E=\n',_binary '\(E=\n',_binary '\y~#\]C&B+B;\ sÁ`٤W\','',0,'?'),(_binary 'Xx=a&AX\+\l','wp-content/themes/chic-lifestyle/freemius/includes/class-freemius.php',0,_binary 'At	푀\\\',_binary 'At	푀\\\',_binary '1:EյA\}#\ÿz2\`c\\ZEVHuH\+','',0,'?'),(_binary '\ԓ \Y}#\@	\','wp-content/themes/chic-lifestyle/freemius/includes/class-fs-admin-notices.php',0,_binary '\`\+tԕ\1#\2',_binary '\`\+tԕ\1#\2',_binary '3c\&Z\XGT$lT.S(\'\ZA\','',0,'?'),(_binary '[\'7v\.\\','wp-content/themes/chic-lifestyle/freemius/includes/class-fs-api.php',0,_binary 'ݡeBo\'F][\¬',_binary 'ݡeBo\'F][\¬',_binary '	\\'Kрx\A\;{V=n\+H\s)O\Q\̍\','',0,'?'),(_binary 'i^L>M\N~','wp-content/themes/chic-lifestyle/freemius/includes/class-fs-logger.php',0,_binary '-\c\\|Z,\\ES{',_binary '-\c\\|Z,\\ES{',_binary ',A%\\QP\\rW9\\B5\M\rߛe1\','',0,'?'),(_binary '\^L^	8cr~','wp-content/themes/chic-lifestyle/freemius/includes/class-fs-options.php',0,_binary 'G\ZREk&\mf\v',_binary 'G\ZREk&\mf\v',_binary '\\'LMZA\F\\c\\yǧ&\8G\:','',0,'?'),(_binary '\p$J\ (\2/ش','wp-content/themes/chic-lifestyle/freemius/includes/class-fs-plugin-updater.php',0,_binary '%\N\ot\\s\m',_binary '%\N\ot\\s\m',_binary 'dQoCvy\Zy\\1]\J}\','',0,'?'),(_binary 'bgzONs\w','wp-content/themes/chic-lifestyle/freemius/includes/class-fs-security.php',0,_binary '\"\Ia*Ġg{,',_binary '\"\Ia*Ġg{,',_binary '\ߑmDn[+A\ 4\,ה\˲P','',0,'?'),(_binary '\\'Uz9^Di\69','wp-content/themes/chic-lifestyle/freemius/includes/class-fs-storage.php',0,_binary '?1v+|T\\\8',_binary '?1v+|T\\\8',_binary 'YL`\>\\^\^Xe,0\𷺔B\S','',0,'?'),(_binary '+,J)\ר\[+S=','wp-content/themes/chic-lifestyle/freemius/includes/class-fs-user-lock.php',0,_binary 's\\P;[\\S\\\\\',_binary 's\\P;[\\S\\\\\',_binary '\r\K~\r\\9\_\N\r\','',0,'?'),(_binary '\SȰ<\\0_T\nơ','wp-content/themes/chic-lifestyle/freemius/includes/customizer/class-fs-customizer-support-section.php',0,_binary 'C\ ׾\̔\$U\\',_binary 'C\ ׾\̔\$U\\',_binary '2\U\\\'Qvu*w^3\\t\(\\ߵ','',0,'?'),(_binary 'T`U˄\v\T','wp-content/themes/chic-lifestyle/freemius/includes/customizer/class-fs-customizer-upsell-control.php',0,_binary '}e3_Z\\\_8e\',_binary '}e3_Z\\\_8e\',_binary 'RBh \\Z\\}\'XiY)\x&sw`t','',0,'?'),(_binary 'EίCs!\Zc~c;\\','wp-content/themes/chic-lifestyle/freemius/includes/customizer/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'GL8^tUi\\"O/','wp-content/themes/chic-lifestyle/freemius/includes/debug/class-fs-debug-bar-panel.php',0,_binary 'e\\C\\_Kk\',_binary 'e\\C\\_Kk\',_binary '7\r0P\\\\\\	Aa\ \$\mm\\\','',0,'?'),(_binary 'w\5\\\\Y?\','wp-content/themes/chic-lifestyle/freemius/includes/debug/debug-bar-start.php',0,_binary '_Ȳ\ǲ0\~\"',_binary '_Ȳ\ǲ0\~\"',_binary '\Z!\w̃3[\r2\&&\\odl;','',0,'?'),(_binary '\r\\y#xi8','wp-content/themes/chic-lifestyle/freemius/includes/debug/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '1\\\\׶+,z]w2','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-affiliate-terms.php',0,_binary '5gҟ \\U\m-',_binary '5gҟ \\U\m-',_binary '[i\X\Q,na\\*\n\\f ¢n\0\6\|','',0,'?'),(_binary 'N!\0p~m','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-affiliate.php',0,_binary 'X&a0iu\FX\V',_binary 'X&a0iu\FX\V',_binary '|e7NʕQ;ww %\\\','',0,'?'),(_binary '\MEXzs\FI\\\','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-billing.php',0,_binary 'c\\DԻ\'\\\t\\',_binary 'c\\DԻ\'\\\t\\',_binary 'X\{\\5\>\T*\y/*\qŪ\\b_njZ','',0,'?'),(_binary 'KL\\4Zކ\\','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-entity.php',0,_binary '\ZU< U\\ߜ',_binary '\ZU< U\\ߜ',_binary '!\\>/i\lO\\e\	j\tdk','',0,'?'),(_binary '\%-a0ޙEz','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-payment.php',0,_binary '$\7\\0{\\',_binary '$\7\\0{\\',_binary 'A\L0.#\Q\­\LE4\\\r:uK','',0,'?'),(_binary 'k\\Ѧ\+ѳ\\mt\','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-plugin-info.php',0,_binary 'AVӥٵ\ѹi',_binary 'AVӥٵ\ѹi',_binary 'PC*ZL@\D!}\&\{8DwcH:\','',0,'?'),(_binary '\0\\<J漜 ^6','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-plugin-license.php',0,_binary 'z]+i',_binary 'z]+i',_binary '\^Fٯ\TTJh@-7\r;O\GVz','',0,'?'),(_binary '32+\>#\&.\Kz','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-plugin-plan.php',0,_binary '\'Sc\POH\\\=\b',_binary '\'Sc\POH\\\=\b',_binary '\\j\\\\W{\\5\d\WJy[%z\r\','',0,'?'),(_binary '<bB!\\M6\=\_[','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-plugin-tag.php',0,_binary '\O0H?/\\"',_binary '\O0H?/\\"',_binary '7\\\/\\Z\\0 8XnP[','',0,'?'),(_binary ')Pf\~즡\\)\','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-plugin.php',0,_binary 'r׫\m\^]ړ\',_binary 'r׫\m\^]ړ\',_binary '\ݶ\śI\\\\&1\\\K\"Eb,j5&','',0,'?'),(_binary 'e:a!|}7\','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-pricing.php',0,_binary '2\rYf\nO7',_binary '2\rYf\nO7',_binary '\j\\\Z_T\ibD<\DiTV\','',0,'?'),(_binary '	\07\n\\\n\(\','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-scope-entity.php',0,_binary '\n\}\:Ke\\',_binary '\n\}\:Ke\\',_binary '\\$\m\׺K-P\|s\0X2\','',0,'?'),(_binary '\AcO\4\\','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-site.php',0,_binary '\ɤ>^|0\"`a\',_binary '\ɤ>^|0\"`a\',_binary '+y&]\\\\Og^;\Z)i\,L*','',0,'?'),(_binary '\^Z/B#U\\','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-subscription.php',0,_binary 'lY26i&h\*',_binary 'lY26i&h\*',_binary '`ݢj\\\nQ1-U4q\w\n\','',0,'?'),(_binary 'l0\=E3\Q~|L4\','wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-user.php',0,_binary 'g\\\\\a.AW~\',_binary 'g\\\\\a.AW~\',_binary '\\yC,\z\M6)@8w\\@nQ','',0,'?'),(_binary '7\F)9g\t cx\4','wp-content/themes/chic-lifestyle/freemius/includes/entities/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\MDp3D\\r\XY','wp-content/themes/chic-lifestyle/freemius/includes/fs-core-functions.php',0,_binary '\KhHK\j\}',_binary '\KhHK\j\}',_binary 'c\\l*C\+\ʰ\\\n','',0,'?'),(_binary '\\\A\\?7q\Hz','wp-content/themes/chic-lifestyle/freemius/includes/fs-essential-functions.php',0,_binary '@\b?N@\Z}\ZF\',_binary '@\b?N@\Z}\ZF\',_binary 'Ko\ǣՔ\%\\u\0<B\_i','',0,'?'),(_binary '\\Gii\!ݵ6t\','wp-content/themes/chic-lifestyle/freemius/includes/fs-plugin-info-dialog.php',0,_binary 'N7/cMMzo',_binary 'N7/cMMzo',_binary 'w[-\<\ly1,x5\tB	e\ \\','',0,'?'),(_binary '\0Z\\rܭ\ݠb\Z','wp-content/themes/chic-lifestyle/freemius/includes/i18n.php',0,_binary '\B\\\!$0̨\',_binary '\B\\\!$0̨\',_binary 'J\3>4QUX44~9x7\_/l\0p\(','',0,'?'),(_binary 'J6\CUʡ\\\}\','wp-content/themes/chic-lifestyle/freemius/includes/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '.\"Ufzzo~\\z\','wp-content/themes/chic-lifestyle/freemius/includes/l10n.php',0,_binary '`x\.\\0u\[\'',_binary '`x\.\\0u\[\'',_binary ' |L\JV>#o\@ՒAu5\','',0,'?'),(_binary 'oү\\N@\3ϐ\n','wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-admin-menu-manager.php',0,_binary 'r3Ws2ab',_binary 'r3Ws2ab',_binary '\_\\r=5\@Zr7N>Jl\t=EE\\l','',0,'?'),(_binary '\\?\%\dQYI/9','wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-admin-notice-manager.php',0,_binary '#с]C?@\',_binary '#с]C?@\',_binary '\\W#iMO\G|3\DCƊK6\','',0,'?'),(_binary '~jcce\rjr1','wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-cache-manager.php',0,_binary 'J\0h_+eS4v',_binary 'J\0h_+eS4v',_binary 'S\z5\)2姣VTE\4`$a\\bhj','',0,'?'),(_binary '@P%vgpglJ1f','wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-gdpr-manager.php',0,_binary 'NWē\Kr2\-',_binary 'NWē\Kr2\-',_binary '\<0\\TOJ\\n}J.\r\\i\(k','',0,'?'),(_binary 'U^ZcWI','wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-key-value-storage.php',0,_binary '\K\|;P\9',_binary '\K\|;P\9',_binary '\v\Dq\hMU zM3\g~%\','',0,'?'),(_binary '^Z\\\\\K֡L','wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-license-manager.php',0,_binary '/<\Ȓ\nx[\nF!8',_binary '/<\Ȓ\nx[\nF!8',_binary 'أ\nw<<ǋNJ]\\\06\s\g(\F','',0,'?'),(_binary ']^nw\n\\oҫp','wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-option-manager.php',0,_binary '#lZA\\lRX80\\',_binary '#lZA\\lRX80\\',_binary 'Erw.]%\\/ j\`\\1\K\rl','',0,'?'),(_binary '&JT^w\$t\0!_','wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-plan-manager.php',0,_binary '\S\;CS*',_binary '\S\;CS*',_binary 'okvY\q7M\^\\6[P^\祧','',0,'?'),(_binary 'J{S\aa=HB','wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-plugin-manager.php',0,_binary ']xn>\'*Y>',_binary ']xn>\'*Y>',_binary '1\\<-Ѣ\"%Ƹ^\)=M[\\+o','',0,'?'),(_binary '>\P;d\\W_\2\\','wp-content/themes/chic-lifestyle/freemius/includes/managers/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\8CcH@14آ','wp-content/themes/chic-lifestyle/freemius/includes/sdk/Exceptions/ArgumentNotExistException.php',0,_binary '&\]ұ\0ƀ%%\\Z×',_binary '&\]ұ\0ƀ%%\\Z×',_binary 'i@s\ ԥ\\w\nvB\ǟ','',0,'?'),(_binary '&O\ >7\tR,','wp-content/themes/chic-lifestyle/freemius/includes/sdk/Exceptions/EmptyArgumentException.php',0,_binary '\gۊ\{]\"',_binary '\gۊ\{]\"',_binary '\Jpnx\D\\\P_\~A\}\\','',0,'?'),(_binary ']\o8͒(\k>','wp-content/themes/chic-lifestyle/freemius/includes/sdk/Exceptions/Exception.php',0,_binary '+yE1(Ev\03',_binary '+yE1(Ev\03',_binary '*d\L.d\E\mi\\\qn\?)\^\','',0,'?'),(_binary '\Ԓ\0\\$;n*[','wp-content/themes/chic-lifestyle/freemius/includes/sdk/Exceptions/InvalidArgumentException.php',0,_binary '	à\r{\K\{',_binary '	à\r{\K\{',_binary 'g3E.\G`dُ\Z	uR459\ x\','',0,'?'),(_binary '\'\:1Զ7<d6q','wp-content/themes/chic-lifestyle/freemius/includes/sdk/Exceptions/OAuthException.php',0,_binary '{=]+\npxf',_binary '{=]+\npxf',_binary 'cp\;,\M3f\'\t\R','',0,'?'),(_binary '\\n?\Вy\&CN	\','wp-content/themes/chic-lifestyle/freemius/includes/sdk/Exceptions/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'Ki:[8u&\\L#','wp-content/themes/chic-lifestyle/freemius/includes/sdk/FreemiusBase.php',0,_binary 'p\m\p\\ng\0\|D',_binary 'p\m\p\\ng\0\|D',_binary '\'Al)ә|\\\||P','',0,'?'),(_binary 'A\\\\b:\\\\\9','wp-content/themes/chic-lifestyle/freemius/includes/sdk/FreemiusWordPress.php',0,_binary '\\e\6\-C\"Qf',_binary '\\e\6\-C\"Qf',_binary 'H!wZ\rn+;wJ\"\ź)ԯs\\)\\','',0,'?'),(_binary '\\\D皡G\н','wp-content/themes/chic-lifestyle/freemius/includes/sdk/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\\=y\9D','wp-content/themes/chic-lifestyle/freemius/includes/supplements/fs-essential-functions-1.1.7.1.php',0,_binary '\\!\\++ڬ\\\',_binary '\\!\\++ڬ\\\',_binary '~<o\\_|\\n$\8q\Z\\\\}','',0,'?'),(_binary 'mA+\\4\`矸\','wp-content/themes/chic-lifestyle/freemius/includes/supplements/fs-essential-functions-2.2.1.php',0,_binary 'ӻ\\K1Ɛ+',_binary 'ӻ\\K1Ɛ+',_binary 'X\>k\\Dҳ\Z*\\\$ր','',0,'?'),(_binary '\P	U\K\','wp-content/themes/chic-lifestyle/freemius/includes/supplements/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\(ׂx*ӌ据\','wp-content/themes/chic-lifestyle/freemius/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\#)\\\\\2V','wp-content/themes/chic-lifestyle/freemius/languages/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'Ko\==\0;\\л','wp-content/themes/chic-lifestyle/freemius/require.php',0,_binary '0;xdH\턓\\=6\',_binary '0;xdH\턓\\=6\',_binary '\\B\\j\wu\+|\\\HKr\\d\n\l>u','',0,'?'),(_binary 'ZyV&\o=0)','wp-content/themes/chic-lifestyle/freemius/start.php',0,_binary 'Y\0\\\^,\\',_binary 'Y\0\\\^,\\',_binary 'T\\j^\\\\z72{\Ĩ\7\}\8','',0,'?'),(_binary 'U}\hCī\Z\j\\','wp-content/themes/chic-lifestyle/freemius/templates/account/billing.php',0,_binary 'jq$_\\P\Q1',_binary 'jq$_\\P\Q1',_binary 'Ki_;F\=,&\\#b\"r\'\cNL\[','',0,'?'),(_binary '\&\R7$\\\\!','wp-content/themes/chic-lifestyle/freemius/templates/account/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'A\hc,]\נfzH','wp-content/themes/chic-lifestyle/freemius/templates/account/partials/activate-license-button.php',0,_binary 'keUEÄ9X\/U',_binary 'keUEÄ9X\/U',_binary ' e\Ba7\*\\r`\@\捴#Gn\','',0,'?'),(_binary '|qty\Tx_#N\S','wp-content/themes/chic-lifestyle/freemius/templates/account/partials/addon.php',0,_binary '\r3\2Icb\',_binary '\r3\2Icb\',_binary 'ʤZ,4KS2	\w\\)\s%KZ\','',0,'?'),(_binary '!U/q^6޵_\','wp-content/themes/chic-lifestyle/freemius/templates/account/partials/deactivate-license-button.php',0,_binary ']\\\\r\㳁1h\',_binary ']\\\\r\㳁1h\',_binary 'hwR\zWZ|3V\\\[A8=','',0,'?'),(_binary '~^\s/Iw','wp-content/themes/chic-lifestyle/freemius/templates/account/partials/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '@\0\/UO5\\R','wp-content/themes/chic-lifestyle/freemius/templates/account/partials/site.php',0,_binary '<x\\X\0X։o',_binary '<x\\X\0X։o',_binary 'd\r\J_Ĩr\U\\~ȹܬ!c\\/!k\','',0,'?'),(_binary '	\\s\Sq\[V\֦','wp-content/themes/chic-lifestyle/freemius/templates/account/payments.php',0,_binary '\{V+-B\',_binary '\{V+-B\',_binary '\rmhj1rOLv\S\N\7y\\=J)','',0,'?'),(_binary 'T1\k<\Vs.ƿ\2\','wp-content/themes/chic-lifestyle/freemius/templates/account.php',0,_binary '\@\^MB\%\nD',_binary '\@\^MB\%\nD',_binary 'Fy$i\EYi[P=6|\\/\/i','',0,'?'),(_binary '\j\*o)\','wp-content/themes/chic-lifestyle/freemius/templates/add-ons.php',0,_binary '\<\ʈ\nQl\0\^',_binary '\<\ʈ\nQl\0\^',_binary '4c~\0HtW>԰8\\N','',0,'?'),(_binary 'TF\9VdNoT[x\5f','wp-content/themes/chic-lifestyle/freemius/templates/add-trial-to-pricing.php',0,_binary '5ַרG2\\r\0',_binary '5ַרG2\\r\0',_binary '\Zֵ\\sZ\\l@\.T,\#YD','',0,'?'),(_binary 'AD}\+-_F;g&','wp-content/themes/chic-lifestyle/freemius/templates/admin-notice.php',0,_binary '\\2t/F\\#',_binary '\\2t/F\\#',_binary '\\O\Q\Ao-%\\Jd^\\\F+H\l','',0,'?'),(_binary '\\_Q%|g\\xpy','wp-content/themes/chic-lifestyle/freemius/templates/ajax-loader.php',0,_binary '1\+o\.',_binary '1\+o\.',_binary 's\'w\z\^\ZZ\\\_\\׎6\','',0,'?'),(_binary 'ID\\\f\\<\t','wp-content/themes/chic-lifestyle/freemius/templates/auto-installation.php',0,_binary '*aG\\+\m',_binary '*aG\\+\m',_binary 'L\\vƊoa$\n\\틳\\\7\ͷP','',0,'?'),(_binary 'hkU{xDv(9\2','wp-content/themes/chic-lifestyle/freemius/templates/checkout.php',0,_binary 'r\:\\@!d\$',_binary 'r\:\\@!d\$',_binary 'NdmŁ\9\Z\fF\\ւ^6\6F\eǖ\','',0,'?'),(_binary 'Z	(~Sea:\','wp-content/themes/chic-lifestyle/freemius/templates/connect.php',0,_binary '\+t\K0F\8U\',_binary '\+t\K0F\8U\',_binary '\\'HAӈ\\n*U:d={Jz\9bkY','',0,'?'),(_binary '\\#tS!ww\\r','wp-content/themes/chic-lifestyle/freemius/templates/contact.php',0,_binary '\\\羲^zKa]\',_binary '\\\羲^zKa]\',_binary 'iE\\Պ¦/ۙ\\^8\./X;','',0,'?'),(_binary ' \˰8\Q\\F\','wp-content/themes/chic-lifestyle/freemius/templates/debug/api-calls.php',0,_binary '\\0\bx\\\uA\',_binary '\\0\bx\\\uA\',_binary ':\\&GV\\\\#_\ni','',0,'?'),(_binary 'CD\\\'\\r\\','wp-content/themes/chic-lifestyle/freemius/templates/debug/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary 'j\\\\\e\\K,\j','wp-content/themes/chic-lifestyle/freemius/templates/debug/logger.php',0,_binary '͟ҜG}\Ŵm',_binary '͟ҜG}\Ŵm',_binary '\ݣ\	]\//\\\Z]\6;r1\>','',0,'?'),(_binary 'HYfp-\#y(\	2','wp-content/themes/chic-lifestyle/freemius/templates/debug/plugins-themes-sync.php',0,_binary '$?OxkƩyOȀ',_binary '$?OxkƩyOȀ',_binary 'ޫw%ei<38ƌK\\rbC0ϼ','',0,'?'),(_binary '\\wXSg\GcѸN','wp-content/themes/chic-lifestyle/freemius/templates/debug/scheduled-crons.php',0,_binary '_yJk0ns/',_binary '_yJk0ns/',_binary 'EЅܔ`\\=\[\t5Q<J8;\','',0,'?'),(_binary 'jyv9A\\\&I','wp-content/themes/chic-lifestyle/freemius/templates/debug.php',0,_binary '}ܱm0h`~',_binary '}ܱm0h`~',_binary 'g[{\:~sH\,Q!\99j[_\','',0,'?'),(_binary 'd\?P_\k\','wp-content/themes/chic-lifestyle/freemius/templates/email.php',0,_binary '\\{7\q\\\\B&',_binary '\\{7\q\\\\B&',_binary 'mJ\fP1(o\43)\n5\β','',0,'?'),(_binary 'Лs\bxh3E','wp-content/themes/chic-lifestyle/freemius/templates/firewall-issues-js.php',0,_binary '``Îߍp\\',_binary '``Îߍp\\',_binary 'tr+vZzEi\p\d\olz5-l','',0,'?'),(_binary '5ؾ\dXp\\\\','wp-content/themes/chic-lifestyle/freemius/templates/forms/affiliation.php',0,_binary '\1x\0Xw*\n',_binary '\1x\0Xw*\n',_binary '$Bb\'\\^2ƑwW+-\\ZŐ','',0,'?'),(_binary '6\d\'\P\','wp-content/themes/chic-lifestyle/freemius/templates/forms/data-debug-mode.php',0,_binary '[g\\\"*f\\=',_binary '[g\\\"*f\\=',_binary 'mRӺT\{Rm\0q\n$\\3\OeE','',0,'?'),(_binary 'b*/Mk&A\','wp-content/themes/chic-lifestyle/freemius/templates/forms/deactivation/contact.php',0,_binary 'nYh\<\K',_binary 'nYh\<\K',_binary '˅ +Us	;=ls\','',0,'?'),(_binary 'hQ%L\U','wp-content/themes/chic-lifestyle/freemius/templates/forms/deactivation/form.php',0,_binary 'X\k+\͞\Qw\`',_binary 'X\k+\͞\Qw\`',_binary 'Bgns\1a\ץXfe\\)\\8T\\','',0,'?'),(_binary '\o9	\\\4LKG\rh','wp-content/themes/chic-lifestyle/freemius/templates/forms/deactivation/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\ZE83n\3Yj\\','wp-content/themes/chic-lifestyle/freemius/templates/forms/deactivation/retry-skip.php',0,_binary '/\V_k\XH\L\',_binary '/\V_k\XH\L\',_binary '6ϛUg o\\bzO*6KQxP#\','',0,'?'),(_binary 'FZN\NK[2P0q','wp-content/themes/chic-lifestyle/freemius/templates/forms/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\\-\r\6]\\','wp-content/themes/chic-lifestyle/freemius/templates/forms/license-activation.php',0,_binary '\u\;Q\\#u',_binary '\u\;Q\\#u',_binary 'ŮPA\y@Ū)3\:;Bǚp\','',0,'?'),(_binary '@\H*\"c\s\','wp-content/themes/chic-lifestyle/freemius/templates/forms/optout.php',0,_binary 'JaXZ&b,4UkNo',_binary 'JaXZ&b,4UkNo',_binary 'S\]{g)2MNQ8\L;\3y\ǅ}','',0,'?'),(_binary 'rǀ\"ENgk~','wp-content/themes/chic-lifestyle/freemius/templates/forms/premium-versions-upgrade-handler.php',0,_binary '\ck\_',_binary '\ck\_',_binary '\ \/\-4\蔦<\R\(\n,(\0W','',0,'?'),(_binary '&էj\p\D(A1?','wp-content/themes/chic-lifestyle/freemius/templates/forms/premium-versions-upgrade-metadata.php',0,_binary 'Z\\fU?d\29\',_binary 'Z\\fU?d\29\',_binary '0,KbO8Us\\$%q\\8\ \\','',0,'?'),(_binary 'n\'\ě\ljH','wp-content/themes/chic-lifestyle/freemius/templates/forms/resend-key.php',0,_binary '\|c5]+˂=ѿ',_binary '\|c5]+˂=ѿ',_binary '\\)$co_\Z<L	ؔ7\\\n\N*R\','',0,'?'),(_binary 'S\8<\qv!\퇬','wp-content/themes/chic-lifestyle/freemius/templates/forms/subscription-cancellation.php',0,_binary '\\0T\A\\kq',_binary '\\0T\A\\kq',_binary '*,*\~\\4&˸̊\3\$\0','',0,'?'),(_binary '朥AEl8\','wp-content/themes/chic-lifestyle/freemius/templates/forms/trial-start.php',0,_binary '\iݫD/\(3',_binary '\iݫD/\(3',_binary 'Ð\Hs	R#\\"TC\nW[\08\.$\'\Z','',0,'?'),(_binary '퐯Q!Pb\'寿\','wp-content/themes/chic-lifestyle/freemius/templates/forms/user-change.php',0,_binary '*\\@j\2I\\nߝ',_binary '*\\@j\2I\\nߝ',_binary ',I};N$<\\\\py/#','',0,'?'),(_binary 'Cc\pGt*\_j\Ɇ','wp-content/themes/chic-lifestyle/freemius/templates/gdpr-optin-js.php',0,_binary 'pQ)\=\t{C',_binary 'pQ)\=\t{C',_binary '\f \\\t	,am?\*G\','',0,'?'),(_binary 'c\%\8.\H\\\#','wp-content/themes/chic-lifestyle/freemius/templates/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '=$W{`Q9y\\Z\','wp-content/themes/chic-lifestyle/freemius/templates/js/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '\\kS\\/*]\r\\6','wp-content/themes/chic-lifestyle/freemius/templates/js/jquery.content-change.php',0,_binary '/6E\DΥ8\H',_binary '/6E\DΥ8\H',_binary '0\\ ho\x\4HY\\\P9AI','',0,'?'),(_binary 'C\\\\wWL\\','wp-content/themes/chic-lifestyle/freemius/templates/js/open-license-activation.php',0,_binary '7\u<\\3\|DX\\n',_binary '7\u<\\3\|DX\\n',_binary '\sу3\W\\~\WPػ;(X','',0,'?'),(_binary 'Ұ\5a\TK\벥d\','wp-content/themes/chic-lifestyle/freemius/templates/js/style-premium-theme.php',0,_binary 'Լ\7%\1_׎\',_binary 'Լ\7%\1_׎\',_binary '͹X_P\\3\pP\`{ ǘI:A','',0,'?'),(_binary '+jP}f\^(\0,tp','wp-content/themes/chic-lifestyle/freemius/templates/partials/network-activation.php',0,_binary '.#\\L5\d1',_binary '.#\\L5\d1',_binary 'Ul?M\f&\\y\-','',0,'?'),(_binary '3*V;\XP\\z','wp-content/themes/chic-lifestyle/freemius/templates/plugin-icon.php',0,_binary 'M\	t\nI~\w',_binary 'M\	t\nI~\w',_binary '?&;\0\(ٍb\\gy,S<\','',0,'?'),(_binary '\\4`\\\F7`Q/C','wp-content/themes/chic-lifestyle/freemius/templates/plugin-info/description.php',0,_binary '4[@Pe=FwT',_binary '4[@Pe=FwT',_binary 'J)S>\	8u#rA\!E\\\\','',0,'?'),(_binary 'j\\$\j\\\','wp-content/themes/chic-lifestyle/freemius/templates/plugin-info/features.php',0,_binary '[Xz}!\UWs!',_binary '[Xz}!\UWs!',_binary 'S\\"\00\\t`q.*d1P;Z\c\.9','',0,'?'),(_binary '{\N=KF9V	\\','wp-content/themes/chic-lifestyle/freemius/templates/plugin-info/index.php',0,_binary '=स\t\\\gE7\',_binary '=स\t\\\gE7\',_binary '*yv\rJP-:\T@\n\\8\$0\','',0,'?'),(_binary '!\@yZᢐ\','wp-content/themes/chic-lifestyle/freemius/templates/plugin-info/screenshots.php',0,_binary 'e? g4Y\\\]\',_binary 'e? g4Y\\\]\',_binary '\ɹS\\@\	MH<*7F,\Z','',0,'?'),(_binary '\nM%\\\\','wp-content/themes/chic-lifestyle/freemius/templates/powered-by.php',0,_binary '@f\\Dՠ\"\	G\',_binary '@f\\Dՠ\"\	G\',_binary 'z\Χ\n\yS\(IY4`7\\','',0,'?'),(_binary '\*ݺ=|6\<Ĉ)','wp-content/themes/chic-lifestyle/freemius/templates/pricing.php',0,_binary '[v\p\\\Miu',_binary '[v\p\\\Miu',_binary 'k\ƈI\U\Fk\7o\\hʒn','',0,'?'),(_binary '\	6\(E\)+\','wp-content/themes/chic-lifestyle/freemius/templates/secure-https-header.php',0,_binary 'P\j\\B7qȭ]\\',_binary 'P\j\\B7qȭ]\\',_binary 'E\r\"Oڦf\\}S{\\\\\','',0,'?'),(_binary 'X6\\\9\\67S!\I','wp-content/themes/chic-lifestyle/freemius/templates/sticky-admin-notice-js.php',0,_binary 'ZuD.0@`d0\',_binary 'ZuD.0@`d0\',_binary '\Lw\?\H+\c\2n\z\8G','',0,'?'),(_binary '񰴫~WbV,','wp-content/themes/chic-lifestyle/freemius/templates/tabs-capture-js.php',0,_binary '	\r\Z<\0 ',_binary '	\r\Z<\0 ',_binary '@7\\1\ʬܧA\Z{ܘyq$1s)','',0,'?'),(_binary '\Ͽ\\"癧+\`8\~','wp-content/themes/chic-lifestyle/freemius/templates/tabs.php',0,_binary '^\._fRa\\\#ì',_binary '^\._fRa\\\#ì',_binary 'b)WR&\4T۫\dv\p\Y>\n\\r','',0,'?'),(_binary 'wig\{7Z	','wp-content/themes/chic-lifestyle/front-page.php',0,_binary '\(\6dt1]:\',_binary '\(\6dt1]:\',_binary 'E\܃4\rŒ1<T$?Fas\','',0,'?'),(_binary '>{TQnxC)d)a\T','wp-content/themes/chic-lifestyle/fullwidth.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',S\3ֶ.k.\',_binary 'yJ	\*\'I\\\t\:m9\\S$6d','',0,'?'),(_binary '(\ʐS\\!#sI<','wp-content/themes/chic-lifestyle/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\A$9?',_binary '2c/0\\7\\gim5\0\;\O7\\M8','',0,'?'),(_binary 'jB,\t~\2\','wp-content/themes/chic-lifestyle/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WC\y\\\d\\Г\r',_binary '\\1\\OE\*\W1\NQ\r\\l\\\H+','',0,'?'),(_binary 'x\\Q\l$ic|','wp-content/themes/chic-lifestyle/images/arrow.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ɏ\\\8gƶ5VljH_',_binary '\\r\\\\\Uv\\׈\\T,#\G\?B/','',0,'?'),(_binary '\\*^\ME	ۮ@Es','wp-content/themes/chic-lifestyle/images/header-layouts/one.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n-H\\\ZL*P\',_binary 'rMÊ+*\mLSlHwvТ\z5\\\','',0,'?'),(_binary '\\\\VTh-@o&Z','wp-content/themes/chic-lifestyle/images/header-layouts/three.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\\;<\s\',_binary '\Zz-\\?6MMָG3\V(\`\gF\\\0wֵ\','',0,'?'),(_binary 'tN)Rr2','wp-content/themes/chic-lifestyle/images/header-layouts/two.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Rk?D\'<\ݪ',_binary '0G/\Z2v\פN\ (iݰl\s	:,','',0,'?'),(_binary '\d}\-u\\\5WGZ','wp-content/themes/chic-lifestyle/images/left.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\2\\l\\ZF',_binary 'rU!z\\r^7.&*\Ki\\\\*u\z','',0,'?'),(_binary '?,U:\kT\a','wp-content/themes/chic-lifestyle/images/no-image.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϒ\x>\{I',_binary '.B`\t\\uD\pޞE:\0-c=?','',0,'?'),(_binary 'I@\nh','wp-content/themes/chic-lifestyle/images/right.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@[B|\ݒkZ',_binary '\\]t׽>\\RȔdͽ|>\\]a$J','',0,'?'),(_binary '//\Þ\=\03D1\Z','wp-content/themes/chic-lifestyle/images/search.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0ǅ\=iG\i',_binary '\\\!NK2\\\\\z\n\G\Qj+','',0,'?'),(_binary '\(&#m.\Z$\\=X','wp-content/themes/chic-lifestyle/images/slider-layouts/one.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\hq	y\"+\\n',_binary ':O\\|\l\\\(!V\\M\	~\\','',0,'?'),(_binary '[\Kk9\\q>B}\y','wp-content/themes/chic-lifestyle/images/slider-layouts/three.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u`RO\>Έx/\',_binary '\8(+\\q\6\{\\`\\00\','',0,'?'),(_binary 'g̦jYI\mSX=1','wp-content/themes/chic-lifestyle/images/slider-layouts/two.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h|_GuJ\O\',_binary '\,V,\\ \`@ݳh/K?6,\;\BQu','',0,'?'),(_binary 'ڊH0\\S͋v\L\\Z','wp-content/themes/chic-lifestyle/inc/about/about.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G\j\\IS+',_binary '3#q\\Z\\*\\\~|ʳ\9\0e\','',0,'?'),(_binary 'q\\\UH\rn~\\','wp-content/themes/chic-lifestyle/inc/about/about.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\cx\D`>',_binary 'Cx\\r>a\qn\>\0\\b\\'u^K|5]','',0,'?'),(_binary 'ÈlIq\@b+V\n','wp-content/themes/chic-lifestyle/inc/about/images/bootstrap.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ė\Hh-B\'',_binary ']	\\G\\rI\\ \0-\sخ\','',0,'?'),(_binary '#\x~Y\PȆ\r/8Z','wp-content/themes/chic-lifestyle/inc/class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nZ	^\jG\yU',_binary 't4\D0\\\Re\\\..$s\*qK6','',0,'?'),(_binary '\0c\;G)\v}\','wp-content/themes/chic-lifestyle/inc/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tN;\\\.',_binary '(M\\}\\%ɻ\ra*#\>\#\','',0,'?'),(_binary '	\ =\=i\\','wp-content/themes/chic-lifestyle/inc/customizer/custom-controls.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BK\\JAC\	b\',_binary 'j\"6D\r)\ev84\9M\r[P\\o','',0,'?'),(_binary 'ClA\Zeݞ\F,ˠ','wp-content/themes/chic-lifestyle/inc/customizer/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'el\\\")>\|',_binary '6}\n\n[\\k\Zh\\\䭓\5eJ\\\\','',0,'?'),(_binary 'e1\/\nYx','wp-content/themes/chic-lifestyle/inc/customizer/panels/colors-fonts-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':`׼_AfV4zk\',_binary '\[N~^\n?ljR\'[\\\{|','',0,'?'),(_binary 'RGdh\Eۄ\`f!','wp-content/themes/chic-lifestyle/inc/customizer/panels/homepage-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{,fz;\$:',_binary '1:\,o\RW\#,\n\"6\_\>cQ\zg','',0,'?'),(_binary '\5hL\Ь\|I%\'','wp-content/themes/chic-lifestyle/inc/customizer/sanitization-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\re9\n\Qgp7',_binary '\\h U\ba\*M\q`\\S\\','',0,'?'),(_binary ';7إKQ&<JÜ','wp-content/themes/chic-lifestyle/inc/customizer/sections/colors-fonts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\\@|5%\~',_binary '`\\r\`~u%\8ݍ\O!xNF\D\l\','',0,'?'),(_binary 'jg\p@\\=A-k','wp-content/themes/chic-lifestyle/inc/customizer/sections/footer-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6vr}ꁭ|',_binary '_!\X:[.L>ĩ	\\CĶ\\gJBB~','',0,'?'),(_binary '։y˲ SE02','wp-content/themes/chic-lifestyle/inc/customizer/sections/header-layout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',ѤoE[\y\grl',_binary 'x7*҄2n\\\V\"x\mx\"\"\\','',0,'?'),(_binary '\\\\0AU7\X\'Z\','wp-content/themes/chic-lifestyle/inc/customizer/sections/homepage-sections/archive-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\ӽX\Zb\o}g',_binary '}}P4dh$v)\Ի\\Ώ\Ȣ}\','',0,'?'),(_binary '	\O\\@d\\\|\SjX','wp-content/themes/chic-lifestyle/inc/customizer/sections/homepage-sections/instagram-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\0r\\D+5#',_binary '`=JBF*\\HBr|L\'\*\,\k','',0,'?'),(_binary '\L\\`\r\F\','wp-content/themes/chic-lifestyle/inc/customizer/sections/homepage-sections/pages-select-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\#\\\Rޑ',_binary '6\\+-KשׁC;0\\\vSڜf\','',0,'?'),(_binary '\e;\u\','wp-content/themes/chic-lifestyle/inc/customizer/sections/homepage-sections/slider-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wO̖<H\.',_binary '\;\ȏ\\9\\\]\\ZP\)|','',0,'?'),(_binary '.lC\G2\r[8','wp-content/themes/chic-lifestyle/inc/customizer/sections/post-options-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\\\`w\\\\',_binary '3\~\\	M4R\5\K\s!vh$W\','',0,'?'),(_binary '1	BJ|ks*','wp-content/themes/chic-lifestyle/inc/customizer/sections/social-media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H\Bd\3\',_binary 'siY:BK\\\مdh~ۦKrOC3_z','',0,'?'),(_binary '\\\ƨdbI(\','wp-content/themes/chic-lifestyle/inc/customizer/sections/sort-homepage-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\i\\THWa|\',_binary '\[6bs\\'\dL)V\:?\','',0,'?'),(_binary 'CP\\go4!Ab','wp-content/themes/chic-lifestyle/inc/demo/class-demo.php',0,_binary '\$y%\u޹7P',_binary '\$y%\u޹7P',_binary 'J\\\\nSvW7T\ˮ\O\/\\\','',0,'?'),(_binary 'z\v:\','wp-content/themes/chic-lifestyle/inc/demo/demo.php',0,_binary '\M<\q\\Y',_binary '\M<\q\\Y',_binary 'Ƙ7|\0\\w$Q]9F\\2s9֛','',0,'?'),(_binary '\\	-\\G1\\]p','wp-content/themes/chic-lifestyle/inc/demo-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n(\\\\\\	\',_binary '\\0|\L	l\\5\n\Z\z\t\\;7\Z\0','',0,'?'),(_binary '쑌F븆JK\\','wp-content/themes/chic-lifestyle/inc/dynamic-css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\\\ۆ\ҫ\',_binary '{_\\>|W_*G͙z\\\wPR\\,r','',0,'?'),(_binary 'fM\'X	7>WH2=','wp-content/themes/chic-lifestyle/inc/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c!0/SP	\ܱq&',_binary ':ln{\̱k\?\wIMy~!a\#l!','',0,'?'),(_binary '\nf@\zy4\\g','wp-content/themes/chic-lifestyle/inc/getting-started.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q.j@qe5IY',_binary '@gS8\\\X;]R\W\v\i9#','',0,'?'),(_binary ':ҬN PR0TEt','wp-content/themes/chic-lifestyle/inc/google-fonts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\dtޭE\7\0R\j',_binary 'ͳ!\\KΘj\\2T\`^,5=\U','',0,'?'),(_binary 'O˰2\aa\K`\)','wp-content/themes/chic-lifestyle/inc/jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\؅mK4\F;*J',_binary '\?u\'\'dUZơhiQͶT}p\d','',0,'?'),(_binary '|]\6ؘ#Ss','wp-content/themes/chic-lifestyle/inc/kirki/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Il\1є?',_binary '|XCU\,.\\\\n]+M (K\uc','',0,'?'),(_binary '\\S\#`\rC','wp-content/themes/chic-lifestyle/inc/kirki/assets/css/customizer-dynamic-css-colors.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nڮ9	%{\"',_binary 'ڲ\\\\\}ekA\9_tu0{_.\','',0,'?'),(_binary '\.a|O9r','wp-content/themes/chic-lifestyle/inc/kirki/assets/css/customizer-dynamic-css-width.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g8\RRJ\',_binary '\\}ڝ\$X\\Y\0%tJ\\'\','',0,'?'),(_binary 'f\\\p!\n\0V~S','wp-content/themes/chic-lifestyle/inc/kirki/assets/css/customizer-dynamic-css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\9\#=D-\',_binary 'p\ aк^\\\F}dL0\mdҌv^;m','',0,'?'),(_binary '\3TA\S\Il\','wp-content/themes/chic-lifestyle/inc/kirki/assets/css/customizer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B\E=#XC',_binary '\\Y&\.݅\!\\Om>/','',0,'?'),(_binary '!ٍzr\\Y,m0','wp-content/themes/chic-lifestyle/inc/kirki/assets/css/customizer.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\hbV\\5J O\',_binary 'MX3+\&h\W\d\\\1s\O\','',0,'?'),(_binary '}\S#}M\Owa','wp-content/themes/chic-lifestyle/inc/kirki/assets/css/hint.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary 'Mv\c\\\T\','wp-content/themes/chic-lifestyle/inc/kirki/assets/css/kirki-styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary '\3qم\\\\\=','wp-content/themes/chic-lifestyle/inc/kirki/assets/css/select2.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!Gr\v[Zl )\',_binary 's@؜\#h\rER0}\\	A1#Z\K\','',0,'?'),(_binary 'c\\䣝\\\Um','wp-content/themes/chic-lifestyle/inc/kirki/assets/css/transparency-grid.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[^\Q\Ǫ\r:;5',_binary '\˝?\\#\O	\C\M\\\\n\0VY','',0,'?'),(_binary '\\ׄ1niW=˒J','wp-content/themes/chic-lifestyle/inc/kirki/assets/images/1c.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʦe3\\Uk$',_binary 'ː)͑`\Pb\\LE\\\C','',0,'?'),(_binary '\\0\8\n \!?\'OH','wp-content/themes/chic-lifestyle/inc/kirki/assets/images/2cl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\̯njh\\'Y\',_binary '\\\g:\s\'\\9S\>,d[\e&u\','',0,'?'),(_binary 'Ho{^\\Px\E','wp-content/themes/chic-lifestyle/inc/kirki/assets/images/2cr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MFv\Z\\x2\t',_binary '1\-\$:O\y!:ke(\ײw','',0,'?'),(_binary 'L\o\\|s$e','wp-content/themes/chic-lifestyle/inc/kirki/assets/images/3cl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o\i#2:V',_binary '߰-t\\:\uqm\\VQ\\\L\'\G[@\%','',0,'?'),(_binary 'h#\X#\R-\50\x','wp-content/themes/chic-lifestyle/inc/kirki/assets/images/3cm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\z6\"\',_binary '/FZ\n\Wi<\no\\>D\]\\\\','',0,'?'),(_binary 'u\>E?OwDeO\','wp-content/themes/chic-lifestyle/inc/kirki/assets/images/3cr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٱ\!+S\i?',_binary '&\P\tAez\sjۤݥAd}ʄ','',0,'?'),(_binary ')\D\\uJl','wp-content/themes/chic-lifestyle/inc/kirki/assets/images/jquery.fs.stepper-arrows.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/!C\ra2ռ;\2',_binary ' ^\$Vy˃0?N\}H6\\?鶬','',0,'?'),(_binary '(:\yqo\nA\\"3#','wp-content/themes/chic-lifestyle/inc/kirki/assets/images/kirki-bottom.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x*QXWTe\\\8',_binary 'cA(Ϲ\0\\\ZQ\n/B\9\Bc','',0,'?'),(_binary '\y\oq\c,5M','wp-content/themes/chic-lifestyle/inc/kirki/assets/images/kirki-bottom.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&>\\<Wc\8',_binary '\%\Z\"S\/k\\\\\\\Q\','',0,'?'),(_binary 'Oj\\"_\\IϹ','wp-content/themes/chic-lifestyle/inc/kirki/assets/images/kirki-logo.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'txzrrp\f4b',_binary '{4\	\"-	v]\F\*Ş( <ߔhÉ>','',0,'?'),(_binary '\\Wæ<(\<\!\','wp-content/themes/chic-lifestyle/inc/kirki/assets/images/kirki-toolkit.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l).\5\@',_binary 'th}\9rNf\s+k\8','',0,'?'),(_binary '\\:,݈','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/branding.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nj@>\ئr/\',_binary '\\06z=\a\\\\(\\GmTꥪ7SQ','',0,'?'),(_binary 'hC\\\f\\%','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/checkbox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ăO*B\&XT',_binary '_\\'`tQ?_\`N\0C\pX','',0,'?'),(_binary '?1Gfd#\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/code.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=cC\\Z7\<\n\',_binary ' uAO}ؒ\\FB\\>\ص\','',0,'?'),(_binary '\ǂB\P|;\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/color-palette.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\n!eO$2`8\0]\}',_binary 'E&VM>(O?H-/#biCBW','',0,'?'),(_binary '%]Ѐr\\\_\idci','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/color.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\\\\\\+u.',_binary '\-gZ\\yOeO\\0\髚aj\v\Z\k','',0,'?'),(_binary '\\\H㫴Um\T\\}','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/custom.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary '9%\!7-\\\ذ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/dashicons.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(cSɹ>\\g',_binary '畦\\\A\'!\\K\\rN\2\u\v.\d','',0,'?'),(_binary '-Od9\n(:TBJ\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/date.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t\\\\\4EȋL',_binary 'uఓ2*)\\5;8[\·&\6L','',0,'?'),(_binary '\>0k\\\\8莏O7','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/dimension.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\)d\".\\ 1',_binary '\;dA\'	A\\@f\*\P<(Q\m\y','',0,'?'),(_binary '\\\Dn=*)e	\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/dropdown-pages.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	~|D\JtD\0x',_binary '\@\\LY{\"\\:Ǌ\Dq\"[','',0,'?'),(_binary 'n\v\'e.\b','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0K\lF*\r\n\χ4',_binary 'n\DzK~\\#<6\\\\\\QD','',0,'?'),(_binary '\`&\D\-G\\Ո}','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/generic.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aZmV\\ NШ|)R',_binary 'ʦ24{%rm\\s9\','',0,'?'),(_binary 'P6\\rrƅ\6\\r','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/multicheck.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VJ8\+\\',_binary 'EDF/8(\5`1AĶ\&\\P0@N','',0,'?'),(_binary '\5\B@\D{2\CJ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/multicolor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\D\=Ln\6',_binary 'V\uЍ#\:Q2\\L ű\Za','',0,'?'),(_binary 'M%\:\\Fq5','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/number.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{\)j,YdX\',_binary '\\A\r\B@\?X\\F*\Ѹ\\','',0,'?'),(_binary 'A1\naMkϣ\ahX','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/palette.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\xBq\#\n',_binary '6F[\شU\lD\\0\r5nRaMH','',0,'?'),(_binary '\A0\\٦c ?x%','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/preset.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rN\4ow\\\\',_binary '\\\CX\cL\\h\T4jj','',0,'?'),(_binary '\읣-]-\Z\r\47;','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/radio-buttonset.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0{I\y\\\-\\1',_binary 'pǻ\_oy\`(.g\\\\B\,','',0,'?'),(_binary 'I^\k\\\O\c','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/radio-image.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\E뵄ڇE\"kpi',_binary '\	2C\Zf{N\\0~\{hR_ ~~\1\\\>U','',0,'?'),(_binary 'e\\a&\ YE=','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/radio.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jw\[N\P\',_binary 'I\rα\\\m-g\\$s=\\O\\&+','',0,'?'),(_binary '	\\\\w4X\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/repeater.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oB,2kM@\|\',_binary 'lb\v\\\mU\?UE(YfD\ t','',0,'?'),(_binary 'e\G>x\FC7V','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/select.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+4C	A233)P',_binary '˄ \\,\\AĆ\0?l\س&C4','',0,'?'),(_binary 'o\\\tpl2Ύ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/slider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A-24(28',_binary ']\G\_3c\\[\=\\Z\/\%1&','',0,'?'),(_binary '\\%E$=\(V\n','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/sortable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\R1BVd\a#Q\',_binary 'uH\VD\8\\I1N\"LlR\\','',0,'?'),(_binary 'q)\/2\{\X\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/spacing.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*F\\xvz\',_binary 'NJc\"-S	oc(P(\d\\\\H~;','',0,'?'),(_binary 'I-{\6ff1`\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/switch.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'?\\\6	Q6',_binary 'X=+>dS\\\fPu\hs}:L','',0,'?'),(_binary 'N\\\qM{;\]\\5','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/toggle.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v+\\$\%',_binary '\\\9MXF\kB?uL\!\\b\@','',0,'?'),(_binary 'U\/\\HyoLr{Cw','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/typography.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\\ c[//n',_binary '\\\z4Y\\L\Ze\^\@\(\\','',0,'?'),(_binary '\\\;\0:1VXa\\'','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/functions/set-setting-value.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\_\n|\RU\\',_binary 'wvri\\n\`\4!\\!\tx\S','',0,'?'),(_binary '+!\dHC\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/functions/validate-css-value.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y<\ǣ\)\\>',_binary '} Egv<3HI.Qaq\\\\zU','',0,'?'),(_binary ']pX_Qc\\FZtJ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/l10n.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8%\T{	)eO\r>',_binary '\\3\R{\sw\\\r+Y~\0e\Ó=թ$','',0,'?'),(_binary '\!MV\\9\\"\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/postmessage.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p\&aJ\\!MKP\7',_binary '\I\0\\\(\'{\I5o\\0[\\x','',0,'?'),(_binary '\"\а~\9\"\j\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/reset.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\"Dz\ؒ^',_binary 'v\aAkP\\TrBC^z\\(piBi\k:','',0,'?'),(_binary 'AHT\\DY\H','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/tooltip.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\etؖ\',_binary '|]\yXE\G@\\w!2\\Ѣ\(','',0,'?'),(_binary 'arspYۺ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/AUTHORS',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OĢd\T\r\n\\a',_binary '\QGl0͆^7ȉ8\;ET!_upB','',0,'?'),(_binary 'Ҹ_MGz\P\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\=\.ԟW\',_binary '\A !kp(֞Y\\m^äzTe_\\','',0,'?'),(_binary 'bj	J?\T4\j','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\v\iwh\ߜ',_binary '\h\Z_\\Х_<\\r+j\\\; \\','',0,'?'),(_binary 'U{\o\-9\:Lk','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/comment/comment.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dv5gU ',_binary '\\37\ZZu&G#̨\'5:He<','',0,'?'),(_binary '-\g\TXN\-P','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/comment/continuecomment.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	È\{\\\\0',_binary 'h\aZM\r\/ˈr=`\\4B@','',0,'?'),(_binary '\|\q!\\\y\\A','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/dialog/dialog.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȝ\M($\+c\',_binary 'j\M@X+\d\wӇ^QWs0\Y\H','',0,'?'),(_binary 'D\\F\iόm\\Y\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/dialog/dialog.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^E$¹\Z\\ha',_binary 'R)\!~\t\\\R&iC\Z','',0,'?'),(_binary '(Ws<$\\\O֝T','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/display/autorefresh.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\!j\\A-#;\Zr',_binary 'Ae?R\I\\aʌ\\\Z\ThV{','',0,'?'),(_binary '늏>\L\\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/display/fullscreen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\'r(\'\\)',_binary '\'Y\t\0{T\bsMo\ј\\|','',0,'?'),(_binary '7ENo`I%~b8T','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/display/fullscreen.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\n\Ej\@% \z',_binary 'ax\Ŵ)lLmݵ\\B\o*\8','',0,'?'),(_binary '\|\	\\Qf0\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/display/panel.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vi\:g\͗uבk7',_binary '\F[Ho\f/GvV*u\7\L/\\i\','',0,'?'),(_binary 'zhaqqX\7T','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/display/placeholder.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cn\ة#=r\Z\FGC',_binary '+9=\W\N\\\O3\rJ\9\\','',0,'?'),(_binary 'ad\\yd\\G\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/display/rulers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i9\F\\1	',_binary '\\QHs\]Ch	\"J\`3\*','',0,'?'),(_binary 'oc!\\\\b\rT&','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/edit/closebrackets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H;Л%~\"D',_binary ')5yu\\{=.qJ\\uZ/!I@','',0,'?'),(_binary '-\\\{ԌV<q','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/edit/closetag.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',3+\g\\vp',_binary 'AC\QS),\\\\\\\Z[\\nڪ\t\VE','',0,'?'),(_binary ':.	\}n䈴\W(','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/edit/continuelist.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\CܵHC6\',_binary '7{\Z\\HV1j8\\\^\b\\','',0,'?'),(_binary ':5\\\6j¦\\'c ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/edit/matchbrackets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\\(\b9\',_binary 'k\"l\EE\'꣢d:=\\\\",%p','',0,'?'),(_binary 'ؒXH{X%r\%\w','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/edit/matchtags.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\ю\9gfq\o',_binary '\\`N	ն\bxSO ~9Ͷ\nB2','',0,'?'),(_binary '|\\0\\%a-&Q','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/edit/trailingspace.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\yC$\\/',_binary '\\\H\!l^\\\fCe\','',0,'?'),(_binary 'i\n)<T\5_M\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/brace-fold.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Mu\\Nv\Zf8',_binary '\_\\\gP\\g\R\\rīW.q\g\','',0,'?'),(_binary 'p(Rt8','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/comment-fold.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ǵ<O\(6Rm+\',_binary 'klXOQwºILE)#b\M}3ym\','',0,'?'),(_binary '@$\2V$Z-','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/foldcode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8B\\ZS^w׽\',_binary '?~T\\"49K\8գJ','',0,'?'),(_binary '\r\-ޙ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/foldgutter.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8hwo~\w\nh\',_binary 'h7\\*GN0\\T0\N7ŰCQtPJ','',0,'?'),(_binary 'ν;\Fh#L','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/foldgutter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k./V?;\\'Jc\r',_binary 'Zz+\OH	\=\\\\\2\\\\6\','',0,'?'),(_binary 'DtGT!\Z~%\r','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/indent-fold.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|`\{\cJ},Sp\',_binary '2{\˒	\/y\ת\\0\\'\-$','',0,'?'),(_binary '\\F\y2\OO]','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/markdown-fold.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^`\q#]JZ⹹',_binary '\0\\+\5߯\2{\\Z(\\r *g','',0,'?'),(_binary 'v9<]%hdNk:Wb','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/xml-fold.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\\\\"x\=hY',_binary 'Sd\rxiQ]\\mG-\\\ޘ\:','',0,'?'),(_binary 'v\0Q0?w','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/anyword-hint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O֊¯iȥc',_binary '\ʒUH<.A{{.\Z^\\\\vFY\\b\'','',0,'?'),(_binary '!\\%=/d','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/css-hint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\i*VYHu\',_binary '\\PC\' \\\\!m\/$28V#B\r\9Qmԇ','',0,'?'),(_binary '8U\|\ʐ\͓8\\\$','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/html-hint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f-v\\`@\q\x(',_binary 'ŭ˿b\-\\\l#\\\\C	\ZM','',0,'?'),(_binary '2\j\2]\\0\\"U','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/javascript-hint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u|n\o\f\MR',_binary 'rEY\^K`\&\Nw,\W','',0,'?'),(_binary '\Q\m4\02W \da','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/show-hint.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c2\naNw2\\\qG\',_binary '\1\+kI_Ԁޘ\\#O\C6\n\c\\','',0,'?'),(_binary '֩N,\>ŏ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/show-hint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\fn/n5)\,',_binary '\\nޒ֨Gr5Ѩ-|O`\U\"k\\B','',0,'?'),(_binary '\"5mA3\ؕZƳ\9|','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/sql-hint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\\)?\\\q',_binary '~B\\:e\\\\b+\"\[3_mK\\','',0,'?'),(_binary '.S\u\]<W\,','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/xml-hint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2\8\5\\~vFe',_binary 'C-q\K\8\	/Sٷ\sN^?\8ŸI','',0,'?'),(_binary '\߫X\r\ZDw\S','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/coffeescript-lint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ui\p\\u7Yb',_binary 'c\\\[\"Wcc\ł?\\av\\\\','',0,'?'),(_binary 'ɰ\\\*j/\S','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/css-lint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\og\mLf',_binary '4ɉ]@(C\z\"{\rt\_U','',0,'?'),(_binary '%˭\\A\\4,Vq','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/html-lint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>`\ބdL\\\\j\G\\(',_binary 'o\-\Ei *pF\`Ig\q).','',0,'?'),(_binary '2\,\Α\\\gH\%\Z\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/javascript-lint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iv1\"\\9\0\Z',_binary '\$\\7\"6\䨞}{?\ؽ2\\]E\5','',0,'?'),(_binary '\X3Bؗ\7pa\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/json-lint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	]	\$;\^',_binary '\\m\"7хuq/\\~','',0,'?'),(_binary '>Hwi\\Bһ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/lint.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_]$9G\:\\}\*-',_binary '\p$\(p;P\\T5̛0Q=x|\r\a','',0,'?'),(_binary '\ELXaD!,eֱ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/lint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_%M׃\\D\\',_binary '\ӟ5\}i\\LR$.\h2\B','',0,'?'),(_binary 'k}\Ub\4\	$\I/','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/yaml-lint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4Xc1\\7J<',_binary '35\:\!\7u6@1*\\ZyN80*','',0,'?'),(_binary '|Q>;\r3\\"Ni^','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/merge/merge.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'r%\\02e.\\',_binary 'd94\#Zr\hj\'\\]sܩ','',0,'?'),(_binary '9#3TR\Zy|W\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/merge/merge.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/-?\b:\\-%)',_binary 'qvOL\щ:\\!\BM`\\c\n\8WJS','',0,'?'),(_binary 'Ǉt\dOZ\' ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/mode/loadmode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\w\Erh[',_binary '!t+ik`C\\\\"ΆFq\s|I;z\2','',0,'?'),(_binary '\r!~)\-\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/mode/multiplex.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_4b:+Bm\"$\I',_binary 'ՒAG\Fy#&TX\!\','',0,'?'),(_binary '\\'\)9q\ڠ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/mode/multiplex_test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N8/\.< ',_binary '\n8\)r+F\itڝL\yE3?)\aMTf\0\','',0,'?'),(_binary '\&$ Å\\f_\\ZT','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/mode/overlay.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\\EǈUl.',_binary 'tH\J)(X\\\?N`djWE\','',0,'?'),(_binary '.\A\KQA','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/mode/simple.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\CrzTo\x`C',_binary 'kdEM(S$Lh搖#L{.#c?','',0,'?'),(_binary '5_\)C3\e\Fz	Vg','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/runmode/colorize.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#\\GS׷\L',_binary '␣\\W	fa\\\\\\j\\\','',0,'?'),(_binary 'u0>\\M\0\\3L\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/runmode/runmode-standalone.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x|{|\"]t\wĕB',_binary '@%C\M\7\+!GJz\E%^<\\_','',0,'?'),(_binary '\"\n>\rHYv','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/runmode/runmode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\\PC\\"u?',_binary '@\\GI\\;\X!ë\Z]Zϯ\\)eFg\\','',0,'?'),(_binary 'i\=\0~\_\l','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/runmode/runmode.node.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\|k\m/\\)~\ ',_binary '\\{г%\\	\Z~c\$Zi','',0,'?'),(_binary '\\\\ܨ\(#7','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/scroll/annotatescrollbar.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1X\ҩzm\òI\',_binary ';%UMǠ\r\*rеa:0','',0,'?'),(_binary 'p%\\rWL\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/scroll/scrollpastend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\s]s;\8\',_binary '.ik\N\\ܱ\@\?*CϲQp\\X\\\*','',0,'?'),(_binary '\\'N\n,TO\&\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/scroll/simplescrollbars.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RQjB/\\D^3',_binary '\$%!s`\\n\ZdStEhಖ\'\^Չ\','',0,'?'),(_binary 'b\U6\\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/scroll/simplescrollbars.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f$6\Wlb\',_binary '}[\V	d\\\\0\\)Ц\\Cy\n\\8\?\ZZY','',0,'?'),(_binary 'x\\{2\\\]DO','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/search/match-highlighter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'%Ý\+P?',_binary 'y6l\)^*%8tb\Vz\0mQ1b','',0,'?'),(_binary '\rtB\`Xd','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/search/matchesonscrollbar.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\'p\hH\R\$v',_binary '\R\"\S\}\\\\|\Xt⽾/\\\K\','',0,'?'),(_binary '$$އÉ6\ymZ\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/search/matchesonscrollbar.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J4\g\\',_binary 'L\p\\+]+\9\	\dg|\\f\\\','',0,'?'),(_binary '\\\\X0\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/search/search.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Y+`\Z\oqm0[',_binary '%%hۦLuYt\TS\'[\/X\~>X\t\','',0,'?'),(_binary '\\‹]œ\G%w','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/search/searchcursor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '؜\\9\\0v',_binary 'M430+?\ŎkV.aˀ<\n\N\!','',0,'?'),(_binary '\-~OH`FMd1bp','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/selection/active-line.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\fk/\]l\'\\"\\P',_binary '7|\Zwqe׹\\uFN,:\n\,M3S\\B','',0,'?'),(_binary 'VǨboڝhX\-','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/selection/mark-selection.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_K\Q`^q',_binary 'NHӅRiVSә60_?;)\','',0,'?'),(_binary '\DE6\\0\5M\ <\2','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/selection/selection-pointer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u<\%\\8\a\lD',_binary '9\D\\+db\\n\8\ZS-O\Q>v\\','',0,'?'),(_binary '>\\\re*i\P\\A>\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/tern/tern.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MW\\t\\0ߣ\H',_binary 'BCU\\\,Q`dc\\\\J9\!q(\\\r\','',0,'?'),(_binary 'C\>v	\K\Z \\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/tern/tern.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\.`\0x\(f&*\',_binary '\L>\.\\c3h\\>UNTZ','',0,'?'),(_binary '\0\\\b=\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/tern/worker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\M{\?{',_binary '\x\\\eP@\3<\\\ *\n<','',0,'?'),(_binary '\n\\Fkk\-\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/wrap/hardwrap.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L@,dK$',_binary '\u)&\\E}x%mW:','',0,'?'),(_binary '|=/֚@Y\˺','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/bin/authors.sh',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W0Bw\֖ހ\q{\l',_binary '\ࠜf&n\\E ɥVѾm\\.','',0,'?'),(_binary 'Δ\'=So[\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/bin/compress',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,Ḭ\~m$',_binary '\\\\=}0XډmbQ\\\`\q','',0,'?'),(_binary 'a\\n%\;0~;d\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/bin/lint',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?J(k1\}I\\',_binary '4}\Z2!|~T#z)\4!&AQE','',0,'?'),(_binary 'x\\\\'zu\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/bin/release',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\\\\~Y\',_binary 'k%Ҁ\w_3\PS\٩\5ڂ\rG\۞','',0,'?'),(_binary 'ɢ@#sSACeJ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/bin/source-highlight',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\D_#A\',_binary '(\Q\\'\\(\L\T^\Z\\PW\\;v\-','',0,'?'),(_binary '\\"\d\nܭ*\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/keymap/emacs.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I|N\CW',_binary 'ʋwA3j6L\Zp\3̞\ U\pJ','',0,'?'),(_binary 'a9Z\Җ9^l@h','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/keymap/sublime.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<9\KB~l4',_binary '=u\Ӭd\Z4\/[ƀ\Lǃ\")]SH','',0,'?'),(_binary '^\`}/\\\x','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/keymap/vim.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\۬\ۺWIsL-1',_binary '\8\xA\`,0\au;?ORO\j\\\','',0,'?'),(_binary 'a77ĭ\\	\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/lib/codemirror.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#6I^5\"=\',_binary 'iTў\k?{t2\VҊ\\','',0,'?'),(_binary '\X!\{p&\\\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/lib/codemirror.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SO\N\"\R\\',_binary '2IkӃ\&_\yj>w(p\IJ[\','',0,'?'),(_binary '\re\uWǷ\\`[RXa','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/coffeescript/coffeescript.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\/\\\]\\5',_binary 'OVt J(ׁs\;\K{㺋sɡ,e#_}\ ','',0,'?'),(_binary '\\ܧ.\!','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/coffeescript/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0nC1}\\\,\\',_binary 'i5.;\W)\?8\n\|K\VMKH','',0,'?'),(_binary '\\S\Z\-\u','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/css.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L\"5\'\\\\n3ϝ',_binary '\(:\Y7ʦ\\\_B?wQ<\\+\','',0,'?'),(_binary '\\k)*\J!DG\ސG\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/gss.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n/:}a\'\n.h\0\\',_binary 'z˫\M~\>Ԇ\87\",c\"M\1\','',0,'?'),(_binary 'z&\!\H7\C̶','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/gss_test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\T͠q!r',_binary '̟\'/G\\d06a\O)\ٹY\z5{\','',0,'?'),(_binary 'j?\\ITz\r\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]@\CJ\Po\h',_binary '\A{\\\'L\\\t7EXfꙁ$\','',0,'?'),(_binary 'ߜl\\\Í\r)\c','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/less.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\Wԋ\ߊ\7\]d',_binary 'Ll\rK\:2\\\Z:,\h\\"=ݪ','',0,'?'),(_binary '\A\V\\4?','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/less_test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\t\'Oc4)\Fn\v',_binary '\)ee<[\\\"ۻb1\\z\]\u׾\\','',0,'?'),(_binary '7\L8\\6-','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/scss.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\'rz#\\AQ#',_binary '\ϸ\\?K?\%b\,Cu\&\\<','',0,'?'),(_binary '@+8ؽdİ|i','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/scss_test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qgwj\>}:\3',_binary '\"Iff\y[לƵ24tjU\I\\\','',0,'?'),(_binary '\C\v\0taA','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ͣwϚ.{\\4\\',_binary '8\b\?\S1\Z-$0Dsh\8q1gu','',0,'?'),(_binary 's\b+\i','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/haml/haml.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`dF&\RR\\{>',_binary 'I)\\AQq\Ed\o\\>M\\','',0,'?'),(_binary '\\\{\4t-','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/haml/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z k\no\',_binary 'Ǒ(8\y[\\8w\\\\\O\8$\"\\\\','',0,'?'),(_binary 'Y,4)NMd|','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/haml/test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' 矀(_\p\E(5',_binary '\\q\4\'o\i1\0ܱ.&\\@\@\\M	|','',0,'?'),(_binary '\ݱc\\U)S<\\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/htmlembedded/htmlembedded.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/	*\|R~q\Ԫ\"',_binary 'Q/:(r{u\\\\0\\kwVn\dT\\PJX','',0,'?'),(_binary 'A.x0\nqh\\/k','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/htmlembedded/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+Z:\%is\',_binary 'Uz1,e:vu?n۽\Zo\\rþI\ȫ+\','',0,'?'),(_binary 'D3I@C','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/htmlmixed/htmlmixed.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\*r\k\F\',_binary '\S\b̴\\O\5\\<$\(s\\ ','',0,'?'),(_binary 'mi݁0R\\'\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/htmlmixed/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u~cVp2u\\2<\\$',_binary '\\3\&񏒹9\\(f\*\IcEB','',0,'?'),(_binary 'gTкjI|^','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J,\L\S.\_\I',_binary '\\a.h\\0 \{Q\ûin&TT\','',0,'?'),(_binary 'v4>\8>\+ң{]','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/javascript/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';5O\y\r;\Q',_binary '?+\@\\\08w\lW\\mz<%0','',0,'?'),(_binary '_\rRMB3kK4<','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/javascript/javascript.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x1F\w\\\\',_binary 'r\Z\Q\\Ϙ	\8\J\a{>Z`xG9','',0,'?'),(_binary '\r\$092\\\C','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/javascript/json-ld.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kU#\\&<',_binary 'p	8M0\\\?HfM\0}vK\\\','',0,'?'),(_binary 'y&ɾc~s\'\e','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/javascript/test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\z\\\+`\6>',_binary 'LZV2H:,%\F8\\\\\0\2Kho\\','',0,'?'),(_binary '\Ia\r/Z3V\\U','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/javascript/typescript.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\3\\u\V\',_binary '\f/EB\]#_3툶\sN7z\r','',0,'?'),(_binary 'Bܝ\?s*\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/markdown/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\kfL/\H\',_binary 'ߖ\h\Ç\Z[ه9=0\$Q\\\','',0,'?'),(_binary '\YT\BD,&>&B\ ','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/markdown/markdown.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hܥ>~\\#ٜT',_binary 'v4FY\^z%\\r\*Q=\_\\Vo','',0,'?'),(_binary 'e \HA','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/markdown/test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\^uLb\Ò\',_binary '\8bPN_a\vaʪ2\H?\nƭ','',0,'?'),(_binary 'a\Iʎ\)\6.','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/meta.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\dE0sxc\Ƭ',_binary '\;w\-l8w1\\s&mB\@7s$','',0,'?'),(_binary '5	H\\\rܾX.{','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/php/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H:a\\nY\rys\4',_binary 'r\8\\_\	S}\>:5\"S_','',0,'?'),(_binary 'WD\:*쯟ll\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/php/php.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ϧp柖q[n\B',_binary '\\ZO*Ny\\\\Kg\\D\"\q','',0,'?'),(_binary '\Z5x\$\\\j','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/php/test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\P\.K~\rn',_binary 'DT`O\nq\mHZm \ό1\\','',0,'?'),(_binary '⺇R\FBIL\\FL','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/sass/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\S\ν\8',_binary 'u~\sC\&\f\H\:\/X̱L\\\\\]M','',0,'?'),(_binary 'kpߜr. \t\,\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/sass/sass.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&< \g1ZP8oP',_binary 'TnLf\h+֕c(b;\\TzJ/c%\\@','',0,'?'),(_binary '\'\n;[[p\Q\W','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/smarty/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]7(\,N',_binary '\w\/,T|UZ\U9Ͱ]OH\g','',0,'?'),(_binary 'JZ\\PGz^\-.','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/smarty/smarty.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';=\9\D\f',_binary ')L_\HIГJ\\z8\r5\r1\\V,\:','',0,'?'),(_binary 'bropZ:','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/sql/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ko\n*B\6pw\',_binary 's)>\r\\"\?!ؑ-֏A\P\}\','',0,'?'),(_binary 'b7ǯl\E','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/sql/sql.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>J\\\\,\;I',_binary '\ZfE\\-\0K\>\\ \2\ǓS','',0,'?'),(_binary '=\¥Ȟ޶\l\Z','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/stylus/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yB\9q~\LZݽ\',_binary 'ٶiщ\\\AX\`\n\DeӔ\ռM','',0,'?'),(_binary '\la(ydJJ=\W\g','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/stylus/stylus.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't>\Kd\O\\9',_binary '\'΃d\\VM=KpLCN.%\ZrLl\*M','',0,'?'),(_binary '6\"3i4\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/textile/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!΄FfEiݸ\=\',_binary '\v2\*\ 6	-(/Ӡ[t1o\ٵ\t\w','',0,'?'),(_binary '\\"W}\'+\NH','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/textile/test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RQS\r\r\\T<\X\\',_binary 'Kᑈ++\^=\l}M\\\~b\"\','',0,'?'),(_binary 's\\w\\Zrn1r','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/textile/textile.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>4Rygd\-m\',_binary '|\\Zjm\\Մ&~MS\p\\\^9r\\c','',0,'?'),(_binary '̠\nρF;r\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/twig/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\\\'\SMBCx\uc',_binary 'ʢ\PU\\R.(\8\mр֟-\\\\n-b','',0,'?'),(_binary '\\rm\Id\̹\ruLi','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/twig/twig.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cp\x\?\о8\',_binary 'g(MԲt\P\df\:=k{\⌻\{Dr','',0,'?'),(_binary 'Al1\{(\v:','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/xml/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EmŦxБ2(',_binary '\\!\Ӷ	,8.\"7\\(\ØwH\r\qz\','',0,'?'),(_binary '\i\)P\+S\"B\','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/xml/test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\/iЧxS',_binary '1\\\cG#&L(,bض\y\׀xl','',0,'?'),(_binary ',:>v\r	(2\\0\\F','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/xml/xml.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ϯ!\\\nZ',_binary 'V\\\\q\ZSV˞G\\oPJXZm3D8','',0,'?'),(_binary '>rB8:\\l?@','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/yaml/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e6NxE\QQ@\\\;',_binary '-驂\ۈ:}\\\bT$\)\Zj&Ł\','',0,'?'),(_binary 'l\/|\\o\IU\i','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/yaml/yaml.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"!Q\"FU\E',_binary '\\܌\\h)I-Dm\sR4\U\xd\FA\','',0,'?'),(_binary '	NYt+WS-|]P','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/theme/kirki-dark.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\w)\h\',_binary 'm \UW-ar\T\\\(Z\bp/D\O','',0,'?'),(_binary ';a\ZvS\\\\n\Z','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/theme/kirki-light.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')ɲ:}/c\'.K\2',_binary '\8d;\/\QfZ\\Ai6YRi\','',0,'?'),(_binary '8C\Ɠ&\\!D','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/selectize.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ޝ[kk>SB',_binary 'N\_\\mw\s\/IRú]T','',0,'?'),(_binary '[I8u;0<y\8w','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/serialize.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\\x]U\\R\3.\\\',_binary 'D~\\E4^J1g\zh\0~\R$5g_\','',0,'?'),(_binary '\\Cg\\\՞B','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/tinymce.plugin.code.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\믭8\h\@@\',_binary 'Z\nKm\}-\\7\z\\"t	k','',0,'?'),(_binary '6\\'eS(\n\bA','wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/wp-color-picker-alpha.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lz\\\`\r9',_binary 'i>\-JU:k?\eB\r\xg','',0,'?'),(_binary '?Bi\\W\sa,C\;','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/checkbox.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƭ9}\\0\c2\r\r',_binary 'Y^q³\V\M3A~\v\sx+\\\Uݼ','',0,'?'),(_binary '^\\,L\\\z\','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/code.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?XS㝵\\\ۺs',_binary 'Z\Qs\[\\{\\\?pt֑]|\\\U-e','',0,'?'),(_binary '4|\mX߬','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/color-palette.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dY	ږ\`\\s#P',_binary '\e7n\! f\\D\Zh\'J6SJo1\','',0,'?'),(_binary '\=x\\'\\%Ote','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/color.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n|C',_binary 'JG*\\r\0df >}\\\\\\^\\N','',0,'?'),(_binary 'I>\:J\}\\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/dashicons.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#RC8u?2T:Gڅ',_binary '\G\\"\]icsҺ҂ڒ(','',0,'?'),(_binary '$󰈥)r<ର\','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/date.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\\\'e/R[\q+',_binary ']4˩SB\4K\\\7~\\j','',0,'?'),(_binary '\\W\kM}TT\9','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/dimension.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٗ@ȡU6<\',_binary '%\'vu[\ ʁ\\\#i=\','',0,'?'),(_binary ';\\\\L)57q','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\Gw556\\W`',_binary '\\(;ȷ|\\­\\\i\)B\hI','',0,'?'),(_binary '=IoB#D u','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/generic.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x<\\+CǯUm',_binary '5K\X\\gٱ#$W\\\p+D','',0,'?'),(_binary '9\׳\ )ƐV%6','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/multicheck.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.g/W\5\+r',_binary '\CSe\yC:ү|\۩J4$\Jiw!\0(c','',0,'?'),(_binary '޺du\\U\nxԠ','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/multicolor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\UGf\\R\\\ZG',_binary 'T\\'\nd\\5\:f65Tj\_|$\S','',0,'?'),(_binary '/\\1!&9d\','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/number.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\;sxq%_t',_binary '*Cz\I;R*\$\wEpvQp','',0,'?'),(_binary 'nZW\\P\G','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/palette.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʮKYo\'L}b',_binary 'KTA\ԢF\%\0W\E78\r;=\','',0,'?'),(_binary '\Ϙ8e&IX5t\\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/radio-buttonset.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mkT&4x\|~',_binary ' \\'9Н	o\\1Kf\y\qn\0\\iA','',0,'?'),(_binary 'l\Zx-','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/radio-image.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lFɫ:+',_binary '\K\\\DZ[Z\V0D*G\\G{-4','',0,'?'),(_binary 'Ր-\t[}F\&','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/radio.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\9z˃6IOܕ;\',_binary 'K\_TJ؟lj[C屋xE>[`\^\','',0,'?'),(_binary '>`]\\0NN2?','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/repeater.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L\\.ؽa\0|',_binary 'Asr8;\sMk\0=]q!\a;\:\'','',0,'?'),(_binary '\!\g \-9','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/select.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\xq(\\n]',_binary '}5~EPUWmnq\:;DB\:K\E','',0,'?'),(_binary 'ױU5t >\','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/slider.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'жu9>\\\\\B',_binary 'sj	6V`f\\'jҧ\ ~InR','',0,'?'),(_binary '\\e\ZqTf\bf%=\','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/sortable.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\\Eiz\y=%v7',_binary '`#ó\\ːŘ3f6\b\\0;\,\\J','',0,'?'),(_binary 'B|\>\'\}ĨK&a\2','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/spacing.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\[\rX\n\p',_binary '7\0bH,2\_9\\&\\=]$STV','',0,'?'),(_binary '\\5P~k6\ʡ\"x\','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/switch.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\>Kn\j',_binary '-2 }\r^\#k\Zu\l\TV\. ','',0,'?'),(_binary '\Jwg\\|A3\','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/toggle.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\U\Lj~M\E\',_binary 't9\\r\e\1\m4עx\kG\\\Z\','',0,'?'),(_binary '\\&s4¡*q\2','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/typography.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TGzFi\6c',_binary '.\zF2V^W\,#g\!tt\g8','',0,'?'),(_binary 'ca0\\nw0','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/customizer.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H\V\'\r!w[',_binary '\\G@\\jA\i\\c\@\\..L','',0,'?'),(_binary '%X\\\\&','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/global.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5lb>39ZJ\',_binary '\\Ȝ7Kc`ɧ\kF9L','',0,'?'),(_binary '1Q\\̖-)Z/t.o','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/panels/expanded.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\yjwJ:J|\',_binary 'B2锳§\lyk(\\G\\\','',0,'?'),(_binary '\Sgn\\FT\`\','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/sections/expanded.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\F\ \0\w\k\{',_binary ')k/>-ԕܳkR#H@\-<\','',0,'?'),(_binary '[\\\e#s','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/sections/hover.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\344\Eb\\!\n\i7\',_binary '\X\\\?!eeO\q\z\ėJD$O0','',0,'?'),(_binary '\ɋ/?+t','wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/tooltips.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\nL蘋\\Ӥ\',_binary 'r/X\\8Î9Ov\}\\\T}&6\','',0,'?'),(_binary 'Lڨ<7\4I6\uE/','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ar.js',0,_binary '4)\0-\"z\',_binary '4)\0-\"z\',_binary '\\\H4\ZK\2VzN.\ᡨ\uE5w:','',0,'?'),(_binary 'p\$7Ob\S\\W\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/az.js',0,_binary '\<޻jȬ\\f\',_binary '\<޻jȬ\\f\',_binary '$=\\\\dA\joo\\n0\\I\Rܻv^\4\','',0,'?'),(_binary '\HAJ{X\oGe\|\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/bg.js',0,_binary '#?i\\¯1O9Qw',_binary '#?i\\¯1O9Qw',_binary 'H誗7\n\;Z\\|\}7o\.k.s:\r\\','',0,'?'),(_binary 'fW\U\\x','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ca.js',0,_binary '`޼lOTY\a>%',_binary '`޼lOTY\a>%',_binary '\\\GԨ\Z\.\ԈF;5\Tԝ\','',0,'?'),(_binary '19\<`N\s|P','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/cs.js',0,_binary '\\|\\\ĉ\\',_binary '\\|\\\ĉ\\',_binary '\\JJȆ\Z8:\\\酝!_M\','',0,'?'),(_binary 'BޟRA`\]Jm6)\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/da.js',0,_binary 'm<׽y?\\nA\',_binary 'm<׽y?\\nA\',_binary '\\H\Nma WƊx=\'aFա&RΡ','',0,'?'),(_binary '/90\p	+\\Z\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/de.js',0,_binary '\\\B\+@&H<\',_binary '\\\B\+@&H<\',_binary '4{\r\n4V\\=]e\ryIQ[g#','',0,'?'),(_binary '\H#BkP\PF\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/el.js',0,_binary '\\\m[\'Z5G\VՇ',_binary '\\\m[\'Z5G\VՇ',_binary '\\3@\s\\\\ԙMl\K\ tyT','',0,'?'),(_binary '{:/\\Oe\ʑ','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/en.js',0,_binary '\4}d\9tD$J',_binary '\4}d\9tD$J',_binary 'V\\p#*\Ǘ{_+o1\\ʃ\5XW','',0,'?'),(_binary '-qР92RPÕ٠\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/es.js',0,_binary '$\0D/\__5\\r^',_binary '$\0D/\__5\\r^',_binary '\bBà\\n%\6 \m}CF>\\,[r\\\','',0,'?'),(_binary 'b<7\2-\6 @','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/et.js',0,_binary '\\\\\AmA~\\.',_binary '\\\\\AmA~\\.',_binary '\kuP;\	\\\zb/\Z6jSy\','',0,'?'),(_binary 'u3\\Z\o\\/','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/eu.js',0,_binary '%pǱi]*',_binary '%pǱi]*',_binary 'NCOhm\#f#m)\`rd\FȊf','',0,'?'),(_binary '۴W\0|\E\N','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/fa.js',0,_binary '\rm3\\~\?',_binary '\rm3\\~\?',_binary 'yL\4ȞnBeuҏ݌~PK\l:','',0,'?'),(_binary 'tL27\M\e\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/fi.js',0,_binary '2\Ƕ\\7',_binary '2\Ƕ\\7',_binary '͐\\\ʉb&\朻,-\l\\Z>\8e','',0,'?'),(_binary 'ޝ%#٥q\"	B/','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/fr.js',0,_binary '}Abbr\\\+U',_binary '}Abbr\\\+U',_binary '6b\彶5\2J\\)\<\\','',0,'?'),(_binary 'C\\d\'\\\x6','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/gl.js',0,_binary '\Q\D\\"\ѷ\m',_binary '\Q\D\\"\ѷ\m',_binary '#\\q\\j\{jޛ[\'Y\QrRê\%Z`','',0,'?'),(_binary '	\\\\g\\(\*','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/he.js',0,_binary '<\nz6\\\j\\&',_binary '<\nz6\\\j\\&',_binary '\m*Md4\Q\\ȅdC8h\g\{_ؖ\\[','',0,'?'),(_binary 'zD=\@{G:𹞑\#','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/hi.js',0,_binary ')\\\\\u\\"\\\',_binary ')\\\\\u\\"\\\',_binary '	Ҥ\\q/?\jƛ\'','',0,'?'),(_binary '4\̽x\\Dj','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/hr.js',0,_binary 'X:\r,}`1_\',_binary 'X:\r,}`1_\',_binary '\JiB::\8\yZ#HF&@ZW','',0,'?'),(_binary '|\\1B\m\rX\K','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/hu.js',0,_binary '\q\tt\Z\<\0',_binary '\q\tt\Z\<\0',_binary ',@\"wS]l:Ѥ\$\;>\','',0,'?'),(_binary '\~\:\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/hy.js',0,_binary '~E\\8\\?\?c\\',_binary '~E\\8\\?\?c\\',_binary '\w\\hOCS{DYT\o,','',0,'?'),(_binary '\ɳ\D딚\71*','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/id.js',0,_binary '@be\\\`g2$M\ZG',_binary '@be\\\`g2$M\ZG',_binary '%\u\v\\\\-\E\\6kf\\Add','',0,'?'),(_binary 'ddrAh\(','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/is.js',0,_binary 'ȄL	rVV\mʸV!',_binary 'ȄL	rVV\mʸV!',_binary 'L \\\\\0&\>|Ÿ\N_\|hE\q','',0,'?'),(_binary '_$\\\\I\\j6','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/it.js',0,_binary '.I\ڴٵ	+{\B\\',_binary '.I\ڴٵ	+{\B\\',_binary 'xJH\1\\\\%3x\ᾋ\\\±0(X\3=','',0,'?'),(_binary 'H\kij\m','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ja.js',0,_binary 'QaM;5w\n9}',_binary 'QaM;5w\n9}',_binary '\\r\\\=	n5o+\\VI\$7_','',0,'?'),(_binary 'SV\\\\\ET,\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/km.js',0,_binary ':Pe>#垒a',_binary ':Pe>#垒a',_binary ',)=Vܯ<5\j*bNv^]','',0,'?'),(_binary '\`\\\e3\\\\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ko.js',0,_binary '<G5\`픉fS%\\',_binary '<G5\`픉fS%\\',_binary '[X`5rQL\&\"\z\Jqŝ9X=e','',0,'?'),(_binary 'm\=MW\*\ ','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/lt.js',0,_binary '|QX\Pv\H\\0(',_binary '|QX\Pv\H\\0(',_binary 'W\&g}0f\Jى\HG=\dWVCV\\K','',0,'?'),(_binary '\󜛖7H~D>','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/lv.js',0,_binary '>;\\PR<UU',_binary '>;\\PR<UU',_binary 'ޢ=t̡n	0e[\_Qʷx=\%\','',0,'?'),(_binary 'P&\jp_D~\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/mk.js',0,_binary '/ǀvoG{	4\r{\',_binary '/ǀvoG{	4\r{\',_binary '[\P\@\'rA{\\ž\#\P\"CG','',0,'?'),(_binary '1C\UM\ZwR','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ms.js',0,_binary 'R._K\+\\I',_binary 'R._K\+\\I',_binary '܉\zu},fT\4\<%GT\','',0,'?'),(_binary 'v9>\pY\{','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/nb.js',0,_binary '>U?\Ws=\\^\',_binary '>U?\Ws=\\^\',_binary '\0~lՁ\\W^)|\\g(tw1A','',0,'?'),(_binary 'i>y7:4\i.','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/nl.js',0,_binary 'd9n<C\柉f\\',_binary 'd9n<C\柉f\\',_binary '(=\HJmrO\م\L4U#2ȝ','',0,'?'),(_binary '{|\deJ^','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/pl.js',0,_binary '\t=ur\\bdp',_binary '\t=ur\\bdp',_binary 'Qw\nM#Ԙ\k{t\ݘލz\n\@r','',0,'?'),(_binary '_H\O\\\\YM','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/pt-BR.js',0,_binary '[-&l\?\\\O`\K',_binary '[-&l\?\\\O`\K',_binary 'e\nZ\xJu)\n7\n\2os{/1}CiF','',0,'?'),(_binary 'f\\\T\T\Z','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/pt.js',0,_binary '$\\Z%\\\\\',_binary '$\\Z%\\\\\',_binary '\S\f׶\\@Vl\)/\A','',0,'?'),(_binary '\"zd\ \n?C','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ro.js',0,_binary '\{r0<܂aU\d',_binary '\{r0<܂aU\d',_binary '\0\i߻ \E\Z\\i\\\=9.a[0 \','',0,'?'),(_binary '	2\$	g\*\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ru.js',0,_binary 'F#\;K\)e',_binary 'F#\;K\)e',_binary '\(rXa,\\\\k+@L<','',0,'?'),(_binary '`c\{\\+O#\XZ','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/sk.js',0,_binary 'l|luky0\B\һ',_binary 'l|luky0\B\һ',_binary 'OՅ\;\Z\lZ6\\&\\L \Z','',0,'?'),(_binary '\mm$w\ys\\{','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/sl.js',0,_binary '\c\\C]]!X\x\',_binary '\c\\C]]!X\x\',_binary '\N\ȣF3ôP\'\Zjh\|W\O\\','',0,'?'),(_binary '#ujo\"\kS!Y','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/sr-Cyrl.js',0,_binary '\\CqW\A9\L',_binary '\\CqW\A9\L',_binary '\8\\\\#{o.\:k|ww!ݲQ\\','',0,'?'),(_binary '+PaJ\\r{I','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/sr.js',0,_binary 'ᚹs\Z\ZF\0%f`',_binary 'ᚹs\Z\ZF\0%f`',_binary '\)ܹ̃X#ܘ\^\"w\L1\\\\rOX?˻','',0,'?'),(_binary 'E\U\j<','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/sv.js',0,_binary '=1\2fJ\0}',_binary '=1\2fJ\0}',_binary 'qxs%lj\n\Ϊ;zĚ!\c$Ї@)#','',0,'?'),(_binary '{|zW\@m\'AF','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/th.js',0,_binary '\~+y\Z',_binary '\~+y\Z',_binary '\\2\yFxkU\A.\FI\c','',0,'?'),(_binary '\x)UfsCa','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/tr.js',0,_binary '\sv8QOP',_binary '\sv8QOP',_binary 'u±c>Hʹ}\%\^<r0\\y3`','',0,'?'),(_binary 'B\\~\\\qN','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/uk.js',0,_binary '\盌x\vL\r',_binary '\盌x\vL\r',_binary 'R}I\I	B	rE\A>?nv\c\\\r','',0,'?'),(_binary '3]qou\8\\_','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/vi.js',0,_binary 'dͰ?8CkG\',_binary 'dͰ?8CkG\',_binary 'o\2ϚT\nb{т\\x)א','',0,'?'),(_binary '\nl\ob_\"<nҟC','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/zh-CN.js',0,_binary 'tn,_\r\',_binary 'tn,_\r\',_binary '\\.\>ڸÉ\\`~@\\\dF\nb\','',0,'?'),(_binary '\wPF\:\Z\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/zh-TW.js',0,_binary '\\Z\\\Ե\qB\',_binary '\\Z\\\Ե\qB\',_binary '$\'\_\\jiUu\\\M\\c\\UtILf ','',0,'?'),(_binary 'q\\\<\3\ZCs','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/select2.full.js',0,_binary '$}4\\\$Ȁ?1\v',_binary '$}4\\\$Ȁ?1\v',_binary '\\2\.TXP~\"A\\LSM/-','',0,'?'),(_binary '\YPIT>Io\Q','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/select2.full.min.js',0,_binary 'n\]7\;2})',_binary 'n\]7\;2})',_binary 'G.\?=VX!>\6\Qee\\','',0,'?'),(_binary '\\͟Ӥy\|\Zm','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/select2.js',0,_binary '9~!ץ95\\t',_binary '9~!ץ95\\t',_binary 'B?\\\i0\s\\\r\+\T\ZQ\le','',0,'?'),(_binary '1;\/_S8|X','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/select2.min.js',0,_binary 'jSyYQ2\Mer\\',_binary 'jSyYQ2\Mer\\',_binary '.QH(*\6\X 1\ӷ*g\δ6\\C\O\#','',0,'?'),(_binary 'p&\_z[϶s\\O\A\'','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/selectWoo.full.js',0,_binary '$}4\\\$Ȁ?1\v',_binary '$}4\\\$Ȁ?1\v',_binary '\\2\.TXP~\"A\\LSM/-','',0,'?'),(_binary 'x-NMqNdپ]f','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/selectWoo.full.min.js',0,_binary 'n\]7\;2})',_binary 'n\]7\;2})',_binary 'G.\?=VX!>\6\Qee\\','',0,'?'),(_binary '\\\\cG	G$ǲ\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/selectWoo.js',0,_binary '9~!ץ95\\t',_binary '9~!ץ95\\t',_binary 'B?\\\i0\s\\\r\+\T\ZQ\le','',0,'?'),(_binary 'jCF!^h\n$','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/selectWoo.min.js',0,_binary 'jSyYQ2\Mer\\',_binary 'jSyYQ2\Mer\\',_binary '.QH(*\6\X 1\ӷ*g\δ6\\C\O\#','',0,'?'),(_binary '@m\\kaeQ\x\0\','wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/wp-color-picker-alpha/wp-color-picker-alpha.js',0,_binary '\I\Z\\=3\V\',_binary '\I\Z\\=3\V\',_binary '\ͧ^sY,[\\'c_i\V(ؼq+\','',0,'?'),(_binary '\\\Ț\\Q\n','wp-content/themes/chic-lifestyle/inc/kirki/autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DD)\n\We\',_binary '\\nr^a^qXA%V4)0\6\\ZOHS','',0,'?'),(_binary 'v$|Fe\\X\yFe','wp-content/themes/chic-lifestyle/inc/kirki/class-kirki-autoload.php',0,_binary '\]b\~U\\.\\\l',_binary '\]b\~U\\.\\\l',_binary '\n\nf.ױ;\Կ\ŏ\\\S4|\\','',0,'?'),(_binary 'EV	l	qILHFf/\\','wp-content/themes/chic-lifestyle/inc/kirki/controls/class-kirki-controls.php',0,_binary '|<ؗ6bXX',_binary '|<ؗ6bXX',_binary 'Dc=?\dAIhX\\F5\oʩ','',0,'?'),(_binary '{?\H#u:90','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/script.js',0,_binary '\\*g\Z\\\'LuP',_binary '\\*g\Z\\\'LuP',_binary '\N\0\\b\}WH1\0 X3L<߼\]','',0,'?'),(_binary '\H_\\َHR&','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/script.min.js',0,_binary 'i\ʍU\j\\M',_binary 'i\ʍU\j\\M',_binary '\t\\\\l+L_chj?\$pԸbU','',0,'?'),(_binary '\\\EgtF','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/background.js',0,_binary '\mB\\\6O%$f;',_binary '\mB\\\6O%$f;',_binary '\0«\ \\q\\;\ZEo?','',0,'?'),(_binary '\r]n\','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/color-palette.js',0,_binary '	66yg$t%',_binary '	66yg$t%',_binary 'g\U\\+8\h\\	\o\r+\\\Z7\K^','',0,'?'),(_binary '-\ܲh<~ގ\','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/dashicons.js',0,_binary '\?z?\w\"?\ݽZ',_binary '\?z?\w\"?\ݽZ',_binary '!V\ŝ\\-<˱\\\0y!\/','',0,'?'),(_binary 'ӦOs\I߻\\','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/date.js',0,_binary '\\۽c\XE\E	\|',_binary '\\۽c\XE\E	\|',_binary '4ڧ\	\$_\\5/Nȳ6߆\O>@L','',0,'?'),(_binary '\	.{\h\\\nDH\','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/dimension.js',0,_binary '\\ݠ(5Q\eY',_binary '\\ݠ(5Q\eY',_binary 'Fu\؍d]\\Z	GԂ\׵\ZH\\s)','',0,'?'),(_binary '\-\\M~\\\>J\,','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/dimensions.js',0,_binary 'V~04\	\\~E7\\R',_binary 'V~04\	\\~E7\\R',_binary 'p\\\\\\g{{xu\M\i\9Up\','',0,'?'),(_binary '\H\i\\}p?޼\\','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/dynamic-control.js',0,_binary ';G{ab\$$\\\',_binary ';G{ab\$$\\\',_binary '\\Uc,ޫdH@t,X瑺,3r','',0,'?'),(_binary '2,\\\\<','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/editor.js',0,_binary 'p\4\֐\U\\\iI',_binary 'p\4\֐\U\\\iI',_binary '\\D6Z\ѥhlؗ\1>\(uʛ','',0,'?'),(_binary '󵉖3\]\Z\n#Q\','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/kirki.control.js',0,_binary '\]x\\4\\r\I\',_binary '\]x\\4\\r\I\',_binary 'W(cZ\\Ͷ\\\mc\Z\\zr\	','',0,'?'),(_binary '\\sf\j\\2c','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/kirki.input.js',0,_binary 'c\m]\ɽ\ZKD',_binary 'c\m]\ɽ\ZKD',_binary '\\kl9^\Z.7\\\\\)','',0,'?'),(_binary 'Kft\S2]v','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/kirki.js',0,_binary 'JV@yuNUA;c',_binary 'JV@yuNUA;c',_binary 'ĒT\d_RlH\1\','',0,'?'),(_binary 'Zf\\j\\\Gd','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/kirki.setting.js',0,_binary '3ֺw;\'\ElV',_binary '3ֺw;\'\ElV',_binary 'N\YZ|)\|j\R\_Dkeg\\R\{?','',0,'?'),(_binary '\c\\\\\','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/kirki.util.js',0,_binary '\W	\\\\_?\\\l8',_binary '\W	\\\\_?\\\l8',_binary 'Jŀ@M:5k(Dpif\2\<O','',0,'?'),(_binary '1퉐ue]|\F','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/multicheck.js',0,_binary '\d\\0$)_\n9',_binary '\d\\0$)_\n9',_binary '\au\\Ih@\\$\8\m\s\\','',0,'?'),(_binary 'ݼ\m<&*S)3','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/multicolor.js',0,_binary '\NZf	Lg\Nٲ\',_binary '\NZf	Lg\Nٲ\',_binary '\Q\F\Y\kBl\Uy\\m\+x>','',0,'?'),(_binary 'B@Hg1U[g1','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/palette.js',0,_binary '\:\z\B%`',_binary '\:\z\B%`',_binary '\\7@<`UF\|\{\cMw!\Q\`','',0,'?'),(_binary '\\[\\E\Ӱ1','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/radio-buttonset.js',0,_binary '\\-\rHkV\ l',_binary '\\-\rHkV\ l',_binary '?\=\\H^Npb\0\\ޘ\EQT\','',0,'?'),(_binary 'c*呿 \JIsفm','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/radio-image.js',0,_binary '1\w2>ҭ\h\Ö',_binary '1\w2>ҭ\h\Ö',_binary '5?\$=pH\#F\wdy~\oc\9~5\','',0,'?'),(_binary '\\0ZsMhQ\'^ΫSr','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/repeater.js',0,_binary 'v\\\:K`',_binary 'v\\\:K`',_binary '\\'屢\ȼ\\-ɿ u˕1\0','',0,'?'),(_binary '\R\Axg-W\','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/set-setting-value.js',0,_binary '\W\\b\P\\\',_binary '\W\\b\P\\\',_binary 'RBz\KQ\\\1e0\\\;/`֥b','',0,'?'),(_binary 'o@,#\\\\','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/slider.js',0,_binary '\$\KO\\ӕP_+',_binary '\$\KO\\ӕP_+',_binary '˗Ψ\\\\u\\Z,w_\'H\\','',0,'?'),(_binary 'ygwD@i\Z\6m','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/sortable.js',0,_binary 'Δuƶ\걀Rn\\',_binary 'Δuƶ\걀Rn\\',_binary '\~$\9\g!+\J>\\\"&bQa','',0,'?'),(_binary '|\c#\p7','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/switch.js',0,_binary 'PHm?\\B\U4',_binary 'PHm?\\B\U4',_binary '6o.HO\>\y\#c^ӄ[\\"\','',0,'?'),(_binary 'i\>f$\\','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/toggle.js',0,_binary '\\\\\\\{\8\%h',_binary '\\\\\\\{\8\%h',_binary '0r~P\\\\؉\\E\6q|f(\4\\','',0,'?'),(_binary '\\ݡT7\׵2','wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/typography.js',0,_binary 'Y\\,|\\"',_binary 'Y\\,|\\"',_binary 'p\d=aQeҚC̈\"Bݹ;952)c\\z','',0,'?'),(_binary '\5\"\\\,N3','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-background.php',0,_binary 'Sɨl\cZ>,G',_binary 'Sɨl\cZ>,G',_binary '\@\\\^\\0\\\\\\Z@=.vNX\\ \\\*','',0,'?'),(_binary '\b\Fґ7{@\(C','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-base.php',0,_binary 'K\ⷓ\\d\\n@LɄ',_binary 'K\ⷓ\\d\\n@LɄ',_binary '8>c[\\\~IOZs\x{Ψ6','',0,'?'),(_binary 'R8\S#\{\0','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-checkbox.php',0,_binary 'p\?kg\FFT',_binary 'p\?kg\FFT',_binary 'kx\\s\3kQ9I]V','',0,'?'),(_binary '3;\}\%TW','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-code.php',0,_binary '\\\\jm!\f',_binary '\\\\jm!\f',_binary 'x\i\-\\	ㅟЖeK\C鉼4y1d\\'\','',0,'?'),(_binary '\q \`堲\OI','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-color-palette.php',0,_binary 'rƑ<\XZ-ΰ$',_binary 'rƑ<\XZ-ΰ$',_binary '˻\\ґ]b߮X<F,\n\k8\'','',0,'?'),(_binary '2:\^8Jp/֒','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-color.php',0,_binary '>R\\\\%\\0X^\\\',_binary '>R\\\\%\\0X^\\\',_binary 'Y5q/\\H\Q26UHVb\MЗ6T','',0,'?'),(_binary ']	\\H\\\fd.	','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-cropped-image.php',0,_binary '\\ӝ\\i\\n\',_binary '\\ӝ\\i\\n\',_binary 'm\ZØ~v\n)&lVE\\w\"\Ӂ\\#\\','',0,'?'),(_binary '\y \K^\d|~\','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-custom.php',0,_binary 'w\T2G\=\\g',_binary 'w\T2G\=\\g',_binary '2Co\r}qxQY)<\nWv\"\>sV*','',0,'?'),(_binary '\\0!\\M\j\\n','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-dashicons.php',0,_binary 'Q/	\Wj\D\)|',_binary 'Q/	\Wj\D\)|',_binary '\xETz\\\\\\Nҿ_\\\n\߳9','',0,'?'),(_binary '\;㏇E2mm\0݉','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-date.php',0,_binary 'VɅ)y\\92q',_binary 'VɅ)y\\92q',_binary 'P=\\X\5\*\\\r6VsE/%','',0,'?'),(_binary '*>\0\2oQ\\bHF','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-dimension.php',0,_binary 'mQ[\6\Z/\=\x_',_binary 'mQ[\6\Z/\=\x_',_binary '\\xw,\niA\'\\4F!\vM\0\ώ','',0,'?'),(_binary '>}\2k\$u$\','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-dimensions.php',0,_binary 'e#G\䲲C\'z:m',_binary 'e#G\䲲C\'z:m',_binary '\<	pA\6r\L;?\ץ0fS\','',0,'?'),(_binary 'tre\RZ\qW','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-editor.php',0,_binary '\\^\l\\\',_binary '\\^\l\\\',_binary 'P\j\k\Ȍ\$gP!5\\gey\Bi','',0,'?'),(_binary '\\\%2\r\w\','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-generic.php',0,_binary '\\\^	BJ\0d\\\\\',_binary '\\\^	BJ\0d\\\\\',_binary '<`\pG\0\I\B\ZǦI_!w=K3\?1','',0,'?'),(_binary '\\"5lI\l\\D\','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-image.php',0,_binary '\O\G\Z\\ʓ=\*j',_binary '\O\G\Z\\ʓ=\*j',_binary '9aC%߾w]>lfIP\ճ\\\\,\9@','',0,'?'),(_binary 'o\\\0ۯBg\Ey','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-multicheck.php',0,_binary '6f\qp[C\}\',_binary '6f\qp[C\}\',_binary 'vl掑\~\\$+UÊs[d\\p\n\	','',0,'?'),(_binary '\nDpS:|h\}','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-multicolor.php',0,_binary '7b#\͚u]}',_binary '7b#\͚u]}',_binary '&ђҷhIGa\K\\\\>S\s݉','',0,'?'),(_binary 'f\\$jtEO','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-number.php',0,_binary '\D4K\p;\A\',_binary '\D4K\p;\A\',_binary '\\[\w#b>^UA]_~j\6OdL','',0,'?'),(_binary '\_\"(LdM\{\\\\','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-palette.php',0,_binary ';L\\\Z2',_binary ';L\\\Z2',_binary '`^\. ?\\@U-\;8\\&5\','',0,'?'),(_binary '\R\pIIS/','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-radio-buttonset.php',0,_binary 'tފ\?\08\Z\\[',_binary 'tފ\?\08\Z\\[',_binary 'a\^\\`P\\n\\a児\\Z\t\wp3','',0,'?'),(_binary 'Ep\VKB树','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-radio-image.php',0,_binary '\w\(P\[\&~^',_binary '\w\(P\[\&~^',_binary '\?MeY(/\6~\uos\\\A','',0,'?'),(_binary 'vEkj\\Z\	=\(','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-radio.php',0,_binary '\0\rtaƒ\A\#w\^',_binary '\0\rtaƒ\A\#w\^',_binary 'W2ve\;\2,+\\\r>NuTJi','',0,'?'),(_binary '=T;Al\\͍Rt\:','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-repeater.php',0,_binary '\k\no<t*3	]',_binary '\k\no<t*3	]',_binary 'Fle\\؅V/.\<Q0\10Fi\','',0,'?'),(_binary 'P]Y8:98h\','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-select.php',0,_binary ')qp1\wvZ\\',_binary ')qp1\wvZ\\',_binary '.p\Z\\ \&\\\0xο','',0,'?'),(_binary '\P\/@\j\E','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-slider.php',0,_binary '\"\x\\\',_binary '\"\x\\\',_binary 'O\"іm\\a߇\Õ&\ha\u\.\\\\I','',0,'?'),(_binary 'n\"C\7췈\Vx\?\','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-sortable.php',0,_binary '\\$E\\4K\4v',_binary '\\$E\\4K\4v',_binary 'jS$%%Ȇ)ti^:rh\H1j]\J\\C','',0,'?'),(_binary '\hHԘ@','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-switch.php',0,_binary '8B\\;.\;\KDC~',_binary '8B\\;.\;\KDC~',_binary '\Mb/\{Q\'变9\\\⩖p\Z?\','',0,'?'),(_binary '\\\\gd\PfG\\','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-toggle.php',0,_binary 'b\ L\ʷi\r',_binary 'b\ L\ʷi\r',_binary 'X\ ʜxȗ%w({rP\F\I>','',0,'?'),(_binary '8v2#pn27k\','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-typography.php',0,_binary 'xS\W\Z\b\\\ñ\\\',_binary 'xS\W\Z\b\\\ñ\\\',_binary 'i\"\V\dmn^\Z%x*^\ƫ+u','',0,'?'),(_binary 'ؽ:׷6K\\','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-upload.php',0,_binary '\\gi7n.',_binary '\\gi7n.',_binary 'tF\SNZ<\\Z\dy\ztOt|a]C\','',0,'?'),(_binary ',#.L]})X\','wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-settings-repeater-setting.php',0,_binary 'IW\%\2+\,\\Z&',_binary 'IW\%\2+\,\\Z&',_binary 'Q\WeP\/\a\\\ʧ\5KΪ','',0,'?'),(_binary '\rp\0b\\h\cI','wp-content/themes/chic-lifestyle/inc/kirki/controls/views/code.php',0,_binary '\]u,PB\@\',_binary '\]u,PB\@\',_binary 'ɫX\hǋT=]O֫\\͖\gy\\','',0,'?'),(_binary '8t9eD!\Hd\0','wp-content/themes/chic-lifestyle/inc/kirki/controls/views/color.php',0,_binary '\n5\s\ZK\;-=j',_binary '\n5\s\ZK\;-=j',_binary 'x	,JX\Q\eM9Ӏ9+K\0.{a:cs\','',0,'?'),(_binary ' \32ҕ	/l3','wp-content/themes/chic-lifestyle/inc/kirki/controls/views/generic.php',0,_binary '\\\\rRb\	Os',_binary '\\\\rRb\	Os',_binary 'P\\r\,Z3ƾT\H\ơU>\L\֏Yގ','',0,'?'),(_binary '<lQ\\\ZPa\\s\','wp-content/themes/chic-lifestyle/inc/kirki/controls/views/image.php',0,_binary '70P\\\n\u{]~',_binary '70P\\\n\u{]~',_binary 'o\1lP\\J#\\\'TsD|ܜۋ','',0,'?'),(_binary 'Bh\	}\\W\78\!k?','wp-content/themes/chic-lifestyle/inc/kirki/controls/views/number.php',0,_binary '[\W\\\Qމ\0K\',_binary '[\W\\\Qމ\0K\',_binary '4b\\{(\Z\\\9\|Ra=S\mp	ގ\r^@','',0,'?'),(_binary '>pVɢ\@]\'?|','wp-content/themes/chic-lifestyle/inc/kirki/controls/views/radio.php',0,_binary '.3g)*\\)',_binary '.3g)*\\)',_binary 'x\\:cHjI\ b!E\q\\+_','',0,'?'),(_binary '7Kx/kC\\",\(\9','wp-content/themes/chic-lifestyle/inc/kirki/controls/views/select.php',0,_binary 'ך[\\\뫊\3MN&',_binary 'ך[\\\뫊\3MN&',_binary '3Q\`g\]>f\ڢ\\[}P','',0,'?'),(_binary 'M7n^p\JP;','wp-content/themes/chic-lifestyle/inc/kirki/controls/views/textarea.php',0,_binary '0\"\?#\n;eA\',_binary '0\"\?#\n;eA\',_binary ')oa5\KR9f2\cw\X\Vv5\\\Y\t','',0,'?'),(_binary 'q/4[w\.\\(/\tx','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-config.php',0,_binary '\\՗\Zm\\\4+',_binary '\\՗\Zm\\\4+',_binary '-\v\\n\Y\\<\I\^9\','',0,'?'),(_binary ')r\/IGp𓩏','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-control.php',0,_binary 'g܃\e\m\',_binary 'g܃\e\m\',_binary '\$\\/Μ.l݋C*\\\\P>\0/','',0,'?'),(_binary '`\ש#>\Y_\\','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-field.php',0,_binary '\:\\n\LF\',_binary '\:\\n\LF\',_binary '}?\FN\|݈\],\U]\'\Ir','',0,'?'),(_binary '௢kddMJ\k','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-helper.php',0,_binary 'ɥKB>\9\n\0EA',_binary 'ɥKB>\9\n\0EA',_binary '{cgL(J\Rki4u\kC\\ٚ\n','',0,'?'),(_binary '\M\\\\$Gg','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-init.php',0,_binary 'F\\?i\\Y\\',_binary 'F\\?i\\Y\\',_binary '\R-흜\\B\C˼fWfC','',0,'?'),(_binary '\_h\Z˒gU+4','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-l10n.php',0,_binary '\w͊YsLʯ',_binary '\w͊YsLʯ',_binary '\\˴v\(?\A\q\[\Z\`!)~\\','',0,'?'),(_binary '8μ!J`8}8 ','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-modules.php',0,_binary '\\"\\xuc\2',_binary '\\"\\xuc\2',_binary 'U\كʜ\{w(^\\<tk4\8DA','',0,'?'),(_binary '.R~\\Sdy\','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-panel.php',0,_binary '&q\nm\iU&\Z\',_binary '&q\nm\iU&\Z\',_binary '\rr\t\\3c~8>\9y\B(q','',0,'?'),(_binary '= En<x9u@\p','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-sanitize-values.php',0,_binary '\\\q\O\"BZb\0L',_binary '\\\q\O\"BZb\0L',_binary 'T[Aq\\w\Z\!\U$Q\A-\','',0,'?'),(_binary 'HON@]Wbf\\','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-section.php',0,_binary '(X+a9o/1>\\24',_binary '(X+a9o/1>\\24',_binary '\_\\\"\m\\F*l\\r3Č0\','',0,'?'),(_binary '\h&ly\kkدg','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-sections.php',0,_binary '\] \\>\\Aᠼ',_binary '\] \\>\\Aᠼ',_binary 'w\XSC\\	q\\\\kmˊ2=?c^\\I*','',0,'?'),(_binary '2\I{9)\\u~Y','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-setting-site-option.php',0,_binary '{\Lm5~\',_binary '{\Lm5~\',_binary '҅4\ɩ=JJS\\v\K&\\w','',0,'?'),(_binary '\ʂ\1\SF\','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-setting-user-meta.php',0,_binary 'o\|M#<ޣ,C?>$',_binary 'o\|M#<ޣ,C?>$',_binary '7\\}>V,\\\ :\=m','',0,'?'),(_binary '\mqSV\;(=\ڤ\n','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-settings.php',0,_binary '>X\A?\~',_binary '>X\A?\~',_binary '\\4,P@\i2\;\\n\\*','',0,'?'),(_binary '\+\'\Pf\*<,#`','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-toolkit.php',0,_binary '-)45mH\\QR',_binary '-)45mH\\QR',_binary 'x}\W\<Qq\8\W\\gLmw','',0,'?'),(_binary 'z&4|\C\\G\O','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-util.php',0,_binary '>/=y\\]\p\3}',_binary '>/=y\\]\p\3}',_binary '\8\VT,%	\^jN69tߐ\`','',0,'?'),(_binary 'A\;|,!','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-values.php',0,_binary '(Q\\y9\Xh4p',_binary '(Q\\y9\Xh4p',_binary '>sF\\xS̱\\s5A\pZ;','',0,'?'),(_binary '\6۞{\l[Drb','wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki.php',0,_binary '\ECΦAZJG\(^',_binary '\ECΦAZJG\(^',_binary 'k<H.\v\\3Zj^&w','',0,'?'),(_binary '\cӯ4TBN\\','wp-content/themes/chic-lifestyle/inc/kirki/deprecated/classes.php',0,_binary 'x\0V\no\l\}',_binary 'x\0V\no\l\}',_binary 'lmyUZbi\CX.(7ּҩ','',0,'?'),(_binary 'ޱ!#\>@\]O`','wp-content/themes/chic-lifestyle/inc/kirki/deprecated/deprecated.php',0,_binary '\H(\U|\%+1C',_binary '\H(\U|\%+1C',_binary 'WLK<\nj\A1aaA*\+x8M%!dQH)h','',0,'?'),(_binary 'b\Yu\(9\IX','wp-content/themes/chic-lifestyle/inc/kirki/deprecated/filters.php',0,_binary 'HcE\C\%|\ϵ',_binary 'HcE\C\%|\ϵ',_binary 'ǀ\w$\\g1<\y\\#&\\D\8%','',0,'?'),(_binary '\\\W\,\\0\\','wp-content/themes/chic-lifestyle/inc/kirki/deprecated/functions.php',0,_binary 'JLp\\ǐ_{',_binary 'JLp\\ǐ_{',_binary '\0S\a\r(~ZӊB􋕍 L\\/\','',0,'?'),(_binary 'nW饺7|1\','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-background.php',0,_binary '\K)#y^\\\$',_binary '\K)#y^\\\$',_binary 'P\`(F\\nDz\7O߿S\\'\\\','',0,'?'),(_binary '\+\rGqkȥ\\','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-checkbox.php',0,_binary 'v4A\1\e\C',_binary 'v4A\1\e\C',_binary 'kA\i&\`\\~{V66=x_j\.','',0,'?'),(_binary '\r/)\%ĝA~\','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-code.php',0,_binary 'H\Q)96+:-@7',_binary 'H\Q)96+:-@7',_binary '\U\\}\2}ZQ\&<SR\9_@','',0,'?'),(_binary '\ 4\\$Z\8','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-color-alpha.php',0,_binary 'r\BI\Ƣ\\',_binary 'r\BI\Ƣ\\',_binary '\>.T.3P\}1٣f\S}Ƃ\\\'OA?s','',0,'?'),(_binary '\Z_MJy鐳\  i','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-color-palette.php',0,_binary 't\\Q\_}b/G[\#\',_binary 't\\Q\_}b/G[\#\',_binary 'h\\\'\N\zWh\0\G+Ա\\\I\\p','',0,'?'),(_binary ' R:H\\%\"','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-color.php',0,_binary 'r< \\'8XG\w6\',_binary 'r< \\'8XG\w6\',_binary 'A\\m:[ХnH\o\mk\\B	*','',0,'?'),(_binary 'e\\'k>R','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-custom.php',0,_binary '\Z93\"\\X{uvb ',_binary '\Z93\"\\X{uvb ',_binary '7=%\\r3\gw\lvN\c팽w\--N','',0,'?'),(_binary '}Ђ\eX;\'\<','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-dashicons.php',0,_binary '4y즞F\x',_binary '4y즞F\x',_binary '5t\Zڸ87V\GR\=ƊZ\\\]\','',0,'?'),(_binary 'G+J\гŋ\5','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-date.php',0,_binary '3\ZFf\\\t\˧',_binary '3\ZFf\\\t\˧',_binary 'vrJEƻN\xi\f\|.^1%^nW','',0,'?'),(_binary '$۷iG<&=7[/\*','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-dimension.php',0,_binary '\\\Ё\"\\\',_binary '\\\Ё\"\\\',_binary 'C\L~N	OAmc5R88S4,دEd\\rV	','',0,'?'),(_binary 'M7a\\5P\\B\\','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-dimensions.php',0,_binary 'E\\`\d\',_binary 'E\\`\d\',_binary 'Y둻R~\5\5Xp\\\ZݩA','',0,'?'),(_binary 'ʳ\0\9FIyQ3k\','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-dropdown-pages.php',0,_binary '\\M\;B\,\k\4\',_binary '\\M\;B\,\k\4\',_binary '\ppoޤh*\DO8\\yq\a-{\JC\','',0,'?'),(_binary ')\AßH\\sͰ\Q','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-editor.php',0,_binary 'U\q\\\\?\\"',_binary 'U\q\\\\?\\"',_binary 'b\Y(\nQ\;)+eE\)\'vPa,','',0,'?'),(_binary 'W \~\Ac\\','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-fontawesome.php',0,_binary 'G>3ˁs\\\\+\',_binary 'G>3ˁs\\\\+\',_binary '\"zu\\^IW\o\:\H*ێ\0v]','',0,'?'),(_binary 'P*<W\\%\>(','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-generic.php',0,_binary '\{.4wkE\ؗ\',_binary '\{.4wkE\ؗ\',_binary '\;\\b\!]޳gKVp\\)F\2\_','',0,'?'),(_binary 'ʠL\}~8Nj\','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-group-title.php',0,_binary 'kq$(\Fr\',_binary 'kq$(\Fr\',_binary '\ZI\8̖C\"\0\\6\JF\a\u^','',0,'?'),(_binary 'Ǘ\\V\\\ߑԱ','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-image.php',0,_binary '3\nSrZ\\Z\\\$',_binary '3\nSrZ\\Z\\\$',_binary '(q\A\\\Ldze\@R\\\L\','',0,'?'),(_binary 'NVg\0C\\./E','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-kirki-generic.php',0,_binary ')\5B9bZa\',_binary ')\5B9bZa\',_binary '\I	;\Z	πS\#\\\\[11l[-\','',0,'?'),(_binary 'sjd\r(u.&r.c\0\'','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-link.php',0,_binary 'WRN`L_O[',_binary 'WRN`L_O[',_binary '\?.\\"}\5\	j2\<\jQ9~\','',0,'?'),(_binary '6\;_tfV\\\\"','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-multicheck.php',0,_binary '\6y\$wl~{`\',_binary '\6y\$wl~{`\',_binary 'ܝ\¡HkY\:\(\u\\\\0','',0,'?'),(_binary '\@\\c\\n\\','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-multicolor.php',0,_binary '&\\ZkV\+\[',_binary '&\\ZkV\+\[',_binary '\\8k4\!V13\\w2s<3','',0,'?'),(_binary '8\UOMk\$`X,','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-number.php',0,_binary '\rG8Ѝr',_binary '\rG8Ѝr',_binary '[쮝\\>\#\\\}8EA%\]\,','',0,'?'),(_binary '\\0\'\$ \[','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-palette.php',0,_binary '-nʙ\\	YT\k',_binary '-nʙ\\	YT\k',_binary ',\(\xz\g\T\jn\'\p>+\=r','',0,'?'),(_binary 'I@H\^$ɫ !]	','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-preset.php',0,_binary 'lX\\|z6nP',_binary 'lX\\|z6nP',_binary '_\?pG+#Hd4bF\\^\ov','',0,'?'),(_binary 'i,+\ns\\7','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-radio-buttonset.php',0,_binary 'l&\W87\\\',_binary 'l&\W87\\\',_binary '0;7}Mb$톀\Hk\n%!\ѐ\n1\','',0,'?'),(_binary '?DLTw\\r\Z','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-radio-image.php',0,_binary '\Y\\q\΋彘\.',_binary '\Y\\q\΋彘\.',_binary '\0\g\/ [sJ\3-@1\','',0,'?'),(_binary 'd\<^\Zɛc(','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-radio.php',0,_binary '\\Gh4\#/m\',_binary '\\Gh4\#/m\',_binary '\RADaq?jA\/[\	1V\\0','',0,'?'),(_binary 'wo\^\:Zn\Z<','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-repeater.php',0,_binary '\H\a\\\Qyr',_binary '\H\a\\\Qyr',_binary '*볯3\nX]\\x\v/\Å\'\/\;\\\Z','',0,'?'),(_binary '\\\\\E]\\\','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-select.php',0,_binary '\ğ㣤V6\\y9',_binary '\ğ㣤V6\\y9',_binary 'BCN05cٜ\\'\\;cZS,3\S\','',0,'?'),(_binary '[\Ywͤ{\5\','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-select2-multiple.php',0,_binary ';\0Z@1\9\R\',_binary ';\0Z@1\9\R\',_binary '@8FgI\\^\T%\r	\\8%rz','',0,'?'),(_binary 'W#wB\=l','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-select2.php',0,_binary '(l\\a\O\\l\\K',_binary '(l\\a\O\\l\\K',_binary '*Q /d/ٜnK\'g\OO4ŜS7\g\0','',0,'?'),(_binary '\P\.\b½M\K','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-slider.php',0,_binary '1Q)\N\\\e\!\\',_binary '1Q)\N\\\e\!\\',_binary '\\d~;\@\4\eJ3nW\nd\'g%T\r','',0,'?'),(_binary '\85m\r\','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-sortable.php',0,_binary '@oy<Rq\Rv\',_binary '@oy<Rq\Rv\',_binary 'tekg\0fG½\sDe\)u\\X\\','',0,'?'),(_binary 'tN\}*	#N7','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-spacing.php',0,_binary '>t:\,\ 	',_binary '>t:\,\ 	',_binary '\n_i\\3i\\DL\rh8\<\\\\}','',0,'?'),(_binary '<\&<R\h','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-switch.php',0,_binary '͒\^\:Zx5R\Hl',_binary '͒\^\:Zx5R\Hl',_binary '_J:\\f\oa\\\.~\!','',0,'?'),(_binary '\wә\\ؾme\','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-text.php',0,_binary '	Xy\nCN.\\$6',_binary '	Xy\nCN.\\$6',_binary '\ #HAv\Ґ\\G\\%Se','',0,'?'),(_binary 'A		 A\hC>A','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-textarea.php',0,_binary 'Ge/\\\ö~,',_binary 'Ge/\\\ö~,',_binary '\\#(\a\\\C&\g\P\','',0,'?'),(_binary '%Gֿ\\\\\\($','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-toggle.php',0,_binary '\\\ٽH\T\rގY/',_binary '\\\ٽH\T\rގY/',_binary '<ܩ\\ \`w\z^\ۣB/aW\(}׋F','',0,'?'),(_binary 'r=\q\;\a!o','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-typography.php',0,_binary '\\րF_\!Rb_m',_binary '\\րF_\!Rb_m',_binary 'ԕ\}\\K\7\[\Q5\gU#\gI','',0,'?'),(_binary '\p\"L ]\f\xL','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-upload.php',0,_binary 'M2;\Y4(9\',_binary 'M2;\Y4(9\',_binary '&&\HO1=\\\\0!i0\mvf','',0,'?'),(_binary ';ܷl\ZIu΢9I','wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-url.php',0,_binary '\[R\\	N\(',_binary '\[R\\	N\(',_binary '\0w1\\N|\\]m\|jZ\\h???\','',0,'?'),(_binary 'HL3q\\X\\ܛ','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-active-callback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\: \K\n֨8\B\',_binary '5;\ocU,Mw늀\\>\uT}/@]*\','',0,'?'),(_binary ' \;\xk\`','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\8\\G',_binary '-1\"Cg\>O	}\q\ŭ\?\\','',0,'?'),(_binary 'm3[\јRZ$\','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\˥q\\r\'l*\',_binary 'E(\ru\nP18dyhR\\\\kq','',0,'?'),(_binary 'Q3\P(\\'N\','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-customize-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1Og\\no\r',_binary '\烘\IdWG[h\mZ&\\Nh9dz\'','',0,'?'),(_binary '\"56HB\d\','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-enqueue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\90\޲\>%\Hx',_binary '²\B\\/	:5\en\y\r1A/Ң1','',0,'?'),(_binary 'lϺ]{?<3\\v-','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-explode-background-field.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\P^\O\'zf\\n',_binary 'dD@w\C\v\\ELgR\\_\TF\?DWu','',0,'?'),(_binary '\Wf\oD\_7\{6','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-field.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȵ@+/{Jgt',_binary 'Yh\_S\4\	[U\Y\\G{\\nI\Ԧ','',0,'?'),(_binary 'M\\\"c\.&{','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-fonts-google.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<y\T7\\',_binary '\\\\u*r\\s\r\\n\\W>\\]\cPHl','',0,'?'),(_binary '1	Tl7\%r\','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-fonts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[D\~\\4:',_binary 'Z\y\PX7wg6Rz4^\l\\O','',0,'?'),(_binary '\\0zWB\\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pm8	\R\Dj\\,',_binary '\"\+v1\;<M_G\\\;=tD%i`$','',0,'?'),(_binary 'D΋\\pg;xe\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FZ\K\7',_binary '\\\˘\\L\n5xv|舤Prl\0%&\\h','',0,'?'),(_binary '\\4!ؒH/xz\,','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-l10n.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%\ª㚕ψ]',_binary '\?\[!\P\D\\ꎶ\n>\\0\\\','',0,'?'),(_binary '\\\X:0G\\c\','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^:NU{x\\nnI',_binary 'a[a4\\r8p\Cy\Z8{JΫX\\','',0,'?'),(_binary '\ڮ\o\','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-sanitize-values.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iZ_D\'\\',_binary 'R;+$\XNűmX6ʒJ\FYgOX1M\\[','',0,'?'),(_binary '\n\K\\\EcP','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-scripts-registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<CX-脄eg\h`',_binary '+\W\<J\&Fy\MRő\e\\\X','',0,'?'),(_binary 'l\F3\IDd(iAT','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ks7tM',_binary '/;!2\\\2h9DDvZt:F\Ӻ\%','',0,'?'),(_binary '\\0A\Z\Z\\ZKǭ','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-selective-refresh.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\\\"d[|\\0Veq',_binary 'C<ŷs@n9P\nA$\;&\L','',0,'?'),(_binary 'v\$kL/N\','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=^%UXAa\Z)Q',_binary 'uL\(nZ]\Z\\3\Q֚I\"\a','',0,'?'),(_binary '}\\.	\','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-toolkit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z=+T\Z\5ecؐH\\',_binary 'OoP6:|5/M_\6#.yΎy(\\','',0,'?'),(_binary '9X̅ؖ/\\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-values.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K\؆չ',_binary 'P_=&߁\XZۉ\D\\3\i\KM%','',0,'?'),(_binary '\oܮ\}gZ\z߯','wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\<q/r<\?\\',_binary '쮀ܻ3OqJ\0\\i<i<\I\','',0,'?'),(_binary '\Q4	Y\\(\','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-checkbox-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\\K$\N{E ',_binary 'z6Up\^$(J,m]\\y\v*(\rt\','',0,'?'),(_binary 'wz*#\Hek\D[ԥd','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-code-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7U\\s\',_binary '\nŭ3\Zpk\\Z^B1\-b_f=ų\','',0,'?'),(_binary 'ݓIPc_\<>\Vz','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-color-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\XP\0cO\O\',_binary 'nJ\Z,8\Y8{\0Rf\m~\\QɹZ','',0,'?'),(_binary 'W\P&Q\\\d','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-color-palette-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\0:Cuxc\',_binary '\c&8\rwϜޮ\?[6\\\	\','',0,'?'),(_binary 'Um\0\\v1?\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-custom-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3sIo\OpM2\',_binary '콲o\5\\~F뷘\ZQK,R\\(','',0,'?'),(_binary 'atLVH(A','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-dashicons-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\[\G`\9',_binary 'AT萶\G1\NbqY:֏|jt\|_ܤx','',0,'?'),(_binary 'SA\Cs\;\=/%z','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-date-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݫ$\r:\](2\\X~W',_binary 'чn\\\s\Mӥ\&@KC\\/6\zEd','',0,'?'),(_binary 'AМ⮂\̡\"E\','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-dimension-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\q4u\yd',_binary '^\'\\\'D\\I8l.F\~\\\\Jkȃ\Oe','',0,'?'),(_binary '݂x\\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-dropdown-pages-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\0\熘y*v',_binary 's\\\LZ\\\}\[Z!so{XlAQ\\\b\','',0,'?'),(_binary '&2s1td5G3','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-editor-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s s\\',_binary '=,do `F\Tl\a\Ԋ	,B\','',0,'?'),(_binary '\%;QZ{W','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-generic-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\*\\\-',_binary 'r橛#YWE\	B\Zh\\\\ʤ\','',0,'?'),(_binary 'vPkO5\0`*P<՜З\','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-multicheck-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\:4FaZVL}',_binary '\\\T\Wt\\^Z\Z	U]\Z\Z% \\[gxF','',0,'?'),(_binary '\\5\\r4ǫf\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-multicolor-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ol\\\;tNy\>g',_binary 'd\\\}\;9T\\\$\\'tEj\(]','',0,'?'),(_binary '5b=\雾hA\+','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-number-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y-\~\\Iqs',_binary '\I&\\\n$E:N\\rt\\ZK(o\rͰ}','',0,'?'),(_binary '>ǠP\[bO;\2','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-palette-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\I=\\\n-r9',_binary '\\M\\;2h%~!_\myt\;b','',0,'?'),(_binary 'q\'^\rs(\89C\Y','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-preset-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,\'-R4\\',_binary ']#nNebt.O>i^ӟ','',0,'?'),(_binary '~87\}\{3X&Ui','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-radio-buttonset-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F7\<\)IC\r</\',_binary 'js//80,|b@\	B\".*\O\','',0,'?'),(_binary '\Ӆ=?\Ւ','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-radio-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Bd\\Ln;1v\\\',_binary 'L\\9!\\w\9DW{\\Mֆ31Lzq1','',0,'?'),(_binary 'Z7,)Vl{\\a{\','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-radio-image-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'i=\\V>\\\',_binary '\0Q}mP{\#\D\R\','',0,'?'),(_binary 'X\\\jl`dMgx','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-repeater-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Eee\/mnN',_binary 'X\-q|+H]Ҡ!\e;{?xB\\','',0,'?'),(_binary '\/[:=9Q@v\\~\','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-select-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AS\7(VĨ\\6\',_binary '\Z\\"Et\o\TK@NB5\!\Ϣp\d','',0,'?'),(_binary '\ 0t]rl4%\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-slider-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\\[Xwt\~\?',_binary '7&s\f?\0!7\\\0twz','',0,'?'),(_binary '\Ԝ0G<\\kY垆/','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-sortable-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%7\B{⋲I\',_binary '\N,GKA|\*\Y$\\"\Zg^v\BN\','',0,'?'),(_binary '@Xê)״ҩq\0','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-spacing-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\FRǘ\\R.M',_binary 'Y`^j4\8\\\[RK}2\','',0,'?'),(_binary '4rJ|\˙#k','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-switch-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>jL\1Kr \\X',_binary '\n,\\xb\9dkQK\xG2\','',0,'?'),(_binary 'e\\1E\\'״\','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-toggle-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\ikox\E%xU',_binary 'G\M\"RW.`\x֎.Q\\iK','',0,'?'),(_binary 'fha)	\.>o\','wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-typography-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\#Ժ&\M6S[\n\\=',_binary '!TȒ (:-:+ИA\.Li2\\Nۗ3C%','',0,'?'),(_binary 'fҨ\\s\\n>O7','wp-content/themes/chic-lifestyle/inc/kirki/includes/deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`4lt;Q',_binary '\03ck\\if{\\\Zg6\\kW\\','',0,'?'),(_binary '\~PFʩ\Qi\','wp-content/themes/chic-lifestyle/inc/kirki/includes/dynamic-css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ԟ\\r`n$\Z\\~',_binary 'P\\\x\\D\'\6\\Ǵ\\?\ES7vw','',0,'?'),(_binary '\ZV/]	\=,\a','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-checkbox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A/\v\',_binary 'CX\%\.wC\TA6B<\\"w\c5\ l','',0,'?'),(_binary 'w\Z*\*\PB','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-code.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*W\\r\҃\}1\\M',_binary '~Y\YG\\ͫ\p\\\~D\=\ƙz','',0,'?'),(_binary 'w;W	\?\E>#','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-color-alpha.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J>TIfjl\`',_binary 'RPB\6W\Z\nt\\"l1]\L\ZZ9i\o','',0,'?'),(_binary ':\2e\[\el#\','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-color-palette.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\\\\Z\O',_binary '\\K\!\l\̞<\wG	x6\\A\0fj','',0,'?'),(_binary 'D2\]y\4\N*\.','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-color.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\/<8uA\P',_binary '\ٚW\ctGR\/\*]z\\3','',0,'?'),(_binary '\2Bik\/\%P','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-custom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w4z\:/X(X',_binary '\aⓦhUH \\r#j\⽋0!\;YDk\','',0,'?'),(_binary ';\~T	ɒa7*','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-dashicons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3ˢ$\\Krǡ)Fb\\',_binary 'tMV_dB\\A\4\D\ڇ\ǒ}3	(','',0,'?'),(_binary '\Z\i\\"$	|zm','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Ù[Tr',_binary 'Z\\U`\c5L\r[sy\}}','',0,'?'),(_binary '.\n\\O\Ԣ','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-dimension.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\`2',_binary 'sȋxǫpL>E	*j9\\*fE','',0,'?'),(_binary ':\]^#dG\b\\>','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-dropdown-pages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\ .*XI',_binary '{YwB\\S\gm92,|Daq','',0,'?'),(_binary '\\"5rqͲ$\\vl','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\\)y1kREX',_binary '_\\\\۪B\b\k\\ZYH\\p\','',0,'?'),(_binary '\GǸf;Ǌ\e[','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-generic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\\G\Q',_binary ',®%4&ʐw\l1(9gcs','',0,'?'),(_binary '\B[)\<\','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-group-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'εSs7\hE\\\!',_binary '\rs,\1=e\S{\i\　i0~\n','',0,'?'),(_binary '\\\"\\\\ö龯I#','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a͐\\r\\',_binary 'u^K\nih\C\d.i\H-\j\l','',0,'?'),(_binary '\\\\\KFx\\@\','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-kirki-generic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^=\nm< \\ne<jn',_binary 'J\\\Cr]=k˿*+)\U(','',0,'?'),(_binary 'p2eO)0}','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-multicheck.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z$\m$,7^a',_binary '\2dٓqѾQ0X݋b$\Ƴ5#z\`','',0,'?'),(_binary '3^ n\\\5','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-multicolor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þڱ\nN\\',_binary '63!(\Nd\"\u\0\\p+\^)}`\Ü$','',0,'?'),(_binary 'GkG\Wu\,\'','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-number.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\*@#gd}\?b',_binary '\cj\.\ng~\G\ŏDz\`n\=','',0,'?'),(_binary '\w\뭞~','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-palette.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\\ M8\\',_binary '6a\\Jޘ\ݾmm\?\/e{ӆ\0\r','',0,'?'),(_binary '\ߒs\\0\qTn\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-preset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\=H\(!-y',_binary '\duD\:}LD\pX\Le¸|\r','',0,'?'),(_binary 'I\\{\\T0\\(zM','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-radio-buttonset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Tǣ\\\\0<\',_binary '(%O CWI\VXV\29_\\\\','',0,'?'),(_binary 'c`_\]','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-radio-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Lذ\A/1(\\',_binary '\E΅Th3 g\\\]-yX|/Rc|\=','',0,'?'),(_binary '\J[T@\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-radio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';1\47 >!s\0.',_binary '{p۹\0YںC8h3$\~zd\\\','',0,'?'),(_binary 'z\?hJCRxޜn\[h','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uθ\\"\',_binary 'N\r\vr\\\r7CHG+\','',0,'?'),(_binary ',Hb}c\\\\vx','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-select2-multiple.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;\c\\\\0ps\',_binary '>q{(+fޙ`=a@\\3bzܥаl','',0,'?'),(_binary '\\Ȉ\C47ɒ\','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-select2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[\>i1L1qE4*',_binary 'u\0yUM\ɪ\vUY`\IA5xavN@','',0,'?'),(_binary 'V\@(ug(*\x\','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϠX9K$\fҦϡ',_binary '\*\ܖ\,m%\\i[\"ÝC!','',0,'?'),(_binary '?dLF0\҆x\kP','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-sortable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\[\nSO2}',_binary '\?O\e\}\z\\dnUW\C4vl\\~','',0,'?'),(_binary '\/pk\\i0\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-spacing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E\̝\\"\\\~\#Zd;',_binary '7bR\4\S\\@s}\.3\\EN','',0,'?'),(_binary '8p\"S9\D/?O%','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-switch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\\'\\[\\4 ',_binary 'k\[\?2\\8n\h\\CZ2\\\DL9O\\','',0,'?'),(_binary '\˹eI\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\+PLhh\_\',_binary '/+B&J:ťfDJ+ \\','',0,'?'),(_binary ',\W\fo\\C\[','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zl~O)1\<\(',_binary '\[ɇ\ \\0[+K\rJ]\O\r1qM\"','',0,'?'),(_binary '\=\t\)2)','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-toggle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\_\\\wW\?O',_binary '*b]E&JαŠ\\\\4\0b1>.w!\','',0,'?'),(_binary '\\'Na\m\.t','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-typography.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\c\i\u\\n\6\\\',_binary 'k\'\zLzm\\rg\gKj_re\\i躞','',0,'?'),(_binary 'bi\k\IT:1\','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Әȵ \_8Q3',_binary 'u3{#\'r=MY,\\k\ڎ\0\R\tY\','',0,'?'),(_binary 'cؔ\\\ \c','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-filed-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\!.ξ\\\',_binary '13\	=>\\\zk/\&ڍ|\\ZR\]','',0,'?'),(_binary '6\72lj\f','wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-filed-url.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Z]^W)\:R',_binary '\Qg]J\\݌\L\'\X%w\\GN4','',0,'?'),(_binary '\iP\JSK\\_','wp-content/themes/chic-lifestyle/inc/kirki/includes/lib/class-aricolor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\0)\_\\V8',_binary '\\ns\ZSW0z\\\\}\m\/\','',0,'?'),(_binary 'U\k=\pM5\p(\rX','wp-content/themes/chic-lifestyle/inc/kirki/includes/lib/class-kirki-color.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&q<x\\\vb',_binary '\\e|\TtĀk217\dmr\Oꥆ','',0,'?'),(_binary '\\\(\7\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/output/class-kirki-output.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' gNy/\~',_binary '1x\\sU6ּ8\}\-\=@Pf`*','',0,'?'),(_binary '\\m2`ܑ\j\V@','wp-content/themes/chic-lifestyle/inc/kirki/includes/output/field/class-kirki-output-field-multicolor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\C\:fw\z\U',_binary ' \TW\&D2eeJ!\bq\"\w*ߔ>\','',0,'?'),(_binary '\0\-\\n\<hV\9','wp-content/themes/chic-lifestyle/inc/kirki/includes/output/field/class-kirki-output-field-spacing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q:^|\͖8',_binary '?I\F\1\\pN\\+\\Y5\\\'-A~\1^','',0,'?'),(_binary '7\\)|;M%\r8N','wp-content/themes/chic-lifestyle/inc/kirki/includes/output/field/class-kirki-output-field-typography.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\\D\F^\0\r\',_binary '\Zd6\f\0\\Iz(\|\','',0,'?'),(_binary '\;\"kdhTK\;','wp-content/themes/chic-lifestyle/inc/kirki/includes/output/property/class-kirki-output-property-background-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\PuēP\\7\',_binary 'Y\´\(\sK\{!J\\\j0\Mm\\','',0,'?'),(_binary '$m\'i\\@\\zZV\','wp-content/themes/chic-lifestyle/inc/kirki/includes/output/property/class-kirki-output-property-background-position.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1`̺#\+&>Yhi\',_binary 'a(\\J`!^񧴈~\\]|\"b\i','',0,'?'),(_binary '\a\`ǿ\\\\\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/output/property/class-kirki-output-property-font-family.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\NO\.\e2 a\',_binary '\H\Χb\\/q@\\\ARR\"\"p!>','',0,'?'),(_binary '\\\^\\Q\9Ş','wp-content/themes/chic-lifestyle/inc/kirki/includes/output/property/class-kirki-output-property.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_[M\"]\00öP',_binary 'U\jA	\\na\cD\_Q\"-\\.\	\','',0,'?'),(_binary '\m8,\aBA','wp-content/themes/chic-lifestyle/inc/kirki/includes/panels/class-kirki-panels-default-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\2h3B뿳R?',_binary 'oxSY\sg\`Ȅ \"r6ZV, C\','',0,'?'),(_binary 'sE\#jqs)Kux\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/panels/class-kirki-panels-expanded-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\t\\\\\%s[d',_binary '$oZ\X\'ՍI\k0;ov<>]\','',0,'?'),(_binary '\\#F\$sw\J','wp-content/themes/chic-lifestyle/inc/kirki/includes/scripts/class-kirki-scripts-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I=\rM]_f\u',_binary '\\ҕmޅL\+\\\0P\}>\\','',0,'?'),(_binary 'n 2Ss\','wp-content/themes/chic-lifestyle/inc/kirki/includes/scripts/class-kirki-scripts-loading.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"_\[T\\\',_binary '\\P\(Y`\\\A[bvz>з3w\n','',0,'?'),(_binary 'B=V8ʈ\\\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/scripts/class-kirki-scripts-tooltips.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':ۨ\+ӧ+L',_binary 'ǕI{+$\`o	>\C\M[\0B\\Z8y\','',0,'?'),(_binary 'ii{\՛\\\\b','wp-content/themes/chic-lifestyle/inc/kirki/includes/sections/class-kirki-sections-default-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6>n1\01Sεw',_binary '\\"V\\a .\\5\Ԏ0Co뼎\','',0,'?'),(_binary '\A\̻\*M\\','wp-content/themes/chic-lifestyle/inc/kirki/includes/sections/class-kirki-sections-expanded-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tծƋ^Ns',_binary '\r\-.\\g\^\nG\d#$','',0,'?'),(_binary 'd7\IU\','wp-content/themes/chic-lifestyle/inc/kirki/includes/sections/class-kirki-sections-hover-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^)\?4O	h\(t2',_binary '`\\Oò\6\L\\F,TԻt:pt\\f','',0,'?'),(_binary '\\ұ\^(j4\6T','wp-content/themes/chic-lifestyle/inc/kirki/includes/settings/class-kirki-settings-default-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`(\\bꂙ^u\':',_binary 'Mef\܎>\ye5\\\\N{$kk\','',0,'?'),(_binary ')惒.4Ӹ\\R@','wp-content/themes/chic-lifestyle/inc/kirki/includes/settings/class-kirki-settings-repeater-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wOl\k\\',_binary '\\\#9\K\K&QJA\s\ȁG4z#','',0,'?'),(_binary '8\\F]\mB\IaN','wp-content/themes/chic-lifestyle/inc/kirki/includes/styles/class-kirki-styles-customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5]Fș\ێ',_binary 'J3l`\\y\\\\Zր\\\0\=$`(!}','',0,'?'),(_binary '\n\^\E2\4<','wp-content/themes/chic-lifestyle/inc/kirki/includes/styles/class-kirki-styles-frontend.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TWY\Z\',_binary 'Sfu\\!GgS+b\\e\3\+','',0,'?'),(_binary 'ݔ\ڑ\MؼTQT','wp-content/themes/chic-lifestyle/inc/kirki/includes/styles/class-kirki-styles-output-css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\B\9d\n\0',_binary '\\h@\\|\8Z\Lni9ʷ','',0,'?'),(_binary '}-\0f5oj\6Q\','wp-content/themes/chic-lifestyle/inc/kirki/includes/webfonts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\lT\I?Wɶ.',_binary '[aT>ќXCV\ōh\VR\','',0,'?'),(_binary '\)GoT\n','wp-content/themes/chic-lifestyle/inc/kirki/kirki.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v?\\\l',_binary '[ROdV\ \\bJ#\5٘\\,\\+ ','',0,'?'),(_binary '#[\%\n\\\\','wp-content/themes/chic-lifestyle/inc/kirki/lib/class-aricolor.php',0,_binary '[_\P>@\\r,',_binary '[_\P>@\\r,',_binary '}wV6>\\h.zٰo\;x\','',0,'?'),(_binary '\+q\!\q~\^\','wp-content/themes/chic-lifestyle/inc/kirki/lib/class-kirki-color.php',0,_binary 'Z\\\\\vC\',_binary 'Z\\\\\vC\',_binary ';%\'Wk}\\\j@ޱ\ox\\)','',0,'?'),(_binary 'a&+\\ZCy','wp-content/themes/chic-lifestyle/inc/kirki/modules/css/class-kirki-modules-css-generator.php',0,_binary 'v\n}T\\\{<X',_binary 'v\n}T\\\{<X',_binary 'b%C\\U\L\7/\\3<vFee4','',0,'?'),(_binary '\qvo\\\\С>','wp-content/themes/chic-lifestyle/inc/kirki/modules/css/class-kirki-modules-css.php',0,_binary 'H\\n$b|!\\hᵑ',_binary 'H\\n$b|!\\hᵑ',_binary '=//\\uh\Zh>r\DnP\&!U','',0,'?'),(_binary 'ýѯy^=+a)','wp-content/themes/chic-lifestyle/inc/kirki/modules/css/class-kirki-output.php',0,_binary 'ʂ\|[\^A',_binary 'ʂ\|[\^A',_binary '\\rauvtxH&\\(h-\\3\\\Z\\','',0,'?'),(_binary '*uX\6^\|\e','wp-content/themes/chic-lifestyle/inc/kirki/modules/css/field/class-kirki-output-field-background.php',0,_binary '\"u(\羉\B',_binary '\"u(\羉\B',_binary 'K\\iB30J\0oe:\P`\Dz;nλ\'\\','',0,'?'),(_binary '\}\9Kl\n%=\$\W','wp-content/themes/chic-lifestyle/inc/kirki/modules/css/field/class-kirki-output-field-dimensions.php',0,_binary '|\Z?GK\_87\\',_binary '|\Z?GK\_87\\',_binary '\\n\2Fzh< \6:*\\n\"Z\V\kpR\O','',0,'?'),(_binary '(R\\\#\','wp-content/themes/chic-lifestyle/inc/kirki/modules/css/field/class-kirki-output-field-image.php',0,_binary '\\\\/RWϳ*^',_binary '\\\\/RWϳ*^',_binary '8I\'o,\\iE\\𷐟;F\ٻ\~\','',0,'?'),(_binary '\\}w\%\\	U','wp-content/themes/chic-lifestyle/inc/kirki/modules/css/field/class-kirki-output-field-multicolor.php',0,_binary 'ꁪ\Zt]}i\\'\',_binary 'ꁪ\Zt]}i\\'\',_binary '8p;\qW\)\|\ƺd\8窋','',0,'?'),(_binary '\|<\\v/ \`','wp-content/themes/chic-lifestyle/inc/kirki/modules/css/field/class-kirki-output-field-typography.php',0,_binary 'QU\/2e\T',_binary 'QU\/2e\T',_binary '&B%\CvS\\\U\\c|\\\6.','',0,'?'),(_binary '\\C\nw\o\\','wp-content/themes/chic-lifestyle/inc/kirki/modules/css/property/class-kirki-output-property-background-image.php',0,_binary '	#w\}.\h2',_binary '	#w\}.\h2',_binary 'f5\ƻ!\Z\\B}*`RPg\`','',0,'?'),(_binary '`/&\lc39 \*\S\','wp-content/themes/chic-lifestyle/inc/kirki/modules/css/property/class-kirki-output-property-background-position.php',0,_binary '^\\\]\\$\\\\.\\',_binary '^\\\]\\$\\\\.\\',_binary '^ѣT}/&\\ӷӘE\'_\jrf=','',0,'?'),(_binary '\_+wz\#\w\\-','wp-content/themes/chic-lifestyle/inc/kirki/modules/css/property/class-kirki-output-property-font-family.php',0,_binary ',?(\duQg\V',_binary ',?(\duQg\V',_binary 's\gH=ɷ%\BfU\\'\h^ݻo\','',0,'?'),(_binary 'k\RK\0éF\','wp-content/themes/chic-lifestyle/inc/kirki/modules/css/property/class-kirki-output-property.php',0,_binary 'begO\R\A^ae',_binary 'begO\R\A^ae',_binary 'Ul\dC*RMիݨ!༕\\K\=s\','',0,'?'),(_binary 'JGBNGl\"\n<','wp-content/themes/chic-lifestyle/inc/kirki/modules/css-vars/class-kirki-modules-css-vars.php',0,_binary 'W>A҈i0M',_binary 'W>A҈i0M',_binary 'wC\\^+ÂO./\3:|\׷S','',0,'?'),(_binary '\\v/\Υf$','wp-content/themes/chic-lifestyle/inc/kirki/modules/css-vars/script.js',0,_binary '\mNrL\ʹ\K\',_binary '\mNrL\ʹ\K\',_binary '\20N\@\T\"8C\\Q\:g4?-\','',0,'?'),(_binary 'xMI%\?a\\','wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/class-kirki-modules-custom-sections.php',0,_binary 'U\{Cb\A\DNX\?*\',_binary 'U\{Cb\A\DNX\?*\',_binary 'P\l\\I:\\Bw<@.$#\@','',0,'?'),(_binary 'c pUpKЌ6','wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/panels/class-kirki-panels-nested-panel.php',0,_binary 'tB<gtA|`f\',_binary 'tB<gtA|`f\',_binary 'ev&U\i4\\pz\q#+Nt\\','',0,'?'),(_binary 'OߝF,P \0','wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/sections/class-kirki-sections-default-section.php',0,_binary 'ˍ\r\\\[\nނ)',_binary 'ˍ\r\\\[\nނ)',_binary '\B;m\CI;le\c\\yj\n','',0,'?'),(_binary 'u\Z%c\\)	8\;!\','wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/sections/class-kirki-sections-expanded-section.php',0,_binary 'kdyp嫁\n#ǞЮ\',_binary 'kdyp嫁\n#ǞЮ\',_binary '19\\'\Fc\\B\B_9Z8)\\\1','',0,'?'),(_binary ']YAA&z8dq\','wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/sections/class-kirki-sections-link-section.php',0,_binary '%/IQ!B@\\hƗ\',_binary '%/IQ!B@\\hƗ\',_binary '\Mȕ\\cG\\\r`k\5ڶE\	','',0,'?'),(_binary '|Ѵ\(>N^\\\\\','wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/sections/class-kirki-sections-nested-section.php',0,_binary '+\e {U\',_binary '+\e {U\',_binary '\Z#z:PKʦC\\\ޅ','',0,'?'),(_binary '\\k/\^*\v\]','wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/sections.js',0,_binary '͆\\gL%R\zm\',_binary '͆\\gL%R\zm\',_binary 'u&\L5M\c\\\\	\>\_/M\@ \lp\','',0,'?'),(_binary 'Yµ:\0r\k^K\n','wp-content/themes/chic-lifestyle/inc/kirki/modules/field-dependencies/class-kirki-modules-field-dependencies.php',0,_binary '9P	\ \Z#z\nf',_binary '9P	\ \Z#z\nf',_binary '\\\s\3/\9\(q\QP0\\؋\Y\\','',0,'?'),(_binary '\\r\qZ&\2֊#','wp-content/themes/chic-lifestyle/inc/kirki/modules/field-dependencies/field-dependencies.js',0,_binary '#)/2\iD/\\+',_binary '#)/2\iD/\\+',_binary '1\\\\MJ\\]x~ٸ3W^\G\4y','',0,'?'),(_binary 'jQ\Ps}\\n]S','wp-content/themes/chic-lifestyle/inc/kirki/modules/gutenberg/class-kirki-modules-gutenberg.php',0,_binary 'ٚZa#32Tڒ~_',_binary 'ٚZa#32Tڒ~_',_binary '\4\\\\n=:\9\Z\\tf1c\rK\\\v','',0,'?'),(_binary 'Fw\0Aᖷ\0YN','wp-content/themes/chic-lifestyle/inc/kirki/modules/icons/class-kirki-modules-icons.php',0,_binary '#݋\_\F)z-\',_binary '#݋\_\F)z-\',_binary 'Y(pHx\X\\UtZO\\~)1','',0,'?'),(_binary 'S9CDYp$c','wp-content/themes/chic-lifestyle/inc/kirki/modules/icons/icons.js',0,_binary '`X7Mi\',_binary '`X7Mi\',_binary 'A\B}\\_@\d\T&F˥','',0,'?'),(_binary 'it2ƞӯ\rF\P','wp-content/themes/chic-lifestyle/inc/kirki/modules/loading/class-kirki-modules-loading.php',0,_binary 'x[\rd\'9ƞE6',_binary 'x[\rd\'9ƞE6',_binary 'ɧ\W貮\N*\\Zh)\n%\\H','',0,'?'),(_binary '\\XF\\nz\bߠcU','wp-content/themes/chic-lifestyle/inc/kirki/modules/post-meta/class-kirki-modules-post-meta.php',0,_binary '4\ᮚ,E\\\3',_binary '4\ᮚ,E\\\3',_binary 'W\\;U\yLVs!3\ێ\1\gy\)\\0','',0,'?'),(_binary '\p\Bv\֊i\\Z$','wp-content/themes/chic-lifestyle/inc/kirki/modules/post-meta/customize-controls.js',0,_binary '\R:qxꜪر\\*\',_binary '\R:qxꜪر\\*\',_binary '}υ\"v\N\(ǵ\\\Blw','',0,'?'),(_binary '\'\b}\\fd','wp-content/themes/chic-lifestyle/inc/kirki/modules/post-meta/customize-preview.js',0,_binary 'f-c\L\\\Y+',_binary 'f-c\L\\\Y+',_binary 'J\\Ϡ8\r^Sv\\\Љr9\0F\r','',0,'?'),(_binary '\\ES<b','wp-content/themes/chic-lifestyle/inc/kirki/modules/postmessage/class-kirki-modules-postmessage.php',0,_binary '%3ykޝ\nΉ\',_binary '%3ykޝ\nΉ\',_binary 'fc$5 i.R\6?N\\65\\\\\\1,M','',0,'?'),(_binary '\eW\)\\0@o\','wp-content/themes/chic-lifestyle/inc/kirki/modules/postmessage/postmessage.js',0,_binary 'k\M\;\',_binary 'k\M\;\',_binary '\\\L2dJ\'~\3\niJ3w','',0,'?'),(_binary '6!yi\O}+','wp-content/themes/chic-lifestyle/inc/kirki/modules/preset/class-kirki-modules-preset.php',0,_binary '\'\\\-h\',_binary '\'\\\-h\',_binary '\\8z\K\Z\\1RvnYeGA\0\-n','',0,'?'),(_binary '\A\\\\\\WR|<F\','wp-content/themes/chic-lifestyle/inc/kirki/modules/preset/preset.js',0,_binary '\o\\\0\\\\>Wrڏ',_binary '\o\\\0\\\\>Wrڏ',_binary ';\\{[\'\C[뱳f7+!E@t*L\','',0,'?'),(_binary 'Qv\0\++','wp-content/themes/chic-lifestyle/inc/kirki/modules/selective-refresh/class-kirki-modules-selective-refresh.php',0,_binary 'B2XA\jĺ',_binary 'B2XA\jĺ',_binary 'ׇz\\0{H<\=\Z','',0,'?'),(_binary '\\1\S\n.`6JzY','wp-content/themes/chic-lifestyle/inc/kirki/modules/tooltips/class-kirki-modules-tooltips.php',0,_binary 'ƌ\4$:S\Z\\\',_binary 'ƌ\4$:S\Z\\\',_binary '7ȼT!\`Z\3\Hi62#','',0,'?'),(_binary '\Gŵ\\+~P8|\','wp-content/themes/chic-lifestyle/inc/kirki/modules/tooltips/tooltip.js',0,_binary 'm\\4\y\wL\',_binary 'm\\4\y\wL\',_binary 'q^.I\-w.+8f>1.H\\r\r\5','',0,'?'),(_binary '\\1\߀\\D','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/class-kirki-modules-webfont-loader.php',0,_binary 'ph!أG\,t',_binary 'ph!أG\,t',_binary 'ުU]rG}:m1\\\!K','',0,'?'),(_binary 'ݟtD!7VuM\','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/closure.js',0,_binary 'ظߤUT~Ȭbn\N',_binary 'ظߤUT~Ȭbn\N',_binary 'ɢ|_{\\=ԁxtj`>\ML00\t','',0,'?'),(_binary '\\0\H:F\\~\U\','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/cssclassname.js',0,_binary '\FbIZϜ]VJ',_binary '\FbIZϜ]VJ',_binary '|d؍N\`\([lz\</e^\s/\"f','',0,'?'),(_binary '19\׶f2 \n˅e','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/domhelper.js',0,_binary 'W\/+6\r\r',_binary 'W\/+6\r\r',_binary 'Å	74\\b\9.\Z;,됃\'M)\','',0,'?'),(_binary '\Y`ޘs','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/eventdispatcher.js',0,_binary '\Jt\'k.\v\5',_binary '\Jt\'k.\v\5',_binary 'ޮ\:*\mw. \RxHvM\','',0,'?'),(_binary 'l\з\B&l4B\\','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/font.js',0,_binary ' 1ǡ;Ipi|\'',_binary ' 1ǡ;Ipi|\'',_binary '\\"\\\"a?\\,\{#\\\':\0 {6r','',0,'?'),(_binary 'T௷Ȯ\rU-3\','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/fontmodule.js',0,_binary 'J9\݈aDh',_binary 'J9\݈aDh',_binary '\ԣ\fҵ\o$f+<nPe\n\p+E\ՇZ','',0,'?'),(_binary 'r[8oo2','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/fontmoduleloader.js',0,_binary 'd\*\&\(^.%\j',_binary 'd\*\&\(^.%\j',_binary 'B}hԻ\\0\\Eb\LXb\r4','',0,'?'),(_binary '\(\\\_(@\\'','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/fontruler.js',0,_binary '׌Cqߔja\\u',_binary '׌Cqߔja\\u',_binary '\7A\r둑x\\Ls.YA\ٸ','',0,'?'),(_binary 'qޑm+h#&','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/fontwatcher.js',0,_binary 'n/˫8\E\',_binary 'n/˫8\E\',_binary '\\[k\^|\eD&4	\΃2iY','',0,'?'),(_binary 'S\\\bE\','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/fontwatchrunner.js',0,_binary '-\\\\V{',_binary '-\\\\V{',_binary '`$\*İc\$ŏIvbK#\F\\\o$8','',0,'?'),(_binary '\\\\Sm\!M\','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/initialize.js',0,_binary '\B%r\\\ի\R>\',_binary '\B%r\\\ի\R>\',_binary ' \>\\u\}!Swy\^eA@|\δA\','',0,'?'),(_binary 'u<K\4\Og\ס9','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/nativefontwatchrunner.js',0,_binary 'G\l\)\D\\M\',_binary 'G\l\)\D\\M\',_binary '\d8Z|`\\:O\{\Z8\r,\\','',0,'?'),(_binary 'A0h\=N\0\h$Z','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/stylesheetwaiter.js',0,_binary 'i\M\-\rm3\\Qr\'',_binary 'i\M\-\rm3\\Qr\'',_binary '\nz\\\\\V\nA{\tG\\\g','',0,'?'),(_binary '~Lu\B[oI\2[j','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/webfont.js',0,_binary 'U%!l?pEh\',_binary 'U%!l?pEh\',_binary 't\0͸?\hu(U\\&>#','',0,'?'),(_binary 'H\\\\\i\-\H','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/custom.js',0,_binary '\\Y:\\5\r',_binary '\\Y:\\5\r',_binary '=jP\\'^qm\.\{PHQό&4Zs	','',0,'?'),(_binary ']I$W$bd\\QV','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/fontdeck.js',0,_binary '\oJcu\\P\`',_binary '\oJcu\\P\`',_binary '\\JH5\S/\\kǫ.\\\^\\j','',0,'?'),(_binary '`bK\- jj','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/google/fontapiparser.js',0,_binary 'h]%9\(_\E',_binary 'h]%9\(_\E',_binary '\L\Y\?N@(\j\,\\A\|\c\','',0,'?'),(_binary '\J	C\0E\5\\','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/google/fontapiurlbuilder.js',0,_binary '(0\\\\2n:m\',_binary '(0\\\\2n:m\',_binary '\dDʌR^}\7@\\ٟ','',0,'?'),(_binary '~Y\N\\0w','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/google/googlefontapi.js',0,_binary 'p\\}\"\\Z?}F',_binary 'p\\}\"\\Z?}F',_binary '\'Q\5\i,\n,J\\\\\R','',0,'?'),(_binary '$\\F\af\hl\\r','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/monotype.js',0,_binary 'Et\\kF',_binary 'Et\\kF',_binary ':XZ[t\0&<[nZG\-','',0,'?'),(_binary '7͚j\0>\rmc7yI','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/typekit.js',0,_binary '\|^\87\!\',_binary '\|^\87\!\',_binary 'm`R1\0C\\pY_<\\!宅','',0,'?'),(_binary '>Efœ\Ww\\\G','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/webfontloader.js',0,_binary '~(\T*\ }C\',_binary '~(\T*\ }C\',_binary '9\x#B\!\E\n\Z|j!?\','',0,'?'),(_binary '\|V\\~YI<g','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfonts/class-kirki-fonts-downloader.php',0,_binary '\\\\`qUdy\_',_binary '\\\\`qUdy\_',_binary '\c-Ǣ\\B\\UXЯkk\\^BE{','',0,'?'),(_binary '	\\\LZ\m\','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfonts/class-kirki-fonts-google.php',0,_binary 'c\\A\h,',_binary 'c\\A\h,',_binary '\?F4[\\\\'RrQ\\3Z\\\','',0,'?'),(_binary '\X#Zus@\\','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfonts/class-kirki-fonts.php',0,_binary '+>k|\kjvLj+\',_binary '+>k|\kjvLj+\',_binary 'hU	e\r\n\ZxY<V2?\']v!','',0,'?'),(_binary '\\P\ \bRh','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfonts/class-kirki-modules-webfonts-async.php',0,_binary '[u,\%HK\sI/',_binary '[u,\%HK\sI/',_binary 'ﾰc\\.\g)\\KJg\A\k','',0,'?'),(_binary ':˅TrB\'\\b','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfonts/class-kirki-modules-webfonts-embed.php',0,_binary '\\"\\\\*R^Ep,',_binary '\\"\\\\*R^Ep,',_binary 'k\fJ\'4b>rOP*|qlMoӥ\N','',0,'?'),(_binary '/\=c0.Zt<','wp-content/themes/chic-lifestyle/inc/kirki/modules/webfonts/class-kirki-modules-webfonts.php',0,_binary 'YC\|\\K\\	Z',_binary 'YC\|\\K\\	Z',_binary 'hWXTy5j~;\\\Y8\/\'r\_','',0,'?'),(_binary '.+\\"\`X\rAuq','wp-content/themes/chic-lifestyle/inc/kirki/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'`6E&o*:y',_binary '?L\sq\\(Թ(\\E\Dr\\/','',0,'?'),(_binary '\U8!Լ/P\r±','wp-content/themes/chic-lifestyle/inc/kirki/upgrade-notifications.php',0,_binary ')Ei>~|\FYZ-',_binary ')Ei>~|\FYZ-',_binary 'kL\'~\&l\"\ZhR?gd\	X\7}k','',0,'?'),(_binary '\_]\\~rfJ','wp-content/themes/chic-lifestyle/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z0N4\f',_binary 'j؃\\\eb%W	?c\{/\\O`͏	[%ʖ','',0,'?'),(_binary '8WD\'C!','wp-content/themes/chic-lifestyle/inc/tgmpa/class-tgm-plugin-activation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\XB\\\\\Ǥ\',_binary '\,B	78B\"\S\:v\\\k0bC','',0,'?'),(_binary 'q<\YTb\\̽\\','wp-content/themes/chic-lifestyle/inc/tgmpa/recommended-plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kʜ[\j\\&l(y\n',_binary 'KbL?\ϻ\ޙL2G\?J\\\\'\\\','',0,'?'),(_binary '73\pal\ٯ\\\','wp-content/themes/chic-lifestyle/inc/widgets/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\̳)~',_binary '8Ry:\B4\=ø\Ig_','',0,'?'),(_binary '?ғ\N\=gV','wp-content/themes/chic-lifestyle/inc/woocommerce-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZA/C#e$,5\S',_binary '\F2Z!](\f\Lj}g\iCNƠ)0','',0,'?'),(_binary '\0o9\\\F\b','wp-content/themes/chic-lifestyle/inc/wp_bootstrap_navwalker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/㏦,P\S+`',_binary '\\	\R\ZA3S\e\t0\\@;\','',0,'?'),(_binary '˻\\nH}&8`C','wp-content/themes/chic-lifestyle/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K9#	\TVӞ\',_binary 'n!6\R\9M>y\vΚf3\\\\g','',0,'?'),(_binary '%NW\#\f','wp-content/themes/chic-lifestyle/js/bootstrap-rtl.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nB|܋_hɤ߳',_binary 'OZxkް ˲yQ*c\Lx\ZD\(	','',0,'?'),(_binary '-\?w\\','wp-content/themes/chic-lifestyle/js/bootstrap.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t\\\q\\\\N\',_binary 'g\\}u(&\\r+[oΰNf\ݪ\\\','',0,'?'),(_binary 'ʒFk9\j?tI\9׳','wp-content/themes/chic-lifestyle/js/customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\x\\܈\S\',_binary '\Ɣz`ɚl\1F	\՘=O\X\'fci\\r','',0,'?'),(_binary '\)\\\p~\/','wp-content/themes/chic-lifestyle/js/getting-started.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Tt4!\Z\Z%ӢډK',_binary ';\\\\hIlN>5fc\\qA\^p;1C','',0,'?'),(_binary '^k[\y\4uak9\*','wp-content/themes/chic-lifestyle/js/loadmore.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`is\n?5\Gb`',_binary '\\f{8ɲ\zj\r1N#g3(\@','',0,'?'),(_binary '>!<\y\$\\n\Y\','wp-content/themes/chic-lifestyle/js/owl.carousel.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\˖x\]T\ZY\',_binary 'D#-\@i\2\\}ڛ*	B\<\\','',0,'?'),(_binary '\ -\\GF+','wp-content/themes/chic-lifestyle/js/script.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\..\\.\Jlee',_binary 'KB\\\J\kƬg\[o\Bx\%}dkX]\','',0,'?'),(_binary 'p\\Z<\$st\\','wp-content/themes/chic-lifestyle/js/wow.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\tXā)x\Q',_binary '>95҂\\\@S!\Z1\,\\A','',0,'?'),(_binary 'Mtyt\i}ǵ\','wp-content/themes/chic-lifestyle/languages/chic-lifestyle.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\${>7Zx\',_binary '77&\Kx^_\,\\"#\o3G','',0,'?'),(_binary 'FjKL\'1\\Pj\r','wp-content/themes/chic-lifestyle/layouts/header/header-layout-one.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\D.\\n[z\Yy',_binary '\\+;Bi+:F\>\\"R\I','',0,'?'),(_binary ':ˑ\F_?|y\_A\z','wp-content/themes/chic-lifestyle/layouts/header/header-layout-three.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Tz/\-ߥP\t',_binary 'oT\*(!\\T\\\\,\\'y)I','',0,'?'),(_binary '&\G\\p\+','wp-content/themes/chic-lifestyle/layouts/header/header-layout-two.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\uBV\\\IkKK\',_binary 'F=QQd]\O\n\wpNw{\ (S(i?R','',0,'?'),(_binary '@K\mZ#v\O\','wp-content/themes/chic-lifestyle/layouts/header/header-layout.php',0,_binary '!x\Y:@櫇',_binary '!x\Y:@櫇',_binary 't\r?v1T0A\ZRj.i8ۘ\{\\&\\;\','',0,'?'),(_binary '6<\j4=}b%\','wp-content/themes/chic-lifestyle/layouts/slider/slider-layout-one.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yT~hډu]\u\ؒ',_binary '\\\Z\\dY:U\\br,)$H\\nD\\','',0,'?'),(_binary 'q\\,\"\"f\\\\\','wp-content/themes/chic-lifestyle/layouts/slider/slider-layout-three.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\j˝0B\',_binary '|ޣxg\6\;ؒ\(\\Ϯi:;m(A\Z','',0,'?'),(_binary '\8\5$̀\\\','wp-content/themes/chic-lifestyle/layouts/slider/slider-layout-two.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\\\\Lٽ\n63+',_binary 'l&f\y\`J\	\B	xw\Χ\\( \\','',0,'?'),(_binary 'G\r&$h^DzO','wp-content/themes/chic-lifestyle/layouts/slider/slider-layout.php',0,_binary 'IB\\\`ս ',_binary 'IB\\\`ս ',_binary '\A1\CET\\1Y5Ú\XY','',0,'?'),(_binary 'We\iCr\,\\','wp-content/themes/chic-lifestyle/no-featureimage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dU`T;\\\s\',_binary '\RD\n@\:Mz\\VǕ6,4','',0,'?'),(_binary '<\0\\R@>\'N{\=','wp-content/themes/chic-lifestyle/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1f=E\\%i3g\M',_binary 'F\|\Ɯ^J)bH*_Ī@hȺr\XF','',0,'?'),(_binary '\\SsQ\\\;UD\','wp-content/themes/chic-lifestyle/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>Do%\q5\\U',_binary '\/ޔʞ:nf\\RxT\Z{6,_\\\\D','',0,'?'),(_binary 'JU\~\rGc\\']>','wp-content/themes/chic-lifestyle/screenshot.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʻ8şb\n%',_binary 'E8\"\\MTlקKe\T\B\T\2','',0,'?'),(_binary '.!\n\\&Õ;z','wp-content/themes/chic-lifestyle/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zg\C\e\\E	Yu\0\',_binary '*@/\\\d</U\@\\\\m佂=\\D','',0,'?'),(_binary '2qc2V\MQ;N\0a','wp-content/themes/chic-lifestyle/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '..\ $o\\m\I\',_binary '\;h\[U!=rLˢ\X椪b\!2','',0,'?'),(_binary '\n&!%\a\\0£P\\','wp-content/themes/chic-lifestyle/single-leftsidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á*\r8o^\\phIL',_binary 'W|=Qr\Ɍ+&\\%zy\G+\r','',0,'?'),(_binary '\V*>\F/rNBJ','wp-content/themes/chic-lifestyle/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8Z\\nI\lj',_binary '[	@\3)F\m\eish\	\3<\\','',0,'?'),(_binary 'jm\ɗg\\˲6eu','wp-content/themes/chic-lifestyle/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h.C\\\(}',_binary '\\\\nZC,<%N>7ҮҲ{\2','',0,'?'),(_binary 'II\\c0#\\','wp-content/themes/chic-lifestyle/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ߦVO\%s\',_binary 'x?2	b\\'n4\*\U#\I48x;z','',0,'?'),(_binary '^n\b\\\[Lsh\\','wp-content/themes/chic-lifestyle/template-home.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dS~\0\\Z\r\Z',_binary 'o&\|4\?03|bĥ$:qhz\bpEm&','',0,'?'),(_binary ',\\\n\XI<a!\','wp-content/themes/chic-lifestyle/template-parts/content-blogs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\a\wrfn\&\',_binary 'Zz\W\nO2kEPJ:$e;\R]\'I\'s\@','',0,'?'),(_binary '\v}}\1rT\F','wp-content/themes/chic-lifestyle/template-parts/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gz3\?_',_binary '5\q\8<\I\alݱr<xM늒','',0,'?'),(_binary '\X\\\\\P\I\','wp-content/themes/chic-lifestyle/template-parts/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\"\p\H_B^\\7',_binary '\\Z\4\cZ)l)\}>#\\H&>','',0,'?'),(_binary 'P*\\"\\tG7\','wp-content/themes/chic-lifestyle/template-parts/content-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\TBl)D\na{',_binary '\!\\.V/\~șa\ӫ\ZO\\"\#','',0,'?'),(_binary '{\4B梺\]@f','wp-content/themes/chic-lifestyle/template-parts/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;\xD \d?]>\'',_binary '6\{R{\\\\\c \Z󤥸','',0,'?'),(_binary '\\r>dc^\Ryj','wp-content/themes/chic-lifestyle/template-parts/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\xwDbE*9\',_binary '\\l\7oI\\h\usf\\"+','',0,'?'),(_binary '&D%\\\LC{Bq','wp-content/themes/chic-lifestyle/template-parts/home-sections/archive-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\\N\ZZ`.',_binary '\$.!\Xtx<m?X\\\x\CGT\','',0,'?'),(_binary '\Ck\ԜtwN','wp-content/themes/chic-lifestyle/template-parts/home-sections/instagram-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\\3~V\WF',_binary 'nR\\x1\\-\i\)8#rL','',0,'?'),(_binary '%q!ӭ\p','wp-content/themes/chic-lifestyle/template-parts/home-sections/newsletter-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R,_}:s\\\#\',_binary '6hر\z\.7b\o\}饒%5<','',0,'?'),(_binary '&抐@\kpG4i','wp-content/themes/chic-lifestyle/template-parts/home-sections/pages-select-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MtBK\'Q$\\.\q\',_binary '%\MWL\\3\\ƃX\\\,\\/#j{\Ո','',0,'?'),(_binary '\Y~\6k\H\'z\\','wp-content/themes/chic-lifestyle/template-parts/home-sections/slider-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h^%\\rf\]',_binary ',bz\*mt@y\\\8\k\#\\L\Z','',0,'?'),(_binary 'A\-Bw=\2\\','wp-content/themes/chic-lifestyle/trt-customize-pro/chic-lifestyle/class-customize.php',0,_binary '7\\l\fA',_binary '7\\l\fA',_binary '\!\P6>;YIĢ(z~!\\[V*v','',0,'?'),(_binary 'ssK 4~\'\\*','wp-content/themes/chic-lifestyle/trt-customize-pro/chic-lifestyle/customize-controls.js',0,_binary 'ⰰ\0&dI\.|',_binary 'ⰰ\0&dI\.|',_binary 'Z\\S\\Q\n9C\S\\1\\Z\{9m','',0,'?'),(_binary '|L\'R\\\,\\','wp-content/themes/chic-lifestyle/trt-customize-pro/chic-lifestyle/section-pro.php',0,_binary '\u<P\ïXS]5֤',_binary '\u<P\ïXS]5֤',_binary 't@\Ʀ\\Ů\r3ݬ\\\M\;','',0,'?'),(_binary 'U\\n\6\j\\\͘','wp-content/themes/city-store/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ECt\I)m\',_binary '\\Rgx#\Z\\qx \HA','',0,'?'),(_binary ']6`JEҫ\xH\\\','wp-content/themes/city-store/assets/css/bootstrap.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yOwE\\\O\s',_binary '.bHԱ=\\\-\]3\\\\k{','',0,'?'),(_binary '\K{\,x','wp-content/themes/city-store/assets/css/bootstrap.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PW\!\܅͍J_g\',_binary '%\Ҵ p\\{^sD\@V\X\!\]M','',0,'?'),(_binary 'r?\p!\s,&7','wp-content/themes/city-store/assets/css/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\d\n;\nP25|o0\y',_binary '~Dܔ\\3\\'Nq@1hb\\\L\%\\D\','',0,'?'),(_binary '_\Dv\\\nn\<','wp-content/themes/city-store/assets/css/responsive.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\\Z4\\lQ*8',_binary '\p\91\\CߥJ\\}pz|\Z)j\r\','',0,'?'),(_binary '\\n[n\\\\','wp-content/themes/city-store/assets/css/slick.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>K\Gpvo\Hd',_binary 'Ҏ4ѽ\I#\\\\0\K\;#g\','',0,'?'),(_binary '/\jI³Ԛ\'NZH','wp-content/themes/city-store/assets/font-awesome/css/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'َK\'\ȊEG\',_binary '~\̣K/*PG1,\\DAs','',0,'?'),(_binary '[-%#3W]\fN','wp-content/themes/city-store/assets/font-awesome/css/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\GJ3$ NGxB\0p',_binary '.5%e|br%R>e\\tIk','',0,'?'),(_binary 'U\>\DKos[','wp-content/themes/city-store/assets/font-awesome/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\)/\%W>',_binary '׈>*\M<L8\C\C<h[}\,\','',0,'?'),(_binary '&[YR0~\V1','wp-content/themes/city-store/assets/font-awesome/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%$\\!z',_binary 'ό\;R\\\\s\x}\\|4>\ƙ`2','',0,'?'),(_binary '\\0$AَbT.=','wp-content/themes/city-store/assets/font-awesome/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\\!\\\'8\Ϡ\\',_binary 'EVS`$?\aj`)x\0\\+X\K','',0,'?'),(_binary '߫2H@\uNx\W','wp-content/themes/city-store/assets/font-awesome/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]%\5ptHg',_binary 'E4.t)\|(7J\\>n;\Z^\h\nØ','',0,'?'),(_binary ';G\^\\Tv0','wp-content/themes/city-store/assets/font-awesome/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\6{\\9AH',_binary '\\r8\\γe\y̿ǹ\H\-_','',0,'?'),(_binary 'V\u71-@u','wp-content/themes/city-store/assets/font-awesome/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|n\\\\pv&\',_binary '\1+<K\M\˷F@&R̲\t|a==m\R\','',0,'?'),(_binary '^#\{ߴ5d{\``X','wp-content/themes/city-store/assets/img/wparmy.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\\\`\<٨\G',_binary '\UWNl{}K\\hO*)W^\0\̟u^\\','',0,'?'),(_binary 'c\\d\su\\\\q','wp-content/themes/city-store/assets/js/bootstrap.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\'o&Vw\k=',_binary '&4\\lw\\0\jD\n\\zVMG\0\\\','',0,'?'),(_binary '#\\<P\|H','wp-content/themes/city-store/assets/js/bootstrap.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\HR\{*\<([[',_binary '\Ho,\8\Jz\\8\fm\ОVp%3','',0,'?'),(_binary 'O+\`S	.Fw\_','wp-content/themes/city-store/assets/js/city-store-slider-setting.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\x\.lے\"CϚ',_binary '\=e\r\91;hW\\g\N6;w','',0,'?'),(_binary '1/\\|\y\\N','wp-content/themes/city-store/assets/js/city-store.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IH\M\\\0ّ\\',_binary ' \ZND\&qOjfJ\\b+]\Rqo\S','',0,'?'),(_binary '\P\),|\\bX|0\','wp-content/themes/city-store/assets/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\qcy\.i\\P@',_binary 'qi`\0\sW%Aݳھ\gBKA\6','',0,'?'),(_binary '\\o+\-G','wp-content/themes/city-store/assets/js/html5.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\>XP)\,a\',_binary '\\O\\`57DݟL_?\i\','',0,'?'),(_binary '^\'{ϧ}P~','wp-content/themes/city-store/assets/js/jquery.cycle.all.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nS\"B\ƒn\',_binary '띗\l)i<UH\n\"\\!\\[/xZ','',0,'?'),(_binary ':d\M\\(Fa\','wp-content/themes/city-store/assets/js/slick.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>r\\$\j8',_binary 'X\B\R}\\\e\|lcѝ*~A\','',0,'?'),(_binary '\0^ַ\kNz','wp-content/themes/city-store/assets/js/slick.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@O\Ld<tE\M',_binary '8\vJ]N\F\\\"\V>\9PV\'R2\	','',0,'?'),(_binary '*ND\i<+<K','wp-content/themes/city-store/assets/js/source/city-store-main.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&?\m\\CF\m/',_binary '\_C!\Z\R\#\|}dfF\?sV@','',0,'?'),(_binary 'kG\`?Wvǫ3','wp-content/themes/city-store/assets/js/source/city-store-slider-setting.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TZ}\\\Z{\\*',_binary '\l\|\~0K͕gB͹A</.:+\\Y\v','',0,'?'),(_binary '\n\\Xi;@b\\','wp-content/themes/city-store/assets/js/source/html5.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C!^!^hT-I)D.e',_binary 'd0=Ev.X\oo]Vv xx\0G#s\\'\\','',0,'?'),(_binary '\0.KQ%\<t\99','wp-content/themes/city-store/assets/js/source/jquery.cycle.all.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dڜ\[\i\\\Z^\',_binary '[>KiS\\\\\Ha\KIcBJm\ˍ\','',0,'?'),(_binary 'Yz\<\\\\l','wp-content/themes/city-store/assets/sticky/jquery.sticky.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e68\\j	\',_binary 'L\\\n\\Ne\d\rO\\)\\\qM\\\r\wX','',0,'?'),(_binary '#\T^0','wp-content/themes/city-store/assets/sticky/jquery.sticky.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r\V\\|v\0N=?\',_binary 'J\,T|`fX>H4;Ta&\=\;\','',0,'?'),(_binary '\\G\\\	Z\9m\','wp-content/themes/city-store/assets/sticky/sticky-settings.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\W!1\\%Փ',_binary 'IVby\R\F\{&\ϊ9>Ϩ?\0-','',0,'?'),(_binary 'e\mLgh\\겫\b:\','wp-content/themes/city-store/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=QP\\',_binary '	\\\lX\"7uVh\a\t\*\\0\','',0,'?'),(_binary '\cFԗ\Y\k%','wp-content/themes/city-store/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0Zi=Ј\',_binary '\\\!8,F\V\\TG\\'AUC','',0,'?'),(_binary '\xN/\D,Rv\6','wp-content/themes/city-store/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-g\ \'QyY\rC2n',_binary 'S\	NNYE\\}E\\B\_/\	v=\p','',0,'?'),(_binary '}#RO\J\ƴw','wp-content/themes/city-store/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\$zհ\,+\\\\',_binary 'Gr{\\}\'\ѩ!zz\5=','',0,'?'),(_binary '\\\-\\ӯ\ȯn','wp-content/themes/city-store/inc/customizer/city-store-default-values.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bI\5jU}U`^\?',_binary 'e}k\"\0=\}r\\r\	\5^\3F\)E`疚d','',0,'?'),(_binary '	/R͉۩\\\'[\','wp-content/themes/city-store/inc/customizer/css/customizer-control.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r5L5\"0\9\',_binary 'w\\"3+\\u~e\H\*\D\"و\=x\\','',0,'?'),(_binary 'TYNcR*','wp-content/themes/city-store/inc/customizer/functions/class-pro-discount.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-r\w4dawa1',_binary 'L+\\(ToT\"M{\y\9\ \\{\','',0,'?'),(_binary '\\઄Z\%\','wp-content/themes/city-store/inc/customizer/functions/contact-us-customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '٦\rrQ\0fG\q\',_binary '\-E|\6\cޚ	\\nK{ Jp\\\,\+,','',0,'?'),(_binary 'xy)\\\\eD,\H','wp-content/themes/city-store/inc/customizer/functions/customizer-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\\\_.\'l',_binary '0\hP3\bרk+z\a.\h`f\','',0,'?'),(_binary '	0\雺yd!\','wp-content/themes/city-store/inc/customizer/functions/design-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f\0V\ZT\`\\',_binary 'ӛ}y^>.mr_-,\\*)\r+\\H\\;Su','',0,'?'),(_binary 'ɹ۵\SK$\p\','wp-content/themes/city-store/inc/customizer/functions/featured-content-customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\n\"\"ozy\n\',_binary '\A.+\\N\\9|\0\\\\n\','',0,'?'),(_binary 'bWxC\ɿ\'\','wp-content/themes/city-store/inc/customizer/functions/register-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\&]:d7\3\'k\_',_binary 'Hqǈ\\\\\\\2o0r]w:\\Vj}','',0,'?'),(_binary 'gƦ\\L<\,\','wp-content/themes/city-store/inc/customizer/functions/sanitize-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\&\"(َc\7Bi',_binary '\m\\*\z\\\qg\\\`q\a+\','',0,'?'),(_binary 'H\\Ϝ\\ɄD\','wp-content/themes/city-store/inc/customizer/functions/section-pro-discount.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\()<B\ul[Zx$',_binary 'uEB\\\'uK88iq-m\f\\zN\\\Z','',0,'?'),(_binary 'f_l[$JOm!{+*','wp-content/themes/city-store/inc/customizer/functions/social-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@jUWqk\\\',_binary 'J\rBQX\\\n{?P㸻C\=EE\\','',0,'?'),(_binary '\0j]D!ǢާF','wp-content/themes/city-store/inc/customizer/functions/theme-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\xzl\ԥ:\',_binary 'Vl\\\0T?\\B\\n&\[u','',0,'?'),(_binary '+:0t\qt/Ǎ','wp-content/themes/city-store/inc/footer-details.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z)\ \Z!d',_binary 'i\ĉj(\X\]딅\4\\Z','',0,'?'),(_binary '\cf\\nT+:\GH','wp-content/themes/city-store/inc/jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\԰%Tˊ\pw(',_binary '4 П(,):\rd\8\\\5tDl\\nh\\','',0,'?'),(_binary 'Z\1ݛΤ\7$','wp-content/themes/city-store/inc/js/mystic-customizer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')fg\Z*\g\\\ׁt',_binary 'C/[\0-\8\F\.{\\i\c\','',0,'?'),(_binary '\\^Aߓ\9Kl','wp-content/themes/city-store/inc/js/source/customizer-custom-scripts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n]\-:\\B',_binary 'e5\\읖\\#@u\)ժ\ l\M','',0,'?'),(_binary '\PI\6dzL\\&ɞ','wp-content/themes/city-store/inc/settings/city-store-common-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A\\uB	',_binary '\5d\)\\\\ߖ\rЛM\>1ܫvȹh','',0,'?'),(_binary '\\\hDK\\a','wp-content/themes/city-store/inc/settings/city-store-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G˂g<\rܭu',_binary '\_ҳe\Q0__qr\g\\y=Vy:\L\\','',0,'?'),(_binary '!\OYa3\\r','wp-content/themes/city-store/inc/settings/city-store-tgmp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-;\\fj\',_binary '\f\d\|r˺fKI\Q\\\p?^W\8<','',0,'?'),(_binary 'lN\9\\.\`A','wp-content/themes/city-store/inc/widgets/widgets-functions/register-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n<B/Ǡ',_binary '+4ߘ;\`ϋ\0A\\=S#I\\\\\','',0,'?'),(_binary '\\h\\\nMlp{','wp-content/themes/city-store/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\swY\6\rI%O',_binary 'X.y}.H\\i\G/K=Ρ5XP','',0,'?'),(_binary 'HF΍\"FY','wp-content/themes/city-store/languages/city-store.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '㋻Fh\\wO',_binary 'Ϗ0\\Sh؜X\P\r\\\0\bh\\\kK','',0,'?'),(_binary '%HK:yk\Xa','wp-content/themes/city-store/languages/fr_FR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.w-\\kf\=U	 ',_binary 'G)^ʧp\PJ\)`i\\t\`ZG','',0,'?'),(_binary '2ՎPM=hvN','wp-content/themes/city-store/languages/fr_FR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '񫦝\\f+\Zk\Z\',_binary 'g˭d\<\L0jy3yȬT[','',0,'?'),(_binary '\C|\+pT\\\\','wp-content/themes/city-store/page-templates/contact-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+j\묤j\uJ*h',_binary '\n$\{\\rcF]çA\2={_k:\','',0,'?'),(_binary 'Z7\\g\\\2D','wp-content/themes/city-store/page-templates/gallery-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ԻR~\w\H',_binary '\\}\+\I\\]p\0i(\Mk38\$','',0,'?'),(_binary '=ITgL\\|','wp-content/themes/city-store/page-templates/home-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#`^&M/\s',_binary 'LHva^m\Z\E8#,\\u\','',0,'?'),(_binary 'iIdf\\e\2rA','wp-content/themes/city-store/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\X\K\@\',_binary 'FN\c\Z\\,MUt\nO\\57','',0,'?'),(_binary '5Lk[.\R','wp-content/themes/city-store/pagination.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƙ|Z.w\I\',_binary 'MvH\F[\ <k\H\p\}\}=','',0,'?'),(_binary '\Tdݚej\:\t','wp-content/themes/city-store/plugin-activation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\*5\=2',_binary '\2Q̿M\@7>\\2%\n\\K캭','',0,'?'),(_binary 'f\zda.C\','wp-content/themes/city-store/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?Q#z[\'$\Ei',_binary 'V8O[\f\\H#Uۙ[\Z±eP@','',0,'?'),(_binary 'y\XE5\\n),\\','wp-content/themes/city-store/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '׮j%><l%wV\\',_binary 'F0qa%`zNNbB\r!BHY\\\l\','',0,'?'),(_binary 'W\"䎰[H<Z3\ѓ','wp-content/themes/city-store/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\QXL\/\y\IO\0t\',_binary 'z[x\p\rre[N\^\0s=\\\6','',0,'?'),(_binary 'ޮ.\"1A+\','wp-content/themes/city-store/searchform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@)\\q\%5\r^',_binary '\\H_7fx\\r1&\9\\0x#MQ','',0,'?'),(_binary '\\\/8լ\\nUW','wp-content/themes/city-store/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\\n\Z L4\d\',_binary '\i\G\7a\0\ g#E\\v9&u','',0,'?'),(_binary 'Ɏgg\n=k:\\H\','wp-content/themes/city-store/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\z@4\Ǥ븦',_binary '\\/aV\0i*\Ϧ\dr5','',0,'?'),(_binary '; SӘHlM*\','wp-content/themes/city-store/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\\0\+\\j\',_binary '\PW\X^\\!+\c3 \(Y^\I5\w\Y\','',0,'?'),(_binary '\q*\0ZE\\\','wp-content/themes/city-store/template-parts/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gqj\0t?x,',_binary '\Oq&<\\7g«C \@\','',0,'?'),(_binary 'ЉY֡PuJ|\\\\','wp-content/themes/city-store/woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\+{*\\\',_binary 'u<\\\nx\Ԧ\\\V\Z,O','',0,'?'),(_binary '\>\\<\ q!Io','wp-content/themes/curiosity-lite/admin/css/about-theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-o.\@S\\J\',_binary 'ZĪ\@}\\W\M$\Pg\T\\rz\Z;\c9','',0,'?'),(_binary '\}hFV8}fB\r','wp-content/themes/curiosity-lite/admin/css/custom-editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0 L3\/\\<5b\05m\',_binary '	m|\۝\w^	eK\|eaFQ&d','',0,'?'),(_binary '.4ڀvn\0pj]mS','wp-content/themes/curiosity-lite/admin/css/customize.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\3\=?-Sd-q',_binary '\wG`Bjw?@\	O\D\<','',0,'?'),(_binary '\N\˳I\\yb}','wp-content/themes/curiosity-lite/admin/css/edit.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\(:A.+',_binary '̫ː\;|9\"\{K\\6G瓥G{','',0,'?'),(_binary '\F0&G]\\f\8\\','wp-content/themes/curiosity-lite/admin/js/post-format-options.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\NeX8kwx',_binary '\\\aiR>7\\\G4\\Z\\S8\JǪ\','',0,'?'),(_binary 'p\\\\A4*\k','wp-content/themes/curiosity-lite/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Zq\r՚Y\\{z',_binary 'WL{28*\n\\\Gv\\k2\3w\','',0,'?'),(_binary 'Y~\Biۉ~.\','wp-content/themes/curiosity-lite/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\\7$\1{',_binary '\\nQT\n}q;{MȄt\]ݞm\n`1\','',0,'?'),(_binary '<Hh\\7\\\\.','wp-content/themes/curiosity-lite/content-audio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\jX{z1BQA',_binary '\Un\l\u)n\NKԅ\\\\\˗\0','',0,'?'),(_binary 'TG\e{JQ!.','wp-content/themes/curiosity-lite/content-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ɋ\=\'S\L\K\A',_binary '{cW4\K\]\\6\\eTX^P','',0,'?'),(_binary '\\J\7P\0BX:#}','wp-content/themes/curiosity-lite/content-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ב5sa8t/3\s\',_binary 'A8\\p\\\\Sw\^]*\O','',0,'?'),(_binary '?5\0P\\Ը\t5','wp-content/themes/curiosity-lite/content-quote.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Pg]&\\Q\',_binary 'U\\׵VIgG\Yr\\y(^','',0,'?'),(_binary '`q,G\nlX\','wp-content/themes/curiosity-lite/content-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʲ\Q\D滄\͍',_binary 'C{\(ԑ\\)0KP\+\\JN','',0,'?'),(_binary '\\\`\\\pX/s','wp-content/themes/curiosity-lite/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T*4Nί/\i-T\',_binary 'q\]\"s_#]Ʈ\"\aʐk\k$\Ru','',0,'?'),(_binary '_[\\Y|mԏv\[(','wp-content/themes/curiosity-lite/css/bootstrap.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\\\Z.\~җT<e',_binary 'J.̣\K֚djt\4\\8u\','',0,'?'),(_binary '4I\\R\\,','wp-content/themes/curiosity-lite/css/bootstrap.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K2\\]\H׮h',_binary 'ޔPBbLqB4\=;pmP\n;hBmh','',0,'?'),(_binary 'gܘ^\n6Z\\0Jg\','wp-content/themes/curiosity-lite/css/default-styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7)x*ܵ\5EK',_binary 'B\m閷VNcZ\A\<\&\0\t','',0,'?'),(_binary '\\(|8؞EW','wp-content/themes/curiosity-lite/css/flexslider.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2?\\\\ZWW3	a_\"',_binary 'FmI<26.>\\\r#褋^\0\#˲+','',0,'?'),(_binary 'h\K\40\8%UR\\\N','wp-content/themes/curiosity-lite/css/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\eN\R<u\4jHB(',_binary '\\i\2\A\Z\}c5f7:0\','',0,'?'),(_binary 't\\  Y\K\}\','wp-content/themes/curiosity-lite/css/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\Z𗙰1+h',_binary '\\i\2\A\Z\}c5f7:0\','',0,'?'),(_binary 'ؗ¤l\HL<wC','wp-content/themes/curiosity-lite/css/owl-carousel.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5y8Ξ\G6ۃ\\',_binary 's6\Ax\\\r	}w\Z','',0,'?'),(_binary '\\\z\R\','wp-content/themes/curiosity-lite/css/prettyPhoto.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\y\\n\ \O\',_binary 'X\\\䴏YM@*CQ\\8*0pW86\Z','',0,'?'),(_binary '\0\\\0y\B#3S^\n2','wp-content/themes/curiosity-lite/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fCrXgo}*b>',_binary '~\-p4\\r\\QE\=~\9\\','',0,'?'),(_binary '\n_\-W4','wp-content/themes/curiosity-lite/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\7#,o\\=ia\-q',_binary '^ù\i8\C}nʎ5ģ@pdD\LL\:\8','',0,'?'),(_binary '%\l{v\l\ƕ\Zw','wp-content/themes/curiosity-lite/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\<k\O\	\\,\'\',_binary '\Y.e{Zܾ9b\"JUG\\r1\YL\','',0,'?'),(_binary '\|fnj\Z\0\\T','wp-content/themes/curiosity-lite/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\n\rcϸ?9',_binary '\j%-\\\!\ԟwfT-&\\}?\','',0,'?'),(_binary '\	u\r\\P,l','wp-content/themes/curiosity-lite/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '߰/m\	\X\h\\',_binary 'raӧ0G\\n\cL]s׫:wHJ\','',0,'?'),(_binary 'j_Xd =\GֲDM\"','wp-content/themes/curiosity-lite/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KZ\\H^P:\\',_binary '\f\Nh~\r}A\|IC\wE','',0,'?'),(_binary '^\\.w\n;\','wp-content/themes/curiosity-lite/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SQ\\_\n\ck\',_binary '\0c5k>\Uڭ8\\[\uh\pH','',0,'?'),(_binary 'V\k\\\|C\\*\','wp-content/themes/curiosity-lite/framework-customizations/theme/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary 'Dn\\\@K\\Feo','wp-content/themes/curiosity-lite/framework-customizations/theme/manifest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ľX9\\\0,WL',_binary '\\ZK\a:\4-\\O2l\\#\^','',0,'?'),(_binary '\413\Z9+z|N','wp-content/themes/curiosity-lite/framework-customizations/theme/options/blog-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ኌ\\\<AVZ_',_binary '\5yD\\dJ鹏~[_	Ywz]\W','',0,'?'),(_binary 'c\\\{d\eR>','wp-content/themes/curiosity-lite/framework-customizations/theme/options/breadcrumbs-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '],maQU\F\\\(g',_binary 'fɬԱ|\Wn,/vQ\\\|','',0,'?'),(_binary 'F\%h\"A-','wp-content/themes/curiosity-lite/framework-customizations/theme/options/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\2<Y\݃',_binary '\V@#۞\\p\\0?xGp͟\\ \\','',0,'?'),(_binary '\D\KΎQg\w','wp-content/themes/curiosity-lite/framework-customizations/theme/options/footer-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C*h$Y\\yߒ\\h',_binary 'c\\rl\r\\;\\!m?\ \"(CۆX7','',0,'?'),(_binary 'q\\\<їI\','wp-content/themes/curiosity-lite/framework-customizations/theme/options/general-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ƌj\\DKW\',_binary '\rgȶ\|vI\:O\pY\\'f\\g','',0,'?'),(_binary '\\7b^|4|\0','wp-content/themes/curiosity-lite/framework-customizations/theme/options/header-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\1\';1wXR',_binary '~dл@\\=8{\3\0^v\2^','',0,'?'),(_binary 'H6;e7','wp-content/themes/curiosity-lite/framework-customizations/theme/options/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary 'FlV#\\ˢ','wp-content/themes/curiosity-lite/framework-customizations/theme/options/posts/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary 'GY\\|d','wp-content/themes/curiosity-lite/framework-customizations/theme/options/posts/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\䏌lG	3G\\',_binary '\"|4\jN\Fʣt\=âﱈ','',0,'?'),(_binary '}_\r@uVc\T','wp-content/themes/curiosity-lite/framework-customizations/theme/options/posts/post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<%qL\Ͼ\"_\',_binary 'OJڏ	3VC\xkOZP-^K0*','',0,'?'),(_binary ']zh08]\\y-\.','wp-content/themes/curiosity-lite/framework-customizations/theme/options/secondary-header-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L \r\h*P	LE\',_binary 'Q\Zʢ8ulWTN\J\"}\{\\\\','',0,'?'),(_binary '>\T>41&\','wp-content/themes/curiosity-lite/framework-customizations/theme/options/sidebars-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a0qDTÍؘ',_binary 'gk\E[D\\j: ~V{\\(\?F>e','',0,'?'),(_binary 'r-~\dEK))N/','wp-content/themes/curiosity-lite/framework-customizations/theme/options/social-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2K.Y4Y(\0(s',_binary 'BW\0\\\\\\{\koe{h\\\N܉','',0,'?'),(_binary 'S\Z\\(9\F^\','wp-content/themes/curiosity-lite/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VE ϙ/b\騅',_binary 'b_^O\_\\Z$3\\\\\-\','',0,'?'),(_binary 'Ċ\SC5\5r!','wp-content/themes/curiosity-lite/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\\\KVm`\Z',_binary 'jz\"¾71i9\\3nUǕ','',0,'?'),(_binary '\\\\$\\\\`;\\','wp-content/themes/curiosity-lite/images/1c.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\t7\j\'}',_binary '!۫\s`\YQdO\n^U\]mM}','',0,'?'),(_binary '$!\\'!B\\\27','wp-content/themes/curiosity-lite/images/1col.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ᐇm\r|\r',_binary '\	hP\lh̶B/\\\E.\\"cj','',0,'?'),(_binary '[\SXW{[','wp-content/themes/curiosity-lite/images/2cl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rJt\0\Z@\&\'d',_binary 'j\75\Yh0j\h|\\\n\','',0,'?'),(_binary 'uӂ5#\qB^[)+\','wp-content/themes/curiosity-lite/images/2cr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8mP\1CO|RUvaS\n',_binary '_e\P\acl\/\Id\%w','',0,'?'),(_binary '\d,\0(P\X\T','wp-content/themes/curiosity-lite/images/bg-body-pattern.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	_t֏\N',_binary '\9S\\ꈏ\\ZYMn\v>4E7h%\As','',0,'?'),(_binary 'EQ	\&/:','wp-content/themes/curiosity-lite/images/bottom.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h=`.5\'|UmhB',_binary '5ض,\-\\\\nƉ\\\-%Bo\\rZ','',0,'?'),(_binary 'x˗\\dJ\\\','wp-content/themes/curiosity-lite/images/calendar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cz\?\;\w',_binary '\\\Z\Z<\}-\x\Z*P݊ \gB','',0,'?'),(_binary '\)	̀\˴\\','wp-content/themes/curiosity-lite/images/chosen-sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\X$PUD\49\W}q',_binary 'z|6\7 \\\f\u{)\~\Zx1\\qKV','',0,'?'),(_binary '#\~\]T\\ww+','wp-content/themes/curiosity-lite/images/chosen-sprite@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\!\\Tl\\V',_binary '+\Ҷ2\{L\\}\Tٽr\\y^rd\\','',0,'?'),(_binary '|U_\\\\<\','wp-content/themes/curiosity-lite/images/content.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\L\Ew[)',_binary '#m\j9\K\`O#*$~\\ݮ-(m\\-','',0,'?'),(_binary '.@7\	IHnX\k\','wp-content/themes/curiosity-lite/images/help.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q5jl)\r)',_binary '\\-\0~k\H?p/IӴ\\-\f\.Q','',0,'?'),(_binary 'B\\f-IC\,\TCg','wp-content/themes/curiosity-lite/images/icons/credit-cards/amex.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KifC+~c\\',_binary '>2L\v:\NnDu\R^_\_Sp!V\L','',0,'?'),(_binary '\p\v\\\kYk\','wp-content/themes/curiosity-lite/images/icons/credit-cards/diners.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\\vܰT\S',_binary '.9\\\!.\+\\60ABJ\d\Z\Z; S\','',0,'?'),(_binary '\ھ_f^\\R','wp-content/themes/curiosity-lite/images/icons/credit-cards/discover.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!\_\)t0B',_binary '8!bWmrzu)4D\\$Ԙ	И\\u','',0,'?'),(_binary '\b\nרdϔ^\','wp-content/themes/curiosity-lite/images/icons/credit-cards/jcb.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\r-\x\%\]\)\\',_binary '`\S\`\I\1\jG\JpYiF\\\\','',0,'?'),(_binary 'zMlp\>{','wp-content/themes/curiosity-lite/images/icons/credit-cards/laser.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'awna\˨-',_binary '<Ao\uǨ\H\@\ZYb̴ҵq\OJ','',0,'?'),(_binary 'o\ou\\LGl\','wp-content/themes/curiosity-lite/images/icons/credit-cards/maestro.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\8)hu\/h\',_binary 'DvmQEo0\\\z\\D\\X','',0,'?'),(_binary '>!+\z\\ io&','wp-content/themes/curiosity-lite/images/icons/credit-cards/mastercard.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\H\0\"\\\\J',_binary 'G\\C?Uʓh\n2c,|\o27S','',0,'?'),(_binary '\\M3\fu,r{\','wp-content/themes/curiosity-lite/images/icons/credit-cards/visa.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LevqKL}\\J',_binary '!\$\\\y=.ɚ|8|S,hp','',0,'?'),(_binary 'Y\Mx\CnS\','wp-content/themes/curiosity-lite/images/icons/edit.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\ƻ3a\\+',_binary '8RO\2BU\V@Ulu\\0V\a','',0,'?'),(_binary '1,;8\jP\>\\"','wp-content/themes/curiosity-lite/images/icons/loader.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Α\\\\ʹ',_binary '<CA}\ȥMM]tsV\\','',0,'?'),(_binary '\C\YSa\"<','wp-content/themes/curiosity-lite/images/mb-1c.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\t7\j\'}',_binary '!۫\s`\YQdO\n^U\]mM}','',0,'?'),(_binary '\'A\\\=X\','wp-content/themes/curiosity-lite/images/mb-2cl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=_p\\ϿzEf',_binary 'G뱇:-Yh쳲UJǬ-k\Mf\','',0,'?'),(_binary '\"\vxO\','wp-content/themes/curiosity-lite/images/mb-2cr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f~\\3\wrǚe',_binary 'IP\in\\ek:4Zlӡ','',0,'?'),(_binary '{\e R\G\\','wp-content/themes/curiosity-lite/images/mb-default.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=iނ5!',_binary 'p(:U9c\.eo\\TWQbMeJ','',0,'?'),(_binary ']QJֳ̞.','wp-content/themes/curiosity-lite/images/next.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ﴬJ\v6$b	',_binary 'y0pa\Z\G4肋P<mp11̕\\bF\r','',0,'?'),(_binary '\)S\ڐwV','wp-content/themes/curiosity-lite/images/no-image.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lq)\n\!\\0^3',_binary '\NWȋ@\.b˼PP~:⡂0!\\\','',0,'?'),(_binary 'n8\\P\\Z\\{&\','wp-content/themes/curiosity-lite/images/placeholder.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/\1I\cf',_binary '\{㿓\ٶ! 8({*x+zy\\a','',0,'?'),(_binary '\\YS\rc\\$\t','wp-content/themes/curiosity-lite/images/prettyPhoto/default_thumb.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>|y0WMQ=z^m]',_binary '\ŃPg2\h\O 㷽x0Y\Wtm]\','',0,'?'),(_binary 'F\r`\r/$','wp-content/themes/curiosity-lite/images/prettyPhoto/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\iu\=\',_binary '\\b!\B\b\\"wqsMb3\o\','',0,'?'),(_binary 'q\Sbm\\\^8t','wp-content/themes/curiosity-lite/images/prettyPhoto/sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hm\H0M?,B\',_binary '\\\\[yToq\?q}duNNA','',0,'?'),(_binary '>\F\2\-\R','wp-content/themes/curiosity-lite/images/prettyPhoto/sprite_next.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]g{{=/\\`',_binary '\n_EH\Qާ\EM=V&i.\Z','',0,'?'),(_binary '9V=17gzѧ3*','wp-content/themes/curiosity-lite/images/prettyPhoto/sprite_prev.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\}\\\0Af\@$ŵR',_binary '53X)\>OAA\:\ A\U\','',0,'?'),(_binary '!#$\x,\\㸄ٰ','wp-content/themes/curiosity-lite/images/prettyPhoto/sprite_x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&uY\"[\\>4˄',_binary 'g0\{	`\m\Y%\-u\!\XO','',0,'?'),(_binary '|ME\kb4}\e\0','wp-content/themes/curiosity-lite/images/prettyPhoto/sprite_y.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	nGLF\x\!',_binary 'Aໍ{dWj\se1AƸK\֎\K\+2','',0,'?'),(_binary '\G\\V\dg%','wp-content/themes/curiosity-lite/images/prev.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G_=}I^4:Yɔ\',_binary '\\\\\n@k!I\\r)o{s\','',0,'?'),(_binary '\\cq\k\~','wp-content/themes/curiosity-lite/images/select2-spinner.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{vm_\\I\\\\',_binary '\r鋕1(\pKH\KBY\eB','',0,'?'),(_binary '[\\VNMǫm\','wp-content/themes/curiosity-lite/images/select2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',v\ SW\aZI\0',_binary '\\\Z\S\=OnSmo }','',0,'?'),(_binary '\rq]ǬJ2X#\0','wp-content/themes/curiosity-lite/images/select2x2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\\b\̩',_binary '0\)Lq:ӸP\q\\+\\G\Ts|','',0,'?'),(_binary 'cC\Z>m\.!','wp-content/themes/curiosity-lite/images/top.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\򽫴\\*\9\\0\_b',_binary '\\I-b::\\y\\5\ccs\\[','',0,'?'),(_binary '&\J\<4\[	','wp-content/themes/curiosity-lite/includes/about-theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Bnd؊xsR~\\\',_binary '	\\\\ߥ\$\Y>\\q!\s\\u꺭','',0,'?'),(_binary 'A:JK?r\48Z\\','wp-content/themes/curiosity-lite/includes/child-plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0~a|\n\'i\\',_binary '5D\:\\P7~Y\\0\qCj4','',0,'?'),(_binary '\n\\!K\$x\9\\','wp-content/themes/curiosity-lite/includes/class-tgm-plugin-activation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ǈj\\kK\\J',_binary 'm\s\\Y\ns\B\UNV@-\\!g\','',0,'?'),(_binary 'J\\@\\S\','wp-content/themes/curiosity-lite/includes/footer-function.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KG\Z9mG#\bP3',_binary '-|\\'\\r:\rx\pS\ɁRA','',0,'?'),(_binary '*`hp\\\\Al','wp-content/themes/curiosity-lite/includes/header-function.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@86qq$١	\G`[',_binary 'Ő?;z\M\:5Tz\#w\o\|','',0,'?'),(_binary '\8-\\7l\5|','wp-content/themes/curiosity-lite/includes/theme-function.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oU`g\\\5',_binary 'dޓ@0j![O\\\MY%qJ3&^','',0,'?'),(_binary '\!IkI\TG_\O\','wp-content/themes/curiosity-lite/includes/theme-init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \\0øb\\\',_binary ',}/\+p/Nu#[fͷ\\s\ZɲTx+6','',0,'?'),(_binary '/\\D\e\w\Q\\','wp-content/themes/curiosity-lite/includes/theme-scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J4mp>	%',_binary 'Uڤ\ͬ\(\\\q\]~\\TO\\\','',0,'?'),(_binary '	\!.\\U\ZD','wp-content/themes/curiosity-lite/includes/theme-sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YPRzH\',_binary 'DAZk\\ۄs\\3\\\Q\8N','',0,'?'),(_binary 'K\LZ.m=\O~\','wp-content/themes/curiosity-lite/includes/theme-styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[DPc84ZxR\',_binary '(Lhs\VϿ[i.u`ש\\Z\\\j','',0,'?'),(_binary 'W\P_QVX#%\','wp-content/themes/curiosity-lite/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k¨#4mR8rJ׸',_binary '\#[>\m\~H\\\'E#2\&e~#xq','',0,'?'),(_binary '\\EξD\\bS\\','wp-content/themes/curiosity-lite/js/bootstrap.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S)U\MO?y,\r\'',_binary 'ahL\\\\L>+\cٰ=GK}oož\P','',0,'?'),(_binary ':%y0#\\\{','wp-content/themes/curiosity-lite/js/bootstrap.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\ܑb>8\',_binary 'Q\(mk<T\n\^t\KPҸ\f','',0,'?'),(_binary '\©=@of<4','wp-content/themes/curiosity-lite/js/custom.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '׀7\J2?d\Z\',_binary 'I/ɒ\?\|5 `\ree\,9\\\^','',0,'?'),(_binary '	p\P\$\e\?z','wp-content/themes/curiosity-lite/js/jquery.flexslider-min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\mu!\"04',_binary '\zFf)y$\\:鞲\(\?\K','',0,'?'),(_binary 'r\\hbZJ','wp-content/themes/curiosity-lite/js/jquery.flexslider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\\^\ָ\-,',_binary '\^;vf5\\fu!\\#W8;\\0','',0,'?'),(_binary '\rbXlyť9~D\','wp-content/themes/curiosity-lite/js/jquery.prettyPhoto-min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rQG(v\I%1#',_binary 'p\<\A\\ش\ZK_\Z\S\\Zz⚖j','',0,'?'),(_binary '	@*?m\H','wp-content/themes/curiosity-lite/js/jquery.prettyPhoto.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\\yKu%\\\',_binary 'p\<\A\\ش\ZK_\Z\S\\Zz⚖j','',0,'?'),(_binary 'R\\| \GrC8\','wp-content/themes/curiosity-lite/js/marquee.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\_.\F	(U',_binary 'SI\>\}q\7te!\"-n','',0,'?'),(_binary '\?v\(\\E\\w','wp-content/themes/curiosity-lite/js/owl.carousel.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\%\ō4k \7ox',_binary ':\.\p\<J\Z\|\i\','',0,'?'),(_binary 'ٸ]ڼp]\ɦ\','wp-content/themes/curiosity-lite/js/owl.carousel.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\x<W}\\',_binary ':\.\p\<J\Z\|\i\','',0,'?'),(_binary '\\\\\#\FÓ\C','wp-content/themes/curiosity-lite/languages/curiosity-lite.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ϝ\<\6/m\"',_binary 'z0\\`_X\\v\0\zсs\\\','',0,'?'),(_binary ' 䪃\0s\Z?,~8','wp-content/themes/curiosity-lite/loop.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\NE{\\|\'',_binary 'm\\[$\}F\\\J\&1p\f\0','',0,'?'),(_binary 'CK2>&(\r\a]p\','wp-content/themes/curiosity-lite/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R<f(vG\1\',_binary '\\%Jj\^c\G\i*y\(]咃c\\Խ','',0,'?'),(_binary '\4\#;(maT\\','wp-content/themes/curiosity-lite/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|3kx\rĖS\\',_binary '#o\\\D2Y\\"\H.!\S','',0,'?'),(_binary 'D9[Qm\\\\','wp-content/themes/curiosity-lite/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FFT\"\O6bN\'',_binary 'ٚ\%\\~jE\ss\\\Ą\\\JcA','',0,'?'),(_binary 'a⺫\\\zK\\M\','wp-content/themes/curiosity-lite/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'^]\fm\e\]H',_binary '\.@^R؛\J|\+\K9B>qz]qt\','',0,'?'),(_binary '\7p\Z8=Ptw	N+','wp-content/themes/curiosity-lite/searchform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.laϡ.S',_binary '*a\\U;(Z\ \\\d\SbÖ\\9','',0,'?'),(_binary 'T\p\\o&}\]\\\\','wp-content/themes/curiosity-lite/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\d\X\8x^Epy',_binary 'GՈ\bytQM\\\\8#\e4,\\','',0,'?'),(_binary '\kx_r]\1\\\ib-','wp-content/themes/curiosity-lite/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r+\!\~\',_binary '{11\Ȏ\\^S\\Z1\թC/A\A','',0,'?'),(_binary '̀B9\"㽥i+\|','wp-content/themes/curiosity-lite/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZIp\Ki\r\"1\]',_binary '&޵\3+*m	zC΍hU\d\e','',0,'?'),(_binary 't\0\\.8\?','wp-content/themes/idolcorp/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\_*O\\6E\^',_binary '\_\W\"N_tѴ\:I\Z=\N\\\','',0,'?'),(_binary 'qS\mt}G\','wp-content/themes/idolcorp/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\G\dNW\\',_binary 'ِTt@.\\\\\b*=8\','',0,'?'),(_binary 'f\cs\7\xx\c','wp-content/themes/idolcorp/author-bio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ٍ\\Z0mI$',_binary '\*\\\Qx*w}\0/,\\q','',0,'?'),(_binary '\1\\w\','wp-content/themes/idolcorp/author.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!뻛wlhR}',_binary '\4+36v[;A\\\ʉyɔ2\','',0,'?'),(_binary '_2]\NI\aS','wp-content/themes/idolcorp/category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z1i[\\=\du\*',_binary 'Z$:#u\r\n\1=\03\У\\в?','',0,'?'),(_binary '}=_\kj\uDNRT','wp-content/themes/idolcorp/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ԇ\ns!\\~\n',_binary '{p*\)WU9$&\qn\\Ǘ8','',0,'?'),(_binary '\zufƘ\E\','wp-content/themes/idolcorp/css/bootstrap.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\rM2\\%\\',_binary 'Iu7;\\)2\\\ʕ+ۑ>M\Q٤r\','',0,'?'),(_binary ')7VvDkdW\OO','wp-content/themes/idolcorp/css/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UbGb:Ym',_binary '\\gc\\	Y@}~yڜ)\\WsվH\','',0,'?'),(_binary '\c-a;D\\\\\H','wp-content/themes/idolcorp/css/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|Ĵ;8\Otl',_binary '\a\F\}>\nb\PT\Ŀ\8?Ѷ','',0,'?'),(_binary '\\0Y^\4j\-$G\r','wp-content/themes/idolcorp/css/generated.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\\]\p\\rp\QM',_binary '<\ݫ\Pxr\\\nL\(\0E߾\'W','',0,'?'),(_binary '\\\	\W\\\\g}','wp-content/themes/idolcorp/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fCrXgo}*b>',_binary '~\-p4\\r\\QE\=~\9\\','',0,'?'),(_binary 'F\\Sv.l|ͪη6','wp-content/themes/idolcorp/fonts/Genericons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '→\(\\7kj',_binary 'ɞ1X\\*\*yh\s','',0,'?'),(_binary '\ɾ6 h&9\\R\r','wp-content/themes/idolcorp/fonts/Genericons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӐJG(5h\Kgs',_binary 'Ä@\\Pw*\'0M\'D۝c1חd\\','',0,'?'),(_binary '\\.\>l\\n','wp-content/themes/idolcorp/fonts/Genericons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&tw\4Љpc$',_binary ';=LV|,8\Tg0W\N\QA@kC@\','',0,'?'),(_binary 'rsfEޡ\\\w','wp-content/themes/idolcorp/fonts/Genericons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's/\n]d\\z\?',_binary '\*\SW\.\~5t=\\\V\p̦\','',0,'?'),(_binary '	ij\GA\\\\\(X','wp-content/themes/idolcorp/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\7#,o\\=ia\-q',_binary '^ù\i8\C}nʎ5ģ@pdD\LL\:\8','',0,'?'),(_binary '\&0dz\\','wp-content/themes/idolcorp/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd_\5b.qGC\',_binary '\Y.e{Zܾ9b\"JUG\\r1\YL\','',0,'?'),(_binary 'G\9M=^\-','wp-content/themes/idolcorp/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\n\rcϸ?9',_binary '\j%-\\\!\ԟwfT-&\\}?\','',0,'?'),(_binary 'D\\ɿcw\\\)','wp-content/themes/idolcorp/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '߰/m\	\X\h\\',_binary 'raӧ0G\\n\cL]s׫:wHJ\','',0,'?'),(_binary ':ɵ5E,Ը\qG[\W','wp-content/themes/idolcorp/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KZ\\H^P:\\',_binary '\f\Nh~\r}A\|IC\wE','',0,'?'),(_binary '\\fBai7\','wp-content/themes/idolcorp/fonts/glyphicons-halflings-regular.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\tfe9 F\',_binary 't\a±\\0ӫIDv2u\\\\0\\\+T','',0,'?'),(_binary '#3\d (XLWZ','wp-content/themes/idolcorp/fonts/glyphicons-halflings-regular.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!Fhey#-\e[',_binary '\$\6`\|y+\^	8c%k\','',0,'?'),(_binary 'A\\{ym)V&\/3\','wp-content/themes/idolcorp/fonts/glyphicons-halflings-regular.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ዿa*.Cq/N',_binary 'Iٖ\KJ\"\tϭ^\\b_[#f\K:O)g','',0,'?'),(_binary 'Ǝl\N*','wp-content/themes/idolcorp/fonts/glyphicons-halflings-regular.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'r2U\X',_binary '3u2;Wm\\j\ۻ\\"\0!4h0l:','',0,'?'),(_binary '\$#\\v$\B\\\','wp-content/themes/idolcorp/fonts/glyphicons-halflings-regular.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D4mi)z\d\:\',_binary 's-N=ipf\7{\\άTO\\\@\\x\<X','',0,'?'),(_binary ' \T͌\<\@m','wp-content/themes/idolcorp/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\b͖a:\PpN',_binary 'v\\>|uOS\\\Ȝf_ucQ\/7\'}L=','',0,'?'),(_binary 'aKihG1\\1\\','wp-content/themes/idolcorp/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\@@\ҧ\\D	\',_binary '@\\v4қqv\\'\-\\\g(ѯ','',0,'?'),(_binary '$\\J5G\]\\ݍ<','wp-content/themes/idolcorp/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YL6\\&`PFGsN6',_binary ']\\yڀ\\L\-ax\\\N\Z\x~|\\8\','',0,'?'),(_binary '9\\')\w4V\0s\Gj','wp-content/themes/idolcorp/images/apple-touch-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DpjL(}9;ي|',_binary 'K\*A\s\\U@\tq\r +J','',0,'?'),(_binary '\x:z4\\\T\n','wp-content/themes/idolcorp/images/best-theme.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6b\0iwt	FS',_binary '-\H7#Fg\\\JΠc;uvzg,T','',0,'?'),(_binary 'x\\-nO.F\','wp-content/themes/idolcorp/images/blog-full.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6b\0iwt	FS',_binary '-\H7#Fg\\\JΠc;uvzg,T','',0,'?'),(_binary 'OE*}a:\ɞ','wp-content/themes/idolcorp/images/call_to_action-1.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\j\\!-3%',_binary '\ѭ\\]\0l/\\\\\\l䥍x1\6\\','',0,'?'),(_binary '9OX\r\ptLI	','wp-content/themes/idolcorp/images/call_to_action-2.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Pw[I\\ZqT޷',_binary '\\ȝ\r%R\SСv\\ܪ','',0,'?'),(_binary 'Iy\f\4\0=\za','wp-content/themes/idolcorp/images/favicon.ico',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\>\'А˂\"',_binary '|+*k	kV[\\\˾T?77PPe0','',0,'?'),(_binary 'h&\SBF\\R','wp-content/themes/idolcorp/images/noimage-120x120.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U;\\\rَ\ma]',_binary '&H7\\"^{uTM)eg2dwptC','',0,'?'),(_binary 'i\PFk\\xt<(\','wp-content/themes/idolcorp/images/noimage-120x150.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H.\!!̂_YN',_binary '_\-\nꄵe\nf\\>\\̃~','',0,'?'),(_binary '\\T*g^M\\\ c','wp-content/themes/idolcorp/images/noimage-263x170.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž.l\\?>\k',_binary '9c\\\>\\:My+\\'$h\','',0,'?'),(_binary '`v:\9\Cg','wp-content/themes/idolcorp/images/slider-image.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a۽\\\&tBA5',_binary '0!E튏#\rJ\s\ip9\\t+\\','',0,'?'),(_binary '<4yvsC1\\\','wp-content/themes/idolcorp/images/slider-img.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\Np s-?v',_binary '\e(\\E\(H\R\X5APw	','',0,'?'),(_binary 'H&\I\sH\o\r\','wp-content/themes/idolcorp/inc/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3{\c\U\gAs\O',_binary 'У0E=\e13J(\񾲱\','',0,'?'),(_binary '\ڃ;f|\Ϲg)','wp-content/themes/idolcorp/inc/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\V\\	\\K|\\'\',_binary '/\W	Se\\"4\^?\/\\'b\_#t\','',0,'?'),(_binary '\mkjsn\cQ','wp-content/themes/idolcorp/inc/idolcorp-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\k\P.\9[\',_binary 'ϒ!\\C<\\謵ގ	ʫkb','',0,'?'),(_binary '\\r\r5\"\\*','wp-content/themes/idolcorp/inc/idolcorp-widget-area.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\dΘfh\U鎬',_binary '1J=\57\\+9r\xfh&\\','',0,'?'),(_binary '\I(\;g0','wp-content/themes/idolcorp/inc/jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$O1ԛu-',_binary '`!q\ϻI\7EH8ݯZ4\\\IU0r','',0,'?'),(_binary '3p\/\cyu\:9t','wp-content/themes/idolcorp/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@;G\ݽg',_binary '\r\ߍ\\\\{}n*ֈg\\fQ\','',0,'?'),(_binary '`5HgN\"kCi','wp-content/themes/idolcorp/inc/widget/idolcorp_contactinfo_widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tV<L}>h\\y',_binary 'lw$6\!&M\\\c\\Z\\\\cA','',0,'?'),(_binary '\	\3&T\\\+\\\','wp-content/themes/idolcorp/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e`\\[}\\\gF',_binary 'R0B\\WdW\\\\\N0(jPt`L ','',0,'?'),(_binary '|݀a\\+rp','wp-content/themes/idolcorp/js/bootstrap.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZD\u\Z>\}*]ٮ\',_binary '	\(G0Z\\qQw\\`\·','',0,'?'),(_binary '7r\r|U\\8','wp-content/themes/idolcorp/js/custom-scripts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\Q,+\}60',_binary '\>D\0g\mĲ_5\\\Ï\\\r\','',0,'?'),(_binary 'T\恈p,y\0c|','wp-content/themes/idolcorp/js/html5shiv.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h\@K\\ڳ\',_binary 'h\X\1\"̵\\Ԃ\\Q\C.}2-\','',0,'?'),(_binary '\'FSqq\\rir\̓','wp-content/themes/idolcorp/js/jquery.bxslider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\ՃkT_\\',_binary '\L>}^\{8j\\C<츌nm]','',0,'?'),(_binary '$U\\ؚY~\\','wp-content/themes/idolcorp/js/jquery.nicescroll.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\	oZ\\j\\',_binary 'C9\\e\+@H򺻬\\\\\\\}\_EL','',0,'?'),(_binary 'pl\WNl\\\\','wp-content/themes/idolcorp/js/jquery.nicescroll.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h\i~\@\\',_binary '-\h1D]I3>P#F\\'J\@\','',0,'?'),(_binary '2\j\\Z\Y{\"i$\|o','wp-content/themes/idolcorp/js/respond.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\*?\\\9@\',_binary '\r\{Ztx\ZA7\R!!琏B˔  p\]','',0,'?'),(_binary 'l˭\"4\F\8\@i$h','wp-content/themes/idolcorp/js/respond.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J=Iܐ\\"\\'',_binary '\n٠Z\=f\'\7TQ՚\٧ks/\rS=','',0,'?'),(_binary 'r(D:\ﳆ\GKQ','wp-content/themes/idolcorp/languages/idolcorp.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~*zV7a\',_binary ').6\5\nFB\\r?C\\\ύF>','',0,'?'),(_binary 'NLv+HR<','wp-content/themes/idolcorp/page-templates/contact-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'exENbu\\na\n&\Z',_binary '\\ \G$*J\<΃)\\0\\0\o{\','',0,'?'),(_binary 'RsW\FK\̕','wp-content/themes/idolcorp/page-templates/content-aside.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'všpZ@Σ#\o',_binary '\q|&A4Y\\$~\\\\\7','',0,'?'),(_binary 'q\i}\I\Z\|q7X\','wp-content/themes/idolcorp/page-templates/content-audio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wN\\?\0D\',_binary '\rE\\\lS8КR;\T؂\ȁ','',0,'?'),(_binary '\+\C\bW7\','wp-content/themes/idolcorp/page-templates/content-blank.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z\\H\\\a\',_binary '\'\*;ѬL+<\nU]\́bfE$ ','',0,'?'),(_binary 't}1\Nf\,:','wp-content/themes/idolcorp/page-templates/content-chat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ӌ_9ƪ',_binary '`\\nD\J\\ϻ\",\\'\\9%','',0,'?'),(_binary '\{|)8q\\','wp-content/themes/idolcorp/page-templates/content-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A3\fR\H*w?',_binary '\vrA\'\w櫆\\O6\3\$)-','',0,'?'),(_binary 'U\rb$(\dP\T','wp-content/themes/idolcorp/page-templates/content-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6\'ԩ\k;\}',_binary '\>`1fa^3\\/u\Gm\T\FMn\','',0,'?'),(_binary '\%\\\Z>2','wp-content/themes/idolcorp/page-templates/content-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\cy>H醊\V]',_binary '\k\U\Ŧ80\(p\\\\r\\\ӹ','',0,'?'),(_binary ',>6:6\d\\','wp-content/themes/idolcorp/page-templates/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\yVS\z9f',_binary 'z>T6j4yQl4aP\GJ\Z2us3','',0,'?'),(_binary '8e?\*[\\((\','wp-content/themes/idolcorp/page-templates/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FZ\n)\6\Ϝ',_binary 't>\\#\ζ\"b\\p_9VUęi','',0,'?'),(_binary '3\ag-Kge\;f','wp-content/themes/idolcorp/page-templates/content-quote.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?O2\\\|ec',_binary 'yg\'>l\M\g\z՟5Mx\\\G\','',0,'?'),(_binary '\\\\"\\\\r\0*h`','wp-content/themes/idolcorp/page-templates/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\M\[rpOD߸',_binary '֕k\xBF\!*O+\\\','',0,'?'),(_binary '>\(\\\<\b׸\','wp-content/themes/idolcorp/page-templates/content-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6`fŷ\N',_binary '\#\\\\!A\q`I\6','',0,'?'),(_binary 'm6Eb[$?`Ar','wp-content/themes/idolcorp/page-templates/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\0gQ\-\w2D=',_binary '#!㎅H#x\\	\\\"W^ã?','',0,'?'),(_binary 'DMA\\'#\','wp-content/themes/idolcorp/page-templates/home-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\\N\E9\z\'\qֿ',_binary '\\nt·kىNu/r\r\1o 1','',0,'?'),(_binary '\\Y\5#	}\0\','wp-content/themes/idolcorp/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0!xU[\:1',_binary '?\+o\r[]i!\$cYA\'X.kn\','',0,'?'),(_binary 'zx$iO\:QJ','wp-content/themes/idolcorp/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J](\\\F\0\#Zq',_binary '5_L\n~\al?ac~h\8#~Y\\','',0,'?'),(_binary '\\c\4O\$\\B','wp-content/themes/idolcorp/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{7!lFx',_binary '\B\\E*#2\Q͗M3\\0i\\','',0,'?'),(_binary '\Z]\ׅN\','wp-content/themes/idolcorp/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KJ\G_\\\'	dk|3',_binary 'Ra9\;\0~\ \ݺ\xd_F','',0,'?'),(_binary '=H\T<J\','wp-content/themes/idolcorp/sidebar-left.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\qx\\h+W',_binary 'f 	M=z\\\\re`1\^:\Re\','',0,'?'),(_binary ']fݞcM`\|Բ$.u','wp-content/themes/idolcorp/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tf\r7x\:\',_binary '\\2\\\\sn	\nZ\I9§̔Zz\0R9','',0,'?'),(_binary 'Bm\n/fC\naʦk\\','wp-content/themes/idolcorp/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\t\/\7$?\\',_binary '?j\\\\R~ʶ1-(\\\\EI#\','',0,'?'),(_binary 'I\:O,\r\j$e','wp-content/themes/idolcorp/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̃\۞sTJaUVG',_binary '<v\^\}Yl#l\~]\\|t>W4zM>','',0,'?'),(_binary 'ոAbG\B2','wp-content/themes/idolcorp/tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A{A\c1\O2^{',_binary '&\Vϲ\#Yv\\\\\K\9ˑ>&\\','',0,'?'),(_binary 'T\${\ޯ@q\Z\nԴ','wp-content/themes/idolcorp/themeidol-customizer/class-wp-custom-customize-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]/%\\04ݟ',_binary 'wY9e\\0ZM%\\\.V','',0,'?'),(_binary 'q:f\x<\\0q','wp-content/themes/idolcorp/themeidol-customizer/css/admin-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iԖ@s& ҟ\/',_binary '\\j`\ZD\0\G\Z\\\9\h\0\6\-\','',0,'?'),(_binary '	\NeH\\iIW7','wp-content/themes/idolcorp/themeidol-customizer/images/1col.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Si\K]1\F6\{8\">',_binary '\pG\hƊeǽ~\Ut\T1V','',0,'?'),(_binary '\66X[Ӄ	\','wp-content/themes/idolcorp/themeidol-customizer/images/2cl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~5\K<\c\/C\',_binary '\\>k\\,䆦N}n0\o`\j\z?M','',0,'?'),(_binary '\ȍ7É\\o\\"o ','wp-content/themes/idolcorp/themeidol-customizer/images/2cr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '459b\;\xYm',_binary '\5ӈV\M?\\\6Pﱴ\A\j','',0,'?'),(_binary '[QtV\\U-/A','wp-content/themes/idolcorp/themeidol-customizer/images/3column.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\Tس\{;\\"<',_binary '\\yeC9|`5-3 ono5\Z%\r>','',0,'?'),(_binary '~=]\I=RTesU','wp-content/themes/idolcorp/themeidol-customizer/images/4column.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(I씻H\\\4ܸ>c',_binary '3!H֕F;+\q\\\G','',0,'?'),(_binary '\\ݮ\n)	!\\','wp-content/themes/idolcorp/themeidol-customizer/js/admin-custom-scripts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%\,{ĜҌ\\w',_binary '\` 聞\][\޼\o\!&(\'&','',0,'?'),(_binary 'G\\\\0%DHW-\','wp-content/themes/idolcorp/themeidol-customizer/js/theme-customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y	?A\`f`T,.',_binary 'ife\Y\7sRػsK?\IF?Ud\K','',0,'?'),(_binary 'g\՗kC\M\"_g','wp-content/themes/idolcorp/themeidol-customizer/themeidol-customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\f\MO\P}NH',_binary 'G\xe\:Bvj\\\\"SYcnY','',0,'?'),(_binary '\\ZHל4\\r7','wp-content/themes/idolcorp/themeidol-customizer/themidol-sanitize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\gpt4|PA\',_binary '!\\#t\O \k3\Ɗ\9\\\'K\','',0,'?'),(_binary 'TXL.f8ҹ','wp-content/themes/incart-lite/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q4\Z\1\t<\F\E',_binary '\<l`\9\cӒ\D\','',0,'?'),(_binary '\#\\\|q2\+','wp-content/themes/incart-lite/Installation_Instructions.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bK\^\u~a\C',_binary 'e\\\\ \і	\=\0ܶïS\0\Ih&o;\','',0,'?'),(_binary '\g\\8H]߬','wp-content/themes/incart-lite/SketchBoard/functions/admin-init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(\Ͱ\\\\0c<\D',_binary 'S;\\X\1pYB~õ\JY\','',0,'?'),(_binary '|d+֬D\gB','wp-content/themes/incart-lite/SketchBoard/functions/sketch-breadcrumb.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\S\quz',_binary '\n\\\\\Z[\'4b5\kpl?\\\h\','',0,'?'),(_binary '\|\I\\\\','wp-content/themes/incart-lite/SketchBoard/functions/sketch-enqueue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\'[\"77qy\V\#\0',_binary '\\\[g!R5qICx\痿Y/\3H','',0,'?'),(_binary 'XJ2\`í- y','wp-content/themes/incart-lite/SketchBoard/functions/sketch-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q\\S\\\#S',_binary '~Z䙘\r\\EԱ1pFg鈓p6v\ed','',0,'?'),(_binary 'c.\,\R\[\q@pv','wp-content/themes/incart-lite/SketchBoard/includes/assets/css/ot-admin-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AfB{e6a\\\Q',_binary '\E\xxm鼉\YK!\&q	~:\\vVA','',0,'?'),(_binary '\>;\nШo\Rr\L','wp-content/themes/incart-lite/SketchBoard/includes/assets/css/ot-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X!P>\sY\H\2m\',_binary '\rz!<WlEꉾ\\T\0Irm\h/','',0,'?'),(_binary '\\1\?;\i+1E~','wp-content/themes/incart-lite/SketchBoard/includes/assets/fonts/option-tree-font.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>j~i״D&xX\',_binary '\n_F\3+iY&v\#@<$]U?3ފɂ\','',0,'?'),(_binary '-\%u\	\\ƌ@','wp-content/themes/incart-lite/SketchBoard/includes/assets/fonts/option-tree-font.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')VLF/\|8\`\\e',_binary '\#V\\ $H\Z\+a\rԄ\Z\\\ro','',0,'?'),(_binary '\j\\\B','wp-content/themes/incart-lite/SketchBoard/includes/assets/fonts/option-tree-font.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+P\\\V(',_binary '5؉\rU\\ᬗ\0K5A^JU\=0E','',0,'?'),(_binary 'E)e(X\Gp\!3','wp-content/themes/incart-lite/SketchBoard/includes/assets/fonts/option-tree-font.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"*7W\\"R\ңޮk',_binary '*\U\m \\펇@\c\-E|\M\=:\1','',0,'?'),(_binary '`h<:2\?Y\','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/dual-sidebar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!.Z̚X',_binary 'sy?1R\!\n\\7\\\j\Ņ\','',0,'?'),(_binary 'MGI*Q\r','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/full-width.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(HY\C\G',_binary '\_\n\8\)\|fqÂ\HY	\3\\b!','',0,'?'),(_binary 'KB3G\\'(W\','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/left-dual-sidebar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4+g\\nN\C\S[',_binary 'p\0\@(E|H\Ӂ#dT_WԾ \M|qm@','',0,'?'),(_binary '\|\\aq\<@\r\\','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/left-sidebar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\;\\\06:\\\\g\0',_binary '. Wm\\\m~tGAe6nWzYc','',0,'?'),(_binary '8\'\\\=;l','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/onecolumn.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\+Դ\\.\\$',_binary 'C\%$\\8\\m\ÊY\\Y]>','',0,'?'),(_binary '\bhN\rl\\;?','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/right-dual-sidebar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\0l8=	\@\H-\\',_binary '\JBE\7	S&A\ʁ)\'\n\\i','',0,'?'),(_binary '\6\=\\','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/right-sidebar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\SKj\>r\\ZΏ ',_binary '\\Z\ae\T@\7FJl8<|\[','',0,'?'),(_binary 'q\p\\ڱ\^Y\nG','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/threecolumn.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0\%\\ \=9\',_binary '*29x>Bc\6\*vu3\d(u','',0,'?'),(_binary 't⹿.|h	X2$','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/twocolumn.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\Aha%իGu',_binary ' Q\\aKDF\'\\r\'\\Sc?͘!(','',0,'?'),(_binary '$\%$(2\jy~','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/ot-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݩ\\p\\ߝ\\=',_binary '\\\\\ĽK&\'Rp\,@W8Vg','',0,'?'),(_binary '37?!o\ӭ(K','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/ot-pre-bg.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʸ[g4Mcͷ^O\',_binary '\,\F%\09q{9\Ni\\^\M','',0,'?'),(_binary '2^E\y\!΂*:<','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/ot-select-hover-rtl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\q\rִ줫',_binary 'P o@(\.:\\J\\0\G\^~\\Cp','',0,'?'),(_binary ';*dZ\"k\r','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/ot-select-hover.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EAb\\NI4՘',_binary '(\y;\Xvaϫ_@_\\=1\QՓ3[','',0,'?'),(_binary 'P\cCnL\','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/ot-select-rtl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0>n<\Q\	 r',_binary '17!@x\y9\+m/טbj\*\M\','',0,'?'),(_binary 'v\dL\\':\'p\M','wp-content/themes/incart-lite/SketchBoard/includes/assets/images/ot-select.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\vlR[\B\y\\1',_binary '`?S\\\\\\K	\\\ڍu','',0,'?'),(_binary '-So0Br\\?','wp-content/themes/incart-lite/SketchBoard/includes/assets/js/ot-admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F{0E@\$\',_binary 'y\0|<\}X\jEq\\EVv(S','',0,'?'),(_binary '7\ic=\R\cf','wp-content/themes/incart-lite/SketchBoard/includes/assets/js/vendor/ace/ace.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̧.̒a6Ou	',_binary 'QM\Z*Iѵ$+\`\\{ڵE\\Z','',0,'?'),(_binary 'y\@7\_{HJUo\®','wp-content/themes/incart-lite/SketchBoard/includes/assets/js/vendor/ace/mode-css.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|\,dԻ\\\\߱',_binary '\"=h\\\ZP|_\#E`YQ','',0,'?'),(_binary '\\	6R\Y\?\','wp-content/themes/incart-lite/SketchBoard/includes/assets/js/vendor/ace/theme-chrome.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\@YMpX\n',_binary '\\5\'\0\rn崐SS\\_\\\\R!\\?W','',0,'?'),(_binary 'ZPb1\N\ۼ\\','wp-content/themes/incart-lite/SketchBoard/includes/assets/js/vendor/ace/worker-css.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\18JY\탆\\',_binary '\Ԟ6g\\y,tL\\q\\rY$\rQ','',0,'?'),(_binary '\"5K\'>]3\螟9','wp-content/themes/incart-lite/SketchBoard/includes/assets/js/vendor/jquery/jquery-ui-timepicker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9š2H~GWQ\',_binary '\r(;E^HcN׼3v\#y\N','',0,'?'),(_binary '\$#CL7==G','wp-content/themes/incart-lite/SketchBoard/includes/assets/theme-mode/demo-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\Mtsiˉ\|R\QM',_binary 'p1\`\n\Yj[\8BG\ysо|\6+','',0,'?'),(_binary 'ST0\SW\\d`@\V\','wp-content/themes/incart-lite/SketchBoard/includes/assets/theme-mode/demo-meta-boxes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\m6\	\G\',_binary '\\\x\w\}aZ]b	t\;]\<\','',0,'?'),(_binary 's\\Ty\'\','wp-content/themes/incart-lite/SketchBoard/includes/assets/theme-mode/demo-theme-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\M\92\\\	\\',_binary '\\\5\m\\ŘΪ`A\x\Vnv','',0,'?'),(_binary '.\B\i8V\\*','wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zt.,D\-\\\\r',_binary '&j!\-\2\\a\A7+&\\\\0e\r','',0,'?'),(_binary 'sA\\'X}~\C2\','wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W2\'\\>d+\P\',_binary 'lv\[r?\"\+\\_S\Ã\o# pR)','',0,'?'),(_binary '\5\U,W\%_1\','wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions-deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\4R pO\\)\N',_binary 'EN\'I.T2qT\\\0Z\n\qt\\almu(i','',0,'?'),(_binary 'kn\K\\'\','wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions-docs-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!~\\Y!\\J',_binary '\y_\Kg+~\\0\\DG','',0,'?'),(_binary '\2[ bWC\hF^J','wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions-option-types.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u]^\)8-8rYi',_binary 'B{B\\\<Tr}y\*lٱ#x\zv*','',0,'?'),(_binary 'Qݹ-\(a\\\r\','wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions-settings-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B}]6\2m\ֱUI',_binary 'm\kǓva]s\\;z\/G<\','',0,'?'),(_binary '8	2僿QX','wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a\\}	\0ʃ\C',_binary '\&\ |\\\\C74P\\2\^\\O\\\@','',0,'?'),(_binary 'RQ|\\KEjO','wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-meta-box-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\i/ܥ\V\\\Z\A',_binary '\{R\^\ЉIj\\\j\K\^','',0,'?'),(_binary 'GS\ɨWKm[;Q\\','wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-settings-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<Y!k\\\qHub\',_binary 'p[z\[ͮӽ^mOf\8jف\\>(ԟ2','',0,'?'),(_binary ';q(\\h\\2\r','wp-content/themes/incart-lite/SketchBoard/includes/languages/en_US.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';1\ZK\\\\\s`rG3',_binary '\P\\\\2ݳ!{\甡\%K\R\XSٗ\','',0,'?'),(_binary '\\ӳ]I:(\s','wp-content/themes/incart-lite/SketchBoard/includes/languages/option-tree.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XB\\úPs\K',_binary '\,\\ϺD8DY\ĿAQ\'\U[\\','',0,'?'),(_binary '_\\HMoA\\r|K','wp-content/themes/incart-lite/SketchBoard/includes/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iz\\\Y]4&',_binary '\F}Ռ\OX\\\\\	##','',0,'?'),(_binary '+61\N\\_/h=','wp-content/themes/incart-lite/SketchBoard/includes/options/theme-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mEZ\(\\\--\\',_binary 'rS7aӠ+L~-a!\ٲ\'$\C9c','',0,'?'),(_binary '\x,-ӯaGOj!\','wp-content/themes/incart-lite/SketchBoard/includes/ot-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\w\\ԸSXi',_binary '\$ް3!\\Z4\\\V\0\8U\{HW\0','',0,'?'),(_binary '`\?,\GA\\PPqA','wp-content/themes/incart-lite/SketchBoard/includes/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\hɛ\h\h.o',_binary 'ǭhFl\_.\e\fo~L9\\\qds@','',0,'?'),(_binary '\l8ە\\Q_\\\3','wp-content/themes/incart-lite/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3{2\n\4\阃\'',_binary '\\Z_?zgs\\\mmW*S\1','',0,'?'),(_binary 'JIE\"V\|=Ѫ','wp-content/themes/incart-lite/author.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S?ZJ\0<!0',_binary 's;$\Ҿbc\-jcS+{\YW\ ','',0,'?'),(_binary 'ůl	6z\rv|>','wp-content/themes/incart-lite/category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\c!~)eRrT',_binary '\\u~=	$R\_@m]\\>!jݛ\jR','',0,'?'),(_binary 'ݏ)4b:4	/','wp-content/themes/incart-lite/changelog.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ҥ\A7\ժ;>',_binary '@\\m\bXӧc\\4\E\!o礥','',0,'?'),(_binary 'KS\nЋ$Л\)P','wp-content/themes/incart-lite/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CU\0\*\',_binary 'NO\G\$\f\u\\Vݬ\8\\-BШ','',0,'?'),(_binary '{-zb&2\\]','wp-content/themes/incart-lite/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\W]\\0',_binary '.fFU\\\\>U+n\dP\\0\\<','',0,'?'),(_binary 'Ze5CWPd\	\','wp-content/themes/incart-lite/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P QT@\\\EK',_binary '4\}\"\ʃri2\G\\dŴ','',0,'?'),(_binary 'Cm\Ztfm-lJ','wp-content/themes/incart-lite/css/bootstrap-responsive.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݳtQ\x諸n.\',_binary 'y\\]C\YI\y\\0VC\\Y\CKQ\','',0,'?'),(_binary 'ܞZ/)\5d_\0GJt','wp-content/themes/incart-lite/css/font-awesome-ie7.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\\\&%0)',_binary 'X\\\K\"z\0vj}AݣL\N\MO','',0,'?'),(_binary 'z9\\\C\烥\!','wp-content/themes/incart-lite/css/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#X;I\M~8\=Q',_binary '\PH>\"Wz\*\s\\֬{R\','',0,'?'),(_binary '1Q\/\/\Xsq;q\','wp-content/themes/incart-lite/css/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\{BYD\%',_binary '\\qa#T0\Tn=\\8X\nBg%΀L','',0,'?'),(_binary '\luH-\"{\5','wp-content/themes/incart-lite/css/prettyPhoto.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\\\/& ',_binary '\8\\Z8*\\r\\r+\bO1\H\H\','',0,'?'),(_binary 'ka\\\\nnN','wp-content/themes/incart-lite/css/skt-animation.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lY{+DT\"\'',_binary 'upP48\r;\\Щ\LM\ɷh?|','',0,'?'),(_binary ',So\ri<e\','wp-content/themes/incart-lite/css/superfish.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\]Ϥ|\)zFL',_binary '\˾T\\%\\o1(b)B\*Uf','',0,'?'),(_binary '\'\\\msL؎5\hi','wp-content/themes/incart-lite/css/upsell.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'T\͸ynA\Z\o',_binary '?:\\CO\n\\lx.\#ޮVz`\\\\xi','',0,'?'),(_binary '\iI+p\\','wp-content/themes/incart-lite/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\P52',_binary '\\k\0x\,S\r܀{\ՁU\f\ic!a','',0,'?'),(_binary 'sI\r)\T\k','wp-content/themes/incart-lite/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\'\]>\\v\\2\\\ZM',_binary 'qoO$K]g3\nÒѐ\~\(R','',0,'?'),(_binary 'Ҹ՞\$\\pm','wp-content/themes/incart-lite/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gOP҇č\\',_binary '\~8 ir\\nPp\n2\5DahBzP','',0,'?'),(_binary '_\\\5\','wp-content/themes/incart-lite/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\murI1G\',_binary 'Lr7D@y\ɂ]NK(\ti\G9\\Tm=','',0,'?'),(_binary 'lf_%$3;\\<\','wp-content/themes/incart-lite/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hq\\A\i',_binary '	q68xօ\\\s\rN~.Zخ[\"','',0,'?'),(_binary 'I6=x\3H5-\','wp-content/themes/incart-lite/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nq*\\ZF)2',_binary '\&4\"\rQjX\mN\"\\?Po\\\\\?','',0,'?'),(_binary ')Z\\C\'p','wp-content/themes/incart-lite/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\\\ 6>',_binary '\@⣂L\EQ\\(ieq[N|&\Ð\','',0,'?'),(_binary '8\\BI6C\n_','wp-content/themes/incart-lite/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n]ż\'\`\'',_binary '-\\n\?pF*s.\+8n6t%\-,׳','',0,'?'),(_binary ' \\Z\belH\v1','wp-content/themes/incart-lite/front-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z\je+\k*',_binary '\\\W\"J\>\\I\Ol}0Uv','',0,'?'),(_binary 'r\Z`\R\','wp-content/themes/incart-lite/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!ใ\\S\q&\',_binary '#Mr\\#\ͳ\p\y\|\MM\\4','',0,'?'),(_binary 'T\\'D`\nƌ$','wp-content/themes/incart-lite/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\XR׵\P]h\',_binary 'x[\\Z*|:i)\\\ZBCR\\','',0,'?'),(_binary '\ `\Xx!\B)','wp-content/themes/incart-lite/images/Feature-image-01.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wa\*[\;HY',_binary '\u\Q\\\\\\v`v썕5ΐ5\\\','',0,'?'),(_binary '\\\ D\tjp','wp-content/themes/incart-lite/images/Feature-image-02.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\!\\\f_H5\^',_binary '\\Z\xݡ\\\vT\l\NhP\M\\\\','',0,'?'),(_binary '\zYk\\+\e','wp-content/themes/incart-lite/images/Feature-image-03.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'و\̛ӵ!',_binary 'G*4YH9-O\~bz^1͢\S+^k','',0,'?'),(_binary '1:0\;\"\\n\','wp-content/themes/incart-lite/images/Incart.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\\\\ۼ׫T\',_binary '\\\~ESENB=\\Ab40)*n\\.','',0,'?'),(_binary '$\\##PY)\b=Z^','wp-content/themes/incart-lite/images/Parallax-image.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\]\s 0\DIp\k',_binary '{\\p@\yE\LG=XNO5/\','',0,'?'),(_binary 'G2M8xje\\$&','wp-content/themes/incart-lite/images/Slider-Image01.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\TIP\#nb\',_binary '^5.04t@Bwia;3ߛ1','',0,'?'),(_binary '٠ا\-3\\n|','wp-content/themes/incart-lite/images/cart.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\Zs\',_binary 'cY\$O]F#\iv\	.\\*le*\\','',0,'?'),(_binary 'K\C~\)\%','wp-content/themes/incart-lite/images/ch-arr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Lq\\L',_binary 'I\\\vA2p4\O\y9j=e/\\GZ','',0,'?'),(_binary 'I\\0?j;3\'Vzc','wp-content/themes/incart-lite/images/corner-arrow.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4^-4ȿ#\|1',_binary 'X\"\LN{\\{\ZcJDA(\^','',0,'?'),(_binary 'p\D-dKos\ vB','wp-content/themes/incart-lite/images/menuulbg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l~!m\',_binary '#-!%\0\\\|\\\S-x:R5','',0,'?'),(_binary 'v\AF%V\0\\'Ė8R','wp-content/themes/incart-lite/images/prettyPhoto/dark_rounded/btnNext.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nnJb<',_binary '_l\`\'R|\\]\\'\\\\CP','',0,'?'),(_binary '\iP=\'\','wp-content/themes/incart-lite/images/prettyPhoto/dark_rounded/btnPrevious.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VW@ʲ?\y\\',_binary 'RʓQ\W	C\nذ\qI','',0,'?'),(_binary '\6?K͍M)','wp-content/themes/incart-lite/images/prettyPhoto/dark_rounded/contentPattern.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/-:n~⻯',_binary '\Z5a\\\8)Z\|RX\\'\\\','',0,'?'),(_binary 'R=.o\\Zu\l\07','wp-content/themes/incart-lite/images/prettyPhoto/dark_rounded/default_thumbnail.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\\'qsh` qxZ!w',_binary '=s\{[\\H\\g|]m/a} e+JV','',0,'?'),(_binary 'w\\Y\'1a<\\','wp-content/themes/incart-lite/images/prettyPhoto/dark_rounded/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\n\\\\\\0\Tb',_binary '!P\\\*\\\Z\*Z\\\C5֚\ \\H','',0,'?'),(_binary '\PbJV|5,\;\','wp-content/themes/incart-lite/images/prettyPhoto/dark_rounded/sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'$b\\3\r>y\',_binary 'Mx\2şRe}etqѮ7&\[y\\','',0,'?'),(_binary '3r\㭻-\\rm]','wp-content/themes/incart-lite/images/prettyPhoto/dark_square/btnNext.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nnJb<',_binary '_l\`\'R|\\]\\'\\\\CP','',0,'?'),(_binary '\H\Z\D¹p8\','wp-content/themes/incart-lite/images/prettyPhoto/dark_square/btnPrevious.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VW@ʲ?\y\\',_binary 'RʓQ\W	C\nذ\qI','',0,'?'),(_binary '.\\xHUM\At@','wp-content/themes/incart-lite/images/prettyPhoto/dark_square/contentPattern.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f`\R;\ޓ*Sp',_binary '\:A\"6%ؖ\Q\n\<a\r','',0,'?'),(_binary 'Wn7\Z\\]\7Ƶ,','wp-content/themes/incart-lite/images/prettyPhoto/dark_square/default_thumbnail.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\\'qsh` qxZ!w',_binary '=s\{[\\H\\g|]m/a} e+JV','',0,'?'),(_binary '\:\)jTT\?#{','wp-content/themes/incart-lite/images/prettyPhoto/dark_square/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\n\\\\\\0\Tb',_binary '!P\\\*\\\Z\*Z\\\C5֚\ \\H','',0,'?'),(_binary 'K$}a?=M<','wp-content/themes/incart-lite/images/prettyPhoto/dark_square/sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k%`9~ؑ\\\{(',_binary '앞G$Mk⳸\\\\&[?.Y%s\','',0,'?'),(_binary '%\D\\0PPf\*','wp-content/themes/incart-lite/images/prettyPhoto/default/default_thumb.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\d	H=\\"\\Ck\',_binary '\d63iW\o\{_\\\','',0,'?'),(_binary '`\jo*B\"\rT','wp-content/themes/incart-lite/images/prettyPhoto/default/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\iu\=\',_binary '\\b!\B\b\\"wqsMb3\o\','',0,'?'),(_binary ' \iwe\\\r1\\\s\','wp-content/themes/incart-lite/images/prettyPhoto/default/sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\_Nh\l\_h^o:{',_binary 'WQwsڌҟx\'1\\\ߘ{@&@0!ۢ','',0,'?'),(_binary '\Nm\&\','wp-content/themes/incart-lite/images/prettyPhoto/default/sprite_next.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\INd6h@A;\\',_binary '\\3ND\nG,{:JF\\}0\H','',0,'?'),(_binary '}i\\ x	','wp-content/themes/incart-lite/images/prettyPhoto/default/sprite_prev.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r\\Zt5\\]AO',_binary '	\].#\x\S%&#\%x7@q','',0,'?'),(_binary 'hd$jH\Wq_\','wp-content/themes/incart-lite/images/prettyPhoto/default/sprite_x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yLX׎QO\57u',_binary 'r\0\Z\\\GN3?\nϵ\'5+͌\\\c͚','',0,'?'),(_binary 'eY/\[\o\n','wp-content/themes/incart-lite/images/prettyPhoto/default/sprite_y.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\\+\lL4K1',_binary '9ao\v٤K]AՉҲ)\I\_8\L','',0,'?'),(_binary '9$K!\ƥ%','wp-content/themes/incart-lite/images/prettyPhoto/facebook/btnNext.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Կ@\s!N\\\\~',_binary '\\rbw\\I_kt\>\X2sFc','',0,'?'),(_binary '\\k\\-\W4%a','wp-content/themes/incart-lite/images/prettyPhoto/facebook/btnPrevious.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q$[NH-\\',_binary '=h\\7k=n^\KpK4dHT','',0,'?'),(_binary '1\"\L@ϧKJ52\%','wp-content/themes/incart-lite/images/prettyPhoto/facebook/contentPatternBottom.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\Zbt\\j',_binary '\\Pə\1\\\\h\N<0\\2M','',0,'?'),(_binary 'O\=\*N\S)s','wp-content/themes/incart-lite/images/prettyPhoto/facebook/contentPatternLeft.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';Vi$̸\\M',_binary '0\z\{\\G\\uJ$\a\^/i[mU.9l','',0,'?'),(_binary '\\6_\͗P\','wp-content/themes/incart-lite/images/prettyPhoto/facebook/contentPatternRight.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't3\9\iq\]a ',_binary '遲yWES\\h[hzfd{z\WG\p0\k','',0,'?'),(_binary '\\\r\d2,\\n\','wp-content/themes/incart-lite/images/prettyPhoto/facebook/contentPatternTop.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\o\\NIǟ\጖',_binary 'ũ\=\\z\n\\_\\¿9M{','',0,'?'),(_binary '\\j\\_<@\','wp-content/themes/incart-lite/images/prettyPhoto/facebook/default_thumbnail.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\\'qsh` qxZ!w',_binary '=s\{[\\H\\g|]m/a} e+JV','',0,'?'),(_binary '\\%ͧ9\՛IZğ','wp-content/themes/incart-lite/images/prettyPhoto/facebook/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F0DWo\\\\Zd\1',_binary 'ߐ\h}yI\=? H!R\_\\\)\{V','',0,'?'),(_binary '(\\%l\\;/^FV\','wp-content/themes/incart-lite/images/prettyPhoto/facebook/sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\v\\\(7:~k#',_binary '\6̒\aN\\ln\w\g!lD\n','',0,'?'),(_binary '\\n=}!\sP\kRd','wp-content/themes/incart-lite/images/prettyPhoto/light_rounded/btnNext.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nnJb<',_binary '_l\`\'R|\\]\\'\\\\CP','',0,'?'),(_binary '\\ы@+\\zK4[','wp-content/themes/incart-lite/images/prettyPhoto/light_rounded/btnPrevious.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VW@ʲ?\y\\',_binary 'RʓQ\W	C\nذ\qI','',0,'?'),(_binary '2Bl>C\TθY\w\','wp-content/themes/incart-lite/images/prettyPhoto/light_rounded/default_thumbnail.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\\'qsh` qxZ!w',_binary '=s\{[\\H\\g|]m/a} e+JV','',0,'?'),(_binary '\Wm=ޢ\0c[!\\\\','wp-content/themes/incart-lite/images/prettyPhoto/light_rounded/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F0DWo\\\\Zd\1',_binary 'ߐ\h}yI\=? H!R\_\\\)\{V','',0,'?'),(_binary '\; ]eVp8\OQ\^','wp-content/themes/incart-lite/images/prettyPhoto/light_rounded/sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E,bJgC`\\',_binary '\']0\CJ\J랚x?\޸F\\\nz93','',0,'?'),(_binary '\\1[$[yf6Rw','wp-content/themes/incart-lite/images/prettyPhoto/light_square/Invert_Lightbox_Close.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\jЙӣ(2?4w%',_binary 'k\\	.\\\x\\3\ݖ\Ze2n\H`o^\','',0,'?'),(_binary 'ɸFa \\\\Zɠ@','wp-content/themes/incart-lite/images/prettyPhoto/light_square/Invert_Lightbox_Next-Small.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y1d_\Y\\~\e',_binary '\\7\({\5/[i90}\','',0,'?'),(_binary 'u|aw`%<C\','wp-content/themes/incart-lite/images/prettyPhoto/light_square/Invert_Lightbox_Pause.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v>\\vH\{[Q',_binary '8\n쀐\\\\\C1\0\\\\\','',0,'?'),(_binary '\\Y#\+\\\v\\','wp-content/themes/incart-lite/images/prettyPhoto/light_square/Invert_Lightbox_Play.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8\EGJc3ѝ',_binary '\O[\dbDI(Y\X\Q,ӦCD\\','',0,'?'),(_binary 't\\\(\\\Ifb\','wp-content/themes/incart-lite/images/prettyPhoto/light_square/Invert_Lightbox_Previous-Small.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r(|\Xt#+\',_binary '\\\0\7&\~+\\\e%%\`','',0,'?'),(_binary '\o\Z%\','wp-content/themes/incart-lite/images/prettyPhoto/light_square/btnNext.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\\i~6\\ݵ\',_binary '\%e\*h\\\\nH\\LO8r%1o','',0,'?'),(_binary '\*d\[cֿh','wp-content/themes/incart-lite/images/prettyPhoto/light_square/btnNext1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nnJb<',_binary '_l\`\'R|\\]\\'\\\\CP','',0,'?'),(_binary '{\:\lC\\.\r\j','wp-content/themes/incart-lite/images/prettyPhoto/light_square/btnPrevious.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\\C\e\0\\"r\',_binary '\h\nέїe\G\\\}(_ni','',0,'?'),(_binary '\\&]wуR:K','wp-content/themes/incart-lite/images/prettyPhoto/light_square/btnPrevious1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VW@ʲ?\y\\',_binary 'RʓQ\W	C\nذ\qI','',0,'?'),(_binary 'b\\e\wi]\ش-','wp-content/themes/incart-lite/images/prettyPhoto/light_square/default_thumbnail.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\\'qsh` qxZ!w',_binary '=s\{[\\H\\g|]m/a} e+JV','',0,'?'),(_binary '\'\sX\[\jn\%0','wp-content/themes/incart-lite/images/prettyPhoto/light_square/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F0DWo\\\\Zd\1',_binary 'ߐ\h}yI\=? H!R\_\\\)\{V','',0,'?'),(_binary '\ڦ\ZK[\~7T','wp-content/themes/incart-lite/images/prettyPhoto/light_square/sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k%`9~ؑ\\\{(',_binary '앞G$Mk⳸\\\\&[?.Y%s\','',0,'?'),(_binary '\:O*)b\','wp-content/themes/incart-lite/images/sketch-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\F\\\or\\r\',_binary '^ \G\N\Ԓ\\ZW)D','',0,'?'),(_binary '\]$\d|?<#,&dV','wp-content/themes/incart-lite/includes/front-header-image-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nk\]\bnJ\\',_binary '\c&\S\n<n+ז5߀)х','',0,'?'),(_binary 'Ni@\tl\0\\','wp-content/themes/incart-lite/includes/front-mid-box.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fh4W#\\',_binary '[h2\ZCǵ\S\o\]8M\\U\6Y','',0,'?'),(_binary '\0\B\\ArY^','wp-content/themes/incart-lite/includes/front-parallax-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\ط6\vY',_binary '-\ɣ\\՛\\\b\})M\1^2#\','',0,'?'),(_binary 'Q\6:\n*\','wp-content/themes/incart-lite/includes/front-woo-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\-̗\\|ծr',_binary '|1;g\k]!\\~ΪD\\\\Hgq\\\','',0,'?'),(_binary 'S#R0.\{?j\','wp-content/themes/incart-lite/includes/incart-custom-css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	b^\^˨ؙ\T',_binary 'Q\#\O\0\$\X8-T\ӟ\\r\','',0,'?'),(_binary 'c\\DC64D','wp-content/themes/incart-lite/includes/sketchtheme-upsell.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ُ\0\	\B~',_binary '\\B\șo$\'A\dLxRU','',0,'?'),(_binary '\޲C\x\\ڹ=\','wp-content/themes/incart-lite/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\X[v\K+)X}',_binary '	^\VT%\S\m\Y)4}\c\v0M\','',0,'?'),(_binary 'zǫD͡n\}c','wp-content/themes/incart-lite/js/cbpAnimatedHeader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ej\\\I\PK',_binary ':4pO\'LkpKr/5\\\\41(_','',0,'?'),(_binary '\<\\9*ݘ,څK','wp-content/themes/incart-lite/js/custom.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\	aLi\J\\!',_binary '1\B\%Et\\\\kB$\)\\','',0,'?'),(_binary 'gpf\D@@[','wp-content/themes/incart-lite/js/hoverIntent.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\ar\1S',_binary './\\pk?Ks`\\\D!s\/','',0,'?'),(_binary '̜sts+򥳳\\\\\','wp-content/themes/incart-lite/js/jquery.easing.1.3.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{8PVɴ\<\\',_binary '\&\\\X\UG#yL\\~G_\\g','',0,'?'),(_binary '\=\?VKIcf\8f\','wp-content/themes/incart-lite/js/jquery.prettyPhoto.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rx̎\rj\\sp',_binary '\-q\F\OUt}k\2\\\1aJIb\"L\','',0,'?'),(_binary '\b^uS. \','wp-content/themes/incart-lite/js/superfish.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(KGK&{k߱\M',_binary '*Co~5L\n<\\H\+\k>a>Bus','',0,'?'),(_binary 'b\μ\0.a1K~&','wp-content/themes/incart-lite/js/waypoints.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\!Թo\\\<Q',_binary '*!v9m!\1\8V\0/LXU\xi \E\\b','',0,'?'),(_binary 'v^\^\.J	','wp-content/themes/incart-lite/languages/en_US.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\,\\P^f\M\\',_binary '\\?Q\c~Vb9SPї:AE','',0,'?'),(_binary '\#\+QbmQb','wp-content/themes/incart-lite/languages/en_US.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\,Bg',_binary '󕮕}43:_\y\\0h','',0,'?'),(_binary '\\\\d\\.','wp-content/themes/incart-lite/languages/incart-lite.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z \ʞv{\8ݲ~t',_binary '|\\\jڻW|\Mq\M3\\"E3\\n	','',0,'?'),(_binary '\a\Y\\nYGO\\','wp-content/themes/incart-lite/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \\fx\FwUDw\',_binary '$\ϕ{.kKZ\u\ɸ_%b\C\Y','',0,'?'),(_binary 's;7i˝\ȩzW\','wp-content/themes/incart-lite/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.S\Y\\* >\#',_binary 'Q#\ǌ\:\\n:\Cx\~','',0,'?'),(_binary '𱞝\\\\"r+wDW','wp-content/themes/incart-lite/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '͸@p\}IA',_binary '\\\u(AD\F\9\!IW\\','',0,'?'),(_binary 'X[{&L(T\$.','wp-content/themes/incart-lite/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$JH\tA\\=\',_binary 'b\Z\N\Mo7H\z4\\H\w\@','',0,'?'),(_binary 'R\E3\\\׌k4{','wp-content/themes/incart-lite/searchform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\<d\Ɔ\',_binary '/f\3\\2H\K\\c\ZOރ\˥','',0,'?'),(_binary '\;\>$3/Z.$','wp-content/themes/incart-lite/sidebar-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1\)\A5',_binary '\M)桌N\?a7؝\^\aة	*?','',0,'?'),(_binary '\XeW>2<Db','wp-content/themes/incart-lite/sidebar-shoppage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c8࡭8e',_binary '%RA\4}X\П\V\\'q\m&g2','',0,'?'),(_binary '!f o \-\~\\'p','wp-content/themes/incart-lite/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\@Z*Z/\\',_binary 'cϙ\Y)\	?\ë\\N\3R$+\y\','',0,'?'),(_binary '%\Z\~\\d\{$A#u','wp-content/themes/incart-lite/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@\Q?\\kT\h\\0',_binary ']b\:\ɰ\q҇W/V\\MsP','',0,'?'),(_binary 'k1t\A\\tq','wp-content/themes/incart-lite/sketchthemes-upsell/class-customize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%[\2r\Ah\\',_binary '\+/VZ(1I\0sp\\\\vPv\U\BZuy','',0,'?'),(_binary '\\\0O\"c','wp-content/themes/incart-lite/sketchthemes-upsell/customize-controls.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=M\\v\B',_binary '@|K\">İwZpE\/fu4\:','',0,'?'),(_binary ',= BG1מ\-Р\0','wp-content/themes/incart-lite/sketchthemes-upsell/customize-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Yaq\\Bs)@	0}',_binary '`e\0 L{\2>dW\\Z;0S_O9<u','',0,'?'),(_binary 'ϡp\_cm\S\N ','wp-content/themes/incart-lite/sketchthemes-upsell/section-pro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'az{d\K?\ES3',_binary '\\\#\=V\\\\\','',0,'?'),(_binary '\H\/\̽z','wp-content/themes/incart-lite/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\\<r\Z;\',_binary 'M$?XGQ9\Z \\u\]\;]\8','',0,'?'),(_binary 'r\\\_k\^=6}','wp-content/themes/incart-lite/tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\.t\\݈',_binary '\<|=\\*(u\\&I\9','',0,'?'),(_binary '\+>}!\Z-','wp-content/themes/incart-lite/template-front-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'inu*5	9O\',_binary '\0R\\;L\i!oo\N`B\3\\J','',0,'?'),(_binary '\ΰ_/՚8\i\V\\','wp-content/themes/incart-lite/woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£eWh}:\',_binary '})ER4\ǁh\!|*櫬sN*Ѡ]','',0,'?'),(_binary 'J\}F\E\0\9','wp-content/themes/index.php',0,_binary 'gD,V\=\\\bP',_binary 'gD,V\=\\\bP',_binary 'k~	UH\Z\xP\\Ā<;X','',0,'?'),(_binary '$?O\d\u','wp-content/themes/lithestore/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\p\|3e\빖',_binary 'e\ C\\\0aGآ\\*79Rː\Z\\','',0,'?'),(_binary '\\Ii\\T\z\"\l','wp-content/themes/lithestore/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ܕ|ڈ\r\\\x',_binary 'B[zH\	VpMgrߡ/K=','',0,'?'),(_binary '\=mJ/+ɏ','wp-content/themes/lithestore/changelog.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tf3t\T\?\',_binary '	\疃EmX\n\Tj\$xqST`WU','',0,'?'),(_binary 'u\d\XQ\R\l\H','wp-content/themes/lithestore/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\9$8ءa\\\	',_binary '\q\0	x\t\\\%e\"eRR,W\\@g$','',0,'?'),(_binary 'D\rS\E\n\\1\','wp-content/themes/lithestore/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gf\f7\':',_binary '\\7Ֆ\|\>ؽ{\np\[\h','',0,'?'),(_binary '^;\\.\\G|\P','wp-content/themes/lithestore/framework/assets/css/grid.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q,\\Z:@\o\)',_binary '\w\'\~pFàbu\aەZ8\\'','',0,'?'),(_binary '\3ݽN/BYMΰ','wp-content/themes/lithestore/framework/assets/css/main.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\JgoL$\⻒',_binary 'r2kgH\\\Zp*\BI','',0,'?'),(_binary 'z-KR\\','wp-content/themes/lithestore/framework/assets/css/woocommerce.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<vƇ[D\\;%',_binary 'ueVrt\^tgԚ\	hFl8\g\&\c','',0,'?'),(_binary '.v>~\<l_','wp-content/themes/lithestore/framework/assets/font-awesome/HELP-US-OUT.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\]rl\ra{)\B',_binary '\(r2\\A7\\\\7-\`\\\\S۔wK','',0,'?'),(_binary 'UaBm*xgv:\K','wp-content/themes/lithestore/framework/assets/font-awesome/css/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SC\\Z(ze va',_binary '\z\\Bh@\ZR\`+)A >\','',0,'?'),(_binary '\2US\c\MG\\Z\','wp-content/themes/lithestore/framework/assets/font-awesome/css/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\`G7?OV9ȿ',_binary 'kս\e+\2@l\\Zu\rL\\G0\s6A','',0,'?'),(_binary 'vH\Z\0\n\tc\','wp-content/themes/lithestore/framework/assets/font-awesome/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\=\W\\\b&\W',_binary '}.\$]%0\RYSy\','',0,'?'),(_binary '\e\L\\0\y','wp-content/themes/lithestore/framework/assets/font-awesome/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2@N*ؿ\B\'\F',_binary '\\č\\oz\0u\\G;B.#CCV','',0,'?'),(_binary '\Հ\.\\`v\\','wp-content/themes/lithestore/framework/assets/font-awesome/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ų!\[\ᅲ|[',_binary '\lv[\%AhZRIl(,Ak\17\CZh','',0,'?'),(_binary '[S۹\ߩ\\\|','wp-content/themes/lithestore/framework/assets/font-awesome/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!p\\\w\\&h',_binary 'X\n}l\//\C\\;NYTV|t]Yb','',0,'?'),(_binary '8\*d3o	\nٟ\','wp-content/themes/lithestore/framework/assets/font-awesome/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W \\\\C~OE\s',_binary '/ن}W\\^z&\;tةIY-\y-\.','',0,'?'),(_binary 'J&CGB\\T\\.x','wp-content/themes/lithestore/framework/assets/font-awesome/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ہ-p莈Dɢ~',_binary '\FTM߇\E\7y6&<-\\\5]\\|\VQ','',0,'?'),(_binary '\c[+Ѫ=','wp-content/themes/lithestore/framework/assets/font-awesome/less/animated.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\SʼYT',_binary '5-^\\}>͌2\n\0){\n\rѼ\','',0,'?'),(_binary '\ՙk&r\0\r{\x','wp-content/themes/lithestore/framework/assets/font-awesome/less/bordered-pulled.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v2\!\',_binary '+l6\ZKH1~VV C\gpw;\ ','',0,'?'),(_binary 'f\)\\1<u8q','wp-content/themes/lithestore/framework/assets/font-awesome/less/core.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NJ\77phuǷ\',_binary ',w\\\!s\0\Hr{\DߎQ\1F)','',0,'?'),(_binary ' 6\\\\*S\\\','wp-content/themes/lithestore/framework/assets/font-awesome/less/fixed-width.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\\0!\'\T(\',_binary 'j&\R\A\uF͏\\4h`_\0\!\','',0,'?'),(_binary 'FA\[*@\n.6Ca','wp-content/themes/lithestore/framework/assets/font-awesome/less/font-awesome.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F`m=y\\e:\\L\r',_binary 'N]\\psB\\:4b\[\X\\(','',0,'?'),(_binary 'v=Ʊ\hTL|','wp-content/themes/lithestore/framework/assets/font-awesome/less/icons.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\gk\\re',_binary 'n\\\\\sݢK*!A \DÆ','',0,'?'),(_binary 'Y]q\\n\Tx','wp-content/themes/lithestore/framework/assets/font-awesome/less/larger.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\&&\\Z|(',_binary 'iѪ8j0\NKa\0\n\\JtR\P|DF','',0,'?'),(_binary 'w\B\\7\z\\','wp-content/themes/lithestore/framework/assets/font-awesome/less/list.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uq2<6\'',_binary 'g_\n٩\\\غb\\\\[놜ȿ','',0,'?'),(_binary ')}KR\s\2R','wp-content/themes/lithestore/framework/assets/font-awesome/less/mixins.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cD1\%]\\"1MB',_binary 'ŀʀWrn\H3$v>\D\"%e#\\\Zg','',0,'?'),(_binary '	\Qm\9ɫqC&\','wp-content/themes/lithestore/framework/assets/font-awesome/less/path.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\C\8læ\}d\Z\K',_binary 'V\?\-,\f.{D؏c|','',0,'?'),(_binary 'u&T\\yM','wp-content/themes/lithestore/framework/assets/font-awesome/less/rotated-flipped.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gl\P\d\\j\%',_binary '\S\՟\Ʃd3&\^\ߥx\?\lp','',0,'?'),(_binary '\\\ã\ҵ\\-','wp-content/themes/lithestore/framework/assets/font-awesome/less/stacked.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q+-&9\ʡ\QKKN',_binary 'Ͻ\,¿4IF\0e\\Yo\5Ý9','',0,'?'),(_binary '\\8{\K85C \','wp-content/themes/lithestore/framework/assets/font-awesome/less/variables.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I.0\\r\\\<',_binary '~Q\KOg*6^ϐ\ʹ\wȲ\Z','',0,'?'),(_binary '\r\\zhE\\	jS','wp-content/themes/lithestore/framework/assets/font-awesome/scss/_animated.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9O5{\XPuq_A\\',_binary '\\\@YV\r6&O4AZ<xu','',0,'?'),(_binary 'XyTN߶\{g\','wp-content/themes/lithestore/framework/assets/font-awesome/scss/_bordered-pulled.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\r\{\\'3lk',_binary '\\8؅2.\14$\rTo\\UW	\','',0,'?'),(_binary 'N tVdZaN','wp-content/themes/lithestore/framework/assets/font-awesome/scss/_core.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ϝ\\[w\hPw\',_binary '\ƚ\\\\8~\W*T\\D>u\','',0,'?'),(_binary '1zi5݂hñ','wp-content/themes/lithestore/framework/assets/font-awesome/scss/_fixed-width.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wid4ԙ6\',_binary 'R`\;\sR6F[#\\|#쨧\','',0,'?'),(_binary '8Q\B󭻾O\\\','wp-content/themes/lithestore/framework/assets/font-awesome/scss/_icons.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'ɰ4[180\#\',_binary '\\;\\\RLt%\\e%=\H\"F\]r+^S','',0,'?'),(_binary '\4\"lj9\\F','wp-content/themes/lithestore/framework/assets/font-awesome/scss/_larger.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y1VooƭV\\',_binary '0*?TW釧\3\s\<\\K@\\*Q','',0,'?'),(_binary 'n\,I;\\\\\\\!w','wp-content/themes/lithestore/framework/assets/font-awesome/scss/_list.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\9(\'_\B-',_binary 'l\\%\\xPXX#\5M/*l','',0,'?'),(_binary '*\U\IR@O9\\','wp-content/themes/lithestore/framework/assets/font-awesome/scss/_mixins.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' RZ\vK\\',_binary '#5ҿ6^Ϭ|zk182IħYY','',0,'?'),(_binary '\"<\`iUC\F','wp-content/themes/lithestore/framework/assets/font-awesome/scss/_path.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZV>	{\\\5`\',_binary 'qUv\\'8KR\=h\"\𷓃l\','',0,'?'),(_binary '\&e:,\0HT(\','wp-content/themes/lithestore/framework/assets/font-awesome/scss/_rotated-flipped.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']K\ި(Ҫ\et\',_binary '\8n\K١\:\\\\QvS\n','',0,'?'),(_binary '\\0k+\\\\c','wp-content/themes/lithestore/framework/assets/font-awesome/scss/_stacked.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U#r&߼F\',_binary '%蠢u|FX)|\r\R<\O\G','',0,'?'),(_binary '\,R\4d*\\','wp-content/themes/lithestore/framework/assets/font-awesome/scss/_variables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%;\0\\!O#\r}\',_binary '*\\\j?ɲѫZ\c\'\>A\','',0,'?'),(_binary '\LS\M\r<].k\','wp-content/themes/lithestore/framework/assets/font-awesome/scss/font-awesome.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P{f%\+xe3\',_binary '\:[p79\\n$\E`\e!o\\>GV','',0,'?'),(_binary 'Y´#\}!7\n:_','wp-content/themes/lithestore/framework/assets/img/child-node.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L/d\eQy',_binary 'o\"\\J+\rبP1é\а:v','',0,'?'),(_binary '3Qt\m܊i\','wp-content/themes/lithestore/framework/assets/img/circle.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˂\n{K2PZ¶',_binary 'N\9\\"ଡ\"6y\|pH\u\1','',0,'?'),(_binary 'g<q|\L\$','wp-content/themes/lithestore/framework/assets/img/dot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\\\\	23',_binary '\'I)p1b\\U^\\\\\	\\#`Ј','',0,'?'),(_binary 'Qψ1\#\','wp-content/themes/lithestore/framework/assets/img/pattern.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	Kg\-\([\\\_',_binary '+\\S`\0\z\ 7H0Z\\\\20(.%','',0,'?'),(_binary '\"\fs\<osI','wp-content/themes/lithestore/framework/assets/js/customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`4\'qn<-Va',_binary '\\gRr>n:Y\f=9\\R^ ','',0,'?'),(_binary '\\Z7Z}Ųp\w\j','wp-content/themes/lithestore/framework/assets/js/jquery.easing.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k_|\|f\1\',_binary '4$\ef\b\չa2\{kҐ3\i-t3','',0,'?'),(_binary '\"k\Ψ0L\r(\','wp-content/themes/lithestore/framework/assets/js/pushy.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2	R\=\$\\p)',_binary '\\)6w\\/y7B%P	\"\\@ċ%','',0,'?'),(_binary '\\m</, G\','wp-content/themes/lithestore/framework/assets/js/skip-link-lithestore-fix.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\,\\\G\\=\',_binary 'I>\$bC]Z\}p\!j\	\˩9\\ݟ','',0,'?'),(_binary '`N1{%\m6o','wp-content/themes/lithestore/framework/assets/js/theme.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4&\\KF|(',_binary '\rL\}\*\"y\0\$`\C\W*$R}','',0,'?'),(_binary '`96\h\\\n','wp-content/themes/lithestore/framework/customizer/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5lE\\\8ts',_binary 'X\qa~_zN}xC?\\ng\M,\rpN','',0,'?'),(_binary '%\R.\CH\\W','wp-content/themes/lithestore/framework/customizer/fonts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dl\\J )\',_binary 'w\n-\\\\\~JgJ/5\\\6[t\T\','',0,'?'),(_binary 'Ǘ2oӖj`Se\','wp-content/themes/lithestore/framework/demo/default/content.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÝAȠ\iX>O',_binary 'Iq\\$)گisjٝ\\银\/D\F','',0,'?'),(_binary '\4[\\o\û\Z9\\','wp-content/themes/lithestore/framework/demo/default/customizer.dat',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\H\\K\FWЎ\ߔ\',_binary '\i\\ǼU^&D\&S$NL\\','',0,'?'),(_binary 'kix$\\\\t','wp-content/themes/lithestore/framework/demo/default/widgets.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<y\W\}~\v',_binary ']>Ա*0Z\'mN\\'{\%j]!2e','',0,'?'),(_binary '\0V\x4\','wp-content/themes/lithestore/framework/demo/demo-importer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\ï\\J]/{	>',_binary '1\\3I\J\\P\YH\8\*\B3>','',0,'?'),(_binary '\'#TdE\\5\','wp-content/themes/lithestore/framework/functions/class-tgm-plugin-activation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\7\1\':',_binary 'p\.\Eo\\b	N	\\\0;T}+','',0,'?'),(_binary '\!\\r]wRo','wp-content/themes/lithestore/framework/functions/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\\\jlal\G',_binary '~\/x\\V7\0z\ܝe\w\ϖo ','',0,'?'),(_binary '\ 窕\-tHY','wp-content/themes/lithestore/framework/functions/plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\T\\\H\',_binary 'J\H\Y\\ƪr[\~\!x\\U<','',0,'?'),(_binary 'd:Pc?S\E\','wp-content/themes/lithestore/framework/functions/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ؕ\E\Ͱ+',_binary '\tPNqw|,\\\ϲ2)\5ͭ\','',0,'?'),(_binary 'NMFaf\jɐ\','wp-content/themes/lithestore/framework/functions/welcome/content/intro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\\Bz\r&',_binary '\"KUV\\"h+\6VT^a\0\-#','',0,'?'),(_binary '\#um\U4\:Ѹ','wp-content/themes/lithestore/framework/functions/welcome/css/welcome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^ZLoGct ',_binary '\\[\ְ)\\#h=\״l>\n\G\V&\','',0,'?'),(_binary '	\"C\\\3b\\E','wp-content/themes/lithestore/framework/functions/welcome/img/shop-page.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z0ꎱ\ӭe\\',_binary 's\:\f\\\y{hL\\\XDuw\]Һ','',0,'?'),(_binary '\Z\\z\\\Z6|M\\\"	','wp-content/themes/lithestore/framework/functions/welcome/welcome.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\@\\\\m\\;',_binary '8,g#z/\p\\\m\0	O4\F','',0,'?'),(_binary 'Ka\\%*\\B\','wp-content/themes/lithestore/framework/hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')9\čX);ʻ',_binary 'A\G)~>\\~ۏ.*\Kꮀ!vP\\\r','',0,'?'),(_binary '(\<tBrO','wp-content/themes/lithestore/framework/init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\mޡO\R9(',_binary '0\1\9\0pk\'\Yc]:*	< \0','',0,'?'),(_binary '\&lݎJ\ʖ\A\T','wp-content/themes/lithestore/framework/woocommerce/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0[jz`',_binary '5uosO%H\1Zω \Z\h\ǉ.^\','',0,'?'),(_binary '\d*9a$\\Nrf\','wp-content/themes/lithestore/framework/woocommerce/hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\N<0hm\0',_binary '&\5\"\˓c1\{\YJ\'_','',0,'?'),(_binary '\p{IPِKH','wp-content/themes/lithestore/framework/woocommerce/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\8R\\~<\O',_binary 'G4.]	˚*Y;oԔ\n;\eN\A','',0,'?'),(_binary 'e\=ƴ\\\\\r\Zmv','wp-content/themes/lithestore/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\q\!\\\r\'v',_binary 'a%qzTYhM8F|yJ`ݣ','',0,'?'),(_binary 'T~/̍\W\\t','wp-content/themes/lithestore/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T\W\ 	*Kb',_binary '\\}\[֗JxfF\"/:hA','',0,'?'),(_binary '\\\-\؃ϰ[F','wp-content/themes/lithestore/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2h\*\\Xԗ',_binary '\d\ؓ\x2k\\vW-(gQ{a','',0,'?'),(_binary '_iꜴmN1e\R!','wp-content/themes/lithestore/languages/en_US.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ҿ\f2\5Ɗ',_binary '|\Y|1T\'\\\LQ8N\.+{\'\\,\','',0,'?'),(_binary ';ߖ4gH#\&$','wp-content/themes/lithestore/languages/en_US.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\RҤ\nu\ Hb\r',_binary '\\XV\\\\\\ZFԏNHjCj8;I','',0,'?'),(_binary '73\:\k3K0E\é','wp-content/themes/lithestore/languages/lithestore.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':{\\n\_}\^Q',_binary '&[\\\0\A1\Jx\','',0,'?'),(_binary '\\]&wrKzw\','wp-content/themes/lithestore/languages/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V%\\W\n$`\"/c',_binary 'G\ܷ\B\^#0Z\8\;\\Q\\','',0,'?'),(_binary '\\,ݻ\Xp\03\N\','wp-content/themes/lithestore/page-templates/page-fullwidth.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ayU\l',_binary '-ԱSN\5=\mbO?.\Z\j!\Kv','',0,'?'),(_binary '\KX\A\6k','wp-content/themes/lithestore/page-templates/page-homepage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ns\$ӕ\	1',_binary 'TAT̃*:ΌnӋ8\sT\\O=U^k3Q','',0,'?'),(_binary '4VQ,u\0*31א','wp-content/themes/lithestore/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LwQ\YB$ɛ',_binary 'qXB\¡ރ\_x_.+uj\R\]u','',0,'?'),(_binary 'y\Ql`|\7t7+\','wp-content/themes/lithestore/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\tˢHX\',_binary '\%\M\n\ҍ\Kk\\Ys\\"|׫','',0,'?'),(_binary '\T\\3\;M\','wp-content/themes/lithestore/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\#\Z@g;?8',_binary 'u\\\nD4_Ts<\\\R\/0\\'/\\yN','',0,'?'),(_binary '0S\.\5­婅','wp-content/themes/lithestore/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\aH/M\\\n`\\',_binary '\ZI\Zm_\/>\qZ\7rd~d\\M','',0,'?'),(_binary '*\v\F`LGn','wp-content/themes/lithestore/sidebar-home.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\=\\"aA_l',_binary '\1\\	\&P[=*h\NvϏ','',0,'?'),(_binary '8\H\\\GnxE','wp-content/themes/lithestore/sidebar-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\\r\7Z\\Dܭ',_binary 'io\1\\-h7ći~b\<8\a\','',0,'?'),(_binary '\H&\H}4\+','wp-content/themes/lithestore/sidebar-shop.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\HQ,\\\(WoS',_binary ';\\\"v\mf;hG{\W<\\8\]\\','',0,'?'),(_binary 'x^]	\\QD','wp-content/themes/lithestore/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lȯ 5V\\\?',_binary '\\pAĬp\k\\F+\\0i}KLG:\\','',0,'?'),(_binary '(l#~\M\0\P\r','wp-content/themes/lithestore/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{D<\V\@n.',_binary 'id\?A%pyB\)L*o\\\<Y\\\'','',0,'?'),(_binary '9\YF\0','wp-content/themes/lithestore/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\\X/IdD\\U\r\',_binary '\Dٰ3b\l \gRC.Etr\ZeF','',0,'?'),(_binary 'u3;\\\N\\$\','wp-content/themes/lithestore/template-parts/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tW\R\Ǻ\C>',_binary 's/U\e5\'uu)\\Ψ\\u\\F','',0,'?'),(_binary ').;\ \W87՗','wp-content/themes/lithestore/template-parts/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\%5`',_binary '\\W\1=A2i\=9\6xB\\v\\'\Z\','',0,'?'),(_binary 'll\/\rS\:j\','wp-content/themes/lithestore/template-parts/content-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\o;Tך\0\',_binary '`>R>jz>\\*\}U\\3n l$\\k{~#ģ','',0,'?'),(_binary 'T6\QIY,ur','wp-content/themes/lithestore/template-parts/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lq\Q\n\^:L',_binary '%\C_Ҹd\_K<\!?F\\U+a\rJ','',0,'?'),(_binary 'd\rPk\\L\,h\','wp-content/themes/lithestore/template-parts/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\_\@\',_binary 'ಫaEߌ]Wj)\\,\҉kU7','',0,'?'),(_binary '8d\\\n]\W\','wp-content/themes/lithestore/template-parts/mobile-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\ܟ}	VGb\\"\"',_binary 'R3}\Im\\\ހS[\'\{\\','',0,'?'),(_binary '\\ZJ \W,Xk','wp-content/themes/lithestore/template-parts/popup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qWnUaCn]\E',_binary '\!U\ZX0a\ˌ\\E\H!h','',0,'?'),(_binary '&r%G_2\\','wp-content/themes/maxwell/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@z5a9Dg\',_binary 'O3\\<9D,9\ߐ RS=:\\\\r','',0,'?'),(_binary '#KHy(s\\!ƕ','wp-content/themes/maxwell/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.cR:_;iO',_binary '\\ ncD\M{\=oQ}c\\\g','',0,'?'),(_binary '\x\k\/EG5B[3e\@','wp-content/themes/maxwell/assets/css/customizer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\'س\\n,x*\oh',_binary '\\\\\n.\Z\f\\\4cW\ht\0vT','',0,'?'),(_binary '\~;꠿4:','wp-content/themes/maxwell/assets/css/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TCfw\rU1\?',_binary '\RL|o\0ԞaTFA\\\3','',0,'?'),(_binary 'o\\\\9\\0','wp-content/themes/maxwell/assets/css/editor-styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݐ\0\\\k\>ANO',_binary '!\Z\NX*4|\-+cb\/t\`L\E','',0,'?'),(_binary '8-T\R','wp-content/themes/maxwell/assets/css/safari-flexbox-fixes.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\u@\\\\\\\q\Pӷ',_binary '\Z@\Yr\"|/\yG2\c\/k\','',0,'?'),(_binary '=q\޶0b\Zd','wp-content/themes/maxwell/assets/css/theme-info.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\Z29%0Ǌ\',_binary 'jy/;1h\N\ZzM/L','',0,'?'),(_binary '\1KDDtrmp\','wp-content/themes/maxwell/assets/genericons/Genericons.svg',0,_binary ')ld*Z\\\b\',_binary ')ld*Z\\\b\',_binary '(\5\\\&HFI7l24=}`j\V\\\Bj4)\','',0,'?'),(_binary 'm\\O	\\\','wp-content/themes/maxwell/assets/icons/genericons-neue.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\\v\o!P\ Ğ',_binary 'l\\N\L\y\[\\\ƛr','',0,'?'),(_binary 'WhXw:΢ߠ\?','wp-content/themes/maxwell/assets/images/default-slider-image.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F,\:C\\9\03',_binary '\\\\N`g\4>\\\n\]\L2\0M3/','',0,'?'),(_binary 'ÿ?i\[5C>a','wp-content/themes/maxwell/assets/images/magazine-columns.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\HF\oţF\=',_binary 'Y蠇\=2!1\\e\գ\','',0,'?'),(_binary 'u~\"\zd,\\','wp-content/themes/maxwell/assets/images/magazine-grid.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<f\ܩG\l}\ᓻ',_binary '\[\d/.\.\gӣ\\\ OQ','',0,'?'),(_binary '\,\G\In=Ƥ\\','wp-content/themes/maxwell/assets/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\\n\s^8ëh\09_~',_binary '\\\\/E \VXƌcWȠ\\Qr\"\\0','',0,'?'),(_binary 'i<C׀ڂ\','wp-content/themes/maxwell/assets/js/customizer-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\\n=#Oڱ4i;',_binary '\\r~I]~5\0s\\SF8\\~8ׯb5','',0,'?'),(_binary '=\Z\\\t49\\j*','wp-content/themes/maxwell/assets/js/customizer-magazine-widgets.js',0,_binary 'G~Zh-',_binary 'G~Zh-',_binary '?-nG\\\n}}g߆	\׫A\~Pj','',0,'?'),(_binary '!9S*\\\oP\','wp-content/themes/maxwell/assets/js/customizer.js',0,_binary 'v\\n\s^8ëh\09_~',_binary 'v\\n\s^8ëh\09_~',_binary '\\\\/E \VXƌcWȠ\\Qr\"\\0','',0,'?'),(_binary 'S\JU\H\ފ;\','wp-content/themes/maxwell/assets/js/html5shiv.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ި஄UPbt\<',_binary 'Ry1Nhu¿\\\I}؞\\\)i','',0,'?'),(_binary '7C\2+UZ[\l','wp-content/themes/maxwell/assets/js/html5shiv.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@D\r)7c\\O',_binary '(B5sTP<pt%FI4\LRZ_Y','',0,'?'),(_binary '0\JOcoS4\-\','wp-content/themes/maxwell/assets/js/jquery.flexslider-min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,zn\1č/64',_binary 'S:T\-\,\<N{rP*d0HY\\\\X','',0,'?'),(_binary '\NHO[1\!-','wp-content/themes/maxwell/assets/js/jquery.flexslider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IZ~!\OՊ\\\',_binary 'vi\өٱX\ndkR{#\Wzx\T','',0,'?'),(_binary '\B`\w\1h9T\','wp-content/themes/maxwell/assets/js/navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\7w\0ףOl',_binary '\<[\fjX\Om0? FO\\@','',0,'?'),(_binary '@|mIǄJ\\\r\Z','wp-content/themes/maxwell/assets/js/navigation.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\wF\0\Qz_',_binary 'L\%z%\ca\{A\\\VV{','',0,'?'),(_binary 'ȍO\r!a\@','wp-content/themes/maxwell/assets/js/slider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\	\[Ila?E\',_binary 'd\0X\\we\T\`c\T\','',0,'?'),(_binary 's]RuE\\\','wp-content/themes/maxwell/assets/js/svgxuse.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\]\WtX\\',_binary '\e\r.:	p~2/ق,Se\c\jV.','',0,'?'),(_binary 'k\<\\O>(M\','wp-content/themes/maxwell/assets/js/svgxuse.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ġ Z޵\|\\\nʼ',_binary '=53no,H-\\h\q\S-F\"','',0,'?'),(_binary '\\\\\q\ubB[֖D','wp-content/themes/maxwell/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\"?\s0\n\I',_binary '\B\!+>ը84ط,̝/aLe\!P','',0,'?'),(_binary '\\J\m\'\\KM','wp-content/themes/maxwell/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[m\S_r\IԔ\>b',_binary '[=\ZqC\npsY\:g6(M\>Hw\"','',0,'?'),(_binary '03\s\V,oe','wp-content/themes/maxwell/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/˨\}>~s\hn',_binary '}$\\+aɐ\W\\g<\W\\׌Õ\r','',0,'?'),(_binary 'k>\YZ\\\8X/}','wp-content/themes/maxwell/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\\ǹ\\S\k/2',_binary '\~o:\Rl0l\\v\\r!>#n','',0,'?'),(_binary '\*\S\r\\\\=','wp-content/themes/maxwell/home.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\Tg&\\\wQ',_binary 'i;1##Xӕ9o/5\1P3{`Y','',0,'?'),(_binary '\鈬\8~\R=','wp-content/themes/maxwell/inc/addons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\u\Om\n',_binary '\\\44epnHA3a<[\','',0,'?'),(_binary 'ů@݈ذf:\\','wp-content/themes/maxwell/inc/back-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X0\S\'5\\\0L2fL',_binary '^x\6\[&\\DN/t\\C\ʨ','',0,'?'),(_binary '\09`\	K{cg','wp-content/themes/maxwell/inc/customizer/controls/category-dropdown-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\.T\\\d\r1',_binary '\\F\R\\ߕÎW-&\\x\)\J','',0,'?'),(_binary '7Սb*\2J򗯐','wp-content/themes/maxwell/inc/customizer/controls/header-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '俣*h64\S\}x ',_binary '\0viZ\qp\2)3\Z\W\n\񗏯v','',0,'?'),(_binary 'Y\"{,\Sqw\8','wp-content/themes/maxwell/inc/customizer/controls/links-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wh\;\\d',_binary 'ǒ_x ӧ\ ۞d\\+D','',0,'?'),(_binary '\\\H/Y\Z	\\ZB\Y','wp-content/themes/maxwell/inc/customizer/controls/magazine-widget-area-control.php',0,_binary '0v0d\5M\\q',_binary '0v0d\5M\\q',_binary 'V\ޅ:\\ Ob\\[UUoD\'','',0,'?'),(_binary 'Z~\\\N2\%','wp-content/themes/maxwell/inc/customizer/controls/plugin-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'As9v\!l<\',_binary 'KB\+\\9h\\Gp\\H\\\`~','',0,'?'),(_binary '\B(\AG\\R\W','wp-content/themes/maxwell/inc/customizer/controls/upgrade-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r+\i\\\*\8\\,\Z',_binary '~ίb&YB/E\8%$&l\\m','',0,'?'),(_binary 'WͤMIn\\\\','wp-content/themes/maxwell/inc/customizer/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\z\&T\Hk<\',_binary '\\^\ڬco\qD3}\?BE/','',0,'?'),(_binary '<D\\GDеI\\','wp-content/themes/maxwell/inc/customizer/default-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٰU\Q\\v',_binary 'R\R\,q[@\c\n>jN\\\wM','',0,'?'),(_binary ';SI\\r>zt','wp-content/themes/maxwell/inc/customizer/functions/callback-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N<\*\\Pbm8]\r\',_binary '-%V\-lt\u6َIʟ\\\rB?.i	`','',0,'?'),(_binary 'q\<0\"}`\\v#\','wp-content/themes/maxwell/inc/customizer/functions/custom-controls.php',0,_binary '7 ؔ\0j(+',_binary '7 ؔ\0j(+',_binary 'PR㼾\\8W71)g\\\H|*\','',0,'?'),(_binary '#x-\"Nf.}','wp-content/themes/maxwell/inc/customizer/functions/magazine-widget-area-control.php',0,_binary '0v0d\5M\\q',_binary '0v0d\5M\\q',_binary 'V\ޅ:\\ Ob\\[UUoD\'','',0,'?'),(_binary 'ϙ\Ŝj','wp-content/themes/maxwell/inc/customizer/functions/sanitize-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\n\\/V/4\\',_binary '5k\\\\}]/\\j\6oh\Eȷ\f\\,P9U','',0,'?'),(_binary '3ɪG8m\Ҧ !','wp-content/themes/maxwell/inc/customizer/sections/customizer-blog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-ka\\ĒI',_binary 'T\\\"\\p\\<\߁ӽ\PW2','',0,'?'),(_binary '/\T7,xH\\IpJ\r','wp-content/themes/maxwell/inc/customizer/sections/customizer-general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r8\0sQi\n\Ss`',_binary '6\\Kpc\Zz \#y\kƷ~\ʼ[;','',0,'?'),(_binary '(\\U\`og','wp-content/themes/maxwell/inc/customizer/sections/customizer-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^F\\Z#h\4]',_binary '\\\Z\\Z\\>GM\\&D\4V','',0,'?'),(_binary '\cS\`/\/K','wp-content/themes/maxwell/inc/customizer/sections/customizer-magazine.php',0,_binary 'Y\\F`#]N\',_binary 'Y\\F`#]N\',_binary '#M5ܬ\L\"\'\4\C\]\W{e\','',0,'?'),(_binary 'yt\\к\G\ئ@','wp-content/themes/maxwell/inc/customizer/sections/customizer-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')J\|\\\\p8\|',_binary '\\\EhϤ\L\ϝo\\7~hI','',0,'?'),(_binary 'G,\\cms\','wp-content/themes/maxwell/inc/customizer/sections/customizer-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\\\\&@\H',_binary '\\\\"\;\=\?\e_\\I\˥','',0,'?'),(_binary '\p:pzL;L','wp-content/themes/maxwell/inc/customizer/sections/customizer-upgrade.php',0,_binary '\D:X\\'\\ϐ',_binary '\D:X\\'\\ϐ',_binary '\\\kM`D>N\\\3URJy\\5ѕ1','',0,'?'),(_binary '\%8s\t)M','wp-content/themes/maxwell/inc/customizer/sections/customizer-website.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\OGu^t?',_binary '$\a\U\\\\T7\Ƙť\\"<o@e','',0,'?'),(_binary '\UhX\\#.2\\','wp-content/themes/maxwell/inc/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3@Op\\s',_binary '}s05\Ĵ@>y\iC+\&9 G\͖!0Y','',0,'?'),(_binary '?;\\'?\\\i\','wp-content/themes/maxwell/inc/gutenberg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@Uc|\\r~d\"',_binary '\(i^Y+va{\K\\\A\"\\!b(}','',0,'?'),(_binary 'o#\%\}R\\̌&','wp-content/themes/maxwell/inc/icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\\0sD\+H\\r\\+',_binary '&kҊ\4\5 \\r)f=ÆG','',0,'?'),(_binary '~n\3dc\v6ad$\','wp-content/themes/maxwell/inc/magazine.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';s\'\\\\CN!',_binary '\b&\ǟ\bp\\+\LQ\D1\\Epݧ','',0,'?'),(_binary '=pN_Me\r\hj','wp-content/themes/maxwell/inc/slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4V\2݇=}\Q3k',_binary '·G,=\O\ru\#\ʌs\\\\\\\\','',0,'?'),(_binary ',\d\ŦvBj','wp-content/themes/maxwell/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ҩ\S+\m}\\(r',_binary '\H\hb^[8%!;\^\`	ˌŠ\\]','',0,'?'),(_binary '\4\\\\K6Mtg\','wp-content/themes/maxwell/inc/theme-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PWD\\S$(!]1',_binary 'dp*\%\<|uiM\y','',0,'?'),(_binary 'o!a$\f\Cp','wp-content/themes/maxwell/inc/widgets/widget-magazine-posts-columns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\Sf_i:\',_binary '\@MF4r\6#w\\T4T\\YO\n','',0,'?'),(_binary '\48&\n\=Ĺ&㪪%','wp-content/themes/maxwell/inc/widgets/widget-magazine-posts-grid.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XqO\\>d;G',_binary 'Qvq\TP+\q&ƶ>\"\','',0,'?'),(_binary '9$.\'wǱ^|f\	','wp-content/themes/maxwell/inc/wptt-webfont-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '鈞Y7\\sk',_binary '\2hAl˹\'E7V?ǖĲK&1*','',0,'?'),(_binary '5\\\\@M\'u\','wp-content/themes/maxwell/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',OJ\\Nڵs',_binary 'o;tYj\3CE.5T7Ǻy>	4~','',0,'?'),(_binary '.G\6Qx{Qz\','wp-content/themes/maxwell/languages/maxwell.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"mxoǸ\isV',_binary '\F\>\\(0B+\\h\\','',0,'?'),(_binary 'M\n ؄T\\','wp-content/themes/maxwell/languages/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\1d8B\0\\0\\\~',_binary '\\!5\\X\YF\\\q_sy\Z\\q|n&\|','',0,'?'),(_binary 'I\Bn\\w\+:uy','wp-content/themes/maxwell/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '۠׺pw<\|N\\g',_binary 'qP^w\(\ri9Lsbd8{Ƿ\ZF]>\','',0,'?'),(_binary '\9\Sm\k^!$3','wp-content/themes/maxwell/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Ї\0s\"\P\',_binary '-+{\5Pe^\Xo	?82oH,R0','',0,'?'),(_binary '\\\y\\n2\HkQy','wp-content/themes/maxwell/rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AsL8\B\SB\)',_binary 'z\L\\bp9\fc- %@n\\"','',0,'?'),(_binary '\t\\4>\?xM','wp-content/themes/maxwell/screenshot.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-4\ɘ\!\	vU',_binary ':ȣaɍ,-IW\"L]N\\bUw~','',0,'?'),(_binary '}\\'ls;#\k','wp-content/themes/maxwell/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ucz\\\!\{',_binary 'd\\|6\94\ETjj\}\\pp4>{','',0,'?'),(_binary '\r笸=\E\\'}D\','wp-content/themes/maxwell/searchform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~5	as\'\V',_binary '|\nS(Z!CvvR۞vP\','',0,'?'),(_binary 'P\x\'\V[hZ\','wp-content/themes/maxwell/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' v\\\}xVjT',_binary 'F(nnuo鑌yx^?\\\;\\r\\}\\Z','',0,'?'),(_binary '\'nL\s\\\?K\','wp-content/themes/maxwell/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'B\\5\\d\p\`\\',_binary '\"Ơ\?\u\r\A\\\ځ\\Fl8','',0,'?'),(_binary 'g܏yA\S\','wp-content/themes/maxwell/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\o\\-/yu',_binary ']}z\\\L\"S\n5$uX\\8ϟ)','',0,'?'),(_binary '(ưP\h9','wp-content/themes/maxwell/template-centered.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\sY\}\*pKI\',_binary '&b.[\\ap;\f{C #','',0,'?'),(_binary '\\\#^F\\Q','wp-content/themes/maxwell/template-fullwidth.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\az&\\0',_binary 'I;mѿ\F2m\w@$Vm5h\f','',0,'?'),(_binary '\+A7\','wp-content/themes/maxwell/template-magazine.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '):/~^e',_binary '6\'8mEP	iTvv.\\Z\p\','',0,'?'),(_binary 'Xf@\\~b','wp-content/themes/maxwell/template-parts/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\O8%T)>',_binary '\bA\oeH[V\^\xn5Ki>xu\c','',0,'?'),(_binary '\&\8\+UU\\r','wp-content/themes/maxwell/template-parts/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\pWU)1xF\',_binary 'P\s\\g9\_#\\\OE@\C	\\C','',0,'?'),(_binary 'Wݿ{ډ\F\R6&5','wp-content/themes/maxwell/template-parts/content-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%ÁO\\}',_binary '/x]\8$Ot\\	\V\0:','',0,'?'),(_binary '\E\\ZB\\\"k\','wp-content/themes/maxwell/template-parts/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rEq\',_binary 'L+OkrQ5g\L\ra)\\\LN-2\\','',0,'?'),(_binary '_~{sY)','wp-content/themes/maxwell/template-parts/content-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\\j\hy\',_binary 'SO\\vy\\4\͇e\\΁I\\\Ց\r\','',0,'?'),(_binary '\O䲌,<SU\\','wp-content/themes/maxwell/template-parts/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%z\rV\\c$[',_binary '\چVhP\:5\\ċbGl\\ǀ-','',0,'?'),(_binary '\#\"\R31U\','wp-content/themes/maxwell/template-parts/header/site-navigation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=6\}cVL\',_binary '\S,W-&\\Ki@C\tO\:','',0,'?'),(_binary '\WmR\\?ã\l','wp-content/themes/maxwell/template-parts/post-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!4ދ\kLW',_binary 'c\^C\\\Aw\O\\w\\'N S','',0,'?'),(_binary '/Ƹd*\hT-u\','wp-content/themes/maxwell/template-parts/widgets/magazine-full-post-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iJƕ\\e\m',_binary '3<o\RN\\]-6N\UI\4\\n\??','',0,'?'),(_binary '7iz+\ŋp','wp-content/themes/maxwell/template-parts/widgets/magazine-full-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GP\11nU3\',_binary 'LV\\")\p:\@\rw:\"\','',0,'?'),(_binary 'VLbq\,D+\.p2@','wp-content/themes/maxwell/template-parts/widgets/magazine-large-post-horizontal-box.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\0 @bsU<^\\\',_binary 'A*:\\E\\1nfQz\\.\^w\G','',0,'?'),(_binary 'SM\%m\\\\\','wp-content/themes/maxwell/template-parts/widgets/magazine-large-post-sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[|I\\,\e2',_binary '\\0X\"l\@\nfk\<\"&JׂMF','',0,'?'),(_binary 'Qijs/Y\','wp-content/themes/maxwell/template-parts/widgets/magazine-large-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\|`\\m\\',_binary '7\\+Sgz{cwȥ;\\'Sk^j]&','',0,'?'),(_binary 'c\.m\\g\FmТ92','wp-content/themes/maxwell/template-parts/widgets/magazine-medium-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1\5uآбӁ',_binary 'Q\ڬ\"-\g\c~\\n\-~\\ي\','',0,'?'),(_binary '\'7i{&\\H~7h','wp-content/themes/maxwell/template-parts/widgets/magazine-small-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\W\),7	$W',_binary 'AT\v\\\Bf\Sc\i@ތ\D','',0,'?'),(_binary 'EBG5\>\"D\ES\','wp-content/themes/maxwell/template-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8䊼ᇞJ\Vi\!',_binary 'Vg\0\m\\\Gյ\0\VdE\n\'','',0,'?'),(_binary '_YH?\6w','wp-content/themes/mckinley/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\\C;\'\\\\',_binary 'c.O\p\C\\\!\#	\f\!','',0,'?'),(_binary 'r\r\n6\ئ\ց','wp-content/themes/mckinley/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '56)-/',_binary 'n-;\1\\vxVKy(Ԫ\ᰂ/','',0,'?'),(_binary '\\T>\kW<','wp-content/themes/mckinley/author-bio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6.1/\в\\ 9',_binary 'L:t\	U^r0bҳ_4RqZ\','',0,'?'),(_binary '%@?E֭&^%\0\"\a','wp-content/themes/mckinley/author.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\0ϖd\*y6pt',_binary '\!-\\\_EX{յI\b\o','',0,'?'),(_binary '~m\\ \\\z','wp-content/themes/mckinley/category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',kgok3\'<\<\|\',_binary 'B\U)\z\q̦fuQ\\rS\O','',0,'?'),(_binary 'V\c_qe	g\kQ','wp-content/themes/mckinley/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\"\젮x\E',_binary 'ILĐ\ȯ\rj\3\vǾ$ݩ','',0,'?'),(_binary 'oc%\\\\&햽','wp-content/themes/mckinley/content-aside.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ԯG6\"\\dx4',_binary '2\%t@_<FݨS;\nvZx3\','',0,'?'),(_binary '\0\9\\+\\i%*M','wp-content/themes/mckinley/content-audio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e>;\?@?}\',_binary 'vUu-M{K\\\\7\"~8\\RWwI','',0,'?'),(_binary '\\*\K\\Հ6tս','wp-content/themes/mckinley/content-chat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\r\\"\\\+\f',_binary '&W)̋=o\\W~2`\E+','',0,'?'),(_binary '\XͿ87W\','wp-content/themes/mckinley/content-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\B\R[sB_\0',_binary 'ѤR\\~Yܓ9\+w\\Y{AQ\0V\Ճv','',0,'?'),(_binary '\r>䳗fjȦ\͸\','wp-content/themes/mckinley/content-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\xE]چ?ŷI',_binary '\׆\\\0\Ij/k,\\\ؼ\AbM==','',0,'?'),(_binary '\4\\L\`1Q0/','wp-content/themes/mckinley/content-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\λ\WmAX\\\!\',_binary 'f;\n|`k\2C\F\?:	5]̯\','',0,'?'),(_binary ']-94\da`][~','wp-content/themes/mckinley/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I$+\5\)',_binary '\3i\ikc\f#\t_Uu\','',0,'?'),(_binary '\r/Z\*\'o\	=9`\','wp-content/themes/mckinley/content-quote.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\'>j\ӆ;_',_binary '\\9\p\(\|^  %R\\0&B\#\,','',0,'?'),(_binary 'mLv]\OUYI','wp-content/themes/mckinley/content-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dA;%ȋ^\!I',_binary '=F\0\0\Z7\!uV44u!Q\','',0,'?'),(_binary 'H\\\Ao7\W\L(','wp-content/themes/mckinley/content-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H\?2AL\6',_binary '\\ixYH\QL@dYO\A)\5T-:','',0,'?'),(_binary 'l^o\DFA\\0','wp-content/themes/mckinley/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#5\z\7\s=c\\+\',_binary 'iڭ\Ɂ`v\rLUl2T\nVh<\n\','',0,'?'),(_binary 'm\&kD,\iXZ','wp-content/themes/mckinley/css/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\	6\\ٻ',_binary 'HH\\R|\c:\\Q\\Z(	T\\\&','',0,'?'),(_binary 'KK5LRe\@\X','wp-content/themes/mckinley/css/flexslider.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ss@3D',_binary '\QT7*)\1=\8$\p߲+\:d','',0,'?'),(_binary 'r%Ky>c\8\','wp-content/themes/mckinley/css/ie.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\R\\vg',_binary '\^^xkg5s\u]<\ĉB(\\ImI\','',0,'?'),(_binary 'z7|\\NT\`_\','wp-content/themes/mckinley/fonts/COPYING.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B;\a`GԢމ',_binary '\+P4\g.\\{\\\^W\/![qu','',0,'?'),(_binary '+yA\\ \l|&\D','wp-content/themes/mckinley/fonts/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\Mi\\HjJBc',_binary '\0v1\s\N\>cID٦\I\0-','',0,'?'),(_binary '\d\~븽و1\\','wp-content/themes/mckinley/fonts/genericons-regular-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l:q\\r<\\b\\.J',_binary 'ʦDI\XVfEW\e\G]\q','',0,'?'),(_binary '5\0u\@\]t','wp-content/themes/mckinley/fonts/genericons-regular-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.X\rh\J::0t4\',_binary '\ $i1a\0EQ\aQ\\2F\\\>0','',0,'?'),(_binary '2J\\!\\\5\ސ','wp-content/themes/mckinley/fonts/genericons-regular-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\\>S3c\',_binary 'U\0i\q ,1øώ\,\','',0,'?'),(_binary '\\\'0\\lA\\vE','wp-content/themes/mckinley/fonts/genericons-regular-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '85,\yâ(\U-',_binary 'ѯf7yӖ\us#\i$	\\Xi </j','',0,'?'),(_binary 'ς^?oF\ɽ\','wp-content/themes/mckinley/fonts/genericons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V(M)A-Yʏ',_binary 'n\\ \/J\\-+\\\r\X*JiH','',0,'?'),(_binary 'TK\\Ae\\\\9\','wp-content/themes/mckinley/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\\\ei\0,',_binary '@\\\H\b\\"c\\r\Z\rL\\\\=','',0,'?'),(_binary '\BޅX\"Rr\q','wp-content/themes/mckinley/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P)n\\!O(\,',_binary '|Gz\\\\\ej}(\A02o\\\N1\D\\"','',0,'?'),(_binary 'afX\r\\|\X9','wp-content/themes/mckinley/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	wye&\\Z@\n\',_binary 'Gk6`ŉ=^\\RE\{(ͶĞ\\KB','',0,'?'),(_binary ':<Jj卶ǤF','wp-content/themes/mckinley/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HH\ư^n\\\=\\v',_binary '\\W\k:ېD\n1b	Š4I咢QV','',0,'?'),(_binary '4\N[e$;gN','wp-content/themes/mckinley/images/flexslider/bg_control_nav.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\q\nV~*\',_binary '\X3u\M\tJEY\aSh\F\V\H','',0,'?'),(_binary '\$\\\87*i','wp-content/themes/mckinley/images/flexslider/direction_nav.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e/\DC\6h\\b',_binary '\\?\f6o5 \PW\\\N΋POYۺ+{','',0,'?'),(_binary '`\m|4\02\','wp-content/themes/mckinley/inc/back-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڥ0s4\nD\\',_binary ' \Z\^t\ʯ3i*I\\.\\\Dp\','',0,'?'),(_binary '\l]&$ނ\\r\4','wp-content/themes/mckinley/inc/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%󽱇<\\0b',_binary '!(0U Y\\\C\\ӊgQw','',0,'?'),(_binary '\\\ \}u\','wp-content/themes/mckinley/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GkƧ3\>',_binary '\Ed4I\\?	Lt,{MaXl<\t','',0,'?'),(_binary 'BYLZ\r2	A³','wp-content/themes/mckinley/js/functions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|fpDv\K/W>h',_binary '-\^\\^ ?\\\:\	f,1','',0,'?'),(_binary ';\^\7̱x\n','wp-content/themes/mckinley/js/html5.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EsJ[W\/\JLi',_binary 'Ԧ\7\RVWYwBU$!\\\d&SF7','',0,'?'),(_binary '0/)_F\\','wp-content/themes/mckinley/js/jquery.fitvids.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.)y ',_binary '\IWnP\EL\h,pdJsb\/hc','',0,'?'),(_binary 'ȥvl\$ \\rˈ|','wp-content/themes/mckinley/js/jquery.flexslider-min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xSb93rC\:Z',_binary '2\r\!=tC;8\\nUu{sNg','',0,'?'),(_binary 'R\\\	S+\]D','wp-content/themes/mckinley/js/theme-customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\#e:3\E',_binary 'C\\רb\r B\\ϝrd.','',0,'?'),(_binary '\BĀ}aqz\\\p','wp-content/themes/mckinley/languages/mckinley.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7=U\\',_binary '|q+\\\\\$mc\kKAw+J(','',0,'?'),(_binary '\\]5&\ۙ嫫','wp-content/themes/mckinley/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^D:\LϹ>',_binary 'i&\Q͖9z۱\=\\E@^f\','',0,'?'),(_binary '\)\0\\&9)','wp-content/themes/mckinley/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\\\t0P\"9f',_binary '\ewM%p|mN&4\ҩ\'\\(','',0,'?'),(_binary '\\\X4B0ql','wp-content/themes/mckinley/rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z\s5J\',_binary 'llVdTKy\!O\\S<F\\\\t,\ʊ','',0,'?'),(_binary 'הdG\\N.7','wp-content/themes/mckinley/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\;qx\"1\'\\4',_binary '8K\B\'\oU;\^1r|[B\C\','',0,'?'),(_binary '!!\Z<\7','wp-content/themes/mckinley/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\Ԙ:I@U\\\\\e',_binary 'pD/\n;\r14\\G{\n\\3\\8E*','',0,'?'),(_binary 'K,hhlH9&$_\','wp-content/themes/mckinley/sidebar-main.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G+{\(mû\zd',_binary 'Uһ>2<\0t\"N\Sa\՛ֽK.ENtc','',0,'?'),(_binary '\\jg`&','wp-content/themes/mckinley/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6^H\0\Z8N\',_binary '/c[}}1p\d\KkS$D?Փ','',0,'?'),(_binary '\\\?҈\0','wp-content/themes/mckinley/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\4ON%CD',_binary '\F]\\'MT:\\rh&xB\\݈=9','',0,'?'),(_binary '\\r,+x.0\0\','wp-content/themes/mckinley/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\0\޽\ݍ%6',_binary '\\\",[7\GB\!\\\','',0,'?'),(_binary 'h~Cy\\T','wp-content/themes/mckinley/tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\X\,\',_binary '\\ \&\Re[T\\\V\x\%g$\H\','',0,'?'),(_binary 'aEৈF@#c','wp-content/themes/mckinley/taxonomy-post_format.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\]\qN\?N\',_binary 'P,:<\Zo^\-\`9\7|p ','',0,'?'),(_binary 'dY\}\e8\\r\','wp-content/themes/moesia/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0LAo\\qw',_binary 'Ң\v	!g\u\/ݥՉ5\Ɩq\C\ƛ','',0,'?'),(_binary '\\¼+\\\\\\','wp-content/themes/moesia/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wZ1\K)\"w#S\o',_binary '\Z$ⵓ>4; u\\"\R\(\!I\O','',0,'?'),(_binary 'bH]N\\BQ>o','wp-content/themes/moesia/author-bio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\¥\\\^\&7tL',_binary '^\F\\m\$U\>\\\&\\\\G\n,','',0,'?'),(_binary 'Y_Hh\<\Zy','wp-content/themes/moesia/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fw\vt-\RG|9',_binary '}Zh\)\\\jL\\gP;\\O\ۃ߆oO\','',0,'?'),(_binary '_\]_!\\č','wp-content/themes/moesia/content-large.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`Y;@^-/\\7BV^',_binary 'g\E\R\'\H}\1V\\ɰ}_','',0,'?'),(_binary 'wS#T\@','wp-content/themes/moesia/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0(, \]\?,E0',_binary '\_\'-yG4Hh{8+(\r--))!','',0,'?'),(_binary '\!{\%ة%hw','wp-content/themes/moesia/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YŌ\,I\#\?\@',_binary 'Y_Ľ\6\L9\\Z\T\!Ȓ($e+','',0,'?'),(_binary '\~x^0՟5L','wp-content/themes/moesia/content-project.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\ߣ\Ϭ',_binary '\x7\r1M\\֏SB655\'\"M>÷','',0,'?'),(_binary '\\hftή\\Ec\\\','wp-content/themes/moesia/content-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ݎ\7[\\\OQJ',_binary '\\r`\@7j\-M\ђʯ:*\Zd\&rn','',0,'?'),(_binary 'oӂ\UN\\z','wp-content/themes/moesia/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$[F!\\'Y+InP',_binary 'a$\\da{5x\D4hLټ\\\n\','',0,'?'),(_binary '/n6)H\~\\5B\z','wp-content/themes/moesia/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=0šgPYA{?3',_binary 'J	.\\,\I;/I\s\2\\','',0,'?'),(_binary '\]\\\|\ewo$\\Z','wp-content/themes/moesia/css/animate/animate.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\#\ҹ;Tq\2',_binary '\2Ry\\6O\yR\~r1vU\<\','',0,'?'),(_binary '>H[G\?0\4','wp-content/themes/moesia/css/animate/animate.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eX\Ul_5^\',_binary '==L\[Ӧ-\J\ZWGGsQ\VN\;','',0,'?'),(_binary '\\|,ۓZ3\9\r\F','wp-content/themes/moesia/css/bootstrap/bootstrap-theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\0\r:&\Zik',_binary 'T	P\n^\d+Sharyq\^P\U','',0,'?'),(_binary 'o֩>C\r\%\\','wp-content/themes/moesia/css/bootstrap/bootstrap-theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\\\b-T\',_binary '\Zn\1MbŲւ+V\Zd\\5ƣ','',0,'?'),(_binary '\d$\a\\\뻓','wp-content/themes/moesia/css/bootstrap/bootstrap.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XhPzȁ\D)\m',_binary '\p\}\ن%9p\\5+϶y\|\\K^','',0,'?'),(_binary ':\Hv\\N]\\k','wp-content/themes/moesia/css/bootstrap/bootstrap.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\\\}\S\5\ذ',_binary 'ʐ\\'\\;wpZ\\ղ\Jme\Z\|','',0,'?'),(_binary '?\)5\\8\##X','wp-content/themes/moesia/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\'\]>\\v\\2\\\ZM',_binary 'qoO$K]g3\nÒѐ\~\(R','',0,'?'),(_binary '\b\IB[\VX','wp-content/themes/moesia/fonts/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ĕeHix[\\`!fJ\',_binary '\\}\˹t$\)\ʦP\1~܀\','',0,'?'),(_binary '6@\0X\"ʿ/u\|D,','wp-content/themes/moesia/fonts/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&PS\'Z5Z}\\',_binary '\\qa#T0\Tn=\\8X\nBg%΀L','',0,'?'),(_binary '4\\\N!=[','wp-content/themes/moesia/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gOP҇č\\',_binary '\~8 ir\\nPp\n2\5DahBzP','',0,'?'),(_binary 'dEηWX\mц[է','wp-content/themes/moesia/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\murI1G\',_binary 'Lr7D@y\ɂ]NK(\ti\G9\\Tm=','',0,'?'),(_binary '_-;\\\\xv','wp-content/themes/moesia/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hq\\A\i',_binary '	q68xօ\\\s\rN~.Zخ[\"','',0,'?'),(_binary '\3\r\n\\\>\T\n','wp-content/themes/moesia/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nq*\\ZF)2',_binary '\&4\"\rQjX\mN\"\\?Po\\\\\?','',0,'?'),(_binary '\\^ny\\\','wp-content/themes/moesia/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\\\ 6>',_binary '\@⣂L\EQ\\(ieq[N|&\Ð\','',0,'?'),(_binary '\WJvy+9\W','wp-content/themes/moesia/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\ݩ*N4L{',_binary '/\\no}yc~¥\\\s߀\','',0,'?'),(_binary 'E\i8z\','wp-content/themes/moesia/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݷ<f)\&<i]\l',_binary 'psW\	rl%v:\-nv<q%#\[而','',0,'?'),(_binary 'PgĐL%\p','wp-content/themes/moesia/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jc\/FIf\',_binary '1]ě\R\E \=u\uQd\g\b\','',0,'?'),(_binary '\ \ZĘ\G>\\:o','wp-content/themes/moesia/home.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x_dIO(',_binary '\'\\\\~i#x\^\\,2\{e`e','',0,'?'),(_binary '\\ʄ\p2r\b','wp-content/themes/moesia/images/header.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r^D0\$c#0a|',_binary 'P\Ʉ\ \\3\Cv\J꟤#\ѫ\\X+','',0,'?'),(_binary 'mܼ/!^\"\\\','wp-content/themes/moesia/images/pattern.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0(Ex|p@\\\',_binary '\\#\WH\V\\H)Ý2b!','',0,'?'),(_binary '\\nW\"kL\x','wp-content/themes/moesia/inc/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<i!Ѐ\x߉U[',_binary 'OfY\_\\\?X\Obn=\%\ @\X','',0,'?'),(_binary 'I8e\\\\\P','wp-content/themes/moesia/inc/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ma\ANQaS\\*',_binary '/LYB\z<˳\q&C\rrGi@j\\#e\','',0,'?'),(_binary '&b+\H\\\','wp-content/themes/moesia/inc/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\.5+\"4BW]\',_binary '\Zô:Fz_./XY\	\'ǐ0-/\\Y\','',0,'?'),(_binary ']#_\0$TwR\','wp-content/themes/moesia/inc/jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\97AVV\\\\',_binary '\rrXտW\ɽxƼJp','',0,'?'),(_binary '3C|;^\E','wp-content/themes/moesia/inc/prettyphoto/css/prettyPhoto.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ӎg\\}\AX\n',_binary '\Z@/)L\\	HԈ*޻\;\|e&ЖX','',0,'?'),(_binary '=*nkmd/ȥx','wp-content/themes/moesia/inc/prettyphoto/css/prettyPhoto.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\$С\\,\\&2#\',_binary 'K-(.\\\\6_ejj\\"\˸','',0,'?'),(_binary 'ap&\/\>\pB','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_rounded/btnNext.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nnJb<',_binary '_l\`\'R|\\]\\'\\\\CP','',0,'?'),(_binary 'i\Os\#\9','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_rounded/btnPrevious.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VW@ʲ?\y\\',_binary 'RʓQ\W	C\nذ\qI','',0,'?'),(_binary '(\˾\\'2\\\Z>T','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_rounded/contentPattern.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/-:n~⻯',_binary '\Z5a\\\8)Z\|RX\\'\\\','',0,'?'),(_binary 'P\N\\2@2','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_rounded/default_thumbnail.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\\'qsh` qxZ!w',_binary '=s\{[\\H\\g|]m/a} e+JV','',0,'?'),(_binary '\y%\T8\qj-i','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_rounded/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\n\\\\\\0\Tb',_binary '!P\\\*\\\Z\*Z\\\C5֚\ \\H','',0,'?'),(_binary 'PJH\Y\\\YDQA','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_rounded/sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'$b\\3\r>y\',_binary 'Mx\2şRe}etqѮ7&\[y\\','',0,'?'),(_binary '\e\W1\Jtm','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_square/btnNext.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nnJb<',_binary '_l\`\'R|\\]\\'\\\\CP','',0,'?'),(_binary '\"a3ue<T[k}1','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_square/btnPrevious.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VW@ʲ?\y\\',_binary 'RʓQ\W	C\nذ\qI','',0,'?'),(_binary './~̭f\r8VD\>','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_square/contentPattern.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f`\R;\ޓ*Sp',_binary '\:A\"6%ؖ\Q\n\<a\r','',0,'?'),(_binary 'lGXu7`\u\nN','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_square/default_thumbnail.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\\'qsh` qxZ!w',_binary '=s\{[\\H\\g|]m/a} e+JV','',0,'?'),(_binary 'Dv3\\nE\\\','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_square/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\n\\\\\\0\Tb',_binary '!P\\\*\\\Z\*Z\\\C5֚\ \\H','',0,'?'),(_binary '\\\I\\q3\\f','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_square/sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k%`9~ؑ\\\{(',_binary '앞G$Mk⳸\\\\&[?.Y%s\','',0,'?'),(_binary 'Q2\ң\\K\W#\)','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/default_thumb.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>|y0WMQ=z^m]',_binary '\ŃPg2\h\O 㷽x0Y\Wtm]\','',0,'?'),(_binary 'x\r<\ʛҝӸ+p\ZM','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\iu\=\',_binary '\\b!\B\b\\"wqsMb3\o\','',0,'?'),(_binary '\"\\(kA\0\s%@','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hm\H0M?,B\',_binary '\\\\[yToq\?q}duNNA','',0,'?'),(_binary '\r^\\\.W\\A~','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/sprite_next.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]g{{=/\\`',_binary '\n_EH\Qާ\EM=V&i.\Z','',0,'?'),(_binary '\\\Z\\j4uj','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/sprite_prev.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\}\\\0Af\@$ŵR',_binary '53X)\>OAA\:\ A\U\','',0,'?'),(_binary '8iܴ\>ȯp+ \','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/sprite_x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&uY\"[\\>4˄',_binary 'g0\{	`\m\Y%\-u\!\XO','',0,'?'),(_binary '\"\\\U0\z)\s\','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/sprite_y.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	nGLF\x\!',_binary 'Aໍ{dWj\se1AƸK\֎\K\+2','',0,'?'),(_binary 'X\"]\2\4+~','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/btnNext.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Կ@\s!N\\\\~',_binary '\\rbw\\I_kt\>\X2sFc','',0,'?'),(_binary 'tl\\P#','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/btnPrevious.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q$[NH-\\',_binary '=h\\7k=n^\KpK4dHT','',0,'?'),(_binary '4\\?&OE\"K','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/contentPatternBottom.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\Zbt\\j',_binary '\\Pə\1\\\\h\N<0\\2M','',0,'?'),(_binary 'irN\0j\2\i\n~','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/contentPatternLeft.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';Vi$̸\\M',_binary '0\z\{\\G\\uJ$\a\^/i[mU.9l','',0,'?'),(_binary 'ۍ\\Ȃ\\,\k','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/contentPatternRight.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't3\9\iq\]a ',_binary '遲yWES\\h[hzfd{z\WG\p0\k','',0,'?'),(_binary ')b_	\;\\T','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/contentPatternTop.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\o\\NIǟ\጖',_binary 'ũ\=\\z\n\\_\\¿9M{','',0,'?'),(_binary 'TUi\\>^\Ɠ򓁥I','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/default_thumbnail.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\\'qsh` qxZ!w',_binary '=s\{[\\H\\g|]m/a} e+JV','',0,'?'),(_binary '!}4\N\蟍Ͼ&','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F0DWo\\\\Zd\1',_binary 'ߐ\h}yI\=? H!R\_\\\)\{V','',0,'?'),(_binary '\,E:\\ @k\ϟ\','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\v\\\(7:~k#',_binary '\6̒\aN\\ln\w\g!lD\n','',0,'?'),(_binary '\@\X\{lt','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_rounded/btnNext.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nnJb<',_binary '_l\`\'R|\\]\\'\\\\CP','',0,'?'),(_binary 'e%NN9ףDE}\','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_rounded/btnPrevious.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VW@ʲ?\y\\',_binary 'RʓQ\W	C\nذ\qI','',0,'?'),(_binary '`pb\/\\n\u\','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_rounded/default_thumbnail.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\\'qsh` qxZ!w',_binary '=s\{[\\H\\g|]m/a} e+JV','',0,'?'),(_binary '\jб\:X\%B','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_rounded/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F0DWo\\\\Zd\1',_binary 'ߐ\h}yI\=? H!R\_\\\)\{V','',0,'?'),(_binary 'jZ\a\TOz\'','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_rounded/sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E,bJgC`\\',_binary '\']0\CJ\J랚x?\޸F\\\nz93','',0,'?'),(_binary '\\r\\@k\r\\W\9z','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_square/btnNext.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nnJb<',_binary '_l\`\'R|\\]\\'\\\\CP','',0,'?'),(_binary '<\"\1ᛌ+a\\','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_square/btnPrevious.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VW@ʲ?\y\\',_binary 'RʓQ\W	C\nذ\qI','',0,'?'),(_binary '9i1?.+^x4&','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_square/default_thumbnail.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\\'qsh` qxZ!w',_binary '=s\{[\\H\\g|]m/a} e+JV','',0,'?'),(_binary 'Do\"V9Tv\Z`#\n','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_square/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F0DWo\\\\Zd\1',_binary 'ߐ\h}yI\=? H!R\_\\\)\{V','',0,'?'),(_binary 'gp홐E\=\&!','wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_square/sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k%`9~ؑ\\\{(',_binary '앞G$Mk⳸\\\\&[?.Y%s\','',0,'?'),(_binary 'Uf\*jNaw\','wp-content/themes/moesia/inc/prettyphoto/images/thumbnails/flash-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\\\\\\\By+',_binary '3\\\\f\zK\V\'\jx','',0,'?'),(_binary '\RP˃\Z\\(Ǟ.C','wp-content/themes/moesia/inc/prettyphoto/images/thumbnails/quicktime-logo.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\\'=c\ 6\v',_binary '\Ook\\Z4-&\0H#b\00f{Be','',0,'?'),(_binary '\+;\kL\ZKL\0x','wp-content/themes/moesia/inc/prettyphoto/js/jquery.prettyPhoto.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q?=Dv?4',_binary '\r/>>\*Qqcp4\-O\\H/T','',0,'?'),(_binary '\\_\4m\n\:J\N&','wp-content/themes/moesia/inc/prettyphoto/js/jquery.prettyPhoto.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r\d\Y/y\c%',_binary '/ڬ\\_\~z\\SV\_+Rx\2\','',0,'?'),(_binary '=mx\\[	<m','wp-content/themes/moesia/inc/prettyphoto/js/prettyphoto-init.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\@+/\kv\',_binary '$\\,Y\\^\\-=o\\\\D\r)\0M','',0,'?'),(_binary 'S\dД$~T','wp-content/themes/moesia/inc/rows.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}H\4X^\}K\^\',_binary '\\۷A_d_*A*lP\#4ں\FNv','',0,'?'),(_binary '!\\-3Q\Med\G','wp-content/themes/moesia/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\X?I\}1]\SK',_binary ';s\<NT\g&\\0\\4\jS\','',0,'?'),(_binary '@1gt\\#\`\\4\','wp-content/themes/moesia/inc/tha-theme-hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\+\\n',_binary 'w=Jڄ$b1\\"ll3`Q\'','',0,'?'),(_binary 'M{\\}Qζ,\EB','wp-content/themes/moesia/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VY{|yN',_binary 'H(C B5oq\Wya\䮲!k','',0,'?'),(_binary '\\9oB\`P\','wp-content/themes/moesia/js/carousel-init.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\j@N1uƧ',_binary '|\\fXR\6H\\\hK\"6\\\\','',0,'?'),(_binary '\~Bn)[I\\','wp-content/themes/moesia/js/customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\({c\\ v\0O\',_binary '\(M\\\0,zj߿\_\\\\','',0,'?'),(_binary 'b\H.-*\=','wp-content/themes/moesia/js/html5shiv.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h\@K\\ڳ\',_binary 'h\X\1\"̵\\Ԃ\\Q\C.}2-\','',0,'?'),(_binary 'D\\q\\wJd','wp-content/themes/moesia/js/image-uploader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Pf_k\OS}%\',_binary 'C\b\Js1ס5I*\r\n\b\\\','',0,'?'),(_binary '_{`\\-ڥAI','wp-content/themes/moesia/js/imagesloaded.pkgd.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`h \\',_binary '\Z\8~:^\D\ɇn*3v\','',0,'?'),(_binary '\Z\7\(O7\T','wp-content/themes/moesia/js/imagesloaded.pkgd.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\\\u\2\\]2N~',_binary 'k3Y_Um\\\/P\\!>O/Jo','',0,'?'),(_binary '\\\%/3M\S\0:/','wp-content/themes/moesia/js/jquery.fitvids.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0C\͸/&+B',_binary '\,\Q)\\\[\n\\n\I\\n\n8\','',0,'?'),(_binary 're[O\m<㈻YEEۂ','wp-content/themes/moesia/js/jquery.scrolly.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BUTI\9`\\\\',_binary 'a\\\4b45&\X@Ak򋿢sr\!>,','',0,'?'),(_binary '\\B/\1(\ðz\','wp-content/themes/moesia/js/jquery.sticky.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\KPp\"}{,',_binary ',@ߒC\\\-ON5\Z\hźo','',0,'?'),(_binary '\tp3\l㕳~','wp-content/themes/moesia/js/masonry-init.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\>o\\',_binary 'e\*l$CYt3b\/\G#|','',0,'?'),(_binary '~35\+\_\c','wp-content/themes/moesia/js/navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\\ӊj:DZ\C:',_binary '7\\dؑD\Ib\h\ٔj\(%JѰА','',0,'?'),(_binary '\e\r\T\Q\','wp-content/themes/moesia/js/scripts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Pc\_\"r\|G0a8,',_binary '׵6\"h=\O\z,}K\C\\a\\zxM','',0,'?'),(_binary 'u\R\\	8C\\\\\i\G\','wp-content/themes/moesia/js/skip-link-focus-fix.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\F*\\\\_PFc\\',_binary '<HTqN0\\M\\g}p\d\J \','',0,'?'),(_binary '\\0_d\ւ\\\','wp-content/themes/moesia/js/slick.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l3i\R@-o',_binary 'B\	I\\\(:\y\rM\+gu\\|Gn\','',0,'?'),(_binary '\Z\\"\$j\%\\6b{','wp-content/themes/moesia/js/slick.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\V\uD\',_binary 'k|+\\\\R\EIG:DӜl\\\','',0,'?'),(_binary '\rfsY	X{\\0O\"','wp-content/themes/moesia/js/waypoints.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[\!e\R\*',_binary '\m\D\yӇ\\\"Gob놧]c?\','',0,'?'),(_binary '(OqkC7D%,\\%','wp-content/themes/moesia/js/waypoints.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\"\ޞ\\pngz',_binary '\\mA%`\\Q\"\1\Z\\huf','',0,'?'),(_binary '\\\'9\\ZE&\0\','wp-content/themes/moesia/js/wow-init.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\@ͮ\o\\\d \',_binary '\	F\;\lX\o{@Z\\0T>\\ڣ<R','',0,'?'),(_binary '@NPP9\\','wp-content/themes/moesia/js/wow.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yqz\e\(',_binary 'Vr{[\j:\\0aL\y0O\_6','',0,'?'),(_binary '\FM\o/2\"	e-','wp-content/themes/moesia/js/wow.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\P|\'\JE\rN',_binary 'V\\.@ \r\)xZZ\3)BO%\','',0,'?'),(_binary ';E^Y\\;I\":\U','wp-content/themes/moesia/languages/de_AT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w`\'\\',_binary '\!6O<~\Ve[r\@X\Kg','',0,'?'),(_binary 'f]\0\\\A]IhM\','wp-content/themes/moesia/languages/de_AT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʕ&\\5}G\\l\\',_binary '͞0:-\\\Ļ.\exױ\pm9\\','',0,'?'),(_binary 'l 6\0\l|\\Z?\','wp-content/themes/moesia/languages/de_DE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z`\li6\\ZD',_binary 'o FШ؞xX\)FgT\\/\\K','',0,'?'),(_binary '?/bE\nJg\"L','wp-content/themes/moesia/languages/de_DE.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1Nm\\\/>	',_binary '	nj8;=c\^i*S\\DIÛhkd','',0,'?'),(_binary 'o\Xa\˛[\\o_<','wp-content/themes/moesia/languages/fr_FR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"Yz}x!\0ePrd',_binary 'Tz	_y Kz\\1>|A▿\B)\','',0,'?'),(_binary 'ᗜU?z\z\{','wp-content/themes/moesia/languages/fr_FR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aJ{\~0.gd\Z\',_binary '_q\͟%yb~R,8\S\\{8&+\0','',0,'?'),(_binary '\:\ZU\*|@@','wp-content/themes/moesia/languages/moesia.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WC\\g\=6\xT׉',_binary '\n\\0\0!lU\\Fzn\\,<n\!','',0,'?'),(_binary ']^\j\\\O','wp-content/themes/moesia/languages/pt_PT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0S*\,ӡ<\9i',_binary 'p\\0oH\\U\mhR\y)*\n\\;','',0,'?'),(_binary 'ד#mq\(U0DC[','wp-content/themes/moesia/languages/pt_PT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@B\IekC',_binary 'dqù܇>KҸ5o#\Pk\?\DXq(aTw','',0,'?'),(_binary 'Q268\','wp-content/themes/moesia/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N2\\96c\r\j',_binary '\Hs[lq \5\r(\@\/<8mu\','',0,'?'),(_binary 'Dpd)EBŠU','wp-content/themes/moesia/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u\!䦈\\Zٮ',_binary 'Dy\={gpw\"\i$>\_\x`#%	','',0,'?'),(_binary ')D\\\\Y\q\oT','wp-content/themes/moesia/page_employees.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Bp,\C\\',_binary '^vmry7\ƞU)2)\V!AI\+D','',0,'?'),(_binary '\"^=\	\+\','wp-content/themes/moesia/page_front-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\"ݕ\W_L6n\Z߀\',_binary '@GT\u\\\ș\\u\\"Pb\\'{C','',0,'?'),(_binary 'a\$\M\\`W','wp-content/themes/moesia/page_fullwidth.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k.S\OH0|\Zr.',_binary '\\0\Zylȃ\\pu&\ƹ\','',0,'?'),(_binary ']?\\<1\\\\','wp-content/themes/moesia/page_services.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zL$J\$}k\XK',_binary '\\\Z!\y\7{4u\\\l[G]','',0,'?'),(_binary '[ibu*\\+0cN','wp-content/themes/moesia/page_testimonials.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\ʾce	\:>|m',_binary 'шjn#\%mkE0\[\gŰ\H','',0,'?'),(_binary '\\Au\b\KO','wp-content/themes/moesia/plugins/class-tgm-plugin-activation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\P\tx[U',_binary '\*s\T\\\[\\\!A\\G~N\','',0,'?'),(_binary '\m\Xx\\\X\bU','wp-content/themes/moesia/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_M?\s',_binary 'WyQϹpAĥW\[\&ىS\җ\\"','',0,'?'),(_binary '2GnbˋAl\\','wp-content/themes/moesia/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ն+3N\\ZȦi<',_binary '\6{%RTW\;\/P\L\QX4\','',0,'?'),(_binary 'A\!jl [n\[','wp-content/themes/moesia/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\Ԗ\r\'ىC',_binary '\Z\:xwe\\\\r\\HZO\\0','',0,'?'),(_binary '݌\$\3)\','wp-content/themes/moesia/searchform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\A\\\0{\\',_binary '\\\"I\\a&	/ro\_4V\8\oq1','',0,'?'),(_binary '0\Ahi8\\Az','wp-content/themes/moesia/sidebar-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˒zW\\s',_binary '^\}3\D\?&\ZY	e\.f','',0,'?'),(_binary 'i\4sa\8\H\\n','wp-content/themes/moesia/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_v4\"A@G#\',_binary 'qA˷V\F,Jw!̚\\%\y1\㢭','',0,'?'),(_binary 'X\$\r/\','wp-content/themes/moesia/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\\#DJ^OGQ',_binary '&\"S\GG\8!W\QGӖ Q\\\Z`','',0,'?'),(_binary '\J\I!f?=8\\'%?','wp-content/themes/moesia/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I˙,1\\%\',_binary 'v5>\\\_N׽\#\.qan	\]','',0,'?'),(_binary '\\9{>\\s[5K\\','wp-content/themes/moesia/styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\sV\wD\)\n}',_binary '\Pr~z池0t\noHЅLg\e-\'czq)','',0,'?'),(_binary ':tNE0\UOْ*','wp-content/themes/moesia/widgets/contact-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&G\N;>\\̯',_binary 'Y=\^\iKo\w\Eލ\p*5\4&Y\','',0,'?'),(_binary '/:\DY84\\u\','wp-content/themes/moesia/widgets/fp-blockquote.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o<	.\H\\Gs',_binary '_\!\en\\2\\\v\]\N(;f\\','',0,'?'),(_binary 'i,I*_WK)|\\\ȭ','wp-content/themes/moesia/widgets/fp-call-to-action.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wҭO.\\?1beC',_binary '\ތW\|	\V.\Ĭ\W\\\\','',0,'?'),(_binary 'J\oV\*\\C_t\0=','wp-content/themes/moesia/widgets/fp-clients.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\=lM8yt\(',_binary '8ꛊ9.?\ψ7>0=m\>p','',0,'?'),(_binary '`>|]>7\,w','wp-content/themes/moesia/widgets/fp-employees.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\lF\+\',_binary '\98\\#,-\=μ4\8EO-\','',0,'?'),(_binary '\H71C\','wp-content/themes/moesia/widgets/fp-facts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fHm\Z\(',_binary '*9!\\{M\\Ótʣ\6?)u','',0,'?'),(_binary '{V\\\\R\C','wp-content/themes/moesia/widgets/fp-latest-news.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\4s\Fi*:v\',_binary 'B\cn֋Ǫ}$8v#\\	\\ټ','',0,'?'),(_binary '~\o$s\\thI','wp-content/themes/moesia/widgets/fp-projects.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\`XS	`0\\\Z6',_binary '\	$\r\슶C.<\ g\f\"4\C\,','',0,'?'),(_binary '\R$.\\l\\'q\0צ','wp-content/themes/moesia/widgets/fp-services.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\zG\n\\ؿr',_binary 'j-}\\uu\'y\\1\L{hj\','',0,'?'),(_binary 'e\\\o\\9P\E\','wp-content/themes/moesia/widgets/fp-skills.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DMW\4M\xǙ',_binary 'U<ƛP\\`\\\\"\\U\','',0,'?'),(_binary 'su\^W;m','wp-content/themes/moesia/widgets/fp-social.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\66_\@]',_binary '|\\j\Z9\\\'i\դǘ\T\u\[\','',0,'?'),(_binary '쥊\O)z\)\jcj/','wp-content/themes/moesia/widgets/fp-testimonials.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\b\c=;ų',_binary '_¸\r\\͵dV\'\\\tZ[','',0,'?'),(_binary 'ӝm2\\=~\\','wp-content/themes/moesia/widgets/recent-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@zAd~1\\K͒',_binary '\.f\nC\\\Z}\\!=\eeM\','',0,'?'),(_binary 'o\_\,Zc\JQKu','wp-content/themes/moesia/widgets/recent-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'znE3\'b@3\ZN\',_binary 'vu$d\WA\4\"(\j2o\"AA\','',0,'?'),(_binary 's\L{\\09!H؁?[X','wp-content/themes/moesia/widgets/social-profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u?J	Ѥ\hb/,\\',_binary '\\%\g\Bn\\\\#\0\d','',0,'?'),(_binary '1*<RE','wp-content/themes/moesia/widgets/video-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\LZ\=',_binary '=ӴD\I	\Fc\"\TTW*gִ\','',0,'?'),(_binary '\eŖ\a\sģov','wp-content/themes/moesia/wpml-config.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ls\6j\ǃ[\',_binary '\\\</5_~5d9`ϷX\\\6\b','',0,'?'),(_binary 'E=\\n\}.i\','wp-content/themes/news-viral/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k&J}Vㄚ\\+',_binary ']\\w4q~D\\\s\vFc@5\n','',0,'?'),(_binary '\z\'\	΢vb\"\\X|','wp-content/themes/news-viral/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'opZ	\\',_binary '\\Sq\\\\nr`6i\\eʷ\\{{\\\','',0,'?'),(_binary '?\|W,w\nf\0','wp-content/themes/news-viral/assets/css/bootstrap.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yOwE\\\O\s',_binary '.bHԱ=\\\-\]3\\\\k{','',0,'?'),(_binary '\'t݉14B%\\\\','wp-content/themes/news-viral/assets/css/default.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\CTM`\\i,\',_binary 'y\O\\\\b\#Z-\\:~T','',0,'?'),(_binary 'tW\	\\\\7','wp-content/themes/news-viral/assets/css/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\kB\VIӰ9D',_binary '8\G$G5n\H\\Z\𒫘 ','',0,'?'),(_binary ' ,;\Z:B\Z','wp-content/themes/news-viral/assets/css/menu.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6Ts~J\Mj|!',_binary '<}d>\0\kk{kxL\r5\\0\}l &','',0,'?'),(_binary '~5j\\#\\\Z\c','wp-content/themes/news-viral/assets/css/owl.carousel.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\(\Nb}\G\',_binary '\*1-s\$Z\0Tx\\^\A\J[k:\','',0,'?'),(_binary 'a\\q_\n-\q\','wp-content/themes/news-viral/assets/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϣ-\\\\[\\',_binary '{VHٰ\\0\MUDO\?6nB\','',0,'?'),(_binary '>lE\؉\=','wp-content/themes/news-viral/assets/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@JRU\~\-',_binary '\\\ZKb\\\'5\\.\\X\n\ʫz4','',0,'?'),(_binary '\\b[M\M\W2RC','wp-content/themes/news-viral/assets/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|]@\R\4z',_binary '/\"\\D~oԽ\5~D[s_Qy.!z','',0,'?'),(_binary '}\JQ\AJE-3\0\\','wp-content/themes/news-viral/assets/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\nsoAs',_binary '4\.}\qdLp\Դ\\\\E\{pv0','',0,'?'),(_binary 'aLbXT\$Ax\','wp-content/themes/news-viral/assets/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?4&\B\\\h',_binary '\\9?\\\\\\\\\\w	q\n','',0,'?'),(_binary '΃V\\f*>t','wp-content/themes/news-viral/assets/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\Q\\Q\XF\',_binary '5ɮ\H󆛌\0{0\Q\<u\\x','',0,'?'),(_binary '}~^q\3e\\LX','wp-content/themes/news-viral/assets/images/no-image.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'\Jr\Ptܜ',_binary '\7_ޣ\\\\%\.jElu.=XJ\\,4','',0,'?'),(_binary '\\oh\\\\2','wp-content/themes/news-viral/assets/js/bootstrap.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\##c\W!\\h\(\\',_binary '&4\\lw\\0\jD\n\\zVMG\0\\\','',0,'?'),(_binary '2\'pq\\rFquP`W','wp-content/themes/news-viral/assets/js/menu.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B-kM\~\-:q',_binary '\	0\0zK	\\LE\p\)\7Ν1<Vn','',0,'?'),(_binary 'XTB\\o\a\\H,r','wp-content/themes/news-viral/assets/js/navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'II3=|\[1|',_binary '6\製9\z\\eʿ̻kv\l','',0,'?'),(_binary '\&$b\\6;\m','wp-content/themes/news-viral/assets/js/owl.carousel.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nۼ\=\\\f',_binary 'D#-\@i\2\\}ڛ*	B\<\\','',0,'?'),(_binary 'Sa\aCEBeݗ\M','wp-content/themes/news-viral/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\n\\m\\"K',_binary '\\J]\GI\a\\<\{ 1 m','',0,'?'),(_binary '驈,~f	\#$','wp-content/themes/news-viral/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+n\>\3RQq\',_binary 'I88o1*\|B\O\\rŢ]\}\t\ Lk','',0,'?'),(_binary '15\(\@P\','wp-content/themes/news-viral/frontpage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\n\dP',_binary '\"\!\\lI8\4\(\\\1\\\\T','',0,'?'),(_binary '\(邩|Ӊ; ','wp-content/themes/news-viral/full-width.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\yv\\mck',_binary '~\&\\A\p]Kb7y','',0,'?'),(_binary 'W\Ɍ7\\3V\0\\r','wp-content/themes/news-viral/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\}X\)\Ϣj\d',_binary 'vrː-~\l\5&\5\Iʣ\E\~\Z\Z','',0,'?'),(_binary '\oA\l+\;$\-','wp-content/themes/news-viral/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L_tW\n?I\',_binary '\\-A\UvHp\(T\\܈߰ngԖo','',0,'?'),(_binary 'F\<j\\\','wp-content/themes/news-viral/inc/class-tgm-plugin-activation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5Ѭu0\5',_binary '-\ft&=bJ`֮\+\\\\0:','',0,'?'),(_binary 'fu\\u}*-\\\Z\','wp-content/themes/news-viral/inc/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'De<\nyRʹ\~',_binary '\ı6\"W\\U6N\\"#9<\h:\','',0,'?'),(_binary 'o?@\Ϋ4l','wp-content/themes/news-viral/inc/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\evD\Nh\6',_binary '7>!p̨35PS_͠JNu\)\R\Aq','',0,'?'),(_binary '\HDg]\XS','wp-content/themes/news-viral/inc/enqueue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F\ٴ\0\\',_binary '\?@;0u-\Mew	\')V\\0T','',0,'?'),(_binary '\\\'\\m\s\U\nԷ','wp-content/themes/news-viral/inc/template-setup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Pd\\sU\\,K*',_binary '\\\\،[\'z(a	H<\_ڰd)','',0,'?'),(_binary '\6a\-y\hY\Z','wp-content/themes/news-viral/inc/widgets/news-viral-category-widgets-style1/news-viral-category-widgets-style1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\\2@[[\:\\',_binary '0٩*ɣ\%)AsW:TN\S\\ؙP\\'1','',0,'?'),(_binary '2V\\ZJ\h','wp-content/themes/news-viral/inc/widgets/news-viral-category-widgets-style1/style1.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LM<A%>Jn\|',_binary '\\l\\Eq\\:]n3>Em\"vT\?G<[','',0,'?'),(_binary '\ݖAeOj+uu','wp-content/themes/news-viral/inc/widgets/news-viral-category-widgets-style2/news-viral-category-widgets-style2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\bt\PT\\\\6\',_binary '\nݭ\xq2\\/\}Oo+cM\\Dψ\','',0,'?'),(_binary 'i9\(\y','wp-content/themes/news-viral/inc/widgets/news-viral-category-widgets-style2/style2.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\\\Z\ťԄ{} \',_binary 'ֈ^GC\e\$.\\f8%E','',0,'?'),(_binary '\\L\P\','wp-content/themes/news-viral/inc/widgets/news-viral-footer-post-widgets/news-viral-footer-post-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>d~\rNek\<',_binary 'Uf\@=鋡auYv\\Fp?U\\\\','',0,'?'),(_binary '\_\\g)6s8','wp-content/themes/news-viral/inc/widgets/news-viral-footer-post-widgets/style1.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5mJY\\ߛ\0b',_binary '$?܄.F;*P\0\8wfiSϞ܍\; ','',0,'?'),(_binary 'GNEfiv\\[V\\','wp-content/themes/news-viral/inc/widgets/news-viral-latest-post-slider/news-viral-latest-post-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fDg\`m',_binary '\9VDyA`Z}\"\I\\\!','',0,'?'),(_binary 'W\0\f\\\j\\','wp-content/themes/news-viral/inc/widgets/news-viral-latest-post-slider/style1.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\\L',_binary 'P7\\ux\$>\\+j','',0,'?'),(_binary 'U\_DA\y','wp-content/themes/news-viral/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\d\(q\r',_binary '!\Dtx]*JW*\\\\\m','',0,'?'),(_binary ';*xkȌ-','wp-content/themes/news-viral/languages/news-viral.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GL\\Ce77',_binary 'g;_\+\\Ktga-{TX\wp\\','',0,'?'),(_binary 'B\\?ܱd\\_q','wp-content/themes/news-viral/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\y\O9\7V',_binary 'oA)8V\߭)[\0	\!Z\D\+','',0,'?'),(_binary 'oшJD҆8x\1\\','wp-content/themes/news-viral/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[&\5\U\\',_binary 'C~#?\Hǘ\XY=`&\\\n\׫','',0,'?'),(_binary 'δ\{&\'\@\0v\\','wp-content/themes/news-viral/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\:؆l\&\ol:',_binary '\\r\\\>׃j0-4&\t','',0,'?'),(_binary ';^W\~\0\\,\X\','wp-content/themes/news-viral/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\5l\':@\RL\',_binary 'b\\D\n\bGXlt\\raN\\\r','',0,'?'),(_binary 'x\sx\$ڒЇ1','wp-content/themes/news-viral/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]K<gJ%%͒J',_binary '\'\.\`\\[\8F5PDs\w\\1','',0,'?'),(_binary 'V\%3ǹ{`s]','wp-content/themes/news-viral/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N}]g2',_binary 'λ@\ʤ\\I\Z\\\\0\:1z\`\tk\b7','',0,'?'),(_binary '\V\;Sˁ{\hm&','wp-content/themes/news-viral/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`AhZ\~Y\nG{',_binary '\wq\P\\=-U\6\F^\?\C\r\H','',0,'?'),(_binary '[hط8]!\b','wp-content/themes/news-viral/template-parts/content-blog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/b4w1\[M',_binary 'S\?\n\}e\i\kh\"]\\\\9o','',0,'?'),(_binary 'a\>K2מQl#','wp-content/themes/news-viral/template-parts/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nPi\B\n',_binary 'ϢC\-m\O(_F\B<QGQ0\\\)\;\\o','',0,'?'),(_binary 'Ym8\"	ck͠tXc\','wp-content/themes/news-viral/template-parts/content-page-full.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\$cn_\0Feob',_binary 'i\rw\b\\F)Jگ\5ksmlc','',0,'?'),(_binary '86\G6*E}\','wp-content/themes/news-viral/template-parts/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\y\Β2h',_binary '/S]xRwh\"\n\6ġ\.\"TLV*\f','',0,'?'),(_binary '\\-%\ƶ\NB\Q\','wp-content/themes/news-viral/template-parts/content-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\+NlTm\',_binary 'y߄\\n\\}\\ʒor\\zN','',0,'?'),(_binary 'юP8\rQWruD','wp-content/themes/news-viral/template-parts/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J_f\<z)m\K\4',_binary '\Q\/\l[x`8\L0AM\\ۮ릦','',0,'?'),(_binary 'y\\\&o\	M\Z_\ ','wp-content/themes/poseidon/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ob\r6H\;Q\\',_binary '\\0\'wNRE\C\rDL2)\\]&','',0,'?'),(_binary 'A\^\ظwl','wp-content/themes/poseidon/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\\sW\\\\n͋\t',_binary '\\9$(mU\m\"<\,H{\9!qo','',0,'?'),(_binary '\MC\>Zm(ˋ','wp-content/themes/poseidon/assets/css/customizer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Гܓs\\hd',_binary '\۷dO!Bc\1<@Dp3V\\\6WmcO','',0,'?'),(_binary '`Xd⽶\'','wp-content/themes/poseidon/assets/css/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\8kZ\@ƫ^',_binary '\Ñ9	\ZK\\\\\\\%\n5\^+[:6','',0,'?'),(_binary '=\\E\\\ \','wp-content/themes/poseidon/assets/css/editor-styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2ҷ\KJbcr\\n',_binary '\Z\\'\Ʊ5\\\_\(Ϻ,r\ڂ','',0,'?'),(_binary '/~~~_WR\K\\\','wp-content/themes/poseidon/assets/css/theme-info.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*䁹C1}N(\S',_binary '\0\\\Ǳ^r*j\|\\\|A-\\/~)','',0,'?'),(_binary 'v\\w \H]Eg!$','wp-content/themes/poseidon/assets/genericons/Genericons.svg',0,_binary ')ld*Z\\\b\',_binary ')ld*Z\\\b\',_binary '(\5\\\&HFI7l24=}`j\V\\\Bj4)\','',0,'?'),(_binary '\iSp\"\߁e','wp-content/themes/poseidon/assets/icons/genericons-neue.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\\v\o!P\ Ğ',_binary 'l\\N\L\y\[\\\ƛr','',0,'?'),(_binary '}\3,ގ','wp-content/themes/poseidon/assets/images/default-slider-image.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=Z\-6\n\\c\\',_binary '1C>x|Y*Q\[B\0\CR\\\r\','',0,'?'),(_binary 'ln\\>A<','wp-content/themes/poseidon/assets/images/magazine-columns.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\HF\oţF\=',_binary 'Y蠇\=2!1\\e\գ\','',0,'?'),(_binary 'c\.UP\\e=','wp-content/themes/poseidon/assets/images/magazine-grid.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<f\ܩG\l}\ᓻ',_binary '\[\d/.\.\gӣ\\\ OQ','',0,'?'),(_binary '4\h4!j$\^:','wp-content/themes/poseidon/assets/images/magazine-horizontal-box.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TJ^9)FBi5vwD',_binary '\CDgrGȖ\̕q}\">\Z\c6q8m\','',0,'?'),(_binary '8\\Px\"[RT\n<','wp-content/themes/poseidon/assets/images/magazine-vertical-box.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zBJ\Rz965',_binary '\\54\0΢PQK\lh\cR%s`\] ','',0,'?'),(_binary 'cn\Kwo~\F`\','wp-content/themes/poseidon/assets/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5N>դ\\\@',_binary '\cd\_r˔T*!\\9\M\pV#\s\\','',0,'?'),(_binary '\nd i8Z-d','wp-content/themes/poseidon/assets/js/customizer-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\-\X\)\\\)',_binary '\\R\nK\\߫\\n;,5Em\+A','',0,'?'),(_binary '\w\tKGTaF\`','wp-content/themes/poseidon/assets/js/customizer-magazine-widgets.js',0,_binary '3IP\_E2e',_binary '3IP\_E2e',_binary 's0#ʉ\=\\[Kjh7\+ԛ','',0,'?'),(_binary '\\\? \\'(\0	$\\','wp-content/themes/poseidon/assets/js/html5shiv.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ި஄UPbt\<',_binary 'Ry1Nhu¿\\\I}؞\\\)i','',0,'?'),(_binary '\n1=+e\Gd\\n','wp-content/themes/poseidon/assets/js/html5shiv.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@D\r)7c\\O',_binary '(B5sTP<pt%FI4\LRZ_Y','',0,'?'),(_binary '\!\J@v<M>o','wp-content/themes/poseidon/assets/js/jquery.flexslider-min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,zn\1č/64',_binary 'S:T\-\,\<N{rP*d0HY\\\\X','',0,'?'),(_binary '8\\/P&lh{g','wp-content/themes/poseidon/assets/js/jquery.flexslider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IZ~!\OՊ\\\',_binary 'vi\өٱX\ndkR{#\Wzx\T','',0,'?'),(_binary '\\`\0c\ݰ\%T','wp-content/themes/poseidon/assets/js/navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$5\ƨ\<\&\',_binary 'c{uİZ>/%\0N^\S:2)','',0,'?'),(_binary '\tn\T1;\\','wp-content/themes/poseidon/assets/js/navigation.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]UU(\\YL\',_binary 'P[G<%2W4\}:;\3I}p\]]','',0,'?'),(_binary '\\0cA\`fO','wp-content/themes/poseidon/assets/js/slider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6ʅ~Som\',_binary '\@E;쪈\{S#B\|f\ź','',0,'?'),(_binary 'u\\0\i_OiE','wp-content/themes/poseidon/assets/js/sticky-header.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'Ml\:\n\\V\,*L',_binary '-XjRG\0e\x9i\}','',0,'?'),(_binary ',5\x\0e\X','wp-content/themes/poseidon/assets/js/svgxuse.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\]\WtX\\',_binary '\e\r.:	p~2/ق,Se\c\jV.','',0,'?'),(_binary '\0b&\Z\','wp-content/themes/poseidon/assets/js/svgxuse.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ġ Z޵\|\\\nʼ',_binary '=53no,H-\\h\q\S-F\"','',0,'?'),(_binary '\6\\r\\\\\[݅','wp-content/themes/poseidon/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\vMe:fbeц',_binary 'nD\_\\\	\\\\ \\0w','',0,'?'),(_binary 'ÚְO\','wp-content/themes/poseidon/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{N`h$[bC\',_binary '\\(#䙷9\wx\ZF^T 9x\v6\t1Z','',0,'?'),(_binary 'M\O2\ay','wp-content/themes/poseidon/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z\c#\#\\\',_binary ';\~-\d\2[x\P\'̞A(w>_$\','',0,'?'),(_binary '\m<\h\[#\r\nY\F','wp-content/themes/poseidon/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\TRqa\\4',_binary '{R\\\j$xCx\\M','',0,'?'),(_binary '\ayZ#h','wp-content/themes/poseidon/home.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\(d2<&\\',_binary 'Cs\6;\9:X\\,\'%:ɴ#̬\ߋJ­\','',0,'?'),(_binary 'G\d\Y߰\{\\','wp-content/themes/poseidon/inc/addons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AnZ\~\\\'t\\',_binary ':\0\$,\͋Lw\gf<H(*','',0,'?'),(_binary '\\'\^z^pu#K\;n','wp-content/themes/poseidon/inc/back-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U`WGbJ\oԩ\U',_binary 'Z\3G\?F\xvtiE\qܤ','',0,'?'),(_binary '\Gy	f\V?\wS','wp-content/themes/poseidon/inc/customizer/controls/category-dropdown-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\r948t,D:\s',_binary 'Xoi\zB:\X,$.\\&\x7','',0,'?'),(_binary '\%la0\,\S','wp-content/themes/poseidon/inc/customizer/controls/header-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\7\\%!\\\\',_binary '\)~\&hv\톶\ޕW\	Wh^\\','',0,'?'),(_binary '7~ߴؐ2\*X@6_a','wp-content/themes/poseidon/inc/customizer/controls/links-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?46g\\4\K[',_binary '\w\\¡AW}ʔF\>k\#꿁\\','',0,'?'),(_binary 'gw\'\y\\'\\6\\\','wp-content/themes/poseidon/inc/customizer/controls/magazine-widget-area-control.php',0,_binary 'qQpی\Z\'@\E-',_binary 'qQpی\Z\'@\E-',_binary 'ʚ,Fɕ[i\\\wM8 \A5λ\O\','',0,'?'),(_binary 'èg\e!~f~\a','wp-content/themes/poseidon/inc/customizer/controls/plugin-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\\\D\r?~\J',_binary 'KM\\,}SS}\9;\\;\]x+p\','',0,'?'),(_binary '\ͨ\\\{-]=X','wp-content/themes/poseidon/inc/customizer/controls/upgrade-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')z\XF&',_binary '\m\\TMo2j%w\\e(','',0,'?'),(_binary 'JkH%MLZy','wp-content/themes/poseidon/inc/customizer/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\ڨ\0Ә>qP',_binary '\\\#\g\9\\r\Xg\6!\','',0,'?'),(_binary '\.-:CUy\\','wp-content/themes/poseidon/inc/customizer/default-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\P$MF-0',_binary '\c#\\yD\n\?\\\','',0,'?'),(_binary 'E\DKh3\\\','wp-content/themes/poseidon/inc/customizer/functions/callback-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\:\'IE$g[\d',_binary 'Yl,2\oU~\/-vJJ\l\X\V','',0,'?'),(_binary '\Q2\\\@9','wp-content/themes/poseidon/inc/customizer/functions/custom-controls.php',0,_binary '\W\\\r?3\s',_binary '\W\\\r?3\s',_binary '\\\<<љ\\\o0r\PQܠ\','',0,'?'),(_binary '3\\&S;ˬ','wp-content/themes/poseidon/inc/customizer/functions/magazine-widget-area-control.php',0,_binary 'qQpی\Z\'@\E-',_binary 'qQpی\Z\'@\E-',_binary 'ʚ,Fɕ[i\\\wM8 \A5λ\O\','',0,'?'),(_binary 'е\n˭W\','wp-content/themes/poseidon/inc/customizer/functions/sanitize-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*>\_\\e;',_binary 'E[+ĩx|ȄXw\BJb\^\6\','',0,'?'),(_binary '	\y\\8\5.\\\^','wp-content/themes/poseidon/inc/customizer/sections/customizer-blog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^pJn=\7\',_binary '\U昢0\\0ӷA|j>\n\?(\?\"','',0,'?'),(_binary '\r|\\\C\Zm7d','wp-content/themes/poseidon/inc/customizer/sections/customizer-general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+~TlPz\PH',_binary '(\mym[%յ\\"\H N\\\\\\A\0j','',0,'?'),(_binary 'FZ\"EԦ.\\h+\ng','wp-content/themes/poseidon/inc/customizer/sections/customizer-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\l\\.U\\1T',_binary '8Ax4\(I\$v>--\t}','',0,'?'),(_binary '`\8ӷeeh\Z	','wp-content/themes/poseidon/inc/customizer/sections/customizer-magazine.php',0,_binary 'z\\i\\r;\',_binary 'z\\i\\r;\',_binary 'rm\Z;(\Ru{?-l^\lPS\\,^','',0,'?'),(_binary ':볱:P;* L','wp-content/themes/poseidon/inc/customizer/sections/customizer-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l;^\Dw\\l',_binary 'ڤ\y\\\8V}$:.\j\KZ','',0,'?'),(_binary 'ԪMҮ\'O\֗\','wp-content/themes/poseidon/inc/customizer/sections/customizer-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\7#|5\Nb\0\',_binary '`An\έ\\\S\E\F}uIn {\\','',0,'?'),(_binary '])$\[jlȠ\&m`','wp-content/themes/poseidon/inc/customizer/sections/customizer-upgrade.php',0,_binary 'u\y\'ZP#ͼU<',_binary 'u\y\'ZP#ͼU<',_binary '\\\CW\N󼱽D^\hpf~\l&z\0<O%','',0,'?'),(_binary '\x\\Kn-\\}\z','wp-content/themes/poseidon/inc/customizer/sections/customizer-website.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\\˚\NX2BJ\',_binary '\\x\wIsNT|DU\Zu\\T:Th%','',0,'?'),(_binary 'YKr(2%\"=}f:','wp-content/themes/poseidon/inc/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Л5[pҧ,\of@',_binary 'd\M7%\%_\P\yU\\j\ظ\b\H','',0,'?'),(_binary 'vU\L:̉\z2C(#','wp-content/themes/poseidon/inc/gutenberg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\9$#\\>',_binary '\4-;\\\\ZD\[ƶ\궲\y','',0,'?'),(_binary 'C\S^\L\Őh\'9','wp-content/themes/poseidon/inc/icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+)ppq\C\',_binary '\_\`eߌ\T\մyШ8p','',0,'?'),(_binary '\:<rr\\Zξ','wp-content/themes/poseidon/inc/magazine.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\k',_binary '\"\wͬ9\r#Sm\D\zuM(\D\8Ԇ','',0,'?'),(_binary 'ܲ`p\\gX@j','wp-content/themes/poseidon/inc/slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ğ㸇į\0\c',_binary '\yJ D\׺;hPX$\Z\Z\c7Ll','',0,'?'),(_binary '\ew@D0!$\','wp-content/themes/poseidon/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Țw&\i\iW',_binary 'zV\\ZwО\Z\`Nݓ\,n\Zz\<Q','',0,'?'),(_binary '	\\2\\\\[|E','wp-content/themes/poseidon/inc/theme-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qCm3ط\\\',_binary 'eԁNNf^n]H2\%\R G-pO\','',0,'?'),(_binary 'T\Ƚ&j\m','wp-content/themes/poseidon/inc/widgets/widget-magazine-posts-columns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dVL\-\i',_binary 'V\~xx\\Z3\G\\\|\k\,?	F','',0,'?'),(_binary 'F7\iyeX\Q\\}','wp-content/themes/poseidon/inc/widgets/widget-magazine-posts-grid.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȊjB\\Wk\q\+',_binary 'h\01\w\NūК6Yp*=z3[\','',0,'?'),(_binary '\>C\]','wp-content/themes/poseidon/inc/widgets/widget-magazine-posts-horizontal-box.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '88\!ӛC{\',_binary '\	\~[Ū{:\_XO7Sǜt<H\(\X','',0,'?'),(_binary '\|`AP\K\ulgo\','wp-content/themes/poseidon/inc/widgets/widget-magazine-posts-vertical-box.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\2[2.A\\ԯz',_binary '/s]\\\T\<:K(\\aSk\:y\\','',0,'?'),(_binary '\\\\	\\\2˅','wp-content/themes/poseidon/inc/wptt-webfont-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '鈞Y7\\sk',_binary '\2hAl˹\'E7V?ǖĲK&1*','',0,'?'),(_binary '}\>#\\(\'t\','wp-content/themes/poseidon/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ρI.^\bȠ	8',_binary '\bl}lܚjg\&\)q\6N:G\e','',0,'?'),(_binary 'g#\\\\\~','wp-content/themes/poseidon/languages/poseidon.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\c(o21yY=',_binary 'icAP\\HuA\Ui\Ec','',0,'?'),(_binary '\rI\Z','wp-content/themes/poseidon/languages/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\1d8B\0\\0\\\~',_binary '\\!5\\X\YF\\\q_sy\Z\\q|n&\|','',0,'?'),(_binary '^z1K\k\','wp-content/themes/poseidon/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_q#/ܕ\r\#\',_binary '}ǭUd\2\ӥ%x^x2g\\ s','',0,'?'),(_binary '\D\\Qw\','wp-content/themes/poseidon/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GF\L\'\\+\\\',_binary 'z/\\n%*r\%_{\\Z\nUa\[','',0,'?'),(_binary '\\e:끭w\'','wp-content/themes/poseidon/rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\	0=3<d,&',_binary '\\#ǳh\]5\rK]:\[ל\h\Ҏ\\\','',0,'?'),(_binary '\o\\\\܂D}\'T','wp-content/themes/poseidon/screenshot.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;\o\c{d',_binary ',EZx\=\w\\7妼7\J\','',0,'?'),(_binary '\\-nL\KhgE\\','wp-content/themes/poseidon/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0ʥ:\z<1ep\',_binary '8\gx0m\B>(G\\J\!\a\:=e','',0,'?'),(_binary '<\U\\Y\̗','wp-content/themes/poseidon/searchform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[̘؄:d̥ڮ',_binary 'I\&\B8xg~\'pKp\rdJD\\D>','',0,'?'),(_binary '\:+j-\\]#®','wp-content/themes/poseidon/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \Z\)6-',_binary '^\"z+5Y&$\3\ra','',0,'?'),(_binary '\rK\w=Z\>\','wp-content/themes/poseidon/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\\\qYb\8\',_binary '\ǯ9ɶ-I\9<\0W-\q=I}','',0,'?'),(_binary '\\J\v͠d','wp-content/themes/poseidon/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eV,LNL|!\',_binary 'd+\\\t5K+^\\0<|u\\\0\','',0,'?'),(_binary '\\IMy\\\*hkc1','wp-content/themes/poseidon/template-centered.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\{A\Z,\',_binary '^>N\\\r\\b)$8c\;۽rݣ\W','',0,'?'),(_binary '\ҧ\G/áu\Y','wp-content/themes/poseidon/template-fullwidth.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\\^fuKN',_binary ']cW&\'\\lBaZn<b	@\','',0,'?'),(_binary '\\\"CuRi\','wp-content/themes/poseidon/template-magazine.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʰg\'7#^\51',_binary '\m-\1wB3\0\Gu\ؼ\\(\(Fw\nL%G','',0,'?'),(_binary 'YO\'U<ȫ\','wp-content/themes/poseidon/template-parts/content-excerpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p^\d\\vz',_binary 'Ffe}B\ޡ\\XR\SKq','',0,'?'),(_binary 'r\yS\/U?\[<X','wp-content/themes/poseidon/template-parts/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=1JC\v\\M:/\',_binary 'Y,?j-\~\Q\^\\+\z\Hܝ%W\','',0,'?'),(_binary 'bp\k\"EV\','wp-content/themes/poseidon/template-parts/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\\\\r,\;',_binary '+2G(]\'y.(\J&v\\m\7\\n','',0,'?'),(_binary 'pESȅT,Ӵ6\','wp-content/themes/poseidon/template-parts/content-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\U\'[j\\>\\t',_binary '\\[\%[Q\;*7\\\\3\\o','',0,'?'),(_binary 'r n\\\rй\o\','wp-content/themes/poseidon/template-parts/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C-q^\!,p\kݣ',_binary '\\'\@{\M\fw\|\7\\H\͵','',0,'?'),(_binary '>G)6wjR\3\n','wp-content/themes/poseidon/template-parts/content-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0\\d_5\fqk',_binary '[s\A>}2\\2\C@Br͝̼','',0,'?'),(_binary '\\OɎ\[\ZO','wp-content/themes/poseidon/template-parts/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\rB\|bmٮ',_binary 'Ϫ\6(Sf&\U-|1]2\^t[','',0,'?'),(_binary 'Q\5ti\0*5','wp-content/themes/poseidon/template-parts/header/site-navigation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\j#{\dڞo',_binary '\\\ru\\[&4`U\AgDK\rڄ2','',0,'?'),(_binary 'Ǳ\m%̴	3','wp-content/themes/poseidon/template-parts/post-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K#uy	\Ӗ',_binary '8\{N&qbG\&0\7z\\n\ʰ^\S\\h\r&','',0,'?'),(_binary 'D\sO/]T]D\\','wp-content/themes/poseidon/template-parts/widgets/magazine-full-post-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O۬\\\\ΨxS\"',_binary '7=E\0_<\L53n V+','',0,'?'),(_binary '\"/wbSD\0','wp-content/themes/poseidon/template-parts/widgets/magazine-full-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\\\J\<.u\n',_binary 'R2q:i}\\0\v\\Y\cEu','',0,'?'),(_binary '$)\T\Z\','wp-content/themes/poseidon/template-parts/widgets/magazine-large-post-horizontal-box.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\\\={m?pHٍ',_binary '\\PoC7t\\\\Ix	\]qc\vn','',0,'?'),(_binary '͇5Gu\NW\i\Z','wp-content/themes/poseidon/template-parts/widgets/magazine-large-post-sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\"p\\`J\\zg\n',_binary '%\#J\/5\\`Yk6Z\\>պ]','',0,'?'),(_binary '\\\1)w\\~R;','wp-content/themes/poseidon/template-parts/widgets/magazine-large-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r\O}Kִ',_binary 'd`X6}3?%^	q\\\\0\\EM|ۢ.','',0,'?'),(_binary '\cțӳ\F<\Ӵ','wp-content/themes/poseidon/template-parts/widgets/magazine-medium-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',B\r43M\㿻2=H0',_binary 'I\-\U\0\Q\үZ	[M*^\J7\E\','',0,'?'),(_binary '\#\r\\B0!\\','wp-content/themes/poseidon/template-parts/widgets/magazine-small-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\R,8Vд\f',_binary 'l_E:DzkF\"\\0qRۮI9>ܐ>\','',0,'?'),(_binary '\\\N;\z>\u^','wp-content/themes/poseidon/template-slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?-\\lF\',_binary ')|\gB\aO1\l\\\\YJ2Xv\aօ','',0,'?'),(_binary '\\\\\\oH','wp-content/themes/reyl-lite/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\	P\\m',_binary '\()[\ZLsi6GL\\(Q\\b~\FV','',0,'?'),(_binary '0?Y]nmq','wp-content/themes/reyl-lite/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2QX\\y^',_binary '\/;$cuҰ!ƺM\\B\\','',0,'?'),(_binary 'uZѱх{c(','wp-content/themes/reyl-lite/changelog.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0|T\FAC|bs',_binary '5Z\r\k_\r\\Z97\\\dL\d0\DI','',0,'?'),(_binary '?(!\nٖ˧\ ','wp-content/themes/reyl-lite/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&^aN\n\\Zy\\\\\\\o',_binary 'V\\\\\\"\\gc*xdV\\\A\Y','',0,'?'),(_binary '&\=\\vW)~ԗi','wp-content/themes/reyl-lite/css/admin-styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ߌKė<.\|',_binary '`-wvj񀊧MP39\\s\\\\bv~','',0,'?'),(_binary 'Ή\/7Iu\','wp-content/themes/reyl-lite/css/admin-styles.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\d抯r\tO',_binary '[\)\\+\\\n\ɱ2v%]6\}\0Q:','',0,'?'),(_binary '\g\+Ջ^W/JX','wp-content/themes/reyl-lite/css/bootstrap.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4`D$\\\\',_binary '\N{\\^ΥA/5.Jω\,*\rF\'','',0,'?'),(_binary '&{ph\5Юn\8xx','wp-content/themes/reyl-lite/css/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\rOal#\ZGDkB<\',_binary '/\Y\T\\ޘzv_N䫻x졀vݬ','',0,'?'),(_binary 'C\2e!\\'','wp-content/themes/reyl-lite/css/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \ͧ\\6\\TǢ\:',_binary '\r\٬\!fLB՗},u\/,`W\\','',0,'?'),(_binary '0\~\\;\\','wp-content/themes/reyl-lite/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɘH]-\n\7\}',_binary 'ih\mw\\\x!Ph\]\|\,ᄡ\','',0,'?'),(_binary '\FU&hNڷG','wp-content/themes/reyl-lite/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I+𶸿IC\(',_binary 'l\؀z(\P>ӡ\#Qܬb4','',0,'?'),(_binary 'Z\\k\8i,','wp-content/themes/reyl-lite/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a4u\\D\\\'l',_binary '&Xh?T})#ڷ@C]j5\r6C\_\b','',0,'?'),(_binary '^)vd\\#([\','wp-content/themes/reyl-lite/images/header_bck.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-cmi\jWȫ\ް@)',_binary '\(\3l\\\\;\\.\\\','',0,'?'),(_binary '\_6\\8F*,K','wp-content/themes/reyl-lite/images/quemalabs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~HOy',_binary '%\"3\\nyCa%vH\ \*','',0,'?'),(_binary '\\\\Xk|\\r\n(D','wp-content/themes/reyl-lite/inc/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g%`\r \kO',_binary 'E_\GM\\\\\\waqzs(e\8֩\d','',0,'?'),(_binary 'Y\WDi\u\','wp-content/themes/reyl-lite/inc/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tdI\\oSg~',_binary 'g\|\n\o{)!\W~ \5\;','',0,'?'),(_binary '\z`h#iG\','wp-content/themes/reyl-lite/inc/jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*JS\Tzvzu\"',_binary '[\ \\x\\\\\2gs\ި\\>u','',0,'?'),(_binary '\\)@AQ\m\r','wp-content/themes/reyl-lite/inc/scripts/scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`I\D\'\\\',_binary '\T\\\$\\\7]\F\rK\0ԾU','',0,'?'),(_binary '&cN2֘{\]RC','wp-content/themes/reyl-lite/inc/scripts/styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',X\݄1S5\\\oa',_binary '-=?|;>5FVR0[\\ݑ','',0,'?'),(_binary '\'h \\}\\e;\','wp-content/themes/reyl-lite/inc/scripts/stylesheets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\:{H\y\:',_binary '\h^&\\AN\Rفu\bn','',0,'?'),(_binary '\3Kؐ@Y3!','wp-content/themes/reyl-lite/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\!&\7}\',_binary 'eUT^\\x+\LCHM\','',0,'?'),(_binary '-؍!\\=0_y1R4','wp-content/themes/reyl-lite/inc/theme-functions/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',/FBB<h1\O',_binary '\\\\\-:GlI\ZL&\e_\\nUE','',0,'?'),(_binary '?3\7\\q\','wp-content/themes/reyl-lite/inc/theme-functions/theme-info-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\;Jd\Z\\\g\\',_binary '\B(f\\]\!C\\\u\\y@\rԡ~\Z8','',0,'?'),(_binary ',\-\\\\N<\n\','wp-content/themes/reyl-lite/inc/theme-functions/wp_bootstrap_navwalker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7.C\iW\k',_binary '\\\\q!\#\/\\=t\R(*\"\\\0\\','',0,'?'),(_binary '\/\sy#<\\o','wp-content/themes/reyl-lite/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\G \!\d\',_binary '5\`swJ)^[u.ۋ)S5\Q|Y','',0,'?'),(_binary 'R՚j~𬼴?','wp-content/themes/reyl-lite/js/bootstrap.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\0r{4k Nk',_binary '\\%ƸUO1>8\\:q\','',0,'?'),(_binary 'el\(\\ufL','wp-content/themes/reyl-lite/js/customizer-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\sA:3L\',_binary 'E-\\\7S!;iC;vYC\\0&\>|v;n','',0,'?'),(_binary 'I$4oI\\\E.\n','wp-content/themes/reyl-lite/js/customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\D-`Ҝs\"5f',_binary 'T<k+\\l\;x\\S\W\>ha\I','',0,'?'),(_binary '8ωοV.%ĸ','wp-content/themes/reyl-lite/js/html5shiv.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ި஄UPbt\<',_binary 'Ry1Nhu¿\\\I}؞\\\)i','',0,'?'),(_binary 'wepc~LJ\\H\','wp-content/themes/reyl-lite/js/modernizr.custom.67069.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#Nŝ<t\\d',_binary '\x\Ŭ\5̓/F`e','',0,'?'),(_binary 'j|CT\;;\GUO','wp-content/themes/reyl-lite/js/pace.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\Bfל\$',_binary '\Ml\j\6(p\\oڲ\K\\O!\6','',0,'?'),(_binary 'K/\\,89\\','wp-content/themes/reyl-lite/js/script.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\C\@\4\\\',_binary 'FyP\irJ\\K\5907R;\\','',0,'?'),(_binary '|\(\r	5rD-b\!','wp-content/themes/reyl-lite/languages/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V%\\W\n$`\"/c',_binary 'G\ܷ\B\^#0Z\8\;\\Q\\','',0,'?'),(_binary 'GGވ	+\(G/','wp-content/themes/reyl-lite/languages/reyl-lite.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\B\BkM\\\',_binary 'ۑd\$\\\\'\\\\N\d\jHi\'%','',0,'?'),(_binary '|쮝,V~.`#\\','wp-content/themes/reyl-lite/less/alerts.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ֶ.*\\ZS\j\\',_binary 'h(\**i\Ibc\0\Y\\\\\A\','',0,'?'),(_binary '\6o]w\	Hƽ\"	=','wp-content/themes/reyl-lite/less/badges.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'Qf\01\YS(X6́',_binary 'uv^\ET\	\\r%\\3\[vM\_','',0,'?'),(_binary '	ak-#Oh~\\','wp-content/themes/reyl-lite/less/bootstrap.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nY[b&Y\\w\髄',_binary 'Yy1\0:\fqJtJ\IR','',0,'?'),(_binary '\9e\dEm\z)','wp-content/themes/reyl-lite/less/breadcrumbs.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}ΕA楝\0\P6',_binary 'R⻏9D\	O)ٵ\5O#\\','',0,'?'),(_binary '\\n\%\\2\"','wp-content/themes/reyl-lite/less/button-groups.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '͟s\5\/o\',_binary '\06\Y\bX\Z\έWNŭ3*))','',0,'?'),(_binary '\>^o\e\`uq','wp-content/themes/reyl-lite/less/buttons.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ybu\r\"T<Ѣ',_binary 'ë\\7\l-ffx\+\u&V\)@q','',0,'?'),(_binary 'ⷚ<\6O','wp-content/themes/reyl-lite/less/carousel.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gFQ݌V\Ǫ\',_binary '2_7D\ Ci!\\}\ӑ	\eNSL','',0,'?'),(_binary '(\\n%VG\','wp-content/themes/reyl-lite/less/close.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j\\j7eQ',_binary 'ťj$M\0 ?ow\\.Ώ\s\li+\\'','',0,'?'),(_binary '2qMyX.\\5/H','wp-content/themes/reyl-lite/less/code.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<U]#\\bcq',_binary 'g?\\\<ڢY\\0ղG\ov>','',0,'?'),(_binary 'HB\\nol\\\0','wp-content/themes/reyl-lite/less/component-animations.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`Voh\"\hE',_binary '*	Th_K\\Z	?0yK\\.Ē\\','',0,'?'),(_binary 'f\Z,T\dDD\u^/','wp-content/themes/reyl-lite/less/dropdowns.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\\?\r-\	<',_binary '૬M{P\\zRs+[~=','',0,'?'),(_binary '#t\鳄\W+P׈:','wp-content/themes/reyl-lite/less/font-awesome/css/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}	J\;Ek',_binary ',S\`d\\Y|l\\r4\Yʊ:kg','',0,'?'),(_binary '0-~\r\%;t','wp-content/themes/reyl-lite/less/font-awesome/css/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1˦p\ yG',_binary '\a\F\}>\nb\PT\Ŀ\8?Ѷ','',0,'?'),(_binary 'ȼ\e\ŠN7R\\x','wp-content/themes/reyl-lite/less/font-awesome/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fCrXgo}*b>',_binary '~\-p4\\r\\QE\=~\9\\','',0,'?'),(_binary '\\ܥ7)]OV9','wp-content/themes/reyl-lite/less/font-awesome/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\7#,o\\=ia\-q',_binary '^ù\i8\C}nʎ5ģ@pdD\LL\:\8','',0,'?'),(_binary '%\\\\x1ꘗ\W6]','wp-content/themes/reyl-lite/less/font-awesome/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\<k\O\	\\,\'\',_binary '\Y.e{Zܾ9b\"JUG\\r1\YL\','',0,'?'),(_binary '5s`\07V\\I','wp-content/themes/reyl-lite/less/font-awesome/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\n\rcϸ?9',_binary '\j%-\\\!\ԟwfT-&\\}?\','',0,'?'),(_binary 'k\VGFַ\00','wp-content/themes/reyl-lite/less/font-awesome/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '߰/m\	\X\h\\',_binary 'raӧ0G\\n\cL]s׫:wHJ\','',0,'?'),(_binary '9P]B\\d\','wp-content/themes/reyl-lite/less/font-awesome/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KZ\\H^P:\\',_binary '\f\Nh~\r}A\|IC\wE','',0,'?'),(_binary 'e\\~	E\r5\0+.\\\','wp-content/themes/reyl-lite/less/font-awesome/less/animated.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\SʼYT',_binary '5-^\\}>͌2\n\0){\n\rѼ\','',0,'?'),(_binary 'a],i\\v^[\\C!','wp-content/themes/reyl-lite/less/font-awesome/less/bordered-pulled.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v2\!\',_binary '+l6\ZKH1~VV C\gpw;\ ','',0,'?'),(_binary '?BCv%\ݻ\\','wp-content/themes/reyl-lite/less/font-awesome/less/core.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NJ\77phuǷ\',_binary ',w\\\!s\0\Hr{\DߎQ\1F)','',0,'?'),(_binary '\+\/\U\\','wp-content/themes/reyl-lite/less/font-awesome/less/fixed-width.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\\0!\'\T(\',_binary 'j&\R\A\uF͏\\4h`_\0\!\','',0,'?'),(_binary 'W[koޔ4@\o)xC&','wp-content/themes/reyl-lite/less/font-awesome/less/font-awesome.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ona\\"?j\:',_binary '\X\)LM7Gz\\AYX&\n\\`i i(','',0,'?'),(_binary 'a\fj\VULS|\J\','wp-content/themes/reyl-lite/less/font-awesome/less/icons.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;M\QrZJp]\eq',_binary '1J\b\0(q\\Z\\ˢ\$8;(C3','',0,'?'),(_binary ';`p\X\\\Ed\','wp-content/themes/reyl-lite/less/font-awesome/less/larger.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\&&\\Z|(',_binary 'iѪ8j0\NKa\0\n\\JtR\P|DF','',0,'?'),(_binary '\iq\5p ;/=O\n\','wp-content/themes/reyl-lite/less/font-awesome/less/list.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uq2<6\'',_binary 'g_\n٩\\\غb\\\\[놜ȿ','',0,'?'),(_binary 'kpw\MfM\\&','wp-content/themes/reyl-lite/less/font-awesome/less/mixins.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cD1\%]\\"1MB',_binary 'ŀʀWrn\H3$v>\D\"%e#\\\Zg','',0,'?'),(_binary 'AX*=e7\qt\l','wp-content/themes/reyl-lite/less/font-awesome/less/path.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\C\8læ\}d\Z\K',_binary 'V\?\-,\f.{D؏c|','',0,'?'),(_binary '\e\reM\"\\|.','wp-content/themes/reyl-lite/less/font-awesome/less/rotated-flipped.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gl\P\d\\j\%',_binary '\S\՟\Ʃd3&\^\ߥx\?\lp','',0,'?'),(_binary 'ֵw\iche>,','wp-content/themes/reyl-lite/less/font-awesome/less/stacked.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q+-&9\ʡ\QKKN',_binary 'Ͻ\,¿4IF\0e\\Yo\5Ý9','',0,'?'),(_binary 'P+\Da肶\A','wp-content/themes/reyl-lite/less/font-awesome/less/variables.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']!2\>\\r(\\',_binary 'խ\%?)G\I\;8?><}AzQ1\','',0,'?'),(_binary '~L\\GvuF\','wp-content/themes/reyl-lite/less/forms.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ްx\n\_',_binary '6/\\nO\C\\n\f\hU\\ \','',0,'?'),(_binary 'Y+\\zʡMT','wp-content/themes/reyl-lite/less/glyphicons.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\1\\\ݧ<\',_binary 'ܠ-V\Mh=d\0\\\\΢7Bp\','',0,'?'),(_binary 'x\\]4\\\ś+\Z','wp-content/themes/reyl-lite/less/grid.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\vyǧ\\:\j',_binary 's{8-@\\n\ۧ9ȡ%\&\5E8rq\\','',0,'?'),(_binary 'Bբ`?@7\\ꋸZ\','wp-content/themes/reyl-lite/less/input-groups.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\SX|4ML^9i',_binary '):\UY\\ۄ\$xi\\us\\;wǱZ\\','',0,'?'),(_binary 'zm\n;޾%','wp-content/themes/reyl-lite/less/jumbotron.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iI\n\|\\'',_binary '\\a-:df	ᄜo{Q4\n\'','',0,'?'),(_binary '\'0Ez\R	n\','wp-content/themes/reyl-lite/less/labels.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\EϷ8^!\S#h$!\n',_binary ':m+Y\a\0;\na~*/\V\\(r','',0,'?'),(_binary 'ggaY\f(yb\','wp-content/themes/reyl-lite/less/list-group.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʅ\y\D\}{',_binary '´v\7\\XA4\rR6\n=H%;	z','',0,'?'),(_binary '\\r\a7\\FM','wp-content/themes/reyl-lite/less/media.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\nA\@m\',_binary 'f%e(\_9$߽\\\`\=	','',0,'?'),(_binary '#7\\~C>H\u','wp-content/themes/reyl-lite/less/mixins/alerts.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x%v\r\";\N\Y\ӄ',_binary '\)\|\:l\\<yǒ\b=8g\|Z','',0,'?'),(_binary ';Ew5}hO\B,ܥ','wp-content/themes/reyl-lite/less/mixins/background-variant.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4ŴX[x\9V:\',_binary '\'S\E-ͣG7\\'_\\=>\Wr\\','',0,'?'),(_binary 'tRP\\!\{','wp-content/themes/reyl-lite/less/mixins/border-radius.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\O\̘6쉴\',_binary '5\\yC=T\\i{\5미qp1','',0,'?'),(_binary 'H\0j܅\rP\Zv\','wp-content/themes/reyl-lite/less/mixins/buttons.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\S<3\cr\\n',_binary '\=M\`\\\]\\\ӌ_\\n\\T\e<','',0,'?'),(_binary ':9q\Z,\\z\"','wp-content/themes/reyl-lite/less/mixins/center-block.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2\\kHe',_binary '\n\.{\b2\\AG&9u\\ršHW\nO','',0,'?'),(_binary 'eM=|}\\3d','wp-content/themes/reyl-lite/less/mixins/clearfix.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\\XbYZ\',_binary '/@\`n\З`rI E\\I\{\w\u\yS','',0,'?'),(_binary 'l\ ͹O\\n\H7\&','wp-content/themes/reyl-lite/less/mixins/forms.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\c_ܾ\"\6\?',_binary 'V/[.\h\\Q>ַT$\ﲬa','',0,'?'),(_binary '\'EO#w\\djd+Iv!','wp-content/themes/reyl-lite/less/mixins/gradients.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gT*\\'#`\\!$',_binary '	\\F׿fmd\əl\ ^\;\','',0,'?'),(_binary '*7P\/(\\_','wp-content/themes/reyl-lite/less/mixins/grid-framework.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\r\\Wk\\K7',_binary '??&;G\J=;vQ,\욦\\P\\rQ ','',0,'?'),(_binary '\'󛫮\\2tu','wp-content/themes/reyl-lite/less/mixins/grid.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \\\\Mo}8 Y',_binary '`(3\,\8z\P\\\\)\0k:\\D','',0,'?'),(_binary ' ,st-j6\\&4H','wp-content/themes/reyl-lite/less/mixins/hide-text.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1i\\~l',_binary 'g\-7\\'\\MH̄01\\0\Z\\\{U_Zg\\[','',0,'?'),(_binary '\u{hk#','wp-content/themes/reyl-lite/less/mixins/image.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n􊂤J.\n\\)^_',_binary '\_A\Ǧ\\\\sЍ\8X_>!8wM}wCY','',0,'?'),(_binary '\hBf\-W_TDP','wp-content/themes/reyl-lite/less/mixins/labels.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ʃ{\g\J',_binary '\<=k/=@ڼJ\tI6\\z\\t{','',0,'?'),(_binary '\TTiX','wp-content/themes/reyl-lite/less/mixins/list-group.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\\$\<\N',_binary '*=BKq\g¶66|ߦ\m#\L.|\\','',0,'?'),(_binary 'Jl\l\\\\x','wp-content/themes/reyl-lite/less/mixins/nav-divider.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oy>`-v5',_binary '\\R@\\׏z/μ\\"hb\Z','',0,'?'),(_binary 'G\\\&\hј @ ','wp-content/themes/reyl-lite/less/mixins/nav-vertical-align.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\Û\\yn\0v<',_binary '?\8z\.\A(pGM\\\J&','',0,'?'),(_binary '\M\]\\\SE\'m','wp-content/themes/reyl-lite/less/mixins/opacity.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\-\\jKxw\s',_binary '\g\G\O3.\\a\/\|7cY','',0,'?'),(_binary 't7}1	\\\','wp-content/themes/reyl-lite/less/mixins/pagination.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\g))p\}VFk[',_binary 'ū:/=\'.z\ \!#\B\EW\\D1','',0,'?'),(_binary '\ W@\\\˩rN','wp-content/themes/reyl-lite/less/mixins/panels.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-1}&\F\\\',_binary '\l \k5h6R16G}G\4:\0\','',0,'?'),(_binary 'u#7\'`\\\\\','wp-content/themes/reyl-lite/less/mixins/progress-bar.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p9\0Ybr\V\FS\"c',_binary '\",\]\5\\r\ԯd\\n%C*\=W\Z','',0,'?'),(_binary '\(\*I=\}\','wp-content/themes/reyl-lite/less/mixins/reset-filter.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'By\\ri3',_binary '۽,5h5ؐ<F\\\!!\','',0,'?'),(_binary '\n44\`\\7','wp-content/themes/reyl-lite/less/mixins/resize.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'Y`\{L\Z}k9Q',_binary 'Q\dMs\rwa\><Z\Vߞ،+5','',0,'?'),(_binary '|\l\o[2\+ƥ\r\','wp-content/themes/reyl-lite/less/mixins/responsive-visibility.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't[f(s\U',_binary 'r\==\Z\\\\\\\(1\o.n\m','',0,'?'),(_binary 'm\\K\N\^\\','wp-content/themes/reyl-lite/less/mixins/size.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\YrfzNS2\'',_binary 'b\I\]O,a|Ƞem,䭸\\\\\','',0,'?'),(_binary '\\\0k*o=uŉ\','wp-content/themes/reyl-lite/less/mixins/tab-focus.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_A\ZX!K.',_binary 'pG/\bPŤ\	{Jǿf\\͸','',0,'?'),(_binary ',T?\Nl\z\\','wp-content/themes/reyl-lite/less/mixins/table-row.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';8U\v\\hhփъ.',_binary 'Oӥ_\5d\0c\\\>{1Mš(\"C','',0,'?'),(_binary '\\nad^5\r1','wp-content/themes/reyl-lite/less/mixins/text-emphasis.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\um섮N*\',_binary 'xL\~QK\\\G%Q_Jլ߼<kQ<\t','',0,'?'),(_binary '4%nKH^oKwrW\','wp-content/themes/reyl-lite/less/mixins/text-overflow.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\5\n-w4!?H:h^',_binary ' z\\8IQ\D|\HW(\\'6YmN','',0,'?'),(_binary '\\!U{j\Cn\/','wp-content/themes/reyl-lite/less/mixins/vendor-prefixes.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\\\\&',_binary 'f\0lg&\Hv\\\\۩\\j\','',0,'?'),(_binary 'sT\\"\J%C\\','wp-content/themes/reyl-lite/less/mixins.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9L\Z\\rդf	y',_binary 'ۅ\\#Ɠ/PP}\ɂp\	\7%\-','',0,'?'),(_binary 'TK\ƌhIva','wp-content/themes/reyl-lite/less/modals.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#@@\o8\\e\',_binary '\"Y\\\(US1@^͘}I\ ','',0,'?'),(_binary 'waю\zDa\\,wkx\','wp-content/themes/reyl-lite/less/navbar.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ys9~<ra',_binary '\D4Z\^\-\W\ר\\9','',0,'?'),(_binary 'h{\\n̠hNէ','wp-content/themes/reyl-lite/less/navs.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lK\\lk*4',_binary '3%C\\\`Ӏe\Ji\3\k)03\~7!','',0,'?'),(_binary '\\Zrv2','wp-content/themes/reyl-lite/less/normalize.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\B=s\\-Ks7ty',_binary 'gaԀ4\5?nM\4\YFFHe+\BX|','',0,'?'),(_binary '[\\\h2\\','wp-content/themes/reyl-lite/less/pager.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~7oX\\\\H\\\R',_binary '\b8A\MI\~_\C\@\YH$ǶD','',0,'?'),(_binary '`8-f\y|cj\\\','wp-content/themes/reyl-lite/less/pagination.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@v3o\\}3',_binary ':}Hƴ\w:E};\\\G,\+','',0,'?'),(_binary '6\\\xc\or','wp-content/themes/reyl-lite/less/panels.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ye0dik\r&',_binary '̪\r\}\nb?XT\iŊv2I a\r;','',0,'?'),(_binary '\\b\bR\\r2,','wp-content/themes/reyl-lite/less/popovers.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M-Eb$\\#s',_binary 'P7\\}<n\jN{;\0\9/\\6hZ>','',0,'?'),(_binary 'tpHUEDK\Vޱ','wp-content/themes/reyl-lite/less/print.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\5\\ \T2',_binary '\q\.\u\T\)#\bƚaT\XA','',0,'?'),(_binary '>k\\i\\)T\0','wp-content/themes/reyl-lite/less/progress-bars.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\rWL\NI\\qs',_binary 'bl<U]T\^YY}\"h$\','',0,'?'),(_binary 'ja\x&\b0`Od8','wp-content/themes/reyl-lite/less/responsive-embed.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',pW٩	kL\\1',_binary '\JT\j5\n\'k!r\r3\\\C\\','',0,'?'),(_binary '\\Zya5e`N','wp-content/themes/reyl-lite/less/responsive-utilities.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dƝ\\)\',_binary 'Ȍy-Yxt4\\žk\\|бS\'\s2ϰ\','',0,'?'),(_binary '\u3XH\0\=6','wp-content/themes/reyl-lite/less/scaffolding.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xUM\HX_`',_binary 'ʯ6*Le|\0aYiABA\\,&4\ý','',0,'?'),(_binary '\\9\"\\L[@TZ\\','wp-content/themes/reyl-lite/less/tables.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd>\	T\3\5\',_binary 'Rғ\,\aA\IƢ\\+\\,Ѝ\\(.','',0,'?'),(_binary '\9\AI©\an\','wp-content/themes/reyl-lite/less/theme.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[\q,2\',_binary 'V\:|M;\\-?\`l0\70OEG','',0,'?'),(_binary '\}|\Mph2S/','wp-content/themes/reyl-lite/less/thumbnails.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/g\f\6O>',_binary 'h#:͎%f!_`\#\\Hh\ðU~','',0,'?'),(_binary '\n2\\z\f\\','wp-content/themes/reyl-lite/less/tooltip.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9]\j߄6G\\T\',_binary '\o!\\5\i\u\E`\\6w#\\Z|','',0,'?'),(_binary 'H@\\ԋ\o','wp-content/themes/reyl-lite/less/type.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')e\\j@\;\RES',_binary '.\`\\\\T\'* %3\\ \M!w\1\H','',0,'?'),(_binary '\0˖\\"R\n\,\B\','wp-content/themes/reyl-lite/less/utilities.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\8(@I',_binary 'LJ=9 \\\\ҍ&L3T\\(\','',0,'?'),(_binary 'X \+\+8\\0','wp-content/themes/reyl-lite/less/variables.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_M\Kxyދ\0Yi',_binary 'mǱ4\n\\\#ss4\V\ncn\\\m','',0,'?'),(_binary '(\n>\\\\l`L\\k\','wp-content/themes/reyl-lite/less/wells.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Id\L\/\S',_binary '\\$9a\a\I7*S=\qGkMYz\','',0,'?'),(_binary '9T^z\U\3\7','wp-content/themes/reyl-lite/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'egqu/\"n\\~a',_binary 'QS݀\oR=:nQH\\\\1o\','',0,'?'),(_binary 'G:y\\r\\x!\ż!P','wp-content/themes/reyl-lite/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\N\\f_av\\=	o',_binary 'j}V\yp9n\ʍ1\'$\\(9I\Z','',0,'?'),(_binary 'CiwS\S9a`\\'6A','wp-content/themes/reyl-lite/rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\D\ȗ\с68T',_binary '\$n\o\\\HHnm7Ip #\\\r','',0,'?'),(_binary '\\nSҜ6\]s','wp-content/themes/reyl-lite/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PÚ\\0u',_binary 'A>.\a\\rZYIX{=H\\L','',0,'?'),(_binary '+\"FD\\\hk\\m','wp-content/themes/reyl-lite/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_ah,\Gm',_binary 'W\\r\o;\aJ\\1A\v\\o\-ҿq','',0,'?'),(_binary '\F\\v{\7V={','wp-content/themes/reyl-lite/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.X\1P2\SK.\\\',_binary '\j\b)\d<c/]7\\'Ő\\(\','',0,'?'),(_binary 'Ku]y\'/3̓	\Т','wp-content/themes/reyl-lite/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȝ\L&',_binary '1z\;^Q\;C-\T ~C','',0,'?'),(_binary 'A:S;ݭ\%','wp-content/themes/reyl-lite/style.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '݃y[\`%\rE&H#',_binary 'p\\̘u\\<\}MGN97yEH+m','',0,'?'),(_binary 'l\_\k~	','wp-content/themes/reyl-lite/template-parts/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j\ \&\<K\0{x&',_binary '[\ y|\ٖ\\nvrb\ZV\\Hi','',0,'?'),(_binary 'o\\r\\\P<\Z','wp-content/themes/reyl-lite/template-parts/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\=|;S/@L\[',_binary '\]\6S:\B@]\\&\\Za^','',0,'?'),(_binary '\JkQ\O','wp-content/themes/reyl-lite/template-parts/content-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\\ƄK0`8g5\Z',_binary '\\G_ѐ\=Ŗ[f	Oǘ%gP','',0,'?'),(_binary 'm\^\͙\','wp-content/themes/reyl-lite/template-parts/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Łݖ;\F',_binary 'P\\Z\TL\\"G\\>Oxj=^','',0,'?'),(_binary '\O\,A\\LQ','wp-content/themes/reyl-lite/template-parts/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\pN8T>',_binary '֡)*G4b\\\\wc2\\'i\','',0,'?'),(_binary '\'SU\	\\}į','wp-content/themes/reyl-lite/template-parts/pagination.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\!\H\Y\oT',_binary '\<\E`\\\L\J\\@UP','',0,'?'),(_binary 'n4\a\а\+w\*','wp-content/themes/reyl-lite/template-parts/social-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bKbQqM_\r.\',_binary '9Y\\\\?F4\\0\=\.\\R{ˈs\\','',0,'?'),(_binary '\nXVo՗\\ذ;','wp-content/themes/reyl-lite/theme_less/_animate.min.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|L#ܢc1\ъ0r]',_binary 't^KWeO\\\\\x\o[\1\nnJ','',0,'?'),(_binary '{c?m=\+G@','wp-content/themes/reyl-lite/theme_less/_blog-pages.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-7]?[\$\܉\Ti',_binary 'E%\'b<\\\	\8NL9&vN\','',0,'?'),(_binary '8QwGKv	\\Q\','wp-content/themes/reyl-lite/theme_less/_comments.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PǷ\\\-\\N\of',_binary 'jh-mM>@r\̮c\r\	oښaC\z','',0,'?'),(_binary 'D\\	+\L~\-\','wp-content/themes/reyl-lite/theme_less/_external-plugins.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\\\\\TytB',_binary '\qI\\5P7\>D[@\" ҆ -f\?W','',0,'?'),(_binary '&ݭq\g۵\1','wp-content/themes/reyl-lite/theme_less/_footer.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`	F(\<\\R',_binary '&ʘ.\T	Nd\@z*\&w,`f\\','',0,'?'),(_binary '7qvr\\}\ڿˇ','wp-content/themes/reyl-lite/theme_less/_global.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '׬\(ڙ%-\\\\',_binary 'd\SR\\4d\(0y\/A\','',0,'?'),(_binary 'm^\'\Q\\\q.','wp-content/themes/reyl-lite/theme_less/_header.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\s3e\RI\RG',_binary 'd\]\A\\|5\\\Zȣ\\b\12+','',0,'?'),(_binary '\\g\a/\LC\.ڀ','wp-content/themes/reyl-lite/theme_less/_mediaquery-lg.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/*	\L9\2M+M,B',_binary '\p\Z\&us/e9 +\ZS	14\\\{','',0,'?'),(_binary '\֟R{2','wp-content/themes/reyl-lite/theme_less/_mediaquery-md.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dq;d\\<Boѓ\\n',_binary '\Nt(cR-\\A\ed%b|h X\9\SC','',0,'?'),(_binary 'j\\%\⊼\m,\\n','wp-content/themes/reyl-lite/theme_less/_mediaquery-sm.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\r\\kz8|)V\,\\T\',_binary '\t/Gȡ\"j\~\Ndo<\\\"\\\\\','',0,'?'),(_binary 'Pfi0FM\ˆ$','wp-content/themes/reyl-lite/theme_less/_mediaquery-xs.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(·\q̶h-g',_binary '![p#A\l\n%q`\X$mZ\nn','',0,'?'),(_binary '\	0\\1\\','wp-content/themes/reyl-lite/theme_less/_pace.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\\Mv\o\'x',_binary '.a\\.t\\>U\\W\j3;\aY\','',0,'?'),(_binary 'e1\0\9\\\H\#lލ','wp-content/themes/reyl-lite/theme_less/_sidebar.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\iX\ܢ%?\',_binary '\j\\\P\\&2V\\\mR&','',0,'?'),(_binary 'I0\ۤ.\*\IC}','wp-content/themes/reyl-lite/theme_less/_wp-default.less',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\\\\\\5@{(\',_binary '-\R8\KŁ\m$\\\\r','',0,'?'),(_binary '\Z/>3ٰ\1[\','wp-content/themes/skt-toothy/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f~@%R\\\"f\',_binary 'c\Ip+\jc|q*b\Zf\n\6De\"\','',0,'?'),(_binary '\#\\z4,똺]\','wp-content/themes/skt-toothy/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J5\rN\7Oc4\\',_binary '>V\edJƋuäކb>lL\_y\i','',0,'?'),(_binary '\\\Z_YsNW&','wp-content/themes/skt-toothy/category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\\ܾ;l$',_binary 'V|St\5<\\VI$\Ⱥa\','',0,'?'),(_binary 't1B9\nǒu\\!s#','wp-content/themes/skt-toothy/change_log.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\/@\\\n\\\ʊ',_binary '\?I\S8\̎\0\\q\D\}l\\?','',0,'?'),(_binary 'n\!nY\?.\','wp-content/themes/skt-toothy/class-tgm-plugin-activation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H7\K2zAn\"0h',_binary 'm\ua!9\(\\q\v\ra\!','',0,'?'),(_binary 'd\!\'\^G<p:','wp-content/themes/skt-toothy/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~p({Q2Aά\n\AF\r\',_binary '\ami\r\D*hPC+ j\Q','',0,'?'),(_binary '<zɓ.','wp-content/themes/skt-toothy/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\'aH\\\p!',_binary '\L\6;\30Am\0ς!.\Z\!?\\rcKe','',0,'?'),(_binary 'V8~ʛ\o\r\I@','wp-content/themes/skt-toothy/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\\A,',_binary '\~G\ʤZK	43pY.\(B(\&ܭ@\','',0,'?'),(_binary '\\ ]LF\ҹܽ','wp-content/themes/skt-toothy/css/nivo-slider.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0o])\\ovj\',_binary '^\\"0\*\\Z\slKV&~:\','',0,'?'),(_binary 'H\\J\A\\\\'\','wp-content/themes/skt-toothy/css/responsive.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\\%a\\',_binary ')\rm䄰\Z\\\\\[\\.5,\\B\c','',0,'?'),(_binary '*#a\ngE\rK㆓w','wp-content/themes/skt-toothy/css/style_base.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yh\ܯW\Yʣ\@\',_binary '-8\Z.\\jW\\[l*;\w\\','',0,'?'),(_binary '\"C\MA\\";','wp-content/themes/skt-toothy/customize-pro/example-1/class-customize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K֓\Z$S	H|',_binary '9%C\Bht8\'_H/&mɻ\z\?','',0,'?'),(_binary '2\^wh]\fn\4P','wp-content/themes/skt-toothy/customize-pro/example-1/customize-controls.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\,\ԟ/=yQ|',_binary '\Zѡ)h\<#i~P+\Y\,\Ss[}','',0,'?'),(_binary '\\$d\\w','wp-content/themes/skt-toothy/customize-pro/example-1/customize-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o\\\04:\rlJLR',_binary '\Ðh\r\(\X\\\.Z\ܕ@&\rt\','',0,'?'),(_binary '8\zxKIvXn\','wp-content/themes/skt-toothy/customize-pro/example-1/section-pro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\e\..%fX',_binary 'y0\\M8w\0\̖ɚ\\z\pY','',0,'?'),(_binary '\\z\\BpBr','wp-content/themes/skt-toothy/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '` CÊA@\\\`',_binary '\'\\o4\o\|4I,@ JO\\Ћ\','',0,'?'),(_binary '$\\Qh25\ k','wp-content/themes/skt-toothy/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MIo\ɾ\\\pW3.',_binary 'Q\ y\\Bx$Aa	\\\\/8&`bf','',0,'?'),(_binary '\c;9\\\_','wp-content/themes/skt-toothy/front-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p_[{\\~E͂',_binary 't 0\tͥq\AզO\\0.ɯ\\','',0,'?'),(_binary 'OBofr\SA:q\-7','wp-content/themes/skt-toothy/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\#8\q\P\k\&\',_binary 'd94R5\r5\TpZm0\\r','',0,'?'),(_binary '\\;\#8\d_r(\E','wp-content/themes/skt-toothy/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\X\n#!%mxI0~\',_binary '\OCw>\\0Z\0sf+E+r,\n#(K','',0,'?'),(_binary '3J\тImVvzew$','wp-content/themes/skt-toothy/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t\\+.C·',_binary '˾\\\\\ppȪ\D\T\5Z(\R\','',0,'?'),(_binary '=v\M)\n\\ո\','wp-content/themes/skt-toothy/images/footer-icon-email.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6K.t@)\\M\G\Z',_binary '\p<6\"\\T\h\edDH&\,%\0','',0,'?'),(_binary '\Qi,%-聀AͮkS~','wp-content/themes/skt-toothy/images/footer-icon-phone.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>:m\6k\5',_binary 'K\\\qf~\ \i|%͕\\f\\}\','',0,'?'),(_binary '\\rn\Ө$\\n\V|','wp-content/themes/skt-toothy/images/free-vs-pro.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sۓ\"K\f',_binary 'Gb\V\\Bk(,zJ%j\Z\\"9','',0,'?'),(_binary '\*\~N\\܄','wp-content/themes/skt-toothy/images/icon-clock.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\YvF\d`\\t\',_binary '\\.\\>\"ٮQr#\\0lIV\\^\\','',0,'?'),(_binary '\\V*+VbJ','wp-content/themes/skt-toothy/images/icon-email.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'MfY̼\',_binary 'nGV>:\C\4\\\\}2H\h','',0,'?'),(_binary '\2\$3\\\"$47','wp-content/themes/skt-toothy/images/icon-fb.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rjY_ds_\' \S1',_binary 'T\t,l?\p\\nh\"*,5/WwHb\o\"F','',0,'?'),(_binary 'VriW\>.\n\\"','wp-content/themes/skt-toothy/images/icon-gp.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'şw\b\\Pj`b\',_binary 'x;m7\\7#^ӖFފ','',0,'?'),(_binary '\\'\X\1@}o','wp-content/themes/skt-toothy/images/icon-in.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\nantX\\"A',_binary 'J\\z3ps\1\'ΟެO\\\~','',0,'?'),(_binary '\x\Y\\R\\\Ò','wp-content/themes/skt-toothy/images/icon-insta.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P>ŋ|Gs\Ʀ',_binary '\Ю\^\e\sR\\-\'73V\\A\','',0,'?'),(_binary '[p}C \M\\Q/','wp-content/themes/skt-toothy/images/icon-medical.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dRF~\0\$N',_binary 'V.z\\&ظ*EH\r\2\\\\\85}','',0,'?'),(_binary ';4$\z\mk\','wp-content/themes/skt-toothy/images/icon-medical2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I\nG\\aRQ\7<',_binary ' \'{5R0\\n\r@\\NI˹F\\$1','',0,'?'),(_binary ' \CX\lY\k\b','wp-content/themes/skt-toothy/images/icon-phone.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bTi! :\\\^',_binary 'b\#hW 4-\}4 ޑ)\,','',0,'?'),(_binary 'YA\Tk\\\','wp-content/themes/skt-toothy/images/icon-tw.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y鰣^\\\\\\n\\>',_binary '\nn7\-\]\\-N\\rwP\'߹Α\|','',0,'?'),(_binary '\^OAP\pߗ\_H','wp-content/themes/skt-toothy/images/img_404.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}A\<g#/e\,',_binary '\\,cJJ.\\ss=}٬1*z3z','',0,'?'),(_binary '\\\\\+Q*mѐ','wp-content/themes/skt-toothy/images/instagram.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\R6\8H\',_binary 'xXJǯi\NG8V]\~\I9\\T\'','',0,'?'),(_binary 'vw5\,Ϙ\\%g','wp-content/themes/skt-toothy/images/list-arrow.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\q|\\\\p\',_binary 'mdw\[I6\\YS%{\BMkV','',0,'?'),(_binary '\#\\*\I\bGB','wp-content/themes/skt-toothy/images/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k{\ï\"I\n\\',_binary 'o\0Cj\\ZM;2\D\r2	','',0,'?'),(_binary ':V,ĒB\Is','wp-content/themes/skt-toothy/images/location-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$ҟ8,\i-\\ta\7\',_binary '|.\,5`\r\Ճ(\\ͤ\Ȗ','',0,'?'),(_binary 'ǁ\F\b@\d\','wp-content/themes/skt-toothy/images/mobile_nav_right.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\I\\Y#&٩O',_binary '/E\\\tX`6\G>EPx>k[׬E\','',0,'?'),(_binary 'wmd\_\bG2\\CM','wp-content/themes/skt-toothy/images/page-image-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\=C\z\vVR',_binary '\<\DCN5M(U1\2\\>ŋ\uNY\','',0,'?'),(_binary 'G,P[Z5\u\XaP','wp-content/themes/skt-toothy/images/page-image-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0f\4\\ߎBI',_binary 'X4c\\	\May>+\\40b||=;','',0,'?'),(_binary '\ Y\r\\y5\\i\','wp-content/themes/skt-toothy/images/page-image-3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\$\\'9៺P\`\',_binary '\5O\gM#fPD\\&E\"D','',0,'?'),(_binary '̇aS{X\rqhקe','wp-content/themes/skt-toothy/images/page-image-4.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fBI(\G\Zl8',_binary '{j\ڥ\0\)\2\1_\no','',0,'?'),(_binary '8V\\\঩\\x','wp-content/themes/skt-toothy/images/search-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ωW吃`\0dO',_binary '\\0\\E8O2}\'y>e(8\8','',0,'?'),(_binary '\\}d찎4:\/V','wp-content/themes/skt-toothy/images/sktskill.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\JY\z\_6vJݜ',_binary '\\OO+#\L\멒\D~\\G\Ŷ&ɗ','',0,'?'),(_binary '!-\d\\u\\rfu','wp-content/themes/skt-toothy/images/slide-nav.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\"k\n\nw-q\*',_binary 'f]e8\\'\\\/n\N\~jYunAfY\!^','',0,'?'),(_binary '>L\'\\0.\bpC','wp-content/themes/skt-toothy/images/slides/slider1.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\]\"vM\\i\\\',_binary '-\^ky\5x@Gah\\9\\+$','',0,'?'),(_binary '󂊈\XA\*\)\8d','wp-content/themes/skt-toothy/images/slides/slider2.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eMn\n2\MX\',_binary 'w\&gDmFD	\\r9\\','',0,'?'),(_binary '5ۺP\f]\\\4.Y','wp-content/themes/skt-toothy/images/slides/slider3.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\Z\ಽ<\~\',_binary '1墠h\%]F\GW&{_Jv\\r]','',0,'?'),(_binary 'hh\-kK=\\n','wp-content/themes/skt-toothy/inc/about-themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-\\@\\\9',_binary 'Rla\C!\\9L[\"a\W!\o\','',0,'?'),(_binary '\H0\C\q\"y\n','wp-content/themes/skt-toothy/inc/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n$H\sDnr\'\F\',_binary '벴\zi5\ő _`Z\0\','',0,'?'),(_binary '	4wb]:/JDӓ','wp-content/themes/skt-toothy/inc/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\\Hz6QcJ%QƿG8',_binary '\.ZR\O\E@.M\+L,f\?\\','',0,'?'),(_binary '\Vm\z\\覩','wp-content/themes/skt-toothy/inc/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\9;]߆\l>',_binary '*wNkH\|pT\A)?\	E\\0}7F\\	W_','',0,'?'),(_binary '悾8:Ҍ\:\\\','wp-content/themes/skt-toothy/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\&\dU\3ht',_binary '\\Z[\Gu\q!y\̓\hlw\\޽\(z\','',0,'?'),(_binary '\\\r\nlB\\\<\','wp-content/themes/skt-toothy/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\ s		!E;',_binary 'Btv\e5oi\\}\vy','',0,'?'),(_binary '\k\(\`7\Z','wp-content/themes/skt-toothy/js/custom.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')%a\\\\\&Z',_binary '\n)\\}\\Pzͨ\\\4\5\9Xb\','',0,'?'),(_binary '\\\	\0\@\5','wp-content/themes/skt-toothy/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oWvg\n8\Fӕ\"',_binary '{ܭ/\&\\Z=\ld;q\\\\>w','',0,'?'),(_binary 'R\\Lɣ\9o\','wp-content/themes/skt-toothy/js/jquery.nivo.slider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P.M<\\\\\Q#\n\',_binary 'O-rrYO\\\ga/\- <҄i2h\','',0,'?'),(_binary 'o(Q\0.SGrnr','wp-content/themes/skt-toothy/languages/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Jӝ_\X!!',_binary '\2y\\\TWb4!d\\n[!L1*\ė\','',0,'?'),(_binary '!n,\\KJHY\\','wp-content/themes/skt-toothy/languages/skt-toothy.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0-v,e\nnlߜW',_binary 'b)\\\@ϵY\\\"oY+%:x v\','',0,'?'),(_binary '\"\Q,)^9\Z\\3','wp-content/themes/skt-toothy/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"9sF:t\\rG\',_binary '\F}Ռ\OX\\\\\	##','',0,'?'),(_binary '`\)E\'\\\iA','wp-content/themes/skt-toothy/no-results.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/Kt\-\T>',_binary '\\\\\ZW\"]ۀ\9\\\B\Y\\j','',0,'?'),(_binary ']M\\cv\\.M','wp-content/themes/skt-toothy/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '羔=QGF',_binary '\BV+\\w^\\\\n\-\<','',0,'?'),(_binary 'Z4s\g\EJ}1 *','wp-content/themes/skt-toothy/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$9\	v)U',_binary 'ݾ6w0dh%\iw\YR\p^\x7e','',0,'?'),(_binary 'Ą2F\\5*\0\0@','wp-content/themes/skt-toothy/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]\\Vv+\Lp|',_binary 'Y\0c?\\\\ZE\w\7X^3%\ƌ\\]\','',0,'?'),(_binary '\2\\Ah#\4','wp-content/themes/skt-toothy/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B)ұ\\F\',_binary '֯Ɛ^p\F\Zv\*\\"\Z6\\dP{K','',0,'?'),(_binary 'ћl@v^a','wp-content/themes/skt-toothy/searchform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ovtRhNa\nӹ\',_binary 'aTYౙq\X\ȣ`*>\_{\ R','',0,'?'),(_binary 'ĳp7IK\\3\Y\Ä','wp-content/themes/skt-toothy/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' גZ*|K2',_binary '7:\\sMAY\}\\Q\','',0,'?'),(_binary '\S^M>\0L\n\','wp-content/themes/skt-toothy/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xܪ\m\r\\\\',_binary '͗k\\W\\%\\B\TpW\V8\\','',0,'?'),(_binary 'sAg\R\','wp-content/themes/skt-toothy/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\\\rz\|\\8',_binary 'p]m\zOL\\\L3\'$\\e\R\\\','',0,'?'),(_binary '\C`i?{\\5S','wp-content/themes/skt-toothy/woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v>,?\+)\1\Y',_binary '\5g.U-\\.\v+\\F\me\]U\','',0,'?'),(_binary 'lċ:vQ','wp-content/themes/start-press/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=\Gm?N\o',_binary 'Fl\jdJM\T\{b.~\F7\,\G8','',0,'?'),(_binary 'gr&\\'wEA-W','wp-content/themes/start-press/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cꅮ/\ZwS&4\',_binary '9\}j\f<\ny0M~\`Өx\2Hxj=','',0,'?'),(_binary '\\\\7\B$Hs','wp-content/themes/start-press/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\d`\76ڿbW',_binary 'N?\f3RB|cU\}\R','',0,'?'),(_binary '#y;2\"qgh\','wp-content/themes/start-press/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P[d\pԄ\',_binary '\4ڿ\jrm7\\{V\\\/t','',0,'?'),(_binary 'w\\\!\v4$^\','wp-content/themes/start-press/css/animate.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zЩ}-\\p\Ul',_binary '.஢8\\Q<\Z/\dȉ\hV\v','',0,'?'),(_binary 'AIzNuS*K!l5','wp-content/themes/start-press/css/bootstrap.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*1ܡ\i#v\vLX\',_binary '.bHԱ=\\\-\]3\\\\k{','',0,'?'),(_binary '\\hڃEʄ','wp-content/themes/start-press/css/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ĕeHix[\\`!fJ\',_binary '\\}\˹t$\)\ʦP\1~܀\','',0,'?'),(_binary '\"\3Y+L5p\:\"\'$YC','wp-content/themes/start-press/css/images/icon-search.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\$51\\\',_binary 'K\\p\\zFUí\E\\\^\\9','',0,'?'),(_binary '\|9G\\\','wp-content/themes/start-press/css/images/slider_next.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	z0qj$>dl',_binary '\\\\[\r5Z\\Ol\\\(\','',0,'?'),(_binary '\\w_\0ƊSʅ\','wp-content/themes/start-press/css/images/slider_prev.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\诘\\\'%ӓό',_binary '\Zo%͢\H\\$1,\M\z\','',0,'?'),(_binary 'Ӟ\Ø\\Y\n\\','wp-content/themes/start-press/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\'\]>\\v\\2\\\ZM',_binary 'qoO$K]g3\nÒѐ\~\(R','',0,'?'),(_binary '?\}\\yb	{*}_','wp-content/themes/start-press/fonts/Oswald-Regular-400.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\d-l\	6$',_binary 'e{g0\\?B\ZoRIm\FM\W7\','',0,'?'),(_binary '`\zzlxÛBV','wp-content/themes/start-press/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gOP҇č\\',_binary '\~8 ir\\nPp\n2\5DahBzP','',0,'?'),(_binary '}\\">\SgKQ\|','wp-content/themes/start-press/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\murI1G\',_binary 'Lr7D@y\ɂ]NK(\ti\G9\\Tm=','',0,'?'),(_binary 'ŊtW\\l)\M\$\','wp-content/themes/start-press/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hq\\A\i',_binary '	q68xօ\\\s\rN~.Zخ[\"','',0,'?'),(_binary 'A)\\\ l','wp-content/themes/start-press/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nq*\\ZF)2',_binary '\&4\"\rQjX\mN\"\\?Po\\\\\?','',0,'?'),(_binary 'Ec\\r(PksX\`','wp-content/themes/start-press/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\\\ 6>',_binary '\@⣂L\EQ\\(ieq[N|&\Ð\','',0,'?'),(_binary 'eߗ\\F_$\c\\0','wp-content/themes/start-press/fonts/glyphicons-halflings-regular.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\tfe9 F\',_binary 't\a±\\0ӫIDv2u\\\\0\\\+T','',0,'?'),(_binary ';\\Vw\\\a\"','wp-content/themes/start-press/fonts/glyphicons-halflings-regular.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\W]c\'\rd\`',_binary '\$\6`\|y+\^	8c%k\','',0,'?'),(_binary '\7\V#,\\','wp-content/themes/start-press/fonts/glyphicons-halflings-regular.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ዿa*.Cq/N',_binary 'Iٖ\KJ\"\tϭ^\\b_[#f\K:O)g','',0,'?'),(_binary '\ll_/,834	\','wp-content/themes/start-press/fonts/glyphicons-halflings-regular.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'r2U\X',_binary '3u2;Wm\\j\ۻ\\"\0!4h0l:','',0,'?'),(_binary '2˛O\\\n\0K','wp-content/themes/start-press/fonts/glyphicons-halflings-regular.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D4mi)z\d\:\',_binary 's-N=ipf\7{\\άTO\\\@\\x\<X','',0,'?'),(_binary '\05q\%k1\r','wp-content/themes/start-press/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b+\ԯ\\3\\',_binary '\\\7O@p3(ì!\?cQG)|_]','',0,'?'),(_binary 'f|eU\mޟ','wp-content/themes/start-press/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\vy/~gi/P\\',_binary 'OM\\Z%\\" )o_v|T\O	','',0,'?'),(_binary '\Z\Dj\[IUGx','wp-content/themes/start-press/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\D-߷\\7EҵkG',_binary '\@\\\C\s?x nJ8Em\','',0,'?'),(_binary 'Za\t%;1O','wp-content/themes/start-press/images/default-banner.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*\\a\rG\qC\\0',_binary 'j3#*\{\W5:\K\W|pk!?WP\\','',0,'?'),(_binary 'i7t\\\~+&\}C','wp-content/themes/start-press/images/status.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C[pTӧͩa',_binary 'T\@\MPh(6\\9C\\4h^CG#','',0,'?'),(_binary 'a]\\XQ\Z\','wp-content/themes/start-press/includes/custom-style.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5q@I\.|',_binary ':	Wy\h\a\ԥ3\=\j79QiO)+','',0,'?'),(_binary 'ݙ\1ݤ\\\7\','wp-content/themes/start-press/includes/customization.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V󩺐Hm\Z\',_binary '?\4QQ\O\ny?{x7D-]sY\','',0,'?'),(_binary '\\ᅣ]','wp-content/themes/start-press/includes/init-theme-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')<\S)W{<\',_binary 'Vx\\C?\0\0[>TT^v','',0,'?'),(_binary 'll\Q\@\7','wp-content/themes/start-press/includes/set-up-assets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Dִ\Y\',_binary '\m\0}\`Y{\\F=\[\h4<y','',0,'?'),(_binary 't@]@<j\\\','wp-content/themes/start-press/includes/start-press-recent-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0>{5n',_binary 'IeKt\C\0³\"&JS\0\t{','',0,'?'),(_binary '\\y\`\VƯP\\','wp-content/themes/start-press/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+-[\\Z	i{',_binary '{\g\E}AQvD<\c\\Gg','',0,'?'),(_binary '\ޭc.F\ \','wp-content/themes/start-press/js/bootstrap.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\e\W\',_binary '&4\\lw\\0\jD\n\\zVMG\0\\\','',0,'?'),(_binary '/%\z\Q','wp-content/themes/start-press/js/custom.js',0,_binary '茜(\O?5[y*',_binary '茜(\O?5[y*',_binary '2#\jDp\=Aˤm\Q\dhQm\e','',0,'?'),(_binary 'X\\"_u\Ts\;(','wp-content/themes/start-press/js/html5shiv.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ި஄UPbt\<',_binary 'Ry1Nhu¿\\\I}؞\\\)i','',0,'?'),(_binary '	$+\U\uP{W\a','wp-content/themes/start-press/js/respond.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\'#^7\Vs\',_binary '\r\{Ztx\ZA7\R!!琏B˔  p\]','',0,'?'),(_binary '{\U;Gp{+\','wp-content/themes/start-press/js/scripts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '妑h(\-b(\.RV\ru',_binary '2#\jDp\=Aˤm\Q\dhQm\e','',0,'?'),(_binary '3GG*h\\jAN','wp-content/themes/start-press/js/wow.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\~4M\P',_binary '|>*i٢2\'E\|Gj\\$KpUJ\ʘ','',0,'?'),(_binary '\na8\I\D\\b','wp-content/themes/start-press/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\3)\od@┝\',_binary 'C$}\\m\]Z%o\\D\\`D\g','',0,'?'),(_binary 'J\-\2MB\','wp-content/themes/start-press/partials/head.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C:[\|S^',_binary '\#\YO\w\T\O\\\\0LOwH','',0,'?'),(_binary 'År\%]i\\;\\','wp-content/themes/start-press/partials/home-body.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YLg5Zq\'[',_binary 'ivdM\f#\=\r\\\ktr\2r#','',0,'?'),(_binary '\L)z6{l','wp-content/themes/start-press/partials/navbar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r_.Ҕ+6\\9\׬',_binary '\\b3=e\\\o6\\/\x%taF\E\','',0,'?'),(_binary '{W31$F\hgB','wp-content/themes/start-press/partials/slides.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\2lG\E\B',_binary '\S܎\\X\/9İm\	\\0Վ','',0,'?'),(_binary 'N\\/٬%\\m','wp-content/themes/start-press/partials/top-nav.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',-J|\~m0Sɢ',_binary '4\M<\ǖ\\_Ʊ,\\n?I#\V\\','',0,'?'),(_binary '^\~?\\>\','wp-content/themes/start-press/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cl\ulGV\',_binary 'u\U\gk\\ӡ#׃\G\\$E}懕\Xt','',0,'?'),(_binary '\x}\4(^5S\0h','wp-content/themes/start-press/screenshot.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\oo\A3\<\0\cb\',_binary 'pj\\0\\\Z\n\{اgQ0\;\t\n\','',0,'?'),(_binary 'iMo\ͻ(y!D=','wp-content/themes/start-press/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mC[MT\\rq}}\',_binary '\:\4Ým4C\T2\CF\_','',0,'?'),(_binary 'Yb=)x\','wp-content/themes/start-press/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}~7m}\',_binary 'C$}\\m\]Z%o\\D\\`D\g','',0,'?'),(_binary 'nA	\Oa;\|j\0\!','wp-content/themes/start-press/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\lvARks',_binary '\/WTGW[\nli#\ _\"\=%.','',0,'?'),(_binary '6\>Xױ{\<J','wp-content/themes/start-press/wp-bootstrap-navwalker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/{\x7kTG\j',_binary '\ZAǁIdͤ&\Q4k]`\','',0,'?'),(_binary '\a\B0\\\\r@\','wp-content/themes/storto/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b0\\MM\\"2h/D',_binary 'cb7\\IQ%\\@\._^}ե\\\\ԡhJ5P','',0,'?'),(_binary '\0<]ډg.&','wp-content/themes/storto/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '瞇G\d\\\\\\m',_binary '/ɨH1\\\=(\6,\\\C2s','',0,'?'),(_binary 'f\{;a\\a\','wp-content/themes/storto/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\\*\r	\*;',_binary '&%32\\J:3\\\\f\v\!W\\\\0m','',0,'?'),(_binary '\31\\tU`\$','wp-content/themes/storto/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E=	\H\+l&',_binary 'FF\Ql:\\\҉-[\C~\'\Q\&','',0,'?'),(_binary '\BQ\:\AěB%','wp-content/themes/storto/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\l\{o[\',_binary '6\\\\pWoQ5\) M\1{M{','',0,'?'),(_binary 'D`y\nۍx\','wp-content/themes/storto/content-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sl?6\\\Pk}K;',_binary 'Y|\rUnUב\\w	C','',0,'?'),(_binary ' D#QbU>\\0)','wp-content/themes/storto/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڼ},-7\\|I.\',_binary '	\{\Za\\Q\$K\_\\U}*Q','',0,'?'),(_binary ']}\6c\\o*QJ','wp-content/themes/storto/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nr@5[7ł',_binary 'q.\t_[R\%\1\F_8\+Q\'','',0,'?'),(_binary '\\)\5To\\\\','wp-content/themes/storto/css/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\rFR\	S&2',_binary '\\}\˹t$\)\ʦP\1~܀\','',0,'?'),(_binary '\\\W`\Ne\nU\','wp-content/themes/storto/css/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ʔ\q3[\',_binary '\\qa#T0\Tn=\\8X\nBg%΀L','',0,'?'),(_binary '5IXB		\=','wp-content/themes/storto/css/gutenberg-editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|/rF\cfw5dMpo\',_binary 'f\f\1*\W\e_w\<Zŭ0*\0A4','',0,'?'),(_binary 'V:3\V\\\F c','wp-content/themes/storto/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\'\]>\\v\\2\\\ZM',_binary 'qoO$K]g3\nÒѐ\~\(R','',0,'?'),(_binary ';\(\#E\'\oS)\C\"','wp-content/themes/storto/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gOP҇č\\',_binary '\~8 ir\\nPp\n2\5DahBzP','',0,'?'),(_binary '->\\]_I2`\','wp-content/themes/storto/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ܷu+R\#,|&',_binary 'Lr7D@y\ɂ]NK(\ti\G9\\Tm=','',0,'?'),(_binary 'W	E~\\\\Y\T','wp-content/themes/storto/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hq\\A\i',_binary '	q68xօ\\\s\rN~.Zخ[\"','',0,'?'),(_binary '\T\Z#\}P_\H','wp-content/themes/storto/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nq*\\ZF)2',_binary '\&4\"\rQjX\mN\"\\?Po\\\\\?','',0,'?'),(_binary 'z\Y_bc\;\','wp-content/themes/storto/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\\\\ 6>',_binary '\@⣂L\EQ\\(ieq[N|&\Ð\','',0,'?'),(_binary 'g-~.\Z=\\|bO\','wp-content/themes/storto/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j8!*>Ӡz\'',_binary '\c>\-d޴v=\0x\\r\\\\bb','',0,'?'),(_binary 'N2c\0I\\\ŷ_','wp-content/themes/storto/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?܇\ch\\',_binary 'a\r|cIr\(K \\\چ~f\\b','',0,'?'),(_binary 'ȫ\\'\'\&	a<#','wp-content/themes/storto/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zp\n%\Fpm\vםQ',_binary '/s\$\b@}\^6\\f)6U*r[\\"\\\','',0,'?'),(_binary 'Z\ik\Myp\F>z','wp-content/themes/storto/images/goto.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Hr\\NF\\.',_binary 'S\DS۾\xoDF\p>Bh+q%O\^','',0,'?'),(_binary '?;zLM3=|\','wp-content/themes/storto/inc/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ss\΁\\\m\',_binary 'GR}e\^6F+o\@\\}L;','',0,'?'),(_binary '\\;~-\n4\\\hb\','wp-content/themes/storto/inc/extras.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɕ\\ŠO	©x',_binary '\ǥu\Bmm jn{\hG\\O\\S\f','',0,'?'),(_binary 'a\ڵ:<FϟY','wp-content/themes/storto/inc/jetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>z\rt/\\rtI\',_binary 'IRdE6%\b>\۶\c5&\YU/\','',0,'?'),(_binary '/\ h+\\'R~Jh!\','wp-content/themes/storto/inc/pro-button/Button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'њ\\#}\\\]',_binary '\\"d{\\tpV\nY|9Y\\0PlBWC\\','',0,'?'),(_binary '\\P.L3W\%\?','wp-content/themes/storto/inc/pro-button/class-customize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$}:\r>+\ٲ.\\ ',_binary 'I\nJ%X,-\*n-^P[^\n\r-eb','',0,'?'),(_binary '\~V-`I5\o=','wp-content/themes/storto/inc/pro-button/customize-controls.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/X\%\\\\HF',_binary 'b!uC!1\'TܳZ\\\','',0,'?'),(_binary '\֘BROQjT\f','wp-content/themes/storto/inc/pro-button/customize-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\U<J}v-s',_binary 'tR\\\\\\\?\\\=\0	\M\Sy{}M','',0,'?'),(_binary '^T\e2f܅\E','wp-content/themes/storto/inc/pro-button/section-pro.php',0,_binary '\f\\ܑ[',_binary '\f\\ܑ[',_binary 'SNH\Z\u!	.6\0l\\\','',0,'?'),(_binary '=5\\Ɩ\ x:\','wp-content/themes/storto/inc/storto-dynamic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\\C\Z0\\w',_binary 'T}{\3sҁމ\rFLJJi~Re','',0,'?'),(_binary '\\뗥[\a\0ͬ','wp-content/themes/storto/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'`sCVN\ >$\\M',_binary '!\:;\$\n\&JN\\Z;	N','',0,'?'),(_binary '\\(;2v[\\>f^\','wp-content/themes/storto/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H5n\h0V\n',_binary '\+i%\^\\\w\"Wk\ҍ<?a','',0,'?'),(_binary '\'\\,`cь','wp-content/themes/storto/js/customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SQh\P}wC',_binary 'ٙC\y+iTۇR}e\\X\X9a/\','',0,'?'),(_binary '\rYrnC\14J ','wp-content/themes/storto/js/jquery.storto.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\\nAn\0\1',_binary '`<rnX\"\\#Cn߂Е\\⁩`׮	q','',0,'?'),(_binary 'F~eR6?G\t','wp-content/themes/storto/js/jquery.storto.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't&\i⽠z',_binary 'Z\\\R\\є\\n\,\D?\','',0,'?'),(_binary '\S\"C\\\\}֜','wp-content/themes/storto/js/navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'\\0\\UBG6V',_binary '\*$\]\r\|\\\"\pz\-x','',0,'?'),(_binary '%\\nR}\[','wp-content/themes/storto/js/navigation.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"2*TL\`4$-',_binary '`\:|rʍ~\+k\'\_\4\\C\0','',0,'?'),(_binary '\'|AWF\/6','wp-content/themes/storto/js/theia-sticky-sidebar.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w\=%W\ظ\B',_binary '\B$7\\m\T\ +h粂5\y\2>\ZbO','',0,'?'),(_binary '\Z@p` \\W\\8','wp-content/themes/storto/js/theia-sticky-sidebar.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '58:#h\?]>',_binary '\-\\\רYai\|\\t\üs\\*','',0,'?'),(_binary '\\!0\**U\\\\S\','wp-content/themes/storto/languages/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p6\r+,\0',_binary '\2y\\\TWb4!d\\n[!L1*\ė\','',0,'?'),(_binary '=o.>O\ZlM','wp-content/themes/storto/languages/storto.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ԍk@\0\\[}PR',_binary 'pso\V\(ۡ\w٧\a\\q`ҥ','',0,'?'),(_binary '\=~\+\\Zj4&','wp-content/themes/storto/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_䄹\\^R%\o',_binary '~Լ\u\g\\\d\0\h4ru','',0,'?'),(_binary '\\ݘ\\V1\\b\EⰬ','wp-content/themes/storto/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B8e\ Q\"P\',_binary 'ծkQ\,#\\>ύ/\\G\md\\','',0,'?'),(_binary 'wG>\vRSG8\\','wp-content/themes/storto/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\`zS\\',_binary '\Pq*@88&H\\ZA\%Ɇ-D\ \\','',0,'?'),(_binary 'h=\0ir=\7]ք','wp-content/themes/storto/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹p5sBƆ]>',_binary '\*fSk᷅@\A\T]-\)W','',0,'?'),(_binary '\"IE\$\','wp-content/themes/storto/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'g\F\\}`\_#',_binary 'cCsƣ?wj\\n菝M᭿\X3','',0,'?'),(_binary 'c4hN}5\rb׭q','wp-content/themes/storto/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\\S;\\҈yXY',_binary '\N즖^P&\"Xl\n\钏!\\'\','',0,'?'),(_binary 'D._IAwQo:','wp-content/themes/storto/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˼RA˘R<T\\',_binary '\PI%j_\3\`\\Zb̲(D\Vj2q','',0,'?'),(_binary '9s\9R\j\\','wp-content/themes/storto/wpml-config.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S$sڌk2@\',_binary '\n\#!۲\dlc܈}>a\\֫pL%','',0,'?'),(_binary 'xs2\\\"Z\U\®','wp-content/themes/twentyfifteen/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x6+\yB\\',_binary '\\\\$gexkHo 26L\\b\','',0,'?'),(_binary '}%J\g\z','wp-content/themes/twentyfifteen/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	d\f\$\5_f\',_binary 'a\\DX\t1\\j]\)k~\','',0,'?'),(_binary '\NVx]ƍ\_\R\','wp-content/themes/twentyfifteen/assets/pier-seagull.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't섙\?1\\"-\r',_binary 'u\\\0e\BH\ռQ|3d\0A\I','',0,'?'),(_binary 'Cs\/X.J<','wp-content/themes/twentyfifteen/assets/pier-seagulls.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E5n5.=J\\',_binary '!*/T\^\zdO\\\\Ե?\T','',0,'?'),(_binary '딑F\\ɩ!70\"','wp-content/themes/twentyfifteen/assets/pier-sunset.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\BB\\\\r.',_binary '\H\̳\1\C\\0]}\\gO(!,4','',0,'?'),(_binary '\|\Z\\\:s\~','wp-content/themes/twentyfifteen/author-bio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\|\+yRϩ<',_binary ':Ч\\VTM\\{\nO\\7L\','',0,'?'),(_binary '\\\Jh\'\{\\a\`_\','wp-content/themes/twentyfifteen/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)f6Z\\:ќ\L',_binary '\\\]\@ޗB8\7\\[ʨ\nK','',0,'?'),(_binary '2[s\$\t\X[','wp-content/themes/twentyfifteen/content-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<\#?\\\spT',_binary '.-}\@N\T$U\PBd}!^maA\','',0,'?'),(_binary '\\`\䃽eW\Y','wp-content/themes/twentyfifteen/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',u\\| 4u?q8L',_binary 'R \\rN\\\\y]\{\Zώ\)4q','',0,'?'),(_binary ';\"\C\ؘܳ hc\Z','wp-content/themes/twentyfifteen/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6N,\h\\\',_binary '\j\>׭N\,t,\\0Ѓ\\\"cO-','',0,'?'),(_binary '\^\K^8v\8\\\','wp-content/themes/twentyfifteen/content-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R|otK\mp\\+\',_binary '\n50\\\\~RwKf1̅~h\','',0,'?'),(_binary '\\\v#\9\\\)?Ip\','wp-content/themes/twentyfifteen/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p>r;1\'&3gy',_binary '\\\^\d\_;\f*\*\\Ք','',0,'?'),(_binary '*\xPW\\\','wp-content/themes/twentyfifteen/css/blocks.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\9?fQHW\*\',_binary '[<\V;,[BA`jXf*M\$u\\\\\;\\','',0,'?'),(_binary '\\\o\z\'\>D','wp-content/themes/twentyfifteen/css/editor-blocks.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q\?\c\t\\\3',_binary '?\K2\6\O\څ\d|P\>\d','',0,'?'),(_binary 'J\0\\\0\\\;','wp-content/themes/twentyfifteen/css/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ߚ\\\&\{Q',_binary '>\[5yw}6\uGF\','',0,'?'),(_binary '\\Ĭ+\0','wp-content/themes/twentyfifteen/css/ie.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q={\\{\n\,',_binary '\r^\R_\\vn>\.O\Β\\\Ԕ','',0,'?'),(_binary 'ld՟L1u0','wp-content/themes/twentyfifteen/css/ie7.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dh=[KM7\\,',_binary 'Z\\:c\Z	\ɺ\k\\{O;\nJcj','',0,'?'),(_binary '\0ێx%d\Z\kK](','wp-content/themes/twentyfifteen/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,h._[\\/O',_binary 'E\5\QL4Ā\M\\\&\(\','',0,'?'),(_binary '\\M\aN\`:,\','wp-content/themes/twentyfifteen/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't^i+5m',_binary '{\\A*|O\j\\D`j\'\3;\VWhC','',0,'?'),(_binary '\'_G>\r-gʯ','wp-content/themes/twentyfifteen/genericons/COPYING.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B;\a`GԢމ',_binary '\+P4\g.\\{\\\^W\/![qu','',0,'?'),(_binary '\}\vϣG','wp-content/themes/twentyfifteen/genericons/Genericons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '→\(\\7kj',_binary 'ɞ1X\\*\*yh\s','',0,'?'),(_binary '\\J];o*P','wp-content/themes/twentyfifteen/genericons/Genericons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/=³zeX*|\\b',_binary 'Ä@\\Pw*\'0M\'D۝c1חd\\','',0,'?'),(_binary 'J9?\+\Q\鴵\','wp-content/themes/twentyfifteen/genericons/Genericons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&tw\4Љpc$',_binary ';=LV|,8\Tg0W\N\QA@kC@\','',0,'?'),(_binary 'donW>a\\\','wp-content/themes/twentyfifteen/genericons/Genericons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's/\n]d\\z\?',_binary '\*\SW\.\~5t=\\\V\p̦\','',0,'?'),(_binary 'u\Q\"\~W\ð','wp-content/themes/twentyfifteen/genericons/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\Mi\\HjJBc',_binary '\0v1\s\N\>cID٦\I\0-','',0,'?'),(_binary 'vlBT\[6\\B\J','wp-content/themes/twentyfifteen/genericons/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\9\nJLa7Q焑',_binary '\{vx(\\DJ*\qb\\Q3\\ѣ\','',0,'?'),(_binary ':X\&e\\ͣ','wp-content/themes/twentyfifteen/genericons/genericons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']e>-d\Qh1>\\'\\\',_binary 'h8@2]\;^<\J+)~bI','',0,'?'),(_binary 'x.o\Z0Lu ϳ\\','wp-content/themes/twentyfifteen/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WpH9E7fE',_binary 'NXMGq_\r\\5,%s\\֗P','',0,'?'),(_binary '\^\CO\\P>\','wp-content/themes/twentyfifteen/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=9\K1Z\\^.\',_binary '\ZI\`u3k:paϞ\7r=\S\\e\','',0,'?'),(_binary '\L$@]%+X','wp-content/themes/twentyfifteen/inc/back-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qd\z\W|=k',_binary 'tzo\\@tRkZ]\yb\\"܉]q','',0,'?'),(_binary '{NxcG^\\Z\\','wp-content/themes/twentyfifteen/inc/block-patterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s2p\\\r\,\',_binary 'V\#i\)\A\0=-A\,Dg\%V\Gd','',0,'?'),(_binary '\\,G :\0/','wp-content/themes/twentyfifteen/inc/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B!\ZٌŮ\\p',_binary '|.\\f\6{c:\\\E,G','',0,'?'),(_binary '*lX\\KPqU','wp-content/themes/twentyfifteen/inc/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\d	\&b\r\',_binary '\w@sI\n\Z3w u>','',0,'?'),(_binary '\aqbOaI\-\\r*','wp-content/themes/twentyfifteen/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\K@\$$5',_binary '|a%=\uUn\\q\\=ag0Qq\A&\\','',0,'?'),(_binary 'q\0^\mvBsfC~\','wp-content/themes/twentyfifteen/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\s\G\'b\k',_binary '\\rj\}\\\TV\\EI\\\B\,','',0,'?'),(_binary '\@N _n','wp-content/themes/twentyfifteen/js/color-scheme-control.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gO:\]ɏ\X\',_binary 'ˬG|\\\0\\f\ˌ,w}ᚋ릞۹','',0,'?'),(_binary 'Z\1hN3\','wp-content/themes/twentyfifteen/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\t\?\r\J4\a\)',_binary '\n\\+7gvnK\\w\u%b\v&\(\','',0,'?'),(_binary '&\\KG)','wp-content/themes/twentyfifteen/js/functions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']t=\\(n,\Z\cS',_binary '\\\\\z{c\ex\\" 3\g#(\\\','',0,'?'),(_binary '\WWՃom\\\\e','wp-content/themes/twentyfifteen/js/html5.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\"ȶjȓP',_binary '٤mSm?\\޾j\r^آ','',0,'?'),(_binary 'koZ\z!/\f','wp-content/themes/twentyfifteen/js/keyboard-image-navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\80r\ro',_binary 'zp\\YuOE\k2\h\!yK\&%K\ʏA','',0,'?'),(_binary '\\q𷞊D`','wp-content/themes/twentyfifteen/js/skip-link-focus-fix.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t\\>:{\\',_binary 'vĜ\\\\e\7\0q\nc^hڣ','',0,'?'),(_binary 'ײ2Dɻ&-u\\	','wp-content/themes/twentyfifteen/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\\+\\jώ C',_binary '>W1(dQ3s$5+s[&Ku\n\','',0,'?'),(_binary '鍕cB\w!\\W','wp-content/themes/twentyfifteen/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B0`Ȇ\Ъ\쯕',_binary 'ge\o Q\\ѱ^m\,^nw㘳a\\','',0,'?'),(_binary '5]\\/\\r\','wp-content/themes/twentyfifteen/rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FJ%\-B+\1',_binary 'v\\'\\\\}\rCt\r\K;\\"\r','',0,'?'),(_binary 'm\\Z/\','wp-content/themes/twentyfifteen/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[tծ1O\rH^\r',_binary 'WA\\L\3\'\j\r\\rNfFza\qUl','',0,'?'),(_binary '\\\\+5\¦DW\"\','wp-content/themes/twentyfifteen/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o\"\k7\'DK',_binary '=|l\\\SR!-p\\r\\!증\','',0,'?'),(_binary '\\"\\\\D-\\gc','wp-content/themes/twentyfifteen/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bt&\\\n\(',_binary '\\	 \D8&	[mQRt7QG\r\\','',0,'?'),(_binary '\\x\Agm%\','wp-content/themes/twentyfifteen/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '֓q\\f?',_binary '@֎=\E\I\R\2(Ezh\N\','',0,'?'),(_binary 'uv՞(S5\훨','wp-content/themes/twentyfifteen/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\i/\\\\\f',_binary 'C\C\"\\6\0\W@Z~\\\4\\\'7\','',0,'?'),(_binary '\\}>\|I','wp-content/themes/twentynineteen/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2$\iU\Vї',_binary 'v\b3샪k\n!{;\]\\\;~=J8\\\','',0,'?'),(_binary '\n\\w;\\]Ǜ\#','wp-content/themes/twentynineteen/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6`\\XL\r',_binary 'yg۱\\Jg\\\zV\x\\\=H\','',0,'?'),(_binary '-\(ҟ\oFL\','wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\\\E\@)_qOr\',_binary '\[T4GzݹoɓHL4` (\;Gc','',0,'?'),(_binary '!Y;I-u','wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\\e\Э\ۭF',_binary ' ^\67\+\k`\ۍ]B\\\Gp','',0,'?'),(_binary 'V8\\8ߟ\rZ\5','wp-content/themes/twentynineteen/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\EZcO.83\',_binary '\4x\"#\4\ϙw2E\\7l\41','',0,'?'),(_binary '>\M~;Oo\\-\I$0','wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f!\<\r\yS',_binary '\"-d\\NN63P`\ʜ`!ڬ	q','',0,'?'),(_binary '\\W\S\:\(\=c\','wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gߔ\\A\\B\\',_binary '\`GS\"Ŝ(Gu\Z	\sE\\\P|\','',0,'?'),(_binary 'T{\'\g,(:~\G','wp-content/themes/twentynineteen/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HZ\TK\`\m\[K\\',_binary 'RSV%6\){O\x2\\NA\','',0,'?'),(_binary '(y\0	pDO`','wp-content/themes/twentynineteen/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dߝ\2	-\t\S;\',_binary '\\:g\~{l\\E\8\\1XT`CYH','',0,'?'),(_binary '\\ֶS\nP\:','wp-content/themes/twentynineteen/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ounl!\',_binary '\N1\\1\swR\','',0,'?'),(_binary '=\k\1m\\\','wp-content/themes/twentynineteen/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\"/I\؍U9\<\',_binary '\\\rOK\\RƩeD\ړ8݃j0@','',0,'?'),(_binary 'J\\\\ǴԾ\c','wp-content/themes/twentynineteen/images/pattern_01.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\;\QBX',_binary '\\(3g`&}\5)s\}me2G[\','',0,'?'),(_binary 'Q\Y\Qf7@2xC','wp-content/themes/twentynineteen/images/pattern_02.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ߢБ^N\0[1#U',_binary 'OH[\Byj\\[\#A縬8Ė\_7	r\','',0,'?'),(_binary '.yz\_\jz\|','wp-content/themes/twentynineteen/images/pattern_03.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\Y)fx:.+\\',_binary '4]ou\\'u\mN\\ZV;Ke\jW>T','',0,'?'),(_binary 'J:`Aq\\\\1','wp-content/themes/twentynineteen/images/pattern_04.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\\\$[\;\\R',_binary '#\\(4\2L{\\]{˖e~1\'\0','',0,'?'),(_binary '\0߯NI\\','wp-content/themes/twentynineteen/inc/back-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2N\\\R,C;b',_binary '3!\Z\=$d\x;$\r\\E\g\\\T\{\r','',0,'?'),(_binary '\\(_\J\D~\\\','wp-content/themes/twentynineteen/inc/block-patterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's~\m˒E\\',_binary '.\(l)p8\R\c\6p,\LX','',0,'?'),(_binary '\\n`m\HIiM\','wp-content/themes/twentynineteen/inc/color-patterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u:q\nX\D\',_binary ']Ggpx?_-lcw.9kG@\\\Z\h%','',0,'?'),(_binary 'x\n8I\Y1\','wp-content/themes/twentynineteen/inc/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T\\\:8b\|\\r',_binary 'X\\:*NY/\\"\d\[Ï','',0,'?'),(_binary 'A-\zN\','wp-content/themes/twentynineteen/inc/helper-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\`O\W:%',_binary 'ք\\8J\j\\\n g^\'','',0,'?'),(_binary '!\"ro\ɿM\8\','wp-content/themes/twentynineteen/inc/icon-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ef\YF]z\\?',_binary ')D\7\^\ޞ>\?}\\\4u\\','',0,'?'),(_binary '*\0\U\'-,M\','wp-content/themes/twentynineteen/inc/template-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=4UB\:},>yz\',_binary 'E;\L&\Ϳ\Wa\6\^\쫝QP/\','',0,'?'),(_binary '\\\\}emH\'\','wp-content/themes/twentynineteen/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8w\\\A]\\oUp\',_binary '\F}O\\\e\S>K*\\F1+T\','',0,'?'),(_binary 'QJ\s3\R\aU*\s','wp-content/themes/twentynineteen/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>n9!<\[qO!\',_binary '0\ed \sXQ8\\\3Z\','',0,'?'),(_binary '%}Mha&\6','wp-content/themes/twentynineteen/js/customize-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{˾b\B5҉',_binary 'E\0Rp4RR\b\\`\a1&\g','',0,'?'),(_binary 'y\57!g\\\ 	','wp-content/themes/twentynineteen/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bY\Zbg jeC',_binary '0]L\0\\W\\\\=,[\\}|\\\\','',0,'?'),(_binary 'V\\Z_\R','wp-content/themes/twentynineteen/js/priority-menu.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ p7\r%mŞ\\\*',_binary 'D(Tu}5{\\ \0+\5g7`\)\y','',0,'?'),(_binary 'ق\)\4g0h','wp-content/themes/twentynineteen/js/skip-link-focus-fix.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jrH\\\B1',_binary 'ՙda1,6\9\%ef;V5+','',0,'?'),(_binary '4\\9\7\Tb~~','wp-content/themes/twentynineteen/js/touch-keyboard-navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j{;74j=\L\\\\',_binary 'ѹT)f-D\/kFb\y\\\\H','',0,'?'),(_binary '|\aV\\~[f.','wp-content/themes/twentynineteen/package-lock.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Z\'A/U-$	\\H$',_binary '\C!˶SJ\\\??uJ%#\VJ','',0,'?'),(_binary 'f\-$G2Jd\','wp-content/themes/twentynineteen/package.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MdQ23 [,	',_binary '3FNAxYXߠ\-qSH\U\\m>I','',0,'?'),(_binary ']9.pe\\\T\\\','wp-content/themes/twentynineteen/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\bv.\\M\s2',_binary 'JÂ\\WS\\"V\JZɌMڛ\\D','',0,'?'),(_binary 'ƌ\Z\\,H','wp-content/themes/twentynineteen/postcss.config.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\تri\E\K]',_binary '\UYX}m\",W\9:۸\.\෦Ho\"\','',0,'?'),(_binary '}\Z\F?Fs\v#','wp-content/themes/twentynineteen/print.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uj%3wlL1*\',_binary '.\\J \TC~0\\\=/\\\','',0,'?'),(_binary '*i\8\]\n4\','wp-content/themes/twentynineteen/print.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4dctsO',_binary '\$eI\8a\*\0D\\B\0','',0,'?'),(_binary 'T\:\ZrD\\ ','wp-content/themes/twentynineteen/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڼ&v\\!|	\#',_binary '{tx\7\iě\O\\~d+f\\GL]\','',0,'?'),(_binary 'D`Bȥ\\n\bǙ','wp-content/themes/twentynineteen/sass/_normalize.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\KU\\1<pZV\|',_binary 'LL\Z\m\h2-s\,+\<\s!@tpzG','',0,'?'),(_binary '\c\E%D\\\	雩','wp-content/themes/twentynineteen/sass/blocks/_blocks.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\m\!w\ː]9\p\A',_binary 'bx͗߇JNe\\\\\@RP','',0,'?'),(_binary '\7\40\\\!Go \','wp-content/themes/twentynineteen/sass/elements/_elements.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\,eh\0\r',_binary '\\nơ\J\xY#$m>ۍյ?U\"$\lz','',0,'?'),(_binary '6:$4-Tg5','wp-content/themes/twentynineteen/sass/elements/_lists.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|R\"NB\UNX\j',_binary '\\V\"\ZkYcnUkYY$-,y\\r','',0,'?'),(_binary '#\V(k]$\\\\(','wp-content/themes/twentynineteen/sass/elements/_tables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\J\&4rS',_binary 'lG\\\w\}V>%{n\\\z;\','',0,'?'),(_binary '\	\1_E\67\\','wp-content/themes/twentynineteen/sass/forms/_buttons.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\䃤inO~\ k`',_binary '\0Ó\rƱ6\ \,\J	\\!d7\n\h\\','',0,'?'),(_binary '\\pCy\)\	\{','wp-content/themes/twentynineteen/sass/forms/_fields.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\rm\E\Z\=',_binary '\H\\ (X\JN5\\<*m\0\r4\','',0,'?'),(_binary '\U\N, \\1','wp-content/themes/twentynineteen/sass/forms/_forms.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|PWܥU\\x\>',_binary 'hVC{B\{\\\4O\b]=\;X)\\(X\','',0,'?'),(_binary '\"-\Ѳ\n2j%\(o','wp-content/themes/twentynineteen/sass/layout/_layout.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	dXNd\?f\f',_binary '\v\\@.|\\\s>0O\A3jA\','',0,'?'),(_binary '\scEvO8','wp-content/themes/twentynineteen/sass/media/_captions.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gr_\\\6D\',_binary '\-L\\\n@A!\\@\\\f','',0,'?'),(_binary 'm\CB.ե\>F_\#','wp-content/themes/twentynineteen/sass/media/_galleries.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Q\6y\Xg\\\',_binary '6!1oAu\Eo\Fw\9\n4\0\\%wM\\rg','',0,'?'),(_binary '\rduQ\n\k','wp-content/themes/twentynineteen/sass/media/_media.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':-\Js+YrCx',_binary '$?2sȉ\FG?TC?EkB\\f \\S','',0,'?'),(_binary 'Ӱ@p\\\ 5xP','wp-content/themes/twentynineteen/sass/mixins/_mixins-master.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M}yr\n\W\ɹU',_binary '&жd\I\I\28!.!е̼\u','',0,'?'),(_binary '\̵\\%0i2\','wp-content/themes/twentynineteen/sass/mixins/_utilities.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6$\=(d\Ls\C`c',_binary '\\\/C\ܰ\\/ŏ\@\\X\Y!C\','',0,'?'),(_binary '?\C\!Ӳ','wp-content/themes/twentynineteen/sass/modules/_accessibility.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\n1n\\鸗\94',_binary '/h\f=@\05\H\0\r7t\m\8','',0,'?'),(_binary 'Ǽ=\\/%@6Dn','wp-content/themes/twentynineteen/sass/modules/_alignments.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,oy\2W\>j\}u',_binary '̰簃b\\\p4\i\шB6\\\A\\','',0,'?'),(_binary '\=\m\\\^D6W','wp-content/themes/twentynineteen/sass/modules/_clearings.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\\\*\猡j/\',_binary '\s\\3s=\#q\˞< I\'r&\','',0,'?'),(_binary '\\\X\0T\O\','wp-content/themes/twentynineteen/sass/navigation/_links.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u#\~\m',_binary '\04݌^\ZY\\i_O\_#','',0,'?'),(_binary '\?UB\wN	i\','wp-content/themes/twentynineteen/sass/navigation/_menu-footer-navigation.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ir,)\y}ەO<V',_binary '\\\x8o1\\\\b\pr\p','',0,'?'),(_binary '/Mn\\\(sv','wp-content/themes/twentynineteen/sass/navigation/_menu-main-navigation.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*T\\;󍥎O',_binary 'JP\"Aұ\rSP4In\Z*\0A\'ϫ\p\/]','',0,'?'),(_binary '\[:\Sh	˸\','wp-content/themes/twentynineteen/sass/navigation/_menu-social-navigation.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"!\\b\"3O^\',_binary '#@^\=}l5\@\\W\\\sa	#a\ \V','',0,'?'),(_binary '#\z1h\\;','wp-content/themes/twentynineteen/sass/navigation/_navigation.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\]\!I?֖]\ZE',_binary '\\5,\nRjtݑ\ʦ/\','',0,'?'),(_binary '[̉\\$\'\','wp-content/themes/twentynineteen/sass/navigation/_next-previous.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0]\mI6.\\\Y',_binary 'c\V\xy(#il8L}e޷\\','',0,'?'),(_binary '	l\q\1T\i\','wp-content/themes/twentynineteen/sass/site/_site.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't(\}\<;\\dC',_binary '\\XmW\\MK\t\V8Ɗ\','',0,'?'),(_binary '#QCw\3eX9','wp-content/themes/twentynineteen/sass/site/footer/_site-footer.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\gˉP\IZ',_binary '@U\\JL\$)\ZO\\|\bS|oR','',0,'?'),(_binary '0\$\'`Õ\n\\\','wp-content/themes/twentynineteen/sass/site/header/_site-featured-image.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\thc\y1n=\A',_binary '\I\ʌ\?(5\]]Fr\A\~{tJ?','',0,'?'),(_binary 'O~LȦ\"f~|\;','wp-content/themes/twentynineteen/sass/site/header/_site-header.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\'u\\?\ک\"-#',_binary '1,\0\љLv/\r>%\"\\\','',0,'?'),(_binary '~\\`\Wj\\|iLI=','wp-content/themes/twentynineteen/sass/site/primary/_archives.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BH\n!O\Y\',_binary '\h\\o3U 	\\~n6\>i~M#','',0,'?'),(_binary '\\\FZ\7i\','wp-content/themes/twentynineteen/sass/site/primary/_comments.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\7`\sƗ$',_binary '\n\BEqOȈ}]\ \\ULryi\\','',0,'?'),(_binary '8ՠ)j,z','wp-content/themes/twentynineteen/sass/site/primary/_posts-and-pages.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\$ǽy\o@',_binary 'vɘ(f]A\\?pAR\Za\\Ɓ& A9\r[2','',0,'?'),(_binary '\:\6de\'O','wp-content/themes/twentynineteen/sass/site/secondary/_widgets.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\6>	ጤC',_binary 'u\\yҺ\0v\&%0)^\\ZA\6\','',0,'?'),(_binary '\뻛Ib,6Y+8:','wp-content/themes/twentynineteen/sass/typography/_copy.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oH\\`F\U\TP',_binary '+\\\\\`F\\~\\)?9G}B1\','',0,'?'),(_binary 'Z@EyaB','wp-content/themes/twentynineteen/sass/typography/_headings.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oc\>w+&\\S\ZK\',_binary 'pЎ\(\W\\\\\	c\36\0\\\'f\','',0,'?'),(_binary 'W׾5^l__#','wp-content/themes/twentynineteen/sass/typography/_typography.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#J-霑o\'\\',_binary '\\nek\o@l\_\ky~YWŢA','',0,'?'),(_binary 'B_\-Th\+`äR','wp-content/themes/twentynineteen/sass/variables-site/_colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '۞/q\˓(T\>)',_binary 'tGք\\2\ZF\]aY\\\Jb\p\\','',0,'?'),(_binary 's]Pf\\\\n','wp-content/themes/twentynineteen/sass/variables-site/_columns.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_ɘ6L:V!wu',_binary 'w0̃\|^\;Ym\\n\L\i24','',0,'?'),(_binary 'G\\\M\.\','wp-content/themes/twentynineteen/sass/variables-site/_fonts.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VRor`G=6ܾ',_binary 'Z{L\\ GNJ\\n\	\\\\⪋\','',0,'?'),(_binary '_B\\0\\r\pIu','wp-content/themes/twentynineteen/sass/variables-site/_structure.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']Vj-m\n\\J',_binary '=\\0td\n\J\\eܐZ<sn6\\t','',0,'?'),(_binary '3qc;*V\08\\','wp-content/themes/twentynineteen/sass/variables-site/_transitions.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iH\\\Y	y',_binary 'Ks;o\\\ZÏYS\\\!e\\\\','',0,'?'),(_binary '\-ФQ1Ц\r ','wp-content/themes/twentynineteen/sass/variables-site/_variables-site.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"c/0݊\',_binary ',%d:?\-ǯM\!k\gF6\ݱ\Rlj','',0,'?'),(_binary 'hr/\B\'0','wp-content/themes/twentynineteen/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\x4Ҫ',_binary 'd\@\d%1M\Mo61\\Vk','',0,'?'),(_binary '\n\Oe\lgn\3\"\\6','wp-content/themes/twentynineteen/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pѺ5\G5Kc',_binary 'v\\$\YTp>*\V&Q\\=^ÍC{ExX','',0,'?'),(_binary 'A/hͳ$BQ\:\\','wp-content/themes/twentynineteen/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\N|F\\ %',_binary '\;\`\ :6\P\q\L:*;\','',0,'?'),(_binary 'e\\-osŕ;\/','wp-content/themes/twentynineteen/style-editor-customizer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V{\C\>4꺾',_binary '\z74\|X1\\#{/\Yio(','',0,'?'),(_binary '%\I3-\7\','wp-content/themes/twentynineteen/style-editor-customizer.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\ Y',_binary '\z74\|X1\\#{/\Yio(','',0,'?'),(_binary '3\\\\9`w\q','wp-content/themes/twentynineteen/style-editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\^6s1\e\H',_binary '\MXXP2\(m{0->O\{\93_','',0,'?'),(_binary 'WU\?\tl/W >','wp-content/themes/twentynineteen/style-editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\ѵz\\C7S\',_binary '[\EP\"b\0Ɋ\\"BG܃\$','',0,'?'),(_binary '\&\?.\r\s\;=9','wp-content/themes/twentynineteen/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϸ\nAQnM}ʥc',_binary '\!10\)SGe\	5hCG1\o\h\0!','',0,'?'),(_binary 's(:ӣ$\\\r','wp-content/themes/twentynineteen/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\\"`ń\.T\N',_binary '\\\&\+a\ɭgW!1\r','',0,'?'),(_binary '|^9\<h|.K','wp-content/themes/twentynineteen/style.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\mMx\D\rm(/\',_binary 'y\?=+/_g\\Y4Z','',0,'?'),(_binary 'BK\\@~&^8','wp-content/themes/twentynineteen/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f\\ɐ]Xc\Դ',_binary '\\{$S:[\\J<g\+k\\&jQ^ޢ\Z','',0,'?'),(_binary '>v]{rq6x','wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\\13?\\q|\թ',_binary ';ԸP\\I\\@?56tkN8@\=4','',0,'?'),(_binary 'Lw+\$\4|ns\w','wp-content/themes/twentynineteen/template-parts/content/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PP>-\\f?\',_binary '@u\ |-\\ZK\Zbk^\R4hM\Ψ','',0,'?'),(_binary '\`V\\\9\','wp-content/themes/twentynineteen/template-parts/content/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ş8\\Z^%ʪ0\\',_binary '	N\\ż	I6h\%^?`v\Y\=\2','',0,'?'),(_binary '\\w(\\'\s\y\\:6','wp-content/themes/twentynineteen/template-parts/content/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I,\\I\\ǍSu\\',_binary '\roh}\}iV\Aԁ\H\!v\>4}\\M','',0,'?'),(_binary '[B\^\\	Z1','wp-content/themes/twentynineteen/template-parts/content/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\?Y*r%u',_binary '?Zt-(D~$mͼwj\x$\n^E\','',0,'?'),(_binary '9ĠZq:j\nU9(\Z\0\\','wp-content/themes/twentynineteen/template-parts/footer/footer-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\tsڽ\xȍ5\w',_binary '\\Z&\\: %7?\T\bos,@)k','',0,'?'),(_binary '`\o\\'c?/ \','wp-content/themes/twentynineteen/template-parts/header/entry-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0D\\j<',_binary '\I\Z{\!\M}OLbdpO\hV\Û','',0,'?'),(_binary '\\r\V\\2P\-+x@\','wp-content/themes/twentynineteen/template-parts/header/site-branding.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\}Vy\n\Y',_binary '}DuغiI|\{&މg\\0\\\','',0,'?'),(_binary '[\\\\\\R','wp-content/themes/twentynineteen/template-parts/post/author-bio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ћ\E\\\\-Dѷ',_binary '2\ \\ă\\\`\|\\K 6<#:Gׯ\s','',0,'?'),(_binary '\".}}X\\1\\Z\','wp-content/themes/twentynineteen/template-parts/post/discussion-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\O^kZlnK#',_binary '\\\\Kj\ĳ\q2i\c^%ܓK\O?','',0,'?'),(_binary '%\)\r\\\'','wp-content/themes/twentyseventeen/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q \\]\R-\\\\',_binary '\\\y@\P޿^$VM7|\\])\r\5\\t\','',0,'?'),(_binary 'aq+^JU\S','wp-content/themes/twentyseventeen/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q7AG&Du/۶{1',_binary '\W<\qsJ\,/B\{q_\\kakY','',0,'?'),(_binary 'IY{N#败bcP','wp-content/themes/twentyseventeen/assets/css/blocks.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZkN\fUs',_binary '|uc%\h\\)q\"O\\t&','',0,'?'),(_binary 'A\\[,#V\\^j\\','wp-content/themes/twentyseventeen/assets/css/colors-dark.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'æKu>\-޿dʷ',_binary '\lx,t\\ayq\\i7r|\\V','',0,'?'),(_binary '\\5x\\sS\&\\','wp-content/themes/twentyseventeen/assets/css/editor-blocks.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0 1W\8}B\\',_binary '6r\:*\\OH\N܈g\n\<','',0,'?'),(_binary 'gt\.H*W=C','wp-content/themes/twentyseventeen/assets/css/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\gfE\"0\ls`\\;L	',_binary '=F\'O\**E\bQ\\\7˪0\3','',0,'?'),(_binary 'P\p4!Iai\\\','wp-content/themes/twentyseventeen/assets/css/ie8.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GV\#(zߘk \Z',_binary '\qA\\VIB₏\\.;\0s`jM','',0,'?'),(_binary '\[\\\0|\2Ŷ','wp-content/themes/twentyseventeen/assets/css/ie9.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\yLS+\\j;\',_binary '\\Z.| \ؤ(=\16ƚMϸ\-\n\Gk','',0,'?'),(_binary '{m\ѡMYm\|;F','wp-content/themes/twentyseventeen/assets/images/coffee.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aޞ\Eoe\	P;\b',_binary '\\lϸv{z2\\\?\H\9\l	Mt\\#\er[','',0,'?'),(_binary '\\y\{k\N\ZU%Y','wp-content/themes/twentyseventeen/assets/images/direct-light.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7Z^t\$j\\bA',_binary '$J*pg¤ys\\\r\\	\TC','',0,'?'),(_binary 'T\_T-xE&\8\\','wp-content/themes/twentyseventeen/assets/images/espresso.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p)=c#|\\',_binary 'edGKs\,v\E\ A4\\\0\\o7)','',0,'?'),(_binary '\{A7?\0\Z.\','wp-content/themes/twentyseventeen/assets/images/header.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0CEK>5|Q',_binary '|%`\}3?M\±KXWMEX','',0,'?'),(_binary '4:\5~ǒM\','wp-content/themes/twentyseventeen/assets/images/sandwich.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j\n\v7\\59',_binary '\QzХ\j@\|9^.l?\2\ܞ','',0,'?'),(_binary '\\\Z\X,ivhPl2|','wp-content/themes/twentyseventeen/assets/images/stripes.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H=G:\W\\&n\s?',_binary '~W_	@?\2\l\\W{*2\;\','',0,'?'),(_binary '\tj\-R\\O','wp-content/themes/twentyseventeen/assets/images/svg-icons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N}-;&)v߻Lٍ',_binary '\\\R֨̐T\Z\y	@+8ֱ~8;','',0,'?'),(_binary '%\\Fk!\u','wp-content/themes/twentyseventeen/assets/images/white-border.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?Ζ+]\X\\á6t(e',_binary '	\7\"d\u,IERl\\I\\x','',0,'?'),(_binary 'ǥc\Z$\L*\u\','wp-content/themes/twentyseventeen/assets/js/customize-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ŏB ˺<W>',_binary '\\nW+\r39N\\υf\?F','',0,'?'),(_binary ';&_\XI\\%;','wp-content/themes/twentyseventeen/assets/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=ne\4kIa',_binary '\rd\w#%D\5ʂ\ZB./q=}/\\','',0,'?'),(_binary 'T\QaP\0\?򢣡H','wp-content/themes/twentyseventeen/assets/js/global.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0q\WHV#G>auz~',_binary '&\K`29O?3U{\`2YH:\21&0i\','',0,'?'),(_binary '<tDXϦF\','wp-content/themes/twentyseventeen/assets/js/html5.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\lݔ\O2\\\nY',_binary 'Ry1Nhu¿\\\I}؞\\\)i','',0,'?'),(_binary '\28c\"<;\\\Uv\?\','wp-content/themes/twentyseventeen/assets/js/jquery.scrollTo.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zu/xGqxwğG',_binary 'p\0\\\O\\	\\9@5E~U','',0,'?'),(_binary '\Q#j\5P\!','wp-content/themes/twentyseventeen/assets/js/navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\reԅp\m\ߑ',_binary 'J\zQno\\\\\	\:\0S4t','',0,'?'),(_binary '\\\iPGN$\','wp-content/themes/twentyseventeen/assets/js/skip-link-focus-fix.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^fzDJ\',_binary '\:($KѼyϏ\7b\\f㓶','',0,'?'),(_binary '\DX1[]+:A\\','wp-content/themes/twentyseventeen/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nap\jM2\\'',_binary '\y\0^\\\0̝ED+\fD\PT\Fd\yB','',0,'?'),(_binary '|7͹9YO\\L\','wp-content/themes/twentyseventeen/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U~4\^ݧT\',_binary '\{軒8,\=Z k\\0\\'\vҩQP\','',0,'?'),(_binary '\rb/#\\Q\\fi','wp-content/themes/twentyseventeen/front-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\$\\&ab',_binary '\f\\y\ &Q\rw+4J\\P','',0,'?'),(_binary '\i\Y\uN$U-l','wp-content/themes/twentyseventeen/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\h<k\z\ә\\/#',_binary 'uQk}J\֏C^\\\\\	\M\\۸','',0,'?'),(_binary 'y\\z\\"S','wp-content/themes/twentyseventeen/functions.php.orig',0,_binary 'S0-A#\',_binary 'S0-A#\',_binary '\n\\gA\\\\+ZA5̂눣DsNї','',0,'?'),(_binary 'fkp~\\7','wp-content/themes/twentyseventeen/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kɣ7yq\\ب',_binary ':	\\Z\4c?\\ ,\\\','',0,'?'),(_binary '\o-\b\\\%ǃ','wp-content/themes/twentyseventeen/inc/back-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}<\cӓ&',_binary '#q>{~4e\\ڨ\\\MZ\L\\','',0,'?'),(_binary 'dC\b\zE\nc','wp-content/themes/twentyseventeen/inc/block-patterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<Lܰ4VPg\Z\n',_binary '\HGL\\V\\(.V.6@\C','',0,'?'),(_binary '^;DY\r0R','wp-content/themes/twentyseventeen/inc/color-patterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kg\s\Y\=\b/bęZ',_binary '?NP\f\`g \AeR^\\\PH%','',0,'?'),(_binary 'F1}Etjut','wp-content/themes/twentyseventeen/inc/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?29',_binary '\Sv\\\Qn\*\^+7\rYf','',0,'?'),(_binary 'Ps\m\r-t\"\%','wp-content/themes/twentyseventeen/inc/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@0\:sjK\W\_r\',_binary 'o\3>˵\\\r]\\\\q7Xw1XPP','',0,'?'),(_binary '\LKfw','wp-content/themes/twentyseventeen/inc/customizer.php.orig',0,_binary '\\E\.2\r\ȮD\',_binary '\\E\.2\r\ȮD\',_binary '-,\[8N\\yXQh\"\>s#M','',0,'?'),(_binary '6؈2\\\','wp-content/themes/twentyseventeen/inc/icon-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6j\Ľ\t',_binary '\n\\9*7WT$#/3Qs\ui\(','',0,'?'),(_binary '/\7\\[\n\','wp-content/themes/twentyseventeen/inc/template-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UQ&\\ք+',_binary 'J/\\QTi)a\}\Ѫ]\Q','',0,'?'),(_binary '\\}\Uk\\Xm\','wp-content/themes/twentyseventeen/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p6ÿ\0L',_binary 'MKx\\\G̽-ru\\n=*o','',0,'?'),(_binary 'QK\\0\H\0	E\','wp-content/themes/twentyseventeen/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\nDԥ\\rL\pCv',_binary '-^\v5Mw\y(8G4\\ff\','',0,'?'),(_binary ')\]\\D\@w','wp-content/themes/twentyseventeen/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\v:(Od\\E',_binary '\ \z@*S|5\.HR\QuJ_\\j','',0,'?'),(_binary '@\\L(Yٚ~\\*\','wp-content/themes/twentyseventeen/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\\oH,\ܜ\=vA',_binary 'F\!v4\;\d\飧sĽX=͞k.','',0,'?'),(_binary '\X&\5\[v\bI','wp-content/themes/twentyseventeen/rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PVɶV\ɿ',_binary '6߻T\\\0}п\\/{FE>m','',0,'?'),(_binary '\J\|\n\b㓅a','wp-content/themes/twentyseventeen/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DȊs\\Oq\\2',_binary 'Ajn\nrقi7˯@\"C\-\'(p\o','',0,'?'),(_binary 'D\1wN\u<m\M','wp-content/themes/twentyseventeen/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$$\of8v\\',_binary 'MS\\\B?\grm[ΚL;@\','',0,'?'),(_binary 'Y\n?5\tm\\!\3','wp-content/themes/twentyseventeen/searchform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_lں	\\G}9f/',_binary '\r\\\دG\;ļ:\\\\wO\','',0,'?'),(_binary '{9\\\\'Y\l\v:','wp-content/themes/twentyseventeen/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A*\Z5\xo)\0M\'',_binary '\sj\\\Pռy~\/P:Ks#+$)t\','',0,'?'),(_binary '\:,~\PLEI\\','wp-content/themes/twentyseventeen/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}	7\Q{3Ο\\\',_binary 'P8ۇ07\ֶ\m/ÒE%\Wa\\\','',0,'?'),(_binary 'g?~*5@Ɖr\1','wp-content/themes/twentyseventeen/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\/\˚\SbtsH',_binary '\\~\+U\\\i\\\M!x\<8~G)','',0,'?'),(_binary 'je\\b=','wp-content/themes/twentyseventeen/template-parts/footer/footer-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\֏0J\C\~',_binary '3IQ\DxFn \\	-\r\70~mwkt\','',0,'?'),(_binary 'r2ÁXzeb/\\','wp-content/themes/twentyseventeen/template-parts/footer/site-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\xEaY\H|\'\u',_binary 'ϒt\St:}\MKj\\,O,:HsEJn\','',0,'?'),(_binary '蓶Fշ	!c','wp-content/themes/twentyseventeen/template-parts/header/header-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't6h7oɕ\',_binary '#\m)\s̢\kg\oŇU\\','',0,'?'),(_binary 'K\iEurK\ږM','wp-content/themes/twentyseventeen/template-parts/header/site-branding.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B8<\|5o]a\0$\\',_binary 'd\ǮOW-^E\\m\	\<\0\Dp>','',0,'?'),(_binary '|mN~lEJߣ7','wp-content/themes/twentyseventeen/template-parts/navigation/navigation-top.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\rMx\\b$',_binary 'P(*ٮp0P-:䥩\TrZ','',0,'?'),(_binary '\\\>\*;','wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0Z\=z\qSs\\',_binary '$\\SJ\#fdG\ΚЯ\\r]\r\\2\\r!','',0,'?'),(_binary '2ni\0D2Mh\','wp-content/themes/twentyseventeen/template-parts/page/content-front-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cs{_fG-h@',_binary 'jh&1Tao-;K\\0\%\'\\"\','',0,'?'),(_binary '\0\ifP\+ܠI','wp-content/themes/twentyseventeen/template-parts/page/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lCG,L\\\M\\~U',_binary '/<W[<guo[2Ř$3\(-p/\0','',0,'?'),(_binary '\\ˮ\\0\\(Չ','wp-content/themes/twentyseventeen/template-parts/post/content-audio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w;t;I\\\\[',_binary 'd9\NR\*&(	꣜|_\+V`','',0,'?'),(_binary 'T\\w\\\4|R','wp-content/themes/twentyseventeen/template-parts/post/content-excerpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<{d\30y\\',_binary '}^~\_Z]\Z\ILҖ\\h`W','',0,'?'),(_binary 'D\\rT\\1','wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-k^W@\\N\&',_binary '\@\\\j\q \\@{a0\J5\\\','',0,'?'),(_binary 'B\n\ODt\\%','wp-content/themes/twentyseventeen/template-parts/post/content-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²\\\\\\\F',_binary '0\!(UNA\j%&\EoPrAM\\\','',0,'?'),(_binary '1Fb3}\!Q[dۗ','wp-content/themes/twentyseventeen/template-parts/post/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c~\o\de`',_binary '\\,\\o\kg\"\$ф0\/ZW\<.','',0,'?'),(_binary '\\6_\\\zTU\','wp-content/themes/twentyseventeen/template-parts/post/content-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\o$k̕N\<',_binary 'sɽ7ɐ\|m.\D9\&d1lP','',0,'?'),(_binary 'R\J٥D\cvցK','wp-content/themes/twentyseventeen/template-parts/post/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)\0s&\g\$c',_binary '\\P\/6&..\\	6\yhCkO\','',0,'?'),(_binary 'ٹӃ2HAY\fM#m\','wp-content/themes/twentysixteen/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\όJ\WO\\\S',_binary 'q[CơQ1\\*\\-\\ڷoXܽ\','',0,'?'),(_binary 'Ӎ?K\%Q6$\3','wp-content/themes/twentysixteen/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g7\"L6\DEk',_binary '\\\ɣ IY/d\\x19\/E*','',0,'?'),(_binary 'z\7,D\Z2\㭉M','wp-content/themes/twentysixteen/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5t\а<m\U!',_binary '}n\02(2\\)d>\Ɓ\e\K;nCs','',0,'?'),(_binary '\-f[\?шZ\','wp-content/themes/twentysixteen/css/blocks.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\n@}kZ Yd8',_binary 'ө-;-\8vW\\"2g\&U	=\\foO','',0,'?'),(_binary 'V%\o\$959x\&','wp-content/themes/twentysixteen/css/editor-blocks.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%c\\\ʆ6\r\޿',_binary '\\OT\npݚ\*\\>ThJ\Z/\&Bz','',0,'?'),(_binary 'h0so\P\m)\','wp-content/themes/twentysixteen/css/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\*RK@\ZN\݋',_binary '\)\e-=%\\\\k\Z\O\V\"5\\','',0,'?'),(_binary 'V;\6\\\́=ƾ','wp-content/themes/twentysixteen/css/ie.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\Z\M\\)ly?',_binary '\05iV\ro\F\ʛ\AM\\\Y|C \','',0,'?'),(_binary '\\\_\Vنb','wp-content/themes/twentysixteen/css/ie7.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"C\fYmU\\\',_binary 'ntC\E1*9s\\Z5\jsBa\Ze\'','',0,'?'),(_binary '\SW\M#a!\%4','wp-content/themes/twentysixteen/css/ie8.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\3+Q1_\0',_binary '\N?k\\\xI\_\G|O\\T','',0,'?'),(_binary '\\\z@\\%','wp-content/themes/twentysixteen/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\h3\N<',_binary '\Ԙ\\ZEy\\E\\k\\H)\*\yl\','',0,'?'),(_binary '<Q\4,Zhʨ|','wp-content/themes/twentysixteen/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ʉ;\r\`',_binary '\6Hͱ\E\Z\m5`NP\\\O\','',0,'?'),(_binary '^+w7b=\;E{','wp-content/themes/twentysixteen/genericons/COPYING.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nOQ!\\\nK\',_binary '\+P4\g.\\{\\\^W\/![qu','',0,'?'),(_binary 'fw@\\\JF\','wp-content/themes/twentysixteen/genericons/Genericons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sө\n/;]s>',_binary '4+_\[\\\\qpv,\{\l\\','',0,'?'),(_binary '9\}\몟!\Z\r','wp-content/themes/twentysixteen/genericons/Genericons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\Z\2\\\\\',_binary '(\5\\\&HFI7l24=}`j\V\\\Bj4)\','',0,'?'),(_binary 'Ex\"GC~2J\ŕs','wp-content/themes/twentysixteen/genericons/Genericons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\' N깛\\V',_binary '?ǵ_-ϟ\\b7b\Z	\'fp>UG\0','',0,'?'),(_binary 'sy- A\XQ\g','wp-content/themes/twentysixteen/genericons/Genericons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\;(H\\-Jhtx',_binary ';\m\}\\\\\\e(~y0m=},','',0,'?'),(_binary 'TfP%,5H\\4','wp-content/themes/twentysixteen/genericons/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\¼\h\'\#',_binary '\0v1\s\N\>cID٦\I\0-','',0,'?'),(_binary '#q\[\nhK+\8\\mx','wp-content/themes/twentysixteen/genericons/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\>\\h;',_binary 'ҕRw\&8J\ie@\\<M\}<,\"/d','',0,'?'),(_binary '\򩐗⼑B\W','wp-content/themes/twentysixteen/genericons/genericons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x.D:]c',_binary 'ފ\\\uZMzw\KV\|\r\ܾ\/','',0,'?'),(_binary 'C\~gI/\i_D','wp-content/themes/twentysixteen/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\kI\b5\e\0[![',_binary '\2\ť\\AB ?ۺ_R*b\','',0,'?'),(_binary 'ѼR\Kd\\\P','wp-content/themes/twentysixteen/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\i\<BJ\\;d)',_binary '\\\\\wn8\'\,54,;{\U\xk,','',0,'?'),(_binary '\]]Sx^\6\','wp-content/themes/twentysixteen/inc/back-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Җ\\\k\\\uK4',_binary '+&ùo\EKnK\4lBL2\h`3','',0,'?'),(_binary '<>\'IK\]u','wp-content/themes/twentysixteen/inc/block-patterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\T)Yk\)2b',_binary 'r\s%\Ri	o\\7\񕢍','',0,'?'),(_binary 'fyĐƼvhK','wp-content/themes/twentysixteen/inc/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s\\S\F\=>\',_binary 'I\\$C\#uO\;]\$dg\63* \*{','',0,'?'),(_binary 'x\k\M^\\O','wp-content/themes/twentysixteen/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sw2gom\Z(ÿ',_binary '\\&\O\	&#\ܰw\\\_\J\','',0,'?'),(_binary 'swf\Pr\\u;','wp-content/themes/twentysixteen/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3mʪ\3VG\\'r\]',_binary ';琤B\\}\G#G\?!*Q_2\','',0,'?'),(_binary 'bʡF1t=\\\	v','wp-content/themes/twentysixteen/js/color-scheme-control.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\w]{#@\"M',_binary 'LF\"=\	*\F\_Oy{\\\\J*v	','',0,'?'),(_binary 'Ml\/A\\\q۷\-','wp-content/themes/twentysixteen/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\g^`0i!',_binary '\hjt\\\\\n\\\:W6T\\\','',0,'?'),(_binary '\\D\&\M\E\*ީS','wp-content/themes/twentysixteen/js/functions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ɠl:\w:\(Q',_binary '\\*5v#˒~\\e`zZ Fo;ԫ','',0,'?'),(_binary '\58Ryx*','wp-content/themes/twentysixteen/js/html5.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\lݔ\O2\\\nY',_binary 'Ry1Nhu¿\\\I}؞\\\)i','',0,'?'),(_binary '>#\\\wtE7','wp-content/themes/twentysixteen/js/keyboard-image-navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Wǌh%\n(',_binary ')4vo\\$E(\v9DF\\r\\U','',0,'?'),(_binary '\Mލ,T\v\\Z\0\0(\U','wp-content/themes/twentysixteen/js/skip-link-focus-fix.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S+橸\WbW7\e',_binary '\Q\+oB\V\\jᝄSFGZҾ','',0,'?'),(_binary 'π3\Ӱ\\!\&','wp-content/themes/twentysixteen/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WQi\y\\\\',_binary '$\7\pGQ]GxN\\0X7n9|','',0,'?'),(_binary '6\\\tiy\xٿ','wp-content/themes/twentysixteen/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')y飜\\\H96T\',_binary '\\\\ZZݢ|f\7S]Mm','',0,'?'),(_binary '\B\Ȱ.\\07\\','wp-content/themes/twentysixteen/rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DƹNc\\\7\\n\<',_binary 'F^Fb\\\\h\2؏\\\MA^frC\','',0,'?'),(_binary 'x\,¨N2D\˱','wp-content/themes/twentysixteen/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\#J/<W\',_binary '/\d\Zօ[U[`{,\2\|1W\[̚','',0,'?'),(_binary 'M\2\έ\\"\@\8','wp-content/themes/twentysixteen/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=\"&	/OU',_binary '#\{\0b\$0g_%*<\vt,\Xѥ\','',0,'?'),(_binary 'FbىQ\lC','wp-content/themes/twentysixteen/searchform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bc}s\JR\2-\\',_binary 'z\Vr\;\l?\q\#RS\\6OA','',0,'?'),(_binary '\lޭ','wp-content/themes/twentysixteen/sidebar-content-bottom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j~נ߸>9\a\',_binary 'bbq΀IZN6Kܸ_\+:<-S\\','',0,'?'),(_binary '_\\\BaPG;\','wp-content/themes/twentysixteen/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=+<67\~\[\Zqm',_binary 'zz=[\8.V~N&3r\vE\','',0,'?'),(_binary '\&U\\\k','wp-content/themes/twentysixteen/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\\\0p\kP',_binary '0oЎ\5\>\#l\WW(et\\jd','',0,'?'),(_binary ':\;:-s\\5\'','wp-content/themes/twentysixteen/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PW	Sneg\.',_binary ',,$N7qn\\\8\\v\Ρ\','',0,'?'),(_binary 'φK	ըLH:dg\<6','wp-content/themes/twentysixteen/template-parts/biography.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\p\N\\\)?(',_binary '\/v@\X5O]d|\y\;ג','',0,'?'),(_binary '4\Br8Xs)\','wp-content/themes/twentysixteen/template-parts/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\+\eAՉx',_binary '}1%np\W\c%98\%\\\Gj\\\\\ȷ','',0,'?'),(_binary 'C\L\\\LJ\@\\','wp-content/themes/twentysixteen/template-parts/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%*\0Փp\c\ß',_binary '\7,h\о>#s\"$\ܱӳIя\\','',0,'?'),(_binary 'sK C\\\\G/','wp-content/themes/twentysixteen/template-parts/content-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zg(>\\aSw\`Jl',_binary '\TVH$L^\}\\\`\5\\rX0g','',0,'?'),(_binary '\.aZ\\ja','wp-content/themes/twentysixteen/template-parts/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\DF_iK\n#\n\',_binary '\"-<p\\\a\@ \\7٦','',0,'?'),(_binary '\V\\\ۜ\}A','wp-content/themes/twentysixteen/template-parts/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ui6A:\>\w\\',_binary '-\\\\\\i\E\@\罷\0\0\'\'w','',0,'?'),(_binary '&\\\	P\shcusS','wp-content/wflogs/attack-data.php',0,_binary '#ح\n\\yIb\r\\r',_binary '#ح\n\\yIb\r\\r',_binary 'l4Eq{\\\'wg\31cw:','',0,'?'),(_binary '5#t5RшK\\\\','wp-content/wflogs/config-livewaf.php',0,_binary '\'YZW\n\/\'\\I!',_binary '\'YZW\n\/\'\\I!',_binary 'U1\\fyWehHwZ,sL\\c\\','',0,'?'),(_binary '8?6B\r\\pl2R\x','wp-content/wflogs/config-synced.php',0,_binary 'q\'\ɵp;R)',_binary 'q\'\ɵp;R)',_binary '\R}\KW\B\'\g|\\2 ~N\','',0,'?'),(_binary '\\\_V#\\Bt','wp-content/wflogs/config-transient.php',0,_binary ';13\x\\Q\G|',_binary ';13\x\\Q\G|',_binary 'פm2\r\"\E\z3oRwkTaՉ\C','',0,'?'),(_binary '\U\n\/|r@ڪ\\','wp-content/wflogs/config.php',0,_binary '\nΞ\!I)\\\e',_binary '\nΞ\!I)\\\e',_binary 'zܐC\Eqd\E`=\טx7','',0,'?'),(_binary '\A\o\!\V\\ų`v','wp-content/wflogs/ips.php',0,_binary 'lCdb\.˴\v',_binary 'lCdb\.˴\v',_binary 'Z][WP}\,7*\q\\\n\\Ƒ\','',0,'?'),(_binary '!\ES7x\\','wp-content/wflogs/rules.php',0,_binary '\'&\\ ;\ʼĿKR',_binary '\'&\\ ;\ʼĿKR',_binary 'gԴh܋n\\ʠn[f\\\\\\O','',0,'?'),(_binary '\5#\"8%`}','wp-content/wflogs/template.php',0,_binary 'lCdb\.˴\v',_binary 'lCdb\.˴\v',_binary 'Z][WP}\,7*\q\\\n\\Ƒ\','',0,'?'),(_binary '\a\Oj\'\ŻD*ցV4','wp-cron.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&\>Fm8ɃK`\',_binary 'hi\\gF-\\	0&\\\yl','',0,'?'),(_binary 'vό\Y9\','wp-includes/ID3/getid3.lib.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]Yw\AW\f\',_binary '\\̲\\\15\\$R\"r\3\\b鯂','',0,'?'),(_binary 'd\\:w\\O\І','wp-includes/ID3/getid3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\x\ܬ\M^\ ',_binary '\p\fB\'/oFI\\\\lԈ\;','',0,'?'),(_binary '9ՍҢ\\9\\d\r\Y','wp-includes/ID3/license.commercial.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n;gJg\\xA',_binary 't_2x\<\-\˜wq\Ig\\','',0,'?'),(_binary '}\Ȑ\\\L`\i)','wp-includes/ID3/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GؐV%\P_շ',_binary 'I>\\a*R8?\)\p1U͔\?2\=o\','',0,'?'),(_binary 'D.\\\:\0S\R8','wp-includes/ID3/module.audio-video.asf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'м޸.\\Bfs\PA',_binary 'K\\0jO`\{,ﴨ!ѧ$tr\:\p>','',0,'?'),(_binary 'x	G!N\$.dTb\','wp-includes/ID3/module.audio-video.flv.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\\\AZ?!x&3h\',_binary '7T@7\lE\œ#V\,\Li\\\'','',0,'?'),(_binary '\oҨ*K\\o7{ <','wp-includes/ID3/module.audio-video.matroska.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"\X\T\pP\z',_binary 'uP\k_?\\(]\\\O59\a{n\','',0,'?'),(_binary 'Tvm?,a\\\T4\','wp-includes/ID3/module.audio-video.quicktime.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ym\]',_binary 'ea\y\Zo*@0X\'Ⱥo\D\]x\I','',0,'?'),(_binary '\\ZvI:wm\\'~K-','wp-includes/ID3/module.audio-video.riff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ G0`3+{PP\\',_binary '\nZʽ\Z\P\\H\\\*I$','',0,'?'),(_binary 'L\\6	\\׳','wp-includes/ID3/module.audio.ac3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>Y\\\Zk0\aM',_binary 'b^#¨(t\^rߘz\9\F\\\','',0,'?'),(_binary 'ǳ\\\_L-YŌ%$','wp-includes/ID3/module.audio.dts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'llA\\2\\\̋\',_binary '\ZaH\\r\\%A\\6$`HuT\6y\4','',0,'?'),(_binary '@+\T΄\'٤','wp-includes/ID3/module.audio.flac.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@pL@\\E\{\',_binary 'ּ3\t46$ay\!\֦ȓڲh#\{','',0,'?'),(_binary '\N\\\@(3','wp-includes/ID3/module.audio.mp3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\1\bF	\y\,',_binary '8&\\\*E\렴B!Տ\7hEV-','',0,'?'),(_binary ':|LH6(\\cg\','wp-includes/ID3/module.audio.ogg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6-?yҸ\\\q	\\]',_binary '{Y7n\\,1K\F[LH݆\"\5;%\!,','',0,'?'),(_binary '\_)-]\ˌkO	\\\','wp-includes/ID3/module.tag.apetag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ӟ\8)(ZOV!',_binary 'pĞNW\lѰU!\\\\[dL\I9','',0,'?'),(_binary '2zs\4x\EB','wp-includes/ID3/module.tag.id3v1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\\t\\$E1',_binary '\'fB\Ђ+\N|\[\\Dx\\gSLAs\_','',0,'?'),(_binary ',\\@hj\qrޒ','wp-includes/ID3/module.tag.id3v2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ܩް\o\n\09F\'!2}',_binary 'ۖף%=\\\\\#\<\Nb/$\','',0,'?'),(_binary '?8\\\Z\\N','wp-includes/ID3/module.tag.lyrics3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0kE.К\a#',_binary ' ,w>M?%9,Hb\\\\ץ*\\'','',0,'?'),(_binary '(~6vqV\0\{\"','wp-includes/ID3/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0Dٖ(\:!',_binary '\\r\b\\ߝT\.*\ύVW','',0,'?'),(_binary 'i;\\&o\?','wp-includes/IXR/class-IXR-base64.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*6\\DT\e',_binary '?F]L2}\\\rS@b\2\Oo\uU\'O','',0,'?'),(_binary '	ӭgȱ!nP','wp-includes/IXR/class-IXR-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a\\J}!\W\\',_binary 'Yw\1\\v.G3e\d\Äy`LR	]','',0,'?'),(_binary 'dx\\eBݙϟ5','wp-includes/IXR/class-IXR-clientmulticall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Hqg\\lt',_binary 'ғ\'bO\\\\E&ƧW0h	o\\`\Y\','',0,'?'),(_binary 'Z\\=ӧ\rc\"y','wp-includes/IXR/class-IXR-date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\\VdB+AJ?#',_binary '\{~(#\\Z6u\\\,\\\?jk2\\`','',0,'?'),(_binary '^H\0\B|\\4\@z\','wp-includes/IXR/class-IXR-error.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g6\"\u\\\'3b',_binary '*?\ۧU=?,]\0=C\Z-6Dq.G','',0,'?'),(_binary '$\ϫ/\!C\','wp-includes/IXR/class-IXR-introspectionserver.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Uaw\<IwpO7-',_binary '\\n\\CPEQ%\D\r\k*X\\\o','',0,'?'),(_binary '~%B\0z\\?o','wp-includes/IXR/class-IXR-message.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J/\z\*zͷ;',_binary 'lG\'\\r5\\+̔Mh\Shq>\\	\0Ϧ','',0,'?'),(_binary 'w\\Z\dϢ\\ruD\"','wp-includes/IXR/class-IXR-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%p.<Sǡ\\z1Ϣ',_binary 'Q\*k\_}\2\>Tq<\_S\:\Qh','',0,'?'),(_binary 'al\V?f\Zё','wp-includes/IXR/class-IXR-server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\d߹\\$c9\',_binary '\0\{M\\U\rN.)-\\`wH\\\','',0,'?'),(_binary '3\ng\0\\\0	\W','wp-includes/IXR/class-IXR-value.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f>5l\j\0f\',_binary '?h\͇ X\UP\O|H$1','',0,'?'),(_binary '\n \\\\(z','wp-includes/PHPMailer/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\uiD\7ǍC\0\,',_binary '\/b^u,ʲ`XJx \~\\ZC','',0,'?'),(_binary '+o\2\8E+K%;','wp-includes/PHPMailer/PHPMailer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\ȫ\%%ġ',_binary 'W\:\\\~X\\I\47^\\','',0,'?'),(_binary '\\R:^\e+x2\c','wp-includes/PHPMailer/SMTP.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VgM\V}Ƴ0',_binary '}<t\N\4aks&3Jנ\\_/\ڶ','',0,'?'),(_binary '\\\\\MMF/I','wp-includes/Requests/Auth/Basic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I}\nѴM\"_V',_binary '\8\h\s\+d\ƃ\*&\9ɯ\','',0,'?'),(_binary 'J>\\\\\"\\/','wp-includes/Requests/Auth.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\\y-uP5M9н',_binary 'k\\w\6XN\r\0\c\\\\Ֆ\','',0,'?'),(_binary 'i1E~NI\A͔\\','wp-includes/Requests/Cookie/Jar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y6\\5\D\',_binary '\5t\\\iktj3\\r\\hvacJ\r','',0,'?'),(_binary 'S\^7jK5I6K\2!','wp-includes/Requests/Cookie.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tV\\sUN\d',_binary '\"+f5f(gdC\<i\˳]uƨ2\\ļ','',0,'?'),(_binary 'O­\n	U\Rb','wp-includes/Requests/Exception/HTTP/304.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\;P#S\Z0|]\c',_binary 'v\C	a\\'F\;\z\(eJ\L','',0,'?'),(_binary ' <@s\\r\\F/','wp-includes/Requests/Exception/HTTP/305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\\0K\\/`,&',_binary 'H\Ǝ\\+@I\\b^=QvM6_iL','',0,'?'),(_binary '8P֧\\ZHGE}8\','wp-includes/Requests/Exception/HTTP/306.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WszuNP\j\\\Xu',_binary '4UQ\r1#_fH*I\dl','',0,'?'),(_binary 'H\YfUH\upd','wp-includes/Requests/Exception/HTTP/400.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\^\oA\\hܦ3\\Z',_binary 'd>\\	i\H\b$&n\\\6p\Z','',0,'?'),(_binary '/}㦿L;?\w\\','wp-includes/Requests/Exception/HTTP/401.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\o\XN\R',_binary 'YV$\\/\@=\\\V-\dc','',0,'?'),(_binary '*\\Tҝ)%]\yiD+','wp-includes/Requests/Exception/HTTP/402.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '͈ϚW:l\\q~',_binary 'gNQ	\/\\\	y5\θc','',0,'?'),(_binary 'l\3.	XN','wp-includes/Requests/Exception/HTTP/403.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\\\ڮ\V3',_binary 'I\\l\EK\Ѧ?Z0JT\\\\U','',0,'?'),(_binary ';#	n\\%\"\','wp-includes/Requests/Exception/HTTP/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \\{\yʉ2l',_binary '\\-!V>d*jPF\	\;QƵN1aG(','',0,'?'),(_binary 'Ybڧ,\\J','wp-includes/Requests/Exception/HTTP/405.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r)qOel\\\\N\\~',_binary 'j\b\횄\\^Usv8\$bM\3y','',0,'?'),(_binary '\Fj]p\ \\\Ac\rp','wp-includes/Requests/Exception/HTTP/406.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\&\L\\]',_binary ',aY\\}PR6\\`)K\fism \','',0,'?'),(_binary '\\NtK\U\\','wp-includes/Requests/Exception/HTTP/407.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qx+D.42\0\\\',_binary '>\Z\\\]ƚB̏Xvذc\\.N2\NҹЯ','',0,'?'),(_binary '\0n:Tq}K @','wp-includes/Requests/Exception/HTTP/408.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\Wp\]\'zAz\',_binary '\q\*\lmKңk\\"\MQ?\pa؂\4','',0,'?'),(_binary 'Xv\Zƒ\"\$','wp-includes/Requests/Exception/HTTP/409.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|:\\\7ȲuO',_binary '\\_M\\8U.pF\\w:E`\MB\','',0,'?'),(_binary 'T\양:t[\','wp-includes/Requests/Exception/HTTP/410.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\$-43RۢU\',_binary '9f/3MM;#GڪWO&tSO\ZƘ\','',0,'?'),(_binary ')|{4\+]\X(','wp-includes/Requests/Exception/HTTP/411.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#\ן\Ы\E*3\\',_binary '\\U^9p\\&\\\`\nM{ nL','',0,'?'),(_binary ')\\Yh.\;\š','wp-includes/Requests/Exception/HTTP/412.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Zcu\	L\\\t\p',_binary 'S\A4c\\D\56-\#d*\ҽӾR','',0,'?'),(_binary '	.\5ua\WkJ','wp-includes/Requests/Exception/HTTP/413.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\\2ɑIWv\MZ',_binary '\r}䟹-V\\\\'eCCʅ\e-2,0','',0,'?'),(_binary '[\Y\44\Orl0\','wp-includes/Requests/Exception/HTTP/414.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\rNf}-⽪',_binary 'H\\\\\i\\c\!I).eh','',0,'?'),(_binary '\}^72\','wp-includes/Requests/Exception/HTTP/415.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\zZ\,\)\+',_binary 'v%\_\\0\b$m&`\\\(=m<\b\Zo0p','',0,'?'),(_binary 'gK\;qFVI}Q\','wp-includes/Requests/Exception/HTTP/416.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HLt&לk$*Aiŷ',_binary '\(\\mybV\aI\jWp(!A\\\\<(X','',0,'?'),(_binary 'P&_#\\'\zT\s','wp-includes/Requests/Exception/HTTP/417.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oP\%~75jN}a\',_binary 'L\TҘ$xDs^h_!kC\"1\'_\','',0,'?'),(_binary '\DC\\\\F}\','wp-includes/Requests/Exception/HTTP/418.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '839k\\8\'iv\\',_binary '4 6鎬\M&\$!2d<\\	|\\?g\n','',0,'?'),(_binary '\]PJQƀ6o֢\;','wp-includes/Requests/Exception/HTTP/428.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?<\^G\\\"0c!',_binary 'C\OW%tߏ\Y\|\\&0V\\\\','',0,'?'),(_binary 'O/ì\`|g_\0','wp-includes/Requests/Exception/HTTP/429.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&\\9iїR7',_binary '\!\Tuwmt5\o\n\2A\"kߚz','',0,'?'),(_binary 'ʚ{(\\\i7.','wp-includes/Requests/Exception/HTTP/431.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e-\\.\ݼe\>',_binary '\ꅱ/Y6_\\w\pkw\0','',0,'?'),(_binary '\rf\h\8!','wp-includes/Requests/Exception/HTTP/500.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I(vrMm\(\c\0{  \n',_binary 'FOV3\"\\\!k\P\','',0,'?'),(_binary '\l;ao\\~G\\','wp-includes/Requests/Exception/HTTP/501.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\jQc:1NiD',_binary 'kG寲\\n΃CD#6\u\Z\քEڣ@K1','',0,'?'),(_binary '\\bm%\ڭ֫','wp-includes/Requests/Exception/HTTP/502.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L+\\D\/ncQr',_binary '\/~UJO.ŀ#\E\5*\'C\q','',0,'?'),(_binary 'nŢ)\c\q^\"','wp-includes/Requests/Exception/HTTP/503.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%5\\\y:	cx2',_binary '}=3xA9\\lp\0ư\9e.O','',0,'?'),(_binary 'Oy}Ma\_\I','wp-includes/Requests/Exception/HTTP/504.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\ wjљ9\',_binary '<!B|$k݈# ei%0','',0,'?'),(_binary ' \\r$	Q^C(\\\\','wp-includes/Requests/Exception/HTTP/505.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\)Y{Q\[\',_binary '\⭛\ i\{\PA\͆k\\dM\n','',0,'?'),(_binary '\uG#)|\^6','wp-includes/Requests/Exception/HTTP/511.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݧ3\*\=\A>9\\\',_binary '\I}7+ƕA\\\l欿B\\t\\'s\\t','',0,'?'),(_binary '>2\\o)\','wp-includes/Requests/Exception/HTTP/Unknown.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"Ņ\'\k?:~\\',_binary '@\\3\#\Zж/*t\r\\6<X\\rIF','',0,'?'),(_binary '\\W\>\ҟ\\\[','wp-includes/Requests/Exception/HTTP.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ųٞhXr~n\f',_binary 'oE²tQQbo\n\r\Qq\\\"/','',0,'?'),(_binary 'Iy-\nń','wp-includes/Requests/Exception/Transport/cURL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eF\9\Q ',_binary '\]\\\0֙8\p#~\\\oӁ=1\','',0,'?'),(_binary '\rI\\\ɀ5 F','wp-includes/Requests/Exception/Transport.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\z\\ J^\',_binary '\ĺ̌\&ֳ\4@78\\\p','',0,'?'),(_binary 'TĘ5VHP{\\','wp-includes/Requests/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Flkٮ<v\wSH\\',_binary '-@g %uON\\}@l\\f\'\\','',0,'?'),(_binary '\\.Q}3\\T','wp-includes/Requests/Hooker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Pz4ɇF*',_binary 't\r{\k?i\k\C\nL\\b\̇\Wy','',0,'?'),(_binary 'X\M\xڳJ\\','wp-includes/Requests/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\AQ\U;:\BH\\i',_binary '՚\ Q憐DP\؂_?y\`','',0,'?'),(_binary '\ \\\\Tn]','wp-includes/Requests/IDNAEncoder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\y\G\\\}n(Y\\',_binary '/<E=C\\$xBHxJ\`Jw','',0,'?'),(_binary '\T\B3G\\{','wp-includes/Requests/IPv6.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\nҤ&i\\r\',_binary '=\\ln&\\\ă\J\ӗ~\\\\\l','',0,'?'),(_binary '}z#\Z','wp-includes/Requests/IRI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\e\(a\d\\Z\C',_binary '\\"\\\G\\-O\'\B\ \^','',0,'?'),(_binary 'w\'PeF\+\V\0','wp-includes/Requests/Proxy/HTTP.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\)ϕ\\\^$\\',_binary '7gy\Z]OYT\bPǚ昁','',0,'?'),(_binary '#y\\t($NTt','wp-includes/Requests/Proxy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\|P4&.|',_binary '\%Mu\\#g]zmܦ8\\u','',0,'?'),(_binary 'G Xe\x\\w0\\\o8','wp-includes/Requests/Response/Headers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dVND1\C\\\\.',_binary '?\\\vҧxP\Ep\\\\6\\!IP','',0,'?'),(_binary '\Yf/\pw\','wp-includes/Requests/Response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\z)Ue\\$t\\r',_binary ';-f\NI\YYڲ\e\\r','',0,'?'),(_binary 'U $A=He\|\zȖ(','wp-includes/Requests/SSL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\SUa \o\\',_binary '&Kps֍y\\Z@?7Gc#EU','',0,'?'),(_binary 'c42j\x\c\\d','wp-includes/Requests/Session.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\|;\UE\*\{Y',_binary '^\\	nt\"V8M@\H؟Q\[S$','',0,'?'),(_binary '`\@\\\YE\!','wp-includes/Requests/Transport/cURL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\w%Z*\\H',_binary '\~\\cyhGKS\huP\m(','',0,'?'),(_binary 'f\\BD\Fr\r\r','wp-includes/Requests/Transport/fsockopen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\؃S\g\\\nGB\',_binary '9縙;O[x`\*\8H\*r.P\','',0,'?'),(_binary '\.\IOIP%)','wp-includes/Requests/Transport.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\\/\\\\',_binary 'ɯO3e\F\㛆\v+\\.r/\>,','',0,'?'),(_binary '~AHg\\KT\','wp-includes/Requests/Utility/CaseInsensitiveDictionary.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gj\h\^\0{',_binary 'o\\r1d._f/\7q\AE','',0,'?'),(_binary '\\/?\\\U\\','wp-includes/Requests/Utility/FilteredIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\\6B\ofu',_binary 'AS\Z3H	\\Q9ͳo@h_\!1S/\x','',0,'?'),(_binary 'k5SH\\\Ы','wp-includes/SimplePie/Author.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?hK\0k\1\\\N\"',_binary 'N\\\\pt3\\+,l\'\cOQ+\\Z','',0,'?'),(_binary 'U\\\p{JO\Q\&','wp-includes/SimplePie/Cache/Base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bĞAʖ䦴j\',_binary '\oOw~9K\\4oY[Ke\\\\RG','',0,'?'),(_binary ',hɃs?4B[\^՝','wp-includes/SimplePie/Cache/DB.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w\\M\\rʍ|D\',_binary 'g#\\\\\]\"h0Vq)\0j%\\\I','',0,'?'),(_binary '\\\\\V,E@Xy','wp-includes/SimplePie/Cache/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P8?Q\\h׊\',_binary '~\`\嫌\<\B\n鲙%]\X}\Zi','',0,'?'),(_binary '\I:4PU\\','wp-includes/SimplePie/Cache/Memcache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\u\\5uyS',_binary '\/M[Qt\n.?χIqA?Tj<\woRI','',0,'?'),(_binary '\5iDhI6\;','wp-includes/SimplePie/Cache/Memcached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\n\\'Xlab\\4`',_binary '?O\d6C\\u\>Jrht\\\e\','',0,'?'),(_binary '<)8T*.SuS\ĺ','wp-includes/SimplePie/Cache/MySQL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ') \\fz\\C\0',_binary '	\\W\A\2Lh`\i%iv\2\\޴','',0,'?'),(_binary 'u!\\+\\\Z\','wp-includes/SimplePie/Cache/Redis.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\\]>e\n(40',_binary 'r\\*%\\P\2I\7\ZKaq#\','',0,'?'),(_binary 'Y֝U\\}\r/','wp-includes/SimplePie/Cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	~ܯ{ʹ+h\',_binary 'md\n\nunpU0 l\6ZiR','',0,'?'),(_binary '\\\"ܒ\\\nzD','wp-includes/SimplePie/Caption.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '܊\\yuD\r£',_binary '\'\W1Q5[ۋ\)\\r8۝5:\\?*)K','',0,'?'),(_binary '\qK\U\j\','wp-includes/SimplePie/Category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\\\[ \ZVG4&',_binary '<J\H\v\i\	b\4l~\e\F\\mj\','',0,'?'),(_binary 'l&\*\\\\\&','wp-includes/SimplePie/Content/Type/Sniffer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JVPt>%N\\\\\0',_binary '\nS/\̼#@\%\\\,\ul\$tT','',0,'?'),(_binary '\an\V=Ty X\','wp-includes/SimplePie/Copyright.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\>\ԪQ',_binary '\i\\%ܴ\\E\^g\\2z,\@Q\V','',0,'?');
INSERT INTO `wpjj_wfFileMods` (`filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`, `SHAC`, `stoppedOnSignature`, `stoppedOnPosition`, `isSafeFile`) VALUES (_binary '\o\ǣ	ף\f0Y','wp-includes/SimplePie/Core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ز3aݩ\0)_\S',_binary '\\760\w8\([\o\W\\K\\4d\\','',0,'?'),(_binary 'ͽ3\\=OG\|~','wp-includes/SimplePie/Credit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.6\K>.L\\',_binary 'r\ٴ\@c@{R\CGd^\>>E\Z','',0,'?'),(_binary 'POf;\\/\\','wp-includes/SimplePie/Decode/HTML/Entities.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jыp&y\\\\U',_binary 'WP\*P=Nϻ;\Zi\8\\2_ ','',0,'?'),(_binary '2\\^(ʭ\-^x','wp-includes/SimplePie/Enclosure.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\'\G\ko\',_binary 'Z:\\r}n\Z\`\tj\!Ll	{\\\bg\','',0,'?'),(_binary '\nfv8\\1-I','wp-includes/SimplePie/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '逗z\qŔ\/\\',_binary '_peNO\/*mv\\ȿ\n6*\zo\n\','',0,'?'),(_binary '4r\%\\\\j','wp-includes/SimplePie/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*ʙ\Z\0(hK\\HR',_binary '8^V\\\c\\\Ì?oss\\S','',0,'?'),(_binary '\Pط悇̺ƴ$@\','wp-includes/SimplePie/HTTP/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P0ش\57\,	z',_binary '&\b\B筢\09Z/\|\1\\p','',0,'?'),(_binary 'oZ0\\\\<c\0','wp-includes/SimplePie/IRI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\9,zӄycE',_binary 'Ye\k\\\\Zkt~n4&\\\\p#\Ӝ','',0,'?'),(_binary 'f\\\\eR)\','wp-includes/SimplePie/Item.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xi\qlU\GՑ',_binary '\gPL/(O\\)\G.\GnE','',0,'?'),(_binary '\TBO>\v2\\}Ea','wp-includes/SimplePie/Locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\ږ_\\}\\3\',_binary '\#\L&$FΪK#\\"`ԈMCWd','',0,'?'),(_binary 'FFvV;v\8/\r','wp-includes/SimplePie/Misc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4P\\\r\i\BBe\',_binary '\q\\ѰɧӿlpK\9 \^/t\4,','',0,'?'),(_binary 'Mj\A\M\O\\"If','wp-includes/SimplePie/Net/IPv6.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r \\FE,h\',_binary 'pt\[bmM_Iz\"[j/\O\','',0,'?'),(_binary 'B\\ه\v<Sv稳','wp-includes/SimplePie/Parse/Date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\\O2C[\nջ',_binary '=<\\ei|\MqZ]V[]&I-q9)g0','',0,'?'),(_binary 'tfF	\r{܇_Ix','wp-includes/SimplePie/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ج\8\rʝ\\\Y ',_binary '\ў\K\\f\\'\\?\=\O\nư\^','',0,'?'),(_binary 'd\hħ{q42\K\"\','wp-includes/SimplePie/Rating.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jkB-\r?Q3Qw\U7',_binary '{nH\(>}Q(\\a\\b>\nFY+','',0,'?'),(_binary '}7 ޘ\DHD\Pl','wp-includes/SimplePie/Registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;M\\\{ٟ\R',_binary 'Ԧ0-\/\\kW\\%o\ޏ\'E)\\D\\','',0,'?'),(_binary '\0`YϭrG','wp-includes/SimplePie/Restriction.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\"\\~\'\\\$|2*',_binary '\>3\	vj\r|\")\"\5SR\0\{k\\\\{6','',0,'?'),(_binary '[\1YAdk\,','wp-includes/SimplePie/Sanitize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W,a4\Vk\\6\6L',_binary '`Q\V;\`_1p\\\\RF\;','',0,'?'),(_binary '\0l\j\0+%\','wp-includes/SimplePie/Source.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aA:\$]B-\vw\)',_binary '\"\\\9M\aU\_h\I>,]C\','',0,'?'),(_binary '\\\'g!:H\),','wp-includes/SimplePie/XML/Declaration/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O,@\ۺa\	Δ\',_binary '\im\Q\q+\r:Po\\Z*\','',0,'?'),(_binary 'ZҌ[\nv\\\	F','wp-includes/SimplePie/gzdecode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rF<\ZiǨu\',_binary '|R\'gAEێ\qqT!\\:\O0\_','',0,'?'),(_binary 'OhuG\&\0\L','wp-includes/Text/Diff/Engine/native.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\\\r$\T',_binary 'S\\\04\v@\ű`DG V\ue\RB竇3','',0,'?'),(_binary 'ǂ-i)\.\\\\\z^a','wp-includes/Text/Diff/Engine/shell.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S\\?\z&',_binary '\\=5\:Pu\'pM\N[9^m>z@','',0,'?'),(_binary '\ @\;*\|','wp-includes/Text/Diff/Engine/string.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':=M\\0\i)',_binary '\\d[%\nZR\`\\\','',0,'?'),(_binary 'e^#|ۍTЩz','wp-includes/Text/Diff/Engine/xdiff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ֹ\btX8GX',_binary '[<0ąaD)tJh\(C[uH}sҘi','',0,'?'),(_binary '&Rw?~jhJD','wp-includes/Text/Diff/Renderer/inline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\n5P\\\B\'\',_binary 'X\U.k⻺\@-(5N\\\V','',0,'?'),(_binary '3\\fQ3\h\5[W<','wp-includes/Text/Diff/Renderer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \C0Y7O\@\GS',_binary 'EWj\+\\\\\\=\\\}.\1\r\|','',0,'?'),(_binary ']B#\2\z\\bU\/','wp-includes/Text/Diff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\ \ZV\\\:\',_binary 'N\'up\=Z\\"-K\\\r','',0,'?'),(_binary '-kdϯX\w\\7','wp-includes/admin-bar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZK	\#B\\{7',_binary 'd\6\\\r므\WE6aV\\\5\\\q','',0,'?'),(_binary '\Otg\02\\B','wp-includes/assets/script-loader-packages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7Y\5\\I\gN\u',_binary 'Mt\}\xŨxYsĹ\\`.\','',0,'?'),(_binary 'Gu^/1\\ՁS\7','wp-includes/atomlib.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\2*rMb3ы\y\\',_binary ':\8\\px\ \\\\}\)\!','',0,'?'),(_binary '&S짿o$\\0n','wp-includes/author-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';:,)5\`&\0\',_binary 'UI\Li\pp\\ڐT\[o\/K#(\\','',0,'?'),(_binary 'DU}<޴D5\Y','wp-includes/block-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3qf\\Z\2\',_binary 'We]	\\\uv\uR1d]\n\4^\s','',0,'?'),(_binary '\\\\)\\D','wp-includes/block-i18n.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\\!:D\8\',_binary '\f\\tM&\\r1\	$u3\\ \\\','',0,'?'),(_binary '4)tkl#<\\U\','wp-includes/block-patterns/query-grid-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\J\B\<',_binary 'sA>\{k\/PxYp*L׻膺ϲ','',0,'?'),(_binary 'jd\CT[^\R\\','wp-includes/block-patterns/query-large-title-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\>\\[M\9\+',_binary '}\%\Z@qtD4\	σ \\K','',0,'?'),(_binary '@V\K$~`*+c0','wp-includes/block-patterns/query-medium-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	иa!\\R',_binary '7Liw\4\\^X\0\`(nVҐrx\b','',0,'?'),(_binary '\_\\<Dhg\\','wp-includes/block-patterns/query-offset-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<HH):\b\\-',_binary '\\2۰HOUGH\`\T\\U[av','',0,'?'),(_binary 'F߇\#\ata\','wp-includes/block-patterns/query-small-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\:\~k<\',_binary ')\@\'RN8\\}\b\\\','',0,'?'),(_binary '5\Åƌ\\m','wp-includes/block-patterns/query-standard-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']_0\\;',_binary '\\5fo$:\G\{|-\\\\M	','',0,'?'),(_binary 'hc\\=\ \\0\','wp-includes/block-patterns/social-links-shared-background-color.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}\;`\ZԴ',_binary '>\**?\-T*\H%9\/\EVy\f','',0,'?'),(_binary '\0 $\\\ә\0֫','wp-includes/block-patterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\mJ8\\T4\',_binary 'TZX@	n\||{etA\?(,\\Z\g','',0,'?'),(_binary 'p\}G\J\\$\\x','wp-includes/block-supports/align.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\]4$^l\\',_binary '\\\zia;8\\\:\`\GWId\Q\Z','',0,'?'),(_binary 'CV%\\i','wp-includes/block-supports/border.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̻PKM\$\0\',_binary '\r\eeR[xY@V|:\@\\','',0,'?'),(_binary '\\g+\\,c\','wp-includes/block-supports/colors.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&\y\\-',_binary 'κ\΋\$YiL_fJ\D\EK\p\\\.	@','',0,'?'),(_binary '\\ŕ\oi|}\\','wp-includes/block-supports/custom-classname.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\0\~\',_binary 'E\\Y\\ C5f\tA%BW\\0\','',0,'?'),(_binary ']J*ƒXRE\','wp-includes/block-supports/dimensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$`\T\g\Z4>\4',_binary '\\\iglLW\\'YUJV6E\_','',0,'?'),(_binary 'HС\\\YVhZ','wp-includes/block-supports/duotone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\U9報\\0D4',_binary '\\\\\@\$3@)\$!gH\"\\"dub\','',0,'?'),(_binary '\j\#ӲX%I','wp-includes/block-supports/elements.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	`\}\c]]\',_binary '6\ORp8R\\R/Kַŭ\\'','',0,'?'),(_binary '\nzŭ}\{\.u[','wp-includes/block-supports/generated-classname.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\T\\\$5`',_binary '7{\v>\\\R\;\^\\\\4Qeu','',0,'?'),(_binary '\ڙy\2D\na93','wp-includes/block-supports/layout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\n+\,\b',_binary '\^;[\\I\\4\~l+vi=^','',0,'?'),(_binary 'A+~/Ję4\$Y*\\','wp-includes/block-supports/spacing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\<<	!(D\\',_binary '\oy\'4j\\r\Zѱ\\\\Ώb	=3','',0,'?'),(_binary '}O !ٶ]\O\O[','wp-includes/block-supports/typography.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\)-qM3',_binary '\@\u<	hkS?\k\*WdW','',0,'?'),(_binary '{a\{4\;\\Moز','wp-includes/block-template-utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\f\4f h\"k\-',_binary 'E,j/\8;|Խw>_>{\nJ\\ڒ','',0,'?'),(_binary ':+hy^W','wp-includes/block-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ψwx\jѹ',_binary 'F\ <\"8G\u\L\y\6\\\\ hl3\Oa','',0,'?'),(_binary 's8\\'\\ɀ\\Z%Cx','wp-includes/blocks/archives/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rl\A\Hט뀏ׄj',_binary '+h%23^K#l]r\aBc\r\4b','',0,'?'),(_binary 't5^	kS(1\zG^\\','wp-includes/blocks/archives/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MI/V\XQj*',_binary 'f\>\َ_^\U\;/\\\_0\!o\cy','',0,'?'),(_binary 'K\xP0&\O:p','wp-includes/blocks/archives/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rv}\')4~~\',_binary 'Ƹ\CYM\a.L\\8\yQ\vqI','',0,'?'),(_binary 'l\\<\#\q,\','wp-includes/blocks/archives/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '۹\n\\'}\l\U\M\0',_binary 'pJcB`oB9\\Z:\\y','',0,'?'),(_binary 'C\Q%@	\Ja ','wp-includes/blocks/archives/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '՜VHZf\\',_binary '4!\0}!;9o\l_l\4\f\L\Vl','',0,'?'),(_binary 'w8h*\\;\\e[\','wp-includes/blocks/archives/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\\Ǟs[pO\'',_binary '*\\z\\tRMR\^/cΟ\','',0,'?'),(_binary '\RpB@LJ','wp-includes/blocks/archives/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʡ<e$\n\',_binary 'Wxث7qC\n\\g\\Ze\6-&','',0,'?'),(_binary '\35no~.\','wp-includes/blocks/archives/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\\Ǟs[pO\'',_binary '*\\z\\tRMR\^/cΟ\','',0,'?'),(_binary '\VZ\blͯ','wp-includes/blocks/archives/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʡ<e$\n\',_binary 'Wxث7qC\n\\g\\Ze\6-&','',0,'?'),(_binary '\>6bYAUF\.','wp-includes/blocks/archives.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!˰qҥH	9',_binary '9,\q=))o.\\\jXsKc\','',0,'?'),(_binary '\\\\T@SO\|m','wp-includes/blocks/audio/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	\,Ǿ	YQA\k',_binary '\7T\ƏaY,\X\\8\','',0,'?'),(_binary 'la\'\P_bm	!\p','wp-includes/blocks/audio/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LY\\(5?\pͨ\a ',_binary '\=U\\&6\\;5[\'y\+L?ZCW]','',0,'?'),(_binary '܈\y\\7@\\"','wp-includes/blocks/audio/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L\n>o`\',_binary '3\r\gK|P35\\\E\\=k','',0,'?'),(_binary '9\Ce;Y#\v|z','wp-includes/blocks/audio/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\\rW&0v)n__t\\',_binary '\\"A\γ\&+\t\m%P\,\','',0,'?'),(_binary 'R\\ܰoL\8~\\\lCR','wp-includes/blocks/audio/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T,G\\2*eA\\~\\',_binary '6SN\'\ct\<\n,HW\01K','',0,'?'),(_binary '}|\\0+N6]R','wp-includes/blocks/audio/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Zﬠj*-\>',_binary '	F\\sN`NE	Sd\\\u','',0,'?'),(_binary '	2\p\<(X\"\ݵ','wp-includes/blocks/audio/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\\3yb\A',_binary '\@,BW/\R-M\w\\\]ٻ','',0,'?'),(_binary '?\WZBDN\13\','wp-includes/blocks/audio/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Zﬠj*-\>',_binary '	F\\sN`NE	Sd\\\u','',0,'?'),(_binary 'q2trۗ,]s*r','wp-includes/blocks/audio/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\\3yb\A',_binary '\@,BW/\R-M\w\\\]ٻ','',0,'?'),(_binary '\\\$Oq\yܹ','wp-includes/blocks/audio/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n=m.b.l-lko',_binary 'ռC00\r\\=\\Tftc_\5栺','',0,'?'),(_binary '\l\;+SG\','wp-includes/blocks/audio/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&Qնo&\\U',_binary 'Ң^\O7\.skC\#\%\Nr?','',0,'?'),(_binary '\]И\n(?W&\\\','wp-includes/blocks/audio/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n=m.b.l-lko',_binary 'ռC00\r\\=\\Tftc_\5栺','',0,'?'),(_binary '\n\	\_{\\\\','wp-includes/blocks/audio/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&Qնo&\\U',_binary 'Ң^\O7\.skC\#\%\Nr?','',0,'?'),(_binary '72\_RD\;n','wp-includes/blocks/block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ꆴ\n\'\n:WrW',_binary 'qF\)\09B\\YS5\=(\','',0,'?'),(_binary '\+kZ@bK\Қ\','wp-includes/blocks/block/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\^\\(-4\',_binary 'ߩ\"s|[v\\ӑ{o`Y\U','',0,'?'),(_binary 'c\\O\\-\+oe','wp-includes/blocks/block/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',Zq\3)',_binary '0&#\\b93LC\0\vX<cɘTX','',0,'?'),(_binary '͗~qyL*>','wp-includes/blocks/block/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݠE\֝\\\v0',_binary '?\\`\{\W\ e\6W,\\'=B9','',0,'?'),(_binary '<e\\\\\5','wp-includes/blocks/block/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\M\\ |T\'Kvy\',_binary 'U\\\@&?b\K\R[,3m\.\ZѮb','',0,'?'),(_binary '>5\ˏ.y2Q[ڣ\1','wp-includes/blocks/block.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=j\Q\rZ\&`b$\Z6',_binary '\\sd8r\\$\<HI\\)P\e','',0,'?'),(_binary '\\\\\wT','wp-includes/blocks/button/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\SV+\ {\rE\'^',_binary '-]=s\fef\r\}\+L\\E\\;D{JnP','',0,'?'),(_binary '.=\$.6\(','wp-includes/blocks/button/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>iPt6\*!\',_binary '\L\"gL~?G\D\\\*\rh<q{\\m','',0,'?'),(_binary 'c\6\~\6̐','wp-includes/blocks/button/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cC`\\0gK\\,&g',_binary 'qu]Mo\;\\sx\h͙\rzA','',0,'?'),(_binary '$b	\o\&8\','wp-includes/blocks/button/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0t\\=(\lWJ\',_binary '~g#K[\k\\G\e`Ɂ1\*%@QV','',0,'?'),(_binary 'X2FGr\m\\F\','wp-includes/blocks/button/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\c\\\\^\ZWt',_binary 'g\\0U_*u\<\"孉&\%\\*Do]','',0,'?'),(_binary '~Pfԩ~1LYw\','wp-includes/blocks/button/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\DT\5bLcGބ',_binary '\\re0:\Oğ\gO>\I+','',0,'?'),(_binary '<hiѭ3*	Fq','wp-includes/blocks/button/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\hK/\oP_*',_binary '\L\	p\n\\~\hk\\\{Z\v','',0,'?'),(_binary '(9l1\5nq\','wp-includes/blocks/button/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K6	\HaQz\G\',_binary '\	\z[\L\nc\\Oq|!]\\\\','',0,'?'),(_binary '7ʏ\aBKz','wp-includes/blocks/button/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\hK/\oP_*',_binary '\L\	p\n\\~\hk\\\{Z\v','',0,'?'),(_binary 'Z\\Z5\n\j}@','wp-includes/blocks/buttons/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\捳jFx\=I\Z@w',_binary '[D\\\nF,PCyW̯H\Hw*\\\@L','',0,'?'),(_binary '\\5\ĺ\%\','wp-includes/blocks/buttons/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\\69RfU\',_binary 'p[&w\Ꚛ\\Cd\NEb\\Wֺ\\','',0,'?'),(_binary 't	\U iާ\\"\s','wp-includes/blocks/buttons/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\hdԁ\K\h*H',_binary '\}zv|1~*So\nE\Сx\\[T','',0,'?'),(_binary 'v\.#P\H2\\','wp-includes/blocks/buttons/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˠ\k\'\\I\v*\',_binary '\nC7^K5\AÂ\\=\\\cʻ','',0,'?'),(_binary 'q%\\\)ud\\	\','wp-includes/blocks/buttons/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8u\\\\\i0b\\',_binary '\\!r3;\HJ\\K̨-14Vͣ׫M','',0,'?'),(_binary '?8RmТE7h<','wp-includes/blocks/buttons/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&!Y6O	ƌV\ϟL',_binary '\is\\`bS,RMӾCZ4bb9\Մ9\','',0,'?'),(_binary 'h8ʯn-\	*','wp-includes/blocks/buttons/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I.\\\\W29D#p',_binary 'O\\eK\\\)=\]HmH\e@1H1','',0,'?'),(_binary '\,d$\\Zޟ^Wu\','wp-includes/blocks/buttons/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z9B\\"7 \>d\',_binary '97\n\ѱ\JO\çhAa\-&h\\r\','',0,'?'),(_binary 'C\\\!y\6㋼','wp-includes/blocks/buttons/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\\)3bj\0\?',_binary 'na:?AhW\H9\Fnܱ\1#pdy	','',0,'?'),(_binary 'K \\*;ܼ\nc','wp-includes/blocks/calendar/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(a$jg}\S5N\j\',_binary '\\\">\\vA\(Km\ò.[L','',0,'?'),(_binary '9[E:Ѷq	A','wp-includes/blocks/calendar/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '14-9F&5f4\(',_binary '\g\jv \\\AU$jl?\\\','',0,'?'),(_binary '\%\u\c\p֖\]\','wp-includes/blocks/calendar/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\n\UzPU\\',_binary '\\\2aC[[\n\k2!\ZR3L.6l\R','',0,'?'),(_binary 'Bs\\塘T\\\L\=','wp-includes/blocks/calendar/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '14-9F&5f4\(',_binary '\g\jv \\\AU$jl?\\\','',0,'?'),(_binary '\3R\C\V','wp-includes/blocks/calendar/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\n\UzPU\\',_binary '\\\2aC[[\n\k2!\ZR3L.6l\R','',0,'?'),(_binary 'SzW\\NKUS\\','wp-includes/blocks/calendar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\1KlA\펪',_binary '(tw\ zHK8\\IB\p\^\nb8b\\\\\','',0,'?'),(_binary '\G#\;\"L\%\','wp-includes/blocks/categories/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '눍`Ϙ\\\\rTs\',_binary '\tb\N^\\C\\jpx/!*?','',0,'?'),(_binary 'Z\0s{\0Gt\\\Z','wp-includes/blocks/categories/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p	=9!U\b',_binary '/\]\Ol\kڵ\/Ҡ[q>>\<x\\l','',0,'?'),(_binary '\	kJ? @x','wp-includes/blocks/categories/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L,\6\3\\O.\\',_binary '͚i?\e\zΏ%\\=T\nN\\Ƅ\','',0,'?'),(_binary ' \t4${\SE','wp-includes/blocks/categories/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\?BwHϓb\',_binary '1\;\ 	\nol\rK~qR\@\"\ֿ\'y:=[\','',0,'?'),(_binary 'v&5jrjL #ܲ','wp-includes/blocks/categories/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']UpʛV\\L\n',_binary '\`op\V\/2\ˍ\(NW\ZN\'K5','',0,'?'),(_binary '2\\\s\\k\\','wp-includes/blocks/categories/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'މ\\0\\\(({',_binary '\\\_zZj\99rY\}=p\\\0r\w','',0,'?'),(_binary 'hMVm\ \','wp-includes/blocks/categories/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=)`K׮\!2:7',_binary '1\\\'s\1IMZ\մ$iD','',0,'?'),(_binary '\ġ!\Z','wp-includes/blocks/categories/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\}WIsC',_binary 'rJy\`<D\\ZI\RH\=','',0,'?'),(_binary '&\\tQ\\j`qY\','wp-includes/blocks/categories/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=)`K׮\!2:7',_binary '1\\\'s\1IMZ\մ$iD','',0,'?'),(_binary '(ЊQB&\Q?\','wp-includes/blocks/categories.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UpJ^ˇ\\\\0K',_binary 'A\\̒\\0`\N\\韐\֌','',0,'?'),(_binary 'Xs\Yq\\ePL','wp-includes/blocks/code/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\䥏\\\\Cx?\',_binary ')\R>Ih%\\# Q~\\\rP*~\Ϗ@c\g','',0,'?'),(_binary '\{VcR\\>ԈA\','wp-includes/blocks/code/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\SŐ\nLbo',_binary '=\\\\	綯\t\\I','',0,'?'),(_binary '\$\tզ}	\T','wp-includes/blocks/code/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\(궲zhɶ',_binary ' \6r3\\C9a\ْ\~ȝ:','',0,'?'),(_binary 'c\ ȵE9jz[','wp-includes/blocks/code/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\SŐ\nLbo',_binary '=\\\\	綯\t\\I','',0,'?'),(_binary '\`\L\\3-i_3S\r','wp-includes/blocks/code/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\(궲zhɶ',_binary ' \6r3\\C9a\ْ\~ȝ:','',0,'?'),(_binary 'Otþ\|\!a]','wp-includes/blocks/code/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?B\\Ƀ>\\-',_binary 'w\\\\ëYK\\naR\X&ѥV','',0,'?'),(_binary 'Jj\0pmw\㚉b(','wp-includes/blocks/code/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\YW |`+[T}@@',_binary 'п\O	\8j\o\@D6V\nLcvC','',0,'?'),(_binary '\2\\_R\\[Y','wp-includes/blocks/code/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?B\\Ƀ>\\-',_binary 'w\\\\ëYK\\naR\X&ѥV','',0,'?'),(_binary 'vhy2\\%\\()','wp-includes/blocks/code/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\YW |`+[T}@@',_binary 'п\O	\8j\o\@D6V\nLcvC','',0,'?'),(_binary '*v\<TCUXJn','wp-includes/blocks/column/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:|\nDra\|=',_binary '\왓\7t`Ѐ8y\Ҏ\ܳ\H\"','',0,'?'),(_binary 'Ph`|/\:W\0','wp-includes/blocks/columns/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\	\Ե-\\"',_binary '@\á\n_\\O>~&@4\\'<\MH','',0,'?'),(_binary '\Z\[\M[\\r','wp-includes/blocks/columns/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\>g\\?e',_binary 'G\ZEB.8\~\O+\\\a\v.\','',0,'?'),(_binary 'Q\\PA\鐚\z\','wp-includes/blocks/columns/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\`ZY9\ |oK',_binary '6<\!Cȶ6CD\U|\\w6[=-\0','',0,'?'),(_binary '\\\r\\ZO[΅f','wp-includes/blocks/columns/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\wױ\&,E',_binary 'ΩnW&\5(p\}\r\\\\k.Zᬿ5f','',0,'?'),(_binary 'N\UBya\ \\','wp-includes/blocks/columns/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(`\FpT1\nf\ ',_binary 'S\'_\x\\\\"Ugj~/ĺy\<#\'\\n','',0,'?'),(_binary 'ʊ2%\+a_\\LF','wp-includes/blocks/columns/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U֥\"\{H\=\\3',_binary 'G3\\\ȴE\\%D*yI\\)\J\r	)','',0,'?'),(_binary '\\;i\0\J~\','wp-includes/blocks/columns/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\r\\\\kf\#-i\',_binary '\[\'\טݻ^p)\*\\ 3%1\٘%\','',0,'?'),(_binary 'Ԝd&;0\;\}h\','wp-includes/blocks/columns/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\L\\\/>hz*z',_binary 'f\L\\,m\i촵 \̛\V\\','',0,'?'),(_binary 'c:Qk2\	 \6\','wp-includes/blocks/columns/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӨߵOיL\',_binary ',\>mQ\IXF?\1\\\8C\\','',0,'?'),(_binary 'of\Gk\L`t@','wp-includes/blocks/cover/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\g\)lBȧi=$cU',_binary 'snÍ\E~\]H\\\M;\.\ZBl6','',0,'?'),(_binary '>Gf\@\Tម;D','wp-includes/blocks/cover/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Pe\_\\"\"',_binary 'b\\ZJ\\p\\\uJN:S@w','',0,'?'),(_binary ':s-(B\O\2\)','wp-includes/blocks/cover/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o.+s Ns\\]',_binary 'ɋJ]\\W?;:\P\]Ak\yT{','',0,'?'),(_binary 'ƍp\=Z\0S_\\$','wp-includes/blocks/cover/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U $8QO\r\ּAop',_binary '\!Zt\4NC\h\\\\Hە\'\N\\?','',0,'?'),(_binary '%i\\\gca\W\!q\','wp-includes/blocks/cover/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TEZ}E5D\\',_binary '\\\\U$Q\;́\۫q\ǩ#','',0,'?'),(_binary 'c\J\w\eIOIq','wp-includes/blocks/cover/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ Ee:IN*\\\',_binary '̝@\eMm4u\ټu-\\\','',0,'?'),(_binary '犏`bI\\"v4N\','wp-includes/blocks/cover/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\r\30߯<\窎|\',_binary 'n.\>-[6Z\\d!傶lG״\\\\\\`X','',0,'?'),(_binary '\DTǡ#\"\1?\','wp-includes/blocks/cover/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\LC\r\a18C\',_binary '\l\\/@\x\\垘<i\\','',0,'?'),(_binary '\" 6A\7^\H','wp-includes/blocks/cover/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\WR`l\\\\\',_binary '2LO\Jg.\6\7\\\IcN=*t','',0,'?'),(_binary '!\\\')qM*Xc','wp-includes/blocks/embed/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dbzDh򻹞',_binary 'FlޭkZHz5xz,u\n\*\1X\r\\߽t','',0,'?'),(_binary ' \\ɉ:\s{1<','wp-includes/blocks/embed/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xx\Z \3;)\\g',_binary '\P\0DeN^g^`\Z\;|U\ZL','',0,'?'),(_binary '>\\I7m\>꣍','wp-includes/blocks/embed/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm,\-u\m\Ԫ',_binary 'H\fUgqP\\ ar2䥬{~?\','',0,'?'),(_binary '\߹u7\\[)\h','wp-includes/blocks/embed/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\s-BsVXd x\9',_binary '8Z\̹Qv|5V̫zVR2\-ea','',0,'?'),(_binary 'ņԡyi\D\1','wp-includes/blocks/embed/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jώ\_~\ə\Q\',_binary '\	\\r\Q?*϶b\\o\\\6i?','',0,'?'),(_binary 'u\'M\\2\','wp-includes/blocks/embed/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X] u\S\l\\(',_binary 'w\1\nܤo>O!\%DE\','',0,'?'),(_binary '\ί\?\gW\\9','wp-includes/blocks/embed/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '45m`?\ږ	%',_binary '\§Py\"b\t\rd_6o\M\\\\	+\','',0,'?'),(_binary 'W\nJ\.\'/x','wp-includes/blocks/embed/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&|\<\Q,I\4\\0',_binary '{\\'dhE\\z.\nA\;\8','',0,'?'),(_binary 'sLY\\Ca\','wp-includes/blocks/embed/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\\P~\\\',_binary '\-k.L\߇S?\O&.İ\%̡\B','',0,'?'),(_binary 'rh^\g=\\','wp-includes/blocks/embed/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e)\}QZU\-\',_binary 'k	xb{ia\\\x|\\	ј\\VU','',0,'?'),(_binary '\O*Ҟ\9;\','wp-includes/blocks/embed/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\Wc}\\\ؓǚ',_binary '\vU0|$\\^?Ldl\_','',0,'?'),(_binary '\x\\5nW\n\\\','wp-includes/blocks/embed/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e)\}QZU\-\',_binary 'k	xb{ia\\\x|\\	ј\\VU','',0,'?'),(_binary '<ޤl\\K`i\','wp-includes/blocks/embed/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\Wc}\\\ؓǚ',_binary '\vU0|$\\^?Ldl\_','',0,'?'),(_binary '\`h\NkON8','wp-includes/blocks/file/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\\\nCqtw\"r',_binary 'Oj\\#\#\\\\[\B\\jTۗ7','',0,'?'),(_binary '\kN\>t\\,\\\','wp-includes/blocks/file/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƅd_V\\CnM|',_binary '\\^b➤*\>A/\',\\K\','',0,'?'),(_binary '\V\\C\\dvۦ','wp-includes/blocks/file/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\@/S2D\',_binary '~@m	.3\Q[\J\4k-֦\\h','',0,'?'),(_binary '֬+I7\^','wp-includes/blocks/file/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\lǽ\6.\^\'',_binary '=T\\X\m) :BɈejy/\s','',0,'?'),(_binary '[\BX\n\Q\c\','wp-includes/blocks/file/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|Um^\ĢeH}',_binary 'z\q\Z\7\"%+\/,@O\0	-\\ZMH3','',0,'?'),(_binary 'k0\k⟆\\V\X','wp-includes/blocks/file/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3).\\m6M\"\\;b\',_binary '<~q8\oa*i\f2`i\\	.','',0,'?'),(_binary '}\aX]\D*I','wp-includes/blocks/file/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\dlɶ\\0\|',_binary 'f\edm4@\@\\j`\VM\fƆ{\\','',0,'?'),(_binary '\4\5q-\p,\','wp-includes/blocks/file/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N3@ڕD!m\\Z',_binary '\[=rU\9\˄@B\\Qk\\2z3','',0,'?'),(_binary '!>NN\ٌ\','wp-includes/blocks/file/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\)btu\\u\k',_binary 'f):19I<\\rU\n_!kv|QC\^','',0,'?'),(_binary '\\\Ȩ\r\\%Mè','wp-includes/blocks/file/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ t#ZoZh㪼\p',_binary '˩i\ڗ\Z\0|\!v\Ԧ*!+gJ\Tw\\','',0,'?'),(_binary '\cᘣr\\w\','wp-includes/blocks/file/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CoFG\\\\rE',_binary '\aC͌/A#\7:\e\0z09\g\','',0,'?'),(_binary '\r͛ܹ}C\L\\R)','wp-includes/blocks/file/view.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\r\pS6HW',_binary '\/}B9mZmj2[\+v7ML/x','',0,'?'),(_binary '\\\0뀄	;t/-','wp-includes/blocks/file/view.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\L\\{\q',_binary '-\\m\	V!`\{\"5Lw,SuIj','',0,'?'),(_binary '\\s\X\3f\$','wp-includes/blocks/file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\O@j\\\?%W3 ',_binary ']u|\X`\\ZҕH+a\fx\N\','',0,'?'),(_binary '\+M\%]sD00\','wp-includes/blocks/freeform/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ϯ\r\Mǳ\c\|L',_binary '\xr\	ߔڅ^\ƨ\|& \\ߊ5ӹ\','',0,'?'),(_binary 'gK\N>J4','wp-includes/blocks/freeform/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ğK\\m׀\',_binary 'g1\g,@2\_\s{\\$\y\9s7=\@','',0,'?'),(_binary '+\b\\\I=qY\\','wp-includes/blocks/freeform/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\[%0\\\G\\',_binary '\r.ZE\\h\\\(:0B$u\F','',0,'?'),(_binary '\g\wߍhm\\A','wp-includes/blocks/freeform/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0;\LW!rC\Ǉ',_binary 'ھi.zoM\\\\\NG\Q\\Q).?9XX\\Zӟ','',0,'?'),(_binary '\VZ8=\v\\\c','wp-includes/blocks/freeform/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\n\\F͛\',_binary '\680\2f~\0\\!\\h\nBQf\'\','',0,'?'),(_binary '\\ZTD\r[\FcLL\','wp-includes/blocks/gallery/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Xd#F:\\	B\\a',_binary 'F\BM!\5d!Rv!j\\h1S\\߼Ͽ','',0,'?'),(_binary '7\@r5\','wp-includes/blocks/gallery/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-^_cqV\Q㹯V',_binary '#O\\\\	\e\\bi3T\M\"H;`Vz','',0,'?'),(_binary 'tYSQ/[R\C','wp-includes/blocks/gallery/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\mH\r\\\o',_binary '\7+#o!dNHͰU\¤','',0,'?'),(_binary '\\U\E\Kڂ*\U','wp-includes/blocks/gallery/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"Bsz\\2\!',_binary 'l\R\\E͔\V֊\\r.3\\\u\\"\;\','',0,'?'),(_binary '|\\L\\F85<ZM','wp-includes/blocks/gallery/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%b\m֤\\\i',_binary '\\"ψ\Po\[\"n\\\v\6t~\bv<(	}','',0,'?'),(_binary '\\̭\n5\B\\\+\l','wp-includes/blocks/gallery/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\(\\[\\ǂ',_binary '$\\DGm\\\\7/1V@<-','',0,'?'),(_binary '}\A\5\ PԆ\\','wp-includes/blocks/gallery/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\i\'c\Q6',_binary 'ci$LL\\C>\/3(nh5\\rz=s','',0,'?'),(_binary '\\\\0O\'w[l/^$','wp-includes/blocks/gallery/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>(k\gPE\Z\	\',_binary 'be\\X9sҜR?\XL@\','',0,'?'),(_binary '\_1t=qTQ*F\','wp-includes/blocks/gallery/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\s\\rK	\\\',_binary '\\'(@nR\\ʘ\rx33\\(','',0,'?'),(_binary '_w\\\\'\JS6','wp-includes/blocks/gallery/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0S\U\\'\\2dPڞ',_binary '\c\'/D.h@\\9~#7_0?)\','',0,'?'),(_binary '0wc`\78\M','wp-includes/blocks/gallery/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\yГ\\L+5	',_binary '\z\\W\&G\\b\\\`xp\d\','',0,'?'),(_binary 'Dm\o\"\\a\','wp-includes/blocks/gallery/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0S\U\\'\\2dPڞ',_binary '\c\'/D.h@\\9~#7_0?)\','',0,'?'),(_binary '\\L\}\\\Y~\la','wp-includes/blocks/gallery/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\yГ\\L+5	',_binary '\z\\W\&G\\b\\\`xp\d\','',0,'?'),(_binary 'o+F0Hn3\hJ','wp-includes/blocks/gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\s\\\:\',_binary 'D4M9B\;\\\}j\F&ZЧ\"\','',0,'?'),(_binary '1A\\bȱ\8EN','wp-includes/blocks/group/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '䎮f,\D\gF׷',_binary 'C\\rS@\\ZxT	\x\\\?\N=Ut\\','',0,'?'),(_binary 'ě\w+\qAZ','wp-includes/blocks/group/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'O\:FY\8i',_binary '6	\aA\uI/)\-3\b\\߁','',0,'?'),(_binary 'j;\_=\\Z','wp-includes/blocks/group/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!6SHp1h}G*\'',_binary '틞0x\{\\I<\ߥC\B[xR\d\','',0,'?'),(_binary 'e\\'\\7\r\\\\','wp-includes/blocks/group/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nd\\h\r\?',_binary 'q\/q\j^:ӄ\\U	a\e','',0,'?'),(_binary ',\(X\'\%Z\|','wp-includes/blocks/group/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|\VƳ\\\\'',_binary '\Z\Y\\ӗ\З\t\M\Y뗷\|T','',0,'?'),(_binary ')\Pe\\D\\ s','wp-includes/blocks/group/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\\\\W\@\GB!?',_binary 'YTl$f\u|O\bم #놊)\','',0,'?'),(_binary 's\6Z$Ӿy\D(','wp-includes/blocks/group/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=>\\*f[',_binary 'ϩzJ&O{|K^֤0.\1t','',0,'?'),(_binary 'y\\0Lz㶵و','wp-includes/blocks/group/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\\\\W\@\GB!?',_binary 'YTl$f\u|O\bم #놊)\','',0,'?'),(_binary 'x;_q\*`<','wp-includes/blocks/group/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=>\\*f[',_binary 'ϩzJ&O{|K^֤0.\1t','',0,'?'),(_binary 'ϊYw\׹EG\','wp-includes/blocks/group/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>)e[\h:;*>',_binary '6!I{\ԡ~\cH,/JHd','',0,'?'),(_binary '\c\-,Rqee\\\','wp-includes/blocks/group/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S}k,\'\%\vM',_binary '<\\j-\_4\\\e&\-ڱ\','',0,'?'),(_binary '\"QOOP\b','wp-includes/blocks/group/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>)e[\h:;*>',_binary '6!I{\ԡ~\cH,/JHd','',0,'?'),(_binary 's$\lA\F-^\','wp-includes/blocks/group/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S}k,\'\%\vM',_binary '<\\j-\_4\\\e&\-ڱ\','',0,'?'),(_binary '	\\Ih\BpO','wp-includes/blocks/heading/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_iƯ\ڤoy(',_binary 'BIh\\ڳו\\Z.2\%X\','',0,'?'),(_binary '\g(35\\5\k(','wp-includes/blocks/heading/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\mH\voӱ\kN\',_binary 'z]3ͨb\&j\\\\$L\b\\B','',0,'?'),(_binary 'zt\[\','wp-includes/blocks/heading/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.:\jK=V\\"O^',_binary '6\\*\c\,l\\m@\&\.oaċ{\"n\0\\Ŝ','',0,'?'),(_binary '@)` \\~O\}\ac\','wp-includes/blocks/heading/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\mH\voӱ\kN\',_binary 'z]3ͨb\&j\\\\$L\b\\B','',0,'?'),(_binary '\kV\72\+','wp-includes/blocks/heading/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.:\jK=V\\"O^',_binary '6\\*\c\,l\\m@\&\.oaċ{\"n\0\\Ŝ','',0,'?'),(_binary '/\\Z)y\\r','wp-includes/blocks/html/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƗVQ%$5\3\',_binary '\T-m\#^Η\$fG4&\Ys','',0,'?'),(_binary '@\\뵰On','wp-includes/blocks/html/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\QRemƅ',_binary 'v#puh\1\>ҿ\٫\\36','',0,'?'),(_binary '\vV/W\\{}!^\N','wp-includes/blocks/html/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z?9M}m\%\T',_binary 'N\\\]F\3p<6\\@w\%<};\','',0,'?'),(_binary '7\c-\kЄ\"`k','wp-includes/blocks/html/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zm\\\Ƿ!KF',_binary '\n^/3<S\wD\-?qR&\"\s91oR}','',0,'?'),(_binary 'gv\\\ZUO\\\\\\','wp-includes/blocks/html/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '23X8\\<4)eK\b',_binary '<[n)3a`T\!:]\E\\w{O\','',0,'?'),(_binary '\\Z\K\\^\n\','wp-includes/blocks/image/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\?zc\#ɴC\',_binary '\#̮\!B/\Hs	\\@\z@\\Z','',0,'?'),(_binary ')FTj\CJcG','wp-includes/blocks/image/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_J2q>',_binary '۵?l΀)3\\n\j_|\n\ia\','',0,'?'),(_binary '\\\/蝄W\n\-\n 9','wp-includes/blocks/image/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z\`My\0+\',_binary 'Gӿ\\H1\o\2\@\&\\~\WP\\','',0,'?'),(_binary 'ct\שX\پ\u\yv','wp-includes/blocks/image/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rnד6\r\0i\',_binary '&7/\o\tC\0cYmEc\Ǚ','',0,'?'),(_binary '9wv\r\\\^!C','wp-includes/blocks/image/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w:\\\\Jx]6',_binary '>gysXBC,\'\)4	)\TwqIn','',0,'?'),(_binary 'F`M߸cN!\','wp-includes/blocks/image/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uPC@ŉ\',_binary '܂\}(Ĥ\\\ք1`m\{@A\','',0,'?'),(_binary '\i%\o)\#\\','wp-includes/blocks/image/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ae8yVZw',_binary '!+\h\y#Dڽ8,W&\>֥u`XpEY','',0,'?'),(_binary 'ik[!gW}vȵ','wp-includes/blocks/image/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rK]R2c\\w\Z\o',_binary '\\jGz$(\\^ͅ-W\2\\/)\L','',0,'?'),(_binary '0\<K\}ׇ','wp-includes/blocks/image/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\\&\!$',_binary 'Z)b\M3U\\Z͹#Ӹ\m[bj3՝_','',0,'?'),(_binary '\rA|Ƌ\\dO쨰','wp-includes/blocks/image/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\eD5P/BB\4,\',_binary '\A-\kܐBk\:\SQg\)s@c','',0,'?'),(_binary 'l\SNVng\\y<','wp-includes/blocks/image/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\y\uK\0@*c',_binary '\C\\[p]\\Oy\((\{Y&','',0,'?'),(_binary '`\o\.QS\`','wp-includes/blocks/image/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\eD5P/BB\4,\',_binary '\A-\kܐBk\:\SQg\)s@c','',0,'?'),(_binary 'q1\HamH Q&pR-^D\','wp-includes/blocks/image/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\y\uK\0@*c',_binary '\C\\[p]\\Oy\((\{Y&','',0,'?'),(_binary 'u\\cz\JD\M','wp-includes/blocks/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\\\L%L\JO\\',_binary 'G+Mq\eiO)S \rBp@	1j','',0,'?'),(_binary '́ԑAHa]\':','wp-includes/blocks/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uOw~\=>*\\\\Z',_binary 'I~\\05\&\\ῤ%\˂','',0,'?'),(_binary 'L\\~iS?\vC>\@y','wp-includes/blocks/latest-comments/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R}KV\=\u',_binary 'JaSG4\\\gL\j.\Ϋ\L#DX\,s','',0,'?'),(_binary 'I\UzYWg!g','wp-includes/blocks/latest-comments/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r\\\\"',_binary '\>A?\<;\qn\\RY(\\\\	ZL','',0,'?'),(_binary '\\\##Ցn\ndA\\e','wp-includes/blocks/latest-comments/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\'\q4PS\\\',_binary '@܎iSt\\r-\\\\u,w*n\3','',0,'?'),(_binary 'U\S\rB\\c>\r\','wp-includes/blocks/latest-comments/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XVe\Y2yɑ#',_binary '	L\l\\0ū\l\S^65jz\u','',0,'?'),(_binary 'Ŝ\0>j\-\','wp-includes/blocks/latest-comments/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '琌U\~\P(\k',_binary 'V\3=%\kO\[3\Nf3\\S\0v\ڦ','',0,'?'),(_binary 'u${\\\ܨv\','wp-includes/blocks/latest-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1a׿\yէ',_binary '\Z	Qی\"Aö_pX3).W%r{5','',0,'?'),(_binary 'b\\\͕\+f3c','wp-includes/blocks/latest-posts/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^Ǿa\0\lpP;',_binary 'wB\}BnǾ\5\\\\zMW$F\Z}J??','',0,'?'),(_binary '\\gs)݅','wp-includes/blocks/latest-posts/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\THZ0e\utZ',_binary '\󪸜xag\^4n\rUYR)T\fKP^','',0,'?'),(_binary 'MȮs\\\\%}+=\','wp-includes/blocks/latest-posts/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\?\!֤\\',_binary '^x\\2\\f_\(\Ao֦\\&I\\b','',0,'?'),(_binary 'K\\R	wA\\\e','wp-includes/blocks/latest-posts/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RU!L)\t\\_\',_binary '@\f\1\	<=*\MlU\\Z\\','',0,'?'),(_binary 'u>]\0aO<\G:5\Z','wp-includes/blocks/latest-posts/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7vυ<\\\',_binary ':68\Mr\\f\ZSLMQ_\tّ\nz','',0,'?'),(_binary '[\6dcHa ','wp-includes/blocks/latest-posts/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ε\^?Us|D\~\',_binary ',jju	ri<Zp~\V¦(\'\\','',0,'?'),(_binary 'C,ڦR1A\	X\','wp-includes/blocks/latest-posts/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.\\B¢DS\\\\j',_binary '~\'uq\09yRbFayָ;Fc&','',0,'?'),(_binary '\\\0L\\\6\','wp-includes/blocks/latest-posts/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r7\귈ӏxP',_binary '❧d\{=d\n8\\"1n*\#\','',0,'?'),(_binary '\UMU$\','wp-includes/blocks/latest-posts/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\7Dy2\\"K<',_binary '\/g\p\\y?\\Jz=T\7-\r\7|NƼ','',0,'?'),(_binary '\1\n\\\x\','wp-includes/blocks/latest-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r*9ln',_binary '\\QK\=\G\~B\!w~\b\_Z','',0,'?'),(_binary '\\eN-\\@1\Z\','wp-includes/blocks/legacy-widget/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\v^E\E\A',_binary '}2\k\0h\dz!u5\\ޭgdc','',0,'?'),(_binary '\\`c@3\\\vz','wp-includes/blocks/legacy-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OB\\\\0p\',_binary '\I\uL\!\\\'U\h?\2\\\\A\/\m\u','',0,'?'),(_binary 'P\\:vQw','wp-includes/blocks/list/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\uh޽t!8(\',_binary '\(0qDŐv.\B\\	\\?(kc)Ī','',0,'?'),(_binary '\S%\ќ\"\\r!\','wp-includes/blocks/list/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'բ&EӮq6\,ה^',_binary 'h\\ƙ\4\ġ\\\o/F','',0,'?'),(_binary 'I\\8߽T\Z0','wp-includes/blocks/list/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Aw̟\\\іX19',_binary 'G\\QRy_IER[X=\SY\"\','',0,'?'),(_binary '\q\뻣D(j','wp-includes/blocks/list/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'բ&EӮq6\,ה^',_binary 'h\\ƙ\4\ġ\\\o/F','',0,'?'),(_binary 'w\7v+q1\Z\','wp-includes/blocks/list/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Aw̟\\\іX19',_binary 'G\\QRy_IER[X=\SY\"\','',0,'?'),(_binary '\)鷫\g̨R','wp-includes/blocks/loginout/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E\$Y?\\n<\',_binary 'd\0s\-VT\\I5;4|]!\\%\0-;','',0,'?'),(_binary 'LoA7\ev	','wp-includes/blocks/loginout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ \aG*qc:\B{',_binary '\K\\rMm8n\JK>`A\܅\j\','',0,'?'),(_binary '\\EX\\\|T\','wp-includes/blocks/media-text/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\D\Bj\\>',_binary '\\\F\u\~^\_2\nTE\\G^1-Gae','',0,'?'),(_binary 'Rr\r(\ȟ\\P','wp-includes/blocks/media-text/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\&*\60',_binary 'd\z\\˝Gt1(2o)F','',0,'?'),(_binary 'rn`	m$\0\V','wp-includes/blocks/media-text/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l\\\"\\\\',_binary '8I\\#\\n\\=mM\W\ḑ\\\Js\0','',0,'?'),(_binary 'Z\\Q+x\r\0\','wp-includes/blocks/media-text/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\!@ŏɵB\)',_binary '\1\Ӳ\"Vx\\A]R+.8v\U3|','',0,'?'),(_binary ';n\Cg7$;\\_','wp-includes/blocks/media-text/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>ڸ\ZBhR;\',_binary '\㔻دn׳P嫧\Z\K(`0','',0,'?'),(_binary '\\\4\\\','wp-includes/blocks/media-text/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!5e\\ԻUe\',_binary 'K\\&4gѫ& ٔ+\D K+dOu','',0,'?'),(_binary ')3\r\r-\\ty','wp-includes/blocks/media-text/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<heb%m',_binary '!;h醨\<\\\,l?g\\z\ud','',0,'?'),(_binary '_\z9݀D:\','wp-includes/blocks/media-text/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\'\0\\:\W\_',_binary '\\\\A\ZMi7\iҶs\{y@\+T','',0,'?'),(_binary ':Y\\>\\\=','wp-includes/blocks/media-text/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\\;\PLs\',_binary '}@\n|{\KW./\WM\\8\vi۩gk','',0,'?'),(_binary '$n1\\U\\\x(\','wp-includes/blocks/missing/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\GN]ܫx|\7',_binary '<ktb\\ĸW\\#\\Xn\\BL','',0,'?'),(_binary 'X\\w\E\','wp-includes/blocks/more/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Dd<\\ڊ\ݱ',_binary 'ܧc%P<\\5ä(\Fz\}k?4:\\{ ','',0,'?'),(_binary 'Ȓ\"N=L\.U','wp-includes/blocks/more/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5B:\\Z.+=w',_binary 'H4κ\	\-Uye\=\\\T\\','',0,'?'),(_binary '\EU\-фM\\:','wp-includes/blocks/more/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r<%ggdϑ\',_binary '[|.Nˡ\\\\?O\\];#\5هT','',0,'?'),(_binary '~C0\23*\J','wp-includes/blocks/more/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\09I1=kP.',_binary '2\\q\\\=4\+ʫ^','',0,'?'),(_binary 'y.{uJߠ5[\Z.','wp-includes/blocks/more/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sꦗ+H)6',_binary '-d7\\v[pν\\Pk4ݍ\\s\"','',0,'?'),(_binary 'TO_רwEϧ<\v΍','wp-includes/blocks/navigation/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hf\G\'$XT\\',_binary '96>:\\ggJa~\\F\i,\ո','',0,'?'),(_binary 'A񟧶f*k\\','wp-includes/blocks/navigation/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\jj\\<H\y~x',_binary '\:2*\\ġ.U\ʿV<pO1o','',0,'?'),(_binary '>\0 \\z\Z','wp-includes/blocks/navigation/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`W4\X͸\',_binary '\ۘ\C4\#e)y\rٹ\\#ӵ_Uu\r\n','',0,'?'),(_binary 'vRz\\\@7\\g*T','wp-includes/blocks/navigation/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BY]А\adp5',_binary '\"Qs1tؔ2w4z~8\r0P\','',0,'?'),(_binary 'Mv\U%Lҵ\m','wp-includes/blocks/navigation/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ѧ\\n$z\\',_binary 'P\\\\Dv\\\2\P].*5\H\<','',0,'?'),(_binary '\ \p(邊ȼa','wp-includes/blocks/navigation/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*F:|bLT',_binary 'N+\\ɢz[pS\MB\;8W\\\Z','',0,'?'),(_binary '\p\Az1w','wp-includes/blocks/navigation/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$\"b+\s\˄',_binary 'WCﲋA4\'\)_\nx呗\Z','',0,'?'),(_binary 'ăfHH\\','wp-includes/blocks/navigation/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bXOdw\[SC-.',_binary '\ZR\0wEI\ S?#\\%3W\\ro','',0,'?'),(_binary 'agOIK1އ.\n\gB\','wp-includes/blocks/navigation/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<4\rW4B\p2',_binary '߿R$\g	e\E\;\*C\\\ ','',0,'?'),(_binary 'Sߙ\0\cƕ`4','wp-includes/blocks/navigation/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݝ!Iڥ-\;\7',_binary '\M\\Yݼ\mI\ah\\c-֋+\rR-','',0,'?'),(_binary '\\\JRَnx','wp-includes/blocks/navigation/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\nh:f|9=',_binary '\\w\{\\ )2XzdJKL]h<\\0','',0,'?'),(_binary '9L>h9³k\\"','wp-includes/blocks/navigation/view.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%NNFO\\6',_binary 'C[L\a\ve\M&\n\8o\nr\#\o','',0,'?'),(_binary '\jTct\Q\#','wp-includes/blocks/navigation/view.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K`>LZ\͵12',_binary '\\)\r\\iO?MqVOQg>\r\\','',0,'?'),(_binary 'cdcƚq\~%\','wp-includes/blocks/navigation-link/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\\q\{\"4',_binary '\n\ *\(G:4&\FU\\M`&\','',0,'?'),(_binary '\'haU\Zq\`\\\ug','wp-includes/blocks/navigation-link/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\\A\\Qm!fwf\',_binary '+-ou\QPpq*?E-w3\\~\','',0,'?'),(_binary '\\\{\\\ԙ\UV\','wp-includes/blocks/navigation-link/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\pY~bDqL',_binary '\\C*\l)\FV\^bv_Jx\Z[','',0,'?'),(_binary '8>\\n!H\\','wp-includes/blocks/navigation-link/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \f\ז!\\',_binary '7/\\K\x!\"\\N\YsYK~2b\0','',0,'?'),(_binary '8W\8\ƨrdZ9','wp-includes/blocks/navigation-link/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k4`Ƹ[}\',_binary '-\fsw\\Zc\\'3.\`\U','',0,'?'),(_binary '\0\$X\\G-tUƹ','wp-includes/blocks/navigation-link/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.G\\;:1Rج=}\/',_binary '\]ח\rvd\=R>o:^\r$N','',0,'?'),(_binary '\\6U\*)u1@)\0P\\','wp-includes/blocks/navigation-link/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\\\\\\CY2',_binary '>HoN^<\iaG[ћ틚e\`{C','',0,'?'),(_binary 'k\\^m\\\','wp-includes/blocks/navigation-link/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.G\\;:1Rج=}\/',_binary '\]ח\rvd\=R>o:^\r$N','',0,'?'),(_binary '\w.(	=\\\','wp-includes/blocks/navigation-link/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\\\\\\CY2',_binary '>HoN^<\iaG[ћ틚e\`{C','',0,'?'),(_binary 'V	덵Wky	','wp-includes/blocks/navigation-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>Wd\\ek(˜',_binary '\\\56]N\\D\NU˟Uws0*','',0,'?'),(_binary 'x7.D&\ڹ\g\','wp-includes/blocks/navigation-submenu/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#X\\\Z\5\2j',_binary '}\\8R1=2\Ǜ\ǩ\xv\\eX\._\','',0,'?'),(_binary '\\Q\\o\CP޶\','wp-includes/blocks/navigation-submenu/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\2\}YHu\\0',_binary '\\V\.F1S9W\\<9\\?\\{W','',0,'?'),(_binary '\8d$\nxyŚ','wp-includes/blocks/navigation-submenu/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nCow\Zq\\\',_binary '\\8\m\7\}\t\yJ\\\l','',0,'?'),(_binary 'fmȄ%#!y\r','wp-includes/blocks/navigation-submenu/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$?fc,4+p',_binary '~!Cuw}JD5FS\\\\\O\ɭ\2','',0,'?'),(_binary 'PLF^\9R\6zp','wp-includes/blocks/navigation-submenu/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%vgi}\Cn\\',_binary 'Ey\"N)\$\Åue\A\\0G\','',0,'?'),(_binary 'qj\O.CެИ}\\','wp-includes/blocks/navigation-submenu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \\#\؅dPdR',_binary '-d\6\O`\V3ZdS֍)u\3','',0,'?'),(_binary 'VW\;z\\*\\(\','wp-includes/blocks/navigation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '86\\\F\\b\\	',_binary ':Ӕh\\\J$\a`z2EN{Q(-\','',0,'?'),(_binary '\s}\Ƕ\)\T\V\','wp-includes/blocks/nextpage/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \rͳyzbg\'G',_binary '7\\q\\\\r\ܛ)[%#\JS!J','',0,'?'),(_binary '	t]9\\'\\','wp-includes/blocks/nextpage/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+\v?i6',_binary 'w9>w\B\Wv\\،Q_®\\n','',0,'?'),(_binary '\\H\\AG|\"','wp-includes/blocks/nextpage/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '쮥\@֦\`fx\W\',_binary '\\'\\Z[\\	<AAt\\؏M','',0,'?'),(_binary '\\X\-Of','wp-includes/blocks/nextpage/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;(\nw1\\\6\nO',_binary '}{\pe09\r\n\L]tJ:R~','',0,'?'),(_binary '\W#:\\V\^H3X','wp-includes/blocks/nextpage/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\`\ZJ\\$',_binary 'O\\\1Ǌ8\\#C\\\({xSzW\'L\','',0,'?'),(_binary 'Qx̿Py\\'uE|','wp-includes/blocks/page-list/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\n\'𨶥e+\',_binary 'gq\ZXtJ\&LjL@M9\S\\<\','',0,'?'),(_binary '/e\no?}mbK','wp-includes/blocks/page-list/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v&\\_\'\\r',_binary '\<\iJ\Z\nq*s#\\	p\\e','',0,'?'),(_binary '<|q|xܲ\\\\zZ{','wp-includes/blocks/page-list/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SZ\82\\ p2:',_binary '\<2\k=\'NYDnjy\rMf\0\\\'>','',0,'?'),(_binary '\\}/\pS\\\','wp-includes/blocks/page-list/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j&7 WV\A\P',_binary 'S0\#\cw\~\\\C&\\Q\F','',0,'?'),(_binary 't\~\\\*\ֆ','wp-includes/blocks/page-list/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\\V\0\6q\E\\',_binary ':\1\?VJ\ۋty\"\W]i\t|','',0,'?'),(_binary ')\'hL휞\rЀ^','wp-includes/blocks/page-list/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%YR\0\ac\!\=',_binary '*\?u\SNo\\\\\\#d+Ā0','',0,'?'),(_binary '\\Д\h\c','wp-includes/blocks/page-list/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\rJb\ޭ\\ֳ',_binary '\yxQ{\0ITcf%\%+\NG\','',0,'?'),(_binary 'Ph\~\\P\','wp-includes/blocks/page-list/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%YR\0\ac\!\=',_binary '*\?u\SNo\\\\\\#d+Ā0','',0,'?'),(_binary 'DQ#u\nU\\ @<\','wp-includes/blocks/page-list/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\rJb\ޭ\\ֳ',_binary '\yxQ{\0ITcf%\%+\NG\','',0,'?'),(_binary ')警\Q\Q/Y9','wp-includes/blocks/page-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vwy\wr\ZM\{ε',_binary '\Fĭɒ\\\_fё\Ҧ\- \d\\\','',0,'?'),(_binary '\\\\\h\Z\\)Ġ','wp-includes/blocks/paragraph/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\p\\\6',_binary '\(BZzU\\U;tBvoum\_','',0,'?'),(_binary 'o	ǻ	&\\c\\\','wp-includes/blocks/paragraph/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٚD}u\P\5+',_binary 'KfO\\H۪5fw\Z-\ͼ\\\\','',0,'?'),(_binary '?\\϶^7:y\','wp-includes/blocks/paragraph/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(:\t\Me&>',_binary '\ʟ\ω\\P\Xw\\P\0\ޤopl\Ҷ','',0,'?'),(_binary 'ޠ\q\\D\\b,','wp-includes/blocks/paragraph/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٚD}u\P\5+',_binary 'KfO\\H۪5fw\Z-\ͼ\\\\','',0,'?'),(_binary '\jU\3\0<\g\\b','wp-includes/blocks/paragraph/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(:\t\Me&>',_binary '\ʟ\ω\\P\Xw\\P\0\ޤopl\Ҷ','',0,'?'),(_binary '}\-$LH_R','wp-includes/blocks/paragraph/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '34.\ȡ\S|b',_binary '\#&N;\0Գjm~\=>\ \','',0,'?'),(_binary '+\(-V&S_2X7f','wp-includes/blocks/paragraph/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&[\\\F:η\Jv\C',_binary '\#\	3\=\\be@\"\"IW:i.(Vo','',0,'?'),(_binary 'c%;8\QVWƝdȇ\:','wp-includes/blocks/paragraph/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GC.El\\\',_binary '}>w\8\]#\0bV\\́G\\$','',0,'?'),(_binary '2\!C|\R4ضJ','wp-includes/blocks/paragraph/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=IePsnWh7',_binary 'iVB\q!ǖ_-\\'S\\\\','',0,'?'),(_binary 'O2ɂH\\\!֒\[=','wp-includes/blocks/pattern/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\ب\,\]',_binary '\s\Pl\&:R`Y1\O\\\h۾\','',0,'?'),(_binary '&\\\\͂|d8\','wp-includes/blocks/pattern.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'av\".%T\\',_binary '~\r\XIRF\AY\\\]A\\oab3\','',0,'?'),(_binary 'c1;\!oe','wp-includes/blocks/post-author/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C\<]{_',_binary '\KS\X/X\BD`FT\\\\\qx^\','',0,'?'),(_binary 'YJ\O\Π\*Z\\','wp-includes/blocks/post-author/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6hx6I\20φ|\g',_binary '4\\Z&{b|\G#\f^3)!h0xz\','',0,'?'),(_binary '(T\k|ksT','wp-includes/blocks/post-author/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ǩ&h.20#',_binary '|wahV=ǣ\\\m\	M+T\Z, ','',0,'?'),(_binary '.k;\\\wq','wp-includes/blocks/post-author/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\\\NجY#E',_binary 'S!\0\ǉl\\ib-\{\r8ڨ\r|B\c','',0,'?'),(_binary '\SQ\sY7aF\IMjz','wp-includes/blocks/post-author/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&Q@\F \',_binary '\K\-~#\\\/\\ѭ֤9k[^vcn\x','',0,'?'),(_binary 'AaK\o\+O','wp-includes/blocks/post-author.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's#Z\x\媦lU\',_binary '՘H\(6g\\\\$\Z\T\<\7+P\8','',0,'?'),(_binary '\d?{և(\ ','wp-includes/blocks/post-comments/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#ך`\׷1\\Z}.(\',_binary '\t\N\ɀ\ܻ\Hې\%kH\\Z\','',0,'?'),(_binary '\\\ӊ\jP$M\Vc','wp-includes/blocks/post-comments/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\z\g9)\`\&\r',_binary '\,Ŭ\bf\`)A.?q\_L1\t','',0,'?'),(_binary 'r\^\\w<.s\','wp-includes/blocks/post-comments/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~1\KL\Mɩ',_binary 'j`+A\+\95 SJ:9\r','',0,'?'),(_binary '/\\ºm\3\','wp-includes/blocks/post-comments/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r(\،\ꞙ\\\',_binary 'o7\\j\UB/\\O\\\4D`0\\`/E','',0,'?'),(_binary ',\O\؃[D','wp-includes/blocks/post-comments/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\e\"F%xc̰3pJ(',_binary '\OeLoXr\Z\ִQJ\澥e:P\\\r(u','',0,'?'),(_binary '{𯪢\\\','wp-includes/blocks/post-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{1\\0ٕEr',_binary '6o&ء[\\tJY\\$MA؃q','',0,'?'),(_binary 'ٱMPr\\h~','wp-includes/blocks/post-content/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dD\J2=i',_binary '-P]		6?\\rWߺaV\\\','',0,'?'),(_binary '5\;T\]\\0\','wp-includes/blocks/post-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(M Zޯwi\ro',_binary 'ń\ZS<U\a\r8g83\AA:zI\g_m','',0,'?'),(_binary 'P\hui8V\0kU','wp-includes/blocks/post-date/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')Y\\*U=*v\',_binary 'g\dɘooj\R4޴(\[Sꄬ','',0,'?'),(_binary 'CK\J6LAM\kV','wp-includes/blocks/post-date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EP\^\\\v{',_binary 'ɫʴ|\\ns鋺\@Kg\?]߳ysQ','',0,'?'),(_binary '4/\\ف~\<+','wp-includes/blocks/post-excerpt/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r>\\XJ_W#\ZD%',_binary '\ȶB\?@\g\Y\\+./\\>\2mVp\','',0,'?'),(_binary '9*ICc\','wp-includes/blocks/post-excerpt/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ӣ\\\6\',_binary 'L(\Ƅ\}\\03\t9v~<\{~\\y1','',0,'?'),(_binary '#\\M\@0\T','wp-includes/blocks/post-excerpt/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Qj\)O=SR',_binary 'oCl\'6Ĳj\2\\'\Zl\'\\n\\}{','',0,'?'),(_binary '\0\\s\TÐ֘8\\','wp-includes/blocks/post-excerpt/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ӣ\\\6\',_binary 'L(\Ƅ\}\\03\t9v~<\{~\\y1','',0,'?'),(_binary '\\u|=:1\\v','wp-includes/blocks/post-excerpt/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Qj\)O=SR',_binary 'oCl\'6Ĳj\2\\'\Zl\'\\n\\}{','',0,'?'),(_binary '\ni_a*>dnP','wp-includes/blocks/post-excerpt/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v1\,ͯeܒ\\\',_binary 'W޻i7\5^gDn~Q\\"5Q Wɟ','',0,'?'),(_binary '\\ϝ\\6=̍','wp-includes/blocks/post-excerpt/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\\)\0Ь\/o',_binary 'F+h\pa\qÉ\Fb\A\3i\<\\','',0,'?'),(_binary 'X\\N8jc','wp-includes/blocks/post-excerpt/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v1\,ͯeܒ\\\',_binary 'W޻i7\5^gDn~Q\\"5Q Wɟ','',0,'?'),(_binary 'awU\\\ZTzK','wp-includes/blocks/post-excerpt/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\\)\0Ь\/o',_binary 'F+h\pa\qÉ\Fb\A\3i\<\\','',0,'?'),(_binary '\B\J<`\','wp-includes/blocks/post-excerpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>\s\a!吊',_binary '/ۯ\7{1(DTM\0ѷ!\!\n\lZ','',0,'?'),(_binary '\n	MI~\YEO\]\','wp-includes/blocks/post-featured-image/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b&\m\ng\%L',_binary '\,Qs`\\?hЖD6\\l{\\\ K','',0,'?'),(_binary 'fF\\AlUp\\','wp-includes/blocks/post-featured-image/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\i\\'\\Gg:',_binary 'F!\`<\	mjbpH\\\o̿','',0,'?'),(_binary 'L\\\E\g\\\F9','wp-includes/blocks/post-featured-image/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0{\ZY\):\_\',_binary 'kln\\\0\\[\0\Z?$\','',0,'?'),(_binary '\m\\ӟa\\\\','wp-includes/blocks/post-featured-image/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VW~MAʾޖS\\ӱ\',_binary '\ \3\n݅w0\\"+v@e\bu~َ\','',0,'?'),(_binary '\w\>d\?d','wp-includes/blocks/post-featured-image/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\>\}i@\Ӕ\',_binary '&Tjy\Z\ZqNNx\\\\\\\=w\','',0,'?'),(_binary '\z\J/\B&C%','wp-includes/blocks/post-featured-image/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\N1\hfXI',_binary 'Z\\#F\\ħ\Ӥ0J׹S','',0,'?'),(_binary '\,\*iVO1a\\n3\','wp-includes/blocks/post-featured-image/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j{K=N\a\0?g',_binary '!˰\[;<ƌ\x\ܖ[\ntd)DQ','',0,'?'),(_binary '\{{8B%@\0x\','wp-includes/blocks/post-featured-image/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '32\,Que\/:gg',_binary '3@̅\\\\Ÿ\\{A\\','',0,'?'),(_binary 'rsa\\\9SUU\','wp-includes/blocks/post-featured-image/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\&ҪI\sq4\"',_binary 'ht܄9\\S\nn\Zc\\%xMe\0(\','',0,'?'),(_binary '\ji\ \\nT\槿\r','wp-includes/blocks/post-featured-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u*\f\^d\t',_binary '\U\q\ח\6\.Lp\"i=ݮJ=\$\P','',0,'?'),(_binary 'H|\0`B\\*Q','wp-includes/blocks/post-navigation-link/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>}mO\PBCR',_binary '\\P\Q\\rP3\\\\|\Ң\\(\PA','',0,'?'),(_binary '\\?i.Q[E\','wp-includes/blocks/post-navigation-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E~)m/ob:ℵr}',_binary 'kR\%\Z\\\k\\Ox5kC\\x\\\XF','',0,'?'),(_binary '%fNvn9\,\r\W','wp-includes/blocks/post-template/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\)2T2z%͌xd\',_binary '0@jf\=\IfJq\P\8D\]','',0,'?'),(_binary 'sD\\I6|U\_','wp-includes/blocks/post-template/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}-\\?\ng',_binary '\S\5D\hm\ɲĖ\\-o%3\->','',0,'?'),(_binary 'M\}n\"4jdR\','wp-includes/blocks/post-template/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\N\M}\\',_binary 'K.\c~\\\\[&\'\\1\S\S\\','',0,'?'),(_binary '*&5,qV׷0vc','wp-includes/blocks/post-template/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\򢒾yNSFu`\',_binary '~-v6%i2\\\@}f\0k=','',0,'?'),(_binary '\O>\Pw^Y\X\','wp-includes/blocks/post-template/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\\V\\&GT\B',_binary 'գJ?\ǈa]^ޓ\	R\V\%e.','',0,'?'),(_binary '\0\vئ\\\ݞ','wp-includes/blocks/post-template/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ċq4b$C\">t',_binary 'ogS}\2K\	rGH2͊\\\ 3C\','',0,'?'),(_binary 'ښ\޴\\u_\','wp-includes/blocks/post-template/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\rپID\\::',_binary 'ez\{촐\5\\B25w6\u\=','',0,'?'),(_binary 'z\0\3h\d*','wp-includes/blocks/post-template/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ċq4b$C\">t',_binary 'ogS}\2K\	rGH2͊\\\ 3C\','',0,'?'),(_binary 'Es=]=a','wp-includes/blocks/post-template/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\rپID\\::',_binary 'ez\{촐\5\\B25w6\u\=','',0,'?'),(_binary '&3\9Q&m\OcQ','wp-includes/blocks/post-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˯\>YHSK%Yn\Y',_binary 'W\8\JR\\\D\'\0\n\\t\\ZaN\d$S\\\','',0,'?'),(_binary '>o\\\\\t\+','wp-includes/blocks/post-terms/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\G*\\|',_binary '@H\\\S«j\\\92v)v1+ge\}\','',0,'?'),(_binary 'v>\nA?\U\\(\','wp-includes/blocks/post-terms/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\k\Cwy\?A\a',_binary 'J5\D\j\$\Уm[\U8\Xa\Z','',0,'?'),(_binary ';Q}]]U\K}9o\\\','wp-includes/blocks/post-terms/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\\΍=vsN~',_binary '8ġ\Rp`e\\\FMC3|\Ew\j','',0,'?'),(_binary '&𐯧o]\3+g','wp-includes/blocks/post-terms/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\k\Cwy\?A\a',_binary 'J5\D\j\$\Уm[\U8\Xa\Z','',0,'?'),(_binary ' c\O\\\\4ĨǖM','wp-includes/blocks/post-terms/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\\΍=vsN~',_binary '8ġ\Rp`e\\\FMC3|\Ew\j','',0,'?'),(_binary '\\\v\yL\\e\!','wp-includes/blocks/post-terms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\JGhNp7g{u\',_binary 'fqf=\\^\h\)JR\`\\D\bwB%\','',0,'?'),(_binary 'pŧ\n\+R\2Z\\b','wp-includes/blocks/post-title/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\՞\<h\\',_binary 'XedKU\\ H\0\u\:qD\Z','',0,'?'),(_binary '\seQr^T\K','wp-includes/blocks/post-title/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?(\"<\\ѷ \\~;\',_binary '\ u7/\o\#[\\0D\\.\\dg~','',0,'?'),(_binary '\\r\N(M\\\','wp-includes/blocks/post-title/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4̈~\3\vtSQ\'',_binary '\ge\T\\'i\\i\=>;QBH\'D','',0,'?'),(_binary '\e\7F\%','wp-includes/blocks/post-title/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?(\"<\\ѷ \\~;\',_binary '\ u7/\o\#[\\0D\\.\\dg~','',0,'?'),(_binary '\\rW$2lv9{ܭ:\','wp-includes/blocks/post-title/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4̈~\3\vtSQ\'',_binary '\ge\T\\'i\\i\=>;QBH\'D','',0,'?'),(_binary 'Xg#m\rfj7m^','wp-includes/blocks/post-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\uzT0s\\'e9G',_binary '&=ǘ\P)7\u9a$\\\n	\\\Ey','',0,'?'),(_binary '%\]M\3T1T\/','wp-includes/blocks/preformatted/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ůF\\ڶB0\\',_binary '\\9/#\eX:zʗ\Y\\\X\\#㯿M','',0,'?'),(_binary '(0\0k9Y\A\Z','wp-includes/blocks/preformatted/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E9,Gr\pi\_',_binary 'cSnmqr:hNeW{(w\D~n\'\+','',0,'?'),(_binary '\"sybNl-\','wp-includes/blocks/preformatted/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)1n8.R\*',_binary 'v[\\7/N@3)}ox\\t\7Nk','',0,'?'),(_binary '\L>\;*	Y۞m','wp-includes/blocks/preformatted/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E9,Gr\pi\_',_binary 'cSnmqr:hNeW{(w\D~n\'\+','',0,'?'),(_binary '\c\8\x\\ϵ','wp-includes/blocks/preformatted/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)1n8.R\*',_binary 'v[\\7/N@3)}ox\\t\7Nk','',0,'?'),(_binary 'P\H\Z`\=','wp-includes/blocks/pullquote/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z\%\D\\,&',_binary 'fѮ%\Z\\!)~\OeS+\v\4p\\H','',0,'?'),(_binary 'Z\*Է!\\"E\Z@','wp-includes/blocks/pullquote/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BIŀC}M\9\Z#x',_binary 'a	\~aUlbGAHbYi18b\5|','',0,'?'),(_binary '\M{xJ\H','wp-includes/blocks/pullquote/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\XF&4G\\$}xJ2',_binary '|U\äf}\Y\"Xa<φ/\#CO7','',0,'?'),(_binary '3XG%<!>','wp-includes/blocks/pullquote/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BIŀC}M\9\Z#x',_binary 'a	\~aUlbGAHbYi18b\5|','',0,'?'),(_binary '\?H4V\n\','wp-includes/blocks/pullquote/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\XF&4G\\$}xJ2',_binary '|U\äf}\Y\"Xa<φ/\#CO7','',0,'?'),(_binary 'x\.X\\J$ɮܹ','wp-includes/blocks/pullquote/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\\\rYNڗ\\r\',_binary '+OVhq #*W0\r\Z]\7\\1ީ\'','',0,'?'),(_binary 'ZAP\\z\','wp-includes/blocks/pullquote/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\GԤFǾȜJ\2',_binary 'f\\?\ʤ;\\;Cd`ݕj','',0,'?'),(_binary 'r\"%1}/2Y','wp-includes/blocks/pullquote/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_ӵ^\.\x\\',_binary '\Oi\_?%}\\߇\0C\_fT}w\','',0,'?'),(_binary 'UA\Q,Uq\\\','wp-includes/blocks/pullquote/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RW)\Z\"\\"\j',_binary '\,Rr`Br)*s\\\/<\\FAnӭ3孙','',0,'?'),(_binary ' \r\-\Uz\raK','wp-includes/blocks/pullquote/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P*aõ\ĭc\F',_binary '6\\ʃ\\\-R=\pZͪ\\4J','',0,'?'),(_binary 'Ő5]dxv:\','wp-includes/blocks/pullquote/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']o\\a!\'\',_binary 'OJgI}Ol\n4?kaWK\!o\\Q','',0,'?'),(_binary '|.]\\0\','wp-includes/blocks/pullquote/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P*aõ\ĭc\F',_binary '6\\ʃ\\\-R=\pZͪ\\4J','',0,'?'),(_binary 'L\ջ˻vMlWd','wp-includes/blocks/pullquote/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']o\\a!\'\',_binary 'OJgI}Ol\n4?kaWK\!o\\Q','',0,'?'),(_binary '?\\|꺯\\~x\\\','wp-includes/blocks/query/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VY\8BK){',_binary 'j\'\ۉ\>MOB\UZ\\h\fy\r','',0,'?'),(_binary '\\!|MWk\pr','wp-includes/blocks/query/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\lzi7\(D',_binary '\$\\ܗR+\j]\gK]q-\DU`','',0,'?'),(_binary 't\R\\OLZ\\\\\\'','wp-includes/blocks/query/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\zDy2>r`U',_binary 'x)QĠ]\e\\\+\}r#\@\\\\','',0,'?'),(_binary '\"\D\Z~\0\|3\\\','wp-includes/blocks/query/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\j\M\hWQ',_binary '\w\yBG\ZT\Ѽ@ے\p><\\0','',0,'?'),(_binary '\XLt\Cc-','wp-includes/blocks/query/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\\\{#\\\\',_binary '?\	?`0i1pL<hx\\','',0,'?'),(_binary '\\'\\VB~w','wp-includes/blocks/query-pagination/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G`[Ws/\ؤ\',_binary 'N\\SUný5{lL\\\\ƩxM\','',0,'?'),(_binary 'T\\`5\2z/>\w','wp-includes/blocks/query-pagination/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o>@\Z\GmINX',_binary 'y@\?ǐ\0Rsٔ.\6D\ϓ\0+','',0,'?'),(_binary '\/}¦\kAZj','wp-includes/blocks/query-pagination/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E$1r\{1کX',_binary '2bk\Oy\@\n\ݕ?\Q\M*','',0,'?'),(_binary 'S?d\xS\َ@','wp-includes/blocks/query-pagination/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\gd\mnl5\3n\|}',_binary '\boM\\y\\\\\߈i\0[\ץY@','',0,'?'),(_binary 'I\r8p:́	ޞ}`\Z\','wp-includes/blocks/query-pagination/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?l\ޫ\(\',_binary '.\ne\Zۢ<\)Bu\&8#rJ,\','',0,'?'),(_binary '\\0\\\Z/1\~','wp-includes/blocks/query-pagination/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\a\o[F^8\\x',_binary '\4ԓA#\~lKl	\n\\mf:\\\\@','',0,'?'),(_binary '\\L\\Z\','wp-includes/blocks/query-pagination/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w)e\4%4#\',_binary '@\onv|k\ʜf\r;>\bt\\','',0,'?'),(_binary '\@\'y\q\','wp-includes/blocks/query-pagination/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z(\\N\"̹W\\\\\',_binary '?0\3\\V\]m\}\rv\$VF','',0,'?'),(_binary '\4Vs#,\Q\','wp-includes/blocks/query-pagination/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\[h\H\\ 30$',_binary 'F\\0%\\~6E\\[\vs\\tp\ÍScW','',0,'?'),(_binary '\W}\rDŬw*\','wp-includes/blocks/query-pagination-next/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\dB%X;',_binary '\t4\\\0\"qN\0x\|Pi\2#\V','',0,'?'),(_binary '_2oUE6','wp-includes/blocks/query-pagination-next.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\Pw\u\J.',_binary '3EnaK9\꘧@#\o\rȵtx~G3\(>','',0,'?'),(_binary '\u\gkDEK','wp-includes/blocks/query-pagination-numbers/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{՘;-\0\<',_binary '\Z}InMPq\D\Ypd/\"n\"\','',0,'?'),(_binary 'Nsf#@Q;;{̻','wp-includes/blocks/query-pagination-numbers/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O6\ө\(\P\Q7',_binary '^`\\\wPz\\l\\n\̓u\0k\\','',0,'?'),(_binary ' y>4lgR\','wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\Z\ 8Z',_binary '\\y q\\k\\j|\gY{\','',0,'?'),(_binary '\{\h\B-o:Ih\','wp-includes/blocks/query-pagination-numbers/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Bپ\]GhEX',_binary '3D\wX,ח3o$\s\o358]Vn','',0,'?'),(_binary 'D	(,|b?\L','wp-includes/blocks/query-pagination-numbers/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\*\l:\\\w',_binary '\w9C\1\\'\$\IN+3ں\$s','',0,'?'),(_binary '\0,#heLG(}','wp-includes/blocks/query-pagination-numbers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\!\g\0jDi\Z',_binary '~xX\\%\"\>\"ݡ\\\[','',0,'?'),(_binary 'z2]w\'\=\"\-4','wp-includes/blocks/query-pagination-previous/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8\\߆\kS\\',_binary '/W\ \U\\]4b\\Md','',0,'?'),(_binary 'Vi\'\\Ru\h:u\','wp-includes/blocks/query-pagination-previous.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(Zݡ\[\H\r-',_binary '\2\c\\\\\>2\Q_\qD\\rTD','',0,'?'),(_binary '9 {b\nJc\F=lY','wp-includes/blocks/query-pagination.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2k\\\\+O\A\S\b',_binary '\n30\\\\\\\\\N\ntHeT5}','',0,'?'),(_binary 'y\3\\2/[X#\F','wp-includes/blocks/query-title/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\]i\1S[\\\\'y',_binary 'J\e~ޙc蜧yBb\v}04GI-cW','',0,'?'),(_binary 'd\\1T\gb!','wp-includes/blocks/query-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q0<\\0\~\3!\',_binary 'l╼ @\^\5\Y)X\\04drG\<','',0,'?'),(_binary '\T\T9ܰ\\\nj\~','wp-includes/blocks/query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\9.*?\r\\',_binary 'N\rC+\*`~\\{38pnq\ޠ\r7ݙ_','',0,'?'),(_binary 'X\Rev O\U','wp-includes/blocks/quote/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`Ǜ\n\ZΈF\',_binary 'dqSm)].ħD\xXH7ch71J','',0,'?'),(_binary '\S\I\#)|','wp-includes/blocks/quote/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(\\ރ%\	\k',_binary ';MP+CD_\J@\[	\O{X\%XBT','',0,'?'),(_binary '9\\yS\	pV6=','wp-includes/blocks/quote/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_9: \0Lv\6\',_binary 'Ӯ5*kI\\rx[{\c򮪫\\\\2','',0,'?'),(_binary '\\\\\nP','wp-includes/blocks/quote/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mG~Du\I\B',_binary '[#\\rfɃ\"[\\\d0Z\WS-\dM\','',0,'?'),(_binary '\\lI\r,B8\','wp-includes/blocks/quote/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\0G\M\ҫ',_binary 'l~\xv\_6\:_\rd\\\E6}\Z1C\Q\','',0,'?'),(_binary 'G︈g\\\\\pΊ','wp-includes/blocks/quote/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l\k,\\4',_binary 'T3C)\Y8\9\\ZN]e','',0,'?'),(_binary '\;dAo+\d(','wp-includes/blocks/quote/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:s\VRpԾ 4>',_binary '.\g}$bXQ\"j\J}\Gjc\ݺ\','',0,'?'),(_binary '$*\-\ً\\\','wp-includes/blocks/quote/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\Û\r\\>y',_binary 'τ\\]W\\\\\\D~V3','',0,'?'),(_binary 'QP5Z\\\w\Nia\','wp-includes/blocks/quote/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N1lX\\_\',_binary ';\\B9jV=~?xO)Ѭ\TA','',0,'?'),(_binary 'g\bf\r\Z\ъ\','wp-includes/blocks/rss/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3:&[󿵺\=#',_binary 'AZag\\\K\"]&\0+\','',0,'?'),(_binary '\nJ-25W\','wp-includes/blocks/rss/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Pt\r2/\p_i\\',_binary '\MJ\\\\7\*r;\\\\P\6c','',0,'?'),(_binary '\I6\F\','wp-includes/blocks/rss/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\\\0!!i\',_binary 'u\r\>u`37(\F^ \)L}\(\\"l','',0,'?'),(_binary '(l\օ+%\m\GI@','wp-includes/blocks/rss/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'եB\vTE|\(',_binary 'UZ̫X2\/\\\\\x\"UUKT\<.\','',0,'?'),(_binary 'P\Z27\Mn','wp-includes/blocks/rss/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{]ө\\Z>ﭒ\',_binary 'd\Z\3\\aHّ2\\'t\\\0L\\[i!Q','',0,'?'),(_binary '\8jc}','wp-includes/blocks/rss/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\\8^/4\?{',_binary '#t\#\Ͻg߆>l8Z,hT4~E|','',0,'?'),(_binary '54\\Z\ʗHJ','wp-includes/blocks/rss/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0^<ڸF9\gոɭ',_binary 'l:a+\\2\\0M1\\һu%^\\\M0','',0,'?'),(_binary '=	\\vV\x','wp-includes/blocks/rss/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e- \nثYk\{z',_binary ' 6/}mz\'h\S4\\\^8|,m','',0,'?'),(_binary '	e\حV\M\\y','wp-includes/blocks/rss/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\}H\rU\kLӝ',_binary '}iNkuq\\0/&rTY\\)\O7\MD\Edܿ','',0,'?'),(_binary '4B\\07qoB\o6\','wp-includes/blocks/rss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z<!Un\_eQB',_binary 'Pn\2\\&Y!\>Pٙ\{\q61p','',0,'?'),(_binary '\X|_\\wc\:j\','wp-includes/blocks/search/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\l\\=-n)X\',_binary 'N<\\8ĐI)T\\J\\\\pRЧ','',0,'?'),(_binary 'ꑉ}OaTTN.','wp-includes/blocks/search/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\旂',_binary 'jV&H\\Y\?-Ͽ;f\\0v\%\\<Ir','',0,'?'),(_binary '\\\h&\'s','wp-includes/blocks/search/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'otp{&<웑6\1',_binary '\n #8\\\ޗF\\ӳl\\䇗7\;\','',0,'?'),(_binary 'M3\vaBcd','wp-includes/blocks/search/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\旂',_binary 'jV&H\\Y\?-Ͽ;f\\0v\%\\<Ir','',0,'?'),(_binary 'he\-BJ\_v\','wp-includes/blocks/search/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'otp{&<웑6\1',_binary '\n #8\\\ޗF\\ӳl\\䇗7\;\','',0,'?'),(_binary 'm`\5\n+\\7\\','wp-includes/blocks/search/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hC\\|V\\݋',_binary 'I\e%\\\n\\y\|bU','',0,'?'),(_binary 'Cms\n\\X]\KT','wp-includes/blocks/search/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':x\IkO\)\R',_binary 'nuQP\nJvq\..;\ZK\\L\p','',0,'?'),(_binary 'saOY,~r൭k\','wp-includes/blocks/search/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%fk@Qrh{',_binary 'iFQJzn\\\\fVfQP\5\n','',0,'?'),(_binary '_ 6TNG?','wp-includes/blocks/search/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Tp\~\\P\\',_binary '\\\ZW\\/#$}(\\Z\K8\옕 \','',0,'?'),(_binary ',R3Z9i\G\','wp-includes/blocks/search/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\4\mI\\	g',_binary '>y7\\r\\i\\rEu\!JR\\','',0,'?'),(_binary '[Y[\jǈ\G\','wp-includes/blocks/search/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}kIK\\\\p\',_binary '桍vqRu\#Ǒ\\Z\㫠bJ6)\0p_','',0,'?'),(_binary '\pȬ\ES\\0K','wp-includes/blocks/search/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\4\mI\\	g',_binary '>y7\\r\\i\\rEu\!JR\\','',0,'?'),(_binary 'ʁ	i\\\:gy','wp-includes/blocks/search/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}kIK\\\\p\',_binary '桍vqRu\#Ǒ\\Z\㫠bJ6)\0p_','',0,'?'),(_binary '\^}R	\V7{WI\rH','wp-includes/blocks/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\^T\\t\pwC\',_binary '\a$\,QV\"<\Q̢\R/W\\\uの?','',0,'?'),(_binary 'L}b&۵\b','wp-includes/blocks/separator/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\Rm\y\L:',_binary 'Dk\L?@Ά\\\"\\2j62A','',0,'?'),(_binary '\<7v\Y6?\\\','wp-includes/blocks/separator/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v]\\ ,8\\',_binary 'oy\\\g2\\\{\\08)O{U}','',0,'?'),(_binary 'U\\z\c\p','wp-includes/blocks/separator/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|\D\\JoA\\',_binary '\"w\	u{[\H6W\ο\','',0,'?'),(_binary '\\<|Ɔ3#`}','wp-includes/blocks/separator/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v]\\ ,8\\',_binary 'oy\\\g2\\\{\\08)O{U}','',0,'?'),(_binary '5pު\m\Z','wp-includes/blocks/separator/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|\D\\JoA\\',_binary '\"w\	u{[\H6W\ο\','',0,'?'),(_binary '?\\p|R\o\\','wp-includes/blocks/separator/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8\Z%7R!0`q',_binary '\گ.fo\а\X\\\xWPɷ\','',0,'?'),(_binary '\c\O@/lM\','wp-includes/blocks/separator/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\.4	X6h\\b{\',_binary '+]pK\nO>,*~ܧ]m_P\\'\]','',0,'?'),(_binary 'V\<\7Gn\','wp-includes/blocks/separator/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\8MynWj|\0<\0',_binary '3\nf$Ry\@ի2.KH>\z`\f','',0,'?'),(_binary 'idܶ\1\"\\^\','wp-includes/blocks/separator/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\.4	X6h\\b{\',_binary '+]pK\nO>,*~ܧ]m_P\\'\]','',0,'?'),(_binary 'H=3P;T\\~','wp-includes/blocks/separator/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@	߻-Q',_binary 'Z\\t\\\\\;<\\Z\*\H\\'','',0,'?'),(_binary '@<N8iy\','wp-includes/blocks/separator/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J4\\\\4\O<\9i',_binary ')mh\\-\|[\&c78IT\\\\','',0,'?'),(_binary '0\"\G\Z=\hV4','wp-includes/blocks/separator/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\zjo\͡',_binary '\ےC\4xSU\"h1Yީo=|[8','',0,'?'),(_binary '&sR\X\<','wp-includes/blocks/separator/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^xr;\',_binary 'A:ڭ򮌵#L\u=B\{EHM\\\^(<b','',0,'?'),(_binary '苼\3\','wp-includes/blocks/shortcode/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1V\\\\tL,k_,',_binary '\nz#\C\Uh\\47\\)S\Xյe ','',0,'?'),(_binary '\Z6B8ceg','wp-includes/blocks/shortcode/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4>c\S\/\"؇$v',_binary '\ky\}\r\C\\\"Q}\3i\\$>V','',0,'?'),(_binary '\\q\8O\;\A','wp-includes/blocks/shortcode/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ͻ\0E\\<\\#\',_binary 'ID\W\=\~7\\(3E\b$@x`\','',0,'?'),(_binary '#;\eO\"\#[','wp-includes/blocks/shortcode/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4>c\S\/\"؇$v',_binary '\ky\}\r\C\\\"Q}\3i\\$>V','',0,'?'),(_binary '3x2§h\_','wp-includes/blocks/shortcode/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ͻ\0E\\<\\#\',_binary 'ID\W\=\~7\\(3E\b$@x`\','',0,'?'),(_binary '\\N\FV\Y\C','wp-includes/blocks/shortcode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0t\	\ڨ.j',_binary '{bw\n~4n\"\"\\\\#.m/#1','',0,'?'),(_binary '9\>\\\7','wp-includes/blocks/site-logo/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\rbz2ZZ\\\\O',_binary 'onP7\kԑkh\᮴|@KR{AC\ۭ*','',0,'?'),(_binary '\vџH\5%','wp-includes/blocks/site-logo/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0k)\\-:Gc',_binary 'ql9\E&\r_W>\i6\n\rm','',0,'?'),(_binary '*Tǚ\qG6\R\\H\','wp-includes/blocks/site-logo/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e{m\\@',_binary '\nf\\؅\B}s\%\avr2\wm6','',0,'?'),(_binary 'I&{;\-H\\','wp-includes/blocks/site-logo/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\\\'sa\ \!=૖',_binary '%\D|:=K\懚;\?\\Ԕ{Mی','',0,'?'),(_binary '\=`\:\x~\','wp-includes/blocks/site-logo/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',#D$\Qr`\\\',_binary '\x\d\\iޠ!!ȗ+C\0\֑G\','',0,'?'),(_binary '<eJ\\5}\j','wp-includes/blocks/site-logo/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F̩Gv\\\\Y',_binary '\/7\\Eؼ\'S]j\A>6 \]mqn=','',0,'?'),(_binary '謤j\\,\\\\=>','wp-includes/blocks/site-logo/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\VQqo\\\E',_binary '\\r=ZaX\7\/j[\@\Ly','',0,'?'),(_binary '7\Y|7^\Z\\Vq','wp-includes/blocks/site-logo/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\\we`|My\n	',_binary '9;.E:X\=U\"?Dz(}{_a','',0,'?'),(_binary 'v\\q?\0\{\\=ŭe','wp-includes/blocks/site-logo/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\RdaĈ\\).xu',_binary '%D\E[4\ӤN\k?rAtEH\uD\','',0,'?'),(_binary '  \\g\\%\!','wp-includes/blocks/site-logo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' j\d\\\)Ì',_binary 'P/م;\\Z\;SnD=#kF$	%7','',0,'?'),(_binary 'wZ\\kFD9\\\h','wp-includes/blocks/site-tagline/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sb_{~\1X.u\b\',_binary 'g`鵨{\\?D#h=1\','',0,'?'),(_binary '\@Pw\y\\\3Ks','wp-includes/blocks/site-tagline/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\Fهs\[mH',_binary 'B\n×\ȹF)|6=9G>n\`u\Z','',0,'?'),(_binary '\n\\\#\\x|]','wp-includes/blocks/site-tagline/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',=SPE\ҧ',_binary 'ʈ\	ؿߥ~E\k,f\fR','',0,'?'),(_binary '\v\K:\ZF','wp-includes/blocks/site-tagline/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\Fهs\[mH',_binary 'B\n×\ȹF)|6=9G>n\`u\Z','',0,'?'),(_binary 'S7\zǫW\~\2','wp-includes/blocks/site-tagline/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',=SPE\ҧ',_binary 'ʈ\	ؿߥ~E\k,f\fR','',0,'?'),(_binary 'ʜ\\\"\\z@*>\\Z','wp-includes/blocks/site-tagline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2oH\"ϵ8\zw ',_binary 'h\\\9\DP\"\\ϑ\hff%','',0,'?'),(_binary 'hOT,$\\(\\\\\','wp-includes/blocks/site-title/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\'\\w\-[C\',_binary 'u\V\nF\}{\\WbI:;a\\\\\g','',0,'?'),(_binary 'n?\\<}rm\'\eq c','wp-includes/blocks/site-title/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u{(\)J\\R\\\',_binary 'y]\\\3;Zv\D(&|7\\cz\'\','',0,'?'),(_binary 'EH!h<y','wp-includes/blocks/site-title/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"X\"OK\9\0',_binary '}	\k_[3\?_\Fx\a\','',0,'?'),(_binary '\"\\\ۯ67?','wp-includes/blocks/site-title/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u{(\)J\\R\\\',_binary 'y]\\\3;Zv\D(&|7\\cz\'\','',0,'?'),(_binary '\\\4~^U1Ex\','wp-includes/blocks/site-title/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"X\"OK\9\0',_binary '}	\k_[3\?_\Fx\a\','',0,'?'),(_binary '7oj@\\J C\ȿ','wp-includes/blocks/site-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J~\\\e\nǀ\_',_binary '&\t.\"\-\J*;\0cv\\χ6{','',0,'?'),(_binary 'L\\r\%\\{','wp-includes/blocks/social-link/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M58p9\\_uCZ',_binary 'D\-{A>&u\\%2 \h\L','',0,'?'),(_binary '\vr@{\c{','wp-includes/blocks/social-link/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\np\\χ}\.r',_binary '\^\\Ō=\0\էɎكJRۆ\\u','',0,'?'),(_binary '\\a0P@\a\\x-','wp-includes/blocks/social-link/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j;\\G24',_binary 'AN8L{\c\\#\%*\K\\','',0,'?'),(_binary '\ڸP\\ֺb','wp-includes/blocks/social-link/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=O!\J$\\ϓT;',_binary '%g\7\Bt\\![\\x\Bf\x\H','',0,'?'),(_binary '\JH6KF\p~','wp-includes/blocks/social-link/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\\\_)~a%',_binary 'X\\ç}u\%3+ahxm[p_H\','',0,'?'),(_binary 'K>^[PF\1h:','wp-includes/blocks/social-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(Gѻx\zT@\"\',_binary 'N\<Ě]\r\$\ n\\ѝ\_O\\d\','',0,'?'),(_binary 's\\\\\\v ','wp-includes/blocks/social-links/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\KPOatݚ',_binary 'X9q\LHUNI۱\uqkRt\\','',0,'?'),(_binary '\57D\;TkC','wp-includes/blocks/social-links/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V[z\\hTޣ\.<',_binary ':{\מD,u\x]r@;\\\^=\p','',0,'?'),(_binary 'm)\r\\aHE','wp-includes/blocks/social-links/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\'[\dQ\rh\"',_binary '\1S\`<\\7u\\Z@|v\q\_\','',0,'?'),(_binary 'r\\&E\\eDq','wp-includes/blocks/social-links/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\q\	Ɍѷ40',_binary '\\ 0w8\1\n/\/:x\0].\','',0,'?'),(_binary '\n\	6\\4R\9','wp-includes/blocks/social-links/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DĀrAWZq);C~\',_binary '.VDt\˴\r|$[mw\N[.lU','',0,'?'),(_binary '}l\8\\\\;\\\~','wp-includes/blocks/social-links/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\_r\\X\\\\\~c',_binary 'T\\>0\"S V:ڋ\t2AEx','',0,'?'),(_binary '{Z\\V\\\$','wp-includes/blocks/social-links/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ϟ\r>yQ:3r',_binary '\C\\ln\6\±f\\\j\lw^\bLZ','',0,'?'),(_binary 'gӁ\\"}H\\,\d\','wp-includes/blocks/social-links/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qwa\S~S(r\]',_binary '⍒\"\\\N\&\'\\1\"\=\\ː\\Z','',0,'?'),(_binary '\\Z\I\\\','wp-includes/blocks/social-links/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\riX\t^۱b\t',_binary '\#\Z\	Y\ڲ=\餤3\nD5@\8p','',0,'?'),(_binary '\"K6^4V}','wp-includes/blocks/spacer/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6f%c\\(r}(\I\',_binary '\[\0ՉZ\ō\\:\\Wˆ\|`\	\y\r\','',0,'?'),(_binary '\\ꔕTs\r%LJ\M','wp-includes/blocks/spacer/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')vwAr\4֥\\',_binary 'aʴ\-%M\'Sm\]s\\\Z\\0C-','',0,'?'),(_binary 'J;<\\C{߫N','wp-includes/blocks/spacer/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'лB\\\\\>eX',_binary '-ӡnڲyqqx-j!p\B٠)XT4VN[','',0,'?'),(_binary 'u)z\Z\hL\P|','wp-includes/blocks/spacer/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')vwAr\4֥\\',_binary 'aʴ\-%M\'Sm\]s\\\Z\\0C-','',0,'?'),(_binary '>[ g3d','wp-includes/blocks/spacer/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'лB\\\\\>eX',_binary '-ӡnڲyqqx-j!p\B٠)XT4VN[','',0,'?'),(_binary ',Ip\\U\w\b\A@#','wp-includes/blocks/spacer/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\SU<N\BM',_binary 'JD$\֎]VNuƒδoBi\\W\_','',0,'?'),(_binary 'Ət\Z\\o+\\ش','wp-includes/blocks/spacer/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\k\\k3z\\U)\',_binary 'u2T\\z\"\\-g&]\V\j$O>','',0,'?'),(_binary 'ܰ\\_~h	sc','wp-includes/blocks/spacer/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\SU<N\BM',_binary 'JD$\֎]VNuƒδoBi\\W\_','',0,'?'),(_binary '\"\n\\\4j\SË','wp-includes/blocks/spacer/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\k\\k3z\\U)\',_binary 'u2T\\z\"\\-g&]\V\j$O>','',0,'?'),(_binary '^\u[\p}`B\W1','wp-includes/blocks/table/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\u\R<\]\',_binary '\r\V\P\%=w\Z\J?>w\\w#߸SN\\','',0,'?'),(_binary '\ÇJVW]I','wp-includes/blocks/table/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ex\Q]rYTO;72',_binary 'c+A\~׃\s\ӈ\{SR\WVN\^{%l','',0,'?'),(_binary ';\2\yT\W\Ksa','wp-includes/blocks/table/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S0\/0\7\\\\',_binary 'TH\'~!)\8E\	\\nP%Zy\\8\@','',0,'?'),(_binary '\n}\\'٩B39:','wp-includes/blocks/table/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\@\Z\l\n\y6<',_binary 'wd2S\'~\Zq\\\\(SMj!~eJ\'\','',0,'?'),(_binary '+F4\\n\q\"]','wp-includes/blocks/table/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\|\>\\¾7tU',_binary 'U\PS!	\\\\z\Z\Lruw\U\','',0,'?'),(_binary '\-\'fߕ?X:4\r!','wp-includes/blocks/table/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g> ]\M:h\\0',_binary '\\\06\;\Ii3`6\4=b','',0,'?'),(_binary 't\\0a\\_\'W\','wp-includes/blocks/table/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\۰&R1W6zz\X\\',_binary '/\\jʆjA\<9?ނ)w2h','',0,'?'),(_binary '\(T/Ie\vB','wp-includes/blocks/table/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g> ]\M:h\\0',_binary '\\\06\;\Ii3`6\4=b','',0,'?'),(_binary '\э\o(Httx.','wp-includes/blocks/table/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\۰&R1W6zz\X\\',_binary '/\\jʆjA\<9?ނ)w2h','',0,'?'),(_binary '\\myvH\\̍\\','wp-includes/blocks/table/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\V\Dq$a',_binary '\VQ8#\3m.6\\-\!Pp:1Kj\','',0,'?'),(_binary '\B+y\0xa$','wp-includes/blocks/table/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ij\\\/tD=',_binary '6\rO?ᅡIQ@Lv^\\\7L6ƾ ','',0,'?'),(_binary '_Q\|\]\\\`\Z','wp-includes/blocks/table/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\V\Dq$a',_binary '\VQ8#\3m.6\\-\!Pp:1Kj\','',0,'?'),(_binary '4\Zs\.]\\*','wp-includes/blocks/table/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ij\\\/tD=',_binary '6\rO?ᅡIQ@Lv^\\\7L6ƾ ','',0,'?'),(_binary '\K|H\#\[x\','wp-includes/blocks/tag-cloud/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lt\e\"c5nY',_binary 'd*q5y9\\\]\e=1\"񫤦\\r','',0,'?'),(_binary '4qEyVS/\\o}','wp-includes/blocks/tag-cloud/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uo\m\Bp\ZD\\',_binary 'p9/PaƅQDbދIǺ6\\4\0!','',0,'?'),(_binary 'e0\8\\/;t','wp-includes/blocks/tag-cloud/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v~ySl<\\'\v',_binary 'T\\I%B\\şq$S+\\f2','',0,'?'),(_binary 'QCȧ$9B)M','wp-includes/blocks/tag-cloud/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0 ė`sYi\\',_binary '\\8쓴\ǖA+\0LD9\\\"%\9\nv\','',0,'?'),(_binary 'E4\\D\'BI\\_#s','wp-includes/blocks/tag-cloud/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<i8L\?',_binary '߫-\\"\-r\Gs\]~\㿷s','',0,'?'),(_binary 'u\:\z2DQ\\4','wp-includes/blocks/tag-cloud.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sd/s\O\\CpQ:',_binary 'rW\,3\"x<\!_*鼯\SǱ\\\_\','',0,'?'),(_binary 'w\Ջ\\\G\&A','wp-includes/blocks/template-part/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\!kk nW',_binary '\\\\re\~$\\\"t\','',0,'?'),(_binary '>%\\\\H','wp-includes/blocks/template-part/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\N\5vsa\Hh',_binary 'ƞ$VhK\\'\'\38\"\s=b\4Ŀ;\IUE','',0,'?'),(_binary '6lLX/\\H\3X=E','wp-includes/blocks/template-part/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\|\ۿ2',_binary '\æ\\\V\\\\\\\cU%\\'~\\','',0,'?'),(_binary '8\p>ĉ\+(','wp-includes/blocks/template-part/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\7\ZKT8f\{',_binary '<\\|\\'鏶\=^\J\WM8ׁ\\\<\','',0,'?'),(_binary 'p\\t@\\CF','wp-includes/blocks/template-part/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I\s\\yν\',_binary '$tE\h)pu˞ꨂ\ \\>@\"','',0,'?'),(_binary '\\l/S	\ʨz','wp-includes/blocks/template-part/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U{\9eMz+dz&e2',_binary '\ip=] \,Ǟ8aktr\__h\>','',0,'?'),(_binary '\\\L\\\\rni','wp-includes/blocks/template-part/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"/\hOk@ޤ',_binary '\%X仍(Kb\6q\F*F30]h','',0,'?'),(_binary '9V#}X<\\\n[R','wp-includes/blocks/template-part/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U{\9eMz+dz&e2',_binary '\ip=] \,Ǟ8aktr\__h\>','',0,'?'),(_binary '\mዞj\\W\Bv|','wp-includes/blocks/template-part/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"/\hOk@ޤ',_binary '\%X仍(Kb\6q\F*F30]h','',0,'?'),(_binary 'm\a#$s\mx\\Q','wp-includes/blocks/template-part.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QE\n\\x\\bE]p',_binary '@n\rf˂\ntϯu܊pF\\\\cQ','',0,'?'),(_binary '\wtz\\\\	','wp-includes/blocks/term-description/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\F]\\֏\=',_binary '\\hQ=\YO^\\G\\h\zh ','',0,'?'),(_binary '\2P&zZ.\ۍ','wp-includes/blocks/term-description.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s0Q\!/u',_binary 'h\yaG\JqnU0\\$\4v00\','',0,'?'),(_binary '\6M͓\\)̻','wp-includes/blocks/text-columns/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\L\^^\\JWz\Z',_binary '\o[.7~Cm*\\-l\=\BP5-IL','',0,'?'),(_binary '\ \\i\\\x\\(0\','wp-includes/blocks/text-columns/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.%\Q\ʯvv~\Z,',_binary '}òӳ\lV\_\\\ g\$q#3	\ǹ\\','',0,'?'),(_binary 'ޚ\ꧭ\߅\"gс<Nr','wp-includes/blocks/text-columns/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\w\\`}\N\nX',_binary 't!\\l`|*^\0	\l$C\;\','',0,'?'),(_binary '\$\\\\Ova8\%','wp-includes/blocks/text-columns/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.%\Q\ʯvv~\Z,',_binary '}òӳ\lV\_\\\ g\$q#3	\ǹ\\','',0,'?'),(_binary '\:\n\\yˌ\"4','wp-includes/blocks/text-columns/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\w\\`}\N\nX',_binary 't!\\l`|*^\0	\l$C\;\','',0,'?'),(_binary '\\rms\0@\=[\','wp-includes/blocks/text-columns/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4N\'\_\\|;\0',_binary 'l\'\V\\~#RvE\.%~A\Է,	','',0,'?'),(_binary 'u\\k6O>\&W','wp-includes/blocks/text-columns/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c^\*\wG㐾Q\',_binary '+\\\1{*C\G+\\J\\\Lv','',0,'?'),(_binary 'q\Z\0=s\r\\\r\','wp-includes/blocks/text-columns/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{CeN|\sz<\\',_binary 'NG\\y\\	\y\*~ڰ|g=\\\\\','',0,'?'),(_binary '\"\r↻7l~\\˝A\','wp-includes/blocks/text-columns/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\$6Eɫ8\y',_binary '\\\{1EH=F\'ֱ\\L\=t\0X\','',0,'?'),(_binary '=\\Ө\\0E\\','wp-includes/blocks/verse/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\&˳\0&ǫ\',_binary '\LԣW>\zl\f{cn9\\	\\Nh\','',0,'?'),(_binary '`Bd3\ C\j3\n','wp-includes/blocks/verse/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AX߁\\\`j\\\',_binary '%_ҷ74\w\'\\\G\&dr#\\x','',0,'?'),(_binary 'ԻqE\{\\\n','wp-includes/blocks/verse/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\\VqY\n',_binary 'MbO<W\'8!\AS\\r\G_n0s\','',0,'?'),(_binary '\<\\)\"\vY4','wp-includes/blocks/verse/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AX߁\\\`j\\\',_binary '%_ҷ74\w\'\\\G\&dr#\\x','',0,'?'),(_binary '/>\\(\\3','wp-includes/blocks/verse/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\\VqY\n',_binary 'MbO<W\'8!\AS\\r\G_n0s\','',0,'?'),(_binary 'ԛ\a\\tr','wp-includes/blocks/video/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɖ!\}\\Mv\\\^\',_binary ' \\Z\Z\|=G&;\\\\I\\\9-)l','',0,'?'),(_binary '=[:\r&\F\\E','wp-includes/blocks/video/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\K\\\)\nH٣',_binary '@\|G7hfAٰ9\8~0\Ț','',0,'?'),(_binary '(\\Ϲ\ز\\\','wp-includes/blocks/video/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,V\%\ξ\]',_binary 'S*\q$\2x\e\߹\<e{=#4\','',0,'?'),(_binary ']\4d9\C\<s3','wp-includes/blocks/video/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!?tv\\F\\&\9\',_binary 'r\\v\b&\?\\~9r D%\7\W','',0,'?'),(_binary '\"U\F~B.\\S','wp-includes/blocks/video/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gv\B\pH\=',_binary '\\,TD]\\ BM\6ꗎ\5Q\','',0,'?'),(_binary '\\\[s&iu)n','wp-includes/blocks/video/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>h\'ǰ7/\i\ \',_binary '9Q\\H\j\jHby~h)cз\B4	','',0,'?'),(_binary 'ˆ]g1{[	pe','wp-includes/blocks/video/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/cOA\\q\\a',_binary '\\\xѭ\ZV\Psbs҂\υl(A','',0,'?'),(_binary 't\\.!h\t%h\','wp-includes/blocks/video/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>h\'ǰ7/\i\ \',_binary '9Q\\H\j\jHby~h)cз\B4	','',0,'?'),(_binary 'kE\\nfϋߟ\\'qb','wp-includes/blocks/video/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/cOA\\q\\a',_binary '\\\xѭ\ZV\Psbs҂\υl(A','',0,'?'),(_binary 'U4\\Nb<#\\_','wp-includes/blocks/video/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=9A?Uso\4',_binary '\\1ikۉw{\t+2o\\F\\[\Z','',0,'?'),(_binary '\ͨ޹\0Ɂ䷑\','wp-includes/blocks/video/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o^T\\\+RZ1',_binary 'ޕG\\N\ Z\\W\}\\^5}~U6v','',0,'?'),(_binary '7FW\\m!wSZ=','wp-includes/blocks/video/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=9A?Uso\4',_binary '\\1ikۉw{\t+2o\\F\\[\Z','',0,'?'),(_binary '\0\K\\%5,\$ˣ','wp-includes/blocks/video/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o^T\\\+RZ1',_binary 'ޕG\\N\ Z\\W\}\\^5}~U6v','',0,'?'),(_binary '\p\\6ɨZL','wp-includes/blocks/widget-group/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`#\\#	\9\',_binary '\찁+7!\^\a(NlqEÊ\Os!Φ','',0,'?'),(_binary '<͐n\oz#\?:','wp-includes/blocks/widget-group.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's~S#ԋ\\eB3\_',_binary 'Hlq|\0E54\|{|\n\\#\\F\D|\r','',0,'?'),(_binary 'dAuh\\041\','wp-includes/blocks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NVU#˟E\r',_binary 'T\2Ɗ?3S0Tjx\!{wCr','',0,'?'),(_binary '\>s\lWD7\M','wp-includes/bookmark-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7Lh9xcX\',_binary 'S =\'	o\<U#\\\\"XX\','',0,'?'),(_binary '\0>#\\z(','wp-includes/bookmark.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';.h\󑜪;tA\k',_binary '@!9Yc*\\<:ﭕrw\שD','',0,'?'),(_binary '(WQ=3\\y\\b6','wp-includes/cache-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?Iq_\P\$ӄ',_binary '\\]4\'\\9\\wE\J\J\rnh\','',0,'?'),(_binary 'ǅ9\9:\\Z','wp-includes/cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\VOyDv\ !',_binary '{\d\\<>wbSq\B\\\\','',0,'?'),(_binary '\2G?_\\\\\-B','wp-includes/canonical.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Go<\ݏ',_binary '1\r\eɓ\\\Y宒^zՒ=F\1','',0,'?'),(_binary '\\YC\\ooR\亞','wp-includes/capabilities.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"#o\\\yHHb',_binary '+aغ͉\ғ\2<\K\e\'5ޙa','',0,'?'),(_binary 'j\I\\\<꟟iU','wp-includes/category-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ۻ\Q\#2\\[',_binary 'z;\,T\3cuv\iedW2\J71','',0,'?'),(_binary 'D\\5\n\'\\\\~W','wp-includes/category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`\\k3wh\\k͔',_binary 'G\>F|59\~q|\n&\0\R	l\','',0,'?'),(_binary 'mD\Tms\A}','wp-includes/certificates/ca-bundle.crt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UC%Pʅ\$\p\',_binary '\<eNfFKF\o\-Y\\\\SlU','',0,'?'),(_binary '\J\\y0m\`\/','wp-includes/class-IXR.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\C`qx\',_binary ']\\\z\pqN\"CKW\\鴛c\M','',0,'?'),(_binary ':<$\0,w\"&e({','wp-includes/class-feed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>yܫ]\\T',_binary '8\\j2\y\N!qʩp\\t\0A\2\\Y','',0,'?'),(_binary '!\@|4n\','wp-includes/class-http.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+1ԩI,B%G\',_binary '^\&_\\n\V\y\&96$c\\U\\rn	h\t\n','',0,'?'),(_binary '\&\Zh\$Éo','wp-includes/class-json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kE\Z\[Z䰱',_binary '\D\\t5\\^	σ72\7\{','',0,'?'),(_binary '\E\\\Q?\\	(\','wp-includes/class-oembed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j,;\Z3x\\\',_binary '\\0v\!vv7\H\lVd\i\'K\','',0,'?'),(_binary '	QW\~-\\0d\','wp-includes/class-phpass.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z\\8ؾO',_binary '5\{dp#d\\3x`\J4j~p','',0,'?'),(_binary '\8ڧs}\\ն\Ni','wp-includes/class-phpmailer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\F!; 2󱻱4\&',_binary 'G\ZG\\5_ܚ\XS[W\S:9p@\?','',0,'?'),(_binary '\"\\\\u>1\7','wp-includes/class-pop3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~\\\kX_\',_binary '*,\\d\W̅\Z)`9N\Q@J5h&G','',0,'?'),(_binary '\\*\7\r\\?\','wp-includes/class-requests.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=n\L\\jdBS;S?',_binary 'D;U\\\Q&G\Uκ\\rp-','',0,'?'),(_binary '\\\ Iѻ\,','wp-includes/class-simplepie.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H\Gظ\',_binary '\\*Jg\<\9\O\-[CcVl\ߝ','',0,'?'),(_binary '\Κ,\Qagl\\Z','wp-includes/class-smtp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.斚aq\ݓϠ',_binary 'B)HJڐ\Rps\ \	+\'8k_','',0,'?'),(_binary 'e\__\%\\x\','wp-includes/class-snoopy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[PQ\IP4!\',_binary '+\	\\uzRW	QW|\\5\ j[;U|','',0,'?'),(_binary ')ũ\2[	\4_a','wp-includes/class-walker-category-dropdown.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6l\\\M\'\0X]',_binary 'ʊ8v>b\CP Ԇ\%\'û\\Z\iΪ','',0,'?'),(_binary 'c\nxԺ|\','wp-includes/class-walker-category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\\̈\\nr$<	)',_binary 'VQsxKI\Ny{xT\\A)\%֖','',0,'?'),(_binary 'KK+\2	aeZe','wp-includes/class-walker-comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7%\v\O\\@',_binary '\\\NQ\\\#\\0\\:`9\wt\\','',0,'?'),(_binary '\\\\(觨:pR\/','wp-includes/class-walker-nav-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{J\\~\l&',_binary '\]t[OcQf]@lӠ\n,\ff5\0','',0,'?'),(_binary 'J\\rӷG>\','wp-includes/class-walker-page-dropdown.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\\\\L	\Q~OG\',_binary '#	\\\\'\5hH^쎫f=Rd&&9Z\2','',0,'?'),(_binary '5S{\TƁ\e/\','wp-includes/class-walker-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M\\V\GBϒso',_binary '\"F|a\{Vk\\.(n|m\f{','',0,'?'),(_binary 'ֶ\\9؞fpo3t','wp-includes/class-wp-admin-bar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\\\\|T%BW\',_binary '\t\n;`S\b\dl$\\\\'hém4\^c6','',0,'?'),(_binary 'ֻE\n<B[\,','wp-includes/class-wp-ajax-response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o6\)Q\"Sσt\.H\',_binary '[$g\nM!^\\\\9tt\\>Z\','',0,'?'),(_binary '\?\0\\l\.','wp-includes/class-wp-application-passwords.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ɉn}i.uĝ\',_binary 'aJB҆/\'\7͙mbށ\?\"C\','',0,'?'),(_binary '-o\\\mq\\0X','wp-includes/class-wp-block-editor-context.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\\i\3',_binary '\]c\׭с\\&j̈́\\0j\߹\','',0,'?'),(_binary 'yёcj!\\\'','wp-includes/class-wp-block-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ϴ<zp.\rű',_binary '\47׾<\\M\G\AEd\e\6V\!\','',0,'?'),(_binary 'Z\)_\w\\'$X','wp-includes/class-wp-block-parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\}\C1gGr*\ \7',_binary '&t\]Y`쿨\9}\\܇W-','',0,'?'),(_binary '\\%\\?>\\e8','wp-includes/class-wp-block-pattern-categories-registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GQ{.W;ye',_binary '\CCmq\\'V&I/&\w\Zn챟{n\','',0,'?'),(_binary '\\uy؟uV@/\','wp-includes/class-wp-block-patterns-registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':6Ȧ\eV',_binary 'ihQt\\U\r\\"5\\\\\l\}\','',0,'?'),(_binary '@k&X\Itǜ','wp-includes/class-wp-block-styles-registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\LE}^',_binary '\\$\.\ZeB\(1\\3\w\|@X\\62O','',0,'?'),(_binary 'r\3\e\\\\,Sq','wp-includes/class-wp-block-supports.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D긪\\4؈jf',_binary 'S)\\\\ \ar&1\r\3\7mvK','',0,'?'),(_binary '8u7\h@jx\\"5','wp-includes/class-wp-block-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ԃ̼o\\v\t~Ҹ\a',_binary 'D\M/,٧ޤ+\\\	?Np\\','',0,'?'),(_binary '\\4\l!r\؄\\\','wp-includes/class-wp-block-type-registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\P0Xo\\\[',_binary '	OmR#\\\%$6\nLlt\e\#cRiE(U','',0,'?'),(_binary '\gزh/ḮON','wp-includes/class-wp-block-type.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\'\nE\a\\>\|',_binary 's\l\[*hSViײX\T@m*I)\h','',0,'?'),(_binary '2Y \oq&Z\','wp-includes/class-wp-block.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\-ݽlo\\',_binary '	\Zk\&Nc\xn\-Ȉᓩp\\5\r\nJ','',0,'?'),(_binary '\nӛIQED	\\','wp-includes/class-wp-comment-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\WX\й3}8\c\r\\2',_binary 'ks\\`\?ג\j\n\o\Y\\V','',0,'?'),(_binary 'T\r\\\~\W]\','wp-includes/class-wp-comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J0nN.yƪb\',_binary '\}u\0tE\n\&\yt2\\B\\\','',0,'?'),(_binary 'ȍP\ \3\\\\n\','wp-includes/class-wp-customize-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\q\hȻ\~\\z',_binary '\s\kdv܅\|T\7\\\\O/aS','',0,'?'),(_binary 'h\ZOhl\_\Lm/\','wp-includes/class-wp-customize-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rj\r]\0\ޚ\2',_binary '\6UNûs+\H]\g\_\\EjJ4','',0,'?'),(_binary '`U2mdW','wp-includes/class-wp-customize-nav-menus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GQ|\W\\dvqWSe',_binary '\@je<X+\{\Z\6(xhs!1Qc','',0,'?'),(_binary '\rҧxOz\\\zh','wp-includes/class-wp-customize-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jϊ\/\@\[&',_binary '%7;-k6\)fH?@\@q','',0,'?'),(_binary '\-x\(\EoI=\','wp-includes/class-wp-customize-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\I4\p\?\',_binary '}WY؊x-?Tqn&0\i','',0,'?'),(_binary 'fu3\nM\\}6*0\','wp-includes/class-wp-customize-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\KN\'\ݦ8p\\',_binary '\\\\Gx9|\\Z\Z`i!E/n5E:A/1\','',0,'?'),(_binary '\Jёe\\rXd\$\','wp-includes/class-wp-customize-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\\=)F\%`',_binary '\\ѦC8C9V8k٩\\"Ӌ\f^','',0,'?'),(_binary '\\Za9Uzն','wp-includes/class-wp-date-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\=+H\K\4\',_binary 'ٺSVI\*\\ELT5[\B%\\=\n\\','',0,'?'),(_binary 'jgs\66\$8*E\','wp-includes/class-wp-dependency.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\NV}\b.\'\5m',_binary '\[\4M,\4ܓ\xwBB̕=Bg}I\l','',0,'?'),(_binary 'ɱ%a{Zj	%','wp-includes/class-wp-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	e3pN_on0\\}\',_binary '\ZxP\\\\\x','',0,'?'),(_binary '5`\]\\ͭi\0\\\ZJT','wp-includes/class-wp-embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\:3\\',_binary '\n=X\F\\ޙV_	67\j\n4\p','',0,'?'),(_binary '\k{\&\\x\n','wp-includes/class-wp-error.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\ &\0?&c~',_binary 'GbM[G&Jr\FE\\1\r\sL,t\(\W','',0,'?'),(_binary '0x\h\ͭK3\T','wp-includes/class-wp-fatal-error-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\tGM[@̻/f',_binary '\\5\$\z@R\ncd\w\','',0,'?'),(_binary 'O =(:\\<\	\1F','wp-includes/class-wp-feed-cache-transient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\?^>\O\',_binary ':\;h\!xE\zP+dV0D','',0,'?'),(_binary '֌\q\óX[\\\','wp-includes/class-wp-feed-cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\ط?h\"\%c(\0',_binary 'lh\>6\<Z,2\\1*!cm;z~\܏\4\','',0,'?'),(_binary '#Dń\5%\','wp-includes/class-wp-hook.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	3\\\\^h7P,',_binary ')Ҵ^WU!\\h\ r@r\s=\\n','',0,'?'),(_binary '&B5V\AUU,\','wp-includes/class-wp-http-cookie.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'Ϧ\#qr\L?\\',_binary '=\Y\\l87Z\\/:.s\\lApw\0','',0,'?'),(_binary '\\\#iJ\H?\@','wp-includes/class-wp-http-curl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\<\LH(b$\',_binary '}\'\rJd{\Ȍ\'0\5v+g\l.%','',0,'?'),(_binary '\MO,\\s\\\\r\\','wp-includes/class-wp-http-encoding.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',ꀭǗ-y',_binary '	=Skl##\<@\_5ӐMC4G7','',0,'?'),(_binary '\\uX\ݼ#-\\','wp-includes/class-wp-http-ixr-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2k\\\E}a\',_binary 'p.N @\Ԗ*g\ï\K>:\','',0,'?'),(_binary 'gf\1۶\y\;_','wp-includes/class-wp-http-proxy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D:\ifο\4',_binary 'e\Q\39MEE>pWCRħ_-','',0,'?'),(_binary '\@M]\"iNJ','wp-includes/class-wp-http-requests-hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\*_R\\!\\<',_binary '\JmJR(\~\\1\(nzWtZ! {','',0,'?'),(_binary 'B y\w+\\|t\','wp-includes/class-wp-http-requests-response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\OTP^\rbb!d\',_binary '\Z\\\[Щǩ{S.Ws:\e\\"#z[N','',0,'?'),(_binary '\ڷt\gZgE\','wp-includes/class-wp-http-response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4y\Kߕ',_binary '\Ι	\\[\{\0If\\0t\v\n9dx\','',0,'?'),(_binary '߰Sh[۳\','wp-includes/class-wp-http-streams.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9uV\\',_binary 'ytSi\Z2(\\we,T','',0,'?'),(_binary 's	ؤ\','wp-includes/class-wp-http.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',|\~	t\W',_binary '\g/\H\"䃛\\\X\ȍEZů\G','',0,'?'),(_binary '>\X\rb\\ڟ$W','wp-includes/class-wp-image-editor-gd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dJjK:|i^\r\\',_binary '2[<^̰_Iy\&j\s\l|c:?5','',0,'?'),(_binary '\^bR\SI\!\?','wp-includes/class-wp-image-editor-imagick.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\\su \E',_binary '\&\\?c\n穊i\p\#\'/','',0,'?'),(_binary 'T\n\e.(','wp-includes/class-wp-image-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RԴssz*\X',_binary '\\M\\2ȰcֲPj!%\\OV*\','',0,'?'),(_binary '`Sk\\7Tt\vX','wp-includes/class-wp-list-util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z+vn\"u\',_binary '\\එ+Dch9\\\]-8Tq9$\\','',0,'?'),(_binary 'Lz\\Z\#<','wp-includes/class-wp-locale-switcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\"\?\Fw,\T\\',_binary '!@B\<6ꁒ\Ku\\Pm=+/c_\','',0,'?'),(_binary '1l< t~LUw\','wp-includes/class-wp-locale.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SP\<\#\\\0\\':',_binary 'D\n]AWEHOH@hAD}','',0,'?'),(_binary '\\"\qUy9\%Q','wp-includes/class-wp-matchesmapregex.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\d̚w$<龦q',_binary '9\l\~>S5]8\ٺɞFiJ\Z','',0,'?'),(_binary 'Gu\\\\\ʭ\','wp-includes/class-wp-meta-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hK\?\u\B\x',_binary '\풌I(\n\{{g\wGh','',0,'?'),(_binary '\Z\\Z:\\RfP\~3','wp-includes/class-wp-metadata-lazyloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I^\P\\;$\+\"\',_binary '^2\\)E>X\4:\U&\߳;\!e','',0,'?'),(_binary '\wh]á\&wM\','wp-includes/class-wp-network-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'CKe\%\٭J-ϡ\',_binary 'L\Ѭd%\ 0\\kzY,BE\*\+\,','',0,'?'),(_binary '8ܞt\\\ZwNxa\','wp-includes/class-wp-network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZMٟ:l\"pdΛ',_binary '%q2\ӐF\\JȑR~҃i\`;\>','',0,'?'),(_binary '\U\\}\B\	Js','wp-includes/class-wp-object-cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n̩$/V',_binary '\O\Zm7l\W\2\m_/2\$','',0,'?'),(_binary 'P\@\;b<\nc\','wp-includes/class-wp-oembed-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '͕\hap\^\f',_binary 'LzA{@g\0\\{Γؼqx҆X','',0,'?'),(_binary '\CMp<E\','wp-includes/class-wp-oembed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd(3\\r6\/D\\\=',_binary 'K?]\\	\2ǒȡrT2\A\\N','',0,'?'),(_binary '\@\AO=	\yA','wp-includes/class-wp-paused-extensions-storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\ʤO.LX',_binary 'UY\\ޖ\\\nj6h́bYn\\5\\','',0,'?'),(_binary '~V\Xa]7p|R','wp-includes/class-wp-post-type.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\'㯉U\<wx\',_binary '\\\\\\K{I\\\O\:3\cv\\','',0,'?'),(_binary '~ReOXf2\`','wp-includes/class-wp-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;@A\\[oh́F\',_binary 'Bms\\\\\\AKE)(|-c\\ϡ|\\d','',0,'?'),(_binary '\-h\n\r`\ýەC/s','wp-includes/class-wp-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.c7Kƛ\\ޞ',_binary '%<\LUid\\&\5\\ \o\X:)','',0,'?'),(_binary 't/\Ji6WX\\','wp-includes/class-wp-recovery-mode-cookie-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\-*xrf\',_binary '\8-\H0F\yG\\\ǋ\','',0,'?'),(_binary '\\m|\yb\','wp-includes/class-wp-recovery-mode-email-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ \Gu\n\Et',_binary 'Y\ѾLP\\=NL\*Π\T9\I(','',0,'?'),(_binary 'y&E\zݜZy׺ڲ','wp-includes/class-wp-recovery-mode-key-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9Al\\%<C',_binary '\{\Tg}E^\[Fe.\','',0,'?'),(_binary 'qL\\ILc','wp-includes/class-wp-recovery-mode-link-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\}f/c\nx5',_binary '\k\\\\\ޙ(Zt\M\0\\;t\r','',0,'?'),(_binary '\`\,}\D\\@','wp-includes/class-wp-recovery-mode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \oxц\\<N',_binary '4>\r	jsdqmHl\7~\\','',0,'?'),(_binary '\M\Z\H?ͲZ','wp-includes/class-wp-rewrite.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Ej\n\\HA',_binary '\U\+\ڐ9\\"D_L\\]\LE_hN\&w','',0,'?'),(_binary '\n\\f\Ӆ;{t\','wp-includes/class-wp-role.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\yH\,o:',_binary '\'}ؑ9\\\X8u\ߨ[(o\an\\','',0,'?'),(_binary 'ǀ3\<&YĆ','wp-includes/class-wp-roles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\\6*U\=9',_binary '\~f2\'l9LuV2\	y\:9','',0,'?'),(_binary '\x(ťܺ.\\Շ','wp-includes/class-wp-session-tokens.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9]\KUJW*\h=',_binary '\\4\ZQuA^ء\j򬪎$M\\0\\0','',0,'?'),(_binary '\ސq\ic=','wp-includes/class-wp-simplepie-file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\kϖх\X\',_binary '\/\'C?C\Zfb%\$=V6 \\','',0,'?'),(_binary '<.\4v\c\"`t','wp-includes/class-wp-simplepie-sanitize-kses.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0s7\^\GU\\\_',_binary '\EJ\\'{6i\|\~\c\/\l','',0,'?'),(_binary '\\W\\\=ԘHdz','wp-includes/class-wp-site-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y>e\\\)',_binary 'm\"{=/!۫Ht,^\\\s\9G','',0,'?'),(_binary 'b~5\aI@)*\','wp-includes/class-wp-site.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eoC\I\7#\n',_binary '-hʠ^\F\0?0\n%s\ibV\\\X','',0,'?'),(_binary '\\\\SՇ8;2','wp-includes/class-wp-tax-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y+\no\r/M\=',_binary 'pӺA8\:`I{j\CF\*\','',0,'?'),(_binary '~QԁŴFp\\\','wp-includes/class-wp-taxonomy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%^\\\nP.k',_binary '\1AEw\o\7A\l\r?\#m+H','',0,'?'),(_binary '\\\I0B,\hʛp','wp-includes/class-wp-term-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\+k \5\v%a',_binary '`\Rw\C\\' Ԣtm','',0,'?'),(_binary 'ݖ\'\\"|3\_t|\','wp-includes/class-wp-term.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Q5\\ׄXZ\\',_binary '}Gj)p\\\\O\7٠fݒፎ\Yp','',0,'?'),(_binary '\ǢBմ(\\\0J','wp-includes/class-wp-text-diff-renderer-inline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8l_\r\u',_binary '\פme\,\V\\9\}\\\	y\v','',0,'?'),(_binary 'J\%.\~q\l','wp-includes/class-wp-text-diff-renderer-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\g0HFuI\',_binary '\_h+\UHi\\_e	w\\6\\','',0,'?'),(_binary '\\\\;VޯnTy ','wp-includes/class-wp-theme-json-resolver.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\U-֙\"=ݎ\\',_binary '\U6#_\lY\\wcȃ7DL%','',0,'?'),(_binary 'Ѷ\\"<9޺ZXmǕ','wp-includes/class-wp-theme-json-schema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>IuQ9ce{\d-',_binary '\\D\	rssE\^9\4J','',0,'?'),(_binary '1:9,׮n\"\','wp-includes/class-wp-theme-json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n`\u\zH',_binary 'LϤ$\\;\.V\\ඣ?{M|P\x\','',0,'?'),(_binary '#\?\Gc	¯l1e','wp-includes/class-wp-theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\	)\\Bh',_binary '\s&\j\\B1B\\UA\̹','',0,'?'),(_binary '\絛zy\\>_+t','wp-includes/class-wp-user-meta-session-tokens.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8/\'\0\0vSL-G\0',_binary '\\\8\b\YB&?\6\o\\\>','',0,'?'),(_binary '9\l\ן? r\\q','wp-includes/class-wp-user-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\(\'eD{\\rF)',_binary '\ħø^|Aȏk\h\&B','',0,'?'),(_binary '|l\+F#ڟ\\\','wp-includes/class-wp-user-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\?v\\\\$',_binary 'z\\\\.t(Co\\\	\tV\','',0,'?'),(_binary 'R\\\&T	|`','wp-includes/class-wp-user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~rs\\R\lzD\|g',_binary '\n\${ZV	\\n\'\y|ϛVq᭪','',0,'?'),(_binary '\0\]a\vCY','wp-includes/class-wp-walker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B|M&T\r)i',_binary '-\\n,CO1\Og7\0\\\','',0,'?'),(_binary '{1\\"^\\\.','wp-includes/class-wp-widget-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'efp|r)\ne\\\',_binary 'r&\\\\m\pK	(\E8\:N%z\','',0,'?'),(_binary '\Djמ\8]fД_\','wp-includes/class-wp-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H?|q\T_w\}\Z0',_binary '_Z+\V)`qHyT)Je\0\g˥V','',0,'?'),(_binary 'j䱋\\%\\]','wp-includes/class-wp-xmlrpc-server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\k!?)',_binary '\ZJtVM6#\tG\7*T`	\x','',0,'?'),(_binary '$C\/9','wp-includes/class-wp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\Z\=Y\!]_\\c',_binary 'I\DUَ\\p-\kY\Q(~\6N\','',0,'?'),(_binary 'y\\Ea\\:[\0','wp-includes/class.wp-dependencies.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\aHdR\\\\<X',_binary '7`Ղ	ԍ\|U<dN֯Ӧ*rc\n\|J','',0,'?'),(_binary '\\\;~ӷR>','wp-includes/class.wp-scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/]\\Xnw\',_binary 'b\I\0=\P\	L\U[!PN\ ','',0,'?'),(_binary '9ψ[1d{\\\@','wp-includes/class.wp-styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@sE\c~\>I+%',_binary '\\\|Ϲ!`\V\\?j\&N\\A2','',0,'?'),(_binary '=k[4 =\','wp-includes/comment-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}-\z\\\)\Sܯk\',_binary 'v\A\\\<ć\\?bp0FVUf\','',0,'?'),(_binary 'S\\KK2iɈ','wp-includes/comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qV2\\\\Lӗ\',_binary '\\29^Ub:\১\\{MU\0\aZ','',0,'?'),(_binary '\_\\c9mLv\\1\','wp-includes/compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ըeyf\Q$',_binary '=\C0Gv\IƼ\\J\\)&u','',0,'?'),(_binary '\-\"D\\ʹD5a\/','wp-includes/cron.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\\jE1\yvUƊ',_binary ')\K\QӅ\Z\@\\\r\Tn\\"OZ\0\fh','',0,'?'),(_binary '\\=֬H@-i\','wp-includes/css/admin-bar-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʩ\Z\n\\	\~`\b\',_binary '<\'\1\Z3Ŷm\ܻ\?\VGEy8','',0,'?'),(_binary '\{ڭd3TXy\\7;','wp-includes/css/admin-bar-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LF`\'\ze:=\1',_binary '[\n\^2\Z\z৏8ٝ\VbHd\','',0,'?'),(_binary '\Ȇp\]4\\L\\q','wp-includes/css/admin-bar.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\.=\',_binary '\ӻ\nCP|\SM2e\DC\\Ux(\ZX\','',0,'?'),(_binary 'I\"\p\t\Q\[Z6x','wp-includes/css/admin-bar.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vx\-~S<z\Z',_binary '\U,\ZX5=\"\d<\\\,[ř\~','',0,'?'),(_binary 't8\\p̋\z{jDp','wp-includes/css/buttons-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iԝ]z~c6\\g6',_binary '\L\X橕f\\Z\tC5i\fS\(\R&=','',0,'?'),(_binary '\Ul1ȕDbmg\','wp-includes/css/buttons-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FXWDw\\ڭ\',_binary '\o\ \!Pc\0\i\F9aK\\','',0,'?'),(_binary '\;\^𩸴8c','wp-includes/css/buttons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\[\\\\\.\',_binary 'Lێ\b\\\3y\~>I\t','',0,'?'),(_binary '\з&L۽¨\VN','wp-includes/css/buttons.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'an\G\f\g\\\',_binary 'k!L4>HiAFfBReR@\W\','',0,'?'),(_binary 'F\\C?\Z\\\','wp-includes/css/customize-preview-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\މ\\ګd3',_binary '~\\'[z\{\:\\\LĀN7A	','',0,'?'),(_binary '\Ư\\0~\rjA4u','wp-includes/css/customize-preview-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\?\nZ\\d-',_binary 'Gi\rliU^\n\\rm5\\Ώۻ\\l','',0,'?'),(_binary 'gV\\\HIw\!','wp-includes/css/customize-preview.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ig`\oӏٷ1>',_binary '>kdU\\\=@R\\r\\;\','',0,'?'),(_binary '\yls\U>\<\\','wp-includes/css/customize-preview.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\b\\Sb\s\"',_binary 'ߌ\IR\\\Ĺ\ez3\QsC\Q','',0,'?'),(_binary '\\pS`\]T]D\','wp-includes/css/dashicons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',J\\/\n\R\~\',_binary 'qԡ\c\q\l5/\3$˝TGW\','',0,'?'),(_binary 'LyE\{f','wp-includes/css/dashicons.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '֍k\\Uо\3',_binary '|389&ΚG\\"#\\0̠\\;eR','',0,'?'),(_binary 'pK\b\0!(\','wp-includes/css/dist/block-directory/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӧZc`\ߡU\1',_binary '\\-tS\\\bC\u\+<\\d','',0,'?'),(_binary '2\\Zs+z\','wp-includes/css/dist/block-directory/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vxX\=ADwPn',_binary '\E>.Ec\\\\'\άsҭR:','',0,'?'),(_binary '\B\\u}L\,','wp-includes/css/dist/block-directory/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iL\\'e$',_binary '\u@Ҥ~_\\ǉ.\\"h\\b\\	','',0,'?'),(_binary 'St\ \\J\9G','wp-includes/css/dist/block-directory/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:\\t\6qA]#\\',_binary '\˃gɌ\ӣ]\5c\t\nK<*\o\5@\n','',0,'?'),(_binary '\X*^ϺR\8\','wp-includes/css/dist/block-editor/default-editor-styles-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<Lv.',_binary 'Rgu`\\\\g15?PLR\\\*f0','',0,'?'),(_binary '\\\Єj[\\'P`y','wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\7䆜~h\?',_binary '\|Ǆ\\ZD~X\\E\\)>\2\,','',0,'?'),(_binary '\\R$\GO΄\y','wp-includes/css/dist/block-editor/default-editor-styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<Lv.',_binary 'Rgu`\\\\g15?PLR\\\*f0','',0,'?'),(_binary '@\08(<:\t\#1\S','wp-includes/css/dist/block-editor/default-editor-styles.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\7䆜~h\?',_binary '\|Ǆ\\ZD~X\\E\\)>\2\,','',0,'?'),(_binary 'ډx`\9\LťM\,L','wp-includes/css/dist/block-editor/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\zy\D\\Zn\',_binary '\G1ܝ\8#H/\'E{ǚU|IrRW\9Hn\Oa','',0,'?'),(_binary '\i\\4Zl\Ѓ @','wp-includes/css/dist/block-editor/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\d):Q|]',_binary 'ڀ\0\Nl\dNO։D (v\=\E<+','',0,'?'),(_binary '\p\sZZ#\N7\e','wp-includes/css/dist/block-editor/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\lN\\ߛ Q\',_binary '\}\*\idǿ\T\N\'nh\4Ӱ8','',0,'?'),(_binary 'R\\Bpm\Z;','wp-includes/css/dist/block-editor/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ѻ\ex\r',_binary 'f8F\_ǾRVTQM;v,7m7\_\e\','',0,'?'),(_binary 'Ӥ\\ǕL\FZQ','wp-includes/css/dist/block-library/common-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\Z7\\W\{\p\`',_binary 'Dq,\\{\o{\\\\xj|\\','',0,'?'),(_binary '&~\*m\E+nX%;[O\','wp-includes/css/dist/block-library/common-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\i\\	>',_binary '\\\|pw	m\'\K\U&KO@z\','',0,'?'),(_binary '\26\6\#	S[h(\\','wp-includes/css/dist/block-library/common.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hhq1ӨM8',_binary '\ѕ\a#eG̷vDP=\ݨ:\','',0,'?'),(_binary '\\7%\̬\\&','wp-includes/css/dist/block-library/common.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ݛW\\1޼\\\U',_binary '\DKוB#?4\\\0 \\\\','',0,'?'),(_binary 'X*\\VL	_\','wp-includes/css/dist/block-library/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\\lsr\\\\	gX',_binary '>\.\s*H\%TleX]\B,\\u\\8','',0,'?'),(_binary '\\nRb\\xg','wp-includes/css/dist/block-library/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ir(\\\xG\WjHR$',_binary 'ж\'S\1ԲڍMvE1a\\'\fY\r>IRO','',0,'?'),(_binary '\̆lҘ\\\\4\,C-m','wp-includes/css/dist/block-library/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n\\\,\\+E`',_binary '\J;\'մ\S\R\g\=49 +\','',0,'?'),(_binary '[\4\\?s','wp-includes/css/dist/block-library/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '][P<\\}.\\C',_binary 'H\l2e!\"o\\\\2!iUέ','',0,'?'),(_binary '\\\JHl\"GL','wp-includes/css/dist/block-library/reset-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'if\\\\9Konb',_binary '/=DW.E\D	9&Q L\\','',0,'?'),(_binary '3_\[#g`','wp-includes/css/dist/block-library/reset-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'բ\\\B\x\<EF',_binary '*u?4\Yz\\\c\ZGBicTi\8p','',0,'?'),(_binary '2gl\bC\dM`H','wp-includes/css/dist/block-library/reset.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'if\\\\9Konb',_binary '/=DW.E\D	9&Q L\\','',0,'?'),(_binary '\z\a>`<!Ct','wp-includes/css/dist/block-library/reset.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'բ\\\B\x\<EF',_binary '*u?4\Yz\\\c\ZGBicTi\8p','',0,'?'),(_binary '\\\S\K547\S','wp-includes/css/dist/block-library/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\8a&RbC@=f',_binary '\K&uF%cze̗x+=yz','',0,'?'),(_binary '\)!)\6\>}\74','wp-includes/css/dist/block-library/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~Nؒ\!*d\\$',_binary '\\}oUP\]:\i\"\\.~\g:\\\\\r\\','',0,'?'),(_binary 'z6\\+\\\PH\rtU','wp-includes/css/dist/block-library/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\\zh^fdȈ\',_binary ' 7\qQ\\F\"?V&@~*\\\n\jV','',0,'?'),(_binary '\QF\0t\+\\\\','wp-includes/css/dist/block-library/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9*\\\H\\~\\\',_binary '|\=\3\\,K\\\>\&C)oK','',0,'?'),(_binary 'm֙7,\}\ov','wp-includes/css/dist/block-library/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P0^\܀\h\\',_binary '|R_fP+j.\\n>(HJ|_%{P\n','',0,'?'),(_binary 'Ca\s]n/\\','wp-includes/css/dist/block-library/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fӹsP֮\Oڧp',_binary 'zz\H=V.\\\\=Ֆf\O\M\T','',0,'?'),(_binary 'Ox\رc5(','wp-includes/css/dist/block-library/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vf>S\n_t\ \\',_binary 'u78oqQ~\Z\\\M\\\07l2','',0,'?'),(_binary 'm5\u\\1}\','wp-includes/css/dist/block-library/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ns	6\ٿ\y',_binary 'ɝ\\>=J\q\f>I\\\t4/\K}F\<\','',0,'?'),(_binary ';ܒscF\\!\','wp-includes/css/dist/components/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	\3Q+\\Yj',_binary 'v\\\НI\\ \/-VlqKrWNM','',0,'?'),(_binary 'V\܂0\0U`5C>','wp-includes/css/dist/components/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\F\=\\WN\',_binary '\\/իe\\z\m`\\*ER	7mO','',0,'?'),(_binary 'j^SN-O\ ','wp-includes/css/dist/components/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&\"u&\'\r',_binary '\מ!$\	\p\\\\"\.:<}\6B\	.','',0,'?'),(_binary 'M1\\/n\̖Q','wp-includes/css/dist/components/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=Ù\0E:\xZ',_binary '{j\l\M\\r	\,H]	\c\\[|d\','',0,'?'),(_binary 'D#q{ťԇb','wp-includes/css/dist/customize-widgets/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\\Ř4bE',_binary 'SG_\r!K\A9\G\kA','',0,'?'),(_binary 'l\14&y\aW','wp-includes/css/dist/customize-widgets/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rW\\\\\qJG',_binary '6\ϳsL\F\a\n\\\(=\",\\{','',0,'?'),(_binary 'z\WsW5ʈ\ )','wp-includes/css/dist/customize-widgets/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zh?\0A\_[',_binary '>\m\\W.pp\" *%','',0,'?'),(_binary '|m1\0z^m\{\','wp-includes/css/dist/customize-widgets/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ob,/\r\0\|',_binary '\_\Cw7_\\\\/Y\Lr','',0,'?'),(_binary 'Yػ甩\\*\','wp-includes/css/dist/edit-post/classic-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')k8\\\\\w',_binary ')SM\a\\\W2#K4 _J\\R\\','',0,'?'),(_binary '\\\Z78\-\\\~','wp-includes/css/dist/edit-post/classic-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K\\Z\/sݔ+\\',_binary '\gL\"\)\~iN*~U?C\\BP','',0,'?'),(_binary '@h볹3\אz2zl','wp-includes/css/dist/edit-post/classic.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q4\%TTG\)\',_binary '\G_\\|\^~\@\r#\*\VET<\','',0,'?'),(_binary '\Fճ\D~֫\Cʽ','wp-includes/css/dist/edit-post/classic.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\KkL\t\\',_binary '\<\)L!Ðj]R!)K\$','',0,'?'),(_binary '0,X\\','wp-includes/css/dist/edit-post/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$\"42W(4d',_binary 'I!\QL\i8yey_rܝ\\','',0,'?'),(_binary '\d\\%3\\Z\4_+','wp-includes/css/dist/edit-post/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=8\6u	~I\n\܊\',_binary '`1\\\T(xAy+5S\p','',0,'?'),(_binary 'RKQ\5v-	\','wp-includes/css/dist/edit-post/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k@\\\D\\\l',_binary '(\\/]\!.~wx\M\>J\(WUf\','',0,'?'),(_binary 'Kv\$TMR=','wp-includes/css/dist/edit-post/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(z\Z\yV{6!f',_binary '\]w\Z0`\Z\\j`,\','',0,'?'),(_binary 'laމ\\L\','wp-includes/css/dist/edit-site/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\O\T22\\]	',_binary 'bFaMd\\)X\=iq7^\','',0,'?'),(_binary 't}jlU)@u','wp-includes/css/dist/edit-site/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\PĲ\\\~M\\',_binary 'b[\\]Pz\6\*\&?\\'u\VJ<\','',0,'?'),(_binary '\!\h\Zɨ$\"R','wp-includes/css/dist/edit-site/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F\\\GqH\',_binary '\\A֣H=0\n|D\Ӻ:ջBԈ\F','',0,'?'),(_binary '\#nΐ\	\','wp-includes/css/dist/edit-site/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\b+򿕓|z@\',_binary 'J\\H>\ls\1\\rb=o\\\*','',0,'?'),(_binary '\\-\w=\\S','wp-includes/css/dist/edit-widgets/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\n&ă^\\_0',_binary '\\`u$2\V\]k0\H,\@1\OC92','',0,'?'),(_binary 'z|\L\F\D\','wp-includes/css/dist/edit-widgets/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Ϫ<!\Gb',_binary '\ZDK\v\%\\5\\{7|<Kg*kCRn','',0,'?'),(_binary '\<8\;p xTG','wp-includes/css/dist/edit-widgets/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	tt\FWWI\\',_binary '\\rr\\Zz&\n\\qw\EOgȻ8','',0,'?'),(_binary '\xeju\\','wp-includes/css/dist/edit-widgets/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<K@p~K\\}\\',_binary 'R\ë\\\\\nQ\\}E)V\nM','',0,'?'),(_binary 'qf\EH7\d\\\','wp-includes/css/dist/editor/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`Z\\1׬`xes',_binary '%kdc\s\\by\c_*H\?$q','',0,'?'),(_binary 'ւxRa\\ǜ@','wp-includes/css/dist/editor/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\TNOZyn\z\',_binary '{-@T\ro\nR\\8\Z?_\O>\[&3\f','',0,'?'),(_binary 'OҽPT\^4~\\B','wp-includes/css/dist/editor/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h\\1V\j*TxS',_binary '\\\%\\\"\YH0\_M\3f\\!','',0,'?'),(_binary 'cQ\i\\\\\Qv','wp-includes/css/dist/editor/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Oҕa]3w\ \',_binary '\\`\B|䙬Y籔iE\3\','',0,'?'),(_binary 'Z\R\\r(\&b:-','wp-includes/css/dist/format-library/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+\.\/\\k\\(',_binary '\N\Z	;\\rBRx\\%\%\CR<','',0,'?'),(_binary 'C\/@lY2}','wp-includes/css/dist/format-library/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<;nDNe(w',_binary '5n(6eoY\Z\]\.Pq\Ieg6v?c\sJ','',0,'?'),(_binary '\n{X%N8w\2?M4C\','wp-includes/css/dist/format-library/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '׎\Ǆ\\\(\\(i1',_binary 'QW,V\\v.	>ǖ\\^M\K','',0,'?'),(_binary '\.\z&.\1y\','wp-includes/css/dist/format-library/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/I\8):ct|',_binary '!%\\r\\kXɾF!\"7\1\\a;\j\U\"','',0,'?'),(_binary '3-\\\\f\\\n','wp-includes/css/dist/list-reusable-blocks/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+`7U\]\.[',_binary '\\N$/^ܩ\\c#T\ZѠ\\<٠\#\\'&','',0,'?'),(_binary 'r\)\\\\e\l','wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6$w~\j\\k7\\\',_binary 'ŕ	17ؕ\|x\'\\tM\t\v\W\\-','',0,'?'),(_binary 't\(iltY/','wp-includes/css/dist/list-reusable-blocks/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ħ\0&4L\w\s',_binary 'bZ\\\K~\'}ʚq-3/z\\\082K','',0,'?'),(_binary '\rx+U\\\ڜ\','wp-includes/css/dist/list-reusable-blocks/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z=T?k\sI',_binary ',\]wo\0]\'\\z1R)\Z`]0\','',0,'?'),(_binary '\^0p\\kM','wp-includes/css/dist/nux/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1#*\Z\\',_binary '\i\O5\\r-O\Z\Zrf&T\+E','',0,'?'),(_binary '{j\ɏ|n\	^<WH','wp-includes/css/dist/nux/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-hJ\à\\e]B8V',_binary '\g\D\\\c\[\*\\'}r5q1\ucL4','',0,'?'),(_binary '\2|\?]ϸ\','wp-includes/css/dist/nux/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i%	N8\\Α@$',_binary 'F/w\FX\2w\\\HV\c\n\Ϸ(l\','',0,'?'),(_binary 'Rv5W6\`\ھ\','wp-includes/css/dist/nux/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	4\\\N^@a',_binary '3Aؐ\k\p\\/mm\nF3\\TT[\py','',0,'?'),(_binary '\"(\b?\Zgs\q\','wp-includes/css/dist/reusable-blocks/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ށgky\Ƚ\imV',_binary 'F4\B@RjוN΄\SH7','',0,'?'),(_binary '\Rs{p~\\gЁؑ\','wp-includes/css/dist/reusable-blocks/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hk-Q6UJ\\Ӂ',_binary '\ѹQ!!\T\Zk0\\\\\\','',0,'?'),(_binary '**W8\52~','wp-includes/css/dist/reusable-blocks/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ށgky\Ƚ\imV',_binary 'F4\B@RjוN΄\SH7','',0,'?'),(_binary '\"q	K6A\\!','wp-includes/css/dist/reusable-blocks/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hk-Q6UJ\\Ӂ',_binary '\ѹQ!!\T\Zk0\\\\\\','',0,'?'),(_binary '@CE\'O\','wp-includes/css/dist/widgets/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U+\	\Q1tL\',_binary '\C\wTŞ\\\\?I\)1;w','',0,'?'),(_binary '^\N4ӝ,baD','wp-includes/css/dist/widgets/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\W\͙[#.%\',_binary 'PIKg\"V\nA/\\8_pg\\\4','',0,'?'),(_binary '\tLH:\P(\\\','wp-includes/css/dist/widgets/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xc\\y\W5%',_binary 'I\Z]\+9\Ja\<\g\Ө\\^\F','',0,'?'),(_binary '\ tdrlPj','wp-includes/css/dist/widgets/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&\\\dY\',_binary 'ֳk=\\\n\Gb\r\qM\4e\NZ9','',0,'?'),(_binary '\poX0%\\\\\','wp-includes/css/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\Xմ\',_binary 'A+\P\*dՁJDѿ\(\0','',0,'?'),(_binary 'ꍥ2jEbg؈Wx\','wp-includes/css/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M,\\|7\\"ߎ\'',_binary 'B@{𵲭6\r$υ@ĭ\+','',0,'?'),(_binary 'LsЇś\nc}>K','wp-includes/css/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H;\a.@\\\\\\G',_binary '#!q\az\_\\0 nֱtr\&W\rK\r','',0,'?'),(_binary '_\|TM^\\\J','wp-includes/css/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?($c\g2\\P',_binary '\E j\Z̅\9\,{\0\\\wEk\Ճ\V','',0,'?'),(_binary ' \\c̫)I\np,͑','wp-includes/css/jquery-ui-dialog-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xs!\\U,U\\\',_binary 'Y 40\@>Wb5!4\','',0,'?'),(_binary '~F\㫎>dy\\j','wp-includes/css/jquery-ui-dialog-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u+x)\\\A\v6@\@',_binary '\/\\N\\e$\\\\2:.}b#K}','',0,'?'),(_binary 'i\PÙld\0','wp-includes/css/jquery-ui-dialog.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\bG-_f\\kqT',_binary 'v48pnf\ZH\"ռ\\;jR&N','',0,'?'),(_binary '@V\$\K\\\<\1*\','wp-includes/css/jquery-ui-dialog.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\S`\\\7у-',_binary 'j&Ұ\M\\u@\\6L}\5\\\{','',0,'?'),(_binary '\05g\\꫔c0\"D','wp-includes/css/media-views-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DU|V=<㱲\8',_binary 'u\yڡTE\\Хw\Ԗy\9Ea\9{\ˠ','',0,'?'),(_binary '_\\\8}\\?\','wp-includes/css/media-views-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yŴ\\RLV]@',_binary '\\\FB\Z\5s\'\\l\0|Y\t.+','',0,'?'),(_binary '\\SڰpGMǯl\','wp-includes/css/media-views.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\$\Z\\\df-',_binary 't-\!~2?\\\0HPF##C','',0,'?'),(_binary '4%IH\Oʰ\L','wp-includes/css/media-views.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N?\5e(\e=<\9',_binary '4}-\L\kEұ&{xV oZ+t8~\)>','',0,'?'),(_binary 'Ǥ>zԄ!J]>','wp-includes/css/wp-auth-check-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\P\\KNzj\K',_binary 'V<e\b\\(kI\2\\ZÜu\/#4Ɇmz','',0,'?'),(_binary '\Y$\'o\\','wp-includes/css/wp-auth-check-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\jv\sZܻ&h\',_binary 'FV=&G\"\r\rF\p\nJ\ݣ\=՟3\','',0,'?'),(_binary ',CUU\\9i-','wp-includes/css/wp-auth-check.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%L\\ԥ|l\"\',_binary ']\"8y\\;\=X\rY$\T;','',0,'?'),(_binary 'Y68\H;%,_c\n','wp-includes/css/wp-auth-check.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j\b\u\=\`c',_binary '\r[B\{\'CN5zZw pȈIK\e \','',0,'?'),(_binary 'w5\)','wp-includes/css/wp-embed-template-ie.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)6\	؞мq \\',_binary 'o+8]\Su\H.\Cg\\R9\&+\\W','',0,'?'),(_binary 'ynm;/\UsK	','wp-includes/css/wp-embed-template-ie.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7{WP\L\{H\I\',_binary '\\aWq1+\Я\oL\Y\0\K\\%<','',0,'?'),(_binary '/ɘ]\^W\\q','wp-includes/css/wp-embed-template.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@\\nOO3\hi',_binary '-|~\\*T\E\N\.̴\J7\X\f#6','',0,'?'),(_binary 'zQ<\'U~\R\\','wp-includes/css/wp-embed-template.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^<\_\JXw',_binary '\\!kjiߔ\"8Z \PJ\','',0,'?'),(_binary '\\[\\i%Ͱ<e>','wp-includes/css/wp-pointer-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '╄)\y-?\',_binary '&\P\\n\e5o,V?\A\Z\U\;9;\z','',0,'?'),(_binary 'jQ\e\;\e','wp-includes/css/wp-pointer-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\r@\o\4R',_binary 'Hף\m|oC4\U\\;uP\6u0\n\l','',0,'?'),(_binary 'sC4M**B)','wp-includes/css/wp-pointer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,\ԧ\\(0(y',_binary 'Ij\6ʄ{鈊\"\	Ԯi\6ǭ','',0,'?'),(_binary '-\藂Y{]ns','wp-includes/css/wp-pointer.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kh\\\:\]w\\\cUK',_binary 'A\Mj%U\uք\"Z\\\\vl=(nH\','',0,'?'),(_binary 'xW2e\uv\L','wp-includes/customize/class-wp-customize-background-image-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{f\&E\\$\sX\',_binary 'R\v3~\\\\\\|.O\Lt\N`Ѯ\','',0,'?'),(_binary 'V^\3\m6._P','wp-includes/customize/class-wp-customize-background-image-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(g0\b|\',_binary 'fY@}-\ao\\@\\¤ƋXoX','',0,'?'),(_binary '\D6\S/\cQ?','wp-includes/customize/class-wp-customize-background-position-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+	]\r-W\ҽ',_binary '2j\ˏjB\\\Cvq\,\\'\\F\','',0,'?'),(_binary '\\賮]','wp-includes/customize/class-wp-customize-code-editor-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\jM\і\\\lM_',_binary 'xFZKc\\37\`Ԫ$jg\]\Q\\','',0,'?'),(_binary 'MY\G\\tX/','wp-includes/customize/class-wp-customize-color-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&S?\\|\\G',_binary 'h	\3|:Q9z\4Y1[\{^	$;#q\','',0,'?'),(_binary '\'T\\́\YǙ','wp-includes/customize/class-wp-customize-cropped-image-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\p[\q}y1',_binary 'x\r:\\\}gR)\`\kM%','',0,'?'),(_binary '\N\\\\\s\','wp-includes/customize/class-wp-customize-custom-css-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\H(t\\\)G9',_binary 'O/`d;]\\z\\#\\΁lQgf\	','',0,'?'),(_binary '\Z\lm\@','wp-includes/customize/class-wp-customize-date-time-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\",w\\%\ю\\',_binary '\$b\"=ZO}4\<\nGH\9\','',0,'?'),(_binary 'Y\0)\r/j\)\Ar','wp-includes/customize/class-wp-customize-filter-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\\`f\\0\iu',_binary '\0<\n\j:\YF\d\w\	\','',0,'?'),(_binary 'Zx12K\Z,\','wp-includes/customize/class-wp-customize-header-image-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\0W>$\\\\l\^ҳ',_binary 'Qy(u&\vӳ\'-\}\hՒ\X\t','',0,'?'),(_binary '\\'Kzf\','wp-includes/customize/class-wp-customize-header-image-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '71gIϏH\0	5',_binary '>\%J\32$eD\&]:,9-','',0,'?'),(_binary '\>\\\\n\5\\Z','wp-includes/customize/class-wp-customize-image-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jf\	˥\^\К',_binary '\nu8\\rYY\:\nVk.aG\GoM','',0,'?'),(_binary '*O\\\\\i','wp-includes/customize/class-wp-customize-media-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\=\rJ\$',_binary '_&3\$\9\\b\ږN\\Z*\n','',0,'?'),(_binary 'hS\:\\`','wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N+C#+|\fZ]\',_binary 'kn\Zy\&\_\[Igl(\g\'\^G','',0,'?'),(_binary '3ƹܕj\biΥ\','wp-includes/customize/class-wp-customize-nav-menu-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@V{R#87n\n\n',_binary 'aH\\Muyw?h:B\<=,##','',0,'?'),(_binary 'Cؚ\TR!vF{','wp-includes/customize/class-wp-customize-nav-menu-item-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*:Uț\J>\h\z',_binary '=C\\\\\0\"ȗgp\{KϮD\\'','',0,'?'),(_binary '{	\n|p٤','wp-includes/customize/class-wp-customize-nav-menu-item-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N=\\&m|qBM`',_binary 'nP@\C\\0\08;o(N=\','',0,'?'),(_binary 'b\\+ƴݟ\3\','wp-includes/customize/class-wp-customize-nav-menu-location-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U!\\\s^7\L',_binary ';\lϓb^\\\\0(@\L#B','',0,'?'),(_binary '\\\tDXm\0#\(','wp-includes/customize/class-wp-customize-nav-menu-locations-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D]σ2+fX',_binary 'Ѵg\h\msꄑ\\-vmQ\Ij\Z]sQT9m','',0,'?'),(_binary '\G \~\\`','wp-includes/customize/class-wp-customize-nav-menu-name-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\7\f\W՚7',_binary 'p\v\w \ܪ9?a\\z','',0,'?'),(_binary '-\B\\|tS^','wp-includes/customize/class-wp-customize-nav-menu-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ԡP\n}\$',_binary 'vG~?t7\0h\R,|\]9\p.J\w','',0,'?'),(_binary '\k0B\\a\\`\','wp-includes/customize/class-wp-customize-nav-menu-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' .W*8zm/=\*,',_binary 'B_\\\\\\G*\v\\~fI󛦖\\\\r\=','',0,'?'),(_binary 'x\\m\0\~\','wp-includes/customize/class-wp-customize-nav-menus-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\A\'|\\'h\',_binary ':\Z\isC`kd0\0\g`hQ','',0,'?'),(_binary '\@}&J~\¾&\\\0','wp-includes/customize/class-wp-customize-new-menu-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\N\p\aC\qk',_binary 'F\0Hyce\LuQ\&\LiH\nDũK','',0,'?'),(_binary '2\㺨a|Fl3]\','wp-includes/customize/class-wp-customize-new-menu-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	sL2/B',_binary 'H\'\sӽ\\I\$\Ӧ\ͤX!','',0,'?'),(_binary '\\\Y\\\\q\','wp-includes/customize/class-wp-customize-partial.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J@\N-p<\1]\Zn\',_binary 'ƪ\㫾\suunΐ\0\V<1r','',0,'?'),(_binary 'y\\n,\nC\|[i','wp-includes/customize/class-wp-customize-selective-refresh.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\Uep\ Q',_binary '\0q\\\\cxn}x\\0\\zv1','',0,'?'),(_binary 'T6K?s\ 7(','wp-includes/customize/class-wp-customize-sidebar-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VjB\\\ر\\q',_binary '{#\i`\\0\\j\` pǍ+\fF\','',0,'?'),(_binary ' ,eO\zÑ','wp-includes/customize/class-wp-customize-site-icon-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uӆ?/[\(\rC\\X',_binary '(V+g\]\!i}w\š)\\5m>-\','',0,'?'),(_binary '\?Ǆ\:\n\\X','wp-includes/customize/class-wp-customize-theme-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w%\jw\0\\*\',_binary 'jth%-!Š\Q\\JY\\Z\φ\߃\zxB','',0,'?'),(_binary '<\\g\=C״qD','wp-includes/customize/class-wp-customize-themes-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\uZ7ѳU',_binary 'aMk\\M.\ݚfJ>\\{V\>v2U','',0,'?'),(_binary 'XQ\d9r\ڼ\','wp-includes/customize/class-wp-customize-themes-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T\vl3',_binary ',V3Rw\\.\r׭+4ݦ`=`R','',0,'?'),(_binary '\e\\\\k\c\\Xf','wp-includes/customize/class-wp-customize-upload-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ؓB8?)ivr`-',_binary '~t~X% \K/3-n6\0\RB֨G','',0,'?'),(_binary 'y{\\b\a\'\\\','wp-includes/customize/class-wp-sidebar-block-editor-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]mL-D\\\+Zٕ',_binary 'o,bL\nB\\Qv\-|qd\\'B=X&','',0,'?'),(_binary '[5\Y\NhKM\','wp-includes/customize/class-wp-widget-area-customize-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\<w܌*\t\!',_binary '44w\VvOa5G\39\\I=\5\\i','',0,'?'),(_binary '\nT/\\9$YU\n\\͌','wp-includes/customize/class-wp-widget-form-customize-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\D*@6\{τ}\',_binary '\+֓zi@\\\^F%5\qZg<\','',0,'?'),(_binary '8R;|\I2O5\','wp-includes/customize/error_log',0,_binary 'n\\\#BR\dZ\rm\',_binary 'n\\\#BR\dZ\rm\',_binary '-\'g!\\\\\"\"mY\z~qǨ\','',0,'?'),(_binary '\0\\.}fwA','wp-includes/date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n[*(Ҿw.m\yz\',_binary '.\0\qB_]\\\\0\\a}\0','',0,'?'),(_binary '}\\{RҢ\\\"','wp-includes/default-constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NSԴ\\ށ\.4	',_binary 'wm\\{Y\r\\ڬ\->\\VL\=t\7','',0,'?'),(_binary '\R,A\Z\GJ\'-','wp-includes/default-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Swn̴X33-',_binary 'K;Y\\r3\\ɡP\PHM0@Kg\k','',0,'?'),(_binary 'VL6\7G^l%D5z3\\','wp-includes/default-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\B z\\f\0\\\\\',_binary '%rN8*G#C\UᴭP\z\p_-\\\\n֌','',0,'?'),(_binary 'p\.а\[ÍD','wp-includes/deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '碌uĪH,',_binary '\\G*\H	o/u\&8w:d\\ƽ<[','',0,'?'),(_binary ')\\]\\\Z$\P%','wp-includes/embed-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\zA>z\\'!f*',_binary '*xJ\\"t\r^K$U09\Z\иCru','',0,'?'),(_binary '\9e\\kk\R\oS','wp-includes/embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+@<4#!\0s\',_binary '\Oa\r\\#\"\rV[\xV\\?\\\\Z+mq','',0,'?'),(_binary '&\MXW\\O','wp-includes/error-protection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?5p\.9\;Fܧ',_binary '֦ \7S\\Z\\\cdLb|o\1\\Y\ã:','',0,'?'),(_binary 'R֝\dqU','wp-includes/error_log',0,_binary 'Ip5Ȱ8g\0*',_binary 'Ip5Ȱ8g\0*',_binary ',~0J\M\0\0Ί\y<-\\nGq	)','',0,'?'),(_binary '\"b9e\|_\','wp-includes/feed-atom-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\I6bJi\"m\\',_binary '+.40Ig\(b}yтK\kb\5','',0,'?'),(_binary '2@\k\w>K2','wp-includes/feed-atom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\:0wʏ',_binary '\>g\H\:\׎\L3?w=','',0,'?'),(_binary '\ȼ؟\\'\r`\\\','wp-includes/feed-rdf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xG7\%\0b\\\',_binary 'p=m=G\l\hnh\V\\]\-\+1\a','',0,'?'),(_binary '])\\	\{?R}','wp-includes/feed-rss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iJ?YC>^\f',_binary 'flP\f52tY3x\\D\ׄ\','',0,'?'),(_binary '߲;0\\','wp-includes/feed-rss2-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L6<\vz\L',_binary '\3۸\kH\\?1B\g#~<X\gbe\','',0,'?'),(_binary '_*\⽞L0\>\r','wp-includes/feed-rss2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lN+\5	O?',_binary '@!\`C\\*Me\zj@	@\\Ljw','',0,'?'),(_binary '{\RC\\Z.*\"Q','wp-includes/feed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4YG~\"7W\r\\Uz',_binary '*~(Yn+s2`\x\2TȾ)@\\L\','',0,'?'),(_binary '\Z5o\\#R\'/l','wp-includes/fonts/dashicons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\N\Z>w\\@\R-/Y\',_binary 'B\nZ\Z_pn͂\Q?/\\r3s}\)','',0,'?'),(_binary '΢S˪\\nB\V\"','wp-includes/fonts/dashicons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_3$_\n\5\X',_binary ';ʐ\'8\4aOoY8-U62K\qq$B\x','',0,'?'),(_binary '\\\<kUJv%\1','wp-includes/fonts/dashicons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\\|\Z',_binary '\D\D+veh\s>Zfo\vW~,=','',0,'?'),(_binary '\f0\\ͭ\~)','wp-includes/fonts/dashicons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\_rY+ʂ;\',_binary 'yU]f\\8\\\t\\\\l\L.','',0,'?'),(_binary 'L+qV\;h\\Y','wp-includes/fonts/dashicons.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MN:\\\'\ʤ\ȹ',_binary 'J\!\\XLl`e\O\s\H\','',0,'?'),(_binary '\ŉ	i\\/Э','wp-includes/formatting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eZLsr\\',_binary 'wCY-5b\2\{v4^F\\\z\W','',0,'?'),(_binary '\Z\\\)qtsCI9','wp-includes/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!\:\Su\w',_binary '\~f&	\\`ĪmZ~\','',0,'?'),(_binary '\b`K\'\컜\\K','wp-includes/functions.wp-scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\R\S\Z`p',_binary 'T?&\f\\ZEU\\T\U\3,WwhJL','',0,'?'),(_binary 'h d\껅2\\_r','wp-includes/functions.wp-styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n簪:\\\ Z\`',_binary '}\!^nё\\T9\\m\tb\=','',0,'?'),(_binary '\0R\J{y\ˣ\\','wp-includes/general-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^8\B!	в',_binary '=8VflD38̦֙j#b5^ $U','',0,'?'),(_binary 'u\ҫ\;^\\'B*','wp-includes/global-styles-and-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`x,klgC',_binary '\\rT@\!8a3|A]q`0DL\\Ķ>f+	Ñ','',0,'?'),(_binary '/&\\2ѡ\rgDs','wp-includes/http.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P!\r<l\{|\N',_binary '3\n\]t\ -dX%$%Qwq\\q\=	ĉ','',0,'?'),(_binary '!-LHv)\n#','wp-includes/https-detection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q߀d\M',_binary '\m;p)+~vm$\\y\\\nQ\V1\L&','',0,'?'),(_binary '\\5\1Q?_','wp-includes/https-migration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s94W#2\\!H\߾',_binary '2|PŁmuН~k37rz0x\A\','',0,'?'),(_binary '.IhU\3+B\Z','wp-includes/images/admin-bar-sprite-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q\\8\o\',_binary '*E\Ts\\al\^\p\X\Z\0','',0,'?'),(_binary 'Ư	\'CԻ\\ګ\Z','wp-includes/images/admin-bar-sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\:W\\\^',_binary '\rN!`VOc\K\viՀ{Fn\Zle','',0,'?'),(_binary 'r\_\/\HG=\%<','wp-includes/images/arrow-pointer-blue-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%m\rތ]49c\',_binary '{&DOz\Af\/\\gá\\\A]~(\','',0,'?'),(_binary '@̘9#L\y(\\','wp-includes/images/arrow-pointer-blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wb\·*L\[',_binary '\\\\fb\ZD1.V\\aw\4l?\\p\G^\{','',0,'?'),(_binary '\G\\5\@\\\\07\','wp-includes/images/blank.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ʟg\h\kKf',_binary '>E\G\\L\ E\JQ\|\Bij\','',0,'?'),(_binary '\>M\8 ٵ\|','wp-includes/images/crystal/archive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\\\I0An\',_binary 'L\%X\\O\+\\Aa!\S\\܉\&','',0,'?'),(_binary '\J\'#rN0a\r\','wp-includes/images/crystal/audio.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nV\:\ω\G\\-#k',_binary '~B\Z-׼of|Wx\\|M\)\\ˢ','',0,'?'),(_binary 'w\L\0\\]r.','wp-includes/images/crystal/code.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\1\\\19',_binary ';\67\r\!\\\x\Z_@H\\&C\-\\','',0,'?'),(_binary '\!ެ\߳\p','wp-includes/images/crystal/default.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\>)*/\!\-\',_binary 'n$_u	$Q3\E׏r|Jm','',0,'?'),(_binary 'Dm\nzH\S\\','wp-includes/images/crystal/document.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'^cs\D3T\\',_binary 'g\t\( Ŏ\k`5͒J\M5\\:j\','',0,'?'),(_binary 'j\5F+\o','wp-includes/images/crystal/interactive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\m`\\`9\',_binary '$\멘<x1\Փ\IR\V-VZ\\jg.','',0,'?'),(_binary '\ǊEvc,\صyS^','wp-includes/images/crystal/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]Lc\iGfQ\r\\',_binary 'v\\pm\c\6\Y~\",!V\EXll\\"z\','',0,'?'),(_binary '^\Ð\+y|\','wp-includes/images/crystal/spreadsheet.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '59Т1T\\n\',_binary 'e\rCi0\\[\R8@\\\\G\aJN\','',0,'?'),(_binary '\\\\\\"R\Ŝ','wp-includes/images/crystal/text.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ Ѳ#d%\[',_binary 'n1\\0\<;\n\Ip\~\f\⠸\\z','',0,'?'),(_binary 'U\\\$i\"u\\&\\9','wp-includes/images/crystal/video.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\lڤ;\=',_binary 'S\rIU9_<\\f`\&HYw\u','',0,'?'),(_binary '*\-3\uE\[\O#','wp-includes/images/down_arrow-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]\\\Mf\',_binary 'w\0\\qpq\5\T#\\','',0,'?'),(_binary '\n\O_;]/^\','wp-includes/images/down_arrow.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V~\o\YnG~_u',_binary 'h8ɧ\pu\{9\\J','',0,'?'),(_binary 'Ҟ\\ǟ\	Ks\\\','wp-includes/images/icon-pointer-flag-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\2\b\\&\Z\r',_binary '4\Bȥ\\'x+c\hҠVn5I\>j\\','',0,'?'),(_binary '\Z\\	r!ޏf\\	\','wp-includes/images/icon-pointer-flag.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,\\E^j`\'',_binary 'oq\9a{)h}=#\\Tק\\','',0,'?'),(_binary 'Y,e\A\w`\\','wp-includes/images/media/archive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\\\h\0\\ìu',_binary '\0Bb3\'\\\')JG ](G\9Pr2 s','',0,'?'),(_binary ':n̣RM\ti#\=','wp-includes/images/media/audio.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'taCA\\.\Z\',_binary 'L\>$\noixoj-\nL\\\\]G;q','',0,'?'),(_binary '3\"(z\a4\8','wp-includes/images/media/code.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-oUʓ\\UU_',_binary '\'eM a[R#q2\kz+*<\\\7\0\\j','',0,'?'),(_binary '(?\\\>\SN揚&','wp-includes/images/media/default.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\\I\Bh\@\\\b',_binary ':\oL\JDj\$->i\\'\6n֠\Ui','',0,'?'),(_binary '/<ا^ɼf}\"\$','wp-includes/images/media/document.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\48\Αy6\d',_binary '\ø`\\\\f	I$ _ZX\"0\r\,','',0,'?'),(_binary '\rYSxwDY˚J[','wp-includes/images/media/interactive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R׬˂\\ôŉh\H',_binary '{\\ [K\\\0!긽/\\\lw.\\','',0,'?'),(_binary 'HVեd\p\Vp','wp-includes/images/media/spreadsheet.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4\\\\0T\̇?',_binary '\v)\\n6Zl2\\В1\!+	\','',0,'?'),(_binary '9\\s3\SZ,p\8g','wp-includes/images/media/text.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zs\\0\ȝQK',_binary 'g\?[\D*\p8q\\Vѓ\>\N','',0,'?'),(_binary '\n%f[!aEr\tgi','wp-includes/images/media/video.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\u\h\\q\',_binary 'DBU\MiO\b,\\e\=\\W{\\','',0,'?'),(_binary '\k\\/y&G','wp-includes/images/rss-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ya[Q\\rj',_binary 'yS0c`\n7\as\#\n\Y\\','',0,'?'),(_binary '\\r؁=\Ԓ\','wp-includes/images/rss.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[(\.*NZ',_binary 'j(-9_\\E-#\we\$\]o01\u','',0,'?'),(_binary '{\\r\-\\}^\\','wp-includes/images/smilies/frownie.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\\\\\',_binary 'r\~\Dzo\\h߱\\ػ\">E+Ke','',0,'?'),(_binary 'Т펹|\\\\@','wp-includes/images/smilies/icon_arrow.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' 	\J<\g\o9:x',_binary 'nc\\x0ĥ\\\tN\޾Y2X\0!','',0,'?'),(_binary '\㯩\	\'\ި\V','wp-includes/images/smilies/icon_biggrin.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\Jr:]kI\|',_binary ':\ٔ\\\M\\X%	\<8g4','',0,'?'),(_binary '$\͓bHn,\0-','wp-includes/images/smilies/icon_confused.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/#	\Ӣww$x꾓Y',_binary 'U0\\\L\X\fXƦ\G\0\T\$a\5U\B\','',0,'?'),(_binary 'X,\E\Cj$_8I0','wp-includes/images/smilies/icon_cool.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n`\\\\ivj.\',_binary '\事F9;2_	$\$~LOa6\\\_','',0,'?'),(_binary 'ĔԼ\\pPZ	H','wp-includes/images/smilies/icon_cry.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+`ŮdW]\\\\h',_binary '[<q\wf)rZ(\\=#;ans\\\w9','',0,'?'),(_binary '!_輵p3pn\\L','wp-includes/images/smilies/icon_eek.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/I x\)\(\"\\',_binary '\8\\\\\\K҇4\!\\:ʰ','',0,'?'),(_binary '\Obc\" \\\|J(','wp-includes/images/smilies/icon_evil.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\M>\z\',_binary '\Q|x>\\@VЛ_/\"\W\\%S','',0,'?'),(_binary 'JBGT;,lT','wp-includes/images/smilies/icon_exclaim.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\>5\0r\\\sg\',_binary 'Lɵ\H\A(xʓ2EP%\	\##\5','',0,'?'),(_binary '\\"u@TS\5\','wp-includes/images/smilies/icon_idea.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\<]\W3tށ\',_binary '\{\2^4STl\\IJ\Q\\"','',0,'?'),(_binary ' n$q\^qf','wp-includes/images/smilies/icon_lol.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\:ѷ&\(',_binary '\l\1Hq.\2x\󢾉$\Y\Z8\','',0,'?'),(_binary '(ה\W\h@=a','wp-includes/images/smilies/icon_mad.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V!\@c0\S',_binary '\\d[O:Ǉ\\\jl}\q\','',0,'?'),(_binary '\ZUE\s(\\#E\p','wp-includes/images/smilies/icon_mrgreen.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$_\uX|I%~$',_binary '!BI1mV\-|јX5D\8h\','',0,'?'),(_binary '\\k\i\\.\\','wp-includes/images/smilies/icon_neutral.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\VM3HU1!\v',_binary '\Ois8\0|z\\6\]e@Ym49','',0,'?'),(_binary '7M3\$\\','wp-includes/images/smilies/icon_question.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[-\0\\'WF',_binary '\7b\|6#\\\\9/?x~\[%t','',0,'?'),(_binary ':[&b[hY','wp-includes/images/smilies/icon_razz.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9[\wDAMA\',_binary ';\P\1]f\UE;`Qڮ\ne\Z\0@4aA\','',0,'?'),(_binary '$\0S\rr','wp-includes/images/smilies/icon_redface.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\U\\\E\',_binary '>\\\D\C9M\cJ\Z+UL1f+g\','',0,'?'),(_binary 'B]nȄ8\7g\','wp-includes/images/smilies/icon_rolleyes.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_5\6I\ĔE',_binary 'b;\SG`JL\4;ͮ1;\\\\;xl','',0,'?'),(_binary 'H\Pw\\%8','wp-includes/images/smilies/icon_sad.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ix\o\\TMz\\D-',_binary '\b5yh9\\}\o\\W\I\nn','',0,'?'),(_binary '\\e\\97\aJS','wp-includes/images/smilies/icon_smile.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\3\.)2\\p\\\',_binary 'ˠ\\",\RʨTr=o\r\З:','',0,'?'),(_binary ';\Wct\\\*+\Br\','wp-includes/images/smilies/icon_surprised.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\\-\\#+\0\?',_binary 'cuyXؓ\A\d5[=w>*Spwe\._','',0,'?'),(_binary '\\:\\ڈ\\)g,\\','wp-includes/images/smilies/icon_twisted.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\v[?\\+*8\;\\',_binary 'V\HhK\\n\\\p\\;.&/E','',0,'?'),(_binary '8\P5aĨ	','wp-includes/images/smilies/icon_wink.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e?2\i\\',_binary '(\V{\V\Bk\\\o(`ZV	6','',0,'?'),(_binary 'g|y_o4\"XN','wp-includes/images/smilies/mrgreen.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-5\^\J\j\',_binary '\\M\g$\+;\0\5\\\\H&\\E6%w','',0,'?'),(_binary '{\Y\\\z錿}c','wp-includes/images/smilies/rolleyes.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \O2\Ofݣi',_binary 'fK\)\n\d!]\r)\\\\}\\\זl\\^\','',0,'?'),(_binary '\\ջZml\4\ˮU','wp-includes/images/smilies/simple-smile.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K\{fwh',_binary '\?Yag\\<y\0\01\\83Hg','',0,'?'),(_binary '}`\\g\"P\2\V','wp-includes/images/spinner-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\2^#\8\',_binary '\#˒\=$c6\\\\	B46','',0,'?'),(_binary ':\XqݝJ\\5P\4','wp-includes/images/spinner.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L\\nD\n\oً\j˲',_binary 'zƄ\\Z\"n\Zs(\U/~\7F^\','',0,'?'),(_binary '}ĉ=t\','wp-includes/images/toggle-arrow-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\\\\\\CDr\',_binary '-\\N\\\7~@\}_\=\V_@A\','',0,'?'),(_binary 'ܵ[Ҳm%6\S8:D','wp-includes/images/toggle-arrow.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\·a\;\d\\*\',_binary '[b\Z\;\]f\0\s|:\\%','',0,'?'),(_binary '/鹠\\\ΰ1\iw','wp-includes/images/uploader-icons-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&-\OÕ\~',_binary 'r\\0\\\'_>\6\\QW4ڠR','',0,'?'),(_binary '_\\4\3\\=','wp-includes/images/uploader-icons.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\M\m',_binary '\p\\\+/\\\\\\i\\!Zţ6m','',0,'?'),(_binary '\0)4\nTYd4G~','wp-includes/images/w-logo-blue-white-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\Ȉk\|Ѽ\\\',_binary 'Oɗo\\CA\/x\<\\%4=?','',0,'?'),(_binary 'x9@^6\ߑ\o\','wp-includes/images/w-logo-blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[NW\_p\w0',_binary 'ޣ^Qt\3\HunU❻\\~\'T2','',0,'?'),(_binary 'hFuQe\ \','wp-includes/images/wlw/wp-comments.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\6]P\\\\.s\',_binary 'zl\Z\C\D\\#a\N\3\'XZ','',0,'?'),(_binary '\\Pq-t\@l\','wp-includes/images/wlw/wp-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1	ʚ7w3K*',_binary '5 }\x(\\r\:a,zmKH1|/\\+\\','',0,'?'),(_binary '\\6bg>_','wp-includes/images/wlw/wp-watermark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';uMmܭD|w\D',_binary 'S\nR\'\X^\kh\ɑ\i\7','',0,'?'),(_binary '~U\\"\&\','wp-includes/images/wpicons-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n\V\o$Of~7',_binary '\]کA=ђ%\q%aM\BU\p','',0,'?'),(_binary 'g$G\\\;r\\\1X','wp-includes/images/wpicons.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dSuqV_\\a\',_binary '\cZ_\?n_\K6\\1\\}r','',0,'?'),(_binary '\rE\\U\̈́\\','wp-includes/images/wpspin-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mS\\y\"C\\',_binary '66SX6O}\4>p\"\\'1','',0,'?'),(_binary 'Rx4Mp@9u\n֊ p','wp-includes/images/wpspin.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hku\R\r@9k\\',_binary '\!\Fױ\\(#\\1:\','',0,'?'),(_binary '\N\\\|\`*,)@4','wp-includes/images/xit-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ӂ\u:@4\r\\z<5\',_binary 'S\r\}@~Q\:Sc\*d+\Z\_{R','',0,'?'),(_binary '\\n\\\ɶ.5','wp-includes/images/xit.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	3Xī9+\6n~',_binary '\ s\\ۨS,md\\\YbƇ\\o','',0,'?'),(_binary '|/ڒ\\0[*4x\','wp-includes/js/admin-bar.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\c\\\\@p\',_binary 'tbIld\\n\Lbx+\ϔj䶪,\J\0\r$2','',0,'?'),(_binary 'MР\0A9Q\+\','wp-includes/js/admin-bar.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '၈\n&a1a\0',_binary '(L<Ki-U4\Wܸ` rl$','',0,'?'),(_binary '-\c<\\@\VsZ','wp-includes/js/api-request.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\߿G7p6{g',_binary 'd\6Q\\\f:G`\\j1V\','',0,'?'),(_binary 'e\r\Zf\ޞ\\|\','wp-includes/js/api-request.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k#\(\ĩ\\\\',_binary '\\\\Q\M`$ڣgE\\0|Pne\r]','',0,'?'),(_binary 'R3\Us\3\\}T\\','wp-includes/js/autosave.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ǋcJ\nH\'',_binary '\T%\\#5r\c5\꘩\\\m7','',0,'?'),(_binary 'wu\l|\\p\Q','wp-includes/js/autosave.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\D\\U\r\k',_binary 'eCRO\0.\Gk=\\\N\Bb6O{\','',0,'?'),(_binary 'eMy*Ҟ\\\','wp-includes/js/backbone.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"$2hj32U\\',_binary 'cB\CP\0\\F\!vy6Ku*<cf','',0,'?'),(_binary 'PE۫7r|oI6\>','wp-includes/js/backbone.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\\\rSz4',_binary 'Ig0\C :F\o \*]\tL}\RO؆','',0,'?'),(_binary '3h\\\"I+[E','wp-includes/js/clipboard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G]nma\sī\',_binary 'o~\S$\	L\\ޮ\'2\lr','',0,'?'),(_binary '2bU\0\\s\pd0\','wp-includes/js/clipboard.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\a\d].;\\W;',_binary 'zD!X\s\\)ؑ3\l,l\Q\CJrU','',0,'?'),(_binary 'D\\=K\49\','wp-includes/js/codemirror/codemirror.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '23j\1(D\\',_binary '\Ό\,a\u\\@s\Y%K\-o\n\r','',0,'?'),(_binary '\}\e\C\\!*','wp-includes/js/codemirror/codemirror.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\	fh;fq\',_binary 'u*\Q\6\Ƅ\dvdȇ_\0\','',0,'?'),(_binary '\\n\\UN~\0m\\','wp-includes/js/codemirror/csslint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\M_ϱI\\l',_binary ']ih4F\ò\\r\\U\\\WEK(\Pd','',0,'?'),(_binary '\\VBǡ\\\ZB\"\0\','wp-includes/js/codemirror/esprima.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd_ \S\gٛ',_binary '];%Js\\lx\\FqBH\Z\U8\\','',0,'?'),(_binary '\׵(\\K\B\\','wp-includes/js/codemirror/fakejshint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\v\,ROlx]J\')K',_binary '\\-6\$$;}ptO4]2ТR\5֡','',0,'?'),(_binary '\T\!ة7l\<','wp-includes/js/codemirror/htmlhint-kses.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\[k[\#cLf{',_binary 'N\&\V\ZA\/\\R#~բ\\_J*\Ї','',0,'?'),(_binary 'ƞׅ\ZXX]Y\F','wp-includes/js/codemirror/htmlhint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\|џGMtP5\',_binary '\0U[\0\M\'mCռ5\5k`\\5\ё','',0,'?'),(_binary 'z.[\D8R\','wp-includes/js/codemirror/jsonlint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I)fy\\kT+\\<՟',_binary '$D;;0\\F~pGғFˁ','',0,'?'),(_binary '\\\np\\Gnu:\','wp-includes/js/colorpicker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\V g\-',_binary 'Vw\\%%\:3CQ#+g\\	e}\','',0,'?'),(_binary '0\\E\00X\H','wp-includes/js/colorpicker.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm{>l\Z\կ',_binary '\\\'\ۚ\c覯z+\*\\S8\"\ [\귲;','',0,'?'),(_binary 'pUya	\b\va;8','wp-includes/js/comment-reply.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\FD6\\x\',_binary '!\x\G\\\\Go\Df\B8xXC','',0,'?'),(_binary '1\X/t60^Ҁ!\7','wp-includes/js/comment-reply.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\JxJ\L\\Q\\\',_binary 'GM뜅\8ps\\j58󦄖\\~','',0,'?'),(_binary 'bY\,ϥYr۝\;','wp-includes/js/crop/cropper.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ky5\ni*M(\',_binary '\ٸT\ޝO\wLy=}\gTl\','',0,'?'),(_binary '\r\%\\\\%yS`\','wp-includes/js/crop/cropper.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H.s\o\\',_binary 'py\\\\,B\\\G\\\-\t\\\=\s','',0,'?'),(_binary '(|n\sARF\+','wp-includes/js/crop/marqueeHoriz.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̮;\\\Lo\n',_binary '|\\\S\e|.\/\QY\W}(','',0,'?'),(_binary 'Z\0Y æfg','wp-includes/js/crop/marqueeVert.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\09R\\\',_binary 'Kcg$e2\\p\$\1z`CkJ\','',0,'?'),(_binary 'r\\\j\\A$','wp-includes/js/customize-base.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nfu\\Z\\A\\0o)',_binary '\\\l\us\o	\nGǝ\\NU1`9.\','',0,'?'),(_binary 'V\n\\U`_58','wp-includes/js/customize-base.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@a\\<\',_binary 'eƭǃ\\=\ܠFB}\:\rbbl','',0,'?'),(_binary 'V}Pm/|I*\','wp-includes/js/customize-loader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`6\!\\҃z\',_binary 'G?~\D,(\F]\I\bNE\\pcv:\z','',0,'?'),(_binary 'b\Ҍ &\?{','wp-includes/js/customize-loader.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-#\5&*o',_binary '\<ş;\r#8+=dK\\\F꡻S)8׆>]','',0,'?'),(_binary 'x\Й\)DC\<','wp-includes/js/customize-models.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'\~G~\Ԟ',_binary 'h\3XVx\p\\T\OSSfb\\\rE捵\','',0,'?'),(_binary '\n\NNM\ۑ4;p\4','wp-includes/js/customize-models.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/oϱ;\\Rwc',_binary '.a\\x^g[&E\ΡJJT\SՀ\','',0,'?'),(_binary '\\Z\{:\Z\4f','wp-includes/js/customize-preview-nav-menus.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Nm l\VҪ3',_binary '\5,M3\5\\n(tL5;^\\P/9z\\8','',0,'?'),(_binary 'F~yc7v-','wp-includes/js/customize-preview-nav-menus.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\447\"-n',_binary 'v\\ypw\\w\.VDCi\Ĝ\ע','',0,'?'),(_binary '9\r5\'X\>?','wp-includes/js/customize-preview-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y}\\\\\x\c\&',_binary '\\(]P\\UP\'L2\n\Z\n\\','',0,'?'),(_binary '\\9\rMԧ\\','wp-includes/js/customize-preview-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T-6P)H\=\\',_binary '6ª\e\\yмbdf}5\','',0,'?'),(_binary '\4\\\2)A.;4\','wp-includes/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3Q	!@\٧T\r',_binary '	\Z\\L\\\\'b\%\i$\\\\Z\n\\\F~','',0,'?'),(_binary '>ql\+m\\05Ħ\"^','wp-includes/js/customize-preview.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\tQM\ʈ',_binary '\\=\\y\0RAB\b\)?=n','',0,'?'),(_binary '\\UNEA\g\t','wp-includes/js/customize-selective-refresh.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uP岉\0x\Z\\',_binary 'q˖jZC~<sħ+RI!H\\','',0,'?'),(_binary '0j\Vƽ\f:5\`\\','wp-includes/js/customize-selective-refresh.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EG埳6\0\b\',_binary 'G\iA\w_Pg\9\Oɓ\\M','',0,'?'),(_binary 'QY\1\TlVr<','wp-includes/js/customize-views.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"r<`\\\D\\',_binary 'b2M!o;-\veq\\\f]l:','',0,'?'),(_binary '\Y^~5~pG-','wp-includes/js/customize-views.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hӷ-\\Me\',_binary '\b\L-9wlo\\y$+\Y\Zޘ\N','',0,'?'),(_binary '2J\y*m\\]W','wp-includes/js/dist/a11y.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\.\\,|\_4',_binary 'A\\"gV:\dөE;F<VzD0G','',0,'?'),(_binary '\|0\O\+]lU\','wp-includes/js/dist/a11y.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p*H\wݥOjt~\	',_binary 'nFn+cZ^k,겠@(\'\\}4~\\','',0,'?'),(_binary ',]\'N%ݑUeT)','wp-includes/js/dist/annotations.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\W;J\\">\	',_binary 'ɝ\\\7,OăP+<U\\(WkP\\\','',0,'?'),(_binary 'Y(\K\g\0\_','wp-includes/js/dist/annotations.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{\.\\\Al',_binary '6~v5e]/LrW\I*:','',0,'?'),(_binary 'EȖqȊ?2H\','wp-includes/js/dist/api-fetch.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\Q\H\\RP',_binary ':Gh;\\_2pQS\Q\m)\','',0,'?'),(_binary '(NL;	\','wp-includes/js/dist/api-fetch.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\`\Z\\\,\nnY',_binary '\~$\P[\0\\\\	P\l\\\B\\\\g)','',0,'?'),(_binary '/*:o>t\','wp-includes/js/dist/autop.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YE׶OF؄',_binary 'J\^\\ \,ulr&\YvN!','',0,'?'),(_binary 'k\4c\\\5<\"','wp-includes/js/dist/autop.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '35:\`}\Z\ngd=',_binary 'L{Nf1zOl\\\"\[(A{\','',0,'?'),(_binary 'Ϛ\"j\y\\\^','wp-includes/js/dist/blob.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fvb̵|\\\V\g',_binary 'Oـ%߿\\\\'Z3p*-\؁','',0,'?'),(_binary 'ä]0`\\AS:D','wp-includes/js/dist/blob.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J|Mh',_binary '烃6&\l圂K\\r1\\\"\\x\ȕf,','',0,'?'),(_binary '|vP\0\fh\T','wp-includes/js/dist/block-directory.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\le[Y\'zq',_binary '?\ᴌRE\&kJ8m\0\0c\;>','',0,'?'),(_binary '(Y\\'^kz!q','wp-includes/js/dist/block-directory.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w@\\ÏO^\\',_binary ']+;0y&@a\I\r9\\G-\\\\\r','',0,'?'),(_binary ';\\!1\>Y\xQ','wp-includes/js/dist/block-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vZDN\\\A4',_binary '\yfWAhB_7\ZcO2!\','',0,'?'),(_binary 'v6Z\'\O\IL\"ݕM\','wp-includes/js/dist/block-editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tXF\e2\\e\',_binary '\Mn\牼\\u^\nl\}VU\0R:W','',0,'?'),(_binary '\ĩ\}x\(T','wp-includes/js/dist/block-library.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\\~\s$\dc䳣',_binary '\>C\̘H\J\=0S\0z	\9','',0,'?'),(_binary 'N3M\n\S\0j','wp-includes/js/dist/block-library.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\Ub\\n',_binary '\-\E\\r\s _}MI\h\%:V\j_~','',0,'?'),(_binary '\CǴ\kq{.L','wp-includes/js/dist/block-serialization-default-parser.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6ʜ9YjbI$',_binary '4k\:dȧ\!\'\{ݸ\M\\h','',0,'?'),(_binary 'S\8M\C>\\','wp-includes/js/dist/block-serialization-default-parser.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\:\\	\',_binary ')24NaK\-\\dE\\ʂ	\','',0,'?'),(_binary '\Z֧\\\Z\hi','wp-includes/js/dist/blocks.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڈDɩXK\\[nZ',_binary ';\~\E\\;Lbϕ`\)\v,7\"#\9=j','',0,'?'),(_binary '\7:b\\r,\ja','wp-includes/js/dist/blocks.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\׼|K\\n',_binary '=7\\vC\\\=\UVOW\x?y\\G\nZ','',0,'?'),(_binary '\ldK\м\\\\','wp-includes/js/dist/components.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\\Τ*>Y\\"',_binary '	)K\k0>nس>\\\\a\a','',0,'?'),(_binary 'NZND\N>Y	','wp-includes/js/dist/components.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z\\h!@\',_binary '\40e[\Ug\O\!\-PK','',0,'?'),(_binary 'و\TĖhx~Dt>l','wp-includes/js/dist/compose.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\\^2\e*\e+',_binary '`j<v(\ԏBa\42l\\D\\^1ZwO','',0,'?'),(_binary '5قaܨϘ\	#\bu','wp-includes/js/dist/compose.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\uHot',_binary '<ƛ\`8nJ٬\Ʒ	r\u\\\j\h','',0,'?'),(_binary 'I\Ԭ\l\\v0O','wp-includes/js/dist/core-data.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Bq\D\\\c\\)\',_binary 'ŞJEC\ /,\A?=3x%1z\\','',0,'?'),(_binary '\x2_.\~$\)','wp-includes/js/dist/core-data.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~(\\anؒn\',_binary '4c)\4Nd\\+-\\0G\\"d\','',0,'?'),(_binary 'D\'\%\S\6\>{','wp-includes/js/dist/customize-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%/\\\Y\\M\',_binary '\\\`Y=\uP?\0\Yف%\Q7\\','',0,'?'),(_binary '\\yY)hNÁ\','wp-includes/js/dist/customize-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '..\N\^\GG\A',_binary '-+_*!\\ML_,[>H\','',0,'?'),(_binary '\n\\\ \\/Y','wp-includes/js/dist/data-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1)6^\I4Qy̘',_binary 'j\h7\rl\F_yYZu\Y\m','',0,'?'),(_binary '!\>лӊ^\\[\U}','wp-includes/js/dist/data-controls.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\;~%L>`1P',_binary '\I\\\r\\1ʐj?g\n\','',0,'?'),(_binary '\gֿm㋣\I','wp-includes/js/dist/data.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\	\C\r>y',_binary 'tԋ\\.W.c\\\Ցig\'\\ݭ9o','',0,'?'),(_binary '\"NM\\\kVO','wp-includes/js/dist/data.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\\ui\l㗵K',_binary 'u\MdP\d/c\ә+&\63\i','',0,'?'),(_binary '\Gl\\\ݠ_\','wp-includes/js/dist/date.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\s3&',_binary 'GX]RS\\\\\u\\vk\u\\.ihx텵H\\','',0,'?'),(_binary '\"J\2\rߤ-H&','wp-includes/js/dist/date.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H\G\`\]cM',_binary 'G>v\{(Rt\Z\\\>\7#','',0,'?'),(_binary '\\\\;W\\\l','wp-includes/js/dist/deprecated.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\&\\\\/_\|h\\',_binary '&&\֪ZQ\r#\ؽo\D\nF\\^\','',0,'?'),(_binary 'ϋД\'OtʗM;','wp-includes/js/dist/deprecated.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˇ\%[i\\\',_binary '֍\\gDv\q,t~\Q7\\wx䒐 ','',0,'?'),(_binary 'k\\'\n+&=\n`\3','wp-includes/js/dist/dom-ready.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\	ď(\%y\ZLqT',_binary '\\\J\v\7\F)M\'ѳ\\췌ph]','',0,'?'),(_binary '\\ҡK%^','wp-includes/js/dist/dom-ready.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!N\JAv',_binary 'T\\II-U{z\]mRX>\@[jt\X','',0,'?'),(_binary '\B\"^I\n\hƜ','wp-includes/js/dist/dom.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'д}Q\\\'a\d',_binary '\.\\r#6?(r\0!Ȩ\l6U\\-\','',0,'?'),(_binary '{xZ\c\"hb?\','wp-includes/js/dist/dom.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\L塺\\\\*',_binary '\Z\;lcuƚ\\Y>:\jB\q\\<','',0,'?'),(_binary '`\ ƢXv\{\;\','wp-includes/js/dist/edit-post.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i/E]|\Ł\]9~\r',_binary '\"!?esZ\1\\n2\ǔu]','',0,'?'),(_binary 'q\\R+\q\Z2','wp-includes/js/dist/edit-post.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\y\\$6\h',_binary 'N\\V\"xݰL<6\$\w:\\','',0,'?'),(_binary '\_WS\\޲\$','wp-includes/js/dist/edit-site.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZR>bF4\',_binary '1Q&ʼՇn|\\$<\n\nP\\I','',0,'?'),(_binary 's\t]H\\\\n','wp-includes/js/dist/edit-site.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'biB)\N\',_binary 't5.u\`#q\ݝo,f~5\\\0\ա\','',0,'?'),(_binary '\5&$5Q5\\N\','wp-includes/js/dist/edit-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\&d\\¿7z',_binary '\0?bg,\\Z矦`\Z--DtnS\\5','',0,'?'),(_binary '\(\Կ\ɶ۾\趮','wp-includes/js/dist/edit-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œf+M;\\l\\Z\\',_binary '#\Z\(k\\nƹ\\Y2f\HčQ<$&`','',0,'?'),(_binary '	Ie\ԩ[G_6','wp-includes/js/dist/editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '11&%U\0\G',_binary ':\Z\n\ +,[y\2\"1\\mB','',0,'?'),(_binary '\͌%+\e@uQ(\','wp-includes/js/dist/editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\_\\z\=\Dźp\ۭ',_binary ']q\\5Ep\T)\\\f\\\R','',0,'?'),(_binary '\8\\\\R6>G\"\','wp-includes/js/dist/element.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ϴ{|mS~ؼ(',_binary 'pt\0\ 1\rw{\FI\Z\\\}yο\','',0,'?'),(_binary 'E5;\\\\tR$L\','wp-includes/js/dist/element.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\|4x<\܈o4',_binary 'AjjqYqл\T\n\Iz53cr\s\|','',0,'?'),(_binary 'Y/\ޑ\	\\\Z\','wp-includes/js/dist/escape-html.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\/\)\V\\"3\j',_binary 'Pt\ZY6\x2J\8\Ad8a\&|\'\I','',0,'?'),(_binary '	Ӱꅑ\c','wp-includes/js/dist/escape-html.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	I\\wzzW~\HO\9',_binary '\`BE`sr\AI\Hoގ3_ʘ%\	','',0,'?'),(_binary 'h\\\QKV<r:Mg_\\','wp-includes/js/dist/format-library.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\r3N2\0\\Wq\',_binary 'P\c\\q\\c\ۖ<\<\r','',0,'?'),(_binary '&k\0v_fcbv','wp-includes/js/dist/format-library.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w2\#`7Tfc| ',_binary 'B\R\]g(8s\A\ֆ\\9\\\\\b+d','',0,'?'),(_binary 'Ӏ9[\M-g','wp-includes/js/dist/hooks.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eͿ/\bBr~',_binary '7}h\r\ߛ\}\NSy)\','',0,'?'),(_binary '!w<\\\A\n\@O','wp-includes/js/dist/hooks.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y5\\\ں/|\\',_binary 'a\KC\`\d\r\J{HG\t\PKd*','',0,'?'),(_binary '`a(g\"','wp-includes/js/dist/html-entities.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\(%\kc[Nd',_binary '#(u0\Em\&;\Nj\nO\\)\Z\b5B4','',0,'?'),(_binary '?\=@\M$#P7','wp-includes/js/dist/html-entities.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\tƁ\Z\\e\r<۶Vi*',_binary 'eX(\Ț1_O\:[\\[dit-	','',0,'?'),(_binary '#\\u0c}','wp-includes/js/dist/i18n.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q}Q\V\g\\',_binary 'X\z\8u\:u\ШޞPmq\I*b~6','',0,'?'),(_binary '\\i\nj/\r\','wp-includes/js/dist/i18n.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\m\&͞\\\\6\',_binary 'c>|>!eʝd8X7jiF|ՒN','',0,'?'),(_binary '\g\U)\rR(\','wp-includes/js/dist/is-shallow-equal.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)j#\Z>+фd',_binary '{{\2\\rȼC\r8y1RB\\.X','',0,'?'),(_binary 'r=\\\c\\\Mz','wp-includes/js/dist/is-shallow-equal.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\ܧ\\\Z\\',_binary 'Ohҹ&\j\^>E]\'\\TC~j','',0,'?'),(_binary '!ہIǵ`\8t','wp-includes/js/dist/keyboard-shortcuts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^5\S\\\zT\',_binary '\DG<\\YQfB]\y]OC9ŠE\\ǉ','',0,'?'),(_binary '=噄\nAK(\l','wp-includes/js/dist/keyboard-shortcuts.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=r\++<\ڑ\)',_binary ',QGZ%2L/)\0=&Q3o\\$\/','',0,'?'),(_binary ']ǿ|\\IC\','wp-includes/js/dist/keycodes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'\?DR.y[}',_binary 'ؐh,A/js\rS\\Ȧk\=ZT\','',0,'?'),(_binary '*V.XZ\_C[AԀC3','wp-includes/js/dist/keycodes.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')D\r\R~\Ӭ*\\\',_binary 'Ϋ˲\9\\V\5\\\g`A\3\\','',0,'?'),(_binary '(\Օ)\(pwBl','wp-includes/js/dist/list-reusable-blocks.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\\]mt,:]\',_binary '\9 iB\Z\\eyܾgG\Z\M$\%Pʇ','',0,'?'),(_binary '!\xx+![\(','wp-includes/js/dist/list-reusable-blocks.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p˝bnSM˸N/',_binary '\\\DC#o\Q/\H#\U~\','',0,'?'),(_binary '\\JB&9:V\F[','wp-includes/js/dist/media-utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\r\"cYVf\\',_binary '\{\!He-N6ƾ\\)\'qW\','',0,'?'),(_binary 'ܟҿB∶\\\\','wp-includes/js/dist/media-utils.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^oP\U.E1e_\"\',_binary 'Q\֭]z=Y\^!ucfy/v`b\E)\','',0,'?'),(_binary 'K\ȁ;$\\z','wp-includes/js/dist/notices.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>0\^\p\/',_binary '\\\c>\H֢b20n.\@6Yn\6\','',0,'?'),(_binary 'lZq#eS%s\7Y\','wp-includes/js/dist/notices.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\9\_V4',_binary '\\\\ZV\\Hgf\W\\XKc\\\2','',0,'?'),(_binary '\Z\\u\\\iigԄ','wp-includes/js/dist/nux.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Oxx׆',_binary '9c\\Wbǹ1(Ge	\EM\w\n\;','',0,'?'),(_binary 'Asv\\g4U\','wp-includes/js/dist/nux.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I!F	mCgXcHD',_binary '+\!+?\v3\5u\b~P','',0,'?'),(_binary 'Ƭ\SX\Z\3','wp-includes/js/dist/plugins.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\PH *櫔',_binary 'W$2U\Zb\\I\\]|\fv\','',0,'?'),(_binary '\\\H\r #\w/:4','wp-includes/js/dist/plugins.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w\H.	\S\',_binary 'WM\#\A\"њ\\\r0h&\'\N\','',0,'?'),(_binary '\\\W\\\:]','wp-includes/js/dist/primitives.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\*&\5ٲ\\\F',_binary 'mi$Hz\n\\0-$H<F\\n~\"5f','',0,'?'),(_binary 'L,\Z\"\0Cʡ8y','wp-includes/js/dist/primitives.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yJ\߮RwR',_binary '(I\K\*Ui\\y@X`k\\ί$\y*|','',0,'?'),(_binary 'y52m\0l\"e','wp-includes/js/dist/priority-queue.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\Z\\ZF3\0',_binary '\\Xio\\=c-qL\\~r\d\0','',0,'?'),(_binary 'ۋ{S0\0\0=1_ئ\r5','wp-includes/js/dist/priority-queue.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ޮP\\\\r\kH',_binary '\"\?\\G^階t\\'\\mC\','',0,'?'),(_binary '\fk[x\ \\/Y','wp-includes/js/dist/redux-routine.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ǟ]ޣP\\RA\*$*&',_binary '\M)ʙu\H\ZHZ\\蓒\\6\<','',0,'?'),(_binary '\7[*wJ\nn>','wp-includes/js/dist/redux-routine.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k\C20W9',_binary 'L:\X7\P\DZ\\WbQo\$','',0,'?'),(_binary '<i\\\\Q\0','wp-includes/js/dist/reusable-blocks.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\y\A\\\S\',_binary 'w\\,\\}S\@\{\"G\0<','',0,'?'),(_binary 'ؘ\-m4)}	\','wp-includes/js/dist/reusable-blocks.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɀC	[\<YQ',_binary 'T\'>2[O*#U\\KfJ\L\&\R\','',0,'?'),(_binary '_)0d|6_;n','wp-includes/js/dist/rich-text.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u5\ܜ\bt`?\\',_binary '\8q\X\\n\/\\\iF\\\\3>','',0,'?'),(_binary '--\ü$);\J5','wp-includes/js/dist/rich-text.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!T\`\#bq>\',_binary 'L᨞7d\\\0JP_\\O\\\R','',0,'?'),(_binary '\y0H#;\e\n\"+','wp-includes/js/dist/server-side-render.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6 `Cz?\',_binary '8ў 28\X鴇/nT\(\\qV','',0,'?'),(_binary '\$c{97^І\\J\g','wp-includes/js/dist/server-side-render.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k\\}\\\֒<fP',_binary '&\⺙6U\	o\\5\\y\)p','',0,'?'),(_binary 'oS]\~(\\7;\\r','wp-includes/js/dist/shortcode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AҺ\⠙\\G',_binary '%\\\+vCCE\qxƵ\Z\\}͐q	އ\c','',0,'?'),(_binary '\fR/1\\\< PC','wp-includes/js/dist/shortcode.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'pm9/\ʀEI',_binary '\+$O5\E\\\)~[\#$WQɖ','',0,'?'),(_binary 'H\\~\\n\\x|','wp-includes/js/dist/token-list.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ByR\\t\\.y%\U',_binary '5\rA[\G\`2V0 Vܢg\0a>#Ҷ\','',0,'?'),(_binary '\&[>j\\/\\GU','wp-includes/js/dist/token-list.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\	PJ\\\_k',_binary '\.FP\\1\}Lq,\\r}[','',0,'?'),(_binary '1\\pa\`H0ߢ\e','wp-includes/js/dist/url.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\\'y/\w\',_binary 'a˦\ZU@sWiǓΝd\JzM\\\QjL\+','',0,'?'),(_binary '\\oRb','wp-includes/js/dist/url.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JM\\\OfTq\',_binary '\3\N\^\\It\"n\Y[','',0,'?'),(_binary '䑖\w7:\'\h*','wp-includes/js/dist/vendor/lodash.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C`\]1~\\',_binary '׳[p:\	z\\\K\QWwt}H\I(	','',0,'?'),(_binary ',5\Xp\BFdcj+','wp-includes/js/dist/vendor/lodash.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\]!\\8\\',_binary 'ݒk\\"G\\0\\%\\e$û','',0,'?'),(_binary '\&\	A\H\\)I&\','wp-includes/js/dist/vendor/moment.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}J\3p\\\\S\f',_binary '\v\\[c\\e\v;\*WgOAG\@\i&','',0,'?'),(_binary '\]숊YT\\Xm+%','wp-includes/js/dist/vendor/moment.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fok#\/\\ːe',_binary '\\\\\lG&\\<\U[[\m','',0,'?'),(_binary 'Lap8g\V\,\g\','wp-includes/js/dist/vendor/react-dom.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<97\\Y',_binary 'c\Z\\6eԄ\/,^4_\\\g','',0,'?'),(_binary 'A`k{n\/*ScN','wp-includes/js/dist/vendor/react-dom.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Azm)\0\\A',_binary '*\r\r!\@\@$-\a]Ր\r\\\_','',0,'?'),(_binary '|X%jgu@\CJM','wp-includes/js/dist/vendor/react.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm~gQ[[\7\J',_binary 'ĤQ>\م\/K2\\Z\\#\I($','',0,'?'),(_binary '\W31N\gפ\\','wp-includes/js/dist/vendor/react.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rO\u\6\\\',_binary ']\x\\;G\v\\\\Az>vF[ Q\','',0,'?'),(_binary '\8s鎗߹Oh\','wp-includes/js/dist/vendor/regenerator-runtime.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\\5\.E/X\;E~',_binary '\\@\m~cn񏳕Y\>UwG\d\e','',0,'?'),(_binary '\CZ[}\\"\r\j4\','wp-includes/js/dist/vendor/regenerator-runtime.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd蛓 Uu\	\',_binary 'r=\2<˫0\o?\\nU>*,B9\L','',0,'?'),(_binary '䆮G*\~5H\\I','wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ax<ȃ|\\+QW',_binary 'L\cc\9\00p\$ӥ','',0,'?'),(_binary '0\$X8FnŃk\\','wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Մ\;vD$:\~ƌƗ',_binary '\\\r\\|+\\\mA\\I\O<(\\\N\r\g','',0,'?'),(_binary '\۝w6Uu%','wp-includes/js/dist/vendor/wp-polyfill-element-closest.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<j\\ <Yt#\&',_binary 'yNOBӻ\]&6M\-J\.\:.{','',0,'?'),(_binary '\#6K%#f\r\','wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H0\c;`\\W&',_binary '2A]\ڛ\\eWߦkZ\sc<\`\d)\','',0,'?'),(_binary '7\\\kXfXmS','wp-includes/js/dist/vendor/wp-polyfill-fetch.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\sn7z4f\M,\',_binary 'e\b\\\\\2w\'+M\1x?r&>','',0,'?'),(_binary '\w]cIw\Ȱ\H','wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gy\GV\ni\Z\\\\',_binary 'S\Ƹ\Z7Y\\	R7\\>ɕ_R','',0,'?'),(_binary 've׶\\l.х{','wp-includes/js/dist/vendor/wp-polyfill-formdata.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')ĬgI&LɜNn65',_binary '\:q-\\a,/ϝ\ZSKJ\,T\\a\5','',0,'?'),(_binary 'g+\wJoG\\{b','wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\hU4Sm`\\ZS*',_binary 'WV\\\Rq1Sx\-o5x sn\\\','',0,'?'),(_binary '=\\Ѷ\8$','wp-includes/js/dist/vendor/wp-polyfill-node-contains.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/2;\(\U',_binary 'i-;R9\\s	bl\:XJ$\K\	\','',0,'?'),(_binary '~q\IPI\r\\\','wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\eY\۬x2Y',_binary 'gHn~<\0^Ff88\.%x8','',0,'?'),(_binary 'ZԬ=!Ri=\7h','wp-includes/js/dist/vendor/wp-polyfill-object-fit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w$1)x5)L\{p',_binary '\ǈv\㡴y\"0\Mp@\\RTඒ\K','',0,'?'),(_binary '\\6)Jo*Nn+','wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/Ɋz,\ثcm-\|}1',_binary '\;>;\\\\\\Zp;\\^\G?_\n6','',0,'?'),(_binary '\|G\$\\\k\','wp-includes/js/dist/vendor/wp-polyfill-url.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>dKP\'IC\38',_binary 'k\\z\\:\_sDpxe%J\	\ST_','',0,'?'),(_binary '\\\]^\Tꥊ\','wp-includes/js/dist/vendor/wp-polyfill-url.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rt\0X\d\xR`\',_binary '\bՔW?gtRċ\\}DETӇ=','',0,'?'),(_binary '\e\\:֬p6\','wp-includes/js/dist/vendor/wp-polyfill.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\y\A_\<U9',_binary '\s\eo\09\SovK%6\\%_\','',0,'?'),(_binary '2\\\\17Հ\wi{','wp-includes/js/dist/vendor/wp-polyfill.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~G\ȑy+\',_binary '\=gMK;E\\oc	\0','',0,'?'),(_binary '/8&\D\g|\#','wp-includes/js/dist/viewport.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\O+\,W%|:',_binary '}QȌ\\7éxd}\DL@\5,߿|Yy','',0,'?'),(_binary '	h\Xk%>\{NB','wp-includes/js/dist/viewport.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Drݙ\\n',_binary '\\<ճ<|PO=J\\\|k\\\ڽ','',0,'?'),(_binary 'n,\Q\\3b\O','wp-includes/js/dist/warning.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\0WیI\κ',_binary 'tP7Ѿ\Y\5\.N\M\?\\|\','',0,'?'),(_binary 'qsAt\d\\','wp-includes/js/dist/warning.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A7\\U\\rX',_binary 'l)*\r۝,r`U}ު\O\\\','',0,'?'),(_binary 'r3\0=\\\rjBZ','wp-includes/js/dist/widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']k\\9}`\X',_binary 'eɯQ\\03}^ʈ\\rv]{bƋ','',0,'?'),(_binary '8\~#K9{u%\yR\','wp-includes/js/dist/widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\pOk\/&2;\',_binary '*TxUߴQ\\\\r{\\OGLd','',0,'?'),(_binary '2D%J\?\\Z','wp-includes/js/dist/wordcount.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{ȦAr`\{FF',_binary 'oVF\p\7\h`\\\"Ǘ\jE=\','',0,'?'),(_binary '&@p\\\ɗ','wp-includes/js/dist/wordcount.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L6\'\{G\p(\\"(\\s',_binary 'Q\\@\GC^#^oPM,Eԅ^C\Z7','',0,'?'),(_binary '\!(t\<Թ','wp-includes/js/heartbeat.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R[f\\:\\',_binary 'c\V\\g-$6\[\"3i\<~w\\"\N','',0,'?'),(_binary 'n97I.Oҝ޿\','wp-includes/js/heartbeat.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f(\5\\r;^\'',_binary '\\0cޜL+\8Bw\"\Uw./0\nF@J','',0,'?'),(_binary 'y\g\zaU\"	XKG','wp-includes/js/hoverIntent.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$a',_binary 'y\\f`\\D\&\\\LI9\@q=\AL','',0,'?'),(_binary 'S.FȫAj\(:','wp-includes/js/hoverIntent.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g/غ\	E@m',_binary '\\N\_炛od\\@\\2_q\H\','',0,'?'),(_binary '\nNd','wp-includes/js/hoverintent-js.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' p.`u76?',_binary 'Y!\:\nAː	\ګ\Zg\,=|\\','',0,'?'),(_binary '^\^\\Q\\=(w\','wp-includes/js/imagesloaded.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':Vu+sf5i\\',_binary '\\\4H1Pc\)C6cD\aHum\Z#cV','',0,'?'),(_binary '%bQ\bM<\x','wp-includes/js/imgareaselect/border-anim-h.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\\,\ntZ^6{Lp4',_binary 'qs\c\\h\\m-%\x\ZB\x\\'\\E:','',0,'?'),(_binary 'F\\"\\vh\$Lb','wp-includes/js/imgareaselect/border-anim-v.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \z!<\7\\\\*',_binary '\>\\d\:\j1\<\!4\6g\\','',0,'?'),(_binary '<F\\\Pz\22~','wp-includes/js/imgareaselect/imgareaselect.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}(\\()\3󵕯',_binary 'q\!ݿJӇ\i\nE\5s\!\r%','',0,'?'),(_binary '\8/B$8\`m','wp-includes/js/imgareaselect/jquery.imgareaselect.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\?\ES+\',_binary '\\\,OT[9\pmỴ\Ó,\\\=f\','',0,'?'),(_binary '\\ͤ6\\0/k\','wp-includes/js/imgareaselect/jquery.imgareaselect.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wsH\j\\\\',_binary '\&\TK;$(ᢡOg\p\\m]\','',0,'?'),(_binary 'SX+7\1?\\\\-','wp-includes/js/jcrop/Jcrop.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z7e\\Q%K',_binary '!@X7JŃ\p3K\;S*!\L','',0,'?'),(_binary 'g\"}_7\J5','wp-includes/js/jcrop/jquery.Jcrop.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V̞\/Kx',_binary '\2S[6Dv5bs\\=\\NLw\','',0,'?'),(_binary 'T.o@Ψ2w\vX','wp-includes/js/jcrop/jquery.Jcrop.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/aLru\4\Z',_binary 'Ϸ\\ydix{p+\n\eځf','',0,'?'),(_binary 'vޣ\R\','wp-includes/js/jquery/jquery-migrate.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\6?ٳ\t\\r',_binary 't\&\hpzwĝ\&\Ś9&7\v','',0,'?'),(_binary 'a\@o\'\kb\','wp-includes/js/jquery/jquery-migrate.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yk~\x\$K^-3}',_binary '\\\P\y\\\D\\\\cd\~\\P\`7 F/','',0,'?'),(_binary '\\ʙ\0}\\甠K\.','wp-includes/js/jquery/jquery.color.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rq\*XgqO(͈',_binary 'x2<\\\k\\Qݯ\\\\{\\','',0,'?'),(_binary 'vҸ);D~J\"\q','wp-includes/js/jquery/jquery.form.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\f\\\\N',_binary ':\U\\a8\\\ZPI\	\j\','',0,'?'),(_binary '&=\Z+t\\"/k\'\n','wp-includes/js/jquery/jquery.form.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\j\̘/o',_binary '2tvv\|oi=x|\\|','',0,'?'),(_binary 'P\Z\/\l%','wp-includes/js/jquery/jquery.hotkeys.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jhIQLZA$Un\H',_binary 'Tf\RMS\9ºMDR\R\N\','',0,'?'),(_binary '\\-plE\\\k/\','wp-includes/js/jquery/jquery.hotkeys.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S!}EU\\bgh=',_binary '\ZJ]\x ծT\\c0n9  +V\k\','',0,'?'),(_binary 'g#\,vM\:\\','wp-includes/js/jquery/jquery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\mR&l7NHÍK',_binary '\S\\f\\\\0\\\HRE\\0\i؛sf\','',0,'?'),(_binary 'c,[xޫ\3\n@','wp-includes/js/jquery/jquery.masonry.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@`&n|}A',_binary '\\\ۙ\\	}Mg\ $0 [\\\B','',0,'?'),(_binary '\\\\$\IH\\','wp-includes/js/jquery/jquery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]\u\"<Z\\\\',_binary 'VKl\-]\\KC\\R:\\"칾G`jI','',0,'?'),(_binary '{)\4e4p:fW','wp-includes/js/jquery/jquery.query.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\rġ\\Lz;ҿ0\',_binary 'ղ\\<\C=\\H:\LW΍9b\\n','',0,'?'),(_binary '(\g%\0\\4\\l>','wp-includes/js/jquery/jquery.schedule.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&Tk\f؞\',_binary '\?\\vEʔwj\C\P՝\_','',0,'?'),(_binary 'qh665y|\=\?S	','wp-includes/js/jquery/jquery.serialize-object.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*D\B\ru6\\\!',_binary '`RԶ2ɀ`Mx\\i\Gfz\C2','',0,'?'),(_binary '0<Ps\\מH\22','wp-includes/js/jquery/jquery.table-hotkeys.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7?\F5sS5\7,(',_binary 'J<\?Y\SuŪU&\nNy`TkL\','',0,'?'),(_binary '򱠭B\R\zY','wp-includes/js/jquery/jquery.table-hotkeys.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ogo~iI	',_binary '<=;:t_,wăI\,,','',0,'?'),(_binary 'mY}ɽ\?','wp-includes/js/jquery/jquery.ui.touch-punch.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\m\Q4փ\]',_binary 'k>jT@z\\\\՜.OB\j\0\'\\t','',0,'?'),(_binary 'Ƭ+\Z\I\d^i <\0','wp-includes/js/jquery/suggest.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':$tVE\ʿ\',_binary 'r\,K\pŗrq^b\\=rZ\]\6+','',0,'?'),(_binary '3Ƈe\(ú9','wp-includes/js/jquery/suggest.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\+A)\n.;',_binary 'I<{\04`<!jZ8돲\DHW','',0,'?'),(_binary 'V?ON\eZF\\','wp-includes/js/jquery/ui/accordion.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\r\\\Y^q3w\'',_binary 't\8DGF\d\}rlQ\\^\ux','',0,'?'),(_binary '6٨	\:{^D\','wp-includes/js/jquery/ui/accordion.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nSiGi\Wal\Ϭ',_binary 'ق/&+\%\(\o\Z2\','',0,'?'),(_binary 'ߴ\S8\\AТ','wp-includes/js/jquery/ui/autocomplete.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\WOePxa$',_binary 'e\\DxM\(\\y$\ޤ/M\\{\g','',0,'?'),(_binary 'gEd\\1\D}\\','wp-includes/js/jquery/ui/autocomplete.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\j0>Be.',_binary '\]U5	\om\'(>&b\\4R','',0,'?'),(_binary 'VT2e\w\gߋu8','wp-includes/js/jquery/ui/button.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\cG;̭:$,',_binary '\\'Νѫ4Zovi|K\󻙭','',0,'?'),(_binary '\\]/~\qXŎE','wp-includes/js/jquery/ui/button.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\`H\\\\X\vW',_binary 'U\2}\cFA\\\I&ZþWIƙux','',0,'?'),(_binary 'Τe;y\[\9\9','wp-includes/js/jquery/ui/checkboxradio.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\0\y\l\4ǣ',_binary '\4aI-\\g\\Mcҧ','',0,'?'),(_binary 'FCW.\3\ZU\','wp-includes/js/jquery/ui/checkboxradio.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/W	l]9',_binary 'u(\%P\ТπI戯.\'+:\','',0,'?'),(_binary 'HF)\\\,b\','wp-includes/js/jquery/ui/controlgroup.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z8\v\ws{\o',_binary 'o\\9z6\9o2\h\*%UuU@ӧ\Z۲N','',0,'?'),(_binary 'V2\L\\0ۺ\','wp-includes/js/jquery/ui/controlgroup.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S}jCAe`\׍)',_binary 'H\N\\\=6\\8\3\\m~\0\\a','',0,'?'),(_binary 'i2O׍\+s\X.','wp-includes/js/jquery/ui/core.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\7=\\HI',_binary '\\M<&LUC\wd}\LL \Tgz;)GU\\','',0,'?'),(_binary '\%y>}H\o\\(6','wp-includes/js/jquery/ui/core.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~\\0k|\@JN=',_binary '=@\e\\ZqS\\kUe\ր\܊','',0,'?'),(_binary '[\Ge\a\'\i\\','wp-includes/js/jquery/ui/datepicker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.WDiA\\\',_binary '%\\",\r`ֵ\n\|d)&1|\	ɰq\','',0,'?'),(_binary '@k/\I?T,','wp-includes/js/jquery/ui/datepicker.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GgZ\\\w\',_binary 'b^?<!X	3\_S\%\!:\\','',0,'?'),(_binary '!ND\w`\[\','wp-includes/js/jquery/ui/dialog.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvFqǭ\\',_binary '~ҬaX7,\K\\C\r\e\<+yԠ\Z\!','',0,'?'),(_binary 'F\e\}\(\','wp-includes/js/jquery/ui/dialog.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I`a>\\\v\\',_binary ']\#殮M\Xcl?k?\'','',0,'?'),(_binary '\,=9\\\h\6K\','wp-includes/js/jquery/ui/draggable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FL\н2\7\R',_binary '\9\\g\\\\jBl^\k]Q','',0,'?'),(_binary 'p\\7u\L\_{2Û','wp-includes/js/jquery/ui/draggable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*`XŁ6Ht]a',_binary '\\\S\0\\\7\c\E\J(=','',0,'?'),(_binary '\Q\A\	\=H7-','wp-includes/js/jquery/ui/droppable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ѡ0\$8}',_binary '$aX\A\91\n\\\\UL\\'-','',0,'?'),(_binary '\z\\\\|zxv','wp-includes/js/jquery/ui/droppable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L]H	%q\\\7',_binary 'lt\~e\{\\`\\~~=4\\\sqKm\','',0,'?'),(_binary 's\*TV1oE','wp-includes/js/jquery/ui/effect-blind.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X=z\n/7q\g#a',_binary 'tB\Q)\V\V5\\\Tv8V뛥Y/V\','',0,'?'),(_binary '&cYD\#\P{+','wp-includes/js/jquery/ui/effect-blind.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u0\"\\3gY',_binary '\e\Ϯ0\\nkoRF\>ݍ0/=72C','',0,'?'),(_binary 'M/<\P\ߍ\f.\','wp-includes/js/jquery/ui/effect-bounce.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7grt\/[\v<',_binary 'xO\\G79u\\Qő0\\"\0zi]]','',0,'?'),(_binary 'a5[45MepC','wp-includes/js/jquery/ui/effect-bounce.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rmtxL4_\'\J',_binary 'A\\\\$`\L^X$H^\\*','',0,'?'),(_binary '\Z\\Bi/6','wp-includes/js/jquery/ui/effect-clip.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i.HFuF#g4ސt(Ց',_binary '\)>fz\Ȥ\s\\I\\"p\','',0,'?'),(_binary '\U\$\\\*\1^S','wp-includes/js/jquery/ui/effect-clip.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$ Wj#:Z	tW1',_binary ';%Xo`XY\Y\gd\ڷ\!\A\ң*N\','',0,'?'),(_binary '\Z\/̓\T%g4','wp-includes/js/jquery/ui/effect-drop.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gr\'>/{3\\o',_binary 'cXOD\\";nP޻*`\:{y=\)\F','',0,'?'),(_binary '\D\rh}\!\n','wp-includes/js/jquery/ui/effect-drop.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wh\\_cs\\',_binary '\\޼`B\_D\\m6\\C\\k','',0,'?'),(_binary '\\W\{\\\,Yu','wp-includes/js/jquery/ui/effect-explode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ZYmv\g\\',_binary 'HM2\$#WA\;\\+\a3','',0,'?'),(_binary 'ϊ=\\X\bBz\' ','wp-includes/js/jquery/ui/effect-explode.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\)\Dܨ\\\2',_binary '4:r\\y\\Z\r\\\ui媸j\\rˈ\"fn\','',0,'?'),(_binary '\©6\<\\\09ZiR','wp-includes/js/jquery/ui/effect-fade.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?ӊIv.\Pe\\(',_binary '\n\0dq;{\0@%]R^\r@\\o;\vi\','',0,'?'),(_binary '\A\G,\<','wp-includes/js/jquery/ui/effect-fade.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z	\J\b1/?',_binary 'G]E\4\5_\\eCǼ?\v\\x','',0,'?'),(_binary '6\0O\kvzfTN','wp-includes/js/jquery/ui/effect-fold.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\sV\b{\{f',_binary 'fp7\<d\\0u+n\qyGX3\Ist','',0,'?'),(_binary 'P\0\'\0lv\#J<','wp-includes/js/jquery/ui/effect-fold.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C\re(\\\j\"',_binary 'W	ũYקV\Z㹊f\\$3&\O','',0,'?'),(_binary 'ĶƖo\èf{U','wp-includes/js/jquery/ui/effect-highlight.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\'OWk\@y/',_binary 'KKYƕ*$Eb\"\Jf\\sR>\q4g)[','',0,'?'),(_binary '{\Mii2n\6\','wp-includes/js/jquery/ui/effect-highlight.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@q\\0\\\wMʤ:\\K',_binary ')S[n}=T&AX\v\^|uSp\b\\','',0,'?'),(_binary 'vMm*&Z`\'/b\+','wp-includes/js/jquery/ui/effect-puff.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\ON\n\\\n',_binary 'Hu,hjaʹJ\^|a\\8\','',0,'?'),(_binary '\8`9\?BbБ','wp-includes/js/jquery/ui/effect-puff.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M}O\n\\',_binary 'i3\\Z^r Ƣ\$/\\|t2\','',0,'?'),(_binary '=\;{\\\e\65','wp-includes/js/jquery/ui/effect-pulsate.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\/RVt}{h-',_binary '\*פPGk\\~\Z\\tmiFCBvX','',0,'?'),(_binary '\8(\Zj\Z]}','wp-includes/js/jquery/ui/effect-pulsate.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G`)|V\v',_binary '\4]ud\iӣx\\p%E','',0,'?'),(_binary '0\k ?ޞ\\\','wp-includes/js/jquery/ui/effect-scale.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\\6s\\"t9C',_binary 'w:\pUhU\uMpߒC\0\x\ڶx','',0,'?'),(_binary '4;V\\\'/\\f','wp-includes/js/jquery/ui/effect-scale.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M֥O\'A%',_binary '}PiD\$ڶ\C\9\\X\YF\=am','',0,'?'),(_binary '\)#j\dS\eʋ','wp-includes/js/jquery/ui/effect-shake.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kh\\%Vd|\',_binary '+vt(\>\A\\IVqM\  ','',0,'?'),(_binary 'NVԱ\z\Z','wp-includes/js/jquery/ui/effect-shake.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\\'\R8\\Ͱ\	',_binary 'dPf70*( \\\k\2nH48\=','',0,'?'),(_binary '2D[\"\*\"(\\','wp-includes/js/jquery/ui/effect-size.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vhYq|TC',_binary 'x0QE\r_\&&PQ\'\=Xgao\TF','',0,'?'),(_binary '~w`5;F㮮','wp-includes/js/jquery/ui/effect-size.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^:\j#/\r\J',_binary 'U\}\7\Y^y\v4\ZK\&܁Fqy','',0,'?'),(_binary '=a\\\0&','wp-includes/js/jquery/ui/effect-slide.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';yT4\<\Q',_binary 'z\\"\K\EA[_\\\OVPY\\g\2','',0,'?'),(_binary 'Y\\\\]ŞI','wp-includes/js/jquery/ui/effect-slide.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\p5F4(\\!\',_binary 'LǋLq?\c{;\\Q~BJ~\iF','',0,'?'),(_binary '\'g|͹\"jݹ2\','wp-includes/js/jquery/ui/effect-transfer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-l\Qiv\r;zF\',_binary '1jX\(\OroZ\\F\\X\n)ج\f','',0,'?'),(_binary 'l.H|S\{','wp-includes/js/jquery/ui/effect-transfer.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݐ\\0\y\\rd\',_binary '\\	3\\!z\SRo1\vˤ\\'s','',0,'?'),(_binary 'z΋ۗ\`\瀃\\1\0','wp-includes/js/jquery/ui/effect.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\sOj\n',_binary 'ٌ,vPV\\nASj\\M\Z\\%;K','',0,'?'),(_binary '\ݙP(\O\'Ee','wp-includes/js/jquery/ui/effect.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȇzN]\{K>',_binary '\\9G\\s\\s3\arw;UțZ','',0,'?'),(_binary 'euo\\\(\8?5','wp-includes/js/jquery/ui/menu.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<*\Lǉ\\al\',_binary '^(C4AH@\\\a^\\xnH\	obA\"','',0,'?'),(_binary '7c\¢)\\S\eb','wp-includes/js/jquery/ui/menu.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':3\z\\\0I',_binary ']\@ss=YKЎͰl\?Ӂ@\g','',0,'?'),(_binary 'tm\nGO	\'\Z޵','wp-includes/js/jquery/ui/mouse.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\eu\j',_binary '\;-36j\P3q[O}{\\6\CSCk\'2\\','',0,'?'),(_binary '\\:x\=\}','wp-includes/js/jquery/ui/mouse.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!VE\4-u',_binary 'P6ъ\"\n(\;e;3W}\`\','',0,'?'),(_binary 'v>\8\\'\T6\\X','wp-includes/js/jquery/ui/progressbar.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p%7%\C/s',_binary ' \n@B+L\o\&O\\pP	\֗r\\Z^{R','',0,'?'),(_binary '=f\u\A><Th\\@','wp-includes/js/jquery/ui/progressbar.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' A\/\F\R{=',_binary 'w\\\Uº\\]v\\n7\WԁЩ{','',0,'?'),(_binary 'n:\zW_\BSR','wp-includes/js/jquery/ui/resizable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nӑE\0ۂ\',_binary '[\\\!F\KPM\S\ZVӒ\','',0,'?'),(_binary '-i>bs1\','wp-includes/js/jquery/ui/resizable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WCn~mΖM\\',_binary '\Zaqflǃ\L7\\\\'{,n\','',0,'?'),(_binary '~\\\\\_b$\-\!','wp-includes/js/jquery/ui/selectable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gl\\"l\8v\mԚ',_binary '剣hB\n\\\Zbaڢ\[K\\\a\','',0,'?'),(_binary '\v\\\\r\&X','wp-includes/js/jquery/ui/selectable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Kʰ\k9\\EZ',_binary 'OtOrA[*>\\\ks\Luq)s\ 8','',0,'?'),(_binary '\\\\+f6Q\y9','wp-includes/js/jquery/ui/selectmenu.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0.s\\s@{v[p',_binary 'WѤ]##đH!QqH1G*w/י%8\','',0,'?'),(_binary 'S0\־\\K/17u\','wp-includes/js/jquery/ui/selectmenu.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2]g78\9-Zr',_binary '?Kr\\\/y|8\sS\ڈ:','',0,'?'),(_binary 'X\k(D\\qț\G\','wp-includes/js/jquery/ui/slider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\/L\\]\\\',_binary 'aN\UFFd[s\Ѽ@c','',0,'?'),(_binary '\\\\\\AV*籿','wp-includes/js/jquery/ui/slider.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\\\\\E㤷',_binary '>G>t?\\mCj.\an6\t5\(\\x','',0,'?'),(_binary '$_\\\X\la\','wp-includes/js/jquery/ui/sortable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ń2|\*G',_binary '\E!1\&]Č\L\^\qJD','',0,'?'),(_binary 'm-\Zm1\w\\','wp-includes/js/jquery/ui/sortable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\b`\R𯸤',_binary 'f)\\\_\\#ꛣOL\?\r\r}N\;qqc','',0,'?'),(_binary '\\\N\0\\ܹ\t','wp-includes/js/jquery/ui/spinner.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ey$,QB',_binary '\e{Q\v\&\\r:\3ˬ/\\+f','',0,'?'),(_binary 'mE\\\\\)\\o\','wp-includes/js/jquery/ui/spinner.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\Ul?h5',_binary 'U,\\{O3(\>\hH\b7ogy\5','',0,'?'),(_binary 'f\3\Y\\T','wp-includes/js/jquery/ui/tabs.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\?DgP\\"Q)\U',_binary '\꛲Āxd\x5O\\p\S','',0,'?'),(_binary '\(5\aHyo,X','wp-includes/js/jquery/ui/tabs.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\S\m0}\\p\',_binary 'ww.\|I\wFf\Nz>3u_N`QM','',0,'?'),(_binary '\\Yvz\֗*9\\a','wp-includes/js/jquery/ui/tooltip.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<9	tf2y',_binary 'V_+\\\f\Z\u\\V? 6:LeAY','',0,'?'),(_binary '-_\+\\Yn\S','wp-includes/js/jquery/ui/tooltip.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\*\\g(\]y\',_binary '/\n\\Za-[\OHW\\T-63`BL','',0,'?'),(_binary '*\\Z07ѥ1O\\َ8','wp-includes/js/json2.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\{N|EO0',_binary 'q3..j G\\R\nݼI/T-\','',0,'?'),(_binary '\\\)\(\<\\','wp-includes/js/json2.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\x\}\'-8',_binary '?	\\ss(qc!~a\ж\H\\y','',0,'?'),(_binary '\\| ','wp-includes/js/masonry.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';?\&\\TJexH',_binary '$!\|=#fc\jc\:TQ0b\,ʉ','',0,'?'),(_binary 'r\\r(Jg\(yt','wp-includes/js/mce-view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2sHّ;[	s',_binary '\8`9ڰn\-.\	H\Dpk+\γbI','',0,'?'),(_binary '\f\%u\P\\','wp-includes/js/mce-view.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\<\@^P\\'',_binary '#	\\\P\Wdqߋ.\\4Ó\\x<','',0,'?'),(_binary '{\0l(Ʋu9,wS\u','wp-includes/js/media-audiovideo.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n\\Z\:\`',_binary 'O~>[D*b\\5v\mdyA\Zi_\lB','',0,'?'),(_binary 'GV\\z#!;\','wp-includes/js/media-audiovideo.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Tf\E\r\ܷe3',_binary '\-S\?R8#V\\1@_\\\\W\r>^','',0,'?'),(_binary '\u\N\.A_\_\','wp-includes/js/media-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@4Vaˣ\\\\',_binary '9R\\rƲo[\NK\š*h\','',0,'?'),(_binary '	,/Օ!\gyd','wp-includes/js/media-editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sq\\a:\_::ΗF.',_binary '\0Xn\,\TP \QKh&xFH\\u;7','',0,'?'),(_binary 'R\\SC|ju\9A','wp-includes/js/media-grid.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\?Ze\ʠ',_binary '.R%/\\Fv`\R\j\>О','',0,'?'),(_binary '\YRYi/l@HX\','wp-includes/js/media-grid.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yAa\\4\0\k\Z',_binary 'eQ\?\bt\'\u+S\\0\phI\\\fŦ7','',0,'?'),(_binary ')_\\J\\','wp-includes/js/media-models.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0CQX}\nŮQ@M\',_binary '3\;\i,\zö#5C5\n\\4,X\a ','',0,'?'),(_binary 'F \GJ\\B\s7','wp-includes/js/media-models.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\)\\rB',_binary 'vKUZ3 7\Y8z}Nra\Ѹ\B\/','',0,'?'),(_binary 'ȉV?	\\]\)A','wp-includes/js/media-views.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.QS7\2㗫',_binary '\\.o\2a\m\yI\\4t\O','',0,'?'),(_binary 'E?\Юᾠ','wp-includes/js/media-views.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\hn\=|\@j͒\\',_binary '֖u\\\\\5	W\r\\L\5[\~ƥ\X\r\\;','',0,'?'),(_binary '.xϮ\7\_\','wp-includes/js/mediaelement/mediaelement-and-player.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\\n-ۤY',_binary '$9~=:\Z\Fm}A\5ks	V# \*','',0,'?'),(_binary 'y\\!\0pZ\[A','wp-includes/js/mediaelement/mediaelement-and-player.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\iz+*;)E',_binary '-5(\\:oQ[̪\\\\\nm~CP','',0,'?'),(_binary '|Bl\IHҼ\OSƱ','wp-includes/js/mediaelement/mediaelement-migrate.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<C_hz\3\<7',_binary ',b#0!aOVc,ؕSԏIл%\p)','',0,'?'),(_binary ']L0\\eE\"u ','wp-includes/js/mediaelement/mediaelement-migrate.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\OAZn\\0\\?!*\W\',_binary 'q{2\fX\\\\JgXC\c\Y\3\\','',0,'?'),(_binary '\zZf\\\ip^2׎','wp-includes/js/mediaelement/mediaelement.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a\0\Z^2-!]',_binary ' +	M*a)N#kq\Dm]\{\=_b\?','',0,'?'),(_binary 'OOwT\M\r\Y!d','wp-includes/js/mediaelement/mediaelement.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-6\\\\m\\\',_binary '\\%]\cط\Z\7\\nԋ2\','',0,'?'),(_binary '^U\.i\ypG\','wp-includes/js/mediaelement/mediaelementplayer-legacy.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A\Vt\Fƣ',_binary '2\q{Y\*lX[qkd\}\Jp\\\\','',0,'?'),(_binary 'nQ\ʒ\'k\\\"%\','wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\r\\Π;K\۔b/\',_binary 'ߠP x|\ΘQ=	\\TcvL\n*Ȱ','',0,'?'),(_binary 'Ws$8\~Nȁ-@','wp-includes/js/mediaelement/mediaelementplayer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\ĪL\\5\!\n',_binary 'o\^:v\\\mo\\\cTW[\\\k','',0,'?'),(_binary '	?\\\\quM','wp-includes/js/mediaelement/mediaelementplayer.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\5\)\\\ky~',_binary '_Dt3ג3pa;9,\\nigC?3\','',0,'?'),(_binary 'd\@!\\dJ\','wp-includes/js/mediaelement/mejs-controls.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.۷Z#e0<l',_binary 'X\*\\\ZX\(\Z!\Ƚ\D2aB','',0,'?'),(_binary '\bz/T7aHy','wp-includes/js/mediaelement/mejs-controls.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^yq+\S%\\y',_binary '\\\h\A3L:\\'1\ꁠ\\\\','',0,'?'),(_binary '\\\\\\";+\\rxu\\w','wp-includes/js/mediaelement/renderers/vimeo.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\~s\\\i6G/',_binary '\{\\w\-\rzF\v_\\wf\\\','',0,'?'),(_binary 'T܌7`\0\\\(','wp-includes/js/mediaelement/renderers/vimeo.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C9YO\\',_binary '\+\®-FVpݨIht\L\iP%K\\i6','',0,'?'),(_binary 'S\h\\\S\%Tz','wp-includes/js/mediaelement/wp-mediaelement.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%/NqOR\g+\\\',_binary 'F}\Z\n\\\vn\`\Z!TW\s','',0,'?'),(_binary 'D\\\]\|߼$','wp-includes/js/mediaelement/wp-mediaelement.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(D\q|\\\',_binary 'P\E+#Ms;agLe\S\MN\r=','',0,'?'),(_binary '\M\~\n\T|','wp-includes/js/mediaelement/wp-mediaelement.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ꕂv\EK\?\r\~_',_binary '!?[\\_\\r\\=&\\n\-%!y\r\','',0,'?'),(_binary '\\\\N9{;','wp-includes/js/mediaelement/wp-mediaelement.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',m;V*H\\Tt\~X',_binary 'aԋRY哝\\\a\<n[G{=y3\? ','',0,'?'),(_binary '6\\\X/HL','wp-includes/js/mediaelement/wp-playlist.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xl\"o\',_binary '/=àBAo&\\\I1]k~\N\','',0,'?'),(_binary 'ˤԐ{%k\#f\','wp-includes/js/mediaelement/wp-playlist.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\3|G^\cKT\"\',_binary '\'\e\"ʌ_(n\f\ww\\ZN2\+ ','',0,'?'),(_binary 'JE[7U\\\Z\~','wp-includes/js/plupload/handlers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j^R\p2\]e(\"V',_binary ')Mo\\\!D\\i&I\#26\\QTj','',0,'?'),(_binary '\;(Xp`ҙ\\pݷ','wp-includes/js/plupload/handlers.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ix\\\=;|\@\n\',_binary '\0x\0=^?\\:\\zBx\@Ӵ\','',0,'?'),(_binary '\Vڮ\\M\jӁ','wp-includes/js/plupload/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u&\nTIz+',_binary '\0v1\s\N\>cID٦\I\0-','',0,'?'),(_binary 'a\)6\\ю\','wp-includes/js/plupload/moxie.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#C\r5Ǳ\ǒ',_binary '\\\I\9_/x\t5\\(.g\tT\Z}&','',0,'?'),(_binary 'L\VY\*','wp-includes/js/plupload/moxie.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\\ךz\'Xj6yf62',_binary '\'\Z\MN\\\\]$P\'\01va\n\ÿI','',0,'?'),(_binary 'ߔ\\Hu\&\','wp-includes/js/plupload/plupload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ݠ$pZR\>\'|\',_binary '\\"\8[J%.˚cV\r\rE)\'','',0,'?'),(_binary '\v:DY\G','wp-includes/js/plupload/plupload.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6JJ7+\',_binary '+\"\Q\\\/N:T$\\\"\ȯ\r8v_3','',0,'?'),(_binary '5C)\nWu꽝/F\cK','wp-includes/js/plupload/wp-plupload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bi^̹\$x9}z',_binary '3}\ʞi\\\8]`\Q\ଧ%6','',0,'?'),(_binary 'L\\\\e5x?e=\&','wp-includes/js/plupload/wp-plupload.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@nXǑi)',_binary '\>\#ci5\\ct6\\"\\\w)','',0,'?'),(_binary '\?\\\h\\;','wp-includes/js/quicktags.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʵ\\>	%nK{<5',_binary 'mwd\\^ʋ\\r1^K\(<nV\\\','',0,'?'),(_binary 'ߌ\(\\2\\','wp-includes/js/quicktags.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\W˃\q\'\\\t]',_binary 'P6\\0\\j\Q/mt-\J.\qõ','',0,'?'),(_binary 'ˍ\G䯀oe\o','wp-includes/js/shortcode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\\\\\P}\SΊ',_binary 'yae\aK\R\\0%\\xyuy↢','',0,'?'),(_binary 'g\\]bR% Z\E','wp-includes/js/shortcode.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ad\'w#6?\w',_binary '\Q 9I\o\T-79_!\`','',0,'?'),(_binary 'Or#\TG!','wp-includes/js/swfobject.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',I}pe~2q\',_binary '?Lw\.\4M\ՒFJ\>fI鴆','',0,'?'),(_binary '\M\٦M\/`','wp-includes/js/swfupload/handlers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\*\#\0-\Ճp\',_binary 'H#a:1\\\\߯orrj\uz\zV','',0,'?'),(_binary '\`#\\GbC\\֊\','wp-includes/js/swfupload/handlers.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jڙK\~q	\\c=',_binary '\T򌿑\\d\Ty~#\\jI\"++3ɉ','',0,'?'),(_binary '\Z-x7\(A\4\','wp-includes/js/swfupload/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\[`\^-o\QWz',_binary '\:)6a\"3r\\rP\rN4yJַU\q','',0,'?'),(_binary '$\xM1>\_8P\0','wp-includes/js/swfupload/swfupload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\#9\\>&YRg',_binary '\\ݙ\RYY-\ҕ&qW1(K\\','',0,'?'),(_binary '\	1\А々S:(','wp-includes/js/thickbox/loadingAnimation.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"h\r\c\\\\&',_binary 'BF\`F-\lڛRT6\\\Յ\','',0,'?'),(_binary '\\\\tZ\O\' \n','wp-includes/js/thickbox/macFFBgHack.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ȱg\W,/u',_binary 'Rw\/\h\\&q\\]Z_\\\Ngy\\','',0,'?'),(_binary 'v{L\JlōYz\`(','wp-includes/js/thickbox/thickbox.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\P\R\n,(f\',_binary 'Mߍ\V_^ol\'\0\qYL̘)\\','',0,'?'),(_binary 'AE\[`','wp-includes/js/thickbox/thickbox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|}\\Zc%\\9j\',_binary '\b?/a#׼hl\\\rk\\\','',0,'?'),(_binary '9:do\n\p`Ry','wp-includes/js/tinymce/langs/wp-langs-en.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s\/q\\',_binary '\\T\s\\\%\SZ\\\\','',0,'?'),(_binary '	vO.|ߤҵ','wp-includes/js/tinymce/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\\\x:\`\',_binary 'Y\\#wO\g^\'\b\:^\	=跨|\\','',0,'?'),(_binary '\n$z\X`\1Bw','wp-includes/js/tinymce/plugins/charmap/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\5^\',_binary '[B\\Z,;\jfe\MU\j|)\rv>U\F','',0,'?'),(_binary 'k$6O\-Nx','wp-includes/js/tinymce/plugins/charmap/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=B쟄P\rL\\',_binary 'x[G-\90b.zG\\az\>\r','',0,'?'),(_binary 'Aa\@J\\\\\Ł','wp-includes/js/tinymce/plugins/colorpicker/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' C\ȭ?d{׭V',_binary 'B\R\0!䄚\Q\\\'5w','',0,'?'),(_binary ',< \?C]\0A','wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ͶU裦\h\',_binary '\ehӧ&έA3+WTh\n\Z)\?','',0,'?'),(_binary 'HC\\!\\"(','wp-includes/js/tinymce/plugins/compat3x/css/dialog.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wyB\\o\|\\',_binary '\o\Jj$scR\\Q\c\\伍F\\','',0,'?'),(_binary 'gosV\;\\\n$','wp-includes/js/tinymce/plugins/compat3x/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\n\\1\\\oVb',_binary 'CT(\N+,TN\C\\`ީ\','',0,'?'),(_binary '0]qK\'fx\\','wp-includes/js/tinymce/plugins/compat3x/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L{\\p\׶\Ҡ',_binary '\m\澑\[\S3\\\'J\*\\Sts\j\\\','',0,'?'),(_binary '\!#\\I|\F\','wp-includes/js/tinymce/plugins/directionality/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\\"\X	& )\\=ʀ$',_binary '&[\@\\5(\cvLYI6\B;)-','',0,'?'),(_binary '&]0W\\\n)=','wp-includes/js/tinymce/plugins/directionality/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Er\HD\D3@',_binary '<o@:\-\Eg\\\)6^Ѽ\'','',0,'?'),(_binary '\Pw0\h9','wp-includes/js/tinymce/plugins/fullscreen/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\2İ\rm}%',_binary '3\\].\BCBe\ʢ\S\( ?Z{\\\\','',0,'?'),(_binary 's\ŏU\'\\e@d','wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ғ:\K\[\Iw\\g',_binary '`e	n\O\JM%N\hA\{ghf','',0,'?'),(_binary '\\\\9ã>Iz4c','wp-includes/js/tinymce/plugins/hr/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\k+%5l3\!-',_binary '\2`\RiL#e؄4\6\g\po~','',0,'?'),(_binary 'v\\Q-\','wp-includes/js/tinymce/plugins/hr/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	%>);',_binary '؃F\\S\[k\\&f 6+b>','',0,'?'),(_binary 'πtGȩ\D','wp-includes/js/tinymce/plugins/image/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\n4\\\0\=',_binary 'Qv\SI>;41%rf\$@\p\\\\j','',0,'?'),(_binary '	\\\Em[\\l\<','wp-includes/js/tinymce/plugins/image/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-ZC\l­}\莐\',_binary 'y\\T\\Nz+\⃆\\'\\%Y\','',0,'?'),(_binary 'Ebl8y\\}','wp-includes/js/tinymce/plugins/link/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*NȒmQ\\',_binary '\`3cYQ\9Wޭ#l\\p\S+G\\4','',0,'?'),(_binary '\Xډ|\8\\\}\B\','wp-includes/js/tinymce/plugins/link/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\V\\\n]\\Ks\'',_binary '\Z>I\S\е\\v,\qU\\^','',0,'?'),(_binary '!\R\pnL\w\m7','wp-includes/js/tinymce/plugins/lists/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')r?NぼIq\'',_binary '%=r\\dv\ni\zxu)3p','',0,'?'),(_binary '\J0\\\jYg\h','wp-includes/js/tinymce/plugins/lists/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '28:sw9\J',_binary ')b\#4\e*\9(=\QEe0|1\\n','',0,'?'),(_binary '`\;\"-\+~;','wp-includes/js/tinymce/plugins/media/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#@,\4dG\M',_binary 'XHx\0֍X\ZOG\|\{F2','',0,'?'),(_binary 'ƅ|_\i/y\	','wp-includes/js/tinymce/plugins/media/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\'1\Z\\f ',_binary '\n\>\\\EQ\i漺\k}îǲ\','',0,'?'),(_binary 'ƪq悳\','wp-includes/js/tinymce/plugins/paste/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\\\s׶{މ2',_binary '\Z\X8c+xη\\&Wg\`m˴','',0,'?'),(_binary '\,(i7:^\^\#','wp-includes/js/tinymce/plugins/paste/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dX\\z҆֫',_binary 'f\\\0W{?q\\\\\\Ul\P\֫c8','',0,'?'),(_binary 'x덂@}Y\i\+','wp-includes/js/tinymce/plugins/tabfocus/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ώ\@\/@Mm\N\',_binary 'xM\'Ȥ\=\ڷ?$S,Fy֥','',0,'?'),(_binary '\v\\|\-\\','wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!\<\]\\r',_binary '\p[\\\\L7F|˖ZBR','',0,'?'),(_binary '?]P.1\2b','wp-includes/js/tinymce/plugins/textcolor/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%i3\\\\f\\\\',_binary '(\EL\\b[K\!sӊ\nĲ\','',0,'?'),(_binary '͓\Y\36\l\Y','wp-includes/js/tinymce/plugins/textcolor/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\v<h\\\\\\p',_binary '!/\[I\+\r\G\\\ Dխ\7=\'','',0,'?'),(_binary 'G!#h\9	\&','wp-includes/js/tinymce/plugins/wordpress/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\c\\\ Y',_binary '\-[P\g\n\b .\Z\\f-$\%\:','',0,'?'),(_binary 'u\\sy6\'v,\=','wp-includes/js/tinymce/plugins/wordpress/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\\"@rX\\\X',_binary '\mj\\$]\^I\\'G\\[\','',0,'?'),(_binary '. \\0_oE]A_\0PJ','wp-includes/js/tinymce/plugins/wpautoresize/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\.Aj_mr#i',_binary '\'Cb\"B\\N\N\\*r&.X\J','',0,'?'),(_binary '\}\\PÛP\\\Z','wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\B9$v\r	',_binary '\X\-yH\\VKrV\\Y˴t\\X','',0,'?'),(_binary '	P=N>b\"j:~[Q{\','wp-includes/js/tinymce/plugins/wpdialogs/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\We⎆?N\\t',_binary 'n4\\<\Fz\_\5\kig','',0,'?'),(_binary '3\\\\'RKBf','wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QO1/<>%\"\X\\',_binary '6\r*IY\0C9<\\Jږ J*\xD','',0,'?'),(_binary '<\\u꿖\Zܜ\Y\^','wp-includes/js/tinymce/plugins/wpeditimage/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j<\]\@	4',_binary '\r]\"\\!\'sg=\zķQ\2\NK\','',0,'?'),(_binary '\6<\C\﮿V:(r','wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\be& W\\\\Ř',_binary 'Iu{W\mbk_\\\\.cx\rh+K','',0,'?'),(_binary '\\%\0\zfN\pS','wp-includes/js/tinymce/plugins/wpemoji/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SE\x=d~eM',_binary '\"w%%{\=L(\hK\\rƢH\P','',0,'?'),(_binary '@\\,\n\\+k','wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\'\Q8b\/\\a\',_binary '3t\\R>_a>\\0\|ՑVC䦇OB','',0,'?'),(_binary 'u\3!pAf)RM\','wp-includes/js/tinymce/plugins/wpgallery/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_\vQ8_\$\?',_binary '<\\A0\6kJX\nvA/\%O\-v_\\'pA@ئ','',0,'?'),(_binary '\Oӿ;=\\Jzy','wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xlo)\r\\\r\\',_binary '\98\n| W@ѭ|݃v\p5l\','',0,'?'),(_binary 'k\b\gS','wp-includes/js/tinymce/plugins/wplink/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\6lUOaD\Q',_binary '\\jT\q\TI:KZ\\a\n6U7e-','',0,'?'),(_binary 'L\)\\a$D-\ӮJ','wp-includes/js/tinymce/plugins/wplink/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm3\\\\ܖ3\M',_binary 'z\N\'A%\S@4U\\\BDq\','',0,'?'),(_binary '\"Et\ys\\\\Z|g','wp-includes/js/tinymce/plugins/wptextpattern/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E	-No',_binary 'L\IY\ow)\4!:\;?\\','',0,'?'),(_binary '3+z.6Q~]y[','wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#R?\"\`\$`',_binary '!	\n\śU7B\5gr\	1\*;R\','',0,'?'),(_binary '\\q\82v\&#M','wp-includes/js/tinymce/plugins/wpview/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j5qS\rX\\i\\',_binary 'Ej\Z\ZI\\\3J\\GjVݒ6<S\9P','',0,'?'),(_binary 'Wl\y:\\0Vn`d\0','wp-includes/js/tinymce/plugins/wpview/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\rb\!\',_binary ',`it\\\ڎTm\l\\k\s\r=','',0,'?'),(_binary '\Z(>(1bޫZ\','wp-includes/js/tinymce/skins/lightgray/content.inline.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lo7\r79wAU\E',_binary '\\\EP\[\x\v1i0\h;^J','',0,'?'),(_binary '\\\7&\Ȁ','wp-includes/js/tinymce/skins/lightgray/content.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\PIɥ\\<\\',_binary ')\Y@\u&\Kg\0?\\\F\'\X0\ǈ','',0,'?'),(_binary '>\/ᡇ_\\\','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l([qא\\D#\',_binary '\\sٶ\hb2.;\m`F\r^&\H-w	yV~','',0,'?'),(_binary ':X\2\M\\~\','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2\4vLhN\!\\2|',_binary '\\3iA(\\p\\GDڔ\\\\','',0,'?'),(_binary '`\\S`NI^G\','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(i@\G\g\\0\p',_binary 'G\</\14Ņ\L\\5!','',0,'?'),(_binary 't\0\g\a/\','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\-\\\\x\'	',_binary '{ڋ\N\o\\#X+Xe\'\_\\\>\Z','',0,'?'),(_binary 'vڴ\\\V\KP','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\PNڡ\'f\\\',_binary '\r]~[\_˳PB\TA`\*,O','',0,'?'),(_binary 'Q\ԁ\27u\L','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1\\3y1\',_binary '	}\N	<\v\BS%\s\\\S','',0,'?'),(_binary 'P\\0aR\z= ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\gkeͿݾ\\|h',_binary '\Hzj鞨%\p=\Z\\iNAZ\','',0,'?'),(_binary '\Z\l\\\3Ȋ\','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\UՒ\JLm8`v',_binary 'ӛvQk\\\nl\]\`Ε۷\+}\kO','',0,'?'),(_binary '\\\\>+ܞL[\m','wp-includes/js/tinymce/skins/lightgray/img/anchor.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a5q\ȑ_4@',_binary '(afo\\x\DpaQ6\mtk\,\\V^','',0,'?'),(_binary 'L<#\\Z\\\\}','wp-includes/js/tinymce/skins/lightgray/img/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9K\\M:\Tf9',_binary '\\;TO`(6\\,skZc\R\+','',0,'?'),(_binary 'oP\c\o.\r','wp-includes/js/tinymce/skins/lightgray/img/object.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rdP\E}u\n/MA\\ ',_binary '#;!\\I.>\uʍ\SV\m{|\e-','',0,'?'),(_binary 'X\\\g5\(=c','wp-includes/js/tinymce/skins/lightgray/img/trans.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7I \1FGu\j^',_binary '\ \û\ͥJ\OmO:ϙ\\\lW5','',0,'?'),(_binary '\>\~\!\g\q','wp-includes/js/tinymce/skins/lightgray/skin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\B&\pw\',_binary '7>xV&v|­\U& ݷ\"ǥz9j\F%ѽK\\V','',0,'?'),(_binary 'Ĉ^A\+lod\','wp-includes/js/tinymce/skins/wordpress/images/audio.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7~!\\\\0\\\\"w',_binary '\g\\z\\\.gV:[\\ЙH)Ȟ\','',0,'?'),(_binary 'FH30m:s','wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xR\	YX\\ݤ\\\',_binary 'm\Zcĭ\\]\\\[\^\Pw','',0,'?'),(_binary '\\c\\.D\r |\\','wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\Z\?f.\8\\	',_binary '\\.c%c*G~բ>Yd:7\j','',0,'?'),(_binary 'Ȅ\\xy\\\','wp-includes/js/tinymce/skins/wordpress/images/embedded.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p\N\y~\n\"',_binary '{\u\x\\'\Jº@i\"H;\]6h','',0,'?'),(_binary 'F\Ã\\O\fg\','wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1\\\vR',_binary 'N3G\\'`\\+R>P]E\γg/b?UX','',0,'?'),(_binary '_f\\;w\a\\ځ','wp-includes/js/tinymce/skins/wordpress/images/gallery.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_PwPU\4',_binary '<W~\\ض\+\hN\9\\1\_3\ws','',0,'?'),(_binary 'FHȝl\e\#\','wp-includes/js/tinymce/skins/wordpress/images/more-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l,\r\%^x%',_binary '\\Y=\_b|ʧ&f,<\','',0,'?'),(_binary 'N3\j@pu5^','wp-includes/js/tinymce/skins/wordpress/images/more.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n\nm\0;˫\z',_binary '$v\\o^\U A\0\\:\\\Cu','',0,'?'),(_binary '~a%\!P','wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\6#UQ:\|>#\\',_binary '\(\\[\n\̻\oRAo3^\\','',0,'?'),(_binary '#\	>7','wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I\\m\LWyݓH',_binary '\rfl\դ/\;l\\\\\\.6r\#P[\\','',0,'?'),(_binary '@{\J\5䷴X','wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U,:)؋\"\QqY',_binary '\"\Ooۈ\\<\oES-MO÷\YN!','',0,'?'),(_binary '7%Wy~׹P?x\\','wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lzV6`wmZBs\\',_binary '\r 8\&J\34б\ǽ','',0,'?'),(_binary '\3^\\PMY\\HD\','wp-includes/js/tinymce/skins/wordpress/images/video.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\¶\B=\rz3j',_binary 'i\\I/=MMX:M\A\pv\\r\','',0,'?'),(_binary '۪\\\	.\ո\\\\','wp-includes/js/tinymce/skins/wordpress/wp-content.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\Un\0\r',_binary '>\@\:so\\X\=Kd\ku{','',0,'?'),(_binary 'ah#\\8\c\\','wp-includes/js/tinymce/themes/inlite/theme.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4O\\DIc`\EJ',_binary 'pv\T5Z>jj\0\0\f\xa/g=&','',0,'?'),(_binary '\	#A\n#b#=','wp-includes/js/tinymce/themes/inlite/theme.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z=\ro<3E\\\',_binary '\";l\0s\'\lB3q6)8\n@D\','',0,'?'),(_binary 'r+zk; 4\WI','wp-includes/js/tinymce/themes/modern/theme.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(3o\U\2ŝU2',_binary '2.pt\"r\`)\\r.C\l\\\\ZBIX','',0,'?'),(_binary 'n#t=\'\\b]{\','wp-includes/js/tinymce/themes/modern/theme.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\\\E\\|\h(Zf',_binary 'ӣ	}ʫ\E0\).TX\\K\d~\HNlK20','',0,'?'),(_binary '(tTlDά7&MP.','wp-includes/js/tinymce/tiny_mce_popup.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B7I10d\',_binary '\'З/!\Z\a!~)1D\','',0,'?'),(_binary '	\9fވUf\\','wp-includes/js/tinymce/tinymce.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xl\\̡C\kn',_binary '\Zk\	\6|\\{*\Z{H\\\iܝk^','',0,'?'),(_binary 'Gm:MľVLЉ','wp-includes/js/tinymce/utils/editable_selects.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jq2I\'\J9E',_binary 'v\\Gjs\\f	ed\&\g+\\','',0,'?'),(_binary '*\L\m&&2\\nb','wp-includes/js/tinymce/utils/form_utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lUTLi',_binary 'vL\us<*rWҪ\.\0|\Rg\\\','',0,'?'),(_binary '츃v\\6\;~','wp-includes/js/tinymce/utils/mctabs.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '끡\\"Y>xU季',_binary '%Y}ڿ&)MaYgЍ\\\*l','',0,'?'),(_binary '4AIn097c`','wp-includes/js/tinymce/utils/validate.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CL\1?o+;{Y',_binary 'kH\\;\\0kC\s	\'K\#45+eE|\\0','',0,'?'),(_binary 'Tw=+6\\\\','wp-includes/js/tinymce/wp-tinymce.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Af\'2|0\5',_binary 'P\s	$d}ё%\H󃤀\8\','',0,'?'),(_binary '\\\HԹ\\f\k\','wp-includes/js/tinymce/wp-tinymce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1_H0\\US\\@h\',_binary '\\\\_ؕ\\\N͞\\1*\\ǜ\','',0,'?'),(_binary 'p۞\2N<:Z7r','wp-includes/js/tw-sack.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\9>\\',_binary '{n]\\0ֈ\n\r\\\<w˷X)\\:','',0,'?'),(_binary '\h+B\\\\','wp-includes/js/tw-sack.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\X\wOqa',_binary 'k\r<I-\\Vsp6gb4eb\\\fsҸ','',0,'?'),(_binary '\鋭{^MU*\_','wp-includes/js/twemoji.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\Y\a\y',_binary ';9ϛ%ٛۧp\G\r&Ze;eO;j','',0,'?'),(_binary 'M\;C\\\\\8Yyﲏ','wp-includes/js/twemoji.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\	!A֗\//x4\\',_binary 'gs!W-.?\wh\\N\KIt{\|','',0,'?'),(_binary '\\3\\\F\<8','wp-includes/js/underscore.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fPS)(%\\',_binary 'TWd\FɼA\\ۗ\\-\gz ','',0,'?'),(_binary 'u\\<e\x@ֈ>','wp-includes/js/underscore.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\}\\#8\.-?F\',_binary ')u	Iօ\qpӘ*dN\Ÿ9\Z\','',0,'?'),(_binary '<\hj\	44a\2\','wp-includes/js/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2![pNI\5',_binary 'iII4\*\{FZanǠ\)J,T\&g\','',0,'?'),(_binary '&UX\r\L4{\\\','wp-includes/js/utils.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't0\`ߣ\MVi`',_binary 'js@Vna\vt\'ȀD\,݆\T;','',0,'?'),(_binary '](R&!\\1;3\','wp-includes/js/wp-ajax-response.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\wG^aS\F\',_binary '\L\C}\ k\V{\\\ \U\n**\z\','',0,'?'),(_binary 'u)8FG9C(','wp-includes/js/wp-ajax-response.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L~ͺ$(~0',_binary '/OԮD)/8ޫ\MuË\}:z^W\4','',0,'?'),(_binary '!|(\y\W*1Oo2Cu','wp-includes/js/wp-api.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@BY\fbb2lз',_binary '\N_\\R\"T\\\%i\cő	2&H','',0,'?'),(_binary 'ӟ\\\my+\nf\:','wp-includes/js/wp-api.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cHhbzCh\\Bƭ?3',_binary 'c\@\GX޽6ԯ70a{I\\+','',0,'?'),(_binary '.v8-rJŕ\qQ','wp-includes/js/wp-auth-check.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\YT\x\w',_binary 'E\ID(10i|\V:\\^\s\ZXǂ\\9k\OG','',0,'?'),(_binary 'tU\/DsIڤ\st\','wp-includes/js/wp-auth-check.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H6\\b\X+M\'',_binary 'n@\to\:\\\e!65\,KV\\=','',0,'?'),(_binary '\j\8\ď\\Z\','wp-includes/js/wp-backbone.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\JT	\l\Q\\1',_binary '\nT\x\N@s_L`\E*d\Hc?','',0,'?'),(_binary '0<\\\lڿ\J\','wp-includes/js/wp-backbone.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K/\\7\\\b',_binary '\\9J7A\Guq!@/nS]<oe\}\','',0,'?'),(_binary 'Ԓ\\A\\r^','wp-includes/js/wp-custom-header.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C@$ҷSE\#\',_binary '\\\"\y\䓧\}\^H\z\%Z\у','',0,'?'),(_binary 'Z_\"\~J\\\\','wp-includes/js/wp-custom-header.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n(F\̽\',_binary 'e>\\\WZ\]\\m\\l΁jei','',0,'?'),(_binary '=-Xԍn{]pf','wp-includes/js/wp-embed-template.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f%W\^m\y\\\4$',_binary '\)\\\\\A\r\rt\@j\\Y\','',0,'?'),(_binary 'Z Og\nWW2','wp-includes/js/wp-embed-template.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~g\\l\L\9',_binary '\ZkVcLQ<Z+z6i\f&B!4\\ێp܍','',0,'?'),(_binary '\sSk\i<4\'c\-6','wp-includes/js/wp-embed.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~ג\'\J\0䯯',_binary 'V_O\'\\\pk;\\`\O\\r8h~3K','',0,'?'),(_binary '\J~_ofk\\\','wp-includes/js/wp-embed.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\\\p\"\\_\',_binary '~\6sgqkλ}z\Z7\I\1B','',0,'?'),(_binary '\trεF_\ \\\','wp-includes/js/wp-emoji-loader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ͮkM\\}O&#\6',_binary '\̶\ZM儝`\+\0,\\Z \\XF:','',0,'?'),(_binary ';\\\*1\Zn\4\','wp-includes/js/wp-emoji-loader.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BQ\kh\#\',_binary '3E\\!\\\|r.y	uN<\i\e','',0,'?'),(_binary '\\	b8\[y','wp-includes/js/wp-emoji-release.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\oc\\\\ܘ',_binary 'Qd:\[U4&&;J\ͽgr\V','',0,'?'),(_binary '\0\;f\Q\=*Ǖ\','wp-includes/js/wp-emoji.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\׶H;q.',_binary '\\O\)`5g\D?5F!\\\\','',0,'?'),(_binary '[>x;\wn/tH','wp-includes/js/wp-emoji.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+gD>\wfم*D',_binary 'MaF$*\M\_\n8\\v\u\','',0,'?'),(_binary '=V;\\\N.K','wp-includes/js/wp-list-revisions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PbOPxOrs72',_binary '#\;w1.\B\\\3f_;\Pf\','',0,'?'),(_binary 'E4\\fu\r#R:k!jgh','wp-includes/js/wp-list-revisions.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}\Z\ۦ_\\8K',_binary ']\r\o\8\Y6)ryW?\Y\\b\z(','',0,'?'),(_binary 'bv\E\H\\\΄','wp-includes/js/wp-lists.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\]S\1LY%\\\',_binary '\\w\ :~\韆\X\Wj\@g\_\Z-','',0,'?'),(_binary '9e\Ebݾl3','wp-includes/js/wp-lists.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pZ\ZF\\\~¥',_binary 'dvWV<rڍN3z*޶\\\\7\\','',0,'?'),(_binary '#AuI.F/\\','wp-includes/js/wp-pointer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\Z߁@ \r|ɛ[d',_binary 'OȆm~gƷ^96\\}>|̭/\]\\','',0,'?'),(_binary '\Ǉ\\4˓T`k','wp-includes/js/wp-pointer.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"%\\iهkm\\\',_binary 'U\XuǇ\)G,i\\m\\5_MT_','',0,'?'),(_binary '\]jl\'\/x5','wp-includes/js/wp-sanitize.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:k\\Et6Q\',_binary 'yΦV\ }ɛqK>ۈP6\\*\\C\ns}','',0,'?'),(_binary '&\\}?\\Zs`','wp-includes/js/wp-sanitize.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'if05\}$\\]\',_binary 'Ea5/qJ\Xo+#x\[\X86)3\ن>\\','',0,'?'),(_binary '??n\\\\_2gj','wp-includes/js/wp-util.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5Zl.}L{!aN)$',_binary '\	k\\dYn*IӒ_,2\0\\','',0,'?'),(_binary 'H+E~}1Q\\\','wp-includes/js/wp-util.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '76 7$\'/\nC\',_binary 'G7\r<pSC\\\\zʋIG','',0,'?'),(_binary '\A4e\\{^\Z','wp-includes/js/wpdialog.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ʒy\n	\ ep\ԩf',_binary '\\!/\Af\0=G\7h/uU\&g','',0,'?'),(_binary 'ߗ\Qu\!ٶx[','wp-includes/js/wpdialog.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=nR\-\\KP\\=<',_binary 'w\ڇEÞ\\0vӭ\k^Mn','',0,'?'),(_binary 'wt\H\\-s\0\n','wp-includes/js/wplink.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!{TWV',_binary '\@e{F o`+5pQ\'+eC\\','',0,'?'),(_binary '\\\\"\c)j\\"','wp-includes/js/wplink.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\rX\|\0LF',_binary '\Kf\ZAUi/\n$\H5*\\','',0,'?'),(_binary '\\'\B\7S\','wp-includes/js/zxcvbn-async.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=$a\[ZF)^\n\~',_binary '\uQ9ҫ{7o}\\\`\-nW\','',0,'?'),(_binary 'L(\n9[2C6\','wp-includes/js/zxcvbn-async.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\E\\\nO\\\\Yb',_binary '\\'FP\\Z/G\n\J\\\B\\ZIT','',0,'?'),(_binary 'J򾁬\Oh\\sDؾ','wp-includes/js/zxcvbn.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|	#PV	/{M_',_binary 'vXI9\n\1e6\\C\\\\.p+\\"\K','',0,'?'),(_binary '\і\q\\SGKy(','wp-includes/kses.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gX}\l\B]QS\',_binary 'Ġkp\;0\\^?[\jE\ʜ\Tr\ۤ','',0,'?'),(_binary '\\\:m[ݢ:#','wp-includes/l10n.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V)ϓ#\.lf',_binary '9\"x}l\\Ta4 ^\\\b[\n\\\','',0,'?'),(_binary '\\v\E,-O\{\','wp-includes/link-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;_I\z',_binary 'Ϸ\\y@8p\\W\ۗ\B]L\\','',0,'?'),(_binary '_j\\_/\\\yӱ','wp-includes/load.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZUa2<\',_binary '\\]\u\'6p$>ˈ2u]\*w\	x','',0,'?'),(_binary 'D6m\er{pK\O','wp-includes/locale.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ʋ\04)o\ybU^',_binary '\<\6n\'J\\_\	S%\\GVJ','',0,'?'),(_binary 'a\\\(m\EBl\','wp-includes/media-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h\\\D7S1 c=M ',_binary '\	t(\NE&ͷC԰@S\0\00\\#\[:','',0,'?'),(_binary '){\jW-_Q=?\GlҢ','wp-includes/media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \;vpH\'Wx\Zp\',_binary '{m\Lx)\\_G*\7.\^\\6n\X\\','',0,'?'),(_binary '\KQ\}U&;&\\Q','wp-includes/meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ߚY\\0^HmX<\',_binary 'T:\SY\Z\,9\\ĝ.y\','',0,'?'),(_binary '\gI!٭\\\_\','wp-includes/ms-blogs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YYw_s簃@	DEm',_binary '~ۃG\\,,?0\v\f\UӧN\iK','',0,'?'),(_binary 'mA\\Y\\Rb|\S','wp-includes/ms-default-constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\~\8IAAԶh',_binary '\\{\ XNZ\\0K,4\8o3[1\c\','',0,'?'),(_binary '.݁BxKY','wp-includes/ms-default-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZȄ.!\Y21\9\>',_binary '(\;Jќ\<\\^\bkҵxg\'*ەU|\','',0,'?'),(_binary '[\n\G{\\'q:','wp-includes/ms-deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\KMý',_binary '\{\"zGW1ɓDĝ\U\͏\[\\\','',0,'?'),(_binary '뭷\r\!z}MLKE','wp-includes/ms-files.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\〖z\\ޝ	',_binary '\4?X\q)\̃\cfN3.y\\','',0,'?'),(_binary 'v%S[̪Ѿ','wp-includes/ms-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ښw5FSX\\r\\',_binary 'K\s\4Dr\\Xk	\\\".\:a','',0,'?'),(_binary '\_jSX\2\QQ=','wp-includes/ms-load.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\),l\"?V\?%',_binary '#~\\&S@\\]ED}L*\#5+\r','',0,'?'),(_binary 'x9p\2\\w\\B','wp-includes/ms-network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\x3.\',_binary 'ʸ]ST\\\ySo$Vgv\"-j!QGK\','',0,'?'),(_binary 'j&\^\b\','wp-includes/ms-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ĈL@\r#}S',_binary '4n-J\\2Thߕ!\_H/Z\"','',0,'?'),(_binary '\'^D\IG\1\!','wp-includes/ms-site.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '֮HQ$\>fmԹ',_binary '\\\\\SH	`kz3\aC\Wz\','',0,'?'),(_binary '\{A\mm\*K','wp-includes/nav-menu-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JI1E%g䅝\?\&',_binary 'AS%³\[|ZJfRH3#Bl\K\\zH','',0,'?'),(_binary '[\Hn[P\.~\\FU|','wp-includes/nav-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\#́\3i(\',_binary '\p\%F\8\\\,a>\27x\{,x','',0,'?'),(_binary 'MR\l\BFu','wp-includes/option.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SmH\Z!(Mi\\ݕ',_binary 'Ba*V\\f\\$(p%,/E\\`:\	','',0,'?'),(_binary '\rTX\\ \[','wp-includes/php-compat/readonly.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f7\G9ГUe',_binary '\ݢ\70{\\\\Qa}ؗ4l\r','',0,'?'),(_binary 'N|Jвzn\\sw','wp-includes/pluggable-deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\\"j\\2ߖ',_binary '\U\\\=\\co\\=t1\-\\\\r\=','',0,'?'),(_binary 'h0X-\i\\^\G`8','wp-includes/pluggable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w?A\QN',_binary '\kK䒦u[T\0\[\#\Ta!b\/e','',0,'?'),(_binary '\\\00qĊNy)\','wp-includes/plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qL\\\J\\\B',_binary '\0\vuDFZ\0\\\[<?','',0,'?'),(_binary '\ \CY\','wp-includes/pomo/entry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xU&9.%k(]\',_binary '\\\0#\\60I>\\螙\[\7\e|\','',0,'?'),(_binary '48Vt\+^X\','wp-includes/pomo/mo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ց\\\\=T,',_binary 'h\257ּh\\m\\Z0d','',0,'?'),(_binary 'A\\)͹D4\','wp-includes/pomo/plural-forms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's_7\;	]Lvlɟ',_binary '\\T\U#:`B=\\\\ۙNy3\J\','',0,'?'),(_binary '\[K\\b\\28','wp-includes/pomo/po.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' z&\TXL;c',_binary '7\\GZ\XYOz\D_{J\W\/','',0,'?'),(_binary '1W;cN\\"\u','wp-includes/pomo/streams.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\ץ}\S\\_',_binary '\')\\\Z3E\T˜fI#J;:_\\\L j!','',0,'?'),(_binary '\?ڟE\$PF','wp-includes/pomo/translations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\fe\8O+',_binary '\rgޚ®S 9/2=a]O\EǊ\[<','',0,'?'),(_binary 'atU\q^!\0ƣl','wp-includes/post-formats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h%\J|,%Fś@',_binary '\\6x\q\#\n[j\\E99e^Q','',0,'?'),(_binary 'MIM\\rD\-','wp-includes/post-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \n\nL\Ɏ',_binary 'ݮd.\'G!\r\'MABITȭq1U\˖㫶','',0,'?'),(_binary '\\iY\0\nR)','wp-includes/post-thumbnail-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v1~5S8]\\4',_binary '_Lפ,\Κn\ +\E','',0,'?'),(_binary '0jlS\K\','wp-includes/post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S*\Ƅr$\C(\q',_binary 'L\\\fEƸ}ՙI\VH#s\\@-e<','',0,'?'),(_binary ' \A$ۤfCN\37','wp-includes/query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\{4m\',_binary '~2\;S d\ss9@:U=\\t\\\&$n\0,','',0,'?'),(_binary '\KF\nO\i\},\\w\','wp-includes/random_compat/byte_safe_strings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[Bң\J\Ԉ\;',_binary ']Q\˄=Pݵu\Q\{>ϐ\','',0,'?'),(_binary '\\o\w\\Ў\696I','wp-includes/random_compat/cast_to_int.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!>=IO',_binary 'p>2\\x\tn\tq\\\\\\b','',0,'?'),(_binary 'v9b\$L','wp-includes/random_compat/error_polyfill.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X:,t]7=Q\E',_binary '\,t\0_gX%4.\tP]\>JT4','',0,'?'),(_binary '\j\\Z;\nlГ','wp-includes/random_compat/random.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5&}k\\\!6$',_binary 'X8P\\_9\kQ\a[\\-mS\'<@\!V:','',0,'?'),(_binary 't.Õ81','wp-includes/random_compat/random_bytes_com_dotnet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nM@<\\A6\@!Y\\',_binary '.#$.N\.\\\\\"\Cuj%HEJֈ^a','',0,'?'),(_binary '?2yT!s|t\\u}','wp-includes/random_compat/random_bytes_dev_urandom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\\\\\\ZHr\',_binary '\nDfdvPfOn:a\гX\','',0,'?'),(_binary '\\[\D?_[','wp-includes/random_compat/random_bytes_libsodium.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\\\\Տ\d\',_binary '\I\n6\\_\ga8\\y\\].\\','',0,'?'),(_binary '\N iiڭ','wp-includes/random_compat/random_bytes_libsodium_legacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[q7d\v\\z\',_binary '\'֪*	[\0EE*JrVs\\\\\c?','',0,'?'),(_binary '\%I\}P\zW\','wp-includes/random_compat/random_bytes_mcrypt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TԦʙ`PL',_binary '\b=-.X\\T\\Yn\\P\\','',0,'?'),(_binary '\\3\I\98\\\֛\[t','wp-includes/random_compat/random_int.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*RX\ǠͤB\n6',_binary '8\\-%\s\`NaL	\L\M\ʫ\)','',0,'?'),(_binary 'E-j\\1j\\\r\E','wp-includes/registration-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q<۾\Z7Mv\',_binary 'Kd\\_MF X\X.,\'T\\\\6\\\6','',0,'?'),(_binary '5\\h>\\w	N\','wp-includes/registration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\S\\D31\',_binary 'ՙ\vF٫\\P\B8.\\\\8\','',0,'?'),(_binary '\\\Ѝ3>#.','wp-includes/rest-api/class-wp-rest-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q\u!_m\,\N]',_binary '^\Z&O\Z:nʳ\\`n=|rL\1m','',0,'?'),(_binary 'V+@0\pɏhi','wp-includes/rest-api/class-wp-rest-response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f0\\\Sy?',_binary '\fG]< *\:m/K<-C\~5\%Sw','',0,'?'),(_binary ':뭲c\\RPe(','wp-includes/rest-api/class-wp-rest-server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H\:',_binary 'w!c\\5\x5|3]]\I\\G\J','',0,'?'),(_binary 'αZ	\i\Iȏ','wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DR\\Ui\\\мw',_binary '\q\WH^ZN{D} \fR\9ңT','',0,'?'),(_binary 'a\ai\G\}\\\Z ','wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pY\\jp\?',_binary '\\\\QȤ#\f\XN(!\Ty\z\\/cH	','',0,'?'),(_binary '/\\\\5SQU۶v+\','wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{EV\\P\\',_binary '@\\V\]\T\m\\L0\\r=բP]\','',0,'?'),(_binary '6\U\Ѧ\u\','wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0u?r^\Z)\',_binary 'H\\rҀwΰG\`X|$(=vǝV','',0,'?'),(_binary '\\2[\v\\)I\\Q','wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~/\\\/0oҹ	ע\\\',_binary '\g\Z\xEĴ\ΗM&3r\qc\lTG\','',0,'?'),(_binary '\xΔ)NX3u/@4Y','wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'գ=\B\n',_binary 'U\\\ƪvH\'y\\}s,,\\r\\','',0,'?'),(_binary ' zz{\\\LH','wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\"3R0\\',_binary 'zm1\xJ g\Ьxs\sIѻ˸2','',0,'?'),(_binary 'k\0\Z\{ ݛ6\','wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\H.P55\\SX\\',_binary 'RYԃcΥ\݀<˞d^\rs8','',0,'?'),(_binary '.x\\Q}\t\np\','wp-includes/rest-api/endpoints/class-wp-rest-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\WT\_t\J',_binary 'I{7\@z\FaN(YW\'Tm\\3','',0,'?'),(_binary '{\/趒\Z\','wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\eut :F6!',_binary '\6\\Z\\\珬\\\ɘU','',0,'?'),(_binary 'j\Z;\\r\e','wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l5۵y\09\\s,κd',_binary 'D\	\\Kt\L;3Qz \\\\\','',0,'?'),(_binary '\A$\>\\\T.','wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\%\\ʘ\\D6Iy\:',_binary 'Ԋ#!\m\r\\X2nS2Zq\\0)\nhF','',0,'?'),(_binary '\\r\n8n}\\','wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\a<\'&\%a',_binary '՘\DŦP]0|Y\e[\j\\\\"','',0,'?'),(_binary '\Tn\3<[ \\5','wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\\\C>\"Z$d\nd+\\',_binary 'z\-`\\\n\\1Y\%5\\/$\nȶ?','',0,'?'),(_binary '.\Ϡa?馺W8ӵ','wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\'?Z}',_binary 'H\\M4${S	fQA-\\\\j\%\0ݬ','',0,'?'),(_binary '\\\-\\ft\KDs','wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\B\h5\r{\nf',_binary 'IH$\=C9\\\bF\O8M}xŝ','',0,'?'),(_binary '\}Ua&gl\\i)\\!','wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r,86,կDe\\$\',_binary 'o!\jhoP\\\d6$\\޻;\D\rN','',0,'?'),(_binary 'qs\ƞ\ù\\','wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\"\r\K\\\\7\{',_binary '\l߄roH\\x^\\/q`T=f|d','',0,'?'),(_binary '3z\'O\\vJ&\ ','wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\\\=b4s',_binary 'ӛl?=Lyщ4m`\1X\\','',0,'?'),(_binary '\L#\\aW \','wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l#d\00\ckZ<^?',_binary 'D\t彦t\w\wf3;\\D$','',0,'?'),(_binary 'gQir똿\/!','wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')`\\1QD;7Z',_binary '\\D\?\\'·o]4\޽\䒫z8}*','',0,'?'),(_binary 'Cc\iF\h\.n7','wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Rf\0\nj\0i<W',_binary 'NZ؋)_ྟ)I\F`[<K \gm̳','',0,'?'),(_binary 'A\8V,_OX\4\','wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oNZ\w\N\\',_binary '>\hRzIvI\\ePl\n\G\r\\0\','',0,'?'),(_binary '\\_\\ \\0*O','wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u\\u\\tu+]\a',_binary '\\n1ĲAP3\\\C\0{K7QO\f\','',0,'?'),(_binary 'q\_\"\1\F','wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\hR;#\z\3',_binary 'j\2\A\N*/[k5\0\ҕ3Dl>>&\\','',0,'?'),(_binary '\\f	W5\ra\R\\nK','wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.\nGs\J\\',_binary 'k\\"Az:\\LB^HFV\]4X;%N','',0,'?'),(_binary '\Z,z\\ҐU','wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{xh\0C\"\#',_binary 'g&\P\\2\rI+)\rkqAv+','',0,'?'),(_binary 'wes\\i<O\J%','wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZB\\\w\\\T1\',_binary '8\]j޷\?2\y\\\\|Q))!\O','',0,'?'),(_binary 'ˋ\A\FwD4B\0','wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I\X%\\\"',_binary '\m\.\F;|\(lG\\VW\6\re\"p\/','',0,'?'),(_binary '\Ȧ0\ $7O>\\','wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r4e\Cl{',_binary 'N<U\xw\\V\\\\%\xJ','',0,'?'),(_binary 's\y\\%#r\=','wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\~a\D\\1',_binary 'g;\uRyr5L,\I@A\ٖl','',0,'?'),(_binary '\l]g	SDn','wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'བK95\T$Kk%n',_binary 'n\\\T\X\\պ2\/ʋ}3\\^','',0,'?'),(_binary '\\\\\,\\\f\\','wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y2eR\\\ۻI\\',_binary 'Rws\5Ǩ6\\Т\Kx\i,u|\','',0,'?'),(_binary 'ͪuowsFCG[c\','wp-includes/rest-api/fields/class-wp-rest-meta-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8^pي\Y[,\\F.',_binary '$vx%\c7I\\%\\\TH˞\	','',0,'?'),(_binary '\\njݍea!\\ZWdq','wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ٶ\hrdGͶ',_binary '_7\	2w-Tb\	-\710εA\\\f','',0,'?'),(_binary '\\W\MF`3\\$\\','wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\CECZ6e',_binary '\\W\.£\\\;\\	K[\zHEI8A','',0,'?'),(_binary 'I6.:\n(\i\0B\','wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)\\\Z)*jD',_binary 'z7cb{\9\ZJ\0ӣ\7\}\"ϽR[\n[\','',0,'?'),(_binary '\r\<\:\ -{̖H','wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3°\nᄷ\0\a\',_binary '`	\\XOU>8X.\f?m{\nQ]8\\','',0,'?'),(_binary 'Gu5\aԯ\\','wp-includes/rest-api/search/class-wp-rest-post-search-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}*yY\\ը\F',_binary '1SD\\vjk3\0G\<\\'|!','',0,'?'),(_binary 'Y\UL5J\ޔ\v[','wp-includes/rest-api/search/class-wp-rest-search-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\x&\\{\nx\\',_binary '\sޢzj\λ\\'Ҳ\\wE\?\','',0,'?'),(_binary 'bN8hk\','wp-includes/rest-api/search/class-wp-rest-term-search-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\cWU\\ԟ\`B	',_binary 'w\r\j\*ml] t\\PU\rE\','',0,'?'),(_binary 'Ú2\d\=','wp-includes/rest-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$6d9\Oh\\7',_binary '3\n\-˗\\|^\C+^ny\Z','',0,'?'),(_binary '_\0\\d MP~\\D','wp-includes/revision.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\\W-1U\L',_binary '\X\wC\\M󣗼Kv#6Ǜ6FIA\','',0,'?'),(_binary ')Oz=u\\˷','wp-includes/rewrite.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\0B6\"\7\X',_binary '\n\בu\\\\5$Ei4Id','',0,'?'),(_binary '\O\I\\Y\\{=H','wp-includes/robots-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\líܓM',_binary '^\h\R߻u\ɆCZ11\\S\&̊p0','',0,'?'),(_binary '\w\\'6)','wp-includes/rss-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' xr6\2\']e\l#',_binary '\~^Ɏf}n\Bh\i=F\n	\^\,','',0,'?'),(_binary '\\A\\1\Z;','wp-includes/rss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4|\\\e\(r',_binary ':.,0aHA\\05:fs\nf\\\','',0,'?'),(_binary '9} B^?	\\"\','wp-includes/script-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\\e.Ϸ\#Hj',_binary 'E^8-!7\|\\\tNk\\Fh','',0,'?'),(_binary 'Eh\\\\@aq','wp-includes/session.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\NRM<\\\>\',_binary '}\\k+8MU=<;\tI*,\4#','',0,'?'),(_binary 'Vne!\z0u1?','wp-includes/shortcodes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Vo	h,X\',_binary 'E[\?\\\\\e˝RcO\4\\'_\\r','',0,'?'),(_binary '\Hd\\\\\o\CZ','wp-includes/sitemaps/class-wp-sitemaps-index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&a1\\5b}1',_binary 'kZ\\`\*5YuWB-4Y?\{̯\','',0,'?'),(_binary '	J\\;uz','wp-includes/sitemaps/class-wp-sitemaps-provider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$ʲ6ubs|',_binary 'gdw\'ʀ˻\877\&^\%\Z\\\g','',0,'?'),(_binary '\n]Eg\7Oqb\\','wp-includes/sitemaps/class-wp-sitemaps-registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G\\\o\n>',_binary '>\0B\[\\Z>\p\ޏ\a0~5k\[\G','',0,'?'),(_binary '/\\fPj>X','wp-includes/sitemaps/class-wp-sitemaps-renderer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V}dTܧC\"º',_binary ':\i\\K\,\c}i1\d\4l\c2Œ\2','',0,'?'),(_binary 'Q\-C-]C\\\','wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%\nG\n\R6',_binary 'v$͏\\,\5\6X\~Xʧ\ℐ\\\','',0,'?'),(_binary '	\/?\\^E\Ց','wp-includes/sitemaps/class-wp-sitemaps.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5.R\\0Iu\\'tV\',_binary 'ge\;_~_f/Pvhm\H\\g\','',0,'?'),(_binary 'O\\O\M_K7\n\','wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\rg`r\\./ )J',_binary '))\r-⟩\bı\ő]J','',0,'?'),(_binary '\r[\\0\EuJ','wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\t@r',_binary 'ʡ\Gn҄\\\'Ph\֮V\	\\r^','',0,'?'),(_binary '6\ƌ\\C\+','wp-includes/sitemaps/providers/class-wp-sitemaps-users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_\{چ%Jm׉\',_binary 'F\\pd3\\"\n\\Ʃ Y\b','',0,'?'),(_binary '\\y\u\n\c[٧','wp-includes/sitemaps.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`S \EX^YA',_binary '\%\\S\ix3kO\\nz]\','',0,'?'),(_binary '1БY\\\4I^p\','wp-includes/sodium_compat/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`q82G<A9\ZQ\',_binary ']\T=\76uN&=8W<\%\\\\','',0,'?'),(_binary '#\\iU\f\zhJF','wp-includes/sodium_compat/autoload-php7.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\n\4\',_binary '\-\\r*H\^O\<a{X\@\g \+','',0,'?'),(_binary 'ýP7&ݣ`\)','wp-includes/sodium_compat/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Υ\ZBab_ƺ\01Q',_binary '\n譂:|\\D\g\DU\\r\\=','',0,'?'),(_binary 'V\r\3#J\\{','wp-includes/sodium_compat/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\7{(G5',_binary '5<H\\\X0\t>-\\\\','',0,'?'),(_binary 'A;ت\Zܦ\z','wp-includes/sodium_compat/lib/constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{\#l\>m',_binary '\ٹmc(\l\\\'\mt\ˣ[\g\W','',0,'?'),(_binary '\0?H\\0\E}\\"\','wp-includes/sodium_compat/lib/namespaced.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '01\\\vnG\r',_binary ']/r~ʺOC\cxBj/\oU\I*\','',0,'?'),(_binary 'P\\ne\\u\"\','wp-includes/sodium_compat/lib/php72compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\Bcf4\[\\',_binary '\'\{~VA(pX\ȵ\E/\','',0,'?'),(_binary 'ÂuJ\M\/ wy','wp-includes/sodium_compat/lib/php72compat_const.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p{\\[˔	',_binary '9\o\\\Gf\pmeG\#`:Q{`','',0,'?'),(_binary '\\\B\W\\k\rZ{','wp-includes/sodium_compat/lib/ristretto255.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\\S\\\z\\',_binary '\0h\=`]U3g\殼4%19x\*\','',0,'?'),(_binary ',!#QP[;\','wp-includes/sodium_compat/lib/sodium_compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R\P\yBB&F4',_binary '\k\\\i\]J\\	\ƙ۰Tlx','',0,'?'),(_binary '\C	#aS\[','wp-includes/sodium_compat/lib/stream-xchacha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ZXx3)\',_binary 'm\ioj\6XP\J\y\vx\\ܧ','',0,'?'),(_binary 'zmSA}I)','wp-includes/sodium_compat/namespaced/Compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\i\k/\\j\rn3',_binary '1\'ջ.\O\\}5Afi~>\:}s','',0,'?'),(_binary '\wj067@T','wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\2s7\\\i#\E',_binary 'a\\\\\tW\\	\3N\Z\\`xhI\`','',0,'?'),(_binary 'vifuP\0^>d\','wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\SG\˺F\',_binary '[\(R\\\\\$2o\\tb\\','',0,'?'),(_binary 'B^\\tpk\!','wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\*L\TG\\4%P',_binary '-\\nFJ&T\Po\\ϓ\\\2\\','',0,'?'),(_binary 'K\\r\\Uz\\\Z:\'','wp-includes/sodium_compat/namespaced/Core/ChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\V\*\F谯\<l',_binary '\®RlU\\wz\ank\G\t3\','',0,'?'),(_binary '7o^l\:\\B','wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\Iݶ3S',_binary '!MڒޫDw\\we(!\\\=\\ިd\\,GW','',0,'?'),(_binary 'ǝ\^x\JB\Z\3-6','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G5]{\"\V\',_binary 'C\Jr~W\OY*[\:[j)\GЄ\e','',0,'?'),(_binary '\Z\) %iyδ','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}+#z,\e\rEJ-',_binary 'sf\q@\8!yW&ڔA\+/\uY44G','',0,'?'),(_binary 'ΝP|\ڒ\\\\o','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' w^\]緣M',_binary '\\\ZEO\7(nY\h\˨','',0,'?'),(_binary 'h\~cTOoy4|','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\"\#6${ JL\'\"',_binary '\eŇ6\Z(q\&ڶ\\]\\\n\Cliީ','',0,'?'),(_binary '峳$ @z6\0`\/','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ջ}\\B\H\71',_binary '\\"\\beTb$\\\\׉\n~ln\\','',0,'?'),(_binary ';\v\0BK\1д','wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+o~X\ݓ\0\',_binary 'xXѹ\$6\UdZ$\\x\\&3\','',0,'?'),(_binary '4\31@*r\\\\\8','wp-includes/sodium_compat/namespaced/Core/Curve25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ś\L\\\\Pڜ\U',_binary 'c>\5o\\𽃐_T9L~;e7\','',0,'?'),(_binary 'kIK\V[	5','wp-includes/sodium_compat/namespaced/Core/Ed25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v>\\#!n(',_binary '\DFUu|\v/\]\2x_ERL2QlP93s	15','',0,'?'),(_binary '\ب&G\)k{\\','wp-includes/sodium_compat/namespaced/Core/HChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\P\\',_binary 'K\\\d%.RAO\F\\\\\jo-','',0,'?'),(_binary '\\O忯uR\\c[j','wp-includes/sodium_compat/namespaced/Core/HSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[cl\ru	\Сu^',_binary '6p\\\'`+*[AG\4^6Ŋ\%\C','',0,'?'),(_binary '\r@\DZ\䯩','wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!K\	5yS*',_binary '\TyO\%u;\U\}\g\1\)\Z\','',0,'?'),(_binary '70\,		M','wp-includes/sodium_compat/namespaced/Core/Poly1305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qy?;\8V\n',_binary '\0\-\\]뮳XEt)`\\1\C}Mr2\/','',0,'?'),(_binary 'rtIg[\;\\?','wp-includes/sodium_compat/namespaced/Core/Salsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rV\Nck0\}/\Ճ\',_binary 'n\K\kZ\\	\ N$  EК\e\$','',0,'?'),(_binary '6?\^o\#','wp-includes/sodium_compat/namespaced/Core/SipHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r-\e\\r^!~',_binary '\`R\lԥLz\?i\āACH\󞮣Py\n','',0,'?'),(_binary '3p\\\\8lDq','wp-includes/sodium_compat/namespaced/Core/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\*kLwB\d\=',_binary 'ec[dM?H\|\KY\04@ QA:FF \','',0,'?'),(_binary '\5Vx\,$>7dk','wp-includes/sodium_compat/namespaced/Core/X25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڸb\9\M',_binary '\F/\'M%9\}@\fW>S*m','',0,'?'),(_binary 'x\z#\]ru?0O','wp-includes/sodium_compat/namespaced/Core/XChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\\g`ɸ:ڕ^',_binary 'F/QH\0\^l 0BΓի6S@Ph\','',0,'?'),(_binary '\2\\:','wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b4\\'&\\',_binary 'ۼ\4P\'\\\hN\a\>\E5ఛ','',0,'?'),(_binary 'iB\j\\\\\]','wp-includes/sodium_compat/namespaced/Crypto.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G8J+\	z',_binary '>8\'X\i\UbGн\,<T`6\\4Ѝ\','',0,'?'),(_binary '\0J\\\\fx#X{','wp-includes/sodium_compat/namespaced/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\m\w\/\\\\y5\',_binary 'ɐtd7H\}=.t\Cw$`c\'','',0,'?'),(_binary '\*\1G鍫v\Lߟn','wp-includes/sodium_compat/src/Compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']9⛝U@8R/\\\',_binary 'D=&j\Nf\658\߆[Z0G','',0,'?'),(_binary 'QS2\#\\]srt\','wp-includes/sodium_compat/src/Core/BLAKE2b.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\\ͯ\ZHdy4',_binary '-ڣ|A\rcw\H4Up\c\','',0,'?'),(_binary '*\&C:[\r\9N\','wp-includes/sodium_compat/src/Core/Base64/Common.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\\ef\\\\i\'\jW',_binary '6UmЖ%\\?MSA^=X|U\','',0,'?'),(_binary '\\'\7\b\\~ 6','wp-includes/sodium_compat/src/Core/Base64/Original.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ң-\\\с\',_binary '9\0zotID:\0\\g\ I%\~ަ$o','',0,'?'),(_binary '=Jǰja}LIZ','wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pF\\t1\+\',_binary ';}\\\0[\'\rq\\\\\ĥd\;#\.','',0,'?'),(_binary '\0ܚ\ZI丱N','wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oP/\NC.3\',_binary 'ICK]sX\\0\Jnvj2T.}hG','',0,'?'),(_binary 'ISU`uT\\F','wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l{\bOs\_a\>',_binary 'm\n5\\ߐ֞βgJ\\\\3\\\\','',0,'?'),(_binary '&D\\QR\\w]','wp-includes/sodium_compat/src/Core/ChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\-rjiI\أeb',_binary 'b\\E\\\&q\*\\','',0,'?'),(_binary '\$[\\tCŤIw','wp-includes/sodium_compat/src/Core/Curve25519/Fe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qtz\Q\\\\"',_binary '}\؟Zl(y0\Ũz7{d6Ynrh\\\\','',0,'?'),(_binary 'D=\\\\S\C','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\X\\`йKZ',_binary 'SW\,\f\\K{\\\\\\\\^Y/','',0,'?'),(_binary 'z\L5	g5Ď','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\r\Ibw\'-7\',_binary 'uS\{<\n\r߅+-#;᷃QЮ','',0,'?'),(_binary 'yO\0yjeB\nVp\\','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\ƀkvk\r',_binary '\iiLMP4\\ިO_!\iN	','',0,'?'),(_binary '\\\U\\\aE','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wͱ\r0\؅=\',_binary '?E\%\\+\w\r\^\֗.$\i$[W','',0,'?'),(_binary '\uRlt\\\\"\','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7֊i[L9ƁH	',_binary '߹{8(Ïat\0C\n3Q\ڤ\nl?$y\','',0,'?'),(_binary 'Rjq\Iӏ\ZY&','wp-includes/sodium_compat/src/Core/Curve25519/H.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0\rJ`X\\"8by',_binary 'oHiYN3	>\\\\_\\J,S^','',0,'?'),(_binary '\\\\]R>\w.EQ','wp-includes/sodium_compat/src/Core/Curve25519/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yϛ\vj\\n\',_binary '\S\x^\V>m\!-q\\\\D\eV\\\\\','',0,'?'),(_binary 'ᕵ7\\F|[E\l','wp-includes/sodium_compat/src/Core/Curve25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`/\-?h|X.<\\\\',_binary '\q\<\\\S\<i\C%ZNN\\<Mj','',0,'?'),(_binary '5.=d)<peus^','wp-includes/sodium_compat/src/Core/Ed25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}][W\)By\',_binary 'e3\nx\&\\āk\\\٦\|Vs\','',0,'?'),(_binary 'ii\"oC\\`','wp-includes/sodium_compat/src/Core/HChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Rz@\MMQmr\',_binary 'q\X9Oa4A\\\\\'\\\̾e','',0,'?'),(_binary 'lt:{0+7\9C','wp-includes/sodium_compat/src/Core/HSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Hx+\07`}\',_binary '@qzj\I\\ \0DaW6n\{y\','',0,'?'),(_binary '9ksB\\=}\\TŃc7','wp-includes/sodium_compat/src/Core/Poly1305/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\zȒ`(\lE\',_binary '\\\\⯠盍\\\\\\ԵJ\\\_z[','',0,'?'),(_binary '\.I\\nfq\M9','wp-includes/sodium_compat/src/Core/Poly1305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\i\LV=X+	v0~',_binary '4\\-<4,\"VȱXʘî\hR	KF\k','',0,'?'),(_binary '̸-]\Zn','wp-includes/sodium_compat/src/Core/Ristretto255.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k9\wZ\\~ \\'',_binary ' z`WN?]ӟB,K\\Jl\W>k','',0,'?'),(_binary '\Ѻɩuy\\\\}','wp-includes/sodium_compat/src/Core/Salsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b5lJ\#\v',_binary 'c=0\-#-T\S\X&4\\\0\K8\r','',0,'?'),(_binary '\sC<:\<\A\','wp-includes/sodium_compat/src/Core/SecretStream/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\:\Z{\\\5o',_binary '\<\s\6\\0,	Ra\uhX\\c\\\','',0,'?'),(_binary '%..Ct\=\\\\\\`','wp-includes/sodium_compat/src/Core/SipHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\cJ>|Eqv0|bv\ ',_binary 'ܟ\j\pe\MN?\\a\Xi+!S2','',0,'?'),(_binary 'J-狁\\\\"ץ&\','wp-includes/sodium_compat/src/Core/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=DϢڡ`_^WG',_binary '\O\Z ߀\fĲC%OH=\\\2`H%\','',0,'?'),(_binary '\0G\M(\\YlWz\!','wp-includes/sodium_compat/src/Core/X25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pZ\\:!ټ\',_binary '3\l@\\o-\3\S\\Տ&\!\','',0,'?'),(_binary '\ǝ\Q_yd\+','wp-includes/sodium_compat/src/Core/XChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\U iU0\ll9c',_binary '_\v$\U7_*\r?+\^\≾Ā','',0,'?'),(_binary '\ρXn\r\\?\','wp-includes/sodium_compat/src/Core/XSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\Ʈuo7;~z',_binary '\\ %l\y\'#[\_\{E]8%\','',0,'?'),(_binary 'Ь\pI\\YR','wp-includes/sodium_compat/src/Core32/BLAKE2b.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\Ky\\"\J\\',_binary '~T\)_ԇYH+\\ɏ\'	;','',0,'?'),(_binary 'g\Z\Ş\|q(','wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zW\M\&8\3\6',_binary 'TR@pe\\S`FaױC>+\V%\8\JyQ','',0,'?'),(_binary 'e\-\nyV','wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Wwb>E\\yJ',_binary '\'~6ȝ\nB\agz\d\\Q','',0,'?'),(_binary '\v\#q\ȃ\','wp-includes/sodium_compat/src/Core32/ChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EOxٕX\2떭؃',_binary 'x\aJN!e\\"\"Nq\}\AMC1){j','',0,'?'),(_binary 'I	2RNjY\','wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_E u*\`Q',_binary '$cXф\̜\N\b\\\\/\\\','',0,'?'),(_binary '\=}LsQ\n`q&','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[M/*E\<s\W\RG',_binary '\n\\\Xΰ֨PA\\nXj\\';q{a\','',0,'?'),(_binary '\\S>sU)\H','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y$NX\\ll',_binary '[\-\v5<\\M\n\\+Bu.,\5g','',0,'?'),(_binary '\\\\PUac\','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YAG=b\u\',_binary 'z\,ͥ\\t	<{@Y{iys\c(SL','',0,'?'),(_binary '\ĵ>#Bb\\\','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ۓ\\Gc,=c^',_binary '\\\G\c\\t(5\n,9%\\\\)\e','',0,'?'),(_binary '!\h>iq8t\\n','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\\>\@Ue\\U',_binary 'țp\\˄o<O\nOo{\w=S','',0,'?'),(_binary 'Q\10\\\\G,','wp-includes/sodium_compat/src/Core32/Curve25519/H.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x} \\pcK\O',_binary '(H>\\0}\8:e)Ｔ\N/\z\','',0,'?'),(_binary 'nۗ\\vXH)\','wp-includes/sodium_compat/src/Core32/Curve25519/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yϛ\vj\\n\',_binary '\S\x^\V>m\!-q\\\\D\eV\\\\\','',0,'?'),(_binary '\09\k5&\ٙ 7N','wp-includes/sodium_compat/src/Core32/Curve25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\kݢA\D5zyj',_binary 'BQe!Ril\s\nq\R41x\x\Q!','',0,'?'),(_binary '\I/\ZN\2\\\\\\p','wp-includes/sodium_compat/src/Core32/Ed25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\0	hmNP',_binary '\LH$G/bd\+\0ZP5\Y~b\20p','',0,'?'),(_binary '\"\\0\\0L\'M\','wp-includes/sodium_compat/src/Core32/HChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '95e\f#ϝ',_binary '\\i\\rC\\"Գ\r48c\\S\\','',0,'?'),(_binary '*\`Uz]\"L%1','wp-includes/sodium_compat/src/Core32/HSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/Dzxǂ\\',_binary '\\\,\\\\\E{\0/ma\Xi\\','',0,'?'),(_binary '\Z|\\075o\','wp-includes/sodium_compat/src/Core32/Int32.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3NM[\/\\r~H',_binary '\\r\WQ@x[1\ \\\*o9\$','',0,'?'),(_binary '(\\LS[\Wl#\\','wp-includes/sodium_compat/src/Core32/Int64.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%m\S,\\',_binary 'U\\\!6\\/U\cq\\n\\@+','',0,'?'),(_binary '\ue{X1\\\','wp-includes/sodium_compat/src/Core32/Poly1305/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D5\\$ý\n	\\'q0',_binary '\\\"\ԯ-\r6\\e\NID\zB\\r\0\','',0,'?'),(_binary '\V\ZF\\\0\\|','wp-includes/sodium_compat/src/Core32/Poly1305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@Bg\EJƽH',_binary 'i\|\\I\\E\_X綈j\','',0,'?'),(_binary '\|~\\\\\','wp-includes/sodium_compat/src/Core32/Salsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')6):\\\\\',_binary 'H0Lї?㞹.1\M\Ie\\٣','',0,'?'),(_binary 'w\+\0\\\2\R','wp-includes/sodium_compat/src/Core32/SecretStream/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zjo\\0y,*}c',_binary '2p\"Wj\\s\lf&S@\[\\\\"W\','',0,'?'),(_binary 'q0\\5','wp-includes/sodium_compat/src/Core32/SipHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5O&?E	%',_binary '^%%hT,\k2Ȯn=n%:\\','',0,'?'),(_binary '`}+\6L-q[$','wp-includes/sodium_compat/src/Core32/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\`\0\\',_binary '\qƖ\\%/\ygrwÛ\r\LR>=Y','',0,'?'),(_binary '\\@\}~4Gv<m','wp-includes/sodium_compat/src/Core32/X25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\b\f>\=',_binary 'ߺ\`\\'盱\Жx#i\\#','',0,'?'),(_binary '\U6υs\d\~x\','wp-includes/sodium_compat/src/Core32/XChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r*\unrdug\\',_binary '\ҷ<hbo\>\W\\ZN e\ia','',0,'?'),(_binary 'hZ[=\wr','wp-includes/sodium_compat/src/Core32/XSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\:R/\+',_binary '\ɫ\\\:jN\mmR[','',0,'?'),(_binary '\K=X\a:\\'5','wp-includes/sodium_compat/src/Crypto.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-p\0E\cbc',_binary '\"\̘L\\!\{rDnPz^\\X\j\\Lk','',0,'?'),(_binary 'elsUO|R}ܝi','wp-includes/sodium_compat/src/Crypto32.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\r}jǊQX]m',_binary 'ɱ\䱃Fn\2c.n\M\ڣ A','',0,'?'),(_binary '\`~|D%EHwO\','wp-includes/sodium_compat/src/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Ǭ \\',_binary '7.{=5A~\\r~.A(0ZQ\2','',0,'?'),(_binary '\x\OW\r\','wp-includes/sodium_compat/src/PHP52/SplFixedArray.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ئT\ЬԄc\/\',_binary 'TJ),8\q@f\<Dڛ\\rx\\\\F','',0,'?'),(_binary 'u\m-O\\\'ߝ\]#','wp-includes/sodium_compat/src/SodiumException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HDf\\ae\\zR',_binary '㶜\\L>L\N-@G\'\\tmG\ikR߮g\0','',0,'?'),(_binary 'X\=\2h4\/{+','wp-includes/spl-autoload-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\u\{\t\\',_binary '\\,\Z\rM	>܅\g\p\/\	Z\Z#`!.','',0,'?'),(_binary '\\X=UpfpZ','wp-includes/taxonomy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\:\|\w\\!\|\',_binary 'CTCљ\\nw{BD@\Д\{i4','',0,'?'),(_binary '\M\p\0\`knP','wp-includes/template-canvas.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'\!\\'SB|Ȍ\Z',_binary '-tHv*\\A1@M\Mr\\zH8\\\','',0,'?'),(_binary ':+[\gCZ\\\','wp-includes/template-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\	ҿ\\܌~\\\',_binary '\'4\h 䱺[\\E%JH','',0,'?'),(_binary ':=%\\\M\۵','wp-includes/template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\-^{2\`\D<oY',_binary 'ji#7\\\Rc.8狿neƧ9','',0,'?'),(_binary '>hЩ\XX*v1','wp-includes/theme-compat/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ϫ\-\Y\Ds',_binary '\A8}\\\G(oܵSQ\\:z\b','',0,'?'),(_binary '\"8A\n=\ᇼfp5','wp-includes/theme-compat/embed-404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7[R+SA-\Za*e',_binary '}\pN\0\K6\%),\o\`\)1\08','',0,'?'),(_binary 'fֈ\V\Թ)\9','wp-includes/theme-compat/embed-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\me\\\8\\\\',_binary '}Ec\z]#\n\w?y\\Ra0ޅ6','',0,'?'),(_binary '+q^e\\gu\F6\n','wp-includes/theme-compat/embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ţs^\\qcb',_binary 'W\\\5Tp;-n0aO\n\\','',0,'?'),(_binary '\mL0N\"\T~\b\','wp-includes/theme-compat/footer-embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\.+j',_binary 'i\DAJ\ψ;v,gc\%\\	^#','',0,'?'),(_binary 'Qֿ6\yq\88','wp-includes/theme-compat/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\8\\y̻\@\B\5',_binary '][ۭ\}ߟv{cvҧ{PK1~\','',0,'?'),(_binary '&\vA\Q\\c\qw8,','wp-includes/theme-compat/header-embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Omz8\F\\',_binary '\\\})d!q	,@,\\j\v	\\\\E\\','',0,'?'),(_binary 'L\\bP\-I׭1f','wp-includes/theme-compat/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\<w!1',_binary 'q\2\յ\\Ϣ>r\7Nj\	D^\A5\r','',0,'?'),(_binary '\0;\-,\A\Ey\','wp-includes/theme-compat/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\S\;I\(',_binary '\\U\kx\r\\Lb\"\\JAF(u;	\0\&','',0,'?'),(_binary '>\`P\\@\߹','wp-includes/theme-i18n.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f֨\\t\C\saFV',_binary 'KD4\͇c^N\#[!\0\,','',0,'?'),(_binary '\(BA!\\\\\\','wp-includes/theme-templates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{^\A3\\Zl3ǐ',_binary ',\;x*\I*ys\>g\Sח\\d','',0,'?'),(_binary '3\\\औO\5(\','wp-includes/theme.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f<s\kjh椆\{\',_binary '\ňjC$w:;\x[\\u\Rv\','',0,'?'),(_binary 'X\VטO|8}','wp-includes/theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6q\/p/wW\x ',_binary '\\\\\n؟}\BKOIu','',0,'?'),(_binary '\\\+\q\pW\','wp-includes/update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9u6\̴vZg\',_binary 'h\e\\\S!B7]\I<cr	x\\Sv*','',0,'?'),(_binary 'kB˞\b=y\','wp-includes/user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƿ`o$\&\0\ܿ',_binary '13zy\\\w-ԀQy\\+\','',0,'?'),(_binary 'g+yr\\q\D/','wp-includes/vars.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zm\f1q\\˴',_binary 'nl\Z\\\h1he\-M\\5NlbdHpz\','',0,'?'),(_binary '5Z\\\Sμ\v\`69','wp-includes/version.php',0,_binary '!8\;g:P.\n',_binary '!8\;g:P.\n',_binary '\9W&\\T\9qp\\@T\?h','',0,'?'),(_binary 'Y,Qp\gmu#e~','wp-includes/widgets/class-wp-nav-menu-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;d\|h{\fw0.',_binary '7a&5$\m\Zj?#\l:Ű\\0Fжfǃm)=','',0,'?'),(_binary '\TY\PpE\w','wp-includes/widgets/class-wp-widget-archives.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '޾J\p\\ZDAx',_binary '@ o\[\j\S*W}7\\'`\r3\','',0,'?'),(_binary '\\0U\\\\\aS\','wp-includes/widgets/class-wp-widget-block.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\mzb\Z,_O\',_binary 'K˽\r\nR\\\WD4@;\3NA.','',0,'?'),(_binary 'I0\\S$2T\B*','wp-includes/widgets/class-wp-widget-calendar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\#kjXb/\0E',_binary 'u.\)GF\\9?4 \*2\>G\'l','',0,'?'),(_binary 'R\H\r0!d?c&','wp-includes/widgets/class-wp-widget-categories.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+~;\2x\\r`',_binary ':Ia.\\0\"\\W7\"꿩4\','',0,'?'),(_binary 'j\\\\\\Ħ<y\p','wp-includes/widgets/class-wp-widget-custom-html.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ۼ\PL20&',_binary 'l)V\\'B\0:\hֵf;\0<Ń\\½','',0,'?'),(_binary '&饱\\W؀\|','wp-includes/widgets/class-wp-widget-links.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\x/k\h\n\\ֽ[Nv	',_binary '\쇉\,x\\-\DO\,7ш\Q\','',0,'?'),(_binary 'Ὀ\\\5f?hk','wp-includes/widgets/class-wp-widget-media-audio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\P/:\#A',_binary '\P\!𴴨jz\F#\\\dĚMP','',0,'?'),(_binary '\v\'j@\-\*','wp-includes/widgets/class-wp-widget-media-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7_^\\fSɉ]6n#\Z',_binary '>\@ΡD\&\\{\(Dγ\\\\iO#','',0,'?'),(_binary 'PJ~]; `y','wp-includes/widgets/class-wp-widget-media-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\dCa\*C^e~OriA',_binary '\L/\T|\w\pEf1\Ln\!y\','',0,'?'),(_binary '\\_w\ƌ\\\','wp-includes/widgets/class-wp-widget-media-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}◷>y\O\G',_binary '10*\uۤy[\\,\\/7\6\r','',0,'?'),(_binary ']\N\\Jjӎe','wp-includes/widgets/class-wp-widget-media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\>\w\\CҪ',_binary '}?\-\fqq}VQ?\c','',0,'?'),(_binary 'n֢\rV5,\','wp-includes/widgets/class-wp-widget-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\j\+(,^b(',_binary '\PL+witZd\kZ{XV`\t','',0,'?'),(_binary 'Kc#2s/(\"','wp-includes/widgets/class-wp-widget-pages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\!$\\:_:G',_binary '\*\\\"#倮U\8\c\*[\j\'','',0,'?'),(_binary '\6\\~e{\\".w','wp-includes/widgets/class-wp-widget-recent-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<F\\\`\\\\',_binary '\\\ԃO\h	8q\p\=F[r','',0,'?'),(_binary 'l/\n\ԀWͱ-c\','wp-includes/widgets/class-wp-widget-recent-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I%*\19\\',_binary 'u\כw\\xmI\{\cul\\','',0,'?'),(_binary 'y7\MA\@','wp-includes/widgets/class-wp-widget-rss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_!uG(R-Tr١',_binary 'd\nrz/:dj\0\'<o͒4B\\:','',0,'?'),(_binary 'F\rx\w~\\rܱ\\n','wp-includes/widgets/class-wp-widget-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&du\;M\zw',_binary 'La\qT?h$\6\\=\Je\$QRLt','',0,'?'),(_binary '-[ip\\^\\]','wp-includes/widgets/class-wp-widget-tag-cloud.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\l¹\+\XZܚ',_binary 'p^B\&\\\RO\ގD\0','',0,'?'),(_binary '\0\ k~U5T','wp-includes/widgets/class-wp-widget-text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q?JfQ</\',_binary ']ȧKa6	W}t\HlŲ0T','',0,'?'),(_binary 'S\\&\az8\Jض9','wp-includes/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ɇ\vG%\\[\\',_binary '\3\q??\\\\'?O8\]o\ԕ0~|\\\','',0,'?'),(_binary '@\\sB0<{l3\','wp-includes/wlwmanifest.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ԑ\\i\^',_binary '\ƤJľ**X|i\cy-u6p\C-\$*\n','',0,'?'),(_binary 'L\et\"pc(	e\','wp-includes/wp-db.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\\' \{[t',_binary '=\\\\h!\|UǸ\Ә䇧B\u','',0,'?'),(_binary '(\^3N3','wp-includes/wp-diff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \-x\<\z^Wet',_binary 'a\;ɺ\*2Zf1\\"\nNt~>','',0,'?'),(_binary '^\'q\\0\','wp-links-opml.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ln\j\\wX=7I',_binary '7\\\"1j\L?9Y\"\&\kŌVD|\\','',0,'?'),(_binary '$jX])D:','wp-load.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZZ\\o\\T',_binary '\^ƕ/\&\){\':&[[BQ5N','',0,'?'),(_binary '\\r\0FJ\\B\\e\','wp-login.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R=ͧ>C\U\\,\',_binary '\\\J_M-\\p\a	G\1\9ݠ\N','',0,'?'),(_binary '3T.^ƙ<\\','wp-mail.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p~߈\V\\r',_binary '@`\[\?bP\x\<l\X ՞S9[7','',0,'?'),(_binary ';1ы#Y_Nt\','wp-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\&1h\r[\\}',_binary 'r\\%JX,ZxJKͻ(#L\0)\c','',0,'?'),(_binary ',4#(\#','wp-signup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zo[;\0⺟-w/',_binary '\"\d\ދ\\"vK;޶\\\\MP͠\','',0,'?'),(_binary 'o㮚-\;?X:pҡ','wp-trackback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ьWe=]!B\',_binary '\\'ߵ\3M؞Ø5c\oM\U%','',0,'?'),(_binary '4ڂ\L$,K[u\\','xmlrpc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\8\nP*a|/ٳK',_binary 'XdB\c\0\2Ýc\\g\\','',0,'?');
/*!40000 ALTER TABLE `wpjj_wfFileMods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wfHits`
--

DROP TABLE IF EXISTS `wpjj_wfHits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_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=197273 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wfHits`
--

LOCK TABLES `wpjj_wfHits` WRITE;
/*!40000 ALTER TABLE `wpjj_wfHits` DISABLE KEYS */;
INSERT INTO `wpjj_wfHits` (`id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES (196476,0.000000,1647348996.913679,_binary '\0\0\0\0\0\0\0\0\0\0\G\8',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/sketch/404.php','http://simplesite.com','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),(196837,0.000000,1647897513.898997,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=standard&cronKey=6d52e01b14744d28bc863fad3d9057b0&signature=d23a73c55ee9b1fec2cd3bfe71419562a79e78342b335e2d5d70ae73c5b5e6f9&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196838,0.000000,1647897561.685504,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=b10be9803847c9d6b1f79b8decd7c7c3&signature=a91bcd08d9b1a3c1616af647ea01ec5aa89957feba4d9f921d60a31c7fa2ab71&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196839,0.000000,1647897610.849918,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=aedf1315a914123dbabedde7779e2504&signature=882db91d39874cb5cecddc204d00d373e6ed5e7a6afce4a7c102287376a85a66&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196226,0.000000,1646922211.119379,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196225,0.000000,1646922211.119817,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196224,0.000000,1646922199.232667,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196223,0.000000,1646922199.232362,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196222,0.000000,1646911422.089241,_binary '\0\0\0\0\0\0\0\0\0\0yq]',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(196221,0.000000,1646911421.365243,_binary '\0\0\0\0\0\0\0\0\0\0yq]',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(196220,0.000000,1646911420.364642,_binary '\0\0\0\0\0\0\0\0\0\0ys\',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(196219,0.000000,1646911418.563339,_binary '\0\0\0\0\0\0\0\0\0\0ys\',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(196218,0.000000,1646910264.836751,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=0bea4d569d5da738f2bb6c10dbbc1921&signature=c4284ff4b4111d0fb44e316277c3cefa74feaa35698e731b11632d2ebfbfca88&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196513,0.000000,1647418069.601791,_binary '\0\0\0\0\0\0\0\0\0\0_',0,301,0,0,0,'https://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196512,0.000000,1647418065.783615,_binary '\0\0\0\0\0\0\0\0\0\0_',0,301,0,0,0,'https://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196511,0.000000,1647412835.425666,_binary '\0\0\0\0\0\0\0\0\0\0)>',0,404,0,0,0,'http://kclgenetics.com/old-index.php','http://simplesite.com','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),(196510,0.000000,1647394726.725710,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647394716&nonce=m6qKiCDe6v&body-hash&signature=%2BNpdBFWoz8Kk7wWojzSTfQfVduE%3D','https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647394716&nonce=m6qKiCDe6v&body-hash&signature=%2BNpdBFWoz8Kk7wWojzSTfQfVduE%3D','Jetpack by WordPress.com','',NULL,NULL),(196477,0.000000,1647348999.477937,_binary '\0\0\0\0\0\0\0\0\0\0\G\8',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/sketch/404.php','http://simplesite.com','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),(196478,0.000000,1647349017.247604,_binary '\0\0\0\0\0\0\0\0\0\0\G\8',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/sketch/404.php','http://simplesite.com','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),(196479,0.000000,1647349219.126218,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(196480,0.000000,1647349220.512043,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(196481,0.000000,1647349221.260391,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,200,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(196482,0.000000,1647349221.953575,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(196483,0.000000,1647355759.780726,_binary '\0\0\0\0\0\0\0\0\0\0_oŁ',0,404,0,0,0,'http://kclgenetics.com/media-admin.php/404.php','http://simplesite.com','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),(196484,0.000000,1647359799.827638,_binary '\0\0\0\0\0\0\0\0\0\0\V',1,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0','',NULL,NULL),(196485,0.000000,1647359807.515795,_binary '\0\0\0\0\0\0\0\0\0\0\V',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.2','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0','',NULL,NULL),(196486,0.000000,1647359809.510260,_binary '\0\0\0\0\0\0\0\0\0\0\V',1,200,0,0,0,'http://kclgenetics.com/?wordfence_lh=1&hid=8973AADE19AF61AD9C3C45C6B9EA7691&r=0.04678350186935998','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0','',NULL,NULL),(196487,0.000000,1647363240.649871,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196488,0.000000,1647363243.342705,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196489,0.000000,1647363244.404199,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196490,0.000000,1647363263.848026,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196491,0.000000,1647368606.640674,_binary '\0\0\0\0\0\0\0\0\0\0hȗ',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',NULL,NULL),(196492,0.000000,1647368614.584861,_binary '\0\0\0\0\0\0\0\0\0\0hȗ',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',NULL,NULL),(196493,0.000000,1647368616.345387,_binary '\0\0\0\0\0\0\0\0\0\0hȗ',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',NULL,NULL),(196494,0.000000,1647381025.185640,_binary '\0\0\0\0\0\0\0\0\0\0\',0,404,0,0,0,'http://kclgenetics.com/1.php','http://simplesite.com','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),(196495,0.000000,1647381098.830537,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=standard&cronKey=afd1b5d66ef03829d085c90f10ae7138&signature=50377bbcb66a09298bd97a0ac55bdd689f963c528f0b1d4cfd60002c37128b26&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196496,0.000000,1647381149.035892,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=dd6b7802efce22f2811072aa39b76ce8&signature=9b3f928852a93546f48082b1ebb56be69b9eef3dfbdcb4e6103801ef1bb19896&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196497,0.000000,1647381197.471444,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=ff22b82a416d2d660dfb2daaa3a34969&signature=901ebbd5e2199539d735b7edf7ee973e448a226106c56948faeaff0889996a13&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196498,0.000000,1647381245.878455,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=fbdb9dc792d4fbf292d5b1bd27980ca5&signature=11db599a1e37402ced4870eb357eae360a1860ec1e1d3c6107184019456e3a0f&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196499,0.000000,1647381294.447355,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=d9ca20288306ca9963be1f8749e454e1&signature=00e92e36fbf404296898ac0270e1ff98f93134efd427c510fcc19a025f750147&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196500,0.000000,1647381343.472141,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=16bbec94aa4ea5f8259633b598806280&signature=5a15ce674c5895780ca4d740ca16698d10d1e8e6824b6ad36c76f44a8af24b81&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196501,0.000000,1647381378.001603,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=39aa6df89fa2f3e058f429e8eeb20f4e&signature=af2718294331c8a44e8095e64708bc516aec2ae25ba8fd988b0c0bebcb3afc84&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196502,0.000000,1647382432.012825,_binary '\0\0\0\0\0\0\0\0\0\0\Ӳ',0,301,0,0,0,'http://kclgenetics.com/patior/index.php','http://simplesite.com','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),(196503,0.000000,1647382433.750636,_binary '\0\0\0\0\0\0\0\0\0\0\Ӳ',0,301,0,0,0,'http://kclgenetics.com/patior/index.php','http://simplesite.com','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),(196504,0.000000,1647382532.324890,_binary '\0\0\0\0\0\0\0\0\0\0-',0,404,0,0,0,'http://kclgenetics.com/local.php','http://simplesite.com','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),(196505,0.000000,1647384021.765865,_binary '\0\0\0\0\0\0\0\0\0\0#\V',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196506,0.000000,1647384023.263081,_binary '\0\0\0\0\0\0\0\0\0\0#\V',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196507,0.000000,1647390642.873935,_binary '\0\0\0\0\0\0\0\0\0\06',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196508,0.000000,1647390642.873623,_binary '\0\0\0\0\0\0\0\0\0\0\"\U',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196509,0.000000,1647394721.244598,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647394716&nonce=m6qKiCDe6v&body-hash&signature=%2BNpdBFWoz8Kk7wWojzSTfQfVduE%3D','https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647394716&nonce=m6qKiCDe6v&body-hash&signature=%2BNpdBFWoz8Kk7wWojzSTfQfVduE%3D','Jetpack by WordPress.com','',NULL,NULL),(195957,0.000000,1646518451.777416,_binary '\0\0\0\0\0\0\0\0\0\0~',0,301,0,0,0,'http://www.kclgenetics.com/','https://lm.facebook.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(195958,0.000000,1646518456.492904,_binary '\0\0\0\0\0\0\0\0\0\0~',0,301,0,0,0,'http://www.kclgenetics.com/','https://lm.facebook.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(195959,0.000000,1646518457.477310,_binary '\0\0\0\0\0\0\0\0\0\0~',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','http://www.kclgenetics.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(195960,0.000000,1646518458.247520,_binary '\0\0\0\0\0\0\0\0\0\0~',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','http://www.kclgenetics.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(195961,0.000000,1646525911.985419,_binary '\0\0\0\0\0\0\0\0\0\0:e\',0,301,0,0,0,'http://www.kclgenetics.com/','http://m.facebook.com','Mozilla/5.0 (iPhone; CPU iPhone OS 15_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/19C56 [FBAN/FBIOS;FBDV/iPhone13,4;FBMD/iPhone;FBSN/iOS;FBSV/15.2;FBSS/3;FBID/phone;FBLC/en_US;FBOP/5]','',NULL,NULL),(195962,0.000000,1646525916.433490,_binary '\0\0\0\0\0\0\0\0\0\0:e\',0,301,0,0,0,'http://www.kclgenetics.com/','http://m.facebook.com','Mozilla/5.0 (iPhone; CPU iPhone OS 15_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/19C56 [FBAN/FBIOS;FBDV/iPhone13,4;FBMD/iPhone;FBSN/iOS;FBSV/15.2;FBSS/3;FBID/phone;FBLC/en_US;FBOP/5]','',NULL,NULL),(195963,0.000000,1646528862.127013,_binary '\0\0\0\0\0\0\0\0\0\0\8\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(195964,0.000000,1646528870.939208,_binary '\0\0\0\0\0\0\0\0\0\0\8\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(195965,0.000000,1646528879.085170,_binary '\0\0\0\0\0\0\0\0\0\0\8\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(195966,0.000000,1646528886.171444,_binary '\0\0\0\0\0\0\0\0\0\0\8\',0,404,0,0,0,'http://kclgenetics.com/blog/wp-includes/wlwmanifest.xml','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(195967,0.000000,1646528891.742202,_binary '\0\0\0\0\0\0\0\0\0\0\8\',0,200,0,0,0,'http://kclgenetics.com/blog//?author=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(195968,0.000000,1646528892.423998,_binary '\0\0\0\0\0\0\0\0\0\0\8\',0,301,0,0,0,'http://kclgenetics.com/blog//?author=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(195969,0.000000,1646528893.278275,_binary '\0\0\0\0\0\0\0\0\0\0\8\',0,200,0,0,0,'http://kclgenetics.com/blog//?author=2','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(195970,0.000000,1646528893.942512,_binary '\0\0\0\0\0\0\0\0\0\0\8\',0,301,0,0,0,'http://kclgenetics.com/blog//?author=2','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(195971,0.000000,1646528895.587467,_binary '\0\0\0\0\0\0\0\0\0\0\8\',0,301,0,0,0,'http://kclgenetics.com/blog//wp-json/wp/v2/users/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(195972,0.000000,1646528896.319790,_binary '\0\0\0\0\0\0\0\0\0\0\8\',0,301,0,0,0,'http://kclgenetics.com/blog//wp-json/wp/v2/users/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(195973,0.000000,1646528897.180346,_binary '\0\0\0\0\0\0\0\0\0\0\8\',0,301,0,0,0,'http://kclgenetics.com/blog//wp-json/oembed/1.0/embed?url=http://kclgenetics.com/blog/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(195974,0.000000,1646528897.829993,_binary '\0\0\0\0\0\0\0\0\0\0\8\',0,301,0,0,0,'http://kclgenetics.com/blog//wp-json/oembed/1.0/embed?url=http://kclgenetics.com/blog/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(196796,0.000000,1647876156.281713,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196795,0.000000,1647874019.213869,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/jobart/doc.php','http://simplesite.com','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),(196794,0.000000,1647874019.213850,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/jobart/doc.php','http://simplesite.com','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),(196793,0.000000,1647872417.528049,_binary '\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://kclgenetics.com/small.php','http://simplesite.com','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),(196792,0.000000,1647871668.277167,_binary '\0\0\0\0\0\0\0\0\0\0\M',0,301,0,0,0,'http://kclgenetics.com/patior/index.php','http://simplesite.com','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),(196791,0.000000,1647871663.097706,_binary '\0\0\0\0\0\0\0\0\0\0\M',0,301,0,0,0,'http://kclgenetics.com/patior/index.php','http://simplesite.com','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),(196790,0.000000,1647868659.603692,_binary '\0\0\0\0\0\0\0\0\0\0{1',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0(compatible;MSIE9.0;WindowsNT6.1;Trident/5.0)','',NULL,NULL),(196789,0.000000,1647864709.771016,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/comments/feed/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196981,0.000000,1648047254.064703,_binary '\0\0\0\0\0\0\0\0\0\0BHS',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196980,0.000000,1648047251.745201,_binary '\0\0\0\0\0\0\0\0\0\0BHP',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196979,0.000000,1648047250.662190,_binary '\0\0\0\0\0\0\0\0\0\0BHQ',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196978,0.000000,1648047238.447612,_binary '\0\0\0\0\0\0\0\0\0\0BHL',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196977,0.000000,1648047238.447630,_binary '\0\0\0\0\0\0\0\0\0\0BHP',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196976,0.000000,1648047238.447862,_binary '\0\0\0\0\0\0\0\0\0\0BHQ',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196975,0.000000,1648035304.570110,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=7d9b73c4930f3ca8c7d2dcd321ffe8f8&signature=65464b6cfe80571929276cf2014d7be2e8210504cbf4048e1c03f00da7a52a61&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196823,0.000000,1647884523.711711,_binary '\0\0\0\0\0\0\0\0\0\0-{',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36','',NULL,NULL),(196824,0.000000,1647887296.756748,_binary '\0\0\0\0\0\0\0\0\0\0{',0,404,0,0,0,'http://kclgenetics.com/jindex.php','http://simplesite.com','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),(196825,0.000000,1647887296.757230,_binary '\0\0\0\0\0\0\0\0\0\0{',0,404,0,0,0,'http://kclgenetics.com/jindex.php','http://simplesite.com','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),(196821,0.000000,1647884517.203696,_binary '\0\0\0\0\0\0\0\0\0\0-',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36','',NULL,NULL),(196822,0.000000,1647884523.711997,_binary '\0\0\0\0\0\0\0\0\0\0-',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36','',NULL,NULL),(196820,0.000000,1647884517.341396,_binary '\0\0\0\0\0\0\0\0\0\0-{',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36','',NULL,NULL),(196819,0.000000,1647883914.495842,_binary '\0\0\0\0\0\0\0\0\0\0\H',0,301,0,0,0,'http://kclgenetics.com/vim/patior/index.php','http://simplesite.com','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),(196818,0.000000,1647883905.684722,_binary '\0\0\0\0\0\0\0\0\0\0\H',0,301,0,0,0,'http://kclgenetics.com/vim/patior/index.php','http://simplesite.com','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),(196817,0.000000,1647880904.798151,_binary '\0\0\0\0\0\0\0\0\0\0\\7',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196816,0.000000,1647880904.050998,_binary '\0\0\0\0\0\0\0\0\0\0\\7',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196815,0.000000,1647880903.377617,_binary '\0\0\0\0\0\0\0\0\0\0\\7',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196814,0.000000,1647880902.653187,_binary '\0\0\0\0\0\0\0\0\0\0\\7',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196813,0.000000,1647880901.964583,_binary '\0\0\0\0\0\0\0\0\0\0\\7',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196812,0.000000,1647880901.213643,_binary '\0\0\0\0\0\0\0\0\0\0\\7',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196784,0.000000,1647864114.573697,_binary '\0\0\0\0\0\0\0\0\0\0];',0,301,0,0,0,'http://larsonspolledherefords.com/kclgenetics.com/index.php/kcl-4002-bonissa-65k-92s-3','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196917,0.000000,1647961738.411716,_binary '\0\0\0\0\0\0\0\0\0\0(M:',0,301,0,0,0,'http://kclgenetics.com/index.php/cl-1-domino-955w','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196918,0.000000,1647962834.726135,_binary '\0\0\0\0\0\0\0\0\0\03i;',0,404,0,0,0,'https://kclgenetics.com/paypal/transparent/requestSecureToken/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Safari/537.36','',NULL,NULL),(196916,0.000000,1647961737.711537,_binary '\0\0\0\0\0\0\0\0\0\0(M:',0,301,0,0,0,'http://kclgenetics.com/index.php/cl-1-domino-955w','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196907,0.000000,1647956268.763776,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(196908,0.000000,1647956269.740930,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,200,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(196909,0.000000,1647956270.533801,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(196910,0.000000,1647960799.043155,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196911,0.000000,1647960799.043153,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196912,0.000000,1647960833.139388,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196913,0.000000,1647960836.230057,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196914,0.000000,1647961726.512873,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196915,0.000000,1647961731.135274,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(195645,0.000000,1646073412.829593,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195644,0.000000,1646073412.128185,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195640,0.000000,1646073406.206957,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195641,0.000000,1646073409.954678,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195642,0.000000,1646073410.720018,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195643,0.000000,1646073411.370622,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(197212,0.000000,1648230081.696516,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-512x-719t-playmaker-14z','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197213,0.000000,1648230694.332321,_binary '\0\0\0\0\0\0\0\0\0\0C\m',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/fp/service.php','http://simplesite.com','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),(197207,0.000000,1648226185.295310,_binary '\0\0\0\0\0\0\0\0\0\0\',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197208,0.000000,1648226736.435470,_binary '\0\0\0\0\0\0\0\0\0\0\',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197209,0.000000,1648229000.339718,_binary '\0\0\0\0\0\0\0\0\0\0w0V',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197210,0.000000,1648229000.339448,_binary '\0\0\0\0\0\0\0\0\0\0w0V',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197211,0.000000,1648230037.445013,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-512x-719t-playmaker-14z','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197071,0.000000,1648161630.055321,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=a61f9259c339082af6f667e08a9faa01&signature=bdae3ed063431bd1148c6c8cb1a9e01a1b7293382561a6e6127f5298955c573f&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197072,0.000000,1648161676.632045,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'https://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=71609c44df9bbf78aedeb410f29f8187&signature=759090a115a9143e7e08bdb1c4f35eab6eca93c0fe313f3188fbbc862b14f202&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197073,0.000000,1648161678.654525,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=71609c44df9bbf78aedeb410f29f8187&signature=759090a115a9143e7e08bdb1c4f35eab6eca93c0fe313f3188fbbc862b14f202&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197074,0.000000,1648161725.517690,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'https://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=4d6e5d1a40c911fab6740ebce84a98df&signature=f4121ad55bdb077370b1f26abb011d446a5ed4df2119bcf7bebda462f2767ca4&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197075,0.000000,1648161727.358369,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=4d6e5d1a40c911fab6740ebce84a98df&signature=f4121ad55bdb077370b1f26abb011d446a5ed4df2119bcf7bebda462f2767ca4&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197076,0.000000,1648161774.490734,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'https://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=34953872306475af523b2a6c1c4b12d3&signature=3a3ee57938bb10b36d52d11f5fad10dcbe7aa91844ae0b0cfb848d4a0030b199&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197077,0.000000,1648161776.213908,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=34953872306475af523b2a6c1c4b12d3&signature=3a3ee57938bb10b36d52d11f5fad10dcbe7aa91844ae0b0cfb848d4a0030b199&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197078,0.000000,1648161823.437566,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'https://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=41daee1577c7a0303da2f8dcf8f1de64&signature=c3d7518f3deffc3c3163745f216cd83398742881654b34a24dcd73c3a417de14&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197079,0.000000,1648161825.220112,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=41daee1577c7a0303da2f8dcf8f1de64&signature=c3d7518f3deffc3c3163745f216cd83398742881654b34a24dcd73c3a417de14&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197080,0.000000,1648161861.642984,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'https://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=c88dad4cfcabeedee1fc709cb8cad8a2&signature=c0986ea1932045bb0b3ddb7a734ff9f00ae4d24510a9cd2b215becf6ddff5265&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197081,0.000000,1648161863.330713,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=c88dad4cfcabeedee1fc709cb8cad8a2&signature=c0986ea1932045bb0b3ddb7a734ff9f00ae4d24510a9cd2b215becf6ddff5265&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197082,0.000000,1648163184.118486,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197083,0.000000,1648163185.915672,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197084,0.000000,1648163196.550700,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197085,0.000000,1648163197.266847,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197086,0.000000,1648166106.150102,_binary '\0\0\0\0\0\0\0\0\0\0:}',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197087,0.000000,1648166111.674614,_binary '\0\0\0\0\0\0\0\0\0\0:}',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197088,0.000000,1648169364.555165,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'http://kclgenetics.com/','','','',NULL,NULL),(197089,0.000000,1648169369.298235,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(197090,0.000000,1648169372.689291,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(196768,0.000000,1647831018.447673,_binary '\0\0\0\0\0\0\0\0\0\0@\',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(196736,1647779761.594097,1647779761.225900,_binary '\0\0\0\0\0\0\0\0\0\0:?',0,403,0,0,0,'http://kclgenetics.com/wp/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"path\":\"L3dwL3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(196732,0.000000,1647769637.032770,_binary '\0\0\0\0\0\0\0\0\0\0{1',0,301,0,0,0,'http://www.kclgenetics.com/','http://www.kclgenetics.com/','Mozilla/5.0(compatible;MSIE9.0;WindowsNT6.1;Trident/5.0)','',NULL,NULL),(196705,0.000000,1647737051.252442,_binary '\0\0\0\0\0\0\0\0\0\0];',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196706,0.000000,1647737053.334276,_binary '\0\0\0\0\0\0\0\0\0\0];',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196707,0.000000,1647737054.030060,_binary '\0\0\0\0\0\0\0\0\0\0];',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196708,0.000000,1647737057.163464,_binary '\0\0\0\0\0\0\0\0\0\0]',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196709,0.000000,1647737057.865022,_binary '\0\0\0\0\0\0\0\0\0\0]',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196710,0.000000,1647737060.794494,_binary '\0\0\0\0\0\0\0\0\0\0]',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196711,0.000000,1647737061.478846,_binary '\0\0\0\0\0\0\0\0\0\0]',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196712,0.000000,1647753101.799431,_binary '\0\0\0\0\0\0\0\0\0\0\G\8',0,404,0,0,0,'http://kclgenetics.com/2index.php','http://simplesite.com','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),(196713,0.000000,1647755241.070195,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196714,0.000000,1647755244.002053,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196715,0.000000,1647755253.463304,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/h-wcc-wb-668-wyarno-9500','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196716,0.000000,1647755254.260150,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/h-wcc-wb-668-wyarno-9500','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196717,0.000000,1647755481.980371,_binary '\0\0\0\0\0\0\0\0\0\06P',0,200,0,0,0,'http://kclgenetics.com/','','\\\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.0 Safari/605.1.15\\\"','',NULL,NULL),(196718,0.000000,1647755485.374024,_binary '\0\0\0\0\0\0\0\0\0\06P',0,200,0,0,0,'http://kclgenetics.com/','','\\\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.0 Safari/605.1.15\\\"','',NULL,NULL),(196731,0.000000,1647769634.559509,_binary '\0\0\0\0\0\0\0\0\0\0{1',0,301,0,0,0,'http://www.kclgenetics.com/','http://www.kclgenetics.com/','Mozilla/5.0(compatible;MSIE9.0;WindowsNT6.1;Trident/5.0)','',NULL,NULL),(196730,0.000000,1647768163.658995,_binary '\0\0\0\0\0\0\0\0\0\0B@;',0,200,1,0,0,'http://kclgenetics.com/feed/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196729,0.000000,1647768162.798236,_binary '\0\0\0\0\0\0\0\0\0\0B@;',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196728,0.000000,1647768158.567180,_binary '\0\0\0\0\0\0\0\0\0\0B@;',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196727,0.000000,1647766358.221543,_binary '\0\0\0\0\0\0\0\0\0\0B@;',0,200,1,0,0,'http://kclgenetics.com/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196726,0.000000,1647766349.655538,_binary '\0\0\0\0\0\0\0\0\0\0B@;',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196723,0.000000,1647762291.372381,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196724,0.000000,1647762300.726878,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196725,0.000000,1647766344.365201,_binary '\0\0\0\0\0\0\0\0\0\0B@;',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196720,0.000000,1647757294.843008,_binary '\0\0\0\0\0\0\0\0\0\0HS',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/car-repair/fws.php','http://simplesite.com','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),(196721,0.000000,1647757293.188685,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196722,0.000000,1647757295.860085,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196719,0.000000,1647755794.021871,_binary '\0\0\0\0\0\0\0\0\0\0\ ',0,404,0,0,0,'http://kclgenetics.com/wordpress/wp-content/plugins/ElingKuatSlamet/wp-load.php','http://simplesite.com','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),(196783,0.000000,1647857053.931750,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196782,0.000000,1647848472.346973,_binary '\0\0\0\0\0\0\0\0\0\0/\rr',0,301,0,0,0,'http://kclgenetics.com/wp-admin/patior/index.php','http://simplesite.com','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),(196781,0.000000,1647848466.146179,_binary '\0\0\0\0\0\0\0\0\0\0/\rr',0,301,0,0,0,'http://kclgenetics.com/wp-admin/patior/index.php','http://simplesite.com','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),(196780,0.000000,1647845052.867672,_binary '\0\0\0\0\0\0\0\0\0\0\0wD',0,200,0,0,0,'http://kclgenetics.com/?rest_route=/','http://kclgenetics.com/?rest_route=/','WordPress.com; http://kclgenetics.com','',NULL,NULL),(196779,0.000000,1647845051.565160,_binary '\0\0\0\0\0\0\0\0\0\0\0wD',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fconnection%2F&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647845049&nonce=9c9amsL1a2&body-hash&signature=jIT8vB8liSX7q9dcjU4D44F4pkI%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fconnection%2F&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647845049&nonce=9c9amsL1a2&body-hash&signature=jIT8vB8liSX7q9dcjU4D44F4pkI%3D','Jetpack by WordPress.com','',NULL,NULL),(196778,0.000000,1647845050.637543,_binary '\0\0\0\0\0\0\0\0\0\0\0wD',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fconnection%2F&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647845049&nonce=9c9amsL1a2&body-hash&signature=jIT8vB8liSX7q9dcjU4D44F4pkI%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fconnection%2F&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647845049&nonce=9c9amsL1a2&body-hash&signature=jIT8vB8liSX7q9dcjU4D44F4pkI%3D','Jetpack by WordPress.com','',NULL,NULL),(196777,0.000000,1647845047.057110,_binary '\0\0\0\0\0\0\0\0\0\0\0wD',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','WordPress.com; http://kclgenetics.com','',NULL,NULL),(196776,0.000000,1647845044.129831,_binary '\0\0\0\0\0\0\0\0\0\0\\\ ',0,404,0,0,0,'http://kclgenetics.com/wp-admin/user/about.php','http://simplesite.com','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),(196775,0.000000,1647839389.333769,_binary '\0\0\0\0\0\0\0\0\0\0fG',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; MojeekBot/0.10; +https://www.mojeek.com/bot.html)','',NULL,NULL),(196774,0.000000,1647839387.388865,_binary '\0\0\0\0\0\0\0\0\0\0fG',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; MojeekBot/0.10; +https://www.mojeek.com/bot.html)','',NULL,NULL),(196773,0.000000,1647837117.968631,_binary '\0\0\0\0\0\0\0\0\0\0A\',0,301,0,0,0,'http://mail.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36','',NULL,NULL),(196772,0.000000,1647837112.278223,_binary '\0\0\0\0\0\0\0\0\0\0A\',0,301,0,0,0,'http://mail.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36','',NULL,NULL),(196771,0.000000,1647832729.726171,_binary '\0\0\0\0\0\0\0\0\0\0Hp',0,404,0,0,0,'http://kclgenetics.com/stindex.php','http://simplesite.com','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),(196770,0.000000,1647831019.928066,_binary '\0\0\0\0\0\0\0\0\0\0@\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(196654,0.000000,1647640104.540362,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=fefea30321216b85e7a4f4b95da635db&signature=afcd3df9e1450a8a3bf7777817bcc5c6c424029fcab15f6bc6512bfa58df6ffb&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196653,0.000000,1647640055.528362,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=01a99a6c0dc86b0a6dc3beafd5bf73b3&signature=e10127c163603fa5876290b93b340c91260e1f290d1f238187dcae66b6aa6348&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196634,0.000000,1647619389.594716,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196635,0.000000,1647619389.594148,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196636,0.000000,1647619393.527008,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196637,0.000000,1647625247.025053,_binary '\0\0\0\0\0\0\0\0\0\0:5',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','',NULL,NULL),(196638,0.000000,1647632671.765008,_binary '\0\0\0\0\0\0\0\0\0\0HS',0,404,0,0,0,'http://kclgenetics.com/wp-admin/shell20211028.php','http://simplesite.com','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),(196639,0.000000,1647633130.641001,_binary '\0\0\0\0\0\0\0\0\0\0O',0,200,0,0,0,'https://kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196640,0.000000,1647634902.073431,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(196641,0.000000,1647634904.609963,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(196642,0.000000,1647634905.424658,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,200,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(196643,0.000000,1647634906.187278,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(196644,0.000000,1647634906.929337,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(196645,0.000000,1647639791.153259,_binary '\0\0\0\0\0\0\0\0\0\0\',0,404,0,0,0,'http://kclgenetics.com/wp-sling.php','http://simplesite.com','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),(196646,0.000000,1647639791.152969,_binary '\0\0\0\0\0\0\0\0\0\0\',0,404,0,0,0,'http://kclgenetics.com/wp-sling.php','http://simplesite.com','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),(196647,0.000000,1647639813.658138,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,200,0,0,0,'http://kclgenetics.com/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(196648,0.000000,1647639814.135576,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,200,0,0,0,'http://kclgenetics.com/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','',NULL,NULL),(196649,0.000000,1647639855.462689,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=standard&cronKey=0f42fed0edfe1d70fffc3352676fadf6&signature=0694539cdba83e42bd4f9170253c34320b63cc7b5bda9b457badfbc39027f24e&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196650,0.000000,1647639912.352085,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=27a4077dea3e439660371d5635279137&signature=38715344a78b5b615905551f1dd8437bae45d3d21c5b564f7e750709f0a0ca3d&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196651,0.000000,1647639958.272163,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=3911723b398d7b6079ff7ed4a3138961&signature=487cc16bc72a069af2d7fe1f9f3769e1e707654d826a5e54f90065920276b4a4&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196652,0.000000,1647640006.568407,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=80a1247867ec3e4a24bf0dc985b68775&signature=5da7f2b794a118a0d9c7bf8d9a44030a97f094f6c8a98a6e975bceeb2b101d66&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196657,0.000000,1647648722.098076,_binary '\0\0\0\0\0\0\0\0\0\0%\\',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','',NULL,NULL),(196656,0.000000,1647648707.714053,_binary '\0\0\0\0\0\0\0\0\0\0%\\',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','',NULL,NULL),(196655,0.000000,1647640153.506291,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=227daea72c3fef79722ece18ec0cc924&signature=98a4098e0acefe0001267e929a01feb9ce8ddce42fe43514947dd15047dc0248&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195765,0.000000,1646208197.907243,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195763,0.000000,1646208004.476182,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195764,0.000000,1646208130.901691,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195762,0.000000,1646207329.320703,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195761,0.000000,1646200255.274306,_binary '\0\0\0\0\0\0\0\0\0\0#\O',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(195760,0.000000,1646200251.346310,_binary '\0\0\0\0\0\0\0\0\0\0#\O',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(195759,0.000000,1646189752.850655,_binary '\0\0\0\0\0\0\0\0\0\0{}m',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195758,0.000000,1646189751.162767,_binary '\0\0\0\0\0\0\0\0\0\0{}m',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195757,0.000000,1646189285.771682,_binary '\0\0\0\0\0\0\0\0\0\0W',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','',NULL,NULL),(195756,0.000000,1646189284.244220,_binary '\0\0\0\0\0\0\0\0\0\0W',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','',NULL,NULL),(195755,0.000000,1646189277.411320,_binary '\0\0\0\0\0\0\0\0\0\0W',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','',NULL,NULL),(195753,0.000000,1646178429.249655,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=phpmyadmin','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195754,0.000000,1646178429.935328,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=phpmyadmin','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195713,0.000000,1646133126.605571,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Softaculous','',NULL,NULL),(195702,0.000000,1646100595.461420,_binary '\0\0\0\0\0\0\0\0\0\0\r',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195703,0.000000,1646100596.160757,_binary '\0\0\0\0\0\0\0\0\0\0\r',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195704,0.000000,1646100595.352204,_binary '\0\0\0\0\0\0\0\0\0\0\rv',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195705,0.000000,1646100597.118819,_binary '\0\0\0\0\0\0\0\0\0\0\rv',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195706,0.000000,1646100598.503947,_binary '\0\0\0\0\0\0\0\0\0\0\r\n',0,404,0,0,0,'http://kclgenetics.com/media/rokgallery/7/72520111-18ea-44f0-b358-f969a94dc7cf/8c8bc860-1356-4c3f-88ad-47216bfda231.jpg','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195707,0.000000,1646100609.176573,_binary '\0\0\0\0\0\0\0\0\0\0;\',0,200,0,0,0,'http://kclgenetics.com/?fbclid=IwAR1QkFr37wp0P3Je4MuzTMp4YPIPQdxgyuwSskoEEHhpdyHdaPVlXsO7reA','http://m.facebook.com','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/19D52 [FBAN/FBIOS;FBDV/iPhone13,2;FBMD/iPhone;FBSN/iOS;FBSV/15.3.1;FBSS/3;FBID/phone;FBLC/en_US;FBOP/5]','',NULL,NULL),(195708,0.000000,1646100613.544201,_binary '\0\0\0\0\0\0\0\0\0\0;\',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.1','http://kclgenetics.com/?fbclid=IwAR1QkFr37wp0P3Je4MuzTMp4YPIPQdxgyuwSskoEEHhpdyHdaPVlXsO7reA','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/19D52 [FBAN/FBIOS;FBDV/iPhone13,2;FBMD/iPhone;FBSN/iOS;FBSV/15.3.1;FBSS/3;FBID/phone;FBLC/en_US;FBOP/5]','',NULL,NULL),(195709,0.000000,1646121412.920993,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195710,0.000000,1646121418.520542,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195711,0.000000,1646132781.348353,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(195712,0.000000,1646132917.895599,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=eebc8d78ebfd5680e3f5332bf9ec44af&signature=bb231fb7ff3db40dc37d331fb75dacb6c53a15fc545eeafbc527eca0c8847b23&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195719,0.000000,1646139781.964299,_binary '\0\0\0\0\0\0\0\0\0\0vb',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195718,0.000000,1646136897.534244,_binary '\0\0\0\0\0\0\0\0\0\0&H\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/wp-admin/post-new.php','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:96.0.0) Gecko/20100101 Firefox/96.0.0','',NULL,NULL),(195717,0.000000,1646136897.072429,_binary '\0\0\0\0\0\0\0\0\0\0&H\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/wp-admin/post-new.php','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:96.0.0) Gecko/20100101 Firefox/96.0.0','',NULL,NULL),(195716,0.000000,1646136896.755597,_binary '\0\0\0\0\0\0\0\0\0\0&H\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/wp-admin/post-new.php','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:96.0.0) Gecko/20100101 Firefox/96.0.0','',NULL,NULL),(195714,0.000000,1646133135.587057,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(195715,0.000000,1646136892.517302,_binary '\0\0\0\0\0\0\0\0\0\0&H\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/wp-admin/post-new.php','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:96.0.0) Gecko/20100101 Firefox/96.0.0','',NULL,NULL),(195891,0.000000,1646360098.694736,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=standard&cronKey=f04440e211ff0285e93fe5b44e370fda&signature=f1e21ca21b38d455f9135bff2ef68700a696feaa11b47faa026c8e6e0510ae7c&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195860,0.000000,1646297949.262000,_binary '\0\0\0\0\0\0\0\0\0\0\\\u',0,404,0,0,0,'http://kclgenetics.com/wordpress/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195861,0.000000,1646297950.130791,_binary '\0\0\0\0\0\0\0\0\0\0\\\u',0,404,0,0,0,'http://kclgenetics.com/test/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195862,0.000000,1646297950.967544,_binary '\0\0\0\0\0\0\0\0\0\0\\\u',0,404,0,0,0,'http://kclgenetics.com/blog/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195863,0.000000,1646297951.803144,_binary '\0\0\0\0\0\0\0\0\0\0\\\u',0,404,0,0,0,'http://kclgenetics.com/cms/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195864,0.000000,1646297952.622876,_binary '\0\0\0\0\0\0\0\0\0\0\\\u',0,404,0,0,0,'http://kclgenetics.com/web/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195865,0.000000,1646297953.468501,_binary '\0\0\0\0\0\0\0\0\0\0\\\u',0,404,0,0,0,'http://kclgenetics.com/backup/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195866,0.000000,1646297954.310651,_binary '\0\0\0\0\0\0\0\0\0\0\\\u',0,404,0,0,0,'http://kclgenetics.com/site/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195867,0.000000,1646297955.152959,_binary '\0\0\0\0\0\0\0\0\0\0\\\u',0,404,0,0,0,'http://kclgenetics.com/oldsite/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195868,0.000000,1646305350.875609,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(195869,0.000000,1646305464.146057,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Softaculous','',NULL,NULL),(195870,0.000000,1646305470.988503,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(195871,0.000000,1646312774.558134,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195872,0.000000,1646312779.323454,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195873,0.000000,1646314258.555172,_binary '\0\0\0\0\0\0\0\0\0\0\Z<',0,404,0,0,0,'http://kclgenetics.com/ads.txt','','AdsTxtCrawler/1.0.2','',NULL,NULL),(195874,0.000000,1646320943.813130,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://www.kclgenetics.com/index.php/h-wcc-wb-668-wyarno-9500','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(195875,0.000000,1646320950.379773,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://www.kclgenetics.com/index.php/h-wcc-wb-668-wyarno-9500','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(195876,0.000000,1646322018.996016,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195877,0.000000,1646322024.751233,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195878,0.000000,1646325617.953127,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646325613&nonce=nblHYP7qQT&body-hash&signature=LnkKdGAx6YMcLV%2BxM%2B6eN3ZpK7g%3D','https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646325613&nonce=nblHYP7qQT&body-hash&signature=LnkKdGAx6YMcLV%2BxM%2B6eN3ZpK7g%3D','Jetpack by WordPress.com','',NULL,NULL),(195879,0.000000,1646325622.220060,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646325613&nonce=nblHYP7qQT&body-hash&signature=LnkKdGAx6YMcLV%2BxM%2B6eN3ZpK7g%3D','https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646325613&nonce=nblHYP7qQT&body-hash&signature=LnkKdGAx6YMcLV%2BxM%2B6eN3ZpK7g%3D','Jetpack by WordPress.com','',NULL,NULL),(195880,0.000000,1646332711.921106,_binary '\0\0\0\0\0\0\0\0\0\0*\\nT',0,200,0,0,0,'http://kclgenetics.com/','http://baidu.com/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.android.rimet/10487439 Channel/227200 language/zh-CN','',NULL,NULL),(195881,0.000000,1646332721.948769,_binary '\0\0\0\0\0\0\0\0\0\0\0R0',0,200,0,0,0,'https://kclgenetics.com/','https://kclgenetics.com/','WordPress.com; https://kclgenetics.com','',NULL,NULL),(195882,0.000000,1646332724.988694,_binary '\0\0\0\0\0\0\0\0\0\0\0R0',0,200,0,0,0,'https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fconnection%2F&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646332724&nonce=vjzXlSsPA1&body-hash&signature=D1Tz3aOJEFJrfjyPbs9RYKsihmA%3D','https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fconnection%2F&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646332724&nonce=vjzXlSsPA1&body-hash&signature=D1Tz3aOJEFJrfjyPbs9RYKsihmA%3D','Jetpack by WordPress.com','',NULL,NULL),(195883,0.000000,1646332726.091935,_binary '\0\0\0\0\0\0\0\0\0\0\0R0',0,200,0,0,0,'https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fconnection%2F&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646332724&nonce=vjzXlSsPA1&body-hash&signature=D1Tz3aOJEFJrfjyPbs9RYKsihmA%3D','https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fconnection%2F&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646332724&nonce=vjzXlSsPA1&body-hash&signature=D1Tz3aOJEFJrfjyPbs9RYKsihmA%3D','Jetpack by WordPress.com','',NULL,NULL),(195884,0.000000,1646332726.760521,_binary '\0\0\0\0\0\0\0\0\0\0*\\n]',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.1','http://kclgenetics.com/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.android.rimet/10487439 Channel/227200 language/zh-CN','',NULL,NULL),(195885,0.000000,1646332727.552611,_binary '\0\0\0\0\0\0\0\0\0\0\0R0',0,200,0,0,0,'https://kclgenetics.com/?rest_route=/','https://kclgenetics.com/?rest_route=/','WordPress.com; https://kclgenetics.com','',NULL,NULL),(195886,0.000000,1646333099.506230,_binary '\0\0\0\0\0\0\0\0\0\0l\C',0,200,0,0,0,'http://kclgenetics.com/contact-us/','','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195887,0.000000,1646333103.458889,_binary '\0\0\0\0\0\0\0\0\0\0l\C',0,200,0,0,0,'http://kclgenetics.com/wp-json/contact-form-7/v1/contact-forms/491/feedback','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195888,0.000000,1646333105.063179,_binary '\0\0\0\0\0\0\0\0\0\0l\C',0,200,0,0,0,'http://kclgenetics.com/wp-json/contact-form-7/v1/contact-forms/491/feedback','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195889,0.000000,1646360041.371115,_binary '\0\0\0\0\0\0\0\0\0\0yq',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(195890,0.000000,1646360046.035100,_binary '\0\0\0\0\0\0\0\0\0\0yq',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(197171,0.000000,1648203377.443299,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=aff34d15c52df3aeee7e8d59c6417aad&signature=552af11c9d7eaba5ec1ee19b4f93ed330c36631952001286387ac8c76b725ba4&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195571,0.000000,1646037962.964675,_binary '\0\0\0\0\0\0\0\0\0\0\"y1k',0,301,0,0,0,'http://kclgenetics.com/2018-hereford-alliance-sale','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195572,0.000000,1646037963.606838,_binary '\0\0\0\0\0\0\0\0\0\0#\%',0,301,0,0,0,'http://kclgenetics.com/about-us','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195667,0.000000,1646077890.344157,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.1','http://kclgenetics.com/about-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195666,0.000000,1646077888.686325,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,200,0,0,0,'http://kclgenetics.com/about-us/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195665,0.000000,1646077881.392794,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.1','http://kclgenetics.com/about-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195664,0.000000,1646077877.855128,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,200,0,0,0,'http://kclgenetics.com/about-us/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195663,0.000000,1646076590.432509,_binary '\0\0\0\0\0\0\0\0\0\0W\6',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195662,0.000000,1646076584.105129,_binary '\0\0\0\0\0\0\0\0\0\0W\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195661,0.000000,1646076577.198668,_binary '\0\0\0\0\0\0\0\0\0\0_l\&',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195656,0.000000,1646073732.084980,_binary '\0\0\0\0\0\0\0\0\0\0@\',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(195657,0.000000,1646073732.878430,_binary '\0\0\0\0\0\0\0\0\0\0@\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(195658,0.000000,1646073733.538297,_binary '\0\0\0\0\0\0\0\0\0\0@\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(195659,0.000000,1646076573.432402,_binary '\0\0\0\0\0\0\0\0\0\0_l\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195660,0.000000,1646076575.375756,_binary '\0\0\0\0\0\0\0\0\0\0_l\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195576,0.000000,1646037964.186131,_binary '\0\0\0\0\0\0\0\0\0\0\"FN',0,301,0,0,0,'http://kclgenetics.com/kcl-donor-cows','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195577,0.000000,1646037964.399882,_binary '\0\0\0\0\0\0\0\0\0\0\"y\0',0,301,0,0,0,'http://kclgenetics.com/contact-us','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195646,0.000000,1646073413.691143,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195647,0.000000,1646073414.351085,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195648,0.000000,1646073415.104290,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195649,0.000000,1646073415.792864,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195650,0.000000,1646073416.619047,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,200,0,0,0,'http://kclgenetics.com/contact-us/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195651,0.000000,1646073419.580648,_binary '\0\0\0\0\0\0\0\0\0\0\ˤ',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.1','http://kclgenetics.com/contact-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195652,0.000000,1646073723.492597,_binary '\0\0\0\0\0\0\0\0\0\046',0,200,0,0,0,'http://kclgenetics.com/contact-us/','','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195653,0.000000,1646073727.176237,_binary '\0\0\0\0\0\0\0\0\0\046',0,200,0,0,0,'http://kclgenetics.com/wp-json/contact-form-7/v1/contact-forms/491/feedback','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195654,0.000000,1646073729.589691,_binary '\0\0\0\0\0\0\0\0\0\046',0,200,0,0,0,'http://kclgenetics.com/wp-json/contact-form-7/v1/contact-forms/491/feedback','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195655,0.000000,1646073731.393090,_binary '\0\0\0\0\0\0\0\0\0\0@\',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(196430,0.000000,1647285920.834070,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196431,0.000000,1647285921.565233,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196432,0.000000,1647285922.223841,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196433,0.000000,1647285922.986435,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196448,0.000000,1647295462.525445,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,200,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(196449,0.000000,1647295463.299192,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(196450,0.000000,1647295464.051631,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(196451,0.000000,1647301035.041907,_binary '\0\0\0\0\0\0\0\0\0\0vJ',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196446,0.000000,1647295459.660362,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(196447,0.000000,1647295461.696300,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(196444,0.000000,1647294433.992056,_binary '\0\0\0\0\0\0\0\0\0\0u',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.1; http://www.majestic12.co.uk/bot.php?+)','',NULL,NULL),(196445,0.000000,1647294441.163180,_binary '\0\0\0\0\0\0\0\0\0\0u',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.1; http://www.majestic12.co.uk/bot.php?+)','',NULL,NULL),(196443,0.000000,1647290600.287914,_binary '\0\0\0\0\0\0\0\0\0\0^\)',0,404,0,0,0,'http://kclgenetics.com/assets/images/doc.php','http://simplesite.com','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),(196442,0.000000,1647288235.768885,_binary '\0\0\0\0\0\0\0\0\0\0хܮ',0,404,0,0,0,'http://kclgenetics.com/local.php','http://simplesite.com','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),(196441,0.000000,1647286743.433357,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php','http://kclgenetics.com/about-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196440,0.000000,1647286741.293341,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.2','http://kclgenetics.com/about-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196439,0.000000,1647286738.450310,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,200,0,0,0,'http://kclgenetics.com/about-us/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196438,0.000000,1647285932.378836,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.2','http://kclgenetics.com/contact-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196437,0.000000,1647285929.258308,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,200,0,0,0,'http://kclgenetics.com/contact-us/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196436,0.000000,1647285925.318877,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196435,0.000000,1647285924.562129,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196434,0.000000,1647285923.760261,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195845,0.000000,1646282499.410080,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/about-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195844,0.000000,1646268541.031523,_binary '\0\0\0\0\0\0\0\0\0\0\"\\O',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.1','http://kclgenetics.com/about-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195843,0.000000,1646268539.878132,_binary '\0\0\0\0\0\0\0\0\0\0\"\\O',0,200,0,0,0,'http://kclgenetics.com/about-us/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195842,0.000000,1646268538.153970,_binary '\0\0\0\0\0\0\0\0\0\0\"\\O',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.1','http://kclgenetics.com/contact-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195840,0.000000,1646268533.366019,_binary '\0\0\0\0\0\0\0\0\0\0\"\\O',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195841,0.000000,1646268535.596005,_binary '\0\0\0\0\0\0\0\0\0\0\"\\O',0,200,0,0,0,'http://kclgenetics.com/contact-us/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195839,0.000000,1646267211.458924,_binary '\0\0\0\0\0\0\0\0\0\0T\;',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195838,0.000000,1646267210.994482,_binary '\0\0\0\0\0\0\0\0\0\0T\;',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195837,0.000000,1646267209.743162,_binary '\0\0\0\0\0\0\0\0\0\0T\;',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195829,0.000000,1646267060.712660,_binary '\0\0\0\0\0\0\0\0\0\0O	',0,301,0,0,0,'http://kclgenetics.com/about-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195830,0.000000,1646267061.123343,_binary '\0\0\0\0\0\0\0\0\0\0O	',0,301,0,0,0,'http://kclgenetics.com/about-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195831,0.000000,1646267061.717597,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/contact-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195832,0.000000,1646267062.124572,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/contact-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195833,0.000000,1646267062.629440,_binary '\0\0\0\0\0\0\0\0\0\0O',0,200,0,0,0,'http://kclgenetics.com/contact-us/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195834,0.000000,1646267207.529458,_binary '\0\0\0\0\0\0\0\0\0\0T\;',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195835,0.000000,1646267207.958247,_binary '\0\0\0\0\0\0\0\0\0\0T\;',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195836,0.000000,1646267209.328827,_binary '\0\0\0\0\0\0\0\0\0\0T\;',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(196699,0.000000,1647735717.125555,_binary '\0\0\0\0\0\0\0\0\0\0\"\kv',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196704,0.000000,1647737049.493391,_binary '\0\0\0\0\0\0\0\0\0\0];',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196703,0.000000,1647736259.987422,_binary '\0\0\0\0\0\0\0\0\0\0#\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196702,0.000000,1647736257.698128,_binary '\0\0\0\0\0\0\0\0\0\0#\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196701,0.000000,1647736255.924601,_binary '\0\0\0\0\0\0\0\0\0\0#\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196700,0.000000,1647735717.846870,_binary '\0\0\0\0\0\0\0\0\0\0\"\kv',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196231,0.000000,1646924622.393855,_binary '\0\0\0\0\0\0\0\0\0\0MQ$',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','',NULL,NULL),(196535,0.000000,1647451506.584440,_binary '\0\0\0\0\0\0\0\0\0\0]',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196533,0.000000,1647451502.890306,_binary '\0\0\0\0\0\0\0\0\0\0];',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196534,0.000000,1647451505.904538,_binary '\0\0\0\0\0\0\0\0\0\0]',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196532,0.000000,1647451502.209341,_binary '\0\0\0\0\0\0\0\0\0\0];',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196531,0.000000,1647451500.808822,_binary '\0\0\0\0\0\0\0\0\0\0];',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196530,0.000000,1647451498.274306,_binary '\0\0\0\0\0\0\0\0\0\0];',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196529,0.000000,1647451136.545558,_binary '\0\0\0\0\0\0\0\0\0\0jb',0,404,0,0,0,'http://kclgenetics.com/inc/f.php','http://simplesite.com','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),(196528,0.000000,1647451136.546004,_binary '\0\0\0\0\0\0\0\0\0\0jb',0,404,0,0,0,'http://kclgenetics.com/inc/f.php','http://simplesite.com','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),(196527,0.000000,1647449686.135523,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196526,0.000000,1647449648.687549,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196525,0.000000,1647449648.687815,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196524,0.000000,1647442261.202551,_binary '\0\0\0\0\0\0\0\0\0\0хܮ',0,404,0,0,0,'http://kclgenetics.com/rex.php','http://simplesite.com','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),(196523,0.000000,1647436030.328620,_binary '\0\0\0\0\0\0\0\0\0\0\d',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider','',NULL,NULL),(196521,0.000000,1647430720.514535,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196522,0.000000,1647430725.094073,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196520,0.000000,1647430173.304845,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197128,0.000000,1648169417.964889,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,404,0,0,0,'http://kclgenetics.com/sitemap_index.xml','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(196017,0.000000,1646618222.991874,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=69ae0b8022423e6da9181a0bc17fcd99&signature=3867a184a47c92046653298acea0f93ff02470b9367df53facc17cded54b90c1&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196065,0.000000,1646663113.409875,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196066,0.000000,1646663113.410034,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196067,0.000000,1646663117.824221,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196068,0.000000,1646663119.110116,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196069,0.000000,1646663468.083444,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,301,0,0,0,'http://www.kclgenetics.com/','http://www.kclgenetics.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','',NULL,NULL),(196070,0.000000,1646663469.953025,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,301,0,0,0,'http://www.kclgenetics.com/','http://www.kclgenetics.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','',NULL,NULL),(196071,0.000000,1646684678.078823,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196962,0.000000,1648028216.035615,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196960,0.000000,1648027310.973804,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196961,0.000000,1648027313.806197,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196893,0.000000,1647948527.211097,_binary '\0\0\0\0\0\0\0\0\0\0\.\r\',0,301,0,0,0,'https://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196892,0.000000,1647948521.457294,_binary '\0\0\0\0\0\0\0\0\0\0\.\r\',0,301,0,0,0,'https://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196891,0.000000,1647943599.127186,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196587,1647508173.849677,1647508173.786000,_binary '\0\0\0\0\0\0\0\0\0\0\\\>c',0,403,0,0,0,'http://kclgenetics.com/wp','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dw\",\"category\":\"brute-force\",\"ssl\":0}'),(196890,0.000000,1647942435.902453,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/comments/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196590,0.000000,1647511441.964245,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196589,0.000000,1647510524.368065,_binary '\0\0\0\0\0\0\0\0\0\0c',0,404,0,0,0,'http://kclgenetics.com/humans.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','',NULL,NULL),(196883,0.000000,1647929166.170711,_binary '\0\0\0\0\0\0\0\0\0\0vb',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196884,0.000000,1647929168.025793,_binary '\0\0\0\0\0\0\0\0\0\0vb',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196885,0.000000,1647934490.407715,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196886,0.000000,1647934495.173167,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196887,0.000000,1647939714.619177,_binary '\0\0\0\0\0\0\0\0\0\0hN',0,404,0,0,0,'http://kclgenetics.com/wp-admin/maint/wp-aespa.php','http://simplesite.com','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),(196888,0.000000,1647942300.595146,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196889,0.000000,1647942433.781771,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/comments/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196588,1647508172.038749,1647508171.942200,_binary '\0\0\0\0\0\0\0\0\0\0\\\>c',0,403,0,0,0,'http://kclgenetics.com/','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Lw==\",\"category\":\"brute-force\",\"ssl\":0}'),(197202,0.000000,1648221921.529444,_binary '\0\0\0\0\0\0\0\0\0\0w0V',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(195673,0.000000,1646092339.452022,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=e863a753d67a40ea6292638c9dc7b4ee&signature=b2b90ee196ce121ef86ede03bcc2e0e710220ca8ec83b679dad0dfe65054e9de&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195672,0.000000,1646092289.551993,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=1e4a7fb91aa978b44bce9ff8b71e9da6&signature=1f160ee05e4fe8cac02a3b7e6435fad75cb49106f53aca8a750b4760a807859b&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195671,0.000000,1646092240.559066,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=standard&cronKey=ad4d354b7f5104004e364425e877399d&signature=051b5049fca795c3ba301f78e2fd21ca89b41f153eaf19bb29ac837371f836db&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195670,0.000000,1646092198.661945,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,200,0,0,0,'http://kclgenetics.com/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','',NULL,NULL),(195669,0.000000,1646092198.182769,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,200,0,0,0,'http://kclgenetics.com/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(195668,0.000000,1646092183.175154,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,404,0,0,0,'http://kclgenetics.com/cart/','','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727)','',NULL,NULL),(197206,0.000000,1648224176.509462,_binary '\0\0\0\0\0\0\0\0\0\0N/\',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/wpcargo/includes/barcode.php?text=testing','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36','',NULL,NULL),(197205,0.000000,1648223360.340985,_binary '\0\0\0\0\0\0\0\0\0\0C\3',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197203,0.000000,1648222942.303109,_binary '\0\0\0\0\0\0\0\0\0\0\{',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197204,0.000000,1648223001.497204,_binary '\0\0\0\0\0\0\0\0\0\0w0V',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(195701,0.000000,1646099513.012066,_binary '\0\0\0\0\0\0\0\0\0\0*\\nQ',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider','',NULL,NULL),(195700,0.000000,1646098386.863198,_binary '\0\0\0\0\0\0\0\0\0\0\S\',0,200,0,0,0,'http://kclgenetics.com/wp-json/wp/v2/users','','node-fetch/1.0 (+https://github.com/bitinn/node-fetch)','',NULL,NULL),(195699,0.000000,1646098385.970906,_binary '\0\0\0\0\0\0\0\0\0\0\S\',0,200,0,0,0,'http://kclgenetics.com/wp-json/wp/v2/users','','node-fetch/1.0 (+https://github.com/bitinn/node-fetch)','',NULL,NULL),(195698,0.000000,1646098385.965239,_binary '\0\0\0\0\0\0\0\0\0\0\S\',0,200,0,0,0,'http://kclgenetics.com/feed/','','node-fetch/1.0 (+https://github.com/bitinn/node-fetch)','',NULL,NULL),(196005,0.000000,1646578317.654231,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197222,0.000000,1648247833.222361,_binary '\0\0\0\0\0\0\0\0\0\0MXQ',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197221,0.000000,1648247814.045303,_binary '\0\0\0\0\0\0\0\0\0\0MXQ',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197220,0.000000,1648241483.680301,_binary '\0\0\0\0\0\0\0\0\0\0-\\',0,404,0,0,0,'http://kclgenetics.com/wp-content/local.php','http://simplesite.com','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),(197219,0.000000,1648241483.682504,_binary '\0\0\0\0\0\0\0\0\0\0-\\',0,404,0,0,0,'http://kclgenetics.com/wp-content/local.php','http://simplesite.com','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),(197218,0.000000,1648239606.498573,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/contact-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(197217,0.000000,1648239605.893834,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/contact-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(197216,0.000000,1648239605.019910,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/about-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(197215,0.000000,1648239602.934423,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/about-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(197214,0.000000,1648238611.261341,_binary '\0\0\0\0\0\0\0\0\0\0ju',0,404,0,0,0,'http://kclgenetics.com/wp-includes/pomo/class-wp-sitemap-mna.php','http://simplesite.com','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),(197272,0.000000,1648284862.768869,_binary '\0\0\0\0\0\0\0\0\0\0-\\',0,404,0,0,0,'http://kclgenetics.com/wp-admin/user/about.php','http://simplesite.com','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),(197271,0.000000,1648284863.003046,_binary '\0\0\0\0\0\0\0\0\0\0-\\',0,404,0,0,0,'http://kclgenetics.com/wp-admin/user/about.php','http://simplesite.com','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),(197269,0.000000,1648283887.344558,_binary '\0\0\0\0\0\0\0\0\0\06$s]',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','',NULL,NULL),(197270,0.000000,1648283888.461082,_binary '\0\0\0\0\0\0\0\0\0\06$s]',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','',NULL,NULL),(197268,0.000000,1648283882.573439,_binary '\0\0\0\0\0\0\0\0\0\06$s]',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','',NULL,NULL),(197267,0.000000,1648280267.351574,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197266,0.000000,1648280242.271331,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197264,0.000000,1648279370.505440,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197265,0.000000,1648279430.962854,_binary '\0\0\0\0\0\0\0\0\0\0\.\rd',0,301,0,0,0,'http://kclgenetics.com/index.php/boyd-worldwide-9050-et','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197263,0.000000,1648279370.505417,_binary '\0\0\0\0\0\0\0\0\0\0\.\rd',0,301,0,0,0,'http://kclgenetics.com/index.php/boyd-worldwide-9050-et','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197262,0.000000,1648277149.575318,_binary '\0\0\0\0\0\0\0\0\0\0\f!',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com','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),(197261,0.000000,1648276895.856481,_binary '\0\0\0\0\0\0\0\0\0\0CI$',0,404,0,0,0,'http://kclgenetics.com/fw.php','http://simplesite.com','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),(197260,0.000000,1648276895.856484,_binary '\0\0\0\0\0\0\0\0\0\0CI$',0,404,0,0,0,'http://kclgenetics.com/fw.php','http://simplesite.com','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),(197259,0.000000,1648273530.811867,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197257,0.000000,1648273523.458130,_binary '\0\0\0\0\0\0\0\0\0\0\.\r\',0,200,0,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197258,0.000000,1648273525.583851,_binary '\0\0\0\0\0\0\0\0\0\0\.\r\',0,200,0,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197256,0.000000,1648272927.620767,_binary '\0\0\0\0\0\0\0\0\0\0\;<',0,404,0,0,0,'http://kclgenetics.com/stindex.php','http://simplesite.com','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),(197255,0.000000,1648272375.018976,_binary '\0\0\0\0\0\0\0\0\0\0vb',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197254,0.000000,1648272370.510381,_binary '\0\0\0\0\0\0\0\0\0\0vb',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197253,0.000000,1648270005.315738,_binary '\0\0\0\0\0\0\0\0\0\0\x',0,404,0,0,0,'http://kclgenetics.com/wp-admin/maint/wp-aespa.php','http://simplesite.com','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),(197252,0.000000,1648269866.989377,_binary '\0\0\0\0\0\0\0\0\0\0\'lr7',0,404,0,0,0,'http://kclgenetics.com/wp-content/local.php','http://simplesite.com','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),(197251,0.000000,1648269863.619792,_binary '\0\0\0\0\0\0\0\0\0\0\'lr7',0,404,0,0,0,'http://kclgenetics.com/wp-content/local.php','http://simplesite.com','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),(197225,0.000000,1648247838.962306,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197226,0.000000,1648247839.695585,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197227,0.000000,1648247842.579129,_binary '\0\0\0\0\0\0\0\0\0\0MXC',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197228,0.000000,1648247846.177122,_binary '\0\0\0\0\0\0\0\0\0\0MXC',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197229,0.000000,1648247937.359332,_binary '\0\0\0\0\0\0\0\0\0\0MX3',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197230,0.000000,1648247949.666944,_binary '\0\0\0\0\0\0\0\0\0\0MX3',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197231,0.000000,1648247952.652623,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197232,0.000000,1648247953.341956,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197233,0.000000,1648247960.552805,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197234,0.000000,1648247961.363801,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197235,0.000000,1648252166.332336,_binary '\0\0\0\0\0\0\0\0\0\0v)',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197236,0.000000,1648252171.099903,_binary '\0\0\0\0\0\0\0\0\0\0v)',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197237,0.000000,1648254486.316339,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197238,0.000000,1648254490.617944,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197239,0.000000,1648254491.615460,_binary '\0\0\0\0\0\0\0\0\0\0MXQ',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197240,0.000000,1648254492.221701,_binary '\0\0\0\0\0\0\0\0\0\0MXQ',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197241,0.000000,1648254495.398230,_binary '\0\0\0\0\0\0\0\0\0\0MX',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197242,0.000000,1648254496.044775,_binary '\0\0\0\0\0\0\0\0\0\0MX',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197243,0.000000,1648254499.059899,_binary '\0\0\0\0\0\0\0\0\0\0MX',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197244,0.000000,1648254499.736858,_binary '\0\0\0\0\0\0\0\0\0\0MX',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197245,0.000000,1648264812.921505,_binary '\0\0\0\0\0\0\0\0\0\0kl',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197246,0.000000,1648265410.456366,_binary '\0\0\0\0\0\0\0\0\0\0j|b',0,404,0,0,0,'http://kclgenetics.com/autoload_classmap.php','http://simplesite.com','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),(197247,0.000000,1648265410.457340,_binary '\0\0\0\0\0\0\0\0\0\0j|<',0,404,0,0,0,'http://kclgenetics.com/autoload_classmap.php','http://simplesite.com','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),(197248,0.000000,1648267843.802812,_binary '\0\0\0\0\0\0\0\0\0\0eق',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','',NULL,NULL),(197249,0.000000,1648267850.041487,_binary '\0\0\0\0\0\0\0\0\0\0eق',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','',NULL,NULL),(197250,0.000000,1648267851.938022,_binary '\0\0\0\0\0\0\0\0\0\0eق',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','',NULL,NULL),(196103,0.000000,1646749389.386501,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196102,0.000000,1646737386.549136,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196114,0.000000,1646752616.662591,_binary '\0\0\0\0\0\0\0\0\0\0\\\@',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196113,0.000000,1646752613.930647,_binary '\0\0\0\0\0\0\0\0\0\0\\\@',0,200,0,0,0,'http://kclgenetics.com/feed/','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196112,0.000000,1646752613.914540,_binary '\0\0\0\0\0\0\0\0\0\0\\\@',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196111,0.000000,1646749420.480652,_binary '\0\0\0\0\0\0\0\0\0\0Wb',0,404,0,0,0,'https://kclgenetics.com/.well-known/security.txt','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0','',NULL,NULL),(196110,0.000000,1646749406.673729,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=b68cfc2006e184be5cdb8d1fc0d56fc2&signature=823ca3d7ed06eb241db5281f1604bef6d52952593eb171e61f8273ca311801d1&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196109,0.000000,1646749405.890454,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196108,0.000000,1646749404.385776,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196107,0.000000,1646749404.963132,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'https://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=b68cfc2006e184be5cdb8d1fc0d56fc2&signature=823ca3d7ed06eb241db5281f1604bef6d52952593eb171e61f8273ca311801d1&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196106,0.000000,1646749397.565985,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196105,0.000000,1646749397.565985,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196104,0.000000,1646749389.386088,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196949,0.000000,1648022808.233501,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196312,0.000000,1647140405.597030,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=244837534132d020ad51aef3dbf2f922&signature=fe19590d14fe387fa538cbaf1f4c9263822daa36bd3d34c5e8b56d7169216361&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196314,0.000000,1647140503.540882,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=952036582307e4f3fd9a8edcee7b7e8b&signature=f6821043f70037d2018c56e45477191a95878aa5480038e07461e78abc4bae3d&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196313,0.000000,1647140454.962140,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=29bfae8eda307318ea8762413e77f696&signature=b099564a6ad8c34b73bbb7d009154e9765a7b26863605270362988133a1ff2b1&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196788,0.000000,1647864709.061844,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/comments/feed/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196786,0.000000,1647864123.566704,_binary '\0\0\0\0\0\0\0\0\0\0MX\r',0,301,0,0,0,'http://larsonspolledherefords.com/kclgenetics.com/index.php/kcl-4002-bonissa-65k-92s-3','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196787,0.000000,1647864706.542104,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196785,0.000000,1647864119.510734,_binary '\0\0\0\0\0\0\0\0\0\0]',0,301,0,0,0,'http://larsonspolledherefords.com/kclgenetics.com/index.php/kcl-4002-bonissa-65k-92s-3','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196959,0.000000,1648026409.873665,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196958,0.000000,1648026408.040951,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196957,0.000000,1648026319.560043,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-71u-719t-mr-hereford-11x','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196956,0.000000,1648026317.740050,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-71u-719t-mr-hereford-11x','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196955,0.000000,1648025514.914383,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196954,0.000000,1648025509.575608,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196953,0.000000,1648024609.760693,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196952,0.000000,1648024605.152610,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196950,0.000000,1648023705.770135,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196951,0.000000,1648023713.324141,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196240,0.000000,1646958797.872948,_binary '\0\0\0\0\0\0\0\0\0\0#Xn',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196241,0.000000,1646958798.889058,_binary '\0\0\0\0\0\0\0\0\0\0#Xn',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196242,0.000000,1646958805.087513,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196243,0.000000,1646958805.789186,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196244,0.000000,1646958806.677170,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196245,0.000000,1646976710.939335,_binary '\0\0\0\0\0\0\0\0\0\0\\+T\',0,404,0,0,0,'http://www.larsonpolledherefords.com/kclgenetics.com/','http://larsonpolledherefords.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36','',NULL,NULL),(196246,0.000000,1646976708.462487,_binary '\0\0\0\0\0\0\0\0\0\0J',0,404,0,0,0,'http://larsonpolledherefords.com/kclgenetics.com/','http://larsonpolledherefords.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36','',NULL,NULL),(196247,0.000000,1646976721.370891,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'https://kclgenetics.com/','https://kclgenetics.com/','WordPress/5.9.1; http://kclgenetics.com','',NULL,NULL),(196248,0.000000,1646976723.178673,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'https://kclgenetics.com/','https://kclgenetics.com/','WordPress/5.9.1; http://kclgenetics.com','',NULL,NULL),(196249,0.000000,1646977630.609413,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196250,0.000000,1646977635.510609,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196251,0.000000,1646980855.396306,_binary '\0\0\0\0\0\0\0\0\0\0*\\nt',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider','',NULL,NULL),(196252,0.000000,1646982142.280121,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://www.kclgenetics.com/index.php/pure-country-0109','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196253,0.000000,1646982143.786136,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://www.kclgenetics.com/index.php/pure-country-0109','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196254,0.000000,1646986079.769372,_binary '\0\0\0\0\0\0\0\0\0\0_',0,301,0,0,0,'https://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196255,0.000000,1646986083.836161,_binary '\0\0\0\0\0\0\0\0\0\0_',0,301,0,0,0,'https://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196256,0.000000,1646990924.545586,_binary '\0\0\0\0\0\0\0\0\0\0#\O',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196257,0.000000,1646990927.088954,_binary '\0\0\0\0\0\0\0\0\0\0#\O',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196258,0.000000,1646993633.509193,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196259,0.000000,1646993636.737972,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196260,0.000000,1646996649.224921,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196261,0.000000,1646996716.933016,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=a5e9f3866e267fd76fc6e80d99b07dba&signature=3d496b82d62f76ddf645286596590e5962a481a1d49414de6e16364f6361e81a&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196262,0.000000,1646996801.041219,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Softaculous','',NULL,NULL),(196263,0.000000,1646996806.726076,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196264,0.000000,1647004240.108452,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647004231&nonce=PjtmJxQ4ZU&body-hash&signature=bKcPZZqdrIcZcFyBtdGAaBMRGgs%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647004231&nonce=PjtmJxQ4ZU&body-hash&signature=bKcPZZqdrIcZcFyBtdGAaBMRGgs%3D','Jetpack by WordPress.com','',NULL,NULL),(196265,0.000000,1647004272.292782,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647004231&nonce=PjtmJxQ4ZU&body-hash&signature=bKcPZZqdrIcZcFyBtdGAaBMRGgs%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647004231&nonce=PjtmJxQ4ZU&body-hash&signature=bKcPZZqdrIcZcFyBtdGAaBMRGgs%3D','Jetpack by WordPress.com','',NULL,NULL),(196266,0.000000,1647005756.336479,_binary '\0\0\0\0\0\0\0\0\0\0\\x',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','',NULL,NULL),(196267,0.000000,1647005773.335324,_binary '\0\0\0\0\0\0\0\0\0\0\\x',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','',NULL,NULL),(196268,0.000000,1647005774.872390,_binary '\0\0\0\0\0\0\0\0\0\0\\x',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','',NULL,NULL),(196269,0.000000,1647008136.424471,_binary '\0\0\0\0\0\0\0\0\0\0\ ',0,404,0,0,0,'http://kclgenetics.com/ads.txt','','AdsTxtCrawler/1.0.2','',NULL,NULL),(196270,0.000000,1647008614.251024,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196271,0.000000,1647008614.251049,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196272,0.000000,1647008624.187402,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196273,0.000000,1647008854.191215,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196274,0.000000,1647008857.872774,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196275,0.000000,1647019472.168641,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/','http://baidu.com/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.android.rimet/10487439 Channel/227200 language/zh-CN','',NULL,NULL),(196276,0.000000,1647019508.689456,_binary '\0\0\0\0\0\0\0\0\0\0*\\n}',0,200,0,0,0,'http://kclgenetics.com/','http://baidu.com/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.android.rimet/10487439 Channel/227200 language/zh-CN','',NULL,NULL),(196277,0.000000,1647033343.431764,_binary '\0\0\0\0\0\0\0\0\0\0Bܕ&',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196278,0.000000,1647033343.431490,_binary '\0\0\0\0\0\0\0\0\0\0Bܕ',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196279,0.000000,1647033349.312742,_binary '\0\0\0\0\0\0\0\0\0\0Bܕ',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196280,0.000000,1647033349.326896,_binary '\0\0\0\0\0\0\0\0\0\0Bܕ&',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196281,0.000000,1647047939.404489,_binary '\0\0\0\0\0\0\0\0\0\0&7',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','',NULL,NULL),(196282,0.000000,1647066643.325492,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196283,0.000000,1647066652.548594,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196284,0.000000,1647068823.946423,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://www.kclgenetics.com/index.php/pure-country-0109','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196285,0.000000,1647068829.397442,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://www.kclgenetics.com/index.php/pure-country-0109','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196286,0.000000,1647070050.315808,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196287,0.000000,1647070052.264296,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196288,0.000000,1647070053.706879,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/?wordfence_lh=1&hid=580750F0C356DDD363905D3FE3E51AA8','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196289,0.000000,1647070055.571875,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fkclgenetics.com%2F&format=xml','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196290,0.000000,1647070056.578843,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fkclgenetics.com%2F&format=xml','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196291,0.000000,1647070057.773015,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,404,0,0,0,'http://kclgenetics.com/contact-form-7/v1','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196292,0.000000,1647070059.054543,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fkclgenetics.com%2F','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196293,0.000000,1647070059.938205,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fkclgenetics.com%2F','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(195750,0.000000,1646178426.895867,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_phocagallery','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195751,0.000000,1646178427.737282,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=fckeditor/editor/filemanager/connectors/uploadtest.html','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195978,0.000000,1646534722.295076,_binary '\0\0\0\0\0\0\0\0\0\0{}m',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195979,0.000000,1646541575.796881,_binary '\0\0\0\0\0\0\0\0\0\0-\D',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195980,0.000000,1646541577.624594,_binary '\0\0\0\0\0\0\0\0\0\0-\D',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195678,0.000000,1646092511.011716,_binary '\0\0\0\0\0\0\0\0\0\0ܵle',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(195676,0.000000,1646092484.423599,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=7cdf839bc959cf615fa8d7de64d7b4d7&signature=4fcc03b81e85455b02ed0f0c1a04d0381826654b5846b401a7fd2d9d725755b0&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195677,0.000000,1646092509.648050,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=e3decb590f653652e5b6f346487c7fe5&signature=2778286ccdee2891f530a53f6c94739c99eb91e54ba4231953322b58dfd00d7e&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195749,0.000000,1646178426.222896,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_phocagallery','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195748,0.000000,1646178424.389144,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_jevents','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195747,0.000000,1646178423.718142,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_jevents','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195746,0.000000,1646178422.931244,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_google','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195745,0.000000,1646178422.274997,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_google','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195744,0.000000,1646178421.429232,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_fckeditor','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195743,0.000000,1646178420.778956,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_fckeditor','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195680,0.000000,1646095276.375842,_binary '\0\0\0\0\0\0\0\0\0\0#W\\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195679,0.000000,1646095277.220533,_binary '\0\0\0\0\0\0\0\0\0\0\"\\7',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(197059,0.000000,1648154650.512544,_binary '\0\0\0\0\0\0\0\0\0\0U]Yz',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64; rv:81.0) Gecko/20100101 Firefox/81.0','',NULL,NULL),(197057,0.000000,1648154634.209076,_binary '\0\0\0\0\0\0\0\0\0\0U]Yz',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64; rv:81.0) Gecko/20100101 Firefox/81.0','',NULL,NULL),(197058,0.000000,1648154633.330058,_binary '\0\0\0\0\0\0\0\0\0\0U]Yz',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; seocompany/0.6; +; )','',NULL,NULL),(197055,0.000000,1648153503.571038,_binary '\0\0\0\0\0\0\0\0\0\0\0VU',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1648153501&nonce=kQjFUuCotI&body-hash&signature=S2RR0doAg0PD6RIn1XQnlTE7JIg%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1648153501&nonce=kQjFUuCotI&body-hash&signature=S2RR0doAg0PD6RIn1XQnlTE7JIg%3D','Jetpack by WordPress.com','',NULL,NULL),(197056,0.000000,1648153507.120301,_binary '\0\0\0\0\0\0\0\0\0\0\0VU',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1648153501&nonce=kQjFUuCotI&body-hash&signature=S2RR0doAg0PD6RIn1XQnlTE7JIg%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1648153501&nonce=kQjFUuCotI&body-hash&signature=S2RR0doAg0PD6RIn1XQnlTE7JIg%3D','Jetpack by WordPress.com','',NULL,NULL),(196162,0.000000,1646827716.702536,_binary '\0\0\0\0\0\0\0\0\0\03O,',0,301,0,0,0,'https://www.kclgenetics.com/','','Mozilla/5.0 zgrab/0.x','',NULL,NULL),(196163,0.000000,1646827720.131947,_binary '\0\0\0\0\0\0\0\0\0\03O,',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 zgrab/0.x','',NULL,NULL),(196164,0.000000,1646827721.400024,_binary '\0\0\0\0\0\0\0\0\0\03O,',0,301,0,0,0,'https://www.kclgenetics.com/','','Mozilla/5.0 zgrab/0.x','',NULL,NULL),(196165,0.000000,1646835798.972942,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196166,0.000000,1646835798.972519,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196167,0.000000,1646835803.071411,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196168,0.000000,1646835803.088422,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196151,1646815455.204135,1646815454.869200,_binary '\0\0\0\0\0\0\0\0\0\0\r',0,403,0,0,0,'http://kclgenetics.com/wp/wp-admin/includes/','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwL3dwLWFkbWluL2luY2x1ZGVzLw==\",\"category\":\"brute-force\",\"ssl\":0}'),(196169,0.000000,1646835808.877293,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196150,1646815461.667456,1646815461.598900,_binary '\0\0\0\0\0\0\0\0\0\0\r',0,403,0,0,0,'http://kclgenetics.com/wordpress/wp-admin/includes/','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dvcmRwcmVzcy93cC1hZG1pbi9pbmNsdWRlcy8=\",\"category\":\"brute-force\",\"ssl\":0}'),(196043,0.000000,1646648080.796421,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196020,0.000000,1646618370.412254,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=8b651b6b7cb76d76c3bfcb23ae95f840&signature=da3cd6174af6bb1ea1497715521620bcc095943a257f7b878631dbdd5319e312&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196021,0.000000,1646618418.524250,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=02f10cf6e1f67a5b771cb9c0478b5610&signature=ecbb2457b196cd7bff390b0e082a14421e2d8ffa5238ff5d6a7a4f73cbd290db&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196022,0.000000,1646618448.313498,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=c39cb97e7de163bfdecd9a7a67519653&signature=414119f375be7cacceb970f03d9fc337ad18c7e08701d92ef891e7d2d66a0221&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196023,0.000000,1646621603.833339,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196024,0.000000,1646621606.604758,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196025,0.000000,1646625794.579510,_binary '\0\0\0\0\0\0\0\0\0\0ͩ\')',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36','',NULL,NULL),(196026,0.000000,1646639722.279052,_binary '\0\0\0\0\0\0\0\0\0\0{}m',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196027,0.000000,1646639726.077911,_binary '\0\0\0\0\0\0\0\0\0\0{}m',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196028,0.000000,1646641466.301747,_binary '\0\0\0\0\0\0\0\0\0\0*S+',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Linux; U; Android 2.2; en-us; Nexus One Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1','',NULL,NULL),(196029,0.000000,1646641468.323898,_binary '\0\0\0\0\0\0\0\0\0\0*S+',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Linux; U; Android 2.2; en-us; Nexus One Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1','',NULL,NULL),(196030,0.000000,1646641471.293212,_binary '\0\0\0\0\0\0\0\0\0\0*S+',0,301,0,0,0,'https://www.kclgenetics.com/','','Mozilla/5.0 (Linux; U; Android 2.2; en-us; Nexus One Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1','',NULL,NULL),(196031,0.000000,1646641472.009918,_binary '\0\0\0\0\0\0\0\0\0\0*S+',0,301,0,0,0,'https://www.kclgenetics.com/','','Mozilla/5.0 (Linux; U; Android 2.2; en-us; Nexus One Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1','',NULL,NULL),(196032,0.000000,1646645289.020778,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196033,0.000000,1646645290.733057,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196034,0.000000,1646645291.511514,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/comments/feed/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196035,0.000000,1646645292.164497,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/comments/feed/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196036,0.000000,1646648074.495697,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196037,0.000000,1646648076.329362,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196038,0.000000,1646648077.156186,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196039,0.000000,1646648077.845805,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196040,0.000000,1646648078.601834,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196041,0.000000,1646648079.299133,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196042,0.000000,1646648080.097100,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196424,0.000000,1647285496.016510,_binary '\0\0\0\0\0\0\0\0\0\0BP[',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Linux; Android 7.0; SM-G930V Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36 (compatible; Google-Read-Aloud; +https://support.google.com/webmasters/answer/1061943)','',NULL,NULL),(196425,0.000000,1647285496.762449,_binary '\0\0\0\0\0\0\0\0\0\0BP[',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Linux; Android 7.0; SM-G930V Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36 (compatible; Google-Read-Aloud; +https://support.google.com/webmasters/answer/1061943)','',NULL,NULL),(196429,0.000000,1647285920.097672,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196428,0.000000,1647285919.278258,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196426,0.000000,1647285496.780687,_binary '\0\0\0\0\0\0\0\0\0\0BP[',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Linux; Android 7.0; SM-G930V Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36 (compatible; Google-Read-Aloud; +https://support.google.com/webmasters/answer/1061943)','',NULL,NULL),(196427,0.000000,1647285917.359651,_binary '\0\0\0\0\0\0\0\0\0\0\&',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196423,0.000000,1647285495.988336,_binary '\0\0\0\0\0\0\0\0\0\0BP[',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Linux; Android 7.0; SM-G930V Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36 (compatible; Google-Read-Aloud; +https://support.google.com/webmasters/answer/1061943)','',NULL,NULL),(196422,0.000000,1647285495.149005,_binary '\0\0\0\0\0\0\0\0\0\0BP[',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Linux; Android 7.0; SM-G930V Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36 (compatible; Google-Read-Aloud; +https://support.google.com/webmasters/answer/1061943)','',NULL,NULL),(196421,0.000000,1647285494.459469,_binary '\0\0\0\0\0\0\0\0\0\0BP[',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Linux; Android 7.0; SM-G930V Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36 (compatible; Google-Read-Aloud; +https://support.google.com/webmasters/answer/1061943)','',NULL,NULL),(196419,0.000000,1647285490.567653,_binary '\0\0\0\0\0\0\0\0\0\0C\\',0,301,0,0,0,'http://www.kclgenetics.com/','https://lm.facebook.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/202.0.432052895 Mobile/15E148 Safari/604.1','',NULL,NULL),(196420,0.000000,1647285491.252031,_binary '\0\0\0\0\0\0\0\0\0\0C\\',0,301,0,0,0,'http://www.kclgenetics.com/','https://lm.facebook.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/202.0.432052895 Mobile/15E148 Safari/604.1','',NULL,NULL),(196416,0.000000,1647285482.417689,_binary '\0\0\0\0\0\0\0\0\0\0Wx',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196417,0.000000,1647285483.351149,_binary '\0\0\0\0\0\0\0\0\0\0W',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196418,0.000000,1647285484.050825,_binary '\0\0\0\0\0\0\0\0\0\0W',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196415,0.000000,1647285481.738359,_binary '\0\0\0\0\0\0\0\0\0\0Wx',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196413,0.000000,1647285478.979955,_binary '\0\0\0\0\0\0\0\0\0\0Wx',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196414,0.000000,1647285480.825546,_binary '\0\0\0\0\0\0\0\0\0\0Wx',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196412,0.000000,1647284487.445836,_binary '\0\0\0\0\0\0\0\0\0\0jag',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/ubh/up.php','http://simplesite.com','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),(196411,0.000000,1647284486.034885,_binary '\0\0\0\0\0\0\0\0\0\0jag',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/ubh/up.php','http://simplesite.com','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),(196410,0.000000,1647282698.138899,_binary '\0\0\0\0\0\0\0\0\0\0-',0,404,0,0,0,'http://kclgenetics.com/autoload_classmap.php','http://simplesite.com','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),(196408,0.000000,1647271496.260355,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196409,0.000000,1647280633.034073,_binary '\0\0\0\0\0\0\0\0\0\0YK\',0,404,0,0,0,'http://kclgenetics.com/wp-admin/maint/wp-aespa.php','http://simplesite.com','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),(196407,0.000000,1647271458.476654,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195933,0.000000,1646464642.775614,_binary '\0\0\0\0\0\0\0\0\0\0`\',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195932,0.000000,1646464641.966469,_binary '\0\0\0\0\0\0\0\0\0\0`\',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(196064,0.000000,1646663110.530994,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195931,0.000000,1646464640.521346,_binary '\0\0\0\0\0\0\0\0\0\0`\',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(197160,0.000000,1648199778.921766,_binary '\0\0\0\0\0\0\0\0\0\0Ox',0,301,0,0,0,'http://kclgenetics.com/about-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(197159,0.000000,1648199778.219926,_binary '\0\0\0\0\0\0\0\0\0\0Ox',0,301,0,0,0,'http://kclgenetics.com/about-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(197157,0.000000,1648199776.679957,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/about-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(197158,0.000000,1648199777.330392,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/about-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(197149,0.000000,1648192740.444256,_binary '\0\0\0\0\0\0\0\0\0\0վ(',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197150,0.000000,1648195506.795051,_binary '\0\0\0\0\0\0\0\0\0\0*\\np',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider','',NULL,NULL),(197151,0.000000,1648196446.131583,_binary '\0\0\0\0\0\0\0\0\0\0P\\',0,404,0,0,0,'http://kclgenetics.com/wp-admin/js/widgets/content.php','http://simplesite.com','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),(197152,0.000000,1648196981.452739,_binary '\0\0\0\0\0\0\0\0\0\0vb',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197153,0.000000,1648196983.288678,_binary '\0\0\0\0\0\0\0\0\0\0vb',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197154,0.000000,1648198857.392201,_binary '\0\0\0\0\0\0\0\0\0\0H\',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197155,0.000000,1648199642.051996,_binary '\0\0\0\0\0\0\0\0\0\0\\,{',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197156,0.000000,1648199774.247916,_binary '\0\0\0\0\0\0\0\0\0\0O',0,200,0,0,0,'https://kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(197097,0.000000,1648169387.405482,_binary '\0\0\0\0\0\0\0\0\0\0\"U',0,301,0,0,0,'http://kclgenetics.com/about-us','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(196582,1647508219.330229,1647508219.262900,_binary '\0\0\0\0\0\0\0\0\0\0\\\>c',0,403,0,0,0,'http://kclgenetics.com/STORE','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L1NUT1JF\",\"category\":\"brute-force\",\"ssl\":0}'),(196315,0.000000,1647140509.096233,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=f9703cfdec8e13039933b9013c8f2017&signature=dbf4dc53a65b8c04803d6087135d0beeddfcba1a41194c203fce548d695049ec&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196316,0.000000,1647159017.511823,_binary '\0\0\0\0\0\0\0\0\0\0*\\ni',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider','',NULL,NULL),(196317,0.000000,1647161903.708697,_binary '\0\0\0\0\0\0\0\0\0\0E',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196318,0.000000,1647161908.352636,_binary '\0\0\0\0\0\0\0\0\0\0E',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196319,0.000000,1647161909.211985,_binary '\0\0\0\0\0\0\0\0\0\0E',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196320,0.000000,1647161909.954145,_binary '\0\0\0\0\0\0\0\0\0\0E',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196321,0.000000,1647161910.790704,_binary '\0\0\0\0\0\0\0\0\0\0E\n',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196322,0.000000,1647161911.546668,_binary '\0\0\0\0\0\0\0\0\0\0E\n',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196323,0.000000,1647165873.523745,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196324,0.000000,1647172003.041801,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196325,0.000000,1647172013.407578,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196326,0.000000,1647172033.822415,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=787e09b8434e2be49108ee1ac5cc59d4&signature=34764508e53c7a02b1a6ef0cfb68972acade5d4f3dea321c647d43a71f5b60f4&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196327,0.000000,1647172261.371928,_binary '\0\0\0\0\0\0\0\0\0\0E\',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196328,0.000000,1647172263.548930,_binary '\0\0\0\0\0\0\0\0\0\0E\',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196329,0.000000,1647172264.667730,_binary '\0\0\0\0\0\0\0\0\0\0E\w',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196330,0.000000,1647172265.325947,_binary '\0\0\0\0\0\0\0\0\0\0E\w',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196331,0.000000,1647178623.226680,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0(compatible;MSIE9.0;WindowsNT6.1;Trident/5.0)','',NULL,NULL),(196332,0.000000,1647180341.905712,_binary '\0\0\0\0\0\0\0\0\0\0\0VV',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647180341&nonce=xK317O6vgK&body-hash&signature=8RPKyAiB8BuPX4riKFArZHSyKRg%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647180341&nonce=xK317O6vgK&body-hash&signature=8RPKyAiB8BuPX4riKFArZHSyKRg%3D','Jetpack by WordPress.com','',NULL,NULL),(196333,0.000000,1647180345.635473,_binary '\0\0\0\0\0\0\0\0\0\0\0VV',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647180341&nonce=xK317O6vgK&body-hash&signature=8RPKyAiB8BuPX4riKFArZHSyKRg%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647180341&nonce=xK317O6vgK&body-hash&signature=8RPKyAiB8BuPX4riKFArZHSyKRg%3D','Jetpack by WordPress.com','',NULL,NULL),(196334,0.000000,1647181260.195720,_binary '\0\0\0\0\0\0\0\0\0\0\L\',0,404,0,0,0,'http://kclgenetics.com/radio.php','http://simplesite.com','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),(196335,0.000000,1647181425.980687,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196336,0.000000,1647181425.980681,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196337,0.000000,1647181432.368611,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196338,0.000000,1647181432.363318,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196339,0.000000,1647181676.380963,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196340,0.000000,1647183627.701699,_binary '\0\0\0\0\0\0\0\0\0\0\\\ ',0,301,0,0,0,'http://kclgenetics.com/css/index.php','http://simplesite.com','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),(196341,0.000000,1647183632.855577,_binary '\0\0\0\0\0\0\0\0\0\0\\\ ',0,301,0,0,0,'http://kclgenetics.com/css/index.php','http://simplesite.com','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),(196342,0.000000,1647187453.728718,_binary '\0\0\0\0\0\0\0\0\0\0\"N',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196343,0.000000,1647187458.697455,_binary '\0\0\0\0\0\0\0\0\0\0\"N',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196344,0.000000,1647189988.136675,_binary '\0\0\0\0\0\0\0\0\0\06+',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:98.0) Gecko/20100101 Firefox/98.0','',NULL,NULL),(196345,0.000000,1647189999.130959,_binary '\0\0\0\0\0\0\0\0\0\0_p',0,301,0,0,0,'https://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196346,0.000000,1647189999.816230,_binary '\0\0\0\0\0\0\0\0\0\0_p',0,301,0,0,0,'https://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196347,0.000000,1647191761.736700,_binary '\0\0\0\0\0\0\0\0\0\0',0,301,0,0,0,'http://www.kclgenetics.com/','','fasthttp','',NULL,NULL),(196348,0.000000,1647191765.011124,_binary '\0\0\0\0\0\0\0\0\0\0',0,301,0,0,0,'http://www.kclgenetics.com/','','fasthttp','',NULL,NULL),(196349,0.000000,1647193539.681699,_binary '\0\0\0\0\0\0\0\0\0\0\',0,301,0,0,0,'http://kclgenetics.com/index.php?option=phpmyadmin','http://kclgenetics.com','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(196350,0.000000,1647193545.925402,_binary '\0\0\0\0\0\0\0\0\0\0\',0,301,0,0,0,'http://kclgenetics.com/index.php?option=phpmyadmin','http://kclgenetics.com','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(196351,0.000000,1647193546.886399,_binary '\0\0\0\0\0\0\0\0\0\0\',0,301,0,0,0,'http://kclgenetics.com/index.php?option=phpmyadmin2','http://kclgenetics.com','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(196352,0.000000,1647193547.683805,_binary '\0\0\0\0\0\0\0\0\0\0\',0,301,0,0,0,'http://kclgenetics.com/index.php?option=phpmyadmin2','http://kclgenetics.com','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(196353,0.000000,1647193548.669008,_binary '\0\0\0\0\0\0\0\0\0\0\',0,301,0,0,0,'http://kclgenetics.com/index.php?option=com_virtuemart','http://kclgenetics.com','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(196354,0.000000,1647193549.449796,_binary '\0\0\0\0\0\0\0\0\0\0\',0,301,0,0,0,'http://kclgenetics.com/index.php?option=com_virtuemart','http://kclgenetics.com','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(196355,0.000000,1647193550.338392,_binary '\0\0\0\0\0\0\0\0\0\0\',0,301,0,0,0,'http://kclgenetics.com/index.php?option=fckeditor/editor/filemanager/connectors/uploadtest.html','http://kclgenetics.com','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(196356,0.000000,1647193551.069977,_binary '\0\0\0\0\0\0\0\0\0\0\',0,301,0,0,0,'http://kclgenetics.com/index.php?option=fckeditor/editor/filemanager/connectors/uploadtest.html','http://kclgenetics.com','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(196357,0.000000,1647193853.683559,_binary '\0\0\0\0\0\0\0\0\0\0@5W',0,404,0,0,0,'http://kclgenetics.com/jindex.php','http://simplesite.com','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),(196358,0.000000,1647193859.635636,_binary '\0\0\0\0\0\0\0\0\0\0@5W',0,404,0,0,0,'http://kclgenetics.com/jindex.php','http://simplesite.com','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),(196359,0.000000,1647204765.850689,_binary '\0\0\0\0\0\0\0\0\0\0Qd',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/sketch/content-sample.php','http://simplesite.com','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),(196360,0.000000,1647207027.317750,_binary '\0\0\0\0\0\0\0\0\0\0jb',0,404,0,0,0,'http://kclgenetics.com/doc.php','http://simplesite.com','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),(196361,0.000000,1647214438.286702,_binary '\0\0\0\0\0\0\0\0\0\0]_خ',0,404,0,0,0,'http://kclgenetics.com/1index.php','http://simplesite.com','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),(196362,0.000000,1647214484.044134,_binary '\0\0\0\0\0\0\0\0\0\0=\',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196363,0.000000,1647214484.716067,_binary '\0\0\0\0\0\0\0\0\0\0=\',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196364,0.000000,1647217196.943297,_binary '\0\0\0\0\0\0\0\0\0\0\"ފ\',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196365,0.000000,1647221389.216727,_binary '\0\0\0\0\0\0\0\0\0\0C\3',0,404,0,0,0,'http://kclgenetics.com/ups.php','http://simplesite.com','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),(196366,0.000000,1647222649.094540,_binary '\0\0\0\0\0\0\0\0\0\0\D',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/press/wp-class.php','http://simplesite.com','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),(196367,0.000000,1647230449.672864,_binary '\0\0\0\0\0\0\0\0\0\0A\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36','',NULL,NULL),(196368,0.000000,1647231851.863677,_binary '\0\0\0\0\0\0\0\0\0\0g&',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','',NULL,NULL),(196369,0.000000,1647231886.097546,_binary '\0\0\0\0\0\0\0\0\0\0g&',0,200,0,0,0,'http://kclgenetics.com/comments/feed/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','',NULL,NULL),(196370,0.000000,1647231887.499025,_binary '\0\0\0\0\0\0\0\0\0\0g&',0,200,0,0,0,'http://kclgenetics.com/comments/feed/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','',NULL,NULL),(196371,0.000000,1647231888.198619,_binary '\0\0\0\0\0\0\0\0\0\0g&',0,200,0,0,0,'http://kclgenetics.com/comments/feed/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','',NULL,NULL),(196372,0.000000,1647231890.921125,_binary '\0\0\0\0\0\0\0\0\0\0g&',0,200,0,0,0,'http://kclgenetics.com/contact-us/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','',NULL,NULL),(196373,0.000000,1647231906.491304,_binary '\0\0\0\0\0\0\0\0\0\0g&',0,200,0,0,0,'http://kclgenetics.com/contact-us/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','',NULL,NULL),(196374,0.000000,1647231931.034583,_binary '\0\0\0\0\0\0\0\0\0\0g&',0,200,0,0,0,'http://kclgenetics.com/wp-json/oembed/1.0/embed?url=http://kclgenetics.com/contact-us/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','',NULL,NULL),(196375,0.000000,1647231932.005669,_binary '\0\0\0\0\0\0\0\0\0\0g&',0,200,0,0,0,'http://kclgenetics.com/wp-json/oembed/1.0/embed?url=http://kclgenetics.com/contact-us/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','',NULL,NULL),(196376,0.000000,1647231934.678474,_binary '\0\0\0\0\0\0\0\0\0\0g&',0,200,0,0,0,'http://kclgenetics.com/wp-json/oembed/1.0/embed?url=http://kclgenetics.com/contact-us/&format=xml','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','',NULL,NULL),(196377,0.000000,1647231935.468924,_binary '\0\0\0\0\0\0\0\0\0\0g&',0,200,0,0,0,'http://kclgenetics.com/wp-json/oembed/1.0/embed?url=http://kclgenetics.com/contact-us/&format=xml','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','',NULL,NULL),(196378,0.000000,1647239756.961662,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196379,0.000000,1647239761.790679,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196380,0.000000,1647252206.467112,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196381,0.000000,1647258944.833894,_binary '\0\0\0\0\0\0\0\0\0\0װ\',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',NULL,NULL),(196382,0.000000,1647258951.211417,_binary '\0\0\0\0\0\0\0\0\0\0װ\',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',NULL,NULL),(196383,0.000000,1647258952.508601,_binary '\0\0\0\0\0\0\0\0\0\0װ\',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',NULL,NULL),(196384,0.000000,1647258954.928583,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=dfc07adb9fa02dea1d7953187c823f8a&signature=57e667cd43c0789256b374524303a10b88966cc8d19ace601cba71bb75c64698&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196385,0.000000,1647262051.496835,_binary '\0\0\0\0\0\0\0\0\0\0vd',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196386,0.000000,1647262053.846877,_binary '\0\0\0\0\0\0\0\0\0\0vd',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196387,0.000000,1647263338.203467,_binary '\0\0\0\0\0\0\0\0\0\0k',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(196388,0.000000,1647266819.300929,_binary '\0\0\0\0\0\0\0\0\0\0C\',0,404,0,0,0,'http://kclgenetics.com/doc.php/404.php','http://simplesite.com','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),(196389,0.000000,1647266835.989033,_binary '\0\0\0\0\0\0\0\0\0\0juS',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/enron/doc.php','http://simplesite.com','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),(196390,0.000000,1647266833.324910,_binary '\0\0\0\0\0\0\0\0\0\0juS',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/enron/doc.php','http://simplesite.com','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),(196391,0.000000,1647267855.955257,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196392,0.000000,1647267855.954908,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196393,0.000000,1647267873.973126,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196394,0.000000,1647271031.153916,_binary '\0\0\0\0\0\0\0\0\0\0\=',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196395,0.000000,1647271036.871212,_binary '\0\0\0\0\0\0\0\0\0\0\=',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196396,0.000000,1647271039.116257,_binary '\0\0\0\0\0\0\0\0\0\0\=',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196397,0.000000,1647271039.850103,_binary '\0\0\0\0\0\0\0\0\0\0\=',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196398,0.000000,1647271040.717166,_binary '\0\0\0\0\0\0\0\0\0\0\=',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196399,0.000000,1647271041.356410,_binary '\0\0\0\0\0\0\0\0\0\0\=',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196400,0.000000,1647271042.127091,_binary '\0\0\0\0\0\0\0\0\0\0\=',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196401,0.000000,1647271042.813664,_binary '\0\0\0\0\0\0\0\0\0\0\=',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196402,0.000000,1647271043.604809,_binary '\0\0\0\0\0\0\0\0\0\0\=',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196403,0.000000,1647271044.304709,_binary '\0\0\0\0\0\0\0\0\0\0\=',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196404,0.000000,1647271045.042719,_binary '\0\0\0\0\0\0\0\0\0\0\=',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196405,0.000000,1647271453.161652,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196406,0.000000,1647271457.180499,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197161,0.000000,1648199779.944592,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/contact-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(197162,0.000000,1648199780.603264,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/contact-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195752,0.000000,1646178428.414197,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=fckeditor/editor/filemanager/connectors/uploadtest.html','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195727,0.000000,1646145396.341642,_binary '\0\0\0\0\0\0\0\0\0\0T\;',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195720,0.000000,1646139786.036566,_binary '\0\0\0\0\0\0\0\0\0\0vb',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195721,1646140589.766228,1646140589.496600,_binary '\0\0\0\0\0\0\0\0\0\0O X',0,403,0,0,0,'http://kclgenetics.com/',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV09XNjQ7IHJ2OjQ1LjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNDUuMA==\",\"path\":\"Lw==\",\"category\":\"brute-force\",\"ssl\":0}'),(195726,0.000000,1646145394.974428,_binary '\0\0\0\0\0\0\0\0\0\0T\;',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195724,0.000000,1646145392.935560,_binary '\0\0\0\0\0\0\0\0\0\0T\;',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195725,0.000000,1646145394.273677,_binary '\0\0\0\0\0\0\0\0\0\0T\;',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195722,0.000000,1646142508.489286,_binary '\0\0\0\0\0\0\0\0\0\0\q!',0,404,0,0,0,'http://kclgenetics.com/ads.txt','','AdsTxtCrawler/1.0.2','',NULL,NULL),(195723,0.000000,1646145389.291284,_binary '\0\0\0\0\0\0\0\0\0\0T\;',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195728,0.000000,1646145397.001797,_binary '\0\0\0\0\0\0\0\0\0\0T\;',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195729,0.000000,1646150275.549342,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195730,0.000000,1646150278.935056,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195731,0.000000,1646150275.549574,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195732,0.000000,1646150280.077692,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195733,0.000000,1646152487.749350,_binary '\0\0\0\0\0\0\0\0\0\0%',0,301,0,0,0,'https://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36','',NULL,NULL),(195734,0.000000,1646152492.509619,_binary '\0\0\0\0\0\0\0\0\0\0%',0,301,0,0,0,'https://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36','',NULL,NULL),(195735,0.000000,1646154516.198311,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,404,0,0,0,'http://kclgenetics.com/cart/','','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727)','',NULL,NULL),(195736,0.000000,1646160278.219306,_binary '\0\0\0\0\0\0\0\0\0\0#.T',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31','',NULL,NULL),(195737,0.000000,1646178412.356339,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_jobprofile','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195738,0.000000,1646178416.889240,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_jobprofile','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195739,0.000000,1646178417.749812,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_mailto','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195740,0.000000,1646178418.485834,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_mailto','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195741,0.000000,1646178419.279591,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_oziogallery2','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195742,0.000000,1646178419.935510,_binary '\0\0\0\0\0\0\0\0\0\0f',0,301,0,0,0,'http://kclgenetics.com/contact-us/index.php?option=com_oziogallery2','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(195981,0.000000,1646541578.638920,_binary '\0\0\0\0\0\0\0\0\0\0մ˷',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195618,0.000000,1646045805.546688,_binary '\0\0\0\0\0\0\0\0\0\0E',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195591,0.000000,1646037974.951098,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(195592,0.000000,1646037975.269999,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(195593,0.000000,1646037975.468884,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5 Build/MRA58N) AppleWebKit/537.36(KHTML, like Gecko) Chrome/66.0.3359.30 Mobile Safari/537.36','',NULL,NULL),(195594,0.000000,1646037975.659084,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,301,0,0,0,'http://kclgenetics.com//sitemap.html','','','',NULL,NULL),(195595,0.000000,1646037975.785583,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,404,0,0,0,'http://kclgenetics.com/sitemap.xml','','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_7; da-dk) AppleWebKit/533.21.1 (KHTML, like Gecko) Version/5.0.5 Safari/533.21.1','',NULL,NULL),(195596,0.000000,1646037975.820188,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20100101 Firefox/17.0','',NULL,NULL),(195597,0.000000,1646037976.030674,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','curl/7.38.0','',NULL,NULL),(195598,0.000000,1646037976.427685,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(195599,0.000000,1646037976.734583,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,301,0,0,0,'http://kclgenetics.com//sitemap.html','','','',NULL,NULL),(195600,0.000000,1646037976.804096,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','','',NULL,NULL),(195601,0.000000,1646037976.810871,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','','',NULL,NULL),(195602,0.000000,1646037977.285731,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(195603,0.000000,1646037977.541186,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,301,0,0,0,'http://kclgenetics.com//sitemap.html','','','',NULL,NULL),(195604,0.000000,1646037977.587055,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,404,0,0,0,'http://kclgenetics.com/website-sitemap.xml','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(195605,0.000000,1646037978.428954,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,404,0,0,0,'http://kclgenetics.com/sitemap.html','','','',NULL,NULL),(195606,0.000000,1646037978.617076,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,301,0,0,0,'http://www.kclgenetics.com/','','curl/7.38.0','',NULL,NULL),(195607,0.000000,1646037978.537424,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,404,0,0,0,'http://kclgenetics.com/website-sitemap.xml','','Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)','',NULL,NULL),(195608,0.000000,1646037978.538480,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.1','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20100101 Firefox/17.0','',NULL,NULL),(195609,0.000000,1646037979.332174,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,301,0,0,0,'http://www.kclgenetics.com/','','curl/7.38.0','',NULL,NULL),(195610,0.000000,1646037979.501395,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,404,0,0,0,'http://kclgenetics.com/sitemap_index.xml','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(195611,0.000000,1646037979.858463,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.1','http://kclgenetics.com/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5 Build/MRA58N) AppleWebKit/537.36(KHTML, like Gecko) Chrome/66.0.3359.30 Mobile Safari/537.36','',NULL,NULL),(195612,0.000000,1646037980.159195,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,200,0,0,0,'http://kclgenetics.com/','','curl/7.38.0','',NULL,NULL),(195613,0.000000,1646037980.329856,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,404,0,0,0,'http://kclgenetics.com/sitemap_index.xml','','Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100508 SeaMonkey/2.0.4','',NULL,NULL),(195614,0.000000,1646038023.157597,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(195615,0.000000,1646038024.342417,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 Mozilla/5.0 (Linux; U; Android 2.2) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 NokiaN90-1/3.0545.5.1 Series60/2.8 Profile/MIDP-2.0 Configuration/CLDC-1.1 Mozilla/5.0 (X11; U; Linux armv7l; en-GB; rv:1.9.2b6pre) Gecko/20100318 Firefox/3.5 Maemo Browser 1.7.4.7 RX-51 N900','',NULL,NULL),(195616,0.000000,1646045625.719307,_binary '\0\0\0\0\0\0\0\0\0\0{1',0,301,0,0,0,'http://www.kclgenetics.com/','http://www.kclgenetics.com/','Mozilla/5.0(compatible;MSIE9.0;WindowsNT6.1;Trident/5.0)','',NULL,NULL),(195617,0.000000,1646045627.592642,_binary '\0\0\0\0\0\0\0\0\0\0{1',0,301,0,0,0,'http://www.kclgenetics.com/','http://www.kclgenetics.com/','Mozilla/5.0(compatible;MSIE9.0;WindowsNT6.1;Trident/5.0)','',NULL,NULL),(196464,0.000000,1647330919.841871,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196465,0.000000,1647336307.163609,_binary '\0\0\0\0\0\0\0\0\0\0%\\',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','',NULL,NULL),(196011,0.000000,1646594786.639044,_binary '\0\0\0\0\0\0\0\0\0\0#͎\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196012,0.000000,1646594791.636977,_binary '\0\0\0\0\0\0\0\0\0\0#͎\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196013,0.000000,1646595520.790206,_binary '\0\0\0\0\0\0\0\0\0\0\5',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','',NULL,NULL),(196014,0.000000,1646618116.088052,_binary '\0\0\0\0\0\0\0\0\0\08#',0,200,0,0,0,'http://kclgenetics.com/','https://www.google.com','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36','',NULL,NULL),(196015,0.000000,1646618127.114927,_binary '\0\0\0\0\0\0\0\0\0\08#',0,200,0,0,0,'https://kclgenetics.com/','https://www.google.com','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36','',NULL,NULL),(196016,0.000000,1646618173.777369,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=standard&cronKey=2cdc5508a42d04881b8fff1bae2fc0cf&signature=ffc1c47f72f0113f05842ce440a6fd9b1a1f0743dcecf5b2655927e7703a4ef2&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195639,0.000000,1646068968.180148,_binary '\0\0\0\0\0\0\0\0\0\0\0VV',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646068963&nonce=lWq23SqBtj&body-hash&signature=vHtoNd4bbzwuAhRmoiK1OXApC10%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646068963&nonce=lWq23SqBtj&body-hash&signature=vHtoNd4bbzwuAhRmoiK1OXApC10%3D','Jetpack by WordPress.com','',NULL,NULL),(196008,0.000000,1646578328.545431,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=81431bef4a99f201c58ec394ae9ba779&signature=2419c5c7b1e744d6d029bb81d644e1600b30c90aeba2e1f305aad0f5b8af8a51&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196006,0.000000,1646578323.647887,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196007,0.000000,1646578323.656445,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196009,0.000000,1646578329.904077,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196010,0.000000,1646578330.778283,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197104,0.000000,1648169388.531897,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,301,0,0,0,'http://kclgenetics.com/visiting-kazakhstan','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(197105,0.000000,1648169388.989285,_binary '\0\0\0\0\0\0\0\0\0\0\"EU\',0,301,0,0,0,'http://kclgenetics.com/currently-used-bulls','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(197108,0.000000,1648169404.442693,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,301,0,0,0,'http://kclgenetics.com//sitemap.html','','','',NULL,NULL),(197109,0.000000,1648169404.490541,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,404,0,0,0,'http://kclgenetics.com/sitemap.xml','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(197107,0.000000,1648169404.274768,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'https://kclgenetics.com/','','','',NULL,NULL),(197106,0.000000,1648169404.031606,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(197103,0.000000,1648169388.240850,_binary '\0\0\0\0\0\0\0\0\0\0\"{\',0,301,0,0,0,'http://kclgenetics.com/2018-hereford-alliance-sale','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(197100,0.000000,1648169387.745860,_binary '\0\0\0\0\0\0\0\0\0\0\"PA',0,301,0,0,0,'http://kclgenetics.com/kcl-donor-cows','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(197101,0.000000,1648169388.084610,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,301,0,0,0,'http://kclgenetics.com/contact-us','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(197102,0.000000,1648169388.226277,_binary '\0\0\0\0\0\0\0\0\0\0\"EU\',0,301,0,0,0,'http://kclgenetics.com/currently-used-bulls','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(196004,0.000000,1646578317.654231,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196003,0.000000,1646564556.234078,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196002,0.000000,1646560314.239056,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/feed/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196001,0.000000,1646560313.470458,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196000,0.000000,1646560309.718030,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195999,0.000000,1646558510.607554,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195998,0.000000,1646558509.929476,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195997,0.000000,1646558508.220457,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195996,0.000000,1646558165.747095,_binary '\0\0\0\0\0\0\0\0\0\0vc',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195995,0.000000,1646558161.325466,_binary '\0\0\0\0\0\0\0\0\0\0vc',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195994,0.000000,1646544688.244335,_binary '\0\0\0\0\0\0\0\0\0\0W\b',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195993,0.000000,1646544681.815790,_binary '\0\0\0\0\0\0\0\0\0\0մ˷',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195992,0.000000,1646544674.869179,_binary '\0\0\0\0\0\0\0\0\0\0-\D',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195991,0.000000,1646544672.739788,_binary '\0\0\0\0\0\0\0\0\0\0-\D',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195990,0.000000,1646544671.041182,_binary '\0\0\0\0\0\0\0\0\0\0-\D',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195989,0.000000,1646542423.969800,_binary '\0\0\0\0\0\0\0\0\0\0T+',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','',NULL,NULL),(195988,0.000000,1646542422.483659,_binary '\0\0\0\0\0\0\0\0\0\0T+',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','',NULL,NULL),(195987,0.000000,1646542419.959078,_binary '\0\0\0\0\0\0\0\0\0\0T+',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','',NULL,NULL),(195986,0.000000,1646541586.754835,_binary '\0\0\0\0\0\0\0\0\0\0W\b',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195984,0.000000,1646541583.155087,_binary '\0\0\0\0\0\0\0\0\0\0_l\M',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195985,0.000000,1646541586.108946,_binary '\0\0\0\0\0\0\0\0\0\0W\b',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195983,0.000000,1646541582.448064,_binary '\0\0\0\0\0\0\0\0\0\0_l\M',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195982,0.000000,1646541579.349623,_binary '\0\0\0\0\0\0\0\0\0\0մ˷',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197184,0.000000,1648211330.250865,_binary '\0\0\0\0\0\0\0\0\0\0\\m',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/cepair/doc.php','http://simplesite.com','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),(197172,0.000000,1648203446.500192,_binary '\0\0\0\0\0\0\0\0\0\03l=',0,301,0,0,0,'https://www.kclgenetics.com/','','','',NULL,NULL),(197173,0.000000,1648203448.233917,_binary '\0\0\0\0\0\0\0\0\0\03l=',0,301,0,0,0,'https://www.kclgenetics.com/','','','',NULL,NULL),(197174,0.000000,1648204482.068352,_binary '\0\0\0\0\0\0\0\0\0\0%aI',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197175,0.000000,1648204684.696805,_binary '\0\0\0\0\0\0\0\0\0\0`}',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197176,0.000000,1648206745.102306,_binary '\0\0\0\0\0\0\0\0\0\0r\d',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197177,0.000000,1648207721.653332,_binary '\0\0\0\0\0\0\0\0\0\0{',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/wp-freeform/style.php','http://simplesite.com','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),(197178,0.000000,1648208663.768334,_binary '\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/workart/doc.php','http://simplesite.com','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),(197179,0.000000,1648209029.514321,_binary '\0\0\0\0\0\0\0\0\0\0\M',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197180,0.000000,1648209032.551766,_binary '\0\0\0\0\0\0\0\0\0\0\M',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197181,0.000000,1648209325.743755,_binary '\0\0\0\0\0\0\0\0\0\0Al\',0,404,0,0,0,'http://kclgenetics.com/.well-known/ffAA531.php','http://simplesite.com','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),(197182,0.000000,1648209747.721873,_binary '\0\0\0\0\0\0\0\0\0\0\z',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197183,0.000000,1648210120.828418,_binary '\0\0\0\0\0\0\0\0\0\0/\~',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/wp-freeform/style.php','http://simplesite.com','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),(197224,0.000000,1648247836.972589,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(197223,0.000000,1648247836.286166,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196742,0.000000,1647789753.043276,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196743,0.000000,1647789753.043276,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196744,0.000000,1647789757.811724,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196745,0.000000,1647789757.810728,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196746,0.000000,1647789762.274486,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196982,0.000000,1648049619.600140,_binary '\0\0\0\0\0\0\0\0\0\06J',0,200,0,0,0,'https://kclgenetics.com/','','webprosbot/2.0 (+mailto:abuse-6337@webpros.com)','',NULL,NULL),(196983,0.000000,1648054796.518653,_binary '\0\0\0\0\0\0\0\0\0\0k',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196984,0.000000,1648054796.519596,_binary '\0\0\0\0\0\0\0\0\0\0k',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196985,0.000000,1648054800.858130,_binary '\0\0\0\0\0\0\0\0\0\0k',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196986,0.000000,1648054800.858130,_binary '\0\0\0\0\0\0\0\0\0\0k',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(196987,0.000000,1648054813.872830,_binary '\0\0\0\0\0\0\0\0\0\0&',0,301,0,0,0,'http://www.kclgenetics.com/','https://lm.facebook.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1','',NULL,NULL),(196988,0.000000,1648054814.548021,_binary '\0\0\0\0\0\0\0\0\0\0&',0,301,0,0,0,'http://www.kclgenetics.com/','https://lm.facebook.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1','',NULL,NULL),(196989,0.000000,1648054815.913645,_binary '\0\0\0\0\0\0\0\0\0\0&',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','http://www.kclgenetics.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1','',NULL,NULL),(196990,0.000000,1648054816.609117,_binary '\0\0\0\0\0\0\0\0\0\0&',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','http://www.kclgenetics.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1','',NULL,NULL),(196991,0.000000,1648063692.816616,_binary '\0\0\0\0\0\0\0\0\0\0(M:',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-512x-145y-el-dorado-49b','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196894,0.000000,1647948530.950451,_binary '\0\0\0\0\0\0\0\0\0\07\'\',0,301,0,0,0,'https://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196895,0.000000,1647948531.683479,_binary '\0\0\0\0\0\0\0\0\0\07\'\',0,301,0,0,0,'https://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196896,0.000000,1647948533.278655,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'https://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=c2f5143714ce41325ca51aafc2bf6ebe&signature=a4a6ef6a2a65b9fc65de56dde7f25576558c621fcffe005451712f581bc397fc&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196558,0.000000,1647475982.764208,_binary '\0\0\0\0\0\0\0\0\0\04!y',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196557,0.000000,1647475966.853793,_binary '\0\0\0\0\0\0\0\0\0\04)L',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196556,0.000000,1647475967.540006,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196555,0.000000,1647473017.141493,_binary '\0\0\0\0\0\0\0\0\0\0.\',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/kona-instagram-feed-for-gutenberg/FoxWSOv1.php','http://simplesite.com','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),(196554,0.000000,1647470499.554168,_binary '\0\0\0\0\0\0\0\0\0\0./',0,404,0,0,0,'http://kclgenetics.com/wp-content/uploads/estate_templates/wpbricks/doc.php','http://simplesite.com','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),(196553,0.000000,1647470499.553707,_binary '\0\0\0\0\0\0\0\0\0\0./',0,404,0,0,0,'http://kclgenetics.com/wp-content/uploads/estate_templates/wpbricks/doc.php','http://simplesite.com','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),(196552,0.000000,1647467380.333718,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196551,0.000000,1647467371.493890,_binary '\0\0\0\0\0\0\0\0\0\0\.\r\',0,200,0,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196550,0.000000,1647467364.836541,_binary '\0\0\0\0\0\0\0\0\0\0\.\r\',0,200,0,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196581,1647508234.166439,1647508234.102900,_binary '\0\0\0\0\0\0\0\0\0\0\\\>c',0,403,0,0,0,'http://kclgenetics.com/forum','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2ZvcnVt\",\"category\":\"brute-force\",\"ssl\":0}'),(196580,0.000000,1647507605.803102,_binary '\0\0\0\0\0\0\0\0\0\0-\r-',0,404,0,0,0,'http://kclgenetics.com/wp-plugins.php','http://simplesite.com','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),(196579,0.000000,1647500210.394157,_binary '\0\0\0\0\0\0\0\0\0\0`\',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(196578,0.000000,1647500209.682036,_binary '\0\0\0\0\0\0\0\0\0\0`\',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(196577,0.000000,1647500204.843996,_binary '\0\0\0\0\0\0\0\0\0\0`\',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(196155,0.000000,1646817603.983901,_binary '\0\0\0\0\0\0\0\0\0\06\W',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36','',NULL,NULL),(196160,0.000000,1646824086.293549,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Softaculous','',NULL,NULL),(196161,0.000000,1646824110.258898,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196159,0.000000,1646824073.390713,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=547ecb92b6ef96e69d52ac02157ee27e&signature=bb3da0f4c4ec5412e7af9754b10d7cfa60e4ca905fea6a1ebc56964c2291fae2&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196152,0.000000,1646817597.918316,_binary '\0\0\0\0\0\0\0\0\0\06\W',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36','',NULL,NULL),(196153,0.000000,1646817597.918042,_binary '\0\0\0\0\0\0\0\0\0\06\W',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36','',NULL,NULL),(196154,0.000000,1646817603.558814,_binary '\0\0\0\0\0\0\0\0\0\06\W',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36','',NULL,NULL),(196116,0.000000,1646754428.867142,_binary '\0\0\0\0\0\0\0\0\0\0\\\@',0,200,0,0,0,'http://kclgenetics.com/feed/','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196115,0.000000,1646753519.532006,_binary '\0\0\0\0\0\0\0\0\0\0\\\@',0,200,0,0,0,'http://kclgenetics.com/feed/','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196120,0.000000,1646757133.570308,_binary '\0\0\0\0\0\0\0\0\0\0\\\@',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196117,0.000000,1646755321.935704,_binary '\0\0\0\0\0\0\0\0\0\0\\\@',0,200,0,0,0,'http://kclgenetics.com/feed/','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196118,0.000000,1646755328.200809,_binary '\0\0\0\0\0\0\0\0\0\0\\\@',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196119,0.000000,1646756230.918449,_binary '\0\0\0\0\0\0\0\0\0\0\\\@',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196121,0.000000,1646758036.216160,_binary '\0\0\0\0\0\0\0\0\0\0\\\@',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196122,0.000000,1646758938.785003,_binary '\0\0\0\0\0\0\0\0\0\0\\\@',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196123,0.000000,1646759841.409229,_binary '\0\0\0\0\0\0\0\0\0\0\\\@',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196124,0.000000,1646762382.734869,_binary '\0\0\0\0\0\0\0\0\0\0',0,301,0,0,0,'http://mail.kclgenetics.com/','','fasthttp','',NULL,NULL),(196125,0.000000,1646762384.460439,_binary '\0\0\0\0\0\0\0\0\0\0',0,301,0,0,0,'http://mail.kclgenetics.com/','','fasthttp','',NULL,NULL),(196126,0.000000,1646768849.133011,_binary '\0\0\0\0\0\0\0\0\0\0t!',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','',NULL,NULL),(196127,0.000000,1646768855.295085,_binary '\0\0\0\0\0\0\0\0\0\0t!',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','',NULL,NULL),(196128,0.000000,1646769317.211037,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646769316&nonce=LNGILi75z2&body-hash&signature=3Vf32O2Tm%2BDq3eG4Zc64m2NHI74%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646769316&nonce=LNGILi75z2&body-hash&signature=3Vf32O2Tm%2BDq3eG4Zc64m2NHI74%3D','Jetpack by WordPress.com','',NULL,NULL),(196188,0.000000,1646844292.619453,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-22r-16s-lambeau-17y','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196189,0.000000,1646844530.715772,_binary '\0\0\0\0\0\0\0\0\0\0\gr',0,301,0,0,0,'https://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','',NULL,NULL),(196190,0.000000,1646844532.385147,_binary '\0\0\0\0\0\0\0\0\0\0\gr',0,301,0,0,0,'https://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','',NULL,NULL),(196191,0.000000,1646850128.016143,_binary '\0\0\0\0\0\0\0\0\0\0kT',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36','',NULL,NULL),(196192,0.000000,1646851789.866021,_binary '\0\0\0\0\0\0\0\0\0\0e\t',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','',NULL,NULL),(196193,0.000000,1646851792.881705,_binary '\0\0\0\0\0\0\0\0\0\0e\t',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','',NULL,NULL),(196194,0.000000,1646851794.386373,_binary '\0\0\0\0\0\0\0\0\0\0e\t',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','',NULL,NULL),(196195,0.000000,1646875251.562566,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://kclgenetics.com/a39-spearhead/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196196,0.000000,1646875270.654513,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,200,0,0,0,'http://kclgenetics.com/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(196197,0.000000,1646875271.927204,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,200,0,0,0,'http://kclgenetics.com/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','',NULL,NULL),(196932,0.000000,1647976795.048928,_binary '\0\0\0\0\0\0\0\0\0\0(M:',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-512x-145y-el-dorado-49b','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196933,0.000000,1647983636.701174,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(196931,0.000000,1647976792.729141,_binary '\0\0\0\0\0\0\0\0\0\0(M:',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-512x-145y-el-dorado-49b','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196930,0.000000,1647974306.292413,_binary '\0\0\0\0\0\0\0\0\0\0\"Ny',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196929,0.000000,1647974305.600561,_binary '\0\0\0\0\0\0\0\0\0\0\"Ny',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196928,0.000000,1647974291.065766,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-122-71i-dominette-511x-et','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196926,0.000000,1647974160.966402,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196927,0.000000,1647974288.958506,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-122-71i-dominette-511x-et','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196924,0.000000,1647973943.376858,_binary '\0\0\0\0\0\0\0\0\0\0\N64',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','',NULL,NULL),(196925,0.000000,1647974160.166415,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196923,0.000000,1647973941.957438,_binary '\0\0\0\0\0\0\0\0\0\0\N64',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','',NULL,NULL),(196920,0.000000,1647968325.809122,_binary '\0\0\0\0\0\0\0\0\0\0(U',0,200,0,0,0,'http://kclgenetics.com/','','python-requests/2.27.1','',NULL,NULL),(196921,0.000000,1647970024.032146,_binary '\0\0\0\0\0\0\0\0\0\06֔',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31','',NULL,NULL),(196922,0.000000,1647973929.140133,_binary '\0\0\0\0\0\0\0\0\0\0\N64',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','',NULL,NULL),(196919,0.000000,1647963935.451849,_binary '\0\0\0\0\0\0\0\0\0\0ؘr',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux i586; rv:31.0) Gecko/20100101 Firefox/31.0','',NULL,NULL),(195859,0.000000,1646297948.422113,_binary '\0\0\0\0\0\0\0\0\0\0\\\u',0,404,0,0,0,'http://kclgenetics.com/old/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195858,0.000000,1646297947.564594,_binary '\0\0\0\0\0\0\0\0\0\0\\\u',0,404,0,0,0,'http://kclgenetics.com/new/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195857,0.000000,1646297946.151272,_binary '\0\0\0\0\0\0\0\0\0\0\\\u',0,404,0,0,0,'http://kclgenetics.com/wp/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(196094,0.000000,1646708893.859443,_binary '\0\0\0\0\0\0\0\0\0\0k\\"/',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/85.0.4183.92 Mobile/15E148 Safari/604.1','',NULL,NULL),(196093,0.000000,1646708892.948619,_binary '\0\0\0\0\0\0\0\0\0\0k\\"/',0,301,0,0,0,'http://www.kclgenetics.com/','https://lm.facebook.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/85.0.4183.92 Mobile/15E148 Safari/604.1','',NULL,NULL),(196092,0.000000,1646708891.239164,_binary '\0\0\0\0\0\0\0\0\0\0k\\"/',0,301,0,0,0,'http://www.kclgenetics.com/','https://lm.facebook.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/85.0.4183.92 Mobile/15E148 Safari/604.1','',NULL,NULL),(195899,0.000000,1646384363.261828,_binary '\0\0\0\0\0\0\0\0\0\0vc',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195898,0.000000,1646384358.287132,_binary '\0\0\0\0\0\0\0\0\0\0vc',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195897,0.000000,1646360368.868808,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=c3bcab314f3a1c8d69111e4c06d7d360&signature=d5716c142543cf70f3ba168e345305e30f56c77d61b4650ed183c146f0ba11e0&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195896,0.000000,1646360345.533730,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=f12fdef5252d57fd50c5f4e8642dc67e&signature=27c920c658e59ec9cfaa097cf124814b5d113d94a3c9fc7b8f0b5e23ac7fdc6e&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195895,0.000000,1646360296.669546,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=0a9038428763160e33e74a84f96a2f30&signature=edf340a3c347b8d1ab190190a8388c1150f6bfdd19959ab9bb8afd51fb178b4f&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195828,0.000000,1646267060.144776,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/about-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195827,0.000000,1646267059.747228,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/about-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195826,0.000000,1646267057.095491,_binary '\0\0\0\0\0\0\0\0\0\0O',0,200,0,0,0,'https://kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195825,0.000000,1646266777.560814,_binary '\0\0\0\0\0\0\0\0\0\06E',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195824,0.000000,1646266773.597326,_binary '\0\0\0\0\0\0\0\0\0\06E',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(197147,0.000000,1648188045.953027,_binary '\0\0\0\0\0\0\0\0\0\0. \\',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197148,0.000000,1648192740.379075,_binary '\0\0\0\0\0\0\0\0\0\0վ(',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197146,0.000000,1648184767.615282,_binary '\0\0\0\0\0\0\0\0\0\0-OV\',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/skatepark/doc.php','http://simplesite.com','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),(197144,0.000000,1648184686.567047,_binary '\0\0\0\0\0\0\0\0\0\0+د',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/skatepark/img_screen.php','http://simplesite.com','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),(197145,0.000000,1648184762.848365,_binary '\0\0\0\0\0\0\0\0\0\0-OV\',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/skatepark/doc.php','http://simplesite.com','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),(197129,0.000000,1648169418.447714,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.2','http://kclgenetics.com/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5 Build/MRA58N) AppleWebKit/537.36(KHTML, like Gecko) Chrome/66.0.3359.30 Mobile Safari/537.36','',NULL,NULL),(197130,0.000000,1648169418.560115,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'http://kclgenetics.com/','','curl/7.38.0','',NULL,NULL),(197131,0.000000,1648169418.779366,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,404,0,0,0,'http://kclgenetics.com/sitemap_index.xml','','Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)','',NULL,NULL),(197132,0.000000,1648169418.858531,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20100101 Firefox/17.0','',NULL,NULL),(197133,0.000000,1648169427.170596,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.2','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20100101 Firefox/17.0','',NULL,NULL),(197134,0.000000,1648171337.610833,_binary '\0\0\0\0\0\0\0\0\0\0#ë\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(197135,0.000000,1648171339.565348,_binary '\0\0\0\0\0\0\0\0\0\0#ë\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(197136,0.000000,1648176742.146049,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197137,0.000000,1648176747.242213,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197138,0.000000,1648176930.075004,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197139,0.000000,1648176932.024582,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197140,0.000000,1648182392.692093,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','',NULL,NULL),(197141,0.000000,1648182839.112140,_binary '\0\0\0\0\0\0\0\0\0\0j|?',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197142,0.000000,1648182841.298720,_binary '\0\0\0\0\0\0\0\0\0\0j|<',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197143,0.000000,1648184689.289084,_binary '\0\0\0\0\0\0\0\0\0\0+د',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/skatepark/img_screen.php','http://simplesite.com','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),(197020,0.000000,1648121294.013467,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=de92ff0f4912620e9a07c0eac32a292c&signature=a3a477f0145d78132c7ff383db0e63a5baf909a728d0895a590184d95b649720&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197021,0.000000,1648122750.937197,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197022,0.000000,1648122756.005556,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197023,0.000000,1648127463.798202,_binary '\0\0\0\0\0\0\0\0\0\0L>\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.3 Safari/605.1.15','',NULL,NULL),(197024,0.000000,1648127480.859036,_binary '\0\0\0\0\0\0\0\0\0\0L>\',0,404,0,0,0,'http://kclgenetics.com/apple-touch-icon-precomposed.png','','Safari/15609.4.1 CFNetwork/1128.0.1 Darwin/19.6.0 (x86_64)','',NULL,NULL),(197025,0.000000,1648127484.848032,_binary '\0\0\0\0\0\0\0\0\0\0L>\',0,404,0,0,0,'http://kclgenetics.com/apple-touch-icon.png','','Safari/15609.4.1 CFNetwork/1128.0.1 Darwin/19.6.0 (x86_64)','',NULL,NULL),(197026,0.000000,1648130262.380129,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','',NULL,NULL),(197027,0.000000,1648130273.204398,_binary '\0\0\0\0\0\0\0\0\0\0^\c',0,404,0,0,0,'https://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.2','https://kclgenetics.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','',NULL,NULL),(197028,0.000000,1648130291.173410,_binary '\0\0\0\0\0\0\0\0\0\0EZ',0,301,0,0,0,'https://kclgenetics.com/about-us','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','',NULL,NULL),(196993,0.000000,1648074429.455638,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196994,0.000000,1648074434.405012,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196995,0.000000,1648074512.564491,_binary '\0\0\0\0\0\0\0\0\0\0-\r-',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/press/wp-class.php','http://simplesite.com','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),(196992,0.000000,1648063698.023603,_binary '\0\0\0\0\0\0\0\0\0\0(M:',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-512x-145y-el-dorado-49b','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(195977,0.000000,1646534720.345048,_binary '\0\0\0\0\0\0\0\0\0\0{}m',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195975,0.000000,1646528898.688522,_binary '\0\0\0\0\0\0\0\0\0\0\8\',0,404,0,0,0,'http://kclgenetics.com/blog//xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(195976,0.000000,1646530103.249162,_binary '\0\0\0\0\0\0\0\0\0\0q](',0,404,0,0,0,'http://kclgenetics.com/_profiler/phpinfo','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0','',NULL,NULL),(196973,0.000000,1648035283.308633,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196855,0.000000,1647897807.570144,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=f14c2e894c77f921b4e390ee027a7615&signature=c84fb853948892d99cf67acdc221f2a4f7d76f527b4674add36d11a8d8e60573&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196856,0.000000,1647897819.522682,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=268690681c93973df4d71d3aea066d9b&signature=d1658ee1969f6ca3d710a620563ceb3e3da0490675313568f9baa262c49845ac&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196971,0.000000,1648030275.097160,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Softaculous','',NULL,NULL),(196972,0.000000,1648030284.771847,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196974,0.000000,1648035287.824233,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197038,0.000000,1648132086.301064,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197037,0.000000,1648132083.354413,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197035,0.000000,1648131991.704342,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197036,0.000000,1648131992.837687,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197034,0.000000,1648131986.350088,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197033,0.000000,1648130305.867708,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'https://kclgenetics.com/robots.txt','','python-requests/2.26.0','',NULL,NULL),(197031,0.000000,1648130302.980463,_binary '\0\0\0\0\0\0\0\0\0\0ѣv\r',0,404,0,0,0,'https://kclgenetics.com/sitemap_index.xml','','python-requests/2.26.0','',NULL,NULL),(197032,0.000000,1648130304.245288,_binary '\0\0\0\0\0\0\0\0\0\0\\"V\',0,404,0,0,0,'https://kclgenetics.com/sitemap','','python-requests/2.26.0','',NULL,NULL),(197030,0.000000,1648130301.331203,_binary '\0\0\0\0\0\0\0\0\0\0-9ڈ',0,404,0,0,0,'https://kclgenetics.com/sitemap.xml','','python-requests/2.26.0','',NULL,NULL),(197029,0.000000,1648130291.845566,_binary '\0\0\0\0\0\0\0\0\0\0EZ',0,301,0,0,0,'https://kclgenetics.com/about-us','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','',NULL,NULL),(196797,0.000000,1647876156.282835,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196798,0.000000,1647876159.965629,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196799,0.000000,1647876161.251624,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196800,0.000000,1647877508.253737,_binary '\0\0\0\0\0\0\0\0\0\0jb',0,301,0,0,0,'http://kclgenetics.com/wp-content/patior/index.php','http://simplesite.com','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),(196741,0.000000,1647786706.253218,_binary '\0\0\0\0\0\0\0\0\0\0хܮ',0,404,0,0,0,'http://kclgenetics.com/wp-content/ffAA531.php','http://simplesite.com','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),(196811,0.000000,1647880900.523646,_binary '\0\0\0\0\0\0\0\0\0\0\\7',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196810,0.000000,1647880899.799411,_binary '\0\0\0\0\0\0\0\0\0\0\\7',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196809,0.000000,1647880899.101165,_binary '\0\0\0\0\0\0\0\0\0\0\\7',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196808,0.000000,1647880898.353080,_binary '\0\0\0\0\0\0\0\0\0\0\\7',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196807,0.000000,1647880896.615600,_binary '\0\0\0\0\0\0\0\0\0\0\\7',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196806,0.000000,1647880081.337881,_binary '\0\0\0\0\0\0\0\0\0\0\'',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2)','',NULL,NULL),(196805,0.000000,1647880079.516713,_binary '\0\0\0\0\0\0\0\0\0\0\'',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2)','',NULL,NULL),(196804,0.000000,1647879589.611726,_binary '\0\0\0\0\0\0\0\0\0\0?',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','',NULL,NULL),(196801,0.000000,1647877511.817579,_binary '\0\0\0\0\0\0\0\0\0\0jb',0,301,0,0,0,'http://kclgenetics.com/wp-content/patior/index.php','http://simplesite.com','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),(196802,0.000000,1647879581.670702,_binary '\0\0\0\0\0\0\0\0\0\0?',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','',NULL,NULL),(196803,0.000000,1647879587.670619,_binary '\0\0\0\0\0\0\0\0\0\0?',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','',NULL,NULL),(196659,0.000000,1647656032.458050,_binary '\0\0\0\0\0\0\0\0\0\0g\r',0,404,0,0,0,'http://kclgenetics.com/.tmb/xml.php','http://simplesite.com','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),(196873,0.000000,1647918776.252861,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Pandalytics/1.0 (https://domainsbot.com/pandalytics/)','',NULL,NULL),(196874,0.000000,1647918783.969355,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Pandalytics/1.0 (https://domainsbot.com/pandalytics/)','',NULL,NULL),(196875,0.000000,1647918784.823899,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,200,0,0,0,'http://kclgenetics.com/','','Pandalytics/1.0 (https://domainsbot.com/pandalytics/)','',NULL,NULL),(196872,0.000000,1647918757.523284,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Pandalytics/1.0 (https://domainsbot.com/pandalytics/)','',NULL,NULL),(196871,0.000000,1647918756.846001,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Pandalytics/1.0 (https://domainsbot.com/pandalytics/)','',NULL,NULL),(196870,0.000000,1647918745.932231,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Pandalytics/1.0 (https://domainsbot.com/pandalytics/)','',NULL,NULL),(196869,0.000000,1647918740.526802,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Pandalytics/1.0 (https://domainsbot.com/pandalytics/)','',NULL,NULL),(196867,0.000000,1647913362.925710,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196868,0.000000,1647913369.912252,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196866,0.000000,1647912845.485713,_binary '\0\0\0\0\0\0\0\0\0\0-',0,404,0,0,0,'http://kclgenetics.com/wp-info.php','http://simplesite.com','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),(196865,0.000000,1647910135.271678,_binary '\0\0\0\0\0\0\0\0\0\0(M',0,404,0,0,0,'http://kclgenetics.com/wp-2019.php','http://simplesite.com','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),(196864,0.000000,1647910132.596288,_binary '\0\0\0\0\0\0\0\0\0\0(M',0,404,0,0,0,'http://kclgenetics.com/wp-2019.php','http://simplesite.com','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),(196863,0.000000,1647908373.248745,_binary '\0\0\0\0\0\0\0\0\0\0#`\',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196862,0.000000,1647908373.248762,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196861,0.000000,1647906433.848520,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.2','http://kclgenetics.com/about-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196860,0.000000,1647906427.414721,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/about-us/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196858,0.000000,1647903257.649761,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196859,0.000000,1647903262.275306,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196857,0.000000,1647900330.903770,_binary '\0\0\0\0\0\0\0\0\0\0\#',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/ubh/up.php','http://simplesite.com','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),(196660,0.000000,1647666369.703150,_binary '\0\0\0\0\0\0\0\0\0\0vd',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196661,0.000000,1647666374.349967,_binary '\0\0\0\0\0\0\0\0\0\0vd',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196662,0.000000,1647669201.309146,_binary '\0\0\0\0\0\0\0\0\0\0-',0,404,0,0,0,'http://kclgenetics.com/info.php','http://simplesite.com','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),(196663,0.000000,1647676313.640019,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196664,0.000000,1647676325.422550,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196665,0.000000,1647684280.096778,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196666,0.000000,1647686799.593329,_binary '\0\0\0\0\0\0\0\0\0\0v@',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196667,0.000000,1647686805.335553,_binary '\0\0\0\0\0\0\0\0\0\0v@',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196668,0.000000,1647695195.173342,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196669,0.000000,1647695203.062664,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196734,0.000000,1647777522.321239,_binary '\0\0\0\0\0\0\0\0\0\0\"N',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196735,0.000000,1647777527.001673,_binary '\0\0\0\0\0\0\0\0\0\0\"N',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196576,0.000000,1647500203.822479,_binary '\0\0\0\0\0\0\0\0\0\0`\',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(196575,0.000000,1647500202.701532,_binary '\0\0\0\0\0\0\0\0\0\0`\',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(196568,0.000000,1647476204.122390,_binary '\0\0\0\0\0\0\0\0\0\04)L',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196569,0.000000,1647476231.881087,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196570,0.000000,1647476233.606856,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196571,0.000000,1647476235.924849,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196572,0.000000,1647478443.364672,_binary '\0\0\0\0\0\0\0\0\0\03w',0,301,0,0,0,'https://mail.kclgenetics.com/','','','',NULL,NULL),(196573,0.000000,1647478446.053699,_binary '\0\0\0\0\0\0\0\0\0\03w',0,301,0,0,0,'https://mail.kclgenetics.com/','','','',NULL,NULL),(196574,0.000000,1647500197.994560,_binary '\0\0\0\0\0\0\0\0\0\0`\',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195766,0.000000,1646208272.902882,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195767,0.000000,1646208363.871901,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195768,0.000000,1646208486.909136,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195769,0.000000,1646208673.918376,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195770,0.000000,1646208988.924239,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195771,0.000000,1646209559.910950,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195772,0.000000,1646210643.002769,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195773,0.000000,1646211608.356671,_binary '\0\0\0\0\0\0\0\0\0\0&b\',0,404,0,0,0,'https://kclgenetics.com/.ftpconfig','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36','',NULL,NULL),(195774,0.000000,1646211901.953920,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195775,0.000000,1646213160.972540,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195776,0.000000,1646214420.010597,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195777,0.000000,1646214478.623467,_binary '\0\0\0\0\0\0\0\0\0\0#\7C',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(195778,0.000000,1646214484.896079,_binary '\0\0\0\0\0\0\0\0\0\0#\7C',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(195779,0.000000,1646214498.724520,_binary '\0\0\0\0\0\0\0\0\0\0#\7C',0,301,0,0,0,'http://www.kclgenetics.com/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(195780,0.000000,1646214505.018924,_binary '\0\0\0\0\0\0\0\0\0\0#\7C',0,200,0,0,0,'http://kclgenetics.com/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(195781,0.000000,1646214901.333286,_binary '\0\0\0\0\0\0\0\0\0\0#\7C',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(195782,0.000000,1646214908.717147,_binary '\0\0\0\0\0\0\0\0\0\0#\7C',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(195783,0.000000,1646214921.632061,_binary '\0\0\0\0\0\0\0\0\0\0#\7C',0,301,0,0,0,'http://www.kclgenetics.com/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(195784,0.000000,1646214928.789931,_binary '\0\0\0\0\0\0\0\0\0\0#\7C',0,200,0,0,0,'http://kclgenetics.com/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(195785,0.000000,1646215679.004093,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195786,0.000000,1646217290.847497,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195787,0.000000,1646218855.105190,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195788,0.000000,1646222962.511029,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195789,0.000000,1646223027.366210,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195790,0.000000,1646223089.473311,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195791,0.000000,1646223102.357552,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195792,0.000000,1646223153.175643,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195793,0.000000,1646223211.969840,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195794,0.000000,1646223228.176275,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195795,0.000000,1646223337.784006,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195796,0.000000,1646223354.058060,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195797,0.000000,1646223761.362021,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195798,0.000000,1646223887.167717,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195799,0.000000,1646224334.317146,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195800,0.000000,1646224500.056241,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195801,0.000000,1646224459.893372,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195802,0.000000,1646224990.683653,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,404,0,0,0,'http://kclgenetics.com/cart/','','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727)','',NULL,NULL),(195803,0.000000,1646225416.348764,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195804,0.000000,1646225542.139905,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195805,0.000000,1646225760.172406,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195806,0.000000,1646226697.298499,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195807,0.000000,1646226823.098665,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195808,0.000000,1646227020.437549,_binary '\0\0\0\0\0\0\0\0\0\0{\g',0,200,0,0,0,'http://kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195809,0.000000,1646227935.155072,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195810,0.000000,1646227936.657234,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196452,0.000000,1647301043.401306,_binary '\0\0\0\0\0\0\0\0\0\0vJ',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196453,0.000000,1647306239.132962,_binary '\0\0\0\0\0\0\0\0\0\0!',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36','',NULL,NULL),(196454,0.000000,1647312694.463880,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196455,0.000000,1647312699.281374,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196456,0.000000,1647317647.511817,_binary '\0\0\0\0\0\0\0\0\0\0\4_',0,404,0,0,0,'http://kclgenetics.com/wp-includes/pomo/class-wp-sitemap-mna.php','http://simplesite.com','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),(196457,0.000000,1647317645.752963,_binary '\0\0\0\0\0\0\0\0\0\0\4_',0,404,0,0,0,'http://kclgenetics.com/wp-includes/pomo/class-wp-sitemap-mna.php','http://simplesite.com','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),(196458,0.000000,1647317811.628565,_binary '\0\0\0\0\0\0\0\0\0\0\G',0,404,0,0,0,'http://kclgenetics.com/inc/gel.php','http://simplesite.com','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),(196459,0.000000,1647321717.356611,_binary '\0\0\0\0\0\0\0\0\0\0.',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','',NULL,NULL),(196460,0.000000,1647321720.734063,_binary '\0\0\0\0\0\0\0\0\0\0.',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','',NULL,NULL),(196461,0.000000,1647321722.054632,_binary '\0\0\0\0\0\0\0\0\0\0.',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','',NULL,NULL),(196462,0.000000,1647321796.400452,_binary '\0\0\0\0\0\0\0\0\0\0.',0,200,0,0,0,'http://kclgenetics.com/contact-us/','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36','',NULL,NULL),(196463,0.000000,1647330913.407909,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196061,0.000000,1646662589.957254,_binary '\0\0\0\0\0\0\0\0\0\0#\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(196062,0.000000,1646662590.725969,_binary '\0\0\0\0\0\0\0\0\0\0#\\',0,200,0,0,0,'http://kclgenetics.com/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(196063,0.000000,1646663110.530969,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196060,0.000000,1646662589.266923,_binary '\0\0\0\0\0\0\0\0\0\0#\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(196058,0.000000,1646662463.841726,_binary '\0\0\0\0\0\0\0\0\0\0#\\',0,301,0,0,0,'http://www.kclgenetics.com/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(196059,0.000000,1646662464.527060,_binary '\0\0\0\0\0\0\0\0\0\0#\\',0,301,0,0,0,'http://www.kclgenetics.com/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(196057,0.000000,1646662463.052199,_binary '\0\0\0\0\0\0\0\0\0\0#\\',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(196056,0.000000,1646662460.374199,_binary '\0\0\0\0\0\0\0\0\0\0#\\',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(196055,0.000000,1646661918.355289,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=501189d7a5936ba8557e7d0b3779b4ee&signature=35f40a0fff5d884e76e6fb18a5947cf9951de4761945bf7bb7ce6344f6cd7f75&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196051,0.000000,1646661913.970879,_binary '\0\0\0\0\0\0\0\0\0\0#BP',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196052,0.000000,1646661914.884883,_binary '\0\0\0\0\0\0\0\0\0\0#BP',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196053,0.000000,1646661915.728586,_binary '\0\0\0\0\0\0\0\0\0\0#BP',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196054,0.000000,1646661916.604945,_binary '\0\0\0\0\0\0\0\0\0\0#BP',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195849,0.000000,1646287560.631752,_binary '\0\0\0\0\0\0\0\0\0\0-\D',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195850,0.000000,1646287564.292888,_binary '\0\0\0\0\0\0\0\0\0\0-\D',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195851,0.000000,1646293657.699425,_binary '\0\0\0\0\0\0\0\0\0\0{}m',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195852,0.000000,1646293659.180024,_binary '\0\0\0\0\0\0\0\0\0\0{}m',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195853,0.000000,1646294811.687914,_binary '\0\0\0\0\0\0\0\0\0\0մ˷',0,404,0,0,0,'http://larsonpolledherefords.com/kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195854,0.000000,1646296391.359915,_binary '\0\0\0\0\0\0\0\0\0\0-\D',0,301,0,0,0,'http://desotoprivateschool.com/kclgenetics.com/index.php/kcl-4002-bonissa-65k-92s-3','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195855,0.000000,1646296395.085156,_binary '\0\0\0\0\0\0\0\0\0\0մ˷',0,301,0,0,0,'http://desotoprivateschool.com/kclgenetics.com/index.php/kcl-4002-bonissa-65k-92s-3','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195856,0.000000,1646296398.752800,_binary '\0\0\0\0\0\0\0\0\0\0մ˷',0,301,0,0,0,'http://desotoprivateschool.com/kclgenetics.com/index.php/kcl-4002-bonissa-65k-92s-3','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(195638,0.000000,1646068965.855341,_binary '\0\0\0\0\0\0\0\0\0\0\0VV',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646068963&nonce=lWq23SqBtj&body-hash&signature=vHtoNd4bbzwuAhRmoiK1OXApC10%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646068963&nonce=lWq23SqBtj&body-hash&signature=vHtoNd4bbzwuAhRmoiK1OXApC10%3D','Jetpack by WordPress.com','',NULL,NULL),(195637,0.000000,1646066657.575476,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195636,0.000000,1646066655.809712,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195634,0.000000,1646064600.446672,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195635,0.000000,1646065978.644990,_binary '\0\0\0\0\0\0\0\0\0\0ys\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(195633,0.000000,1646064600.366207,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195632,0.000000,1646064594.860964,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195629,0.000000,1646059346.717279,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(195630,0.000000,1646059347.367252,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(195631,0.000000,1646064594.859995,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195628,0.000000,1646059346.001856,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,200,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(195626,0.000000,1646059340.369000,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(195627,0.000000,1646059345.243398,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(195625,0.000000,1646048649.258380,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=c169f055e09012378baac412a93283cb&signature=03876e3135400a3753d437b570a149e3bdc0e16bd4b62a00aea6c8014a15f559&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195624,0.000000,1646048644.339126,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195623,0.000000,1646048642.660264,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195621,0.000000,1646045806.254187,_binary '\0\0\0\0\0\0\0\0\0\0E',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195622,0.000000,1646046133.742589,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(195620,0.000000,1646045806.243220,_binary '\0\0\0\0\0\0\0\0\0\0E',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195619,0.000000,1646045805.546684,_binary '\0\0\0\0\0\0\0\0\0\0E',0,301,0,0,0,'http://www.kclgenetics.com/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(197070,0.000000,1648161627.990069,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'https://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=a61f9259c339082af6f667e08a9faa01&signature=bdae3ed063431bd1148c6c8cb1a9e01a1b7293382561a6e6127f5298955c573f&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197019,0.000000,1648121280.207066,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197091,0.000000,1648169379.766358,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/534.34 (KHTML, like Gecko) PhantomJS/1.9.8 Safari/534.34','',NULL,NULL),(197018,0.000000,1648121270.563059,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197016,0.000000,1648116274.007590,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Softaculous','',NULL,NULL),(197017,0.000000,1648116276.837276,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(197015,0.000000,1648116189.845295,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(197014,0.000000,1648115233.239608,_binary '\0\0\0\0\0\0\0\0\0\0BE\',0,301,1,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197013,0.000000,1648115228.073100,_binary '\0\0\0\0\0\0\0\0\0\0BE\',0,301,1,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197012,0.000000,1648111800.412252,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,301,0,0,0,'https://mail.kclgenetics.com/','','webprosbot/2.0 (+mailto:abuse-6337@webpros.com)','',NULL,NULL),(197011,0.000000,1648111794.589079,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,301,0,0,0,'https://mail.kclgenetics.com/','','webprosbot/2.0 (+mailto:abuse-6337@webpros.com)','',NULL,NULL),(197010,0.000000,1648098521.404633,_binary '\0\0\0\0\0\0\0\0\0\0t',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.2','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36','',NULL,NULL),(197009,0.000000,1648098517.127566,_binary '\0\0\0\0\0\0\0\0\0\0t',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36','',NULL,NULL),(197008,0.000000,1648097037.539671,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,301,0,0,0,'http://kclgenetics.com/wp-content/plugins/cach/coment/index.php','http://simplesite.com','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),(197007,0.000000,1648097035.297018,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,301,0,0,0,'http://kclgenetics.com/wp-content/plugins/cach/coment/index.php','http://simplesite.com','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),(197006,0.000000,1648093818.456053,_binary '\0\0\0\0\0\0\0\0\0\0+/S',0,301,0,0,0,'http://kclgenetics.com/wp-content/plugins/cach/coment/index.php','http://simplesite.com','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),(197004,0.000000,1648093209.938490,_binary '\0\0\0\0\0\0\0\0\0\0\$',0,404,0,0,0,'http://kclgenetics.com/1index.php','http://simplesite.com','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),(197005,0.000000,1648093816.845613,_binary '\0\0\0\0\0\0\0\0\0\0+/S',0,301,0,0,0,'http://kclgenetics.com/wp-content/plugins/cach/coment/index.php','http://simplesite.com','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),(197001,0.000000,1648089644.348320,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(197002,0.000000,1648093193.818666,_binary '\0\0\0\0\0\0\0\0\0\0\$',0,404,0,0,0,'http://kclgenetics.com/1index.php','http://simplesite.com','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),(197003,0.000000,1648093207.116785,_binary '\0\0\0\0\0\0\0\0\0\0\$',0,404,0,0,0,'http://kclgenetics.com/1index.php','http://simplesite.com','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),(196996,0.000000,1648076175.967374,_binary '\0\0\0\0\0\0\0\0\0\0FwY',1,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15','',NULL,NULL),(196997,0.000000,1648076181.348038,_binary '\0\0\0\0\0\0\0\0\0\0FwY',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.2','http://kclgenetics.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15','',NULL,NULL),(196998,0.000000,1648077383.858320,_binary '\0\0\0\0\0\0\0\0\0\0FwY',1,200,0,0,0,'http://kclgenetics.com/?wordfence_lh=1&hid=323512ECE626313D1419254D476870C9&r=0.42591886213156516','http://kclgenetics.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15','',NULL,NULL),(196999,0.000000,1648080430.347555,_binary '\0\0\0\0\0\0\0\0\0\0r\d',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/sketch/content-sample.php','http://simplesite.com','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),(197000,0.000000,1648089639.794708,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196850,0.000000,1647897629.496216,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/contact-us/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(197069,0.000000,1648161584.442606,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=standard&cronKey=b00ea1cd9d19ae52d3d7c92b260d9ad9&signature=8f66d10cf054abb3d30a4a74c184263beaf3108c270c186905d88bd82d57f483&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197068,0.000000,1648161579.155500,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'https://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=standard&cronKey=b00ea1cd9d19ae52d3d7c92b260d9ad9&signature=8f66d10cf054abb3d30a4a74c184263beaf3108c270c186905d88bd82d57f483&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197067,0.000000,1648161525.313440,_binary '\0\0\0\0\0\0\0\0\0\0݂%',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Linux; Android 9.0; MI 10 Build/123012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36','',NULL,NULL),(197066,0.000000,1648161519.466204,_binary '\0\0\0\0\0\0\0\0\0\0݂%',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (Linux; Android 8.0; OPPO x20 70816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36','',NULL,NULL),(197065,0.000000,1648154724.406056,_binary '\0\0\0\0\0\0\0\0\0\0U]Yz',0,200,0,0,0,'http://kclgenetics.com/contact-us/','','Mozilla/5.0 (X11; Linux x86_64; rv:81.0) Gecko/20100101 Firefox/81.0','',NULL,NULL),(197063,0.000000,1648154709.577023,_binary '\0\0\0\0\0\0\0\0\0\0U]Yz',0,200,0,0,0,'http://kclgenetics.com/about-us/','','Mozilla/5.0 (X11; Linux x86_64; rv:81.0) Gecko/20100101 Firefox/81.0','',NULL,NULL),(197064,0.000000,1648154711.895685,_binary '\0\0\0\0\0\0\0\0\0\0U]Yz',0,200,0,0,0,'http://kclgenetics.com/2018-hereford-alliance-sale/','','Mozilla/5.0 (X11; Linux x86_64; rv:81.0) Gecko/20100101 Firefox/81.0','',NULL,NULL),(197062,0.000000,1648154707.682124,_binary '\0\0\0\0\0\0\0\0\0\0U]Yz',0,200,0,0,0,'http://kclgenetics.com/visiting-kazakhstan/','','Mozilla/5.0 (X11; Linux x86_64; rv:81.0) Gecko/20100101 Firefox/81.0','',NULL,NULL),(197061,0.000000,1648154693.588699,_binary '\0\0\0\0\0\0\0\0\0\0U]Yz',0,200,0,0,0,'http://kclgenetics.com/currently-used-bulls/','','Mozilla/5.0 (X11; Linux x86_64; rv:81.0) Gecko/20100101 Firefox/81.0','',NULL,NULL),(197060,0.000000,1648154656.494448,_binary '\0\0\0\0\0\0\0\0\0\0U]Yz',0,200,0,0,0,'http://kclgenetics.com/kcl-donor-cows/','','Mozilla/5.0 (X11; Linux x86_64; rv:81.0) Gecko/20100101 Firefox/81.0','',NULL,NULL),(196697,0.000000,1647735550.548724,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196698,0.000000,1647735555.140904,_binary '\0\0\0\0\0\0\0\0\0\0\"\}R',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196826,0.000000,1647888163.960321,_binary '\0\0\0\0\0\0\0\0\0\0C',0,301,0,0,0,'http://www.kclgenetics.com/','https://lm.facebook.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1','',NULL,NULL),(196827,0.000000,1647888168.116942,_binary '\0\0\0\0\0\0\0\0\0\0C',0,301,0,0,0,'http://www.kclgenetics.com/','https://lm.facebook.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1','',NULL,NULL),(196828,0.000000,1647888175.984022,_binary '\0\0\0\0\0\0\0\0\0\0C',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','http://www.kclgenetics.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1','',NULL,NULL),(196829,0.000000,1647888176.719150,_binary '\0\0\0\0\0\0\0\0\0\0C',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','http://www.kclgenetics.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1','',NULL,NULL),(196830,0.000000,1647888261.314426,_binary '\0\0\0\0\0\0\0\0\0\0#V\n',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.1; bit.ly/2W6Px8S; 3822b969ae) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196831,0.000000,1647888263.692177,_binary '\0\0\0\0\0\0\0\0\0\0#V\n',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.1; bit.ly/2W6Px8S; 3822b969ae) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196832,0.000000,1647890508.238683,_binary '\0\0\0\0\0\0\0\0\0\0(M:',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-512x-145y-el-dorado-49b','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196833,0.000000,1647890519.063732,_binary '\0\0\0\0\0\0\0\0\0\0(M:',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-512x-145y-el-dorado-49b','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196834,0.000000,1647892435.639137,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647892431&nonce=srioNdcacJ&body-hash&signature=rh3k8jIVv%2Fl0m31kWKTeHgVIgWk%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647892431&nonce=srioNdcacJ&body-hash&signature=rh3k8jIVv%2Fl0m31kWKTeHgVIgWk%3D','Jetpack by WordPress.com','',NULL,NULL),(196849,0.000000,1647897628.625954,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196848,0.000000,1647897627.893035,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196847,0.000000,1647897627.125181,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196846,0.000000,1647897626.409627,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196844,0.000000,1647897624.918726,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196845,0.000000,1647897625.630613,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196843,0.000000,1647897624.126691,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196842,0.000000,1647897623.418904,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196841,0.000000,1647897622.609370,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196840,0.000000,1647897621.882456,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196239,0.000000,1646958797.176628,_binary '\0\0\0\0\0\0\0\0\0\0#Xn',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196238,0.000000,1646958767.549969,_binary '\0\0\0\0\0\0\0\0\0\0\"ѵ5',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196237,0.000000,1646958767.551339,_binary '\0\0\0\0\0\0\0\0\0\0##',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196236,0.000000,1646956951.549415,_binary '\0\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(196235,0.000000,1646944773.917768,_binary '\0\0\0\0\0\0\0\0\0\0\0VT',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646944763&nonce=ty2XYhGFzm&body-hash&signature=PPShKz%2FLQDKHgVcgups1G6wOiiE%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646944763&nonce=ty2XYhGFzm&body-hash&signature=PPShKz%2FLQDKHgVcgups1G6wOiiE%3D','Jetpack by WordPress.com','',NULL,NULL),(196234,0.000000,1646944769.161381,_binary '\0\0\0\0\0\0\0\0\0\0\0VT',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646944763&nonce=ty2XYhGFzm&body-hash&signature=PPShKz%2FLQDKHgVcgups1G6wOiiE%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646944763&nonce=ty2XYhGFzm&body-hash&signature=PPShKz%2FLQDKHgVcgups1G6wOiiE%3D','Jetpack by WordPress.com','',NULL,NULL),(196233,0.000000,1646934314.987516,_binary '\0\0\0\0\0\0\0\0\0\0@5W',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com','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),(196232,0.000000,1646934308.012508,_binary '\0\0\0\0\0\0\0\0\0\0@5W',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com','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),(196966,0.000000,1648029116.390790,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196586,1647508182.237511,1647508182.165000,_binary '\0\0\0\0\0\0\0\0\0\0\\\>c',0,403,0,0,0,'http://kclgenetics.com/wordpress','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dvcmRwcmVzcw==\",\"category\":\"brute-force\",\"ssl\":0}'),(196963,0.000000,1648028222.593806,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196964,0.000000,1648028656.932958,_binary '\0\0\0\0\0\0\0\0\0\0*\\nS',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider','',NULL,NULL),(196965,0.000000,1648029114.620340,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196585,1647508186.741940,1647508186.679000,_binary '\0\0\0\0\0\0\0\0\0\0\\\>c',0,403,0,0,0,'http://kclgenetics.com/kclgenetics','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2tjbGdlbmV0aWNz\",\"category\":\"brute-force\",\"ssl\":0}'),(196967,0.000000,1648029116.828822,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196968,0.000000,1648029117.544310,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196969,0.000000,1648029119.840946,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196584,1647508191.661870,1647508191.593000,_binary '\0\0\0\0\0\0\0\0\0\0\\\>c',0,403,0,0,0,'http://kclgenetics.com/WP','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L1dQ\",\"category\":\"brute-force\",\"ssl\":0}'),(196970,0.000000,1648029969.068045,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(197095,0.000000,1648169386.937777,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,301,0,0,0,'http://kclgenetics.com/contact-us','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(197096,0.000000,1648169387.295260,_binary '\0\0\0\0\0\0\0\0\0\0\"{\',0,301,0,0,0,'http://kclgenetics.com/2018-hereford-alliance-sale','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(196583,1647508207.250998,1647508207.181700,_binary '\0\0\0\0\0\0\0\0\0\0\\\>c',0,403,0,0,0,'http://kclgenetics.com/shop','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3Nob3A=\",\"category\":\"brute-force\",\"ssl\":0}'),(197099,0.000000,1648169387.536356,_binary '\0\0\0\0\0\0\0\0\0\0#ϙ',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(197098,0.000000,1648169387.451247,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,301,0,0,0,'http://kclgenetics.com/visiting-kazakhstan','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(196080,0.000000,1646707735.584932,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196072,0.000000,1646684684.152080,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot)','',NULL,NULL),(196073,0.000000,1646689800.132662,_binary '\0\0\0\0\0\0\0\0\0\0\\0',0,200,0,0,0,'http://kclgenetics.com/','','python-requests/2.27.1','',NULL,NULL),(196074,0.000000,1646706818.340666,_binary '\0\0\0\0\0\0\0\0\0\0fG',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; MojeekBot/0.10; +https://www.mojeek.com/bot.html)','',NULL,NULL),(196075,0.000000,1646706823.139319,_binary '\0\0\0\0\0\0\0\0\0\0fG',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; MojeekBot/0.10; +https://www.mojeek.com/bot.html)','',NULL,NULL),(196076,0.000000,1646707730.361652,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196077,0.000000,1646707733.324681,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196078,0.000000,1646707734.098334,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196079,0.000000,1646707734.782920,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196747,0.000000,1647789764.176437,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196748,0.000000,1647798461.383203,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196749,0.000000,1647798468.160206,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196750,0.000000,1647798629.523847,_binary '\0\0\0\0\0\0\0\0\0\0Al\',0,404,0,0,0,'http://kclgenetics.com/admin.php','http://simplesite.com','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),(196751,0.000000,1647799926.289178,_binary '\0\0\0\0\0\0\0\0\0\0yp\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(196752,0.000000,1647799931.171553,_binary '\0\0\0\0\0\0\0\0\0\0yp\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(196753,0.000000,1647799932.214155,_binary '\0\0\0\0\0\0\0\0\0\0ys7',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(196754,0.000000,1647818942.556341,_binary '\0\0\0\0\0\0\0\0\0\0_',0,404,0,0,0,'http://kclgenetics.com/wp-includes/ffAA531.php','http://simplesite.com','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),(196755,0.000000,1647819668.198713,_binary '\0\0\0\0\0\0\0\0\0\0vy',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196756,0.000000,1647819669.936066,_binary '\0\0\0\0\0\0\0\0\0\0vy',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196757,0.000000,1647826485.086359,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/h-wcc-wb-668-wyarno-9500','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196758,0.000000,1647826489.802154,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/h-wcc-wb-668-wyarno-9500','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196759,0.000000,1647829641.373223,_binary '\0\0\0\0\0\0\0\0\0\0C\m',0,404,0,0,0,'http://kclgenetics.com/wp-class.php','http://simplesite.com','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),(196760,0.000000,1647829641.374482,_binary '\0\0\0\0\0\0\0\0\0\0C\m',0,404,0,0,0,'http://kclgenetics.com/wp-class.php','http://simplesite.com','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),(196761,0.000000,1647829771.973712,_binary '\0\0\0\0\0\0\0\0\0\0jb',0,301,0,0,0,'http://kclgenetics.com/wp-content/plugins/cach/coment/index.php','http://simplesite.com','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),(196762,0.000000,1647829772.925053,_binary '\0\0\0\0\0\0\0\0\0\0jb',0,301,0,0,0,'http://kclgenetics.com/wp-content/plugins/cach/coment/index.php','http://simplesite.com','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),(196763,0.000000,1647830099.569545,_binary '\0\0\0\0\0\0\0\0\0\09Y^',0,404,0,0,0,'http://kclgenetics.com/radio.php','http://simplesite.com','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),(196764,0.000000,1647830104.235747,_binary '\0\0\0\0\0\0\0\0\0\09YS',0,404,0,0,0,'http://kclgenetics.com/radio.php','http://simplesite.com','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),(196765,0.000000,1647830878.021987,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196766,0.000000,1647830879.806700,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196767,0.000000,1647831016.741851,_binary '\0\0\0\0\0\0\0\0\0\0@\',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(196769,0.000000,1647831019.257801,_binary '\0\0\0\0\0\0\0\0\0\0@\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(196740,0.000000,1647785802.398800,_binary '\0\0\0\0\0\0\0\0\0\0',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36','',NULL,NULL),(196738,0.000000,1647780815.923538,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196739,0.000000,1647785796.460224,_binary '\0\0\0\0\0\0\0\0\0\0',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36','',NULL,NULL),(196737,0.000000,1647780811.167235,_binary '\0\0\0\0\0\0\0\0\0\0va',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196620,0.000000,1647580735.283377,_binary '\0\0\0\0\0\0\0\0\0\0\"L\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196621,0.000000,1647597818.118023,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196622,0.000000,1647604138.513968,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196623,0.000000,1647604145.102755,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196879,0.000000,1647918911.128114,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,200,0,0,0,'http://kclgenetics.com/','','Pandalytics/1.0 (https://domainsbot.com/pandalytics/)','',NULL,NULL),(196880,0.000000,1647924218.476693,_binary '\0\0\0\0\0\0\0\0\0\0@[\[',0,404,0,0,0,'http://kclgenetics.com/media-admin.php','http://simplesite.com','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),(196881,0.000000,1647927664.225860,_binary '\0\0\0\0\0\0\0\0\0\0CI$',0,404,0,0,0,'http://kclgenetics.com/inc/gel.php','http://simplesite.com','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),(196882,0.000000,1647928515.676840,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,404,0,0,0,'http://kclgenetics.com/gank.php.PhP','http://simplesite.com','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),(196632,0.000000,1647619383.384066,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196633,0.000000,1647619383.384066,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196630,0.000000,1647614422.795661,_binary '\0\0\0\0\0\0\0\0\0\0,Ȓ\r',0,404,0,0,0,'http://kclgenetics.com/ads.txt','','AdsTxtCrawler/1.0.2','',NULL,NULL),(196631,0.000000,1647615214.305148,_binary '\0\0\0\0\0\0\0\0\0\0fG',0,404,0,0,0,'http://www.larsonspolledherefords.com/kclgenetics.com/','','Mozilla/5.0 (compatible; MojeekBot/0.10; +https://www.mojeek.com/bot.html)','',NULL,NULL),(196629,0.000000,1647613652.764078,_binary '\0\0\0\0\0\0\0\0\0\07\'\',0,200,0,0,0,'https://kclgenetics.com/donor-cows/112w-kcl/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196628,0.000000,1647613639.637971,_binary '\0\0\0\0\0\0\0\0\0\0\.\r\',0,200,0,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196627,0.000000,1647605118.603354,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196626,0.000000,1647605117.921649,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196625,0.000000,1647605114.108643,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196624,0.000000,1647605112.323121,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196733,0.000000,1647770632.160081,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(197127,0.000000,1648169417.779336,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,301,0,0,0,'http://www.kclgenetics.com/','','curl/7.38.0','',NULL,NULL),(197110,0.000000,1648169404.612992,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'http://kclgenetics.com/','','','',NULL,NULL),(197111,0.000000,1648169412.863077,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(197112,0.000000,1648169412.864564,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,301,0,0,0,'http://kclgenetics.com//sitemap.html','','','',NULL,NULL),(197113,0.000000,1648169412.864564,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,404,0,0,0,'http://kclgenetics.com/sitemap.xml','','Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)','',NULL,NULL),(197114,0.000000,1648169412.863521,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20100101 Firefox/17.0','',NULL,NULL),(197115,0.000000,1648169412.864162,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5 Build/MRA58N) AppleWebKit/537.36(KHTML, like Gecko) Chrome/66.0.3359.30 Mobile Safari/537.36','',NULL,NULL),(197116,0.000000,1648169414.523440,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(197117,0.000000,1648169414.611705,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,301,0,0,0,'http://kclgenetics.com//sitemap.html','','','',NULL,NULL),(197118,0.000000,1648169414.759253,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','','',NULL,NULL),(197119,0.000000,1648169415.394540,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,301,0,0,0,'http://kclgenetics.com//sitemap.html','','','',NULL,NULL),(197120,0.000000,1648169415.500559,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','','',NULL,NULL),(197121,0.000000,1648169415.353835,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(197122,0.000000,1648169416.205308,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,404,0,0,0,'http://kclgenetics.com/sitemap.html','','','',NULL,NULL),(197123,0.000000,1648169416.286212,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.2','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20100101 Firefox/17.0','',NULL,NULL),(197124,0.000000,1648169416.295226,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,404,0,0,0,'http://kclgenetics.com/website-sitemap.xml','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(197125,0.000000,1648169417.087128,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,301,0,0,0,'http://www.kclgenetics.com/','','curl/7.38.0','',NULL,NULL),(197126,0.000000,1648169417.099976,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,404,0,0,0,'http://kclgenetics.com/website-sitemap.xml','','Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)','',NULL,NULL),(196081,0.000000,1646707736.274276,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195675,0.000000,1646092436.497578,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=8d262364c962f079110612d072807231&signature=38623e8adb9d16ba25518ddf13902fb784bb271e8aab3a2d377040d7b539ae2c&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195674,0.000000,1646092387.525454,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=9d2c366d2c5fffe65bf40bae6f2acadf&signature=ddeb1101a9b0fa9ca3a7d1c58209baba4e8d60fc9cbdb48edb822e0b3fd527aa&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(197201,0.000000,1648221641.377899,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1648221640&nonce=oGrGcQNXBl&body-hash&signature=dsrbvIQZTsTKD1wrJlsApeAQx%2Bw%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1648221640&nonce=oGrGcQNXBl&body-hash&signature=dsrbvIQZTsTKD1wrJlsApeAQx%2Bw%3D','Jetpack by WordPress.com','',NULL,NULL),(197200,0.000000,1648221640.245438,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1648221640&nonce=oGrGcQNXBl&body-hash&signature=dsrbvIQZTsTKD1wrJlsApeAQx%2Bw%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1648221640&nonce=oGrGcQNXBl&body-hash&signature=dsrbvIQZTsTKD1wrJlsApeAQx%2Bw%3D','Jetpack by WordPress.com','',NULL,NULL),(197199,0.000000,1648221573.937464,_binary '\0\0\0\0\0\0\0\0\0\0\\,',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197198,0.000000,1648220327.806301,_binary '\0\0\0\0\0\0\0\0\0\0jb',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/twentytwenty/inc/about.php','http://simplesite.com','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),(197185,0.000000,1648212460.348348,_binary '\0\0\0\0\0\0\0\0\0\0@',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/akismat/bh.php','http://simplesite.com','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),(197186,0.000000,1648217729.987344,_binary '\0\0\0\0\0\0\0\0\0\0\\C',0,404,0,0,0,'http://www.larsonpolledherefords.com/kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36','',NULL,NULL),(197187,0.000000,1648217986.594337,_binary '\0\0\0\0\0\0\0\0\0\0j`',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/fp/MKY.php','http://simplesite.com','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),(197188,0.000000,1648218408.538400,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197189,0.000000,1648218424.320376,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197190,0.000000,1648218425.927582,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197191,0.000000,1648218474.787209,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197192,0.000000,1648218494.058368,_binary '\0\0\0\0\0\0\0\0\0\0\\5',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197193,0.000000,1648218495.753866,_binary '\0\0\0\0\0\0\0\0\0\0\\5',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197194,0.000000,1648218501.533033,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(197195,0.000000,1648218657.699040,_binary '\0\0\0\0\0\0\0\0\0\0-T\3',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197196,0.000000,1648220103.836478,_binary '\0\0\0\0\0\0\0\0\0\0G}\"',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197197,0.000000,1648220201.908302,_binary '\0\0\0\0\0\0\0\0\0\0&',0,404,0,0,0,'http://kclgenetics.com/wordpress/wp-content/plugins/x/patior/patior/404.php','http://simplesite.com','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),(196050,0.000000,1646661913.087962,_binary '\0\0\0\0\0\0\0\0\0\0#BP',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196049,0.000000,1646661908.858672,_binary '\0\0\0\0\0\0\0\0\0\0#BP',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196048,0.000000,1646650947.197629,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196044,0.000000,1646648081.590622,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196045,0.000000,1646648082.278612,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196046,0.000000,1646648083.124515,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196047,0.000000,1646648086.152835,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.1','http://kclgenetics.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195942,0.000000,1646488370.131460,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646488365&nonce=ht6C6yeVAs&body-hash&signature=j16JRum3io1co3DhQJV1baHEOF0%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646488365&nonce=ht6C6yeVAs&body-hash&signature=j16JRum3io1co3DhQJV1baHEOF0%3D','Jetpack by WordPress.com','',NULL,NULL),(195934,0.000000,1646464646.322328,_binary '\0\0\0\0\0\0\0\0\0\0`\',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195935,0.000000,1646464646.987873,_binary '\0\0\0\0\0\0\0\0\0\0`\',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195936,0.000000,1646466427.435136,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195937,0.000000,1646466431.543809,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195938,0.000000,1646478256.214482,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(195939,0.000000,1646478442.751506,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=955b7e3892179714915abe4510bc08e1&signature=d4ecbb55281dc6d7b57621e316f53a0c25639b75b61d003e38eb2ecd638d698d&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195940,0.000000,1646480235.489524,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195941,0.000000,1646480244.091146,_binary '\0\0\0\0\0\0\0\0\0\0{\i',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196562,0.000000,1647476012.019765,_binary '\0\0\0\0\0\0\0\0\0\04\r',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196559,0.000000,1647475983.502540,_binary '\0\0\0\0\0\0\0\0\0\04!y',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196560,0.000000,1647475988.648575,_binary '\0\0\0\0\0\0\0\0\0\04!y',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196561,0.000000,1647475988.938591,_binary '\0\0\0\0\0\0\0\0\0\06ڬ',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196518,0.000000,1647425072.772758,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196519,0.000000,1647430167.960532,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196565,0.000000,1647476056.253441,_binary '\0\0\0\0\0\0\0\0\0\0\"\>',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196566,0.000000,1647476056.955183,_binary '\0\0\0\0\0\0\0\0\0\0\"\>',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196567,0.000000,1647476062.578669,_binary '\0\0\0\0\0\0\0\0\0\0\"\>',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195820,0.000000,1646250022.816354,_binary '\0\0\0\0\0\0\0\0\0\0ksF',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1','',NULL,NULL),(195821,0.000000,1646266740.692342,_binary '\0\0\0\0\0\0\0\0\0\0#W\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195822,0.000000,1646266747.490021,_binary '\0\0\0\0\0\0\0\0\0\06\\',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195823,0.000000,1646266773.165278,_binary '\0\0\0\0\0\0\0\0\0\06E',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195848,0.000000,1646286612.952511,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,404,0,0,0,'http://kclgenetics.com/cart/','','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727)','',NULL,NULL),(195847,0.000000,1646285997.009658,_binary '\0\0\0\0\0\0\0\0\0\0\-',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider','',NULL,NULL),(195945,0.000000,1646493247.992888,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195946,0.000000,1646493247.992889,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195947,0.000000,1646493250.954104,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195948,0.000000,1646493251.016730,_binary '\0\0\0\0\0\0\0\0\0\0BHV',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195949,0.000000,1646493262.581290,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195950,0.000000,1646493263.518053,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195951,0.000000,1646498389.608435,_binary '\0\0\0\0\0\0\0\0\0\0FwY',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15','',NULL,NULL),(195952,0.000000,1646500218.772776,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(195953,0.000000,1646500220.641980,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(195954,0.000000,1646500221.435545,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,200,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(195955,0.000000,1646500222.113655,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(195956,0.000000,1646505469.490677,_binary '\0\0\0\0\0\0\0\0\0\0k#j',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1','',NULL,NULL),(195846,0.000000,1646282501.894530,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/about-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195575,0.000000,1646037964.165300,_binary '\0\0\0\0\0\0\0\0\0\0h',0,301,0,0,0,'http://kclgenetics.com/visiting-kazakhstan','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195574,0.000000,1646037963.675090,_binary '\0\0\0\0\0\0\0\0\0\0\"y1k',0,301,0,0,0,'http://kclgenetics.com/2018-hereford-alliance-sale','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195573,0.000000,1646037963.653540,_binary '\0\0\0\0\0\0\0\0\0\0\"y\0',0,301,0,0,0,'http://kclgenetics.com/contact-us','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(196466,0.000000,1647336314.024423,_binary '\0\0\0\0\0\0\0\0\0\0%\\',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','',NULL,NULL),(196467,0.000000,1647336316.773650,_binary '\0\0\0\0\0\0\0\0\0\0%\\',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','',NULL,NULL),(196468,0.000000,1647336804.545164,_binary '\0\0\0\0\0\0\0\0\0\0\#',0,301,0,0,0,'http://kclgenetics.com/wp-includes/js/tinymce/plugins/paste/index.php','http://simplesite.com','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),(196469,0.000000,1647336806.906019,_binary '\0\0\0\0\0\0\0\0\0\0\#',0,301,0,0,0,'http://kclgenetics.com/wp-includes/js/tinymce/plugins/paste/index.php','http://simplesite.com','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),(196470,0.000000,1647338676.791314,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196471,0.000000,1647338761.442299,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Softaculous','',NULL,NULL),(196472,0.000000,1647338772.633560,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196473,0.000000,1647341510.900616,_binary '\0\0\0\0\0\0\0\0\0\0Qd',0,404,0,0,0,'http://kclgenetics.com/wp-content/wp-aespa.php','http://simplesite.com','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),(196474,0.000000,1647348805.946623,_binary '\0\0\0\0\0\0\0\0\0\0vd',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196475,0.000000,1647348810.590268,_binary '\0\0\0\0\0\0\0\0\0\0vd',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196514,0.000000,1647418621.837679,_binary '\0\0\0\0\0\0\0\0\0\0\*\',0,301,0,0,0,'http://mail.kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36','',NULL,NULL),(196515,0.000000,1647418626.064914,_binary '\0\0\0\0\0\0\0\0\0\0\*\',0,301,0,0,0,'http://mail.kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36','',NULL,NULL),(196516,0.000000,1647418901.996656,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,301,0,0,0,'http://mail.kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.17 Safari/537.36','',NULL,NULL),(196517,0.000000,1647418905.431315,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,301,0,0,0,'http://mail.kclgenetics.com/','','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.17 Safari/537.36','',NULL,NULL),(195900,0.000000,1646391781.807242,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(195901,0.000000,1646391836.190221,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Softaculous','',NULL,NULL),(195902,0.000000,1646391849.594956,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=1c2cc0cc416d0364bdb4d2acd11a8fa4&signature=3a276b1072d4c4c5e78ea5620668829682faf0f76fde2dedef4a475bd9e228cd&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195903,0.000000,1646391850.479096,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(195904,0.000000,1646393832.671748,_binary '\0\0\0\0\0\0\0\0\0\0\0VU',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646393832&nonce=6bEw9DxhqH&body-hash&signature=BCxnAvgZk%2FSt4aBHyCc9ouJr2Gs%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646393832&nonce=6bEw9DxhqH&body-hash&signature=BCxnAvgZk%2FSt4aBHyCc9ouJr2Gs%3D','Jetpack by WordPress.com','',NULL,NULL),(195905,0.000000,1646393835.125886,_binary '\0\0\0\0\0\0\0\0\0\0\0VU',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646393832&nonce=6bEw9DxhqH&body-hash&signature=BCxnAvgZk%2FSt4aBHyCc9ouJr2Gs%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646393832&nonce=6bEw9DxhqH&body-hash&signature=BCxnAvgZk%2FSt4aBHyCc9ouJr2Gs%3D','Jetpack by WordPress.com','',NULL,NULL),(195697,0.000000,1646098331.337648,_binary '\0\0\0\0\0\0\0\0\0\0;׳',0,404,0,0,0,'http://kclgenetics.com/oldsite/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195696,0.000000,1646098330.155175,_binary '\0\0\0\0\0\0\0\0\0\0;׳',0,404,0,0,0,'http://kclgenetics.com/site/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195693,0.000000,1646098326.711068,_binary '\0\0\0\0\0\0\0\0\0\0;׳',0,404,0,0,0,'http://kclgenetics.com/cms/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195694,0.000000,1646098327.883146,_binary '\0\0\0\0\0\0\0\0\0\0;׳',0,404,0,0,0,'http://kclgenetics.com/web/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195695,0.000000,1646098329.024263,_binary '\0\0\0\0\0\0\0\0\0\0;׳',0,404,0,0,0,'http://kclgenetics.com/backup/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195691,0.000000,1646098323.728950,_binary '\0\0\0\0\0\0\0\0\0\0;׳',0,404,0,0,0,'http://kclgenetics.com/test/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195692,0.000000,1646098324.896281,_binary '\0\0\0\0\0\0\0\0\0\0;׳',0,404,0,0,0,'http://kclgenetics.com/blog/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195690,0.000000,1646098322.586907,_binary '\0\0\0\0\0\0\0\0\0\0;׳',0,404,0,0,0,'http://kclgenetics.com/wordpress/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195689,0.000000,1646098321.442427,_binary '\0\0\0\0\0\0\0\0\0\0;׳',0,404,0,0,0,'http://kclgenetics.com/old/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195688,0.000000,1646098320.330149,_binary '\0\0\0\0\0\0\0\0\0\0;׳',0,404,0,0,0,'http://kclgenetics.com/new/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195687,0.000000,1646098318.362267,_binary '\0\0\0\0\0\0\0\0\0\0;׳',0,404,0,0,0,'http://kclgenetics.com/wp/wp-admin/install.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195686,0.000000,1646095308.514336,_binary '\0\0\0\0\0\0\0\0\0\0\"ݽO',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195685,0.000000,1646095305.791775,_binary '\0\0\0\0\0\0\0\0\0\0\"ݽO',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195684,0.000000,1646095305.132237,_binary '\0\0\0\0\0\0\0\0\0\0\"ݽO',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195681,0.000000,1646095289.763885,_binary '\0\0\0\0\0\0\0\0\0\06\\?',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195682,0.000000,1646095290.471865,_binary '\0\0\0\0\0\0\0\0\0\06\\?',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195683,0.000000,1646095291.971178,_binary '\0\0\0\0\0\0\0\0\0\06\\?',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195578,0.000000,1646037964.374733,_binary '\0\0\0\0\0\0\0\0\0\0#\%',0,301,0,0,0,'http://kclgenetics.com/about-us','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195579,0.000000,1646037964.342234,_binary '\0\0\0\0\0\0\0\0\0\0#\\\r',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195580,0.000000,1646037964.919361,_binary '\0\0\0\0\0\0\0\0\0\0\"$',0,301,0,0,0,'http://kclgenetics.com/currently-used-bulls','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195581,0.000000,1646037964.925350,_binary '\0\0\0\0\0\0\0\0\0\0h',0,301,0,0,0,'http://kclgenetics.com/visiting-kazakhstan','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195582,0.000000,1646037965.115281,_binary '\0\0\0\0\0\0\0\0\0\0\"FN',0,301,0,0,0,'http://kclgenetics.com/kcl-donor-cows','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195583,0.000000,1646037965.703048,_binary '\0\0\0\0\0\0\0\0\0\0\"$',0,301,0,0,0,'http://kclgenetics.com/currently-used-bulls','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(195584,0.000000,1646037973.092621,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,301,0,0,0,'http://kclgenetics.com/contact-us','','Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20100101 Firefox/17.0','',NULL,NULL),(195585,0.000000,1646037973.756384,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,301,0,0,0,'http://kclgenetics.com/contact-us','','Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20100101 Firefox/17.0','',NULL,NULL),(195586,0.000000,1646037974.162307,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(195587,0.000000,1646037974.330503,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,200,0,0,0,'https://kclgenetics.com/','','','',NULL,NULL),(195588,0.000000,1646037974.494364,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,301,0,0,0,'http://kclgenetics.com//sitemap.html','','','',NULL,NULL),(195589,0.000000,1646037974.493378,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,404,0,0,0,'http://kclgenetics.com/sitemap.xml','','Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101 Firefox/4.0','',NULL,NULL),(195590,0.000000,1646037974.582232,_binary '\0\0\0\0\0\0\0\0\0\0\"W\',0,200,0,0,0,'http://kclgenetics.com/','','','',NULL,NULL),(196612,0.000000,1647553290.216146,_binary '\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://kclgenetics.com/bsgessfds.php','http://simplesite.com','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),(196611,0.000000,1647549327.144805,_binary '\0\0\0\0\0\0\0\0\0\0\M',0,404,0,0,0,'http://kclgenetics.com/rex.php','http://simplesite.com','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),(196610,0.000000,1647548735.615679,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647548725&nonce=RblCoGEMSb&body-hash&signature=BFbxjtdoGNJSN99CmD7JUvKJc5E%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647548725&nonce=RblCoGEMSb&body-hash&signature=BFbxjtdoGNJSN99CmD7JUvKJc5E%3D','Jetpack by WordPress.com','',NULL,NULL),(196609,0.000000,1647548730.546295,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647548725&nonce=RblCoGEMSb&body-hash&signature=BFbxjtdoGNJSN99CmD7JUvKJc5E%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647548725&nonce=RblCoGEMSb&body-hash&signature=BFbxjtdoGNJSN99CmD7JUvKJc5E%3D','Jetpack by WordPress.com','',NULL,NULL),(196619,0.000000,1647580730.935241,_binary '\0\0\0\0\0\0\0\0\0\0\"L\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196613,0.000000,1647556292.092171,_binary '\0\0\0\0\0\0\0\0\0\03\\',0,200,0,0,0,'https://kclgenetics.com/','','','',NULL,NULL),(196614,0.000000,1647556297.828805,_binary '\0\0\0\0\0\0\0\0\0\03\\',0,200,0,0,0,'https://kclgenetics.com/','','','',NULL,NULL),(196615,0.000000,1647558955.850118,_binary '\0\0\0\0\0\0\0\0\0\0/\rr',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/distance-lite/languages/namespaces.php','http://simplesite.com','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),(196616,0.000000,1647564748.078145,_binary '\0\0\0\0\0\0\0\0\0\06.\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196617,0.000000,1647571683.572212,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196618,0.000000,1647571689.051673,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196658,0.000000,1647648729.531015,_binary '\0\0\0\0\0\0\0\0\0\0%\\',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','',NULL,NULL),(196230,0.000000,1646924618.444065,_binary '\0\0\0\0\0\0\0\0\0\0MQ$',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','',NULL,NULL),(196229,0.000000,1646924606.326449,_binary '\0\0\0\0\0\0\0\0\0\0MQ$',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','',NULL,NULL),(196228,0.000000,1646922227.068496,_binary '\0\0\0\0\0\0\0\0\0\0BH[',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196227,0.000000,1646922226.180209,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196670,0.000000,1647695209.579234,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=49b85e3e8e9c815aa9e9791201453887&signature=7e8ae0bdb7dfee2228967becc24da619496062a049e7b146b1a8398c8f54152c&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196854,0.000000,1647897758.631773,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=01cd203a25b67334fc43045f5420ef19&signature=9ec3eb72b12ef0b32bf569f989e5d89d39531b85bbaee709e0d7ad017757ef99&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196853,0.000000,1647897708.527905,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=e122f53b9352c43190d8020a518f718a&signature=452e3902323c8fa7c89ac1b38914064d88bd8daa52f00450daf584fe68c5e218&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196851,0.000000,1647897631.557265,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.2','http://kclgenetics.com/contact-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196852,0.000000,1647897659.495751,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=4090be404d41af6a7e52eeddf35b2158&signature=e1864cd50d57103286b453b3cae070c9934d3e7a576aaba8ff2e8c2874c7b604&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196898,0.000000,1647949703.007209,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196897,0.000000,1647948536.086933,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=c2f5143714ce41325ca51aafc2bf6ebe&signature=a4a6ef6a2a65b9fc65de56dde7f25576558c621fcffe005451712f581bc397fc&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196899,0.000000,1647949707.701351,_binary '\0\0\0\0\0\0\0\0\0\0{}m=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196900,0.000000,1647951043.349124,_binary '\0\0\0\0\0\0\0\0\0\0AZ&',0,404,0,0,0,'http://kclgenetics.com/wp-content/languages/','binance.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','',NULL,NULL),(196901,0.000000,1647951083.350416,_binary '\0\0\0\0\0\0\0\0\0\0AZ&',0,404,0,0,0,'http://kclgenetics.com/wp-admin/network/','binance.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','',NULL,NULL),(196902,0.000000,1647951146.785334,_binary '\0\0\0\0\0\0\0\0\0\0AZ&',0,301,0,0,0,'http://kclgenetics.com/wp-admin/css/colors/sunrise/%20','binance.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','',NULL,NULL),(196903,0.000000,1647951149.028530,_binary '\0\0\0\0\0\0\0\0\0\0AZ&',0,301,0,0,0,'http://kclgenetics.com/wp-admin/css/colors/sunrise/%20','binance.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','',NULL,NULL),(196904,0.000000,1647951431.199197,_binary '\0\0\0\0\0\0\0\0\0\0AZ&',0,301,0,0,0,'http://kclgenetics.com/wp-includes/js/%20','binance.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','',NULL,NULL),(196905,0.000000,1647951433.055733,_binary '\0\0\0\0\0\0\0\0\0\0AZ&',0,301,0,0,0,'http://kclgenetics.com/wp-includes/js/%20','binance.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','',NULL,NULL),(196906,0.000000,1647956263.841139,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(197092,0.000000,1648169383.448488,_binary '\0\0\0\0\0\0\0\0\0\0#\\"',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.2','http://kclgenetics.com/','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/534.34 (KHTML, like Gecko) PhantomJS/1.9.8 Safari/534.34','',NULL,NULL),(197093,0.000000,1648169386.629765,_binary '\0\0\0\0\0\0\0\0\0\0\"U',0,301,0,0,0,'http://kclgenetics.com/about-us','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(197094,0.000000,1648169386.755484,_binary '\0\0\0\0\0\0\0\0\0\0\"PA',0,301,0,0,0,'http://kclgenetics.com/kcl-donor-cows','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(197053,0.000000,1648151014.275040,_binary '\0\0\0\0\0\0\0\0\0\0Zv',0,404,0,0,0,'http://kclgenetics.com/kaylin-mediy-jiami-nopwd.php','http://simplesite.com','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),(197054,0.000000,1648153482.472047,_binary '\0\0\0\0\0\0\0\0\0\0FwY',1,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15','',NULL,NULL),(197052,0.000000,1648151014.275365,_binary '\0\0\0\0\0\0\0\0\0\0Zv',0,404,0,0,0,'http://kclgenetics.com/kaylin-mediy-jiami-nopwd.php','http://simplesite.com','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),(197051,0.000000,1648146958.288321,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-512x-719t-playmaker-14z','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197050,0.000000,1648146954.752056,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-512x-719t-playmaker-14z','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197049,0.000000,1648144727.900030,_binary '\0\0\0\0\0\0\0\0\0\0yq',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(197048,0.000000,1648144721.175058,_binary '\0\0\0\0\0\0\0\0\0\0yq',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(197047,0.000000,1648144711.494131,_binary '\0\0\0\0\0\0\0\0\0\0yr\r',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(197046,0.000000,1648144699.602057,_binary '\0\0\0\0\0\0\0\0\0\0yr\r',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(197045,0.000000,1648139673.427045,_binary '\0\0\0\0\0\0\0\0\0\0-OV\',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/jobart/fws.php','http://simplesite.com','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),(197044,0.000000,1648138824.242861,_binary '\0\0\0\0\0\0\0\0\0\0*\',0,404,0,0,0,'http://kclgenetics.com/wp-content/themes/jobart/fws.php','http://simplesite.com','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),(197042,0.000000,1648132154.318788,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(197043,0.000000,1648132154.947541,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(197041,0.000000,1648132153.547330,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,200,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(197040,0.000000,1648132152.613628,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(197039,0.000000,1648132151.808486,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(196563,0.000000,1647476012.697714,_binary '\0\0\0\0\0\0\0\0\0\04\r',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196564,0.000000,1647476015.241696,_binary '\0\0\0\0\0\0\0\0\0\04\r',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196536,0.000000,1647451509.613205,_binary '\0\0\0\0\0\0\0\0\0\0MX\r',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196537,0.000000,1647451510.304669,_binary '\0\0\0\0\0\0\0\0\0\0MX\r',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196538,0.000000,1647452496.522244,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196539,0.000000,1647452498.692630,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196540,0.000000,1647452499.472110,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196541,0.000000,1647452500.172490,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196542,0.000000,1647452500.942087,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196543,0.000000,1647452501.634610,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196544,0.000000,1647452502.428297,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196545,0.000000,1647452503.122573,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196546,0.000000,1647452503.895082,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196547,0.000000,1647452504.580007,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196548,0.000000,1647452505.355581,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196549,0.000000,1647452947.005621,_binary '\0\0\0\0\0\0\0\0\0\0\',0,404,0,0,0,'http://kclgenetics.com/shx.php','http://simplesite.com','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),(196671,0.000000,1647700599.551313,_binary '\0\0\0\0\0\0\0\0\0\0,\\v',0,404,0,0,0,'http://kclgenetics.com/ads.txt','','AdsTxtCrawler/1.0.2','',NULL,NULL),(196672,0.000000,1647700764.790961,_binary '\0\0\0\0\0\0\0\0\0\0];',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196673,0.000000,1647700767.444753,_binary '\0\0\0\0\0\0\0\0\0\0];',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196674,0.000000,1647700769.080040,_binary '\0\0\0\0\0\0\0\0\0\0]',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196675,0.000000,1647700776.987833,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196676,0.000000,1647700783.608876,_binary '\0\0\0\0\0\0\0\0\0\0]',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196677,0.000000,1647704815.134329,_binary '\0\0\0\0\0\0\0\0\0\0\ߑ',0,404,0,0,0,'http://kclgenetics.com/ads.txt','','AdsTxtCrawler/1.0.2','',NULL,NULL),(196678,0.000000,1647705109.414537,_binary '\0\0\0\0\0\0\0\0\0\0B@?',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196679,0.000000,1647705109.414312,_binary '\0\0\0\0\0\0\0\0\0\0B@2',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196680,0.000000,1647705117.291919,_binary '\0\0\0\0\0\0\0\0\0\0B@2',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196681,0.000000,1647705117.322598,_binary '\0\0\0\0\0\0\0\0\0\0B@?',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196682,0.000000,1647705120.153139,_binary '\0\0\0\0\0\0\0\0\0\0B@2',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196683,0.000000,1647705122.766529,_binary '\0\0\0\0\0\0\0\0\0\0B@;',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196684,0.000000,1647710511.147869,_binary '\0\0\0\0\0\0\0\0\0\0\G',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/background-image-cropper/doc.php','http://simplesite.com','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),(196685,0.000000,1647710511.147537,_binary '\0\0\0\0\0\0\0\0\0\0\I',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/background-image-cropper/doc.php','http://simplesite.com','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),(196686,0.000000,1647712098.682962,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196687,0.000000,1647712102.868632,_binary '\0\0\0\0\0\0\0\0\0\0(M_',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196688,0.000000,1647712114.421875,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/victor-719t','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196689,0.000000,1647712115.161151,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/victor-719t','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196690,0.000000,1647715645.936312,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,404,0,0,0,'http://larsonspolledherefords.com/kclgenetics.com/','http://larsonspolledherefords.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196691,0.000000,1647716230.394646,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(196692,0.000000,1647716232.193425,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x','',NULL,NULL),(196693,0.000000,1647716232.937644,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,200,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(196694,0.000000,1647716233.622985,_binary '\0\0\0\0\0\0\0\0\0\0Ga',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','','',NULL,NULL),(196695,0.000000,1647716549.989862,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,404,0,0,0,'http://larsonspolledherefords.com/kclgenetics.com/','http://larsonspolledherefords.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196696,0.000000,1647735349.943454,_binary '\0\0\0\0\0\0\0\0\0\0хܮ',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/background-image-cropper/ups.php','http://simplesite.com','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),(196876,0.000000,1647918797.533746,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,200,0,0,0,'http://kclgenetics.com/','','Pandalytics/1.0 (https://domainsbot.com/pandalytics/)','',NULL,NULL),(196877,0.000000,1647918814.549032,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,200,0,0,0,'http://kclgenetics.com/','','Pandalytics/1.0 (https://domainsbot.com/pandalytics/)','',NULL,NULL),(196594,0.000000,1647515890.523695,_binary '\0\0\0\0\0\0\0\0\0\0]',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196593,0.000000,1647515889.451963,_binary '\0\0\0\0\0\0\0\0\0\0];',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196878,0.000000,1647918838.507047,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,200,0,0,0,'http://kclgenetics.com/','','Pandalytics/1.0 (https://domainsbot.com/pandalytics/)','',NULL,NULL),(196591,0.000000,1647512242.416129,_binary '\0\0\0\0\0\0\0\0\0\04$\Z',0,200,0,0,0,'http://kclgenetics.com/','','','',NULL,NULL),(196592,0.000000,1647515883.496152,_binary '\0\0\0\0\0\0\0\0\0\0];',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196595,0.000000,1647515891.219609,_binary '\0\0\0\0\0\0\0\0\0\0]',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196596,0.000000,1647515894.311158,_binary '\0\0\0\0\0\0\0\0\0\0MX\r',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196597,0.000000,1647515894.982858,_binary '\0\0\0\0\0\0\0\0\0\0MX\r',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196598,0.000000,1647515898.002610,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196599,0.000000,1647515898.673449,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196600,0.000000,1647517975.744658,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196601,0.000000,1647517978.221902,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196602,0.000000,1647532031.469117,_binary '\0\0\0\0\0\0\0\0\0\0\:.',0,404,0,0,0,'http://kclgenetics.com/ads.txt','','AdsTxtCrawler/1.0.2','',NULL,NULL),(196603,0.000000,1647534746.822303,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196604,0.000000,1647534749.114702,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196605,0.000000,1647534761.358901,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196606,0.000000,1647541588.241152,_binary '\0\0\0\0\0\0\0\0\0\0jaT',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/cache-wordpress/payment.php','http://simplesite.com','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),(196607,0.000000,1647541588.242570,_binary '\0\0\0\0\0\0\0\0\0\0jaM',0,404,0,0,0,'http://kclgenetics.com/wp-content/plugins/cache-wordpress/payment.php','http://simplesite.com','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),(196608,0.000000,1647542385.859661,_binary '\0\0\0\0\0\0\0\0\0\06$+',0,404,0,0,0,'http://www.larsonspolledherefords.com/kclgenetics.com/','','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','',NULL,NULL),(196836,0.000000,1647897432.849726,_binary '\0\0\0\0\0\0\0\0\0\0m\:',0,404,0,0,0,'http://kclgenetics.com/wp-class.php','http://simplesite.com','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),(196835,0.000000,1647892443.425680,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647892431&nonce=srioNdcacJ&body-hash&signature=rh3k8jIVv%2Fl0m31kWKTeHgVIgWk%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1647892431&nonce=srioNdcacJ&body-hash&signature=rh3k8jIVv%2Fl0m31kWKTeHgVIgWk%3D','Jetpack by WordPress.com','',NULL,NULL),(196294,0.000000,1647070062.743326,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/2018-hereford-alliance-sale/','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196295,0.000000,1647084447.182979,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196296,0.000000,1647084515.790664,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=quick&cronKey=cb8b9d24d2a5cddf8cb880870ef445c3&signature=0fdd7252b99f1206dcb46fd3cc408d168ac803db11e6a27222560c38a9ca1979&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196311,0.000000,1647140356.773385,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=37778e75820345597ca031cf6e8619f1&signature=36377e3837414c7f45391c33e0951e80d2a95396a53e442b34231128f668ff1e&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196310,0.000000,1647140259.616313,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=98a5919e752c696d8d2a9b0b6735d2f4&signature=b5c43b5bad80a787e55000c89cee7470240759e154d8e1424662e8f909a45137&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196297,0.000000,1647084541.984884,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Softaculous','',NULL,NULL),(196298,0.000000,1647084543.251164,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196299,0.000000,1647095014.865644,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196300,0.000000,1647095027.485326,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196301,0.000000,1647095096.075250,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196302,0.000000,1647095178.988794,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196303,0.000000,1647095436.063351,_binary '\0\0\0\0\0\0\0\0\0\0vd',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196304,0.000000,1647095459.600569,_binary '\0\0\0\0\0\0\0\0\0\0vd',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196305,0.000000,1647096692.790705,_binary '\0\0\0\0\0\0\0\0\0\0Y6',0,404,0,0,0,'http://kclgenetics.com/ads.txt','','AdsTxtCrawler/1.0.2','',NULL,NULL),(196306,0.000000,1647099736.485743,_binary '\0\0\0\0\0\0\0\0\0\0Wg',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',NULL,NULL),(196307,0.000000,1647140146.811655,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196308,0.000000,1647140151.660928,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196309,0.000000,1647140211.643027,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=standard&cronKey=c4c87d382ef0962b817d00f43b562ac0&signature=d2759090bbc7d4c634d646d347b6f3aa0678267eb3ba9e2b8aecdf0072ac80d3&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196019,0.000000,1646618321.518190,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=fd9dd30f1e9cc012e074738e496ff439&signature=88d9d98e409d03ebd6f98cd40daa9cf7a23b8fe7dd606f0b7d098c441f1b6c02&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196018,0.000000,1646618272.397352,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=f65b2a62025c58037b9400898ffee2d5&signature=17009255216f7aae85ffd1c50a93bb10cb67cb825a5874656b8384485fb65ca4&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195906,0.000000,1646396554.196423,_binary '\0\0\0\0\0\0\0\0\0\0\"N$',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(195907,0.000000,1646396556.291575,_binary '\0\0\0\0\0\0\0\0\0\0\"N$',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(195908,0.000000,1646399738.216863,_binary '\0\0\0\0\0\0\0\0\0\0vc',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195909,0.000000,1646399740.463754,_binary '\0\0\0\0\0\0\0\0\0\0vc',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(195910,0.000000,1646408406.152211,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195911,0.000000,1646408406.152213,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195912,0.000000,1646408411.546416,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195913,0.000000,1646408411.546427,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195914,0.000000,1646427811.354142,_binary '\0\0\0\0\0\0\0\0\0\0\N6',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','',NULL,NULL),(195915,0.000000,1646427817.242103,_binary '\0\0\0\0\0\0\0\0\0\0\N6',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','',NULL,NULL),(195916,0.000000,1646427818.602630,_binary '\0\0\0\0\0\0\0\0\0\0\N6',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','',NULL,NULL),(195917,0.000000,1646439016.122659,_binary '\0\0\0\0\0\0\0\0\0\0\"\\Z\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195930,0.000000,1646464635.707178,_binary '\0\0\0\0\0\0\0\0\0\0`\',0,301,0,0,0,'http://kclgenetics.com/administrator/index.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','',NULL,NULL),(195929,0.000000,1646446191.074998,_binary '\0\0\0\0\0\0\0\0\0\0k',0,404,0,0,0,'http://kclgenetics.com/media/rokgallery/7/7092f8ce-afe1-4380-e0e3-312e8104aec9/3d85fb8c-bb4e-4b7e-b294-905883435c0d.jpg','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(195928,0.000000,1646443062.689580,_binary '\0\0\0\0\0\0\0\0\0\0*\\nQ',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider','',NULL,NULL),(195927,0.000000,1646442118.385773,_binary '\0\0\0\0\0\0\0\0\0\04P*',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','',NULL,NULL),(195926,0.000000,1646441918.390982,_binary '\0\0\0\0\0\0\0\0\0\00\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36 Edg/92.0.902.84','',NULL,NULL),(195925,0.000000,1646439278.022670,_binary '\0\0\0\0\0\0\0\0\0\06\',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195924,0.000000,1646439273.271755,_binary '\0\0\0\0\0\0\0\0\0\06\',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195923,0.000000,1646439272.618465,_binary '\0\0\0\0\0\0\0\0\0\06\',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195922,0.000000,1646439264.819046,_binary '\0\0\0\0\0\0\0\0\0\0#YA\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195921,0.000000,1646439262.405489,_binary '\0\0\0\0\0\0\0\0\0\0#YA\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195920,0.000000,1646439261.699187,_binary '\0\0\0\0\0\0\0\0\0\0#YA\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195919,0.000000,1646439235.239492,_binary '\0\0\0\0\0\0\0\0\0\04\r&',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(195918,0.000000,1646439036.487091,_binary '\0\0\0\0\0\0\0\0\0\04!',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196948,0.000000,1648022803.849096,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196947,0.000000,1648021906.773152,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196944,0.000000,1648021855.501150,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196945,0.000000,1648021860.077952,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196946,0.000000,1648021902.593144,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,302,0,0,0,'http://kclgenetics.com/favicon.ico','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196942,0.000000,1648014601.187461,_binary '\0\0\0\0\0\0\0\0\0\0\!\',0,200,0,0,0,'http://kclgenetics.com/wp-json/contact-form-7/v1/contact-forms/491/feedback','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(196943,0.000000,1648020999.660120,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/','Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot)','',NULL,NULL),(196941,0.000000,1648014598.765114,_binary '\0\0\0\0\0\0\0\0\0\0\!\',0,200,0,0,0,'http://kclgenetics.com/wp-json/contact-form-7/v1/contact-forms/491/feedback','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(196940,0.000000,1648014591.947134,_binary '\0\0\0\0\0\0\0\0\0\0\!\',0,200,0,0,0,'http://kclgenetics.com/contact-us/','','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(196939,0.000000,1648001480.631041,_binary '\0\0\0\0\0\0\0\0\0\0\$\',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','',NULL,NULL),(196938,0.000000,1648001478.862068,_binary '\0\0\0\0\0\0\0\0\0\0\$\',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','',NULL,NULL),(196936,0.000000,1647989489.047796,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196937,0.000000,1648001471.978276,_binary '\0\0\0\0\0\0\0\0\0\0\$\',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','',NULL,NULL),(196934,0.000000,1647983644.983193,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(196935,0.000000,1647989484.417130,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/bulls','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196129,0.000000,1646769321.067983,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646769316&nonce=LNGILi75z2&body-hash&signature=3Vf32O2Tm%2BDq3eG4Zc64m2NHI74%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646769316&nonce=LNGILi75z2&body-hash&signature=3Vf32O2Tm%2BDq3eG4Zc64m2NHI74%3D','Jetpack by WordPress.com','',NULL,NULL),(196130,0.000000,1646772136.573708,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,200,0,0,0,'http://kclgenetics.com/kcl-4002-bonissa-65k-92s-et-dlfhyfief-p42805874/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(197163,0.000000,1648199781.471888,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/contact-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(197164,0.000000,1648199782.162839,_binary '\0\0\0\0\0\0\0\0\0\0O',0,301,0,0,0,'http://kclgenetics.com/contact-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(197165,0.000000,1648200983.791755,_binary '\0\0\0\0\0\0\0\0\0\0\Ӳ',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197166,0.000000,1648200983.792325,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197167,0.000000,1648202653.861101,_binary '\0\0\0\0\0\0\0\0\0\0\{',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197168,0.000000,1648202653.861081,_binary '\0\0\0\0\0\0\0\0\0\0/\q',0,404,0,0,0,'http://kclgenetics.com/wp-content/shell20211028.php','http://simplesite.com','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),(197169,0.000000,1648202653.861079,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(197170,0.000000,1648203367.469500,_binary '\0\0\0\0\0\0\0\0\0\0.\',0,404,0,0,0,'http://kclgenetics.com/wp-content/local.php','http://simplesite.com','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),(196095,0.000000,1646708894.533840,_binary '\0\0\0\0\0\0\0\0\0\0k\\"/',0,302,0,0,0,'http://www.kclgenetics.com/favicon.ico','','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/85.0.4183.92 Mobile/15E148 Safari/604.1','',NULL,NULL),(196096,0.000000,1646719466.567796,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196097,0.000000,1646719470.943651,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196098,0.000000,1646719472.205592,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/comments/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196101,0.000000,1646732428.040032,_binary '\0\0\0\0\0\0\0\0\0\0g=\'',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(196100,0.000000,1646732422.715012,_binary '\0\0\0\0\0\0\0\0\0\0g=\'',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(196099,0.000000,1646719472.876413,_binary '\0\0\0\0\0\0\0\0\0\0BH]',0,200,1,0,0,'http://kclgenetics.com/comments/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196211,0.000000,1646897519.058137,_binary '\0\0\0\0\0\0\0\0\0\0\.\rj',0,301,0,0,0,'http://www.kclgenetics.com/index.php/pure-country-0109','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196210,0.000000,1646897507.467341,_binary '\0\0\0\0\0\0\0\0\0\0(Ma',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196208,0.000000,1646890058.446531,_binary '\0\0\0\0\0\0\0\0\0\0vb',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196209,0.000000,1646897502.783694,_binary '\0\0\0\0\0\0\0\0\0\0(Ma',0,301,0,0,0,'http://www.kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196207,0.000000,1646890055.446555,_binary '\0\0\0\0\0\0\0\0\0\0vb',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196205,0.000000,1646889035.451551,_binary '\0\0\0\0\0\0\0\0\0\0\d\',0,301,0,0,0,'https://www.kclgenetics.com/','','Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)','',NULL,NULL),(196206,0.000000,1646889040.081900,_binary '\0\0\0\0\0\0\0\0\0\0\d\',0,301,0,0,0,'https://www.kclgenetics.com/','','Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)','',NULL,NULL),(196204,0.000000,1646875580.863693,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=2dd292ef30aa27fa13707f24167c1018&signature=ac22f5d7ac612f07b9a95e5f99eda75cc15b3552775488d7e2d636327a24c37a&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195892,0.000000,1646360147.377756,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=7ec7cf2dad37756a49fdec3066897543&signature=ba38d978232a6661e6290c367110c18a38b16ff6c4077e956d957a2dc3411443&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196212,0.000000,1646897519.754069,_binary '\0\0\0\0\0\0\0\0\0\0\.\rj',0,301,0,0,0,'http://www.kclgenetics.com/index.php/pure-country-0109','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196213,0.000000,1646899260.426476,_binary '\0\0\0\0\0\0\0\0\0\0c<',0,301,0,0,0,'https://mail.kclgenetics.com/','','Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)','',NULL,NULL),(196214,0.000000,1646899265.072483,_binary '\0\0\0\0\0\0\0\0\0\0c<',0,301,0,0,0,'https://mail.kclgenetics.com/','','Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)','',NULL,NULL),(196215,0.000000,1646907200.018527,_binary '\0\0\0\0\0\0\0\0\0\0Mo\\',0,404,0,0,0,'http://kclgenetics.com/js/ckfinder/core/connector/php/connector.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.3945.117 Safari/537.36','',NULL,NULL),(196216,0.000000,1646907200.018888,_binary '\0\0\0\0\0\0\0\0\0\0Mo\',0,404,0,0,0,'http://kclgenetics.com/ckfinder/core/connector/php/connector.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.3945.117 Safari/537.36','',NULL,NULL),(196217,0.000000,1646910219.871407,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(195819,0.000000,1646247938.449681,_binary '\0\0\0\0\0\0\0\0\0\0\0VT',0,200,0,0,0,'https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646247928&nonce=RApWG8MEf2&body-hash&signature=sGp0%2B%2Br2LZxOINcmAa1O0LTQToY%3D','https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646247928&nonce=RApWG8MEf2&body-hash&signature=sGp0%2B%2Br2LZxOINcmAa1O0LTQToY%3D','Jetpack by WordPress.com','',NULL,NULL),(196091,0.000000,1646708463.837654,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.1','http://kclgenetics.com/contact-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195812,0.000000,1646236372.857311,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,200,1,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195813,0.000000,1646236381.267567,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195814,0.000000,1646236382.441348,_binary '\0\0\0\0\0\0\0\0\0\0BH_',0,404,1,0,0,'http://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195815,0.000000,1646244567.789286,_binary '\0\0\0\0\0\0\0\0\0\0,ƞ\n',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195816,0.000000,1646244571.963588,_binary '\0\0\0\0\0\0\0\0\0\0,ƞ\n',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195817,0.000000,1646244574.524394,_binary '\0\0\0\0\0\0\0\0\0\0,ƞ\n',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.1','http://kclgenetics.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195818,0.000000,1646247934.106269,_binary '\0\0\0\0\0\0\0\0\0\0\0VT',0,200,0,0,0,'https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646247928&nonce=RApWG8MEf2&body-hash&signature=sGp0%2B%2Br2LZxOINcmAa1O0LTQToY%3D','https://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646247928&nonce=RApWG8MEf2&body-hash&signature=sGp0%2B%2Br2LZxOINcmAa1O0LTQToY%3D','Jetpack by WordPress.com','',NULL,NULL),(196082,0.000000,1646707737.028842,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196083,0.000000,1646707737.711953,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196084,0.000000,1646707738.456045,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196090,0.000000,1646708460.395741,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/contact-us/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196089,0.000000,1646708387.434090,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196088,0.000000,1646708384.895651,_binary '\0\0\0\0\0\0\0\0\0\0=',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196087,0.000000,1646707742.141072,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=esf-insta-customizer-style&ver=5.9.1','http://kclgenetics.com/about-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196086,0.000000,1646707739.958646,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/about-us/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(196085,0.000000,1646707739.118271,_binary '\0\0\0\0\0\0\0\0\0\0,\\',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','',NULL,NULL),(195811,0.000000,1646236372.857311,_binary '\0\0\0\0\0\0\0\0\0\0BHT',0,200,1,0,0,'https://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(195893,0.000000,1646360195.437154,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=a30d1e0b273b585f6b9f3e3ada318ece&signature=c11eecbd4865d9be96ed248d6ca178d68cd74595cd2d6043e99a0130b8d8220a&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(195894,0.000000,1646360244.517775,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=8216d2674da01e72e457f263dd133a2a&signature=f050c2c158ae4f57ec2f455cd6c8e8bb5ac7af5d738d273d5ad43780474c7cba&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196131,0.000000,1646787172.623029,_binary '\0\0\0\0\0\0\0\0\0\0#W',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196132,0.000000,1646787228.221007,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196133,0.000000,1646787728.880575,_binary '\0\0\0\0\0\0\0\0\0\0\"\l',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196134,0.000000,1646787950.170588,_binary '\0\0\0\0\0\0\0\0\0\0#W',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196135,0.000000,1646788015.758345,_binary '\0\0\0\0\0\0\0\0\0\06\Q',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196136,0.000000,1646788016.497009,_binary '\0\0\0\0\0\0\0\0\0\06\Q',0,302,0,0,0,'https://kclgenetics.com/favicon.ico','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196137,0.000000,1646788019.870610,_binary '\0\0\0\0\0\0\0\0\0\06\Q',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','',NULL,NULL),(196138,0.000000,1646793422.078045,_binary '\0\0\0\0\0\0\0\0\0\03O,',0,301,0,0,0,'https://www.kclgenetics.com/','','Mozilla/5.0 zgrab/0.x','',NULL,NULL),(196139,0.000000,1646793422.078340,_binary '\0\0\0\0\0\0\0\0\0\03O,',0,200,0,0,0,'https://kclgenetics.com/','','Mozilla/5.0 zgrab/0.x','',NULL,NULL),(196140,0.000000,1646793425.997699,_binary '\0\0\0\0\0\0\0\0\0\03O,',0,301,0,0,0,'https://www.kclgenetics.com/','','Mozilla/5.0 zgrab/0.x','',NULL,NULL),(196141,0.000000,1646793511.793096,_binary '\0\0\0\0\0\0\0\0\0\0#\4+',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196142,0.000000,1646793512.472115,_binary '\0\0\0\0\0\0\0\0\0\0#\4+',0,301,0,0,0,'http://www.kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','',NULL,NULL),(196143,0.000000,1646793591.635239,_binary '\0\0\0\0\0\0\0\0\0\01H',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196144,0.000000,1646793592.294978,_binary '\0\0\0\0\0\0\0\0\0\01H',0,301,0,0,0,'http://www.kclgenetics.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(196145,0.000000,1646808396.650155,_binary '\0\0\0\0\0\0\0\0\0\0\N6',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','',NULL,NULL),(196146,0.000000,1646808402.849799,_binary '\0\0\0\0\0\0\0\0\0\0\N6',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','',NULL,NULL),(196147,0.000000,1646808404.236241,_binary '\0\0\0\0\0\0\0\0\0\0\N6',0,200,0,0,0,'http://kclgenetics.com/contact-us/','http://kclgenetics.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','',NULL,NULL),(196148,1646815473.410007,1646815473.349100,_binary '\0\0\0\0\0\0\0\0\0\0\r',0,403,0,0,0,'http://kclgenetics.com/blog/wp-admin/includes/','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Jsb2cvd3AtYWRtaW4vaW5jbHVkZXMv\",\"category\":\"brute-force\",\"ssl\":0}'),(196170,0.000000,1646835809.793144,_binary '\0\0\0\0\0\0\0\0\0\0BHR',0,404,1,0,0,'https://kclgenetics.com/ads.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(196171,0.000000,1646835906.777392,_binary '\0\0\0\0\0\0\0\0\0\0c',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','',NULL,NULL),(196172,0.000000,1646837708.416510,_binary '\0\0\0\0\0\0\0\0\0\0*\\nE',0,200,0,0,0,'http://kclgenetics.com/','http://kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider','',NULL,NULL),(196173,0.000000,1646837795.901476,_binary '\0\0\0\0\0\0\0\0\0\0\.',0,301,0,0,0,'http://www.kclgenetics.com/','http://www.kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider','',NULL,NULL),(196174,0.000000,1646837796.609747,_binary '\0\0\0\0\0\0\0\0\0\0\.',0,301,0,0,0,'http://www.kclgenetics.com/','http://www.kclgenetics.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider','',NULL,NULL),(196175,0.000000,1646840414.475504,_binary '\0\0\0\0\0\0\0\0\0\0_l\M',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196149,1646815468.947967,1646815468.879000,_binary '\0\0\0\0\0\0\0\0\0\0\r',0,403,0,0,0,'http://kclgenetics.com/site/wp-admin/includes/','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpdGUvd3AtYWRtaW4vaW5jbHVkZXMv\",\"category\":\"brute-force\",\"ssl\":0}'),(196198,0.000000,1646875309.603702,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&scanMode=standard&cronKey=0cee9f6d7318bef2cd9d392749fe2ef6&signature=2099d1c088a4947b3c73c6202cdd4783f6af6dd80986be0778b240a56ea22ba1&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196199,0.000000,1646875360.163852,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=a53b8861a4fc11722cdeabecb6f2cc42&signature=c43cb2abf5990884d146762737cf111324cf744c929ed5c5b0930112e41fa195&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196200,0.000000,1646875407.445966,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=9002d9b97486295741fd6b32595570c4&signature=1e6972ac2a42a581ea77ed34f001e5e0136e353511c95e824f178f28ac68459f&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196201,0.000000,1646875457.003203,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=f65cebfdaca8b83c98bb95ea4137c62c&signature=a6f4d887f05a2e6dc0143cac7b9f3d7cb00b90a431c2f8c5a8ddf59e189e849e&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196202,0.000000,1646875505.474702,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=cfee29128873972f2b220efa18c5dd49&signature=08bd39cd885d0b28f1ab99b8eacb13833ef0a0e0dd895e7d5505b6d733efcee0&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196203,0.000000,1646875555.253906,_binary '\0\0\0\0\0\0\0\0\0\06D \',0,404,0,0,0,'http://kclgenetics.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=80b46224fced5fb5b669804a6f2d1748&signature=31f298b2ebe4754ecf1fbc93df5c8523d0aa58ea455f8c64ebc815fbde9d5816&remote=1','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36','',NULL,NULL),(196156,0.000000,1646817732.175084,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://kclgenetics.com/index.php/h-wcc-wb-668-wyarno-9500','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196157,0.000000,1646817733.861095,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://kclgenetics.com/index.php/h-wcc-wb-668-wyarno-9500','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196158,0.000000,1646823989.839616,_binary '\0\0\0\0\0\0\0\0\0\0\O\',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','',NULL,NULL),(196176,0.000000,1646840419.913372,_binary '\0\0\0\0\0\0\0\0\0\0_l\M',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196177,0.000000,1646840423.186191,_binary '\0\0\0\0\0\0\0\0\0\0-\A',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196178,0.000000,1646840430.318072,_binary '\0\0\0\0\0\0\0\0\0\0W\v',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196179,0.000000,1646840433.973808,_binary '\0\0\0\0\0\0\0\0\0\0_l\K',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(196180,0.000000,1646843068.790952,_binary '\0\0\0\0\0\0\0\0\0\07\'w',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-805h-743-primrose-401w-et-dlf-hyf-ief-p42980179','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196181,0.000000,1646843073.151196,_binary '\0\0\0\0\0\0\0\0\0\07\'w',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-805h-743-primrose-401w-et-dlf-hyf-ief-p42980179','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196182,0.000000,1646843857.614104,_binary '\0\0\0\0\0\0\0\0\0\07\'w',0,301,0,0,0,'http://kclgenetics.com/index.php/kcl-wpf-the-professor-7110et','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196183,0.000000,1646843859.399923,_binary '\0\0\0\0\0\0\0\0\0\07\'w',0,301,0,0,0,'http://kclgenetics.com/index.php/kcl-wpf-the-professor-7110et','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(196184,0.000000,1646844022.551874,_binary '\0\0\0\0\0\0\0\0\0\0ys',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(196185,0.000000,1646844023.235078,_binary '\0\0\0\0\0\0\0\0\0\0ys',0,200,0,0,0,'http://kclgenetics.com/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(196186,0.000000,1646844024.156409,_binary '\0\0\0\0\0\0\0\0\0\0yp',0,200,0,0,0,'http://kclgenetics.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(196187,0.000000,1646844290.926656,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://www.kclgenetics.com/index.php/th-22r-16s-lambeau-17y','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(195943,0.000000,1646488375.217993,_binary '\0\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646488365&nonce=ht6C6yeVAs&body-hash&signature=j16JRum3io1co3DhQJV1baHEOF0%3D','http://kclgenetics.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fstatus&_for=jetpack&token=EFlOo9qupVengIyCe8jC4hHW83Bb%2554R%3A1%3A0&timestamp=1646488365&nonce=ht6C6yeVAs&body-hash&signature=j16JRum3io1co3DhQJV1baHEOF0%3D','Jetpack by WordPress.com','',NULL,NULL),(195944,0.000000,1646490307.986480,_binary '\0\0\0\0\0\0\0\0\0\0,\u',0,404,0,0,0,'http://kclgenetics.com/ads.txt','','AdsTxtCrawler/1.0.2','',NULL,NULL);
/*!40000 ALTER TABLE `wpjj_wfHits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wfHoover`
--

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

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

--
-- Table structure for table `wpjj_wfIssues`
--

DROP TABLE IF EXISTS `wpjj_wfIssues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_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=11604 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wfIssues`
--

LOCK TABLES `wpjj_wfIssues` WRITE;
/*!40000 ALTER TABLE `wpjj_wfIssues` DISABLE KEYS */;
INSERT INTO `wpjj_wfIssues` (`id`, `time`, `lastUpdated`, `status`, `type`, `severity`, `ignoreP`, `ignoreC`, `shortMsg`, `longMsg`, `data`) VALUES (11595,1648161535,1648161535,'new','skippedPaths',25,'6fd0d290b978eab8027e6b79501ac149','6fd0d290b978eab8027e6b79501ac149','1 path was skipped for the malware scan due to scan settings','The option \"Scan files outside your WordPress installation\" is off by default, which means 1 path and its file(s) will not be scanned for malware or unauthorized changes. To continue skipping this path, you may ignore this issue. Or to start scanning it, enable the option and subsequent scans will include it. Some paths may not be necessary to scan, so this is optional. <a href=\"https://www.wordfence.com/help/?query=scan-result-skipped-paths\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More<span class=\"screen-reader-text\"> (opens in new tab)</span></a><br><br>The path skipped is ~/logs','a:0:{}'),(11603,1648203377,1648203377,'new','wfPluginUpgrade',50,'54f6d0b9881eeebb933bbe5540abf694','54f6d0b9881eeebb933bbe5540abf694','The Plugin \"Slider Images\" needs an upgrade (1.4.9 -> 1.5.0).','You need to upgrade \"Slider Images\" to the newest version to ensure you have any security fixes the developer has released.','a:21:{s:22:\"Elementor tested up to\";s:0:\"\";s:26:\"Elementor Pro tested up to\";s:0:\"\";s:4:\"Name\";s:13:\"Slider Images\";s:9:\"PluginURI\";s:37:\"https://rich-web.org/wp-image-slider/\";s:7:\"Version\";s:5:\"1.4.9\";s:11:\"Description\";s:156:\"Slider image plugin is fully responsive. Your photos with our slider effects will be perfectly. <cite>By <a href=\"https://rich-web.org\">richteam</a>.</cite>\";s:6:\"Author\";s:43:\"<a href=\"https://rich-web.org\">richteam</a>\";s:9:\"AuthorURI\";s:20:\"https://rich-web.org\";s:10:\"TextDomain\";s:13:\"slider-images\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:65:\"<a href=\"https://rich-web.org/wp-image-slider/\">Slider Images</a>\";s:10:\"AuthorName\";s:8:\"richteam\";s:10:\"pluginFile\";s:86:\"/home/homeston/public_html/kclgenetics.com/wp-content/plugins/slider-images/Slider.php\";s:10:\"newVersion\";s:5:\"1.5.0\";s:4:\"slug\";s:13:\"slider-images\";s:5:\"wpURL\";s:43:\"https://wordpress.org/plugins/slider-images\";s:10:\"vulnerable\";b:0;}'),(11597,1648161860,1648161860,'new','wfPluginAbandoned',50,'adc33715aa90cf329dcdfc41ba564df0','adc33715aa90cf329dcdfc41ba564df0','The Plugin \"Easy Twitter Feed Widget Plugin\" appears to be abandoned (updated December 20, 2017, tested to WP 4.9.20).','It was last updated 4 years 3 months ago and tested up to WordPress 4.9.20. Plugins can be removed from wordpress.org for various reasons. This can include benign issues like a plugin author discontinuing development or moving the plugin distribution to their own site, but some might also be due to security issues. In any case, future updates may or may not be available, so it is worth investigating the cause and deciding whether to temporarily or permanently replace or remove the plugin. <a href=\"https://www.wordfence.com/help/?query=scan-result-plugin-abandoned\" target=\"_blank\" rel=\"noopener noreferrer\">Get more information.<span class=\"screen-reader-text\"> (opens in new tab)</span></a>','a:18:{s:4:\"name\";s:31:\"Easy Twitter Feed Widget Plugin\";s:4:\"slug\";s:24:\"easy-twitter-feed-widget\";s:7:\"version\";s:3:\"0.9\";s:6:\"author\";s:57:\"<a href=\"https://designorbital.com\">DesignOrbital.com</a>\";s:14:\"author_profile\";s:45:\"https://profiles.wordpress.org/designorbital/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:6:\"4.9.20\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";a:0:{}s:11:\"num_ratings\";i:56;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:12:\"last_updated\";s:21:\"2017-12-20 6:46pm GMT\";s:8:\"homepage\";s:51:\"https://designorbital.com/easy-twitter-feed-widget/\";s:11:\"dateUpdated\";s:17:\"December 20, 2017\";s:9:\"abandoned\";b:1;s:10:\"vulnerable\";b:0;s:5:\"wpURL\";s:54:\"https://wordpress.org/plugins/easy-twitter-feed-widget\";}'),(11598,1648161860,1648161860,'new','wfPluginAbandoned',50,'d7cd0917ba02ba0fda6464535fe9f94e','d7cd0917ba02ba0fda6464535fe9f94e','The Plugin \"Easy Weather Widget\" appears to be abandoned (updated December 30, 2017, tested to WP 4.9.20).','It was last updated 4 years 2 months ago and tested up to WordPress 4.9.20. Plugins can be removed from wordpress.org for various reasons. This can include benign issues like a plugin author discontinuing development or moving the plugin distribution to their own site, but some might also be due to security issues. In any case, future updates may or may not be available, so it is worth investigating the cause and deciding whether to temporarily or permanently replace or remove the plugin. <a href=\"https://www.wordfence.com/help/?query=scan-result-plugin-abandoned\" target=\"_blank\" rel=\"noopener noreferrer\">Get more information.<span class=\"screen-reader-text\"> (opens in new tab)</span></a>','a:18:{s:4:\"name\";s:19:\"Easy Weather Widget\";s:4:\"slug\";s:19:\"easy-weather-widget\";s:7:\"version\";s:5:\"3.2.5\";s:6:\"author\";s:62:\"<a href=\"https://www.statenweb.com\">Mat Gargano, StatenWeb</a>\";s:14:\"author_profile\";s:40:\"https://profiles.wordpress.org/matstars/\";s:8:\"requires\";s:3:\"2.8\";s:6:\"tested\";s:6:\"4.9.20\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";a:0:{}s:11:\"num_ratings\";i:6;s:15:\"support_threads\";i:2;s:24:\"support_threads_resolved\";i:1;s:12:\"last_updated\";s:21:\"2017-12-30 2:11am GMT\";s:8:\"homepage\";s:0:\"\";s:11:\"dateUpdated\";s:17:\"December 30, 2017\";s:9:\"abandoned\";b:1;s:10:\"vulnerable\";b:0;s:5:\"wpURL\";s:49:\"https://wordpress.org/plugins/easy-weather-widget\";}'),(11599,1648161860,1648161860,'new','wfPluginAbandoned',50,'d86ff6b5faaa1300555ba4448a5dd4d0','d86ff6b5faaa1300555ba4448a5dd4d0','The Plugin \"Issuu Panel\" appears to be abandoned (updated March 26, 2017, tested to WP 4.7.23).','It was last updated 4 years 11 months ago and tested up to WordPress 4.7.23. Plugins can be removed from wordpress.org for various reasons. This can include benign issues like a plugin author discontinuing development or moving the plugin distribution to their own site, but some might also be due to security issues. In any case, future updates may or may not be available, so it is worth investigating the cause and deciding whether to temporarily or permanently replace or remove the plugin. <a href=\"https://www.wordfence.com/help/?query=scan-result-plugin-abandoned\" target=\"_blank\" rel=\"noopener noreferrer\">Get more information.<span class=\"screen-reader-text\"> (opens in new tab)</span></a>','a:18:{s:4:\"name\";s:11:\"Issuu Panel\";s:4:\"slug\";s:11:\"issuu-panel\";s:7:\"version\";s:5:\"1.6.8\";s:6:\"author\";s:78:\"<a href=\"https://www.linkedin.com/profile/view?id=265534858\">Pedro Marcelo</a>\";s:14:\"author_profile\";s:42:\"https://profiles.wordpress.org/pedromjava/\";s:8:\"requires\";s:3:\"3.5\";s:6:\"tested\";s:6:\"4.7.23\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";a:0:{}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:12:\"last_updated\";s:21:\"2017-03-26 2:46am GMT\";s:8:\"homepage\";s:59:\"https://github.com/Issuu-Panel-WordPress-Plugin/issuu-panel\";s:11:\"dateUpdated\";s:14:\"March 26, 2017\";s:9:\"abandoned\";b:1;s:10:\"vulnerable\";b:0;s:5:\"wpURL\";s:41:\"https://wordpress.org/plugins/issuu-panel\";}'),(11600,1648161860,1648161860,'new','wfPluginAbandoned',50,'1f648f7f50d9640767ff82c10f2f960f','1f648f7f50d9640767ff82c10f2f960f','The Plugin \"Widget Logic\" appears to be abandoned (updated July 3, 2019, tested to WP 5.2.15).','It was last updated 2 years 8 months ago and tested up to WordPress 5.2.15. Plugins can be removed from wordpress.org for various reasons. This can include benign issues like a plugin author discontinuing development or moving the plugin distribution to their own site, but some might also be due to security issues. In any case, future updates may or may not be available, so it is worth investigating the cause and deciding whether to temporarily or permanently replace or remove the plugin. <a href=\"https://www.wordfence.com/help/?query=scan-result-plugin-abandoned\" target=\"_blank\" rel=\"noopener noreferrer\">Get more information.<span class=\"screen-reader-text\"> (opens in new tab)</span></a>','a:18:{s:4:\"name\";s:12:\"Widget Logic\";s:4:\"slug\";s:12:\"widget-logic\";s:7:\"version\";s:6:\"5.10.4\";s:6:\"author\";s:39:\"<a href=\"https://wpchef.org\">WPChef</a>\";s:14:\"author_profile\";s:44:\"https://profiles.wordpress.org/wpchefgadget/\";s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:6:\"5.2.15\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";a:0:{}s:11:\"num_ratings\";i:182;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:12:\"last_updated\";s:21:\"2019-07-03 2:53pm GMT\";s:8:\"homepage\";s:0:\"\";s:11:\"dateUpdated\";s:12:\"July 3, 2019\";s:9:\"abandoned\";b:1;s:10:\"vulnerable\";b:0;s:5:\"wpURL\";s:42:\"https://wordpress.org/plugins/widget-logic\";}'),(11601,1648161860,1648161860,'new','wfPluginRemoved',100,'2435f8a2eed7ceadf48214feaa040e9f','2435f8a2eed7ceadf48214feaa040e9f','The Plugin \"Bizworx Tools\" has been removed from wordpress.org.','Plugins can be removed from wordpress.org for various reasons. This can include benign issues like a plugin author discontinuing development or moving the plugin distribution to their own site, but some might also be due to security issues. In any case, future updates may or may not be available, so it is worth investigating the cause and deciding whether to temporarily or permanently replace or remove the plugin. <a href=\"https://www.wordfence.com/help/?query=scan-result-plugin-removed\" target=\"_blank\" rel=\"noopener noreferrer\">Get more information.<span class=\"screen-reader-text\"> (opens in new tab)</span></a>','a:18:{s:22:\"Elementor tested up to\";s:0:\"\";s:26:\"Elementor Pro tested up to\";s:0:\"\";s:4:\"Name\";s:13:\"Bizworx Tools\";s:9:\"PluginURI\";s:42:\"http://themeworx.net/plugins/bizworx-tools\";s:7:\"Version\";s:3:\"1.1\";s:11:\"Description\";s:95:\"Adds custom widgets for the theme <cite>By <a href=\"http://themeworx.net\">Themeworx</a>.</cite>\";s:6:\"Author\";s:44:\"<a href=\"http://themeworx.net\">Themeworx</a>\";s:9:\"AuthorURI\";s:20:\"http://themeworx.net\";s:10:\"TextDomain\";s:13:\"bizworx-tools\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:70:\"<a href=\"http://themeworx.net/plugins/bizworx-tools\">Bizworx Tools</a>\";s:10:\"AuthorName\";s:9:\"Themeworx\";s:9:\"wpRemoved\";b:1;s:10:\"vulnerable\";b:0;}'),(11602,1648161860,1648161860,'new','wfPluginRemoved',100,'cf9551be88fe333c29c08e06bbc7b18c','cf9551be88fe333c29c08e06bbc7b18c','The Plugin \"Our Team Showcase\" has been removed from wordpress.org.','Plugins can be removed from wordpress.org for various reasons. This can include benign issues like a plugin author discontinuing development or moving the plugin distribution to their own site, but some might also be due to security issues. In any case, future updates may or may not be available, so it is worth investigating the cause and deciding whether to temporarily or permanently replace or remove the plugin. <a href=\"https://www.wordfence.com/help/?query=scan-result-plugin-removed\" target=\"_blank\" rel=\"noopener noreferrer\">Get more information.<span class=\"screen-reader-text\"> (opens in new tab)</span></a>','a:18:{s:22:\"Elementor tested up to\";s:0:\"\";s:26:\"Elementor Pro tested up to\";s:0:\"\";s:4:\"Name\";s:17:\"Our Team Showcase\";s:9:\"PluginURI\";s:55:\"https://smartcatdesign.net/downloads/our-team-showcase/\";s:7:\"Version\";s:5:\"4.4.2\";s:11:\"Description\";s:177:\"Display your team members in a very attractive way as a widget or page with a shortcode [our-team] or a widget <cite>By <a href=\"https://smartcatdesign.net\">Smartcat</a>.</cite>\";s:6:\"Author\";s:49:\"<a href=\"https://smartcatdesign.net\">Smartcat</a>\";s:9:\"AuthorURI\";s:26:\"https://smartcatdesign.net\";s:10:\"TextDomain\";s:17:\"our-team-enhanced\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:87:\"<a href=\"https://smartcatdesign.net/downloads/our-team-showcase/\">Our Team Showcase</a>\";s:10:\"AuthorName\";s:8:\"Smartcat\";s:9:\"wpRemoved\";b:1;s:10:\"vulnerable\";b:0;}');
/*!40000 ALTER TABLE `wpjj_wfIssues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wfKnownFileList`
--

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

--
-- Dumping data for table `wpjj_wfKnownFileList`
--

LOCK TABLES `wpjj_wfKnownFileList` WRITE;
/*!40000 ALTER TABLE `wpjj_wfKnownFileList` DISABLE KEYS */;
INSERT INTO `wpjj_wfKnownFileList` (`id`, `path`) 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/authorize-application.php'),(15,'wp-admin/comment.php'),(16,'wp-admin/credits.php'),(17,'wp-admin/css/about-rtl.css'),(18,'wp-admin/css/about-rtl.min.css'),(19,'wp-admin/css/about.css'),(20,'wp-admin/css/about.min.css'),(21,'wp-admin/css/admin-menu-rtl.css'),(22,'wp-admin/css/admin-menu-rtl.min.css'),(23,'wp-admin/css/admin-menu.css'),(24,'wp-admin/css/admin-menu.min.css'),(25,'wp-admin/css/code-editor-rtl.css'),(26,'wp-admin/css/code-editor-rtl.min.css'),(27,'wp-admin/css/code-editor.css'),(28,'wp-admin/css/code-editor.min.css'),(29,'wp-admin/css/color-picker-rtl.css'),(30,'wp-admin/css/color-picker-rtl.min.css'),(31,'wp-admin/css/color-picker.css'),(32,'wp-admin/css/color-picker.min.css'),(33,'wp-admin/css/colors/_admin.scss'),(34,'wp-admin/css/colors/_mixins.scss'),(35,'wp-admin/css/colors/_variables.scss'),(36,'wp-admin/css/colors/blue/colors-rtl.css'),(37,'wp-admin/css/colors/blue/colors-rtl.min.css'),(38,'wp-admin/css/colors/blue/colors.css'),(39,'wp-admin/css/colors/blue/colors.min.css'),(40,'wp-admin/css/colors/blue/colors.scss'),(41,'wp-admin/css/colors/coffee/colors-rtl.css'),(42,'wp-admin/css/colors/coffee/colors-rtl.min.css'),(43,'wp-admin/css/colors/coffee/colors.css'),(44,'wp-admin/css/colors/coffee/colors.min.css'),(45,'wp-admin/css/colors/coffee/colors.scss'),(46,'wp-admin/css/colors/ectoplasm/colors-rtl.css'),(47,'wp-admin/css/colors/ectoplasm/colors-rtl.min.css'),(48,'wp-admin/css/colors/ectoplasm/colors.css'),(49,'wp-admin/css/colors/ectoplasm/colors.min.css'),(50,'wp-admin/css/colors/ectoplasm/colors.scss'),(51,'wp-admin/css/colors/light/colors-rtl.css'),(52,'wp-admin/css/colors/light/colors-rtl.min.css'),(53,'wp-admin/css/colors/light/colors.css'),(54,'wp-admin/css/colors/light/colors.min.css'),(55,'wp-admin/css/colors/light/colors.scss'),(56,'wp-admin/css/colors/midnight/colors-rtl.css'),(57,'wp-admin/css/colors/midnight/colors-rtl.min.css'),(58,'wp-admin/css/colors/midnight/colors.css'),(59,'wp-admin/css/colors/midnight/colors.min.css'),(60,'wp-admin/css/colors/midnight/colors.scss'),(61,'wp-admin/css/colors/modern/colors-rtl.css'),(62,'wp-admin/css/colors/modern/colors-rtl.min.css'),(63,'wp-admin/css/colors/modern/colors.css'),(64,'wp-admin/css/colors/modern/colors.min.css'),(65,'wp-admin/css/colors/modern/colors.scss'),(66,'wp-admin/css/colors/ocean/colors-rtl.css'),(67,'wp-admin/css/colors/ocean/colors-rtl.min.css'),(68,'wp-admin/css/colors/ocean/colors.css'),(69,'wp-admin/css/colors/ocean/colors.min.css'),(70,'wp-admin/css/colors/ocean/colors.scss'),(71,'wp-admin/css/colors/sunrise/colors-rtl.css'),(72,'wp-admin/css/colors/sunrise/colors-rtl.min.css'),(73,'wp-admin/css/colors/sunrise/colors.css'),(74,'wp-admin/css/colors/sunrise/colors.min.css'),(75,'wp-admin/css/colors/sunrise/colors.scss'),(76,'wp-admin/css/common-rtl.css'),(77,'wp-admin/css/common-rtl.min.css'),(78,'wp-admin/css/common.css'),(79,'wp-admin/css/common.min.css'),(80,'wp-admin/css/customize-controls-rtl.css'),(81,'wp-admin/css/customize-controls-rtl.min.css'),(82,'wp-admin/css/customize-controls.css'),(83,'wp-admin/css/customize-controls.min.css'),(84,'wp-admin/css/customize-nav-menus-rtl.css'),(85,'wp-admin/css/customize-nav-menus-rtl.min.css'),(86,'wp-admin/css/customize-nav-menus.css'),(87,'wp-admin/css/customize-nav-menus.min.css'),(88,'wp-admin/css/customize-widgets-rtl.css'),(89,'wp-admin/css/customize-widgets-rtl.min.css'),(90,'wp-admin/css/customize-widgets.css'),(91,'wp-admin/css/customize-widgets.min.css'),(92,'wp-admin/css/dashboard-rtl.css'),(93,'wp-admin/css/dashboard-rtl.min.css'),(94,'wp-admin/css/dashboard.css'),(95,'wp-admin/css/dashboard.min.css'),(96,'wp-admin/css/deprecated-media-rtl.css'),(97,'wp-admin/css/deprecated-media-rtl.min.css'),(98,'wp-admin/css/deprecated-media.css'),(99,'wp-admin/css/deprecated-media.min.css'),(100,'wp-admin/css/edit-rtl.css'),(101,'wp-admin/css/edit-rtl.min.css'),(102,'wp-admin/css/edit.css'),(103,'wp-admin/css/edit.min.css'),(104,'wp-admin/css/farbtastic-rtl.css'),(105,'wp-admin/css/farbtastic-rtl.min.css'),(106,'wp-admin/css/farbtastic.css'),(107,'wp-admin/css/farbtastic.min.css'),(108,'wp-admin/css/forms-rtl.css'),(109,'wp-admin/css/forms-rtl.min.css'),(110,'wp-admin/css/forms.css'),(111,'wp-admin/css/forms.min.css'),(112,'wp-admin/css/install-rtl.css'),(113,'wp-admin/css/install-rtl.min.css'),(114,'wp-admin/css/install.css'),(115,'wp-admin/css/install.min.css'),(116,'wp-admin/css/l10n-rtl.css'),(117,'wp-admin/css/l10n-rtl.min.css'),(118,'wp-admin/css/l10n.css'),(119,'wp-admin/css/l10n.min.css'),(120,'wp-admin/css/list-tables-rtl.css'),(121,'wp-admin/css/list-tables-rtl.min.css'),(122,'wp-admin/css/list-tables.css'),(123,'wp-admin/css/list-tables.min.css'),(124,'wp-admin/css/login-rtl.css'),(125,'wp-admin/css/login-rtl.min.css'),(126,'wp-admin/css/login.css'),(127,'wp-admin/css/login.min.css'),(128,'wp-admin/css/media-rtl.css'),(129,'wp-admin/css/media-rtl.min.css'),(130,'wp-admin/css/media.css'),(131,'wp-admin/css/media.min.css'),(132,'wp-admin/css/nav-menus-rtl.css'),(133,'wp-admin/css/nav-menus-rtl.min.css'),(134,'wp-admin/css/nav-menus.css'),(135,'wp-admin/css/nav-menus.min.css'),(136,'wp-admin/css/revisions-rtl.css'),(137,'wp-admin/css/revisions-rtl.min.css'),(138,'wp-admin/css/revisions.css'),(139,'wp-admin/css/revisions.min.css'),(140,'wp-admin/css/site-health-rtl.css'),(141,'wp-admin/css/site-health-rtl.min.css'),(142,'wp-admin/css/site-health.css'),(143,'wp-admin/css/site-health.min.css'),(144,'wp-admin/css/site-icon-rtl.css'),(145,'wp-admin/css/site-icon-rtl.min.css'),(146,'wp-admin/css/site-icon.css'),(147,'wp-admin/css/site-icon.min.css'),(148,'wp-admin/css/themes-rtl.css'),(149,'wp-admin/css/themes-rtl.min.css'),(150,'wp-admin/css/themes.css'),(151,'wp-admin/css/themes.min.css'),(152,'wp-admin/css/widgets-rtl.css'),(153,'wp-admin/css/widgets-rtl.min.css'),(154,'wp-admin/css/widgets.css'),(155,'wp-admin/css/widgets.min.css'),(156,'wp-admin/css/wp-admin-rtl.css'),(157,'wp-admin/css/wp-admin-rtl.min.css'),(158,'wp-admin/css/wp-admin.css'),(159,'wp-admin/css/wp-admin.min.css'),(160,'wp-admin/custom-background.php'),(161,'wp-admin/custom-header.php'),(162,'wp-admin/customize.php'),(163,'wp-admin/edit-comments.php'),(164,'wp-admin/edit-form-advanced.php'),(165,'wp-admin/edit-form-blocks.php'),(166,'wp-admin/edit-form-comment.php'),(167,'wp-admin/edit-link-form.php'),(168,'wp-admin/edit-tag-form.php'),(169,'wp-admin/edit-tags.php'),(170,'wp-admin/edit.php'),(171,'wp-admin/erase-personal-data.php'),(172,'wp-admin/export-personal-data.php'),(173,'wp-admin/export.php'),(174,'wp-admin/freedoms.php'),(175,'wp-admin/images/about-header-about.svg'),(176,'wp-admin/images/about-header-credits.svg'),(177,'wp-admin/images/about-header-freedoms.svg'),(178,'wp-admin/images/about-header-privacy.svg'),(179,'wp-admin/images/about-texture.png'),(180,'wp-admin/images/align-center-2x.png'),(181,'wp-admin/images/align-center.png'),(182,'wp-admin/images/align-left-2x.png'),(183,'wp-admin/images/align-left.png'),(184,'wp-admin/images/align-none-2x.png'),(185,'wp-admin/images/align-none.png'),(186,'wp-admin/images/align-right-2x.png'),(187,'wp-admin/images/align-right.png'),(188,'wp-admin/images/arrows-2x.png'),(189,'wp-admin/images/arrows.png'),(190,'wp-admin/images/browser-rtl.png'),(191,'wp-admin/images/browser.png'),(192,'wp-admin/images/bubble_bg-2x.gif'),(193,'wp-admin/images/bubble_bg.gif'),(194,'wp-admin/images/comment-grey-bubble-2x.png'),(195,'wp-admin/images/comment-grey-bubble.png'),(196,'wp-admin/images/date-button-2x.gif'),(197,'wp-admin/images/date-button.gif'),(198,'wp-admin/images/freedom-1.svg'),(199,'wp-admin/images/freedom-2.svg'),(200,'wp-admin/images/freedom-3.svg'),(201,'wp-admin/images/freedom-4.svg'),(202,'wp-admin/images/generic.png'),(203,'wp-admin/images/icons32-2x.png'),(204,'wp-admin/images/icons32-vs-2x.png'),(205,'wp-admin/images/icons32-vs.png'),(206,'wp-admin/images/icons32.png'),(207,'wp-admin/images/imgedit-icons-2x.png'),(208,'wp-admin/images/imgedit-icons.png'),(209,'wp-admin/images/list-2x.png'),(210,'wp-admin/images/list.png'),(211,'wp-admin/images/loading.gif'),(212,'wp-admin/images/marker.png'),(213,'wp-admin/images/mask.png'),(214,'wp-admin/images/media-button-2x.png'),(215,'wp-admin/images/media-button-image.gif'),(216,'wp-admin/images/media-button-music.gif'),(217,'wp-admin/images/media-button-other.gif'),(218,'wp-admin/images/media-button-video.gif'),(219,'wp-admin/images/media-button.png'),(220,'wp-admin/images/menu-2x.png'),(221,'wp-admin/images/menu-vs-2x.png'),(222,'wp-admin/images/menu-vs.png'),(223,'wp-admin/images/menu.png'),(224,'wp-admin/images/no.png'),(225,'wp-admin/images/post-formats-vs.png'),(226,'wp-admin/images/post-formats.png'),(227,'wp-admin/images/post-formats32-vs.png'),(228,'wp-admin/images/post-formats32.png'),(229,'wp-admin/images/privacy.svg'),(230,'wp-admin/images/resize-2x.gif'),(231,'wp-admin/images/resize-rtl-2x.gif'),(232,'wp-admin/images/resize-rtl.gif'),(233,'wp-admin/images/resize.gif'),(234,'wp-admin/images/se.png'),(235,'wp-admin/images/sort-2x.gif'),(236,'wp-admin/images/sort.gif'),(237,'wp-admin/images/spinner-2x.gif'),(238,'wp-admin/images/spinner.gif'),(239,'wp-admin/images/stars-2x.png'),(240,'wp-admin/images/stars.png'),(241,'wp-admin/images/w-logo-blue.png'),(242,'wp-admin/images/w-logo-white.png'),(243,'wp-admin/images/wheel.png'),(244,'wp-admin/images/wordpress-logo-white.svg'),(245,'wp-admin/images/wordpress-logo.png'),(246,'wp-admin/images/wordpress-logo.svg'),(247,'wp-admin/images/wpspin_light-2x.gif'),(248,'wp-admin/images/wpspin_light.gif'),(249,'wp-admin/images/xit-2x.gif'),(250,'wp-admin/images/xit.gif'),(251,'wp-admin/images/yes.png'),(252,'wp-admin/import.php'),(253,'wp-admin/includes/admin-filters.php'),(254,'wp-admin/includes/admin.php'),(255,'wp-admin/includes/ajax-actions.php'),(256,'wp-admin/includes/bookmark.php'),(257,'wp-admin/includes/class-automatic-upgrader-skin.php'),(258,'wp-admin/includes/class-bulk-plugin-upgrader-skin.php'),(259,'wp-admin/includes/class-bulk-theme-upgrader-skin.php'),(260,'wp-admin/includes/class-bulk-upgrader-skin.php'),(261,'wp-admin/includes/class-core-upgrader.php'),(262,'wp-admin/includes/class-custom-background.php'),(263,'wp-admin/includes/class-custom-image-header.php'),(264,'wp-admin/includes/class-file-upload-upgrader.php'),(265,'wp-admin/includes/class-ftp-pure.php'),(266,'wp-admin/includes/class-ftp-sockets.php'),(267,'wp-admin/includes/class-ftp.php'),(268,'wp-admin/includes/class-language-pack-upgrader-skin.php'),(269,'wp-admin/includes/class-language-pack-upgrader.php'),(270,'wp-admin/includes/class-pclzip.php'),(271,'wp-admin/includes/class-plugin-installer-skin.php'),(272,'wp-admin/includes/class-plugin-upgrader-skin.php'),(273,'wp-admin/includes/class-plugin-upgrader.php'),(274,'wp-admin/includes/class-theme-installer-skin.php'),(275,'wp-admin/includes/class-theme-upgrader-skin.php'),(276,'wp-admin/includes/class-theme-upgrader.php'),(277,'wp-admin/includes/class-walker-category-checklist.php'),(278,'wp-admin/includes/class-walker-nav-menu-checklist.php'),(279,'wp-admin/includes/class-walker-nav-menu-edit.php'),(280,'wp-admin/includes/class-wp-ajax-upgrader-skin.php'),(281,'wp-admin/includes/class-wp-application-passwords-list-table.php'),(282,'wp-admin/includes/class-wp-automatic-updater.php'),(283,'wp-admin/includes/class-wp-comments-list-table.php'),(284,'wp-admin/includes/class-wp-community-events.php'),(285,'wp-admin/includes/class-wp-debug-data.php'),(286,'wp-admin/includes/class-wp-filesystem-base.php'),(287,'wp-admin/includes/class-wp-filesystem-direct.php'),(288,'wp-admin/includes/class-wp-filesystem-ftpext.php'),(289,'wp-admin/includes/class-wp-filesystem-ftpsockets.php'),(290,'wp-admin/includes/class-wp-filesystem-ssh2.php'),(291,'wp-admin/includes/class-wp-importer.php'),(292,'wp-admin/includes/class-wp-internal-pointers.php'),(293,'wp-admin/includes/class-wp-links-list-table.php'),(294,'wp-admin/includes/class-wp-list-table-compat.php'),(295,'wp-admin/includes/class-wp-list-table.php'),(296,'wp-admin/includes/class-wp-media-list-table.php'),(297,'wp-admin/includes/class-wp-ms-sites-list-table.php'),(298,'wp-admin/includes/class-wp-ms-themes-list-table.php'),(299,'wp-admin/includes/class-wp-ms-users-list-table.php'),(300,'wp-admin/includes/class-wp-plugin-install-list-table.php'),(301,'wp-admin/includes/class-wp-plugins-list-table.php'),(302,'wp-admin/includes/class-wp-post-comments-list-table.php'),(303,'wp-admin/includes/class-wp-posts-list-table.php'),(304,'wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php'),(305,'wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php'),(306,'wp-admin/includes/class-wp-privacy-policy-content.php'),(307,'wp-admin/includes/class-wp-privacy-requests-table.php'),(308,'wp-admin/includes/class-wp-screen.php'),(309,'wp-admin/includes/class-wp-site-health-auto-updates.php'),(310,'wp-admin/includes/class-wp-site-health.php'),(311,'wp-admin/includes/class-wp-site-icon.php'),(312,'wp-admin/includes/class-wp-terms-list-table.php'),(313,'wp-admin/includes/class-wp-theme-install-list-table.php'),(314,'wp-admin/includes/class-wp-themes-list-table.php'),(315,'wp-admin/includes/class-wp-upgrader-skin.php'),(316,'wp-admin/includes/class-wp-upgrader-skins.php'),(317,'wp-admin/includes/class-wp-upgrader.php'),(318,'wp-admin/includes/class-wp-users-list-table.php'),(319,'wp-admin/includes/comment.php'),(320,'wp-admin/includes/continents-cities.php'),(321,'wp-admin/includes/credits.php'),(322,'wp-admin/includes/dashboard.php'),(323,'wp-admin/includes/deprecated.php'),(324,'wp-admin/includes/edit-tag-messages.php'),(325,'wp-admin/includes/export.php'),(326,'wp-admin/includes/file.php'),(327,'wp-admin/includes/image-edit.php'),(328,'wp-admin/includes/image.php'),(329,'wp-admin/includes/import.php'),(330,'wp-admin/includes/list-table.php'),(331,'wp-admin/includes/media.php'),(332,'wp-admin/includes/menu.php'),(333,'wp-admin/includes/meta-boxes.php'),(334,'wp-admin/includes/misc.php'),(335,'wp-admin/includes/ms-admin-filters.php'),(336,'wp-admin/includes/ms-deprecated.php'),(337,'wp-admin/includes/ms.php'),(338,'wp-admin/includes/nav-menu.php'),(339,'wp-admin/includes/network.php'),(340,'wp-admin/includes/noop.php'),(341,'wp-admin/includes/options.php'),(342,'wp-admin/includes/plugin-install.php'),(343,'wp-admin/includes/plugin.php'),(344,'wp-admin/includes/post.php'),(345,'wp-admin/includes/privacy-tools.php'),(346,'wp-admin/includes/revision.php'),(347,'wp-admin/includes/schema.php'),(348,'wp-admin/includes/screen.php'),(349,'wp-admin/includes/taxonomy.php'),(350,'wp-admin/includes/template.php'),(351,'wp-admin/includes/theme-install.php'),(352,'wp-admin/includes/theme.php'),(353,'wp-admin/includes/translation-install.php'),(354,'wp-admin/includes/update-core.php'),(355,'wp-admin/includes/update.php'),(356,'wp-admin/includes/upgrade.php'),(357,'wp-admin/includes/user.php'),(358,'wp-admin/includes/widgets.php'),(359,'wp-admin/index.php'),(360,'wp-admin/install-helper.php'),(361,'wp-admin/install.php'),(362,'wp-admin/js/accordion.js'),(363,'wp-admin/js/accordion.min.js'),(364,'wp-admin/js/application-passwords.js'),(365,'wp-admin/js/application-passwords.min.js'),(366,'wp-admin/js/auth-app.js'),(367,'wp-admin/js/auth-app.min.js'),(368,'wp-admin/js/code-editor.js'),(369,'wp-admin/js/code-editor.min.js'),(370,'wp-admin/js/color-picker.js'),(371,'wp-admin/js/color-picker.min.js'),(372,'wp-admin/js/comment.js'),(373,'wp-admin/js/comment.min.js'),(374,'wp-admin/js/common.js'),(375,'wp-admin/js/common.min.js'),(376,'wp-admin/js/custom-background.js'),(377,'wp-admin/js/custom-background.min.js'),(378,'wp-admin/js/custom-header.js'),(379,'wp-admin/js/customize-controls.js'),(380,'wp-admin/js/customize-controls.min.js'),(381,'wp-admin/js/customize-nav-menus.js'),(382,'wp-admin/js/customize-nav-menus.min.js'),(383,'wp-admin/js/customize-widgets.js'),(384,'wp-admin/js/customize-widgets.min.js'),(385,'wp-admin/js/dashboard.js'),(386,'wp-admin/js/dashboard.min.js'),(387,'wp-admin/js/edit-comments.js'),(388,'wp-admin/js/edit-comments.min.js'),(389,'wp-admin/js/editor-expand.js'),(390,'wp-admin/js/editor-expand.min.js'),(391,'wp-admin/js/editor.js'),(392,'wp-admin/js/editor.min.js'),(393,'wp-admin/js/farbtastic.js'),(394,'wp-admin/js/gallery.js'),(395,'wp-admin/js/gallery.min.js'),(396,'wp-admin/js/image-edit.js'),(397,'wp-admin/js/image-edit.min.js'),(398,'wp-admin/js/inline-edit-post.js'),(399,'wp-admin/js/inline-edit-post.min.js'),(400,'wp-admin/js/inline-edit-tax.js'),(401,'wp-admin/js/inline-edit-tax.min.js'),(402,'wp-admin/js/iris.min.js'),(403,'wp-admin/js/language-chooser.js'),(404,'wp-admin/js/language-chooser.min.js'),(405,'wp-admin/js/link.js'),(406,'wp-admin/js/link.min.js'),(407,'wp-admin/js/media-gallery.js'),(408,'wp-admin/js/media-gallery.min.js'),(409,'wp-admin/js/media-upload.js'),(410,'wp-admin/js/media-upload.min.js'),(411,'wp-admin/js/media.js'),(412,'wp-admin/js/media.min.js'),(413,'wp-admin/js/nav-menu.js'),(414,'wp-admin/js/nav-menu.min.js'),(415,'wp-admin/js/password-strength-meter.js'),(416,'wp-admin/js/password-strength-meter.min.js'),(417,'wp-admin/js/plugin-install.js'),(418,'wp-admin/js/plugin-install.min.js'),(419,'wp-admin/js/post.js'),(420,'wp-admin/js/post.min.js'),(421,'wp-admin/js/postbox.js'),(422,'wp-admin/js/postbox.min.js'),(423,'wp-admin/js/privacy-tools.js'),(424,'wp-admin/js/privacy-tools.min.js'),(425,'wp-admin/js/revisions.js'),(426,'wp-admin/js/revisions.min.js'),(427,'wp-admin/js/set-post-thumbnail.js'),(428,'wp-admin/js/set-post-thumbnail.min.js'),(429,'wp-admin/js/site-health.js'),(430,'wp-admin/js/site-health.min.js'),(431,'wp-admin/js/svg-painter.js'),(432,'wp-admin/js/svg-painter.min.js'),(433,'wp-admin/js/tags-box.js'),(434,'wp-admin/js/tags-box.min.js'),(435,'wp-admin/js/tags-suggest.js'),(436,'wp-admin/js/tags-suggest.min.js'),(437,'wp-admin/js/tags.js'),(438,'wp-admin/js/tags.min.js'),(439,'wp-admin/js/theme-plugin-editor.js'),(440,'wp-admin/js/theme-plugin-editor.min.js'),(441,'wp-admin/js/theme.js'),(442,'wp-admin/js/theme.min.js'),(443,'wp-admin/js/updates.js'),(444,'wp-admin/js/updates.min.js'),(445,'wp-admin/js/user-profile.js'),(446,'wp-admin/js/user-profile.min.js'),(447,'wp-admin/js/user-suggest.js'),(448,'wp-admin/js/user-suggest.min.js'),(449,'wp-admin/js/widgets/custom-html-widgets.js'),(450,'wp-admin/js/widgets/custom-html-widgets.min.js'),(451,'wp-admin/js/widgets/media-audio-widget.js'),(452,'wp-admin/js/widgets/media-audio-widget.min.js'),(453,'wp-admin/js/widgets/media-gallery-widget.js'),(454,'wp-admin/js/widgets/media-gallery-widget.min.js'),(455,'wp-admin/js/widgets/media-image-widget.js'),(456,'wp-admin/js/widgets/media-image-widget.min.js'),(457,'wp-admin/js/widgets/media-video-widget.js'),(458,'wp-admin/js/widgets/media-video-widget.min.js'),(459,'wp-admin/js/widgets/media-widgets.js'),(460,'wp-admin/js/widgets/media-widgets.min.js'),(461,'wp-admin/js/widgets/text-widgets.js'),(462,'wp-admin/js/widgets/text-widgets.min.js'),(463,'wp-admin/js/widgets.js'),(464,'wp-admin/js/widgets.min.js'),(465,'wp-admin/js/word-count.js'),(466,'wp-admin/js/word-count.min.js'),(467,'wp-admin/js/xfn.js'),(468,'wp-admin/js/xfn.min.js'),(469,'wp-admin/link-add.php'),(470,'wp-admin/link-manager.php'),(471,'wp-admin/link-parse-opml.php'),(472,'wp-admin/link.php'),(473,'wp-admin/load-scripts.php'),(474,'wp-admin/load-styles.php'),(475,'wp-admin/maint/repair.php'),(476,'wp-admin/media-new.php'),(477,'wp-admin/media-upload.php'),(478,'wp-admin/media.php'),(479,'wp-admin/menu-header.php'),(480,'wp-admin/menu.php'),(481,'wp-admin/moderation.php'),(482,'wp-admin/ms-admin.php'),(483,'wp-admin/ms-delete-site.php'),(484,'wp-admin/ms-edit.php'),(485,'wp-admin/ms-options.php'),(486,'wp-admin/ms-sites.php'),(487,'wp-admin/ms-themes.php'),(488,'wp-admin/ms-upgrade-network.php'),(489,'wp-admin/ms-users.php'),(490,'wp-admin/my-sites.php'),(491,'wp-admin/nav-menus.php'),(492,'wp-admin/network/about.php'),(493,'wp-admin/network/admin.php'),(494,'wp-admin/network/credits.php'),(495,'wp-admin/network/edit.php'),(496,'wp-admin/network/freedoms.php'),(497,'wp-admin/network/index.php'),(498,'wp-admin/network/menu.php'),(499,'wp-admin/network/plugin-editor.php'),(500,'wp-admin/network/plugin-install.php'),(501,'wp-admin/network/plugins.php'),(502,'wp-admin/network/privacy.php'),(503,'wp-admin/network/profile.php'),(504,'wp-admin/network/settings.php'),(505,'wp-admin/network/setup.php'),(506,'wp-admin/network/site-info.php'),(507,'wp-admin/network/site-new.php'),(508,'wp-admin/network/site-settings.php'),(509,'wp-admin/network/site-themes.php'),(510,'wp-admin/network/site-users.php'),(511,'wp-admin/network/sites.php'),(512,'wp-admin/network/theme-editor.php'),(513,'wp-admin/network/theme-install.php'),(514,'wp-admin/network/themes.php'),(515,'wp-admin/network/update-core.php'),(516,'wp-admin/network/update.php'),(517,'wp-admin/network/upgrade.php'),(518,'wp-admin/network/user-edit.php'),(519,'wp-admin/network/user-new.php'),(520,'wp-admin/network/users.php'),(521,'wp-admin/network.php'),(522,'wp-admin/options-discussion.php'),(523,'wp-admin/options-general.php'),(524,'wp-admin/options-head.php'),(525,'wp-admin/options-media.php'),(526,'wp-admin/options-permalink.php'),(527,'wp-admin/options-privacy.php'),(528,'wp-admin/options-reading.php'),(529,'wp-admin/options-writing.php'),(530,'wp-admin/options.php'),(531,'wp-admin/plugin-editor.php'),(532,'wp-admin/plugin-install.php'),(533,'wp-admin/plugins.php'),(534,'wp-admin/post-new.php'),(535,'wp-admin/post.php'),(536,'wp-admin/press-this.php'),(537,'wp-admin/privacy-policy-guide.php'),(538,'wp-admin/privacy.php'),(539,'wp-admin/profile.php'),(540,'wp-admin/revision.php'),(541,'wp-admin/setup-config.php'),(542,'wp-admin/site-editor.php'),(543,'wp-admin/site-health-info.php'),(544,'wp-admin/site-health.php'),(545,'wp-admin/term.php'),(546,'wp-admin/theme-editor.php'),(547,'wp-admin/theme-install.php'),(548,'wp-admin/themes.php'),(549,'wp-admin/tools.php'),(550,'wp-admin/update-core.php'),(551,'wp-admin/update.php'),(552,'wp-admin/upgrade-functions.php'),(553,'wp-admin/upgrade.php'),(554,'wp-admin/upload.php'),(555,'wp-admin/user/about.php'),(556,'wp-admin/user/admin.php'),(557,'wp-admin/user/credits.php'),(558,'wp-admin/user/freedoms.php'),(559,'wp-admin/user/index.php'),(560,'wp-admin/user/menu.php'),(561,'wp-admin/user/privacy.php'),(562,'wp-admin/user/profile.php'),(563,'wp-admin/user/user-edit.php'),(564,'wp-admin/user-edit.php'),(565,'wp-admin/user-new.php'),(566,'wp-admin/users.php'),(567,'wp-admin/widgets-form-blocks.php'),(568,'wp-admin/widgets-form.php'),(569,'wp-admin/widgets.php'),(570,'wp-blog-header.php'),(571,'wp-comments-post.php'),(572,'wp-config-sample.php'),(573,'wp-config.php'),(574,'wp-content/index.php'),(575,'wp-content/plugins/akismet/.htaccess'),(576,'wp-content/plugins/akismet/LICENSE.txt'),(577,'wp-content/plugins/akismet/_inc/akismet.css'),(578,'wp-content/plugins/akismet/_inc/akismet.js'),(579,'wp-content/plugins/akismet/_inc/form.js'),(580,'wp-content/plugins/akismet/_inc/img/logo-a-2x.png'),(581,'wp-content/plugins/akismet/_inc/img/logo-full-2x.png'),(582,'wp-content/plugins/akismet/akismet.php'),(583,'wp-content/plugins/akismet/changelog.txt'),(584,'wp-content/plugins/akismet/class.akismet-admin.php'),(585,'wp-content/plugins/akismet/class.akismet-cli.php'),(586,'wp-content/plugins/akismet/class.akismet-rest-api.php'),(587,'wp-content/plugins/akismet/class.akismet-widget.php'),(588,'wp-content/plugins/akismet/class.akismet.php'),(589,'wp-content/plugins/akismet/index.php'),(590,'wp-content/plugins/akismet/readme.txt'),(591,'wp-content/plugins/akismet/views/activate.php'),(592,'wp-content/plugins/akismet/views/config.php'),(593,'wp-content/plugins/akismet/views/connect-jp.php'),(594,'wp-content/plugins/akismet/views/enter.php'),(595,'wp-content/plugins/akismet/views/get.php'),(596,'wp-content/plugins/akismet/views/notice.php'),(597,'wp-content/plugins/akismet/views/predefined.php'),(598,'wp-content/plugins/akismet/views/setup.php'),(599,'wp-content/plugins/akismet/views/start.php'),(600,'wp-content/plugins/akismet/views/stats.php'),(601,'wp-content/plugins/akismet/views/title.php'),(602,'wp-content/plugins/akismet/wrapper.php'),(603,'wp-content/plugins/bizworx-tools/inc/elementor/block-employee.php'),(604,'wp-content/plugins/bizworx-tools/inc/elementor/block-posts.php'),(605,'wp-content/plugins/bizworx-tools/inc/elementor/block-pricing.php'),(606,'wp-content/plugins/bizworx-tools/inc/elementor/block-testimonials.php'),(607,'wp-content/plugins/bizworx-tools/inc/metaboxes/clients-metabox.php'),(608,'wp-content/plugins/bizworx-tools/inc/metaboxes/employees-metabox.php'),(609,'wp-content/plugins/bizworx-tools/inc/metaboxes/testimonials-metabox.php'),(610,'wp-content/plugins/bizworx-tools/inc/post-type-clients.php'),(611,'wp-content/plugins/bizworx-tools/inc/post-type-employees.php'),(612,'wp-content/plugins/bizworx-tools/inc/post-type-testimonials.php'),(613,'wp-content/plugins/bizworx-tools/index.php'),(614,'wp-content/plugins/bizworx-tools/js/main.js'),(615,'wp-content/plugins/bizworx-tools/license.txt'),(616,'wp-content/plugins/bizworx-tools/readme.txt'),(617,'wp-content/plugins/bizworx-tools/theme-tools.php'),(618,'wp-content/plugins/contact-form-7/admin/admin.php'),(619,'wp-content/plugins/contact-form-7/admin/css/styles-rtl.css'),(620,'wp-content/plugins/contact-form-7/admin/css/styles.css'),(621,'wp-content/plugins/contact-form-7/admin/edit-contact-form.php'),(622,'wp-content/plugins/contact-form-7/admin/includes/admin-functions.php'),(623,'wp-content/plugins/contact-form-7/admin/includes/class-contact-forms-list-table.php'),(624,'wp-content/plugins/contact-form-7/admin/includes/config-validator.php'),(625,'wp-content/plugins/contact-form-7/admin/includes/editor.php'),(626,'wp-content/plugins/contact-form-7/admin/includes/help-tabs.php'),(627,'wp-content/plugins/contact-form-7/admin/includes/tag-generator.php'),(628,'wp-content/plugins/contact-form-7/admin/includes/welcome-panel.php'),(629,'wp-content/plugins/contact-form-7/admin/js/scripts.js'),(630,'wp-content/plugins/contact-form-7/admin/js/tag-generator.js'),(631,'wp-content/plugins/contact-form-7/assets/icon.png'),(632,'wp-content/plugins/contact-form-7/assets/icon.svg'),(633,'wp-content/plugins/contact-form-7/includes/block-editor/block-editor.php'),(634,'wp-content/plugins/contact-form-7/includes/block-editor/index.js'),(635,'wp-content/plugins/contact-form-7/includes/capabilities.php'),(636,'wp-content/plugins/contact-form-7/includes/config-validator.php'),(637,'wp-content/plugins/contact-form-7/includes/contact-form-functions.php'),(638,'wp-content/plugins/contact-form-7/includes/contact-form-template.php'),(639,'wp-content/plugins/contact-form-7/includes/contact-form.php'),(640,'wp-content/plugins/contact-form-7/includes/controller.php'),(641,'wp-content/plugins/contact-form-7/includes/css/styles-rtl.css'),(642,'wp-content/plugins/contact-form-7/includes/css/styles.css'),(643,'wp-content/plugins/contact-form-7/includes/file.php'),(644,'wp-content/plugins/contact-form-7/includes/form-tag.php'),(645,'wp-content/plugins/contact-form-7/includes/form-tags-manager.php'),(646,'wp-content/plugins/contact-form-7/includes/formatting.php'),(647,'wp-content/plugins/contact-form-7/includes/functions.php'),(648,'wp-content/plugins/contact-form-7/includes/integration.php'),(649,'wp-content/plugins/contact-form-7/includes/js/html5-fallback.js'),(650,'wp-content/plugins/contact-form-7/includes/js/index.js'),(651,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png'),(652,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png'),(653,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png'),(654,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png'),(655,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png'),(656,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),(657,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png'),(658,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png'),(659,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png'),(660,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png'),(661,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png'),(662,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.css'),(663,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css'),(664,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/theme.css'),(665,'wp-content/plugins/contact-form-7/includes/js/scripts.js'),(666,'wp-content/plugins/contact-form-7/includes/l10n.php'),(667,'wp-content/plugins/contact-form-7/includes/mail.php'),(668,'wp-content/plugins/contact-form-7/includes/pipe.php'),(669,'wp-content/plugins/contact-form-7/includes/rest-api.php'),(670,'wp-content/plugins/contact-form-7/includes/shortcodes.php'),(671,'wp-content/plugins/contact-form-7/includes/special-mail-tags.php'),(672,'wp-content/plugins/contact-form-7/includes/submission.php'),(673,'wp-content/plugins/contact-form-7/includes/upgrade.php'),(674,'wp-content/plugins/contact-form-7/includes/validation-functions.php'),(675,'wp-content/plugins/contact-form-7/includes/validation.php'),(676,'wp-content/plugins/contact-form-7/languages/readme.txt'),(677,'wp-content/plugins/contact-form-7/license.txt'),(678,'wp-content/plugins/contact-form-7/load.php'),(679,'wp-content/plugins/contact-form-7/modules/acceptance.php'),(680,'wp-content/plugins/contact-form-7/modules/akismet.php'),(681,'wp-content/plugins/contact-form-7/modules/checkbox.php'),(682,'wp-content/plugins/contact-form-7/modules/constant-contact/constant-contact.php'),(683,'wp-content/plugins/contact-form-7/modules/constant-contact/contact-form-properties.php'),(684,'wp-content/plugins/contact-form-7/modules/constant-contact/contact-post-request.php'),(685,'wp-content/plugins/contact-form-7/modules/constant-contact/doi.php'),(686,'wp-content/plugins/contact-form-7/modules/constant-contact/service.php'),(687,'wp-content/plugins/contact-form-7/modules/constant-contact.php'),(688,'wp-content/plugins/contact-form-7/modules/count.php'),(689,'wp-content/plugins/contact-form-7/modules/date.php'),(690,'wp-content/plugins/contact-form-7/modules/disallowed-list.php'),(691,'wp-content/plugins/contact-form-7/modules/doi-helper.php'),(692,'wp-content/plugins/contact-form-7/modules/file.php'),(693,'wp-content/plugins/contact-form-7/modules/flamingo.php'),(694,'wp-content/plugins/contact-form-7/modules/hidden.php'),(695,'wp-content/plugins/contact-form-7/modules/listo.php'),(696,'wp-content/plugins/contact-form-7/modules/number.php'),(697,'wp-content/plugins/contact-form-7/modules/quiz.php'),(698,'wp-content/plugins/contact-form-7/modules/really-simple-captcha.php'),(699,'wp-content/plugins/contact-form-7/modules/recaptcha/index.js'),(700,'wp-content/plugins/contact-form-7/modules/recaptcha/recaptcha.php'),(701,'wp-content/plugins/contact-form-7/modules/recaptcha/script.js'),(702,'wp-content/plugins/contact-form-7/modules/recaptcha/service.php'),(703,'wp-content/plugins/contact-form-7/modules/response.php'),(704,'wp-content/plugins/contact-form-7/modules/select.php'),(705,'wp-content/plugins/contact-form-7/modules/sendinblue/contact-form-properties.php'),(706,'wp-content/plugins/contact-form-7/modules/sendinblue/doi.php'),(707,'wp-content/plugins/contact-form-7/modules/sendinblue/sendinblue.php'),(708,'wp-content/plugins/contact-form-7/modules/sendinblue/service.php'),(709,'wp-content/plugins/contact-form-7/modules/stripe/api.php'),(710,'wp-content/plugins/contact-form-7/modules/stripe/index.js'),(711,'wp-content/plugins/contact-form-7/modules/stripe/service.php'),(712,'wp-content/plugins/contact-form-7/modules/stripe/stripe.php'),(713,'wp-content/plugins/contact-form-7/modules/stripe/style.css'),(714,'wp-content/plugins/contact-form-7/modules/submit.php'),(715,'wp-content/plugins/contact-form-7/modules/text.php'),(716,'wp-content/plugins/contact-form-7/modules/textarea.php'),(717,'wp-content/plugins/contact-form-7/readme.txt'),(718,'wp-content/plugins/contact-form-7/settings.php'),(719,'wp-content/plugins/contact-form-7/uninstall.php'),(720,'wp-content/plugins/contact-form-7/wp-contact-form-7.php'),(721,'wp-content/plugins/easy-facebook-likebox/LICENSE.txt'),(722,'wp-content/plugins/easy-facebook-likebox/README.txt'),(723,'wp-content/plugins/easy-facebook-likebox/admin/assets/css/alpha-color-picker.css'),(724,'wp-content/plugins/easy-facebook-likebox/admin/assets/css/esf-admin.css'),(725,'wp-content/plugins/easy-facebook-likebox/admin/assets/css/esf-admin.css.map'),(726,'wp-content/plugins/easy-facebook-likebox/admin/assets/css/esf-animations.css'),(727,'wp-content/plugins/easy-facebook-likebox/admin/assets/css/esf-animations.css.map'),(728,'wp-content/plugins/easy-facebook-likebox/admin/assets/css/espf-search-results.css'),(729,'wp-content/plugins/easy-facebook-likebox/admin/assets/css/espf-search-results.css.map'),(730,'wp-content/plugins/easy-facebook-likebox/admin/assets/css/index.php'),(731,'wp-content/plugins/easy-facebook-likebox/admin/assets/fonts/esf-custom-icons.eot'),(732,'wp-content/plugins/easy-facebook-likebox/admin/assets/fonts/esf-custom-icons.svg'),(733,'wp-content/plugins/easy-facebook-likebox/admin/assets/fonts/esf-custom-icons.ttf'),(734,'wp-content/plugins/easy-facebook-likebox/admin/assets/fonts/esf-custom-icons.woff'),(735,'wp-content/plugins/easy-facebook-likebox/admin/assets/images/facebook-feed-icon.png'),(736,'wp-content/plugins/easy-facebook-likebox/admin/assets/images/instagram-feed-icon.png'),(737,'wp-content/plugins/easy-facebook-likebox/admin/assets/images/likebox-icon.png'),(738,'wp-content/plugins/easy-facebook-likebox/admin/assets/images/plugin-logo.png'),(739,'wp-content/plugins/easy-facebook-likebox/admin/assets/images/plugin_icon.png'),(740,'wp-content/plugins/easy-facebook-likebox/admin/assets/js/admin.js'),(741,'wp-content/plugins/easy-facebook-likebox/admin/assets/js/alpha-color-picker.js'),(742,'wp-content/plugins/easy-facebook-likebox/admin/assets/js/clipboard.min.js'),(743,'wp-content/plugins/easy-facebook-likebox/admin/assets/js/esf-admin.js'),(744,'wp-content/plugins/easy-facebook-likebox/admin/assets/js/esf-image-uploader.js'),(745,'wp-content/plugins/easy-facebook-likebox/admin/assets/js/espf-search-results.js'),(746,'wp-content/plugins/easy-facebook-likebox/admin/assets/js/index.php'),(747,'wp-content/plugins/easy-facebook-likebox/admin/assets/js/materialize.min.js'),(748,'wp-content/plugins/easy-facebook-likebox/admin/assets/scss/esf-admin.scss'),(749,'wp-content/plugins/easy-facebook-likebox/admin/assets/scss/esf-animations.scss'),(750,'wp-content/plugins/easy-facebook-likebox/admin/assets/scss/espf-search-results.scss'),(751,'wp-content/plugins/easy-facebook-likebox/admin/class-esf-admin.php'),(752,'wp-content/plugins/easy-facebook-likebox/admin/includes/index.php'),(753,'wp-content/plugins/easy-facebook-likebox/admin/views/admin.php'),(754,'wp-content/plugins/easy-facebook-likebox/admin/views/feed-settings.php'),(755,'wp-content/plugins/easy-facebook-likebox/admin/views/html-admin-page-easy-social-feed.php'),(756,'wp-content/plugins/easy-facebook-likebox/admin/views/html-admin-page-recommendations.php'),(757,'wp-content/plugins/easy-facebook-likebox/admin/views/html-admin-page-wellcome.php'),(758,'wp-content/plugins/easy-facebook-likebox/admin/views/index.php'),(759,'wp-content/plugins/easy-facebook-likebox/admin/views/instructinos.php'),(760,'wp-content/plugins/easy-facebook-likebox/admin/views/other-plugins.php'),(761,'wp-content/plugins/easy-facebook-likebox/admin/views/popup-settings-advanced.php'),(762,'wp-content/plugins/easy-facebook-likebox/admin/views/popup-settings.php'),(763,'wp-content/plugins/easy-facebook-likebox/admin/views/support-us.php'),(764,'wp-content/plugins/easy-facebook-likebox/assets/fonts/esf-custom-icons.svg'),(765,'wp-content/plugins/easy-facebook-likebox/assets/index.php'),(766,'wp-content/plugins/easy-facebook-likebox/assets/js/espf-search-results.js'),(767,'wp-content/plugins/easy-facebook-likebox/assets/js/fta-admin.js'),(768,'wp-content/plugins/easy-facebook-likebox/assets/js/jquery.fancybox.min.js'),(769,'wp-content/plugins/easy-facebook-likebox/assets/js/materialize.min.js'),(770,'wp-content/plugins/easy-facebook-likebox/assets/js/owl.carousel.min.js'),(771,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/css/index.php'),(772,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/js/admin.js'),(773,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/js/alpha-color-picker.js'),(774,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/js/efbl-likebox-block.js'),(775,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/js/efbl-live-preview.js'),(776,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/js/index.php'),(777,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/assets/js/materialize.min.js'),(778,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/easy-facebook-likebox-admin.php'),(779,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/includes/efbl-customizer-extend.php'),(780,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/includes/efbl-customizer.php'),(781,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/admin/includes/efbl-skins.php'),(782,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/assets/index.php'),(783,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/easy-facebook-likebox.php'),(784,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/includes/easy-custom-facebook-feed-widget.php'),(785,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/includes/easy-facebook-likebox-widget.php'),(786,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/includes/easy-facebook-page-plugin-widget.php'),(787,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/includes/index.php'),(788,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/css/index.php'),(789,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/fonts/fontawesome-webfont.svg'),(790,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/index.php'),(791,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/js/index.php'),(792,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/js/jquery.cookie.js'),(793,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/js/public.js'),(794,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/assets/popup/jquery.magnific-popup.min.js'),(795,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/easy-facebook-likebox.php'),(796,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/includes/Mobile_Detect.php'),(797,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/includes/core-functions.php'),(798,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/includes/index.php'),(799,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/views/feed.php'),(800,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/views/index.php'),(801,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/views/public.php'),(802,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/views/templates/template-fullwidth.php'),(803,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/views/templates/template-halfwidth.php'),(804,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox/public/views/templates/template-thumbnail.php'),(805,'wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox.php'),(806,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/css/admin.css'),(807,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/css/admin.css.map'),(808,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/css/efbl-customizer.css'),(809,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/css/efbl-customizer.css.map'),(810,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/carousel.jpg'),(811,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/facebook-icon.png'),(812,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/full.jpg'),(813,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/grid.jpg'),(814,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/half.jpg'),(815,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/masonry.jpg'),(816,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/moderate.png'),(817,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/images/thumbnail.jpg'),(818,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/js/admin.js'),(819,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/js/efbl-live-preview.js'),(820,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/js/index.php'),(821,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/scss/admin.scss'),(822,'wp-content/plugins/easy-facebook-likebox/facebook/admin/assets/scss/efbl-customizer.scss'),(823,'wp-content/plugins/easy-facebook-likebox/facebook/admin/class-easy-facebook-likebox-admin.php'),(824,'wp-content/plugins/easy-facebook-likebox/facebook/admin/includes/efbl-customizer-extend.php'),(825,'wp-content/plugins/easy-facebook-likebox/facebook/admin/includes/efbl-customizer.php'),(826,'wp-content/plugins/easy-facebook-likebox/facebook/admin/includes/efbl-skins.php'),(827,'wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-admin-page-easy-facebook-likebox.php'),(828,'wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-authenticate-tab.php'),(829,'wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-auto-popup-tab.php'),(830,'wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-clear-cache-tab.php'),(831,'wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-how-to-use-tab.php'),(832,'wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-likebox-tab.php'),(833,'wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-moderate-tab.php'),(834,'wp-content/plugins/easy-facebook-likebox/facebook/admin/views/html-skins-tab.php'),(835,'wp-content/plugins/easy-facebook-likebox/facebook/admin/views/template-moderate.php'),(836,'wp-content/plugins/easy-facebook-likebox/facebook/autoload.php'),(837,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/css/easy-facebook-likebox-customizer-style.css.php'),(838,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/css/easy-facebook-likebox-frontend.css'),(839,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/css/easy-facebook-likebox-frontend.css.map'),(840,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/css/esf-free-popup.css'),(841,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/css/popup_close.png'),(842,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/efbl-angry.gif'),(843,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/efbl-haha.gif'),(844,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/efbl-like.gif'),(845,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/efbl-love.gif'),(846,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/efbl-sad.gif'),(847,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/efbl-wow.gif'),(848,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/feed-placeholder-img.png'),(849,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/images/popup_close.png'),(850,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/index.php'),(851,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/js/esf-free-popup.min.js'),(852,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/js/index.php'),(853,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/js/jquery.cookie.js'),(854,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/js/jquery.magnific-popup.min.js'),(855,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/js/public.js'),(856,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/easy-facebook-likebox-frontend.scss'),(857,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/_framework.scss'),(858,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/_functions.scss'),(859,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/_grid.scss'),(860,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/_mixins.scss'),(861,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/_utilities.scss'),(862,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/_variables.scss'),(863,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_alert.scss'),(864,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_background-variant.scss'),(865,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_badge.scss'),(866,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_border-radius.scss'),(867,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_box-shadow.scss'),(868,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_breakpoints.scss'),(869,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_buttons.scss'),(870,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_caret.scss'),(871,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_clearfix.scss'),(872,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_float.scss'),(873,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_forms.scss'),(874,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_gradients.scss'),(875,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_grid-framework.scss'),(876,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_grid.scss'),(877,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_hover.scss'),(878,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_image.scss'),(879,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_list-group.scss'),(880,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_lists.scss'),(881,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_nav-divider.scss'),(882,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_navbar-align.scss'),(883,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_pagination.scss'),(884,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_reset-text.scss'),(885,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_resize.scss'),(886,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_screen-reader.scss'),(887,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_size.scss'),(888,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_table-row.scss'),(889,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_text-emphasis.scss'),(890,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_text-hide.scss'),(891,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_text-truncate.scss'),(892,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_transition.scss'),(893,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/mixins/_visibility.scss'),(894,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_align.scss'),(895,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_clearfix.scss'),(896,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_display.scss'),(897,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_flex.scss'),(898,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_float.scss'),(899,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_position.scss'),(900,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_screenreaders.scss'),(901,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_sizing.scss'),(902,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_spacing.scss'),(903,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_text.scss'),(904,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/assets/scss/framework/utilities/_visibility.scss'),(905,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/easy-facebook-likebox.php'),(906,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/includes/Mobile_Detect.php'),(907,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/includes/core-functions.php'),(908,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/includes/index.php'),(909,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/feed.php'),(910,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/html-feed-footer.php'),(911,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/html-feed-header.php'),(912,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/html-feed-meta.php'),(913,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/html-free-popup.php'),(914,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/index.php'),(915,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/public.php'),(916,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/templates/template-fullwidth.php'),(917,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/templates/template-halfwidth.php'),(918,'wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/templates/template-thumbnail.php'),(919,'wp-content/plugins/easy-facebook-likebox/facebook/includes/easy-custom-facebook-feed-widget.php'),(920,'wp-content/plugins/easy-facebook-likebox/facebook/includes/easy-facebook-page-plugin-widget.php'),(921,'wp-content/plugins/easy-facebook-likebox/facebook/includes/index.php'),(922,'wp-content/plugins/easy-facebook-likebox/freemius/LICENSE.txt'),(923,'wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/account.css'),(924,'wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/add-ons.css'),(925,'wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/affiliation.css'),(926,'wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/checkout.css'),(927,'wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/common.css'),(928,'wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/connect.css'),(929,'wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/debug.css'),(930,'wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/dialog-boxes.css'),(931,'wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/gdpr-optin-notice.css'),(932,'wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/index.php'),(933,'wp-content/plugins/easy-facebook-likebox/freemius/assets/css/admin/plugins.css'),(934,'wp-content/plugins/easy-facebook-likebox/freemius/assets/css/customizer.css'),(935,'wp-content/plugins/easy-facebook-likebox/freemius/assets/css/index.php'),(936,'wp-content/plugins/easy-facebook-likebox/freemius/assets/img/easy-facebook-likebox.png'),(937,'wp-content/plugins/easy-facebook-likebox/freemius/assets/img/esf-featured-post.png'),(938,'wp-content/plugins/easy-facebook-likebox/freemius/assets/img/esf-multifeed.png'),(939,'wp-content/plugins/easy-facebook-likebox/freemius/assets/img/index.php'),(940,'wp-content/plugins/easy-facebook-likebox/freemius/assets/img/plugin-icon.png'),(941,'wp-content/plugins/easy-facebook-likebox/freemius/assets/img/theme-icon.png'),(942,'wp-content/plugins/easy-facebook-likebox/freemius/assets/index.php'),(943,'wp-content/plugins/easy-facebook-likebox/freemius/assets/js/index.php'),(944,'wp-content/plugins/easy-facebook-likebox/freemius/assets/js/nojquery.ba-postmessage.js'),(945,'wp-content/plugins/easy-facebook-likebox/freemius/assets/js/nojquery.ba-postmessage.min.js'),(946,'wp-content/plugins/easy-facebook-likebox/freemius/assets/js/postmessage.js'),(947,'wp-content/plugins/easy-facebook-likebox/freemius/config.php'),(948,'wp-content/plugins/easy-facebook-likebox/freemius/includes/class-freemius-abstract.php'),(949,'wp-content/plugins/easy-facebook-likebox/freemius/includes/class-freemius.php'),(950,'wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-admin-notices.php'),(951,'wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-api.php'),(952,'wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-logger.php'),(953,'wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-options.php'),(954,'wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-plugin-updater.php'),(955,'wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-security.php'),(956,'wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-storage.php'),(957,'wp-content/plugins/easy-facebook-likebox/freemius/includes/class-fs-user-lock.php'),(958,'wp-content/plugins/easy-facebook-likebox/freemius/includes/customizer/class-fs-customizer-support-section.php'),(959,'wp-content/plugins/easy-facebook-likebox/freemius/includes/customizer/class-fs-customizer-upsell-control.php'),(960,'wp-content/plugins/easy-facebook-likebox/freemius/includes/customizer/index.php'),(961,'wp-content/plugins/easy-facebook-likebox/freemius/includes/debug/class-fs-debug-bar-panel.php'),(962,'wp-content/plugins/easy-facebook-likebox/freemius/includes/debug/debug-bar-start.php'),(963,'wp-content/plugins/easy-facebook-likebox/freemius/includes/debug/index.php'),(964,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-affiliate-terms.php'),(965,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-affiliate.php'),(966,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-billing.php'),(967,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-entity.php'),(968,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-payment.php'),(969,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-plugin-info.php'),(970,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-plugin-license.php'),(971,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-plugin-plan.php'),(972,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-plugin-tag.php'),(973,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-plugin.php'),(974,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-pricing.php'),(975,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-scope-entity.php'),(976,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-site.php'),(977,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-subscription.php'),(978,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/class-fs-user.php'),(979,'wp-content/plugins/easy-facebook-likebox/freemius/includes/entities/index.php'),(980,'wp-content/plugins/easy-facebook-likebox/freemius/includes/fs-core-functions.php'),(981,'wp-content/plugins/easy-facebook-likebox/freemius/includes/fs-essential-functions.php'),(982,'wp-content/plugins/easy-facebook-likebox/freemius/includes/fs-plugin-info-dialog.php'),(983,'wp-content/plugins/easy-facebook-likebox/freemius/includes/i18n.php'),(984,'wp-content/plugins/easy-facebook-likebox/freemius/includes/index.php'),(985,'wp-content/plugins/easy-facebook-likebox/freemius/includes/l10n.php'),(986,'wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-admin-menu-manager.php'),(987,'wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-admin-notice-manager.php'),(988,'wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-cache-manager.php'),(989,'wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-gdpr-manager.php'),(990,'wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-key-value-storage.php'),(991,'wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-license-manager.php'),(992,'wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-option-manager.php'),(993,'wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-plan-manager.php'),(994,'wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/class-fs-plugin-manager.php'),(995,'wp-content/plugins/easy-facebook-likebox/freemius/includes/managers/index.php'),(996,'wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/Exceptions/ArgumentNotExistException.php'),(997,'wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/Exceptions/EmptyArgumentException.php'),(998,'wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/Exceptions/Exception.php'),(999,'wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/Exceptions/InvalidArgumentException.php'),(1000,'wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/Exceptions/OAuthException.php'),(1001,'wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/Exceptions/index.php'),(1002,'wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/FreemiusBase.php'),(1003,'wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/FreemiusWordPress.php'),(1004,'wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/LICENSE.txt'),(1005,'wp-content/plugins/easy-facebook-likebox/freemius/includes/sdk/index.php'),(1006,'wp-content/plugins/easy-facebook-likebox/freemius/includes/supplements/fs-essential-functions-1.1.7.1.php'),(1007,'wp-content/plugins/easy-facebook-likebox/freemius/includes/supplements/fs-essential-functions-2.2.1.php'),(1008,'wp-content/plugins/easy-facebook-likebox/freemius/includes/supplements/index.php'),(1009,'wp-content/plugins/easy-facebook-likebox/freemius/index.php'),(1010,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-cs_CZ.mo'),(1011,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-da_DK.mo'),(1012,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-en.mo'),(1013,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-es_ES.mo'),(1014,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-fr_FR.mo'),(1015,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-he_IL.mo'),(1016,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-hu_HU.mo'),(1017,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-it_IT.mo'),(1018,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-ja.mo'),(1019,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-nl_NL.mo'),(1020,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-ru_RU.mo'),(1021,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-ta.mo'),(1022,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius-zh_CN.mo'),(1023,'wp-content/plugins/easy-facebook-likebox/freemius/languages/freemius.pot'),(1024,'wp-content/plugins/easy-facebook-likebox/freemius/languages/index.php'),(1025,'wp-content/plugins/easy-facebook-likebox/freemius/require.php'),(1026,'wp-content/plugins/easy-facebook-likebox/freemius/start.php'),(1027,'wp-content/plugins/easy-facebook-likebox/freemius/templates/account/billing.php'),(1028,'wp-content/plugins/easy-facebook-likebox/freemius/templates/account/index.php'),(1029,'wp-content/plugins/easy-facebook-likebox/freemius/templates/account/partials/activate-license-button.php'),(1030,'wp-content/plugins/easy-facebook-likebox/freemius/templates/account/partials/addon.php'),(1031,'wp-content/plugins/easy-facebook-likebox/freemius/templates/account/partials/deactivate-license-button.php'),(1032,'wp-content/plugins/easy-facebook-likebox/freemius/templates/account/partials/index.php'),(1033,'wp-content/plugins/easy-facebook-likebox/freemius/templates/account/partials/site.php'),(1034,'wp-content/plugins/easy-facebook-likebox/freemius/templates/account/payments.php'),(1035,'wp-content/plugins/easy-facebook-likebox/freemius/templates/account.php'),(1036,'wp-content/plugins/easy-facebook-likebox/freemius/templates/add-ons.php'),(1037,'wp-content/plugins/easy-facebook-likebox/freemius/templates/add-trial-to-pricing.php'),(1038,'wp-content/plugins/easy-facebook-likebox/freemius/templates/admin-notice.php'),(1039,'wp-content/plugins/easy-facebook-likebox/freemius/templates/ajax-loader.php'),(1040,'wp-content/plugins/easy-facebook-likebox/freemius/templates/auto-installation.php'),(1041,'wp-content/plugins/easy-facebook-likebox/freemius/templates/checkout.php'),(1042,'wp-content/plugins/easy-facebook-likebox/freemius/templates/connect.php'),(1043,'wp-content/plugins/easy-facebook-likebox/freemius/templates/contact.php'),(1044,'wp-content/plugins/easy-facebook-likebox/freemius/templates/debug/api-calls.php'),(1045,'wp-content/plugins/easy-facebook-likebox/freemius/templates/debug/index.php'),(1046,'wp-content/plugins/easy-facebook-likebox/freemius/templates/debug/logger.php'),(1047,'wp-content/plugins/easy-facebook-likebox/freemius/templates/debug/plugins-themes-sync.php'),(1048,'wp-content/plugins/easy-facebook-likebox/freemius/templates/debug/scheduled-crons.php'),(1049,'wp-content/plugins/easy-facebook-likebox/freemius/templates/debug.php'),(1050,'wp-content/plugins/easy-facebook-likebox/freemius/templates/email.php'),(1051,'wp-content/plugins/easy-facebook-likebox/freemius/templates/firewall-issues-js.php'),(1052,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/affiliation.php'),(1053,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/data-debug-mode.php'),(1054,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/deactivation/contact.php'),(1055,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/deactivation/form.php'),(1056,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/deactivation/index.php'),(1057,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/deactivation/retry-skip.php'),(1058,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/index.php'),(1059,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/license-activation.php'),(1060,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/optout.php'),(1061,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/premium-versions-upgrade-handler.php'),(1062,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/premium-versions-upgrade-metadata.php'),(1063,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/resend-key.php'),(1064,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/subscription-cancellation.php'),(1065,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/trial-start.php'),(1066,'wp-content/plugins/easy-facebook-likebox/freemius/templates/forms/user-change.php'),(1067,'wp-content/plugins/easy-facebook-likebox/freemius/templates/gdpr-optin-js.php'),(1068,'wp-content/plugins/easy-facebook-likebox/freemius/templates/index.php'),(1069,'wp-content/plugins/easy-facebook-likebox/freemius/templates/js/index.php'),(1070,'wp-content/plugins/easy-facebook-likebox/freemius/templates/js/jquery.content-change.php'),(1071,'wp-content/plugins/easy-facebook-likebox/freemius/templates/js/open-license-activation.php'),(1072,'wp-content/plugins/easy-facebook-likebox/freemius/templates/js/style-premium-theme.php'),(1073,'wp-content/plugins/easy-facebook-likebox/freemius/templates/partials/index.php'),(1074,'wp-content/plugins/easy-facebook-likebox/freemius/templates/partials/network-activation.php'),(1075,'wp-content/plugins/easy-facebook-likebox/freemius/templates/plugin-icon.php'),(1076,'wp-content/plugins/easy-facebook-likebox/freemius/templates/plugin-info/description.php'),(1077,'wp-content/plugins/easy-facebook-likebox/freemius/templates/plugin-info/features.php'),(1078,'wp-content/plugins/easy-facebook-likebox/freemius/templates/plugin-info/index.php'),(1079,'wp-content/plugins/easy-facebook-likebox/freemius/templates/plugin-info/screenshots.php'),(1080,'wp-content/plugins/easy-facebook-likebox/freemius/templates/powered-by.php'),(1081,'wp-content/plugins/easy-facebook-likebox/freemius/templates/pricing.php'),(1082,'wp-content/plugins/easy-facebook-likebox/freemius/templates/secure-https-header.php'),(1083,'wp-content/plugins/easy-facebook-likebox/freemius/templates/sticky-admin-notice-js.php'),(1084,'wp-content/plugins/easy-facebook-likebox/freemius/templates/tabs-capture-js.php'),(1085,'wp-content/plugins/easy-facebook-likebox/freemius/templates/tabs.php'),(1086,'wp-content/plugins/easy-facebook-likebox/frontend/assets/css/esf-custom-fonts.css'),(1087,'wp-content/plugins/easy-facebook-likebox/frontend/assets/css/jquery.fancybox.min.css'),(1088,'wp-content/plugins/easy-facebook-likebox/frontend/assets/css/owl.carousel.min.css'),(1089,'wp-content/plugins/easy-facebook-likebox/frontend/assets/css/owl.theme.default.min.css'),(1090,'wp-content/plugins/easy-facebook-likebox/frontend/assets/fonts/esf-custom-icons.eot'),(1091,'wp-content/plugins/easy-facebook-likebox/frontend/assets/fonts/esf-custom-icons.svg'),(1092,'wp-content/plugins/easy-facebook-likebox/frontend/assets/fonts/esf-custom-icons.ttf'),(1093,'wp-content/plugins/easy-facebook-likebox/frontend/assets/fonts/esf-custom-icons.woff'),(1094,'wp-content/plugins/easy-facebook-likebox/frontend/assets/fonts/material-icons.woff2'),(1095,'wp-content/plugins/easy-facebook-likebox/frontend/assets/js/imagesloaded.pkgd.min.js'),(1096,'wp-content/plugins/easy-facebook-likebox/frontend/assets/js/jquery.fancybox.min.js'),(1097,'wp-content/plugins/easy-facebook-likebox/frontend/assets/js/owl.carousel.min.js'),(1098,'wp-content/plugins/easy-facebook-likebox/includes/class-module-search.php'),(1099,'wp-content/plugins/easy-facebook-likebox/includes/core-functions.php'),(1100,'wp-content/plugins/easy-facebook-likebox/includes/easy-custom-facebook-feed-widget.php'),(1101,'wp-content/plugins/easy-facebook-likebox/includes/easy-facebook-likebox-widget.php'),(1102,'wp-content/plugins/easy-facebook-likebox/includes/easy-facebook-page-plugin-widget.php'),(1103,'wp-content/plugins/easy-facebook-likebox/includes/index.php'),(1104,'wp-content/plugins/easy-facebook-likebox/index.php'),(1105,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/css/esf-insta-admin-style.css'),(1106,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/css/esf-insta-admin-style.css.map'),(1107,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/css/esf-insta-customizer-style.css'),(1108,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/css/esf-insta-customizer-style.css.map'),(1109,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/images/carousel.jpg'),(1110,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/images/full_width.jpg'),(1111,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/images/grid.jpg'),(1112,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/images/half_width.jpg'),(1113,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/images/insta-logo.png'),(1114,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/images/masonary.jpg'),(1115,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/js/esf-insta-admin-script.js'),(1116,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/js/esf-insta-live-preview.js'),(1117,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/scss/esf-insta-admin-style.scss'),(1118,'wp-content/plugins/easy-facebook-likebox/instagram/admin/assets/scss/esf-insta-customizer-style.scss'),(1119,'wp-content/plugins/easy-facebook-likebox/instagram/admin/class-easy-facebook-likebox-instagram-admin.php'),(1120,'wp-content/plugins/easy-facebook-likebox/instagram/admin/includes/class-esf-insta-customizer-extend.php'),(1121,'wp-content/plugins/easy-facebook-likebox/instagram/admin/includes/class-esf-insta-customizer.php'),(1122,'wp-content/plugins/easy-facebook-likebox/instagram/admin/includes/class-esf-insta-skins.php'),(1123,'wp-content/plugins/easy-facebook-likebox/instagram/admin/views/html-admin-page-mif.php'),(1124,'wp-content/plugins/easy-facebook-likebox/instagram/admin/views/html-autenticate-tab.php'),(1125,'wp-content/plugins/easy-facebook-likebox/instagram/admin/views/html-clear-cache-tab.php'),(1126,'wp-content/plugins/easy-facebook-likebox/instagram/admin/views/html-how-to-use-tab.php'),(1127,'wp-content/plugins/easy-facebook-likebox/instagram/admin/views/html-moderate-tab.php'),(1128,'wp-content/plugins/easy-facebook-likebox/instagram/admin/views/html-skins-tab.php'),(1129,'wp-content/plugins/easy-facebook-likebox/instagram/admin/views/template-moderate.php'),(1130,'wp-content/plugins/easy-facebook-likebox/instagram/autoload.php'),(1131,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/css/esf-insta-customizer-style.css.php'),(1132,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/css/esf-insta-frontend.css'),(1133,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/css/esf-insta-frontend.css.map'),(1134,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/images/esf-insta-video-placeholder.png'),(1135,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/images/insta-stories.svg'),(1136,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/js/esf-insta-public.js'),(1137,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/esf-insta-frontend.scss'),(1138,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/_framework.scss'),(1139,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/_functions.scss'),(1140,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/_grid.scss'),(1141,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/_mixins.scss'),(1142,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/_utilities.scss'),(1143,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/_variables.scss'),(1144,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_alert.scss'),(1145,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_background-variant.scss'),(1146,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_badge.scss'),(1147,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_border-radius.scss'),(1148,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_box-shadow.scss'),(1149,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_breakpoints.scss'),(1150,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_buttons.scss'),(1151,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_caret.scss'),(1152,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_clearfix.scss'),(1153,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_float.scss'),(1154,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_forms.scss'),(1155,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_gradients.scss'),(1156,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_grid-framework.scss'),(1157,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_grid.scss'),(1158,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_hover.scss'),(1159,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_image.scss'),(1160,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_list-group.scss'),(1161,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_lists.scss'),(1162,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_nav-divider.scss'),(1163,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_navbar-align.scss'),(1164,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_pagination.scss'),(1165,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_reset-text.scss'),(1166,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_resize.scss'),(1167,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_screen-reader.scss'),(1168,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_size.scss'),(1169,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_table-row.scss'),(1170,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_text-emphasis.scss'),(1171,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_text-hide.scss'),(1172,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_text-truncate.scss'),(1173,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_transition.scss'),(1174,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/mixins/_visibility.scss'),(1175,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_align.scss'),(1176,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_clearfix.scss'),(1177,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_display.scss'),(1178,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_flex.scss'),(1179,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_float.scss'),(1180,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_position.scss'),(1181,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_screenreaders.scss'),(1182,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_sizing.scss'),(1183,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_spacing.scss'),(1184,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_text.scss'),(1185,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/assets/scss/framework/utilities/_visibility.scss'),(1186,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/class-easy-facebook-likebox-instagram-frontend.php'),(1187,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/feed.php'),(1188,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/html-feed-footer.php'),(1189,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/html-feed-header.php'),(1190,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/html-post-header.php'),(1191,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/html-post-meta.php'),(1192,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/templates/template-carousel copy.php'),(1193,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/templates/template-carousel.php'),(1194,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/templates/template-full_width.php'),(1195,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/templates/template-grid.php'),(1196,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/templates/template-half_width.php'),(1197,'wp-content/plugins/easy-facebook-likebox/instagram/frontend/views/templates/template-masonary.php'),(1198,'wp-content/plugins/easy-facebook-likebox/instagram/includes/esf-insta-helper-functions.php'),(1199,'wp-content/plugins/easy-facebook-likebox/instagram/includes/esf-instagram-feed-widget.php'),(1200,'wp-content/plugins/easy-facebook-likebox/instagram/includes/mif-insta-helper-functions.php'),(1201,'wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-de_DE.mo'),(1202,'wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-de_DE.po'),(1203,'wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-es_ES.mo'),(1204,'wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-es_ES.po'),(1205,'wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-fr_FR.mo'),(1206,'wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-fr_FR.po'),(1207,'wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-it_IT.mo'),(1208,'wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-it_IT.po'),(1209,'wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-pt_PT.mo'),(1210,'wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox-pt_PT.po'),(1211,'wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox.mo'),(1212,'wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox.po'),(1213,'wp-content/plugins/easy-facebook-likebox/languages/easy-facebook-likebox.pot'),(1214,'wp-content/plugins/easy-facebook-likebox/languages/index.php'),(1215,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/admin/admin.php'),(1216,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/fonts/fontawesome-webfont.svg'),(1217,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/js/alpha-color-picker.js'),(1218,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/js/mif-admin.js'),(1219,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/js/mif-custom.js'),(1220,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/js/mif-customizer-custom.js'),(1221,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/js/mif_live_preview.js'),(1222,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/assets/js/wp-color-picker-alpha.min.js'),(1223,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/frontend/frontend.php'),(1224,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/frontend/templates/template-grid.php'),(1225,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/includes/customizer.php'),(1226,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/includes/customizer_extend.php'),(1227,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/includes/mif-global-functions.php'),(1228,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/includes/mif-skins.php'),(1229,'wp-content/plugins/easy-facebook-likebox/my-instagram-feed/my-instagram-feed.php'),(1230,'wp-content/plugins/easy-facebook-likebox/public/assets/css/index.php'),(1231,'wp-content/plugins/easy-facebook-likebox/public/assets/fonts/fontawesome-webfont.svg'),(1232,'wp-content/plugins/easy-facebook-likebox/public/assets/index.php'),(1233,'wp-content/plugins/easy-facebook-likebox/public/assets/js/index.php'),(1234,'wp-content/plugins/easy-facebook-likebox/public/assets/js/jquery.cookie.js'),(1235,'wp-content/plugins/easy-facebook-likebox/public/assets/js/public.js'),(1236,'wp-content/plugins/easy-facebook-likebox/public/assets/popup/jquery.magnific-popup.js'),(1237,'wp-content/plugins/easy-facebook-likebox/public/assets/popup/jquery.magnific-popup.min.js'),(1238,'wp-content/plugins/easy-facebook-likebox/public/easy-facebook-likebox.php'),(1239,'wp-content/plugins/easy-facebook-likebox/public/includes/Mobile_Detect.php'),(1240,'wp-content/plugins/easy-facebook-likebox/public/includes/core-functions.php'),(1241,'wp-content/plugins/easy-facebook-likebox/public/includes/index.php'),(1242,'wp-content/plugins/easy-facebook-likebox/public/views/feed.php'),(1243,'wp-content/plugins/easy-facebook-likebox/public/views/index.php'),(1244,'wp-content/plugins/easy-facebook-likebox/public/views/public.php'),(1245,'wp-content/plugins/easy-facebook-likebox/uninstall.php'),(1246,'wp-content/plugins/easy-twitter-feed-widget/css/admin.css'),(1247,'wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.php'),(1248,'wp-content/plugins/easy-twitter-feed-widget/inc/admin.php'),(1249,'wp-content/plugins/easy-twitter-feed-widget/inc/extras.php'),(1250,'wp-content/plugins/easy-twitter-feed-widget/inc/settings-page.php'),(1251,'wp-content/plugins/easy-twitter-feed-widget/inc/widget-twitter.php'),(1252,'wp-content/plugins/easy-twitter-feed-widget/inc/widgets.php'),(1253,'wp-content/plugins/easy-twitter-feed-widget/js/admin.js'),(1254,'wp-content/plugins/easy-twitter-feed-widget/js/cookie.js'),(1255,'wp-content/plugins/easy-twitter-feed-widget/js/easytabs.js'),(1256,'wp-content/plugins/easy-twitter-feed-widget/js/hashchange.js'),(1257,'wp-content/plugins/easy-twitter-feed-widget/js/twitter-widgets.js'),(1258,'wp-content/plugins/easy-twitter-feed-widget/languages/do-etfw.pot'),(1259,'wp-content/plugins/easy-twitter-feed-widget/license.txt'),(1260,'wp-content/plugins/easy-twitter-feed-widget/readme.txt'),(1261,'wp-content/plugins/easy-weather-widget/Gruntfile.js'),(1262,'wp-content/plugins/easy-weather-widget/bower.json'),(1263,'wp-content/plugins/easy-weather-widget/composer.json'),(1264,'wp-content/plugins/easy-weather-widget/composer.lock'),(1265,'wp-content/plugins/easy-weather-widget/css/style.css'),(1266,'wp-content/plugins/easy-weather-widget/css/style.min.css'),(1267,'wp-content/plugins/easy-weather-widget/easy-weather-widget.php'),(1268,'wp-content/plugins/easy-weather-widget/eww/get/get-weather.php'),(1269,'wp-content/plugins/easy-weather-widget/eww/get/open-weather-api.php'),(1270,'wp-content/plugins/easy-weather-widget/eww/icons/icons.php'),(1271,'wp-content/plugins/easy-weather-widget/eww/icons/weather-icons.php'),(1272,'wp-content/plugins/easy-weather-widget/eww/iocable/iocable.php'),(1273,'wp-content/plugins/easy-weather-widget/eww/iocable/registry.php'),(1274,'wp-content/plugins/easy-weather-widget/eww/notice/notice.php'),(1275,'wp-content/plugins/easy-weather-widget/eww/settings/open-weather-api.php'),(1276,'wp-content/plugins/easy-weather-widget/eww/settings/settings.php'),(1277,'wp-content/plugins/easy-weather-widget/eww/weather-cache.php'),(1278,'wp-content/plugins/easy-weather-widget/eww/widget.php'),(1279,'wp-content/plugins/easy-weather-widget/external/weather-icons/.bower.json'),(1280,'wp-content/plugins/easy-weather-widget/external/weather-icons/.gitignore'),(1281,'wp-content/plugins/easy-weather-widget/external/weather-icons/README.md'),(1282,'wp-content/plugins/easy-weather-widget/external/weather-icons/bower.json'),(1283,'wp-content/plugins/easy-weather-widget/external/weather-icons/css/weather-icons-wind.css'),(1284,'wp-content/plugins/easy-weather-widget/external/weather-icons/css/weather-icons-wind.min.css'),(1285,'wp-content/plugins/easy-weather-widget/external/weather-icons/css/weather-icons.css'),(1286,'wp-content/plugins/easy-weather-widget/external/weather-icons/css/weather-icons.min.css'),(1287,'wp-content/plugins/easy-weather-widget/external/weather-icons/font/weathericons-regular-webfont.eot'),(1288,'wp-content/plugins/easy-weather-widget/external/weather-icons/font/weathericons-regular-webfont.svg'),(1289,'wp-content/plugins/easy-weather-widget/external/weather-icons/font/weathericons-regular-webfont.ttf'),(1290,'wp-content/plugins/easy-weather-widget/external/weather-icons/font/weathericons-regular-webfont.woff'),(1291,'wp-content/plugins/easy-weather-widget/external/weather-icons/font/weathericons-regular-webfont.woff2'),(1292,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-beaufort.less'),(1293,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-day.less'),(1294,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-direction.less'),(1295,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-misc.less'),(1296,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-moon-aliases.less'),(1297,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-moon.less'),(1298,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-neutral.less'),(1299,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-night.less'),(1300,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-time.less'),(1301,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-wind-aliases.less'),(1302,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-wind-degrees.less'),(1303,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-classes/classes-wind.less'),(1304,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-beaufort.less'),(1305,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-day.less'),(1306,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-direction.less'),(1307,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-misc.less'),(1308,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-moon.less'),(1309,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-neutral.less'),(1310,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-night.less'),(1311,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-time.less'),(1312,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/icon-variables/variables-wind-names.less'),(1313,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/mappings/wi-forecast-io.less'),(1314,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/mappings/wi-owm.less'),(1315,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/mappings/wi-wmo4680.less'),(1316,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/mappings/wi-wunderground.less'),(1317,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/mappings/wi-yahoo.less'),(1318,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons-classes.less'),(1319,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons-core.less'),(1320,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons-variables.less'),(1321,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons-wind.less'),(1322,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons-wind.min.less'),(1323,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons.less'),(1324,'wp-content/plugins/easy-weather-widget/external/weather-icons/less/weather-icons.min.less'),(1325,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-beaufort.scss'),(1326,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-day.scss'),(1327,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-direction.scss'),(1328,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-misc.scss'),(1329,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-moon-aliases.scss'),(1330,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-moon.scss'),(1331,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-neutral.scss'),(1332,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-night.scss'),(1333,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-time.scss'),(1334,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-wind-aliases.scss'),(1335,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-wind-degrees.scss'),(1336,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-classes/classes-wind.scss'),(1337,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-beaufort.scss'),(1338,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-day.scss'),(1339,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-direction.scss'),(1340,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-misc.scss'),(1341,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-moon.scss'),(1342,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-neutral.scss'),(1343,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-night.scss'),(1344,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-time.scss'),(1345,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/icon-variables/variables-wind-names.scss'),(1346,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/mappings/wi-forecast-io.scss'),(1347,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/mappings/wi-owm.scss'),(1348,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/mappings/wi-wmo4680.scss'),(1349,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/mappings/wi-wunderground.scss'),(1350,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/mappings/wi-yahoo.scss'),(1351,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons-classes.scss'),(1352,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons-core.scss'),(1353,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons-variables.scss'),(1354,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons-wind.min.scss'),(1355,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons-wind.scss'),(1356,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons.min.scss'),(1357,'wp-content/plugins/easy-weather-widget/external/weather-icons/sass/weather-icons.scss'),(1358,'wp-content/plugins/easy-weather-widget/external/weather-icons/weather-icons-wind.css'),(1359,'wp-content/plugins/easy-weather-widget/external/weather-icons/weather-icons-wind.min.css'),(1360,'wp-content/plugins/easy-weather-widget/external/weather-icons/weather-icons.css'),(1361,'wp-content/plugins/easy-weather-widget/external/weather-icons/weather-icons.less'),(1362,'wp-content/plugins/easy-weather-widget/external/weather-icons/weather-icons.min.css'),(1363,'wp-content/plugins/easy-weather-widget/external/weather-icons/weather-icons.scss'),(1364,'wp-content/plugins/easy-weather-widget/external/weather-icons/weathericons-regular-webfont.eot'),(1365,'wp-content/plugins/easy-weather-widget/external/weather-icons/weathericons-regular-webfont.svg'),(1366,'wp-content/plugins/easy-weather-widget/external/weather-icons/weathericons-regular-webfont.ttf'),(1367,'wp-content/plugins/easy-weather-widget/external/weather-icons/weathericons-regular-webfont.woff'),(1368,'wp-content/plugins/easy-weather-widget/external/weather-icons/weathericons-regular-webfont.woff2'),(1369,'wp-content/plugins/easy-weather-widget/languages/easy_weather_widget.pot'),(1370,'wp-content/plugins/easy-weather-widget/package.json'),(1371,'wp-content/plugins/easy-weather-widget/readme.txt'),(1372,'wp-content/plugins/easy-weather-widget/sass/main.scss'),(1373,'wp-content/plugins/easy-weather-widget/sass/partials/_imports.scss'),(1374,'wp-content/plugins/easy-weather-widget/sass/partials/_variables.scss'),(1375,'wp-content/plugins/easy-weather-widget/sass/partials/_widget.scss'),(1376,'wp-content/plugins/easy-weather-widget/services.php'),(1377,'wp-content/plugins/easy-weather-widget/settings.php'),(1378,'wp-content/plugins/easy-weather-widget/translate.php'),(1379,'wp-content/plugins/easy-weather-widget/vendor/autoload.php'),(1380,'wp-content/plugins/easy-weather-widget/vendor/composer/ClassLoader.php'),(1381,'wp-content/plugins/easy-weather-widget/vendor/composer/LICENSE'),(1382,'wp-content/plugins/easy-weather-widget/vendor/composer/autoload_classmap.php'),(1383,'wp-content/plugins/easy-weather-widget/vendor/composer/autoload_namespaces.php'),(1384,'wp-content/plugins/easy-weather-widget/vendor/composer/autoload_psr4.php'),(1385,'wp-content/plugins/easy-weather-widget/vendor/composer/autoload_real.php'),(1386,'wp-content/plugins/easy-weather-widget/vendor/composer/autoload_static.php'),(1387,'wp-content/plugins/easy-weather-widget/vendor/composer/installed.json'),(1388,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/.gitignore'),(1389,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/.travis.yml'),(1390,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/CHANGELOG'),(1391,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/LICENSE'),(1392,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/README.rst'),(1393,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/composer.json'),(1394,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/.gitignore'),(1395,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/README.md'),(1396,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/config.m4'),(1397,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/config.w32'),(1398,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/php_pimple.h'),(1399,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/pimple.c'),(1400,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/pimple_compat.h'),(1401,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/001.phpt'),(1402,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/002.phpt'),(1403,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/003.phpt'),(1404,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/004.phpt'),(1405,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/005.phpt'),(1406,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/006.phpt'),(1407,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/007.phpt'),(1408,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/008.phpt'),(1409,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/009.phpt'),(1410,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/010.phpt'),(1411,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/011.phpt'),(1412,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/012.phpt'),(1413,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/013.phpt'),(1414,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/014.phpt'),(1415,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/015.phpt'),(1416,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/016.phpt'),(1417,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/017.phpt'),(1418,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/017_1.phpt'),(1419,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/018.phpt'),(1420,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/019.phpt'),(1421,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/bench.phpb'),(1422,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/ext/pimple/tests/bench_shared.phpb'),(1423,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/phpunit.xml.dist'),(1424,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Container.php'),(1425,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/ServiceProviderInterface.php'),(1426,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Invokable.php'),(1427,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/NonInvokable.php'),(1428,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/PimpleServiceProvider.php'),(1429,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Service.php'),(1430,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Tests/PimpleServiceProviderInterfaceTest.php'),(1431,'wp-content/plugins/easy-weather-widget/vendor/pimple/pimple/src/Pimple/Tests/PimpleTest.php'),(1432,'wp-content/plugins/easy-weather-widget/views/widget.php'),(1433,'wp-content/plugins/easy-wp-smtp/class-easywpsmtp-admin.php'),(1434,'wp-content/plugins/easy-wp-smtp/class-easywpsmtp-gag-mailer.php'),(1435,'wp-content/plugins/easy-wp-smtp/class-easywpsmtp-utils.php'),(1436,'wp-content/plugins/easy-wp-smtp/css/index.html'),(1437,'wp-content/plugins/easy-wp-smtp/css/style.css'),(1438,'wp-content/plugins/easy-wp-smtp/easy-wp-smtp-admin-menu.php'),(1439,'wp-content/plugins/easy-wp-smtp/easy-wp-smtp-utils.php'),(1440,'wp-content/plugins/easy-wp-smtp/easy-wp-smtp.php'),(1441,'wp-content/plugins/easy-wp-smtp/inc/Cryptor.php'),(1442,'wp-content/plugins/easy-wp-smtp/inc/index.html'),(1443,'wp-content/plugins/easy-wp-smtp/index.html'),(1444,'wp-content/plugins/easy-wp-smtp/js/index.html'),(1445,'wp-content/plugins/easy-wp-smtp/js/script.js'),(1446,'wp-content/plugins/easy-wp-smtp/languages/easy-wp-smtp.pot'),(1447,'wp-content/plugins/easy-wp-smtp/languages/index.html'),(1448,'wp-content/plugins/easy-wp-smtp/logs/.htaccess'),(1449,'wp-content/plugins/easy-wp-smtp/logs/index.html'),(1450,'wp-content/plugins/easy-wp-smtp/readme.txt'),(1451,'wp-content/plugins/easy-wp-smtp/screenshot-1.png'),(1452,'wp-content/plugins/easy-wp-smtp/screenshot-2.jpg'),(1453,'wp-content/plugins/elementor/assets/css/admin-rtl.css'),(1454,'wp-content/plugins/elementor/assets/css/admin-rtl.min.css'),(1455,'wp-content/plugins/elementor/assets/css/admin-top-bar-rtl.css'),(1456,'wp-content/plugins/elementor/assets/css/admin-top-bar-rtl.min.css'),(1457,'wp-content/plugins/elementor/assets/css/admin-top-bar.css'),(1458,'wp-content/plugins/elementor/assets/css/admin-top-bar.min.css'),(1459,'wp-content/plugins/elementor/assets/css/admin.css'),(1460,'wp-content/plugins/elementor/assets/css/admin.min.css'),(1461,'wp-content/plugins/elementor/assets/css/app-base-rtl.css'),(1462,'wp-content/plugins/elementor/assets/css/app-base-rtl.min.css'),(1463,'wp-content/plugins/elementor/assets/css/app-base.css'),(1464,'wp-content/plugins/elementor/assets/css/app-base.min.css'),(1465,'wp-content/plugins/elementor/assets/css/app-rtl.css'),(1466,'wp-content/plugins/elementor/assets/css/app-rtl.min.css'),(1467,'wp-content/plugins/elementor/assets/css/app.css'),(1468,'wp-content/plugins/elementor/assets/css/app.min.css'),(1469,'wp-content/plugins/elementor/assets/css/common-rtl.css'),(1470,'wp-content/plugins/elementor/assets/css/common-rtl.min.css'),(1471,'wp-content/plugins/elementor/assets/css/common.css'),(1472,'wp-content/plugins/elementor/assets/css/common.min.css'),(1473,'wp-content/plugins/elementor/assets/css/editor-dark-mode.css'),(1474,'wp-content/plugins/elementor/assets/css/editor-dark-mode.min.css'),(1475,'wp-content/plugins/elementor/assets/css/editor-preview-legacy-rtl.css'),(1476,'wp-content/plugins/elementor/assets/css/editor-preview-legacy-rtl.min.css'),(1477,'wp-content/plugins/elementor/assets/css/editor-preview-legacy.css'),(1478,'wp-content/plugins/elementor/assets/css/editor-preview-legacy.min.css'),(1479,'wp-content/plugins/elementor/assets/css/editor-preview-rtl.css'),(1480,'wp-content/plugins/elementor/assets/css/editor-preview-rtl.min.css'),(1481,'wp-content/plugins/elementor/assets/css/editor-preview.css'),(1482,'wp-content/plugins/elementor/assets/css/editor-preview.min.css'),(1483,'wp-content/plugins/elementor/assets/css/editor-rtl.css'),(1484,'wp-content/plugins/elementor/assets/css/editor-rtl.min.css'),(1485,'wp-content/plugins/elementor/assets/css/editor.css'),(1486,'wp-content/plugins/elementor/assets/css/editor.min.css'),(1487,'wp-content/plugins/elementor/assets/css/frontend-legacy-rtl.css'),(1488,'wp-content/plugins/elementor/assets/css/frontend-legacy-rtl.min.css'),(1489,'wp-content/plugins/elementor/assets/css/frontend-legacy.css'),(1490,'wp-content/plugins/elementor/assets/css/frontend-legacy.min.css'),(1491,'wp-content/plugins/elementor/assets/css/frontend-lite-rtl.css'),(1492,'wp-content/plugins/elementor/assets/css/frontend-lite-rtl.min.css'),(1493,'wp-content/plugins/elementor/assets/css/frontend-lite.css'),(1494,'wp-content/plugins/elementor/assets/css/frontend-lite.min.css'),(1495,'wp-content/plugins/elementor/assets/css/frontend-rtl.css'),(1496,'wp-content/plugins/elementor/assets/css/frontend-rtl.min.css'),(1497,'wp-content/plugins/elementor/assets/css/frontend.css'),(1498,'wp-content/plugins/elementor/assets/css/frontend.min.css'),(1499,'wp-content/plugins/elementor/assets/css/modules/container-converter/editor.css'),(1500,'wp-content/plugins/elementor/assets/css/templates/frontend-legacy-rtl.css'),(1501,'wp-content/plugins/elementor/assets/css/templates/frontend-legacy-rtl.min.css'),(1502,'wp-content/plugins/elementor/assets/css/templates/frontend-legacy.css'),(1503,'wp-content/plugins/elementor/assets/css/templates/frontend-legacy.min.css'),(1504,'wp-content/plugins/elementor/assets/css/templates/frontend-lite-rtl.css'),(1505,'wp-content/plugins/elementor/assets/css/templates/frontend-lite-rtl.min.css'),(1506,'wp-content/plugins/elementor/assets/css/templates/frontend-lite.css'),(1507,'wp-content/plugins/elementor/assets/css/templates/frontend-lite.min.css'),(1508,'wp-content/plugins/elementor/assets/css/templates/frontend-rtl.css'),(1509,'wp-content/plugins/elementor/assets/css/templates/frontend-rtl.min.css'),(1510,'wp-content/plugins/elementor/assets/css/templates/frontend.css'),(1511,'wp-content/plugins/elementor/assets/css/templates/frontend.min.css'),(1512,'wp-content/plugins/elementor/assets/css/templates/widget-accordion-rtl.min.css'),(1513,'wp-content/plugins/elementor/assets/css/templates/widget-accordion.min.css'),(1514,'wp-content/plugins/elementor/assets/css/templates/widget-alert-rtl.min.css'),(1515,'wp-content/plugins/elementor/assets/css/templates/widget-alert.min.css'),(1516,'wp-content/plugins/elementor/assets/css/templates/widget-icon-box-rtl.min.css'),(1517,'wp-content/plugins/elementor/assets/css/templates/widget-icon-box.min.css'),(1518,'wp-content/plugins/elementor/assets/css/templates/widget-icon-list-rtl.min.css'),(1519,'wp-content/plugins/elementor/assets/css/templates/widget-icon-list.min.css'),(1520,'wp-content/plugins/elementor/assets/css/templates/widget-image-box-rtl.min.css'),(1521,'wp-content/plugins/elementor/assets/css/templates/widget-image-box.min.css'),(1522,'wp-content/plugins/elementor/assets/css/templates/widget-image-gallery-rtl.min.css'),(1523,'wp-content/plugins/elementor/assets/css/templates/widget-image-gallery.min.css'),(1524,'wp-content/plugins/elementor/assets/css/templates/widget-progress-rtl.min.css'),(1525,'wp-content/plugins/elementor/assets/css/templates/widget-progress.min.css'),(1526,'wp-content/plugins/elementor/assets/css/templates/widget-star-rating-rtl.min.css'),(1527,'wp-content/plugins/elementor/assets/css/templates/widget-star-rating.min.css'),(1528,'wp-content/plugins/elementor/assets/css/templates/widget-tabs-rtl.min.css'),(1529,'wp-content/plugins/elementor/assets/css/templates/widget-tabs.min.css'),(1530,'wp-content/plugins/elementor/assets/css/templates/widget-toggle-rtl.min.css'),(1531,'wp-content/plugins/elementor/assets/css/templates/widget-toggle.min.css'),(1532,'wp-content/plugins/elementor/assets/css/widget-accordion-rtl.min.css'),(1533,'wp-content/plugins/elementor/assets/css/widget-accordion.min.css'),(1534,'wp-content/plugins/elementor/assets/css/widget-alert-rtl.min.css'),(1535,'wp-content/plugins/elementor/assets/css/widget-alert.min.css'),(1536,'wp-content/plugins/elementor/assets/css/widget-counter-rtl.min.css'),(1537,'wp-content/plugins/elementor/assets/css/widget-counter.min.css'),(1538,'wp-content/plugins/elementor/assets/css/widget-divider-rtl.min.css'),(1539,'wp-content/plugins/elementor/assets/css/widget-divider.min.css'),(1540,'wp-content/plugins/elementor/assets/css/widget-google_maps-rtl.min.css'),(1541,'wp-content/plugins/elementor/assets/css/widget-google_maps.min.css'),(1542,'wp-content/plugins/elementor/assets/css/widget-heading-rtl.min.css'),(1543,'wp-content/plugins/elementor/assets/css/widget-heading.min.css'),(1544,'wp-content/plugins/elementor/assets/css/widget-icon-box-rtl.min.css'),(1545,'wp-content/plugins/elementor/assets/css/widget-icon-box.min.css'),(1546,'wp-content/plugins/elementor/assets/css/widget-icon-list-rtl.min.css'),(1547,'wp-content/plugins/elementor/assets/css/widget-icon-list.min.css'),(1548,'wp-content/plugins/elementor/assets/css/widget-image-box-rtl.min.css'),(1549,'wp-content/plugins/elementor/assets/css/widget-image-box.min.css'),(1550,'wp-content/plugins/elementor/assets/css/widget-image-carousel-rtl.min.css'),(1551,'wp-content/plugins/elementor/assets/css/widget-image-carousel.min.css'),(1552,'wp-content/plugins/elementor/assets/css/widget-image-gallery-rtl.min.css'),(1553,'wp-content/plugins/elementor/assets/css/widget-image-gallery.min.css'),(1554,'wp-content/plugins/elementor/assets/css/widget-image-rtl.min.css'),(1555,'wp-content/plugins/elementor/assets/css/widget-image.min.css'),(1556,'wp-content/plugins/elementor/assets/css/widget-menu-anchor-rtl.min.css'),(1557,'wp-content/plugins/elementor/assets/css/widget-menu-anchor.min.css'),(1558,'wp-content/plugins/elementor/assets/css/widget-progress-rtl.min.css'),(1559,'wp-content/plugins/elementor/assets/css/widget-progress.min.css'),(1560,'wp-content/plugins/elementor/assets/css/widget-social-icons-rtl.min.css'),(1561,'wp-content/plugins/elementor/assets/css/widget-social-icons.min.css'),(1562,'wp-content/plugins/elementor/assets/css/widget-spacer-rtl.min.css'),(1563,'wp-content/plugins/elementor/assets/css/widget-spacer.min.css'),(1564,'wp-content/plugins/elementor/assets/css/widget-star-rating-rtl.min.css'),(1565,'wp-content/plugins/elementor/assets/css/widget-star-rating.min.css'),(1566,'wp-content/plugins/elementor/assets/css/widget-tabs-rtl.min.css'),(1567,'wp-content/plugins/elementor/assets/css/widget-tabs.min.css'),(1568,'wp-content/plugins/elementor/assets/css/widget-testimonial-rtl.min.css'),(1569,'wp-content/plugins/elementor/assets/css/widget-testimonial.min.css'),(1570,'wp-content/plugins/elementor/assets/css/widget-text-editor-rtl.min.css'),(1571,'wp-content/plugins/elementor/assets/css/widget-text-editor.min.css'),(1572,'wp-content/plugins/elementor/assets/css/widget-toggle-rtl.min.css'),(1573,'wp-content/plugins/elementor/assets/css/widget-toggle.min.css'),(1574,'wp-content/plugins/elementor/assets/css/widget-video-rtl.min.css'),(1575,'wp-content/plugins/elementor/assets/css/widget-video.min.css'),(1576,'wp-content/plugins/elementor/assets/data/responsive-widgets.json'),(1577,'wp-content/plugins/elementor/assets/images/ajax-loader.gif'),(1578,'wp-content/plugins/elementor/assets/images/app/onboarding/Blank_Canvas.svg'),(1579,'wp-content/plugins/elementor/assets/images/app/onboarding/Blank_Preview.jpg'),(1580,'wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Account.svg'),(1581,'wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Hello.svg'),(1582,'wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Setup.svg'),(1583,'wp-content/plugins/elementor/assets/images/app/onboarding/Library.svg'),(1584,'wp-content/plugins/elementor/assets/images/app/site-editor/archive.svg'),(1585,'wp-content/plugins/elementor/assets/images/app/site-editor/error-404.svg'),(1586,'wp-content/plugins/elementor/assets/images/app/site-editor/footer.svg'),(1587,'wp-content/plugins/elementor/assets/images/app/site-editor/header.svg'),(1588,'wp-content/plugins/elementor/assets/images/app/site-editor/product.svg'),(1589,'wp-content/plugins/elementor/assets/images/app/site-editor/products.svg'),(1590,'wp-content/plugins/elementor/assets/images/app/site-editor/search-results.svg'),(1591,'wp-content/plugins/elementor/assets/images/app/site-editor/single-page.svg'),(1592,'wp-content/plugins/elementor/assets/images/app/site-editor/single-post.svg'),(1593,'wp-content/plugins/elementor/assets/images/blur.png'),(1594,'wp-content/plugins/elementor/assets/images/contrast.png'),(1595,'wp-content/plugins/elementor/assets/images/eyedropper.svg'),(1596,'wp-content/plugins/elementor/assets/images/go-pro-wp-dashboard.svg'),(1597,'wp-content/plugins/elementor/assets/images/go-pro.svg'),(1598,'wp-content/plugins/elementor/assets/images/information.svg'),(1599,'wp-content/plugins/elementor/assets/images/library-connect/left-1.png'),(1600,'wp-content/plugins/elementor/assets/images/library-connect/left-2.png'),(1601,'wp-content/plugins/elementor/assets/images/library-connect/right-1.png'),(1602,'wp-content/plugins/elementor/assets/images/library-connect/right-2.png'),(1603,'wp-content/plugins/elementor/assets/images/logo-icon.png'),(1604,'wp-content/plugins/elementor/assets/images/logo-panel.svg'),(1605,'wp-content/plugins/elementor/assets/images/logo-platform.svg'),(1606,'wp-content/plugins/elementor/assets/images/no-search-results.svg'),(1607,'wp-content/plugins/elementor/assets/images/placeholder.png'),(1608,'wp-content/plugins/elementor/assets/js/04f4d467c8355e0cce98.bundle.js'),(1609,'wp-content/plugins/elementor/assets/js/06ad222c8807f0a951da.bundle.js'),(1610,'wp-content/plugins/elementor/assets/js/08d1cbe58c0b0bcb962d.bundle.js'),(1611,'wp-content/plugins/elementor/assets/js/186b2d7ee7ced8771b23.bundle.js'),(1612,'wp-content/plugins/elementor/assets/js/2a775af436b1a0d06b1d.bundle.js'),(1613,'wp-content/plugins/elementor/assets/js/332fad402f0e9760e45f.bundle.js'),(1614,'wp-content/plugins/elementor/assets/js/3d9686bea0cd5be6e707.bundle.js'),(1615,'wp-content/plugins/elementor/assets/js/5144b4f922b4b77e2d1f.bundle.min.js'),(1616,'wp-content/plugins/elementor/assets/js/6b76acc9eaf52001d003.bundle.js'),(1617,'wp-content/plugins/elementor/assets/js/accordion.1840403ce81de408c749.bundle.min.js'),(1618,'wp-content/plugins/elementor/assets/js/accordion.4d3ad59e593fbb4bbbf2.bundle.js'),(1619,'wp-content/plugins/elementor/assets/js/accordion.5824c4bc9e26d54f2918.bundle.js'),(1620,'wp-content/plugins/elementor/assets/js/accordion.65404faba4ceb9d9d0db.bundle.min.js'),(1621,'wp-content/plugins/elementor/assets/js/accordion.839112600fade8979d16.bundle.min.js'),(1622,'wp-content/plugins/elementor/assets/js/accordion.8676521a2e6ad8c65c84.bundle.min.js'),(1623,'wp-content/plugins/elementor/assets/js/accordion.959b6d3705116b2a55b1.bundle.min.js'),(1624,'wp-content/plugins/elementor/assets/js/accordion.a037e351fac33e9c9dfc.bundle.js'),(1625,'wp-content/plugins/elementor/assets/js/accordion.b68e6c976682017e4ff2.bundle.min.js'),(1626,'wp-content/plugins/elementor/assets/js/accordion.d2a56deea36e79f3c000.bundle.js'),(1627,'wp-content/plugins/elementor/assets/js/accordion.e9e0c47570d3bc2ea472.bundle.js'),(1628,'wp-content/plugins/elementor/assets/js/accordion.fb811bbb2beff11fae3c.bundle.min.js'),(1629,'wp-content/plugins/elementor/assets/js/admin-bar.js'),(1630,'wp-content/plugins/elementor/assets/js/admin-bar.min.js'),(1631,'wp-content/plugins/elementor/assets/js/admin-feedback.js'),(1632,'wp-content/plugins/elementor/assets/js/admin-feedback.min.js'),(1633,'wp-content/plugins/elementor/assets/js/admin-modules.js'),(1634,'wp-content/plugins/elementor/assets/js/admin-modules.min.js'),(1635,'wp-content/plugins/elementor/assets/js/admin-top-bar.js'),(1636,'wp-content/plugins/elementor/assets/js/admin-top-bar.min.js'),(1637,'wp-content/plugins/elementor/assets/js/admin.js'),(1638,'wp-content/plugins/elementor/assets/js/admin.min.js'),(1639,'wp-content/plugins/elementor/assets/js/alert.124c2442b8a696597f9e.bundle.min.js'),(1640,'wp-content/plugins/elementor/assets/js/alert.170eb40d830a3ae2d4a2.bundle.js'),(1641,'wp-content/plugins/elementor/assets/js/alert.1ddc787a09e65acb8bd5.bundle.js'),(1642,'wp-content/plugins/elementor/assets/js/alert.85332a4bfb582d516461.bundle.js'),(1643,'wp-content/plugins/elementor/assets/js/alert.cbc2a0fee74ee3ed0419.bundle.min.js'),(1644,'wp-content/plugins/elementor/assets/js/alert.f04b9d16129bc8aa4cdc.bundle.js'),(1645,'wp-content/plugins/elementor/assets/js/alert.f4e7a6df1283698dea78.bundle.min.js'),(1646,'wp-content/plugins/elementor/assets/js/app-loader.js'),(1647,'wp-content/plugins/elementor/assets/js/app-loader.min.js'),(1648,'wp-content/plugins/elementor/assets/js/app-packages.js'),(1649,'wp-content/plugins/elementor/assets/js/app-packages.min.js'),(1650,'wp-content/plugins/elementor/assets/js/app.js'),(1651,'wp-content/plugins/elementor/assets/js/app.min.js'),(1652,'wp-content/plugins/elementor/assets/js/app.min.js.LICENSE.txt'),(1653,'wp-content/plugins/elementor/assets/js/b5be57139d4edd0d5633.bundle.js'),(1654,'wp-content/plugins/elementor/assets/js/b652ef4fbfb3884eba25.bundle.js'),(1655,'wp-content/plugins/elementor/assets/js/b97f47714e4b947a72df.bundle.min.js'),(1656,'wp-content/plugins/elementor/assets/js/beta-tester.js'),(1657,'wp-content/plugins/elementor/assets/js/beta-tester.min.js'),(1658,'wp-content/plugins/elementor/assets/js/ca765d3d36b3dc8d6a1b.bundle.min.js'),(1659,'wp-content/plugins/elementor/assets/js/common-modules.js'),(1660,'wp-content/plugins/elementor/assets/js/common-modules.min.js'),(1661,'wp-content/plugins/elementor/assets/js/common.js'),(1662,'wp-content/plugins/elementor/assets/js/common.min.js'),(1663,'wp-content/plugins/elementor/assets/js/container-converter.js'),(1664,'wp-content/plugins/elementor/assets/js/container-converter.min.js'),(1665,'wp-content/plugins/elementor/assets/js/container.e026b16a99db8a3987c9.bundle.min.js'),(1666,'wp-content/plugins/elementor/assets/js/container.f3a37a5bf3c787312748.bundle.js'),(1667,'wp-content/plugins/elementor/assets/js/counter.02cef29c589e742d4c8c.bundle.min.js'),(1668,'wp-content/plugins/elementor/assets/js/counter.1bf6011c2ab9506880c2.bundle.min.js'),(1669,'wp-content/plugins/elementor/assets/js/counter.2ca7575441c085aa54eb.bundle.js'),(1670,'wp-content/plugins/elementor/assets/js/counter.48db25dfc685896cf5c2.bundle.min.js'),(1671,'wp-content/plugins/elementor/assets/js/counter.651270dd8ea8d31d348e.bundle.js'),(1672,'wp-content/plugins/elementor/assets/js/counter.699093eac935b541cdfe.bundle.js'),(1673,'wp-content/plugins/elementor/assets/js/counter.99f87b466b69ef909f39.bundle.min.js'),(1674,'wp-content/plugins/elementor/assets/js/counter.b452600865ffc51a6ea0.bundle.js'),(1675,'wp-content/plugins/elementor/assets/js/counter.c75eea9549b9f8026ad8.bundle.js'),(1676,'wp-content/plugins/elementor/assets/js/d44a57c594ce7771dd50.bundle.min.js'),(1677,'wp-content/plugins/elementor/assets/js/e304e36749de7c8a2673.bundle.js'),(1678,'wp-content/plugins/elementor/assets/js/editor-document.js'),(1679,'wp-content/plugins/elementor/assets/js/editor-document.min.js'),(1680,'wp-content/plugins/elementor/assets/js/editor-modules.js'),(1681,'wp-content/plugins/elementor/assets/js/editor-modules.min.js'),(1682,'wp-content/plugins/elementor/assets/js/editor.js'),(1683,'wp-content/plugins/elementor/assets/js/editor.min.js'),(1684,'wp-content/plugins/elementor/assets/js/eef3c049bd1b690f0777.bundle.min.js'),(1685,'wp-content/plugins/elementor/assets/js/elementor-admin-bar.js'),(1686,'wp-content/plugins/elementor/assets/js/elementor-admin-bar.min.js'),(1687,'wp-content/plugins/elementor/assets/js/fe4cf752908671676148.bundle.min.js'),(1688,'wp-content/plugins/elementor/assets/js/frontend-modules.js'),(1689,'wp-content/plugins/elementor/assets/js/frontend-modules.min.js'),(1690,'wp-content/plugins/elementor/assets/js/frontend.js'),(1691,'wp-content/plugins/elementor/assets/js/frontend.min.js'),(1692,'wp-content/plugins/elementor/assets/js/gutenberg.js'),(1693,'wp-content/plugins/elementor/assets/js/gutenberg.min.js'),(1694,'wp-content/plugins/elementor/assets/js/image-carousel.024943eec9daaabea9ff.bundle.js'),(1695,'wp-content/plugins/elementor/assets/js/image-carousel.11194c4f02ba1ff5ad84.bundle.js'),(1696,'wp-content/plugins/elementor/assets/js/image-carousel.1b452908acbb55e3c0c3.bundle.js'),(1697,'wp-content/plugins/elementor/assets/js/image-carousel.69ddd4d316491de45fe3.bundle.js'),(1698,'wp-content/plugins/elementor/assets/js/image-carousel.a219e39506aaca30e58d.bundle.min.js'),(1699,'wp-content/plugins/elementor/assets/js/image-carousel.a28b09480555b287b42a.bundle.js'),(1700,'wp-content/plugins/elementor/assets/js/image-carousel.b69ea9450ea7e942e017.bundle.js'),(1701,'wp-content/plugins/elementor/assets/js/image-carousel.b8262c12a4b2954dac64.bundle.min.js'),(1702,'wp-content/plugins/elementor/assets/js/image-carousel.bd7aab19c9d934b7c505.bundle.min.js'),(1703,'wp-content/plugins/elementor/assets/js/image-carousel.db284b09c0f8a8f1c44d.bundle.min.js'),(1704,'wp-content/plugins/elementor/assets/js/image-carousel.f9dc73796adfb21bb945.bundle.min.js'),(1705,'wp-content/plugins/elementor/assets/js/kit-library.192658d419d728def980.bundle.js'),(1706,'wp-content/plugins/elementor/assets/js/kit-library.4391d962692aeecda55f.bundle.js'),(1707,'wp-content/plugins/elementor/assets/js/kit-library.4a93dd22359db6c3e7f9.bundle.min.js'),(1708,'wp-content/plugins/elementor/assets/js/kit-library.4b8e9bb062f992326c78.bundle.js'),(1709,'wp-content/plugins/elementor/assets/js/kit-library.4eda348f8f5f0f19b874.bundle.js'),(1710,'wp-content/plugins/elementor/assets/js/kit-library.5a50da4cd15721a1e2c8.bundle.min.js'),(1711,'wp-content/plugins/elementor/assets/js/kit-library.7543b3ffe24a282ade79.bundle.min.js'),(1712,'wp-content/plugins/elementor/assets/js/kit-library.79bbce90dedf8ef30a5c.bundle.js'),(1713,'wp-content/plugins/elementor/assets/js/kit-library.7bad398eee7cff3ed84e.bundle.min.js'),(1714,'wp-content/plugins/elementor/assets/js/kit-library.c4cfb8ed94556f2a5f03.bundle.min.js'),(1715,'wp-content/plugins/elementor/assets/js/kit-library.cec432a3607640dc0ff8.bundle.js'),(1716,'wp-content/plugins/elementor/assets/js/kit-library.d3688acfaab28676a99c.bundle.js'),(1717,'wp-content/plugins/elementor/assets/js/kit-library.e61c291a7b6bbc946eeb.bundle.min.js'),(1718,'wp-content/plugins/elementor/assets/js/kit-library.ff8b7666b0383d3520cf.bundle.min.js'),(1719,'wp-content/plugins/elementor/assets/js/lightbox.2231a3a329cf455714aa.bundle.min.js'),(1720,'wp-content/plugins/elementor/assets/js/lightbox.23e39ac2830dfb4ca6a7.bundle.min.js'),(1721,'wp-content/plugins/elementor/assets/js/lightbox.2b2c155d6ec60974d8c4.bundle.min.js'),(1722,'wp-content/plugins/elementor/assets/js/lightbox.32bd6e1d10abf17b8ef7.bundle.min.js'),(1723,'wp-content/plugins/elementor/assets/js/lightbox.48b7d7dfa0c8ff9ab7ae.bundle.js'),(1724,'wp-content/plugins/elementor/assets/js/lightbox.4edaddeb1ee4dc2db60f.bundle.min.js'),(1725,'wp-content/plugins/elementor/assets/js/lightbox.543c64a356c981ed0346.bundle.min.js'),(1726,'wp-content/plugins/elementor/assets/js/lightbox.6d271ee2884330dee283.bundle.js'),(1727,'wp-content/plugins/elementor/assets/js/lightbox.8a1eb52b79d1a1dbbdfc.bundle.js'),(1728,'wp-content/plugins/elementor/assets/js/lightbox.8c3d45f71a9a1ecd69fc.bundle.js'),(1729,'wp-content/plugins/elementor/assets/js/lightbox.adc17e3be937246718ee.bundle.js'),(1730,'wp-content/plugins/elementor/assets/js/lightbox.b6f606e0fc3fa233788b.bundle.js'),(1731,'wp-content/plugins/elementor/assets/js/lightbox.c3bb4b95635c5e3ad984.bundle.min.js'),(1732,'wp-content/plugins/elementor/assets/js/lightbox.c404a8ad323d6ea31d40.bundle.min.js'),(1733,'wp-content/plugins/elementor/assets/js/lightbox.d4a78ec3282d5785504d.bundle.js'),(1734,'wp-content/plugins/elementor/assets/js/lightbox.ebe1fa827623232b9cd6.bundle.js'),(1735,'wp-content/plugins/elementor/assets/js/lightbox.fe7d7981b2527f42f605.bundle.js'),(1736,'wp-content/plugins/elementor/assets/js/new-template.js'),(1737,'wp-content/plugins/elementor/assets/js/new-template.min.js'),(1738,'wp-content/plugins/elementor/assets/js/onboarding.6a289d52dcf568139a7d.bundle.min.js'),(1739,'wp-content/plugins/elementor/assets/js/onboarding.eff243c8052ee52943bc.bundle.js'),(1740,'wp-content/plugins/elementor/assets/js/preloaded-elements-handlers.js'),(1741,'wp-content/plugins/elementor/assets/js/preloaded-elements-handlers.min.js'),(1742,'wp-content/plugins/elementor/assets/js/preloaded-modules.js'),(1743,'wp-content/plugins/elementor/assets/js/preloaded-modules.min.js'),(1744,'wp-content/plugins/elementor/assets/js/preview.js'),(1745,'wp-content/plugins/elementor/assets/js/preview.min.js'),(1746,'wp-content/plugins/elementor/assets/js/progress.2f915ff369cd52d14d21.bundle.min.js'),(1747,'wp-content/plugins/elementor/assets/js/progress.4079971c3240c226b858.bundle.min.js'),(1748,'wp-content/plugins/elementor/assets/js/progress.5306267e0436c8de4985.bundle.js'),(1749,'wp-content/plugins/elementor/assets/js/progress.62211c8098d91fc19c5f.bundle.js'),(1750,'wp-content/plugins/elementor/assets/js/progress.ca55d33bb06cee4e6f02.bundle.min.js'),(1751,'wp-content/plugins/elementor/assets/js/progress.f88c14a27e3da5dcc9d8.bundle.js'),(1752,'wp-content/plugins/elementor/assets/js/progress.fdb2dcfacfca36a9033a.bundle.js'),(1753,'wp-content/plugins/elementor/assets/js/tabs.15f07d9d6dd3819c0562.bundle.min.js'),(1754,'wp-content/plugins/elementor/assets/js/tabs.37d5b4877cdb51ea91e9.bundle.min.js'),(1755,'wp-content/plugins/elementor/assets/js/tabs.3cbd8fbb28141b6e445d.bundle.min.js'),(1756,'wp-content/plugins/elementor/assets/js/tabs.49f0a48abbd6fc4749fb.bundle.min.js'),(1757,'wp-content/plugins/elementor/assets/js/tabs.50864c9249aa8a87126a.bundle.min.js'),(1758,'wp-content/plugins/elementor/assets/js/tabs.919de637ad8cbee0f46d.bundle.js'),(1759,'wp-content/plugins/elementor/assets/js/tabs.973c14c2ee401e66e192.bundle.js'),(1760,'wp-content/plugins/elementor/assets/js/tabs.ad5db6c2e7715f4a853c.bundle.min.js'),(1761,'wp-content/plugins/elementor/assets/js/tabs.b7bd957161644e810d53.bundle.js'),(1762,'wp-content/plugins/elementor/assets/js/tabs.cd05b61e107cc58d1be9.bundle.min.js'),(1763,'wp-content/plugins/elementor/assets/js/tabs.dd06203f51f30e1494d2.bundle.js'),(1764,'wp-content/plugins/elementor/assets/js/tabs.e9db15b9aa8a58bcf375.bundle.js'),(1765,'wp-content/plugins/elementor/assets/js/text-editor.00896c8bf19481643415.bundle.js'),(1766,'wp-content/plugins/elementor/assets/js/text-editor.289ae80d76f0c5abea44.bundle.min.js'),(1767,'wp-content/plugins/elementor/assets/js/text-editor.533215eb763ebfb3a70c.bundle.js'),(1768,'wp-content/plugins/elementor/assets/js/text-editor.723f26db489b3ec260a7.bundle.js'),(1769,'wp-content/plugins/elementor/assets/js/text-editor.9efe2dca043f0f618897.bundle.min.js'),(1770,'wp-content/plugins/elementor/assets/js/text-editor.a8434931ecdcd5ff7589.bundle.js'),(1771,'wp-content/plugins/elementor/assets/js/text-editor.aed713532404e88b2deb.bundle.min.js'),(1772,'wp-content/plugins/elementor/assets/js/text-path.0688aa8e3e86381ca6a7.bundle.min.js'),(1773,'wp-content/plugins/elementor/assets/js/text-path.15d47ed8e5e3031f9610.bundle.js'),(1774,'wp-content/plugins/elementor/assets/js/text-path.15daa9710b97d5cf86b9.bundle.min.js'),(1775,'wp-content/plugins/elementor/assets/js/text-path.4ba996cf50a07303b250.bundle.min.js'),(1776,'wp-content/plugins/elementor/assets/js/text-path.9870c437945d934efed3.bundle.js'),(1777,'wp-content/plugins/elementor/assets/js/text-path.9b3ece1b692d34d012b5.bundle.js'),(1778,'wp-content/plugins/elementor/assets/js/text-path.9f18ebdea5ac00d653e5.bundle.min.js'),(1779,'wp-content/plugins/elementor/assets/js/text-path.a25111b02271055ec181.bundle.js'),(1780,'wp-content/plugins/elementor/assets/js/text-path.fb1264c8db00088e9b55.bundle.js'),(1781,'wp-content/plugins/elementor/assets/js/toggle.0a46fb67671fe53a2bb0.bundle.min.js'),(1782,'wp-content/plugins/elementor/assets/js/toggle.0b9ce025bedc8ed28c59.bundle.min.js'),(1783,'wp-content/plugins/elementor/assets/js/toggle.1aca60f44e355cb43256.bundle.min.js'),(1784,'wp-content/plugins/elementor/assets/js/toggle.56f8ace4b1e830c02fc5.bundle.min.js'),(1785,'wp-content/plugins/elementor/assets/js/toggle.5e8aae8d1c1e897e9b4e.bundle.js'),(1786,'wp-content/plugins/elementor/assets/js/toggle.66e1aea86557ee6b7fd9.bundle.js'),(1787,'wp-content/plugins/elementor/assets/js/toggle.720329fccfaf33458a48.bundle.js'),(1788,'wp-content/plugins/elementor/assets/js/toggle.a162573f28e7250ff5ea.bundle.js'),(1789,'wp-content/plugins/elementor/assets/js/toggle.a68998644ff1108cb9c7.bundle.min.js'),(1790,'wp-content/plugins/elementor/assets/js/toggle.ac82dafbd4b75739bfe6.bundle.min.js'),(1791,'wp-content/plugins/elementor/assets/js/toggle.b64b2f116c93ef441684.bundle.min.js'),(1792,'wp-content/plugins/elementor/assets/js/toggle.f62080504158ea96ac4c.bundle.js'),(1793,'wp-content/plugins/elementor/assets/js/video.0b0142741907d3f9479c.bundle.js'),(1794,'wp-content/plugins/elementor/assets/js/video.0c909a3169306097e21d.bundle.min.js'),(1795,'wp-content/plugins/elementor/assets/js/video.1a44ef088849d6949ada.bundle.min.js'),(1796,'wp-content/plugins/elementor/assets/js/video.23e1cdebdfd14868267e.bundle.js'),(1797,'wp-content/plugins/elementor/assets/js/video.255c225d20f04576d1bf.bundle.js'),(1798,'wp-content/plugins/elementor/assets/js/video.2758712351ae04e49a20.bundle.min.js'),(1799,'wp-content/plugins/elementor/assets/js/video.2be65474f4a78954309a.bundle.min.js'),(1800,'wp-content/plugins/elementor/assets/js/video.4867cd778fc28aa3d2f9.bundle.js'),(1801,'wp-content/plugins/elementor/assets/js/video.505da250f982d8f15187.bundle.min.js'),(1802,'wp-content/plugins/elementor/assets/js/video.509fb0e07b97e0f603d7.bundle.js'),(1803,'wp-content/plugins/elementor/assets/js/video.538c918ef3a630d7c0e6.bundle.js'),(1804,'wp-content/plugins/elementor/assets/js/video.7eb6cacb5dcc1e3e8551.bundle.js'),(1805,'wp-content/plugins/elementor/assets/js/video.857532146b3808241d1e.bundle.min.js'),(1806,'wp-content/plugins/elementor/assets/js/video.a67431c1becbede4d80c.bundle.js'),(1807,'wp-content/plugins/elementor/assets/js/video.cadfb803f731eda62363.bundle.min.js'),(1808,'wp-content/plugins/elementor/assets/js/video.d86bfd0676264945e968.bundle.min.js'),(1809,'wp-content/plugins/elementor/assets/js/video.dce2e6c0483ecadec74b.bundle.js'),(1810,'wp-content/plugins/elementor/assets/js/web-cli.js'),(1811,'wp-content/plugins/elementor/assets/js/web-cli.min.js'),(1812,'wp-content/plugins/elementor/assets/js/webpack.runtime.js'),(1813,'wp-content/plugins/elementor/assets/js/webpack.runtime.min.js'),(1814,'wp-content/plugins/elementor/assets/js/wp-audio.2332b719d144261993a3.bundle.min.js'),(1815,'wp-content/plugins/elementor/assets/js/wp-audio.75f0ced143febb8cd31a.bundle.min.js'),(1816,'wp-content/plugins/elementor/assets/js/wp-audio.8d458e51b4543ed99c04.bundle.js'),(1817,'wp-content/plugins/elementor/assets/js/wp-audio.de344657de8b792ed9b0.bundle.js'),(1818,'wp-content/plugins/elementor/assets/lib/animate.css/animate-config.json'),(1819,'wp-content/plugins/elementor/assets/lib/animate.css/animate.css'),(1820,'wp-content/plugins/elementor/assets/lib/animate.css/animate.min.css'),(1821,'wp-content/plugins/elementor/assets/lib/animations/animations.min.css'),(1822,'wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.js'),(1823,'wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js'),(1824,'wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.js'),(1825,'wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.min.js'),(1826,'wp-content/plugins/elementor/assets/lib/color-thief/color-thief.min.js'),(1827,'wp-content/plugins/elementor/assets/lib/dialog/dialog.js'),(1828,'wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js'),(1829,'wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.css'),(1830,'wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.min.css'),(1831,'wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.js'),(1832,'wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.min.js'),(1833,'wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.css'),(1834,'wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.min.css'),(1835,'wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.js'),(1836,'wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.min.js'),(1837,'wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.css'),(1838,'wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css'),(1839,'wp-content/plugins/elementor/assets/lib/eicons/eicons.json'),(1840,'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot'),(1841,'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg'),(1842,'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf'),(1843,'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff'),(1844,'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2'),(1845,'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.css'),(1846,'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.js'),(1847,'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.css'),(1848,'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.js'),(1849,'wp-content/plugins/elementor/assets/lib/font-awesome/css/all.css'),(1850,'wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css'),(1851,'wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css'),(1852,'wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css'),(1853,'wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.css'),(1854,'wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css'),(1855,'wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css'),(1856,'wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css'),(1857,'wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.css'),(1858,'wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css'),(1859,'wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css'),(1860,'wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css'),(1861,'wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.css'),(1862,'wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.min.css'),(1863,'wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.css'),(1864,'wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css'),(1865,'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/FontAwesome.otf'),(1866,'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.eot'),(1867,'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.svg'),(1868,'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.ttf'),(1869,'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff'),(1870,'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff2'),(1871,'wp-content/plugins/elementor/assets/lib/font-awesome/js/brands.js'),(1872,'wp-content/plugins/elementor/assets/lib/font-awesome/js/regular.js'),(1873,'wp-content/plugins/elementor/assets/lib/font-awesome/js/solid.js'),(1874,'wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.js'),(1875,'wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js'),(1876,'wp-content/plugins/elementor/assets/lib/font-awesome/json/brands.json'),(1877,'wp-content/plugins/elementor/assets/lib/font-awesome/json/regular.json'),(1878,'wp-content/plugins/elementor/assets/lib/font-awesome/json/solid.json'),(1879,'wp-content/plugins/elementor/assets/lib/font-awesome/migration/mapping.js'),(1880,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot'),(1881,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg'),(1882,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf'),(1883,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff'),(1884,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2'),(1885,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.eot'),(1886,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.svg'),(1887,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.ttf'),(1888,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff'),(1889,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff2'),(1890,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot'),(1891,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg'),(1892,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf'),(1893,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff'),(1894,'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2'),(1895,'wp-content/plugins/elementor/assets/lib/hover/hover.css'),(1896,'wp-content/plugins/elementor/assets/lib/hover/hover.min.css'),(1897,'wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.js'),(1898,'wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.min.js'),(1899,'wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.js'),(1900,'wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.min.js'),(1901,'wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.js'),(1902,'wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.min.js'),(1903,'wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.js'),(1904,'wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.min.js'),(1905,'wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.js'),(1906,'wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.min.js'),(1907,'wp-content/plugins/elementor/assets/lib/nouislider/nouislider.js'),(1908,'wp-content/plugins/elementor/assets/lib/nouislider/nouislider.min.js'),(1909,'wp-content/plugins/elementor/assets/lib/nprogress/nprogress.js'),(1910,'wp-content/plugins/elementor/assets/lib/nprogress/nprogress.min.js'),(1911,'wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.js'),(1912,'wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.min.js'),(1913,'wp-content/plugins/elementor/assets/lib/perfect-scrollbar/perfect-scrollbar.jquery.js'),(1914,'wp-content/plugins/elementor/assets/lib/perfect-scrollbar/perfect-scrollbar.jquery.min.js'),(1915,'wp-content/plugins/elementor/assets/lib/perfect-scrollbar/perfect-scrollbar.js'),(1916,'wp-content/plugins/elementor/assets/lib/perfect-scrollbar/perfect-scrollbar.min.js'),(1917,'wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js'),(1918,'wp-content/plugins/elementor/assets/lib/pickr/themes/monolith.min.css'),(1919,'wp-content/plugins/elementor/assets/lib/share-link/share-link.js'),(1920,'wp-content/plugins/elementor/assets/lib/share-link/share-link.min.js'),(1921,'wp-content/plugins/elementor/assets/lib/slick/slick.js'),(1922,'wp-content/plugins/elementor/assets/lib/slick/slick.min.js'),(1923,'wp-content/plugins/elementor/assets/lib/swiper/swiper.jquery.js'),(1924,'wp-content/plugins/elementor/assets/lib/swiper/swiper.jquery.min.js'),(1925,'wp-content/plugins/elementor/assets/lib/swiper/swiper.js'),(1926,'wp-content/plugins/elementor/assets/lib/swiper/swiper.min.js'),(1927,'wp-content/plugins/elementor/assets/lib/tipsy/tipsy.js'),(1928,'wp-content/plugins/elementor/assets/lib/tipsy/tipsy.min.js'),(1929,'wp-content/plugins/elementor/assets/lib/waypoints/waypoints-for-editor.js'),(1930,'wp-content/plugins/elementor/assets/lib/waypoints/waypoints.js'),(1931,'wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js'),(1932,'wp-content/plugins/elementor/assets/lib/wp-color-picker/wp-color-picker-alpha.js'),(1933,'wp-content/plugins/elementor/assets/lib/wp-color-picker/wp-color-picker-alpha.min.js'),(1934,'wp-content/plugins/elementor/assets/mask-shapes/blob.svg'),(1935,'wp-content/plugins/elementor/assets/mask-shapes/circle.svg'),(1936,'wp-content/plugins/elementor/assets/mask-shapes/flower.svg'),(1937,'wp-content/plugins/elementor/assets/mask-shapes/hexagon.svg'),(1938,'wp-content/plugins/elementor/assets/mask-shapes/sketch.svg'),(1939,'wp-content/plugins/elementor/assets/mask-shapes/triangle.svg'),(1940,'wp-content/plugins/elementor/assets/shapes/arrow-negative.svg'),(1941,'wp-content/plugins/elementor/assets/shapes/arrow.svg'),(1942,'wp-content/plugins/elementor/assets/shapes/book-negative.svg'),(1943,'wp-content/plugins/elementor/assets/shapes/book.svg'),(1944,'wp-content/plugins/elementor/assets/shapes/clouds-negative.svg'),(1945,'wp-content/plugins/elementor/assets/shapes/clouds.svg'),(1946,'wp-content/plugins/elementor/assets/shapes/curve-asymmetrical-negative.svg'),(1947,'wp-content/plugins/elementor/assets/shapes/curve-asymmetrical.svg'),(1948,'wp-content/plugins/elementor/assets/shapes/curve-negative.svg'),(1949,'wp-content/plugins/elementor/assets/shapes/curve.svg'),(1950,'wp-content/plugins/elementor/assets/shapes/drops-negative.svg'),(1951,'wp-content/plugins/elementor/assets/shapes/drops.svg'),(1952,'wp-content/plugins/elementor/assets/shapes/mountains.svg'),(1953,'wp-content/plugins/elementor/assets/shapes/opacity-fan.svg'),(1954,'wp-content/plugins/elementor/assets/shapes/opacity-tilt.svg'),(1955,'wp-content/plugins/elementor/assets/shapes/pyramids-negative.svg'),(1956,'wp-content/plugins/elementor/assets/shapes/pyramids.svg'),(1957,'wp-content/plugins/elementor/assets/shapes/split-negative.svg'),(1958,'wp-content/plugins/elementor/assets/shapes/split.svg'),(1959,'wp-content/plugins/elementor/assets/shapes/tilt.svg'),(1960,'wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical-negative.svg'),(1961,'wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical.svg'),(1962,'wp-content/plugins/elementor/assets/shapes/triangle-negative.svg'),(1963,'wp-content/plugins/elementor/assets/shapes/triangle.svg'),(1964,'wp-content/plugins/elementor/assets/shapes/wave-brush.svg'),(1965,'wp-content/plugins/elementor/assets/shapes/waves-negative.svg'),(1966,'wp-content/plugins/elementor/assets/shapes/waves-pattern.svg'),(1967,'wp-content/plugins/elementor/assets/shapes/waves.svg'),(1968,'wp-content/plugins/elementor/assets/shapes/zigzag.svg'),(1969,'wp-content/plugins/elementor/assets/svg-paths/arc.svg'),(1970,'wp-content/plugins/elementor/assets/svg-paths/circle.svg'),(1971,'wp-content/plugins/elementor/assets/svg-paths/line.svg'),(1972,'wp-content/plugins/elementor/assets/svg-paths/oval.svg'),(1973,'wp-content/plugins/elementor/assets/svg-paths/spiral.svg'),(1974,'wp-content/plugins/elementor/assets/svg-paths/wave.svg'),(1975,'wp-content/plugins/elementor/commitlint.config.js'),(1976,'wp-content/plugins/elementor/core/admin/admin-notices.php'),(1977,'wp-content/plugins/elementor/core/admin/admin.php'),(1978,'wp-content/plugins/elementor/core/admin/canary-deployment.php'),(1979,'wp-content/plugins/elementor/core/admin/feedback.php'),(1980,'wp-content/plugins/elementor/core/admin/menu/base.php'),(1981,'wp-content/plugins/elementor/core/admin/menu/main.php'),(1982,'wp-content/plugins/elementor/core/admin/notices/base-notice.php'),(1983,'wp-content/plugins/elementor/core/admin/notices/elementor-dev-notice.php'),(1984,'wp-content/plugins/elementor/core/admin/notices/update-php-notice.php'),(1985,'wp-content/plugins/elementor/core/admin/ui/components/button.php'),(1986,'wp-content/plugins/elementor/core/app/app.php'),(1987,'wp-content/plugins/elementor/core/app/modules/import-export/compatibility/base-adapter.php'),(1988,'wp-content/plugins/elementor/core/app/modules/import-export/compatibility/envato.php'),(1989,'wp-content/plugins/elementor/core/app/modules/import-export/compatibility/kit-library.php'),(1990,'wp-content/plugins/elementor/core/app/modules/import-export/directories/base.php'),(1991,'wp-content/plugins/elementor/core/app/modules/import-export/directories/content.php'),(1992,'wp-content/plugins/elementor/core/app/modules/import-export/directories/custom-post-type-title.php'),(1993,'wp-content/plugins/elementor/core/app/modules/import-export/directories/plugins.php'),(1994,'wp-content/plugins/elementor/core/app/modules/import-export/directories/post-type.php'),(1995,'wp-content/plugins/elementor/core/app/modules/import-export/directories/root.php'),(1996,'wp-content/plugins/elementor/core/app/modules/import-export/directories/templates.php'),(1997,'wp-content/plugins/elementor/core/app/modules/import-export/directories/wp-content.php'),(1998,'wp-content/plugins/elementor/core/app/modules/import-export/directories/wp-custom-post-type-title.php'),(1999,'wp-content/plugins/elementor/core/app/modules/import-export/directories/wp-post-type.php'),(2000,'wp-content/plugins/elementor/core/app/modules/import-export/export.php'),(2001,'wp-content/plugins/elementor/core/app/modules/import-export/import.php'),(2002,'wp-content/plugins/elementor/core/app/modules/import-export/iterator.php'),(2003,'wp-content/plugins/elementor/core/app/modules/import-export/module.php'),(2004,'wp-content/plugins/elementor/core/app/modules/import-export/wp-cli.php'),(2005,'wp-content/plugins/elementor/core/app/modules/kit-library/connect/kit-library.php'),(2006,'wp-content/plugins/elementor/core/app/modules/kit-library/data/base-controller.php'),(2007,'wp-content/plugins/elementor/core/app/modules/kit-library/data/exceptions/wp-error-exception.php'),(2008,'wp-content/plugins/elementor/core/app/modules/kit-library/data/kits/controller.php'),(2009,'wp-content/plugins/elementor/core/app/modules/kit-library/data/kits/endpoints/download-link.php'),(2010,'wp-content/plugins/elementor/core/app/modules/kit-library/data/kits/endpoints/favorites.php'),(2011,'wp-content/plugins/elementor/core/app/modules/kit-library/data/kits/endpoints/index.php'),(2012,'wp-content/plugins/elementor/core/app/modules/kit-library/data/repository.php'),(2013,'wp-content/plugins/elementor/core/app/modules/kit-library/data/taxonomies/controller.php'),(2014,'wp-content/plugins/elementor/core/app/modules/kit-library/data/taxonomies/endpoints/index.php'),(2015,'wp-content/plugins/elementor/core/app/modules/kit-library/module.php'),(2016,'wp-content/plugins/elementor/core/app/modules/onboarding/module.php'),(2017,'wp-content/plugins/elementor/core/app/modules/site-editor/module.php'),(2018,'wp-content/plugins/elementor/core/app/view.php'),(2019,'wp-content/plugins/elementor/core/base/app.php'),(2020,'wp-content/plugins/elementor/core/base/background-process/wp-async-request.php'),(2021,'wp-content/plugins/elementor/core/base/background-process/wp-background-process.php'),(2022,'wp-content/plugins/elementor/core/base/background-task-manager.php'),(2023,'wp-content/plugins/elementor/core/base/background-task.php'),(2024,'wp-content/plugins/elementor/core/base/base-object.php'),(2025,'wp-content/plugins/elementor/core/base/db-upgrades-manager.php'),(2026,'wp-content/plugins/elementor/core/base/document.php'),(2027,'wp-content/plugins/elementor/core/base/elements-iteration-actions/assets.php'),(2028,'wp-content/plugins/elementor/core/base/elements-iteration-actions/base.php'),(2029,'wp-content/plugins/elementor/core/base/module.php'),(2030,'wp-content/plugins/elementor/core/breakpoints/breakpoint.php'),(2031,'wp-content/plugins/elementor/core/breakpoints/manager.php'),(2032,'wp-content/plugins/elementor/core/common/app.php'),(2033,'wp-content/plugins/elementor/core/common/modules/ajax/module.php'),(2034,'wp-content/plugins/elementor/core/common/modules/connect/admin.php'),(2035,'wp-content/plugins/elementor/core/common/modules/connect/apps/base-app.php'),(2036,'wp-content/plugins/elementor/core/common/modules/connect/apps/base-user-app.php'),(2037,'wp-content/plugins/elementor/core/common/modules/connect/apps/common-app.php'),(2038,'wp-content/plugins/elementor/core/common/modules/connect/apps/connect.php'),(2039,'wp-content/plugins/elementor/core/common/modules/connect/apps/library.php'),(2040,'wp-content/plugins/elementor/core/common/modules/connect/module.php'),(2041,'wp-content/plugins/elementor/core/common/modules/event-tracker/data/controller.php'),(2042,'wp-content/plugins/elementor/core/common/modules/event-tracker/db.php'),(2043,'wp-content/plugins/elementor/core/common/modules/event-tracker/module.php'),(2044,'wp-content/plugins/elementor/core/common/modules/event-tracker/personal-data.php'),(2045,'wp-content/plugins/elementor/core/common/modules/finder/base-category.php'),(2046,'wp-content/plugins/elementor/core/common/modules/finder/categories/create.php'),(2047,'wp-content/plugins/elementor/core/common/modules/finder/categories/edit.php'),(2048,'wp-content/plugins/elementor/core/common/modules/finder/categories/general.php'),(2049,'wp-content/plugins/elementor/core/common/modules/finder/categories/settings.php'),(2050,'wp-content/plugins/elementor/core/common/modules/finder/categories/site.php'),(2051,'wp-content/plugins/elementor/core/common/modules/finder/categories/tools.php'),(2052,'wp-content/plugins/elementor/core/common/modules/finder/categories-manager.php'),(2053,'wp-content/plugins/elementor/core/common/modules/finder/module.php'),(2054,'wp-content/plugins/elementor/core/common/modules/finder/template.php'),(2055,'wp-content/plugins/elementor/core/debug/classes/htaccess.php'),(2056,'wp-content/plugins/elementor/core/debug/classes/inspection-base.php'),(2057,'wp-content/plugins/elementor/core/debug/classes/theme-missing.php'),(2058,'wp-content/plugins/elementor/core/debug/inspector.php'),(2059,'wp-content/plugins/elementor/core/debug/loading-inspection-manager.php'),(2060,'wp-content/plugins/elementor/core/document-types/page-base.php'),(2061,'wp-content/plugins/elementor/core/document-types/page.php'),(2062,'wp-content/plugins/elementor/core/document-types/post.php'),(2063,'wp-content/plugins/elementor/core/documents-manager.php'),(2064,'wp-content/plugins/elementor/core/dynamic-tags/base-tag.php'),(2065,'wp-content/plugins/elementor/core/dynamic-tags/data-tag.php'),(2066,'wp-content/plugins/elementor/core/dynamic-tags/dynamic-css.php'),(2067,'wp-content/plugins/elementor/core/dynamic-tags/manager.php'),(2068,'wp-content/plugins/elementor/core/dynamic-tags/tag.php'),(2069,'wp-content/plugins/elementor/core/editor/data/globals/controller.php'),(2070,'wp-content/plugins/elementor/core/editor/data/globals/endpoints/base.php'),(2071,'wp-content/plugins/elementor/core/editor/data/globals/endpoints/colors.php'),(2072,'wp-content/plugins/elementor/core/editor/data/globals/endpoints/index.php'),(2073,'wp-content/plugins/elementor/core/editor/data/globals/endpoints/typography.php'),(2074,'wp-content/plugins/elementor/core/editor/editor.php'),(2075,'wp-content/plugins/elementor/core/editor/notice-bar.php'),(2076,'wp-content/plugins/elementor/core/experiments/experiments-reporter.php'),(2077,'wp-content/plugins/elementor/core/experiments/manager.php'),(2078,'wp-content/plugins/elementor/core/experiments/wp-cli.php'),(2079,'wp-content/plugins/elementor/core/files/assets/files-upload-handler.php'),(2080,'wp-content/plugins/elementor/core/files/assets/json/json-handler.php'),(2081,'wp-content/plugins/elementor/core/files/assets/manager.php'),(2082,'wp-content/plugins/elementor/core/files/assets/svg/svg-handler.php'),(2083,'wp-content/plugins/elementor/core/files/base.php'),(2084,'wp-content/plugins/elementor/core/files/css/base.php'),(2085,'wp-content/plugins/elementor/core/files/css/global-css.php'),(2086,'wp-content/plugins/elementor/core/files/css/post-local-cache.php'),(2087,'wp-content/plugins/elementor/core/files/css/post-preview.php'),(2088,'wp-content/plugins/elementor/core/files/css/post.php'),(2089,'wp-content/plugins/elementor/core/files/file-types/base.php'),(2090,'wp-content/plugins/elementor/core/files/file-types/json.php'),(2091,'wp-content/plugins/elementor/core/files/file-types/svg.php'),(2092,'wp-content/plugins/elementor/core/files/file-types/zip.php'),(2093,'wp-content/plugins/elementor/core/files/manager.php'),(2094,'wp-content/plugins/elementor/core/files/uploads-manager.php'),(2095,'wp-content/plugins/elementor/core/frontend/render-mode-manager.php'),(2096,'wp-content/plugins/elementor/core/frontend/render-modes/render-mode-base.php'),(2097,'wp-content/plugins/elementor/core/frontend/render-modes/render-mode-normal.php'),(2098,'wp-content/plugins/elementor/core/kits/controls/repeater.php'),(2099,'wp-content/plugins/elementor/core/kits/documents/kit.php'),(2100,'wp-content/plugins/elementor/core/kits/documents/tabs/global-colors.php'),(2101,'wp-content/plugins/elementor/core/kits/documents/tabs/global-typography.php'),(2102,'wp-content/plugins/elementor/core/kits/documents/tabs/settings-background.php'),(2103,'wp-content/plugins/elementor/core/kits/documents/tabs/settings-custom-css.php'),(2104,'wp-content/plugins/elementor/core/kits/documents/tabs/settings-layout.php'),(2105,'wp-content/plugins/elementor/core/kits/documents/tabs/settings-lightbox.php'),(2106,'wp-content/plugins/elementor/core/kits/documents/tabs/settings-page-transitions.php'),(2107,'wp-content/plugins/elementor/core/kits/documents/tabs/settings-site-identity.php'),(2108,'wp-content/plugins/elementor/core/kits/documents/tabs/tab-base.php'),(2109,'wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-buttons.php'),(2110,'wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-form-fields.php'),(2111,'wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-images.php'),(2112,'wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-typography.php'),(2113,'wp-content/plugins/elementor/core/kits/manager.php'),(2114,'wp-content/plugins/elementor/core/kits/views/panel.php'),(2115,'wp-content/plugins/elementor/core/kits/views/trash-kit-confirmation.php'),(2116,'wp-content/plugins/elementor/core/logger/items/base.php'),(2117,'wp-content/plugins/elementor/core/logger/items/file.php'),(2118,'wp-content/plugins/elementor/core/logger/items/js.php'),(2119,'wp-content/plugins/elementor/core/logger/items/log-item-interface.php'),(2120,'wp-content/plugins/elementor/core/logger/items/php.php'),(2121,'wp-content/plugins/elementor/core/logger/log-reporter.php'),(2122,'wp-content/plugins/elementor/core/logger/loggers/base.php'),(2123,'wp-content/plugins/elementor/core/logger/loggers/db.php'),(2124,'wp-content/plugins/elementor/core/logger/loggers/logger-interface.php'),(2125,'wp-content/plugins/elementor/core/logger/manager.php'),(2126,'wp-content/plugins/elementor/core/modules-manager.php'),(2127,'wp-content/plugins/elementor/core/page-assets/data-managers/base.php'),(2128,'wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/base.php'),(2129,'wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/e-icons.php'),(2130,'wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/font-awesome.php'),(2131,'wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/manager.php'),(2132,'wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg.php'),(2133,'wp-content/plugins/elementor/core/page-assets/data-managers/responsive-widgets.php'),(2134,'wp-content/plugins/elementor/core/page-assets/data-managers/widgets-css.php'),(2135,'wp-content/plugins/elementor/core/page-assets/loader.php'),(2136,'wp-content/plugins/elementor/core/page-assets/managers/font-icon-svg/base.php'),(2137,'wp-content/plugins/elementor/core/page-assets/managers/font-icon-svg/font-awesome.php'),(2138,'wp-content/plugins/elementor/core/page-assets/managers/font-icon-svg/manager.php'),(2139,'wp-content/plugins/elementor/core/responsive/files/frontend.php'),(2140,'wp-content/plugins/elementor/core/responsive/responsive.php'),(2141,'wp-content/plugins/elementor/core/role-manager/role-manager.php'),(2142,'wp-content/plugins/elementor/core/schemes/base-ui.php'),(2143,'wp-content/plugins/elementor/core/schemes/base.php'),(2144,'wp-content/plugins/elementor/core/schemes/color-picker.php'),(2145,'wp-content/plugins/elementor/core/schemes/color.php'),(2146,'wp-content/plugins/elementor/core/schemes/manager.php'),(2147,'wp-content/plugins/elementor/core/schemes/typography.php'),(2148,'wp-content/plugins/elementor/core/settings/base/css-manager.php'),(2149,'wp-content/plugins/elementor/core/settings/base/css-model.php'),(2150,'wp-content/plugins/elementor/core/settings/base/manager.php'),(2151,'wp-content/plugins/elementor/core/settings/base/model.php'),(2152,'wp-content/plugins/elementor/core/settings/editor-preferences/manager.php'),(2153,'wp-content/plugins/elementor/core/settings/editor-preferences/model.php'),(2154,'wp-content/plugins/elementor/core/settings/general/manager.php'),(2155,'wp-content/plugins/elementor/core/settings/general/model.php'),(2156,'wp-content/plugins/elementor/core/settings/manager.php'),(2157,'wp-content/plugins/elementor/core/settings/page/manager.php'),(2158,'wp-content/plugins/elementor/core/settings/page/model.php'),(2159,'wp-content/plugins/elementor/core/upgrade/custom-tasks-manager.php'),(2160,'wp-content/plugins/elementor/core/upgrade/custom-tasks.php'),(2161,'wp-content/plugins/elementor/core/upgrade/elementor-3-re-migrate-globals.php'),(2162,'wp-content/plugins/elementor/core/upgrade/manager.php'),(2163,'wp-content/plugins/elementor/core/upgrade/task.php'),(2164,'wp-content/plugins/elementor/core/upgrade/updater.php'),(2165,'wp-content/plugins/elementor/core/upgrade/upgrade-utils.php'),(2166,'wp-content/plugins/elementor/core/upgrade/upgrades.php'),(2167,'wp-content/plugins/elementor/core/utils/collection.php'),(2168,'wp-content/plugins/elementor/core/utils/exceptions.php'),(2169,'wp-content/plugins/elementor/core/utils/http.php'),(2170,'wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-regex.php'),(2171,'wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-simple-xml.php'),(2172,'wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-xml.php'),(2173,'wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser.php'),(2174,'wp-content/plugins/elementor/core/utils/import-export/wp-exporter.php'),(2175,'wp-content/plugins/elementor/core/utils/import-export/wp-import.php'),(2176,'wp-content/plugins/elementor/core/utils/static-collection.php'),(2177,'wp-content/plugins/elementor/core/utils/str.php'),(2178,'wp-content/plugins/elementor/core/utils/version.php'),(2179,'wp-content/plugins/elementor/core/wp-api.php'),(2180,'wp-content/plugins/elementor/data/base/controller.php'),(2181,'wp-content/plugins/elementor/data/base/endpoint.php'),(2182,'wp-content/plugins/elementor/data/base/processor/after.php'),(2183,'wp-content/plugins/elementor/data/base/processor/before.php'),(2184,'wp-content/plugins/elementor/data/base/processor.php'),(2185,'wp-content/plugins/elementor/data/base/sub-endpoint.php'),(2186,'wp-content/plugins/elementor/data/manager.php'),(2187,'wp-content/plugins/elementor/data/v2/base/base-route.php'),(2188,'wp-content/plugins/elementor/data/v2/base/controller.php'),(2189,'wp-content/plugins/elementor/data/v2/base/endpoint/index/all-children.php'),(2190,'wp-content/plugins/elementor/data/v2/base/endpoint/index/sub-index-endpoint.php'),(2191,'wp-content/plugins/elementor/data/v2/base/endpoint/index.php'),(2192,'wp-content/plugins/elementor/data/v2/base/endpoint.php'),(2193,'wp-content/plugins/elementor/data/v2/base/exceptions/data-exception.php'),(2194,'wp-content/plugins/elementor/data/v2/base/exceptions/error-404.php'),(2195,'wp-content/plugins/elementor/data/v2/base/exceptions/error-500.php'),(2196,'wp-content/plugins/elementor/data/v2/base/exceptions/wp-error-exception.php'),(2197,'wp-content/plugins/elementor/data/v2/base/processor/after.php'),(2198,'wp-content/plugins/elementor/data/v2/base/processor/before.php'),(2199,'wp-content/plugins/elementor/data/v2/base/processor.php'),(2200,'wp-content/plugins/elementor/data/v2/manager.php'),(2201,'wp-content/plugins/elementor/elementor.php'),(2202,'wp-content/plugins/elementor/includes/admin-templates/beta-tester.php'),(2203,'wp-content/plugins/elementor/includes/admin-templates/new-template.php'),(2204,'wp-content/plugins/elementor/includes/api.php'),(2205,'wp-content/plugins/elementor/includes/autoloader.php'),(2206,'wp-content/plugins/elementor/includes/base/controls-stack.php'),(2207,'wp-content/plugins/elementor/includes/base/element-base.php'),(2208,'wp-content/plugins/elementor/includes/base/skin-base.php'),(2209,'wp-content/plugins/elementor/includes/base/sub-controls-stack.php'),(2210,'wp-content/plugins/elementor/includes/base/widget-base.php'),(2211,'wp-content/plugins/elementor/includes/beta-testers.php'),(2212,'wp-content/plugins/elementor/includes/compatibility.php'),(2213,'wp-content/plugins/elementor/includes/conditions.php'),(2214,'wp-content/plugins/elementor/includes/controls/animation.php'),(2215,'wp-content/plugins/elementor/includes/controls/base-data.php'),(2216,'wp-content/plugins/elementor/includes/controls/base-icon-font.php'),(2217,'wp-content/plugins/elementor/includes/controls/base-multiple.php'),(2218,'wp-content/plugins/elementor/includes/controls/base-ui.php'),(2219,'wp-content/plugins/elementor/includes/controls/base-units.php'),(2220,'wp-content/plugins/elementor/includes/controls/base.php'),(2221,'wp-content/plugins/elementor/includes/controls/box-shadow.php'),(2222,'wp-content/plugins/elementor/includes/controls/button.php'),(2223,'wp-content/plugins/elementor/includes/controls/choose.php'),(2224,'wp-content/plugins/elementor/includes/controls/code.php'),(2225,'wp-content/plugins/elementor/includes/controls/color.php'),(2226,'wp-content/plugins/elementor/includes/controls/date-time.php'),(2227,'wp-content/plugins/elementor/includes/controls/deprecated-notice.php'),(2228,'wp-content/plugins/elementor/includes/controls/dimensions.php'),(2229,'wp-content/plugins/elementor/includes/controls/divider.php'),(2230,'wp-content/plugins/elementor/includes/controls/exit-animation.php'),(2231,'wp-content/plugins/elementor/includes/controls/font.php'),(2232,'wp-content/plugins/elementor/includes/controls/gallery.php'),(2233,'wp-content/plugins/elementor/includes/controls/groups/background.php'),(2234,'wp-content/plugins/elementor/includes/controls/groups/base.php'),(2235,'wp-content/plugins/elementor/includes/controls/groups/border.php'),(2236,'wp-content/plugins/elementor/includes/controls/groups/box-shadow.php'),(2237,'wp-content/plugins/elementor/includes/controls/groups/css-filter.php'),(2238,'wp-content/plugins/elementor/includes/controls/groups/flex-container.php'),(2239,'wp-content/plugins/elementor/includes/controls/groups/flex-item.php'),(2240,'wp-content/plugins/elementor/includes/controls/groups/image-size.php'),(2241,'wp-content/plugins/elementor/includes/controls/groups/text-shadow.php'),(2242,'wp-content/plugins/elementor/includes/controls/groups/text-stroke.php'),(2243,'wp-content/plugins/elementor/includes/controls/groups/typography.php'),(2244,'wp-content/plugins/elementor/includes/controls/heading.php'),(2245,'wp-content/plugins/elementor/includes/controls/hidden.php'),(2246,'wp-content/plugins/elementor/includes/controls/hover-animation.php'),(2247,'wp-content/plugins/elementor/includes/controls/icon.php'),(2248,'wp-content/plugins/elementor/includes/controls/icons.php'),(2249,'wp-content/plugins/elementor/includes/controls/image-dimensions.php'),(2250,'wp-content/plugins/elementor/includes/controls/media.php'),(2251,'wp-content/plugins/elementor/includes/controls/number.php'),(2252,'wp-content/plugins/elementor/includes/controls/order.php'),(2253,'wp-content/plugins/elementor/includes/controls/popover-toggle.php'),(2254,'wp-content/plugins/elementor/includes/controls/raw-html.php'),(2255,'wp-content/plugins/elementor/includes/controls/repeater.php'),(2256,'wp-content/plugins/elementor/includes/controls/section.php'),(2257,'wp-content/plugins/elementor/includes/controls/select.php'),(2258,'wp-content/plugins/elementor/includes/controls/select2.php'),(2259,'wp-content/plugins/elementor/includes/controls/slider.php'),(2260,'wp-content/plugins/elementor/includes/controls/structure.php'),(2261,'wp-content/plugins/elementor/includes/controls/switcher.php'),(2262,'wp-content/plugins/elementor/includes/controls/tab.php'),(2263,'wp-content/plugins/elementor/includes/controls/tabs.php'),(2264,'wp-content/plugins/elementor/includes/controls/text-shadow.php'),(2265,'wp-content/plugins/elementor/includes/controls/text.php'),(2266,'wp-content/plugins/elementor/includes/controls/textarea.php'),(2267,'wp-content/plugins/elementor/includes/controls/url.php'),(2268,'wp-content/plugins/elementor/includes/controls/wp-widget.php'),(2269,'wp-content/plugins/elementor/includes/controls/wysiwyg.php'),(2270,'wp-content/plugins/elementor/includes/db.php'),(2271,'wp-content/plugins/elementor/includes/debug/debug-reporter.php'),(2272,'wp-content/plugins/elementor/includes/debug/debug.php'),(2273,'wp-content/plugins/elementor/includes/editor-templates/editor-wrapper.php'),(2274,'wp-content/plugins/elementor/includes/editor-templates/global.php'),(2275,'wp-content/plugins/elementor/includes/editor-templates/hotkeys.php'),(2276,'wp-content/plugins/elementor/includes/editor-templates/library-layout.php'),(2277,'wp-content/plugins/elementor/includes/editor-templates/navigator.php'),(2278,'wp-content/plugins/elementor/includes/editor-templates/panel-elements.php'),(2279,'wp-content/plugins/elementor/includes/editor-templates/panel.php'),(2280,'wp-content/plugins/elementor/includes/editor-templates/repeater.php'),(2281,'wp-content/plugins/elementor/includes/editor-templates/responsive-bar.php'),(2282,'wp-content/plugins/elementor/includes/editor-templates/templates.php'),(2283,'wp-content/plugins/elementor/includes/editor.php'),(2284,'wp-content/plugins/elementor/includes/elements/column.php'),(2285,'wp-content/plugins/elementor/includes/elements/container.php'),(2286,'wp-content/plugins/elementor/includes/elements/repeater.php'),(2287,'wp-content/plugins/elementor/includes/elements/section.php'),(2288,'wp-content/plugins/elementor/includes/embed.php'),(2289,'wp-content/plugins/elementor/includes/fonts.php'),(2290,'wp-content/plugins/elementor/includes/frontend.php'),(2291,'wp-content/plugins/elementor/includes/heartbeat.php'),(2292,'wp-content/plugins/elementor/includes/interfaces/group-control.php'),(2293,'wp-content/plugins/elementor/includes/interfaces/scheme.php'),(2294,'wp-content/plugins/elementor/includes/libraries/bfi-thumb/bfi-thumb.php'),(2295,'wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-async-request.php'),(2296,'wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-background-process.php'),(2297,'wp-content/plugins/elementor/includes/maintenance-mode.php'),(2298,'wp-content/plugins/elementor/includes/maintenance.php'),(2299,'wp-content/plugins/elementor/includes/managers/controls.php'),(2300,'wp-content/plugins/elementor/includes/managers/elements.php'),(2301,'wp-content/plugins/elementor/includes/managers/icons.php'),(2302,'wp-content/plugins/elementor/includes/managers/image.php'),(2303,'wp-content/plugins/elementor/includes/managers/schemes.php'),(2304,'wp-content/plugins/elementor/includes/managers/skins.php'),(2305,'wp-content/plugins/elementor/includes/managers/widgets.php'),(2306,'wp-content/plugins/elementor/includes/managers/wordpress-widgets.php'),(2307,'wp-content/plugins/elementor/includes/plugin.php'),(2308,'wp-content/plugins/elementor/includes/preview.php'),(2309,'wp-content/plugins/elementor/includes/rollback.php'),(2310,'wp-content/plugins/elementor/includes/schemes/base.php'),(2311,'wp-content/plugins/elementor/includes/schemes/color-picker.php'),(2312,'wp-content/plugins/elementor/includes/schemes/color.php'),(2313,'wp-content/plugins/elementor/includes/schemes/typography.php'),(2314,'wp-content/plugins/elementor/includes/settings/controls.php'),(2315,'wp-content/plugins/elementor/includes/settings/settings-page.php'),(2316,'wp-content/plugins/elementor/includes/settings/settings.php'),(2317,'wp-content/plugins/elementor/includes/settings/system-info/classes/abstracts/base-reporter.php'),(2318,'wp-content/plugins/elementor/includes/settings/system-info/classes/mu-plugins.php'),(2319,'wp-content/plugins/elementor/includes/settings/system-info/classes/network-plugins.php'),(2320,'wp-content/plugins/elementor/includes/settings/system-info/classes/plugins.php'),(2321,'wp-content/plugins/elementor/includes/settings/system-info/classes/server.php'),(2322,'wp-content/plugins/elementor/includes/settings/system-info/classes/theme.php'),(2323,'wp-content/plugins/elementor/includes/settings/system-info/classes/user.php'),(2324,'wp-content/plugins/elementor/includes/settings/system-info/classes/wordpress.php'),(2325,'wp-content/plugins/elementor/includes/settings/system-info/helpers/model-helper.php'),(2326,'wp-content/plugins/elementor/includes/settings/system-info/main.php'),(2327,'wp-content/plugins/elementor/includes/settings/system-info/templates/html.php'),(2328,'wp-content/plugins/elementor/includes/settings/system-info/templates/raw.php'),(2329,'wp-content/plugins/elementor/includes/settings/tools.php'),(2330,'wp-content/plugins/elementor/includes/settings/validations.php'),(2331,'wp-content/plugins/elementor/includes/shapes.php'),(2332,'wp-content/plugins/elementor/includes/stylesheet.php'),(2333,'wp-content/plugins/elementor/includes/template-library/classes/class-import-images.php'),(2334,'wp-content/plugins/elementor/includes/template-library/data/controller.php'),(2335,'wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php'),(2336,'wp-content/plugins/elementor/includes/template-library/manager.php'),(2337,'wp-content/plugins/elementor/includes/template-library/sources/base.php'),(2338,'wp-content/plugins/elementor/includes/template-library/sources/local.php'),(2339,'wp-content/plugins/elementor/includes/template-library/sources/remote.php'),(2340,'wp-content/plugins/elementor/includes/tracker.php'),(2341,'wp-content/plugins/elementor/includes/upgrades.php'),(2342,'wp-content/plugins/elementor/includes/user.php'),(2343,'wp-content/plugins/elementor/includes/utils.php'),(2344,'wp-content/plugins/elementor/includes/widgets/accordion.php'),(2345,'wp-content/plugins/elementor/includes/widgets/alert.php'),(2346,'wp-content/plugins/elementor/includes/widgets/audio.php'),(2347,'wp-content/plugins/elementor/includes/widgets/button.php'),(2348,'wp-content/plugins/elementor/includes/widgets/common.php'),(2349,'wp-content/plugins/elementor/includes/widgets/counter.php'),(2350,'wp-content/plugins/elementor/includes/widgets/divider.php'),(2351,'wp-content/plugins/elementor/includes/widgets/google-maps.php'),(2352,'wp-content/plugins/elementor/includes/widgets/heading.php'),(2353,'wp-content/plugins/elementor/includes/widgets/html.php'),(2354,'wp-content/plugins/elementor/includes/widgets/icon-box.php'),(2355,'wp-content/plugins/elementor/includes/widgets/icon-list.php'),(2356,'wp-content/plugins/elementor/includes/widgets/icon.php'),(2357,'wp-content/plugins/elementor/includes/widgets/image-box.php'),(2358,'wp-content/plugins/elementor/includes/widgets/image-carousel.php'),(2359,'wp-content/plugins/elementor/includes/widgets/image-gallery.php'),(2360,'wp-content/plugins/elementor/includes/widgets/image.php'),(2361,'wp-content/plugins/elementor/includes/widgets/inner-section.php'),(2362,'wp-content/plugins/elementor/includes/widgets/menu-anchor.php'),(2363,'wp-content/plugins/elementor/includes/widgets/progress.php'),(2364,'wp-content/plugins/elementor/includes/widgets/read-more.php'),(2365,'wp-content/plugins/elementor/includes/widgets/shortcode.php'),(2366,'wp-content/plugins/elementor/includes/widgets/sidebar.php'),(2367,'wp-content/plugins/elementor/includes/widgets/social-icons.php'),(2368,'wp-content/plugins/elementor/includes/widgets/spacer.php'),(2369,'wp-content/plugins/elementor/includes/widgets/star-rating.php'),(2370,'wp-content/plugins/elementor/includes/widgets/tabs.php'),(2371,'wp-content/plugins/elementor/includes/widgets/testimonial.php'),(2372,'wp-content/plugins/elementor/includes/widgets/text-editor.php'),(2373,'wp-content/plugins/elementor/includes/widgets/toggle.php'),(2374,'wp-content/plugins/elementor/includes/widgets/traits/button-trait.php'),(2375,'wp-content/plugins/elementor/includes/widgets/video.php'),(2376,'wp-content/plugins/elementor/includes/widgets/wordpress.php'),(2377,'wp-content/plugins/elementor/license.txt'),(2378,'wp-content/plugins/elementor/modules/admin-bar/module.php'),(2379,'wp-content/plugins/elementor/modules/admin-top-bar/module.php'),(2380,'wp-content/plugins/elementor/modules/compatibility-tag/base-module.php'),(2381,'wp-content/plugins/elementor/modules/compatibility-tag/compatibility-tag-report.php'),(2382,'wp-content/plugins/elementor/modules/compatibility-tag/compatibility-tag.php'),(2383,'wp-content/plugins/elementor/modules/compatibility-tag/module.php'),(2384,'wp-content/plugins/elementor/modules/compatibility-tag/views/plugin-update-message-compatibility.php'),(2385,'wp-content/plugins/elementor/modules/container-converter/module.php'),(2386,'wp-content/plugins/elementor/modules/dev-tools/deprecation.php'),(2387,'wp-content/plugins/elementor/modules/dev-tools/module.php'),(2388,'wp-content/plugins/elementor/modules/dynamic-tags/module.php'),(2389,'wp-content/plugins/elementor/modules/elements-color-picker/module.php'),(2390,'wp-content/plugins/elementor/modules/favorites/controller.php'),(2391,'wp-content/plugins/elementor/modules/favorites/favorites-type.php'),(2392,'wp-content/plugins/elementor/modules/favorites/module.php'),(2393,'wp-content/plugins/elementor/modules/favorites/types/widgets.php'),(2394,'wp-content/plugins/elementor/modules/gutenberg/module.php'),(2395,'wp-content/plugins/elementor/modules/history/module.php'),(2396,'wp-content/plugins/elementor/modules/history/revisions-manager.php'),(2397,'wp-content/plugins/elementor/modules/history/views/history-panel-template.php'),(2398,'wp-content/plugins/elementor/modules/history/views/revisions-panel-template.php'),(2399,'wp-content/plugins/elementor/modules/landing-pages/documents/landing-page.php'),(2400,'wp-content/plugins/elementor/modules/landing-pages/module.php'),(2401,'wp-content/plugins/elementor/modules/library/documents/container.php'),(2402,'wp-content/plugins/elementor/modules/library/documents/library-document.php'),(2403,'wp-content/plugins/elementor/modules/library/documents/not-supported.php'),(2404,'wp-content/plugins/elementor/modules/library/documents/page.php'),(2405,'wp-content/plugins/elementor/modules/library/documents/section.php'),(2406,'wp-content/plugins/elementor/modules/library/module.php'),(2407,'wp-content/plugins/elementor/modules/library/traits/library.php'),(2408,'wp-content/plugins/elementor/modules/library/user-favorites.php'),(2409,'wp-content/plugins/elementor/modules/page-templates/module.php'),(2410,'wp-content/plugins/elementor/modules/page-templates/templates/canvas.php'),(2411,'wp-content/plugins/elementor/modules/page-templates/templates/header-footer.php'),(2412,'wp-content/plugins/elementor/modules/safe-mode/module.php'),(2413,'wp-content/plugins/elementor/modules/safe-mode/mu-plugin/elementor-safe-mode.php'),(2414,'wp-content/plugins/elementor/modules/shapes/module.php'),(2415,'wp-content/plugins/elementor/modules/shapes/widgets/text-path.php'),(2416,'wp-content/plugins/elementor/modules/system-info/helpers/model-helper.php'),(2417,'wp-content/plugins/elementor/modules/system-info/module.php'),(2418,'wp-content/plugins/elementor/modules/system-info/reporters/base-plugin.php'),(2419,'wp-content/plugins/elementor/modules/system-info/reporters/base.php'),(2420,'wp-content/plugins/elementor/modules/system-info/reporters/mu-plugins.php'),(2421,'wp-content/plugins/elementor/modules/system-info/reporters/network-plugins.php'),(2422,'wp-content/plugins/elementor/modules/system-info/reporters/plugins.php'),(2423,'wp-content/plugins/elementor/modules/system-info/reporters/server.php'),(2424,'wp-content/plugins/elementor/modules/system-info/reporters/theme.php'),(2425,'wp-content/plugins/elementor/modules/system-info/reporters/user.php'),(2426,'wp-content/plugins/elementor/modules/system-info/reporters/wordpress.php'),(2427,'wp-content/plugins/elementor/modules/system-info/templates/html.php'),(2428,'wp-content/plugins/elementor/modules/system-info/templates/raw.php'),(2429,'wp-content/plugins/elementor/modules/usage/module.php'),(2430,'wp-content/plugins/elementor/modules/usage/usage-reporter.php'),(2431,'wp-content/plugins/elementor/modules/web-cli/module.php'),(2432,'wp-content/plugins/elementor/modules/wp-cli/cli-logger.php'),(2433,'wp-content/plugins/elementor/modules/wp-cli/command.php'),(2434,'wp-content/plugins/elementor/modules/wp-cli/library.php'),(2435,'wp-content/plugins/elementor/modules/wp-cli/module.php'),(2436,'wp-content/plugins/elementor/modules/wp-cli/update.php'),(2437,'wp-content/plugins/elementor/packages/elementor-ui/components/index.js'),(2438,'wp-content/plugins/elementor/packages/elementor-ui/components/ui/heading.js'),(2439,'wp-content/plugins/elementor/packages/elementor-ui/components/ui/text.js'),(2440,'wp-content/plugins/elementor/packages/elementor-ui/components/utils.js'),(2441,'wp-content/plugins/elementor/packages/elementor-ui/styles/_data/colors/palette.json'),(2442,'wp-content/plugins/elementor/packages/elementor-ui/styles/_data/font/font-weight.json'),(2443,'wp-content/plugins/elementor/packages/elementor-ui/styles/_data/spacing/spacing.json'),(2444,'wp-content/plugins/elementor/packages/elementor-ui/styles/_data/typography/typography.json'),(2445,'wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/colors/dark-tints.js'),(2446,'wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/colors/theme-colors.js'),(2447,'wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/colors/tints.js'),(2448,'wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/font/font-weight.js'),(2449,'wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/spacing/spacing.js'),(2450,'wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/typography/heading.js'),(2451,'wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/typography/line-height.js'),(2452,'wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/typography/size.js'),(2453,'wp-content/plugins/elementor/packages/elementor-ui/styles/_maps/typography/text.js'),(2454,'wp-content/plugins/elementor/packages/elementor-ui/styles/heading.js'),(2455,'wp-content/plugins/elementor/packages/elementor-ui/styles/index.js'),(2456,'wp-content/plugins/elementor/packages/elementor-ui/styles/text.js'),(2457,'wp-content/plugins/elementor/readme.txt'),(2458,'wp-content/plugins/elementor-pro/assets/js/3333af8bf530102aec5b.bundle.js'),(2459,'wp-content/plugins/elementor-pro/assets/js/admin.js'),(2460,'wp-content/plugins/elementor-pro/assets/js/admin.min.js'),(2461,'wp-content/plugins/elementor-pro/assets/js/animated-headline.0cdf629ebd9eaf373218.bundle.min.js'),(2462,'wp-content/plugins/elementor-pro/assets/js/animated-headline.c48ffcc42cf8e1937b79.bundle.js'),(2463,'wp-content/plugins/elementor-pro/assets/js/app.js'),(2464,'wp-content/plugins/elementor-pro/assets/js/app.min.js'),(2465,'wp-content/plugins/elementor-pro/assets/js/archive-posts.c5bfd0c6126737964ea3.bundle.js'),(2466,'wp-content/plugins/elementor-pro/assets/js/archive-posts.fd5949b12eae1d836370.bundle.min.js'),(2467,'wp-content/plugins/elementor-pro/assets/js/carousel.df077bfcc92a01b2a71b.bundle.js'),(2468,'wp-content/plugins/elementor-pro/assets/js/carousel.eda8fd12a8a6bac88fbc.bundle.min.js'),(2469,'wp-content/plugins/elementor-pro/assets/js/code-highlight.36c6ab32da7b5cd4cf39.bundle.js'),(2470,'wp-content/plugins/elementor-pro/assets/js/code-highlight.980168b9b4c79600c41c.bundle.min.js'),(2471,'wp-content/plugins/elementor-pro/assets/js/countdown.bb46c1fe3c44d539dcc5.bundle.min.js'),(2472,'wp-content/plugins/elementor-pro/assets/js/countdown.e8b325f6654ba38a5606.bundle.js'),(2473,'wp-content/plugins/elementor-pro/assets/js/custom-code.js'),(2474,'wp-content/plugins/elementor-pro/assets/js/custom-code.min.js'),(2475,'wp-content/plugins/elementor-pro/assets/js/editor.js'),(2476,'wp-content/plugins/elementor-pro/assets/js/editor.min.js'),(2477,'wp-content/plugins/elementor-pro/assets/js/elements-handlers.js'),(2478,'wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js'),(2479,'wp-content/plugins/elementor-pro/assets/js/form-submission-admin.js'),(2480,'wp-content/plugins/elementor-pro/assets/js/form-submission-admin.min.js'),(2481,'wp-content/plugins/elementor-pro/assets/js/form.a1a56dc07903de7da0f4.bundle.js'),(2482,'wp-content/plugins/elementor-pro/assets/js/form.dd13e7aa247581b7c347.bundle.min.js'),(2483,'wp-content/plugins/elementor-pro/assets/js/frontend.js'),(2484,'wp-content/plugins/elementor-pro/assets/js/frontend.min.js'),(2485,'wp-content/plugins/elementor-pro/assets/js/gallery.044b1c02fe2971304f4b.bundle.js'),(2486,'wp-content/plugins/elementor-pro/assets/js/gallery.553ce77143c8a6c9fb2f.bundle.min.js'),(2487,'wp-content/plugins/elementor-pro/assets/js/hotspot.6e5f8367844f92a2df4d.bundle.js'),(2488,'wp-content/plugins/elementor-pro/assets/js/hotspot.87f8b120d01ef70bdf13.bundle.min.js'),(2489,'wp-content/plugins/elementor-pro/assets/js/jszip.vendor.8911033537a0c9d6e5f8.bundle.js'),(2490,'wp-content/plugins/elementor-pro/assets/js/jszip.vendor.9ec53381c344ee903f3e.bundle.min.js'),(2491,'wp-content/plugins/elementor-pro/assets/js/jszip.vendor.9ec53381c344ee903f3e.bundle.min.js.LICENSE.txt'),(2492,'wp-content/plugins/elementor-pro/assets/js/lottie.56eeeacd4e8b45bf0e69.bundle.js'),(2493,'wp-content/plugins/elementor-pro/assets/js/lottie.b602d6a1c68e229db197.bundle.min.js'),(2494,'wp-content/plugins/elementor-pro/assets/js/media-carousel.9201a4f4bc7f4cb6a7c2.bundle.min.js'),(2495,'wp-content/plugins/elementor-pro/assets/js/media-carousel.c358c67478f0b64157d8.bundle.js'),(2496,'wp-content/plugins/elementor-pro/assets/js/nav-menu.1047f3cf542aebc7eea1.bundle.js'),(2497,'wp-content/plugins/elementor-pro/assets/js/nav-menu.45545c0d5772c620c9fc.bundle.min.js'),(2498,'wp-content/plugins/elementor-pro/assets/js/paypal-button.b2f7547fbb7a974af793.bundle.min.js'),(2499,'wp-content/plugins/elementor-pro/assets/js/paypal-button.e7bc00be6d37a75afa94.bundle.js'),(2500,'wp-content/plugins/elementor-pro/assets/js/popup.11f78f8460dfd624d6fd.bundle.js'),(2501,'wp-content/plugins/elementor-pro/assets/js/popup.502330d9929af9beeefd.bundle.min.js'),(2502,'wp-content/plugins/elementor-pro/assets/js/portfolio.1753cf6f95efb460cd6c.bundle.js'),(2503,'wp-content/plugins/elementor-pro/assets/js/portfolio.7e41bde7ebd3c1195e2a.bundle.min.js'),(2504,'wp-content/plugins/elementor-pro/assets/js/posts.2850ece7b8987a6bff85.bundle.min.js'),(2505,'wp-content/plugins/elementor-pro/assets/js/posts.4b4834181e0158037844.bundle.js'),(2506,'wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.js'),(2507,'wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js'),(2508,'wp-content/plugins/elementor-pro/assets/js/preview.js'),(2509,'wp-content/plugins/elementor-pro/assets/js/preview.min.js'),(2510,'wp-content/plugins/elementor-pro/assets/js/qunit-tests.js'),(2511,'wp-content/plugins/elementor-pro/assets/js/qunit-tests.min.js'),(2512,'wp-content/plugins/elementor-pro/assets/js/screenshot.js'),(2513,'wp-content/plugins/elementor-pro/assets/js/screenshot.min.js'),(2514,'wp-content/plugins/elementor-pro/assets/js/search-form.3930197ed1faa52a1ca6.bundle.js'),(2515,'wp-content/plugins/elementor-pro/assets/js/search-form.69e3551a94b182780302.bundle.min.js'),(2516,'wp-content/plugins/elementor-pro/assets/js/share-buttons.90bff2e73000d4e3f189.bundle.min.js'),(2517,'wp-content/plugins/elementor-pro/assets/js/share-buttons.a4ac583614766c17243b.bundle.js'),(2518,'wp-content/plugins/elementor-pro/assets/js/slides.805ab056f4b77290515e.bundle.min.js'),(2519,'wp-content/plugins/elementor-pro/assets/js/slides.b404bc7083be41fc917c.bundle.js'),(2520,'wp-content/plugins/elementor-pro/assets/js/social.248e7d2278f85735e210.bundle.js'),(2521,'wp-content/plugins/elementor-pro/assets/js/social.313de86242bbec8993a6.bundle.min.js'),(2522,'wp-content/plugins/elementor-pro/assets/js/table-of-contents.18b2bc609c0761e78803.bundle.min.js'),(2523,'wp-content/plugins/elementor-pro/assets/js/table-of-contents.c40874e82fb2b6d09547.bundle.js'),(2524,'wp-content/plugins/elementor-pro/assets/js/video-playlist.1b36054052aa15db889b.bundle.js'),(2525,'wp-content/plugins/elementor-pro/assets/js/video-playlist.57fa9ca0ce034c2ac255.bundle.min.js'),(2526,'wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.js'),(2527,'wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js'),(2528,'wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.a0ca3c5b1b1fbd100eae.bundle.min.js'),(2529,'wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.c85790f6adbf4d37d78a.bundle.js'),(2530,'wp-content/plugins/elementor-pro/assets/lib/dom-to-image/js/dom-to-image.js'),(2531,'wp-content/plugins/elementor-pro/assets/lib/dom-to-image/js/dom-to-image.min.js'),(2532,'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/brands.js'),(2533,'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/duotone.js'),(2534,'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/light.js'),(2535,'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/regular.js'),(2536,'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/solid.js'),(2537,'wp-content/plugins/elementor-pro/assets/lib/html2canvas/js/html2canvas.js'),(2538,'wp-content/plugins/elementor-pro/assets/lib/html2canvas/js/html2canvas.min.js'),(2539,'wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.js'),(2540,'wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.min.js'),(2541,'wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.js'),(2542,'wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js'),(2543,'wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.js'),(2544,'wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js'),(2545,'wp-content/plugins/elementor-pro/base/base-widget-trait.php'),(2546,'wp-content/plugins/elementor-pro/base/base-widget.php'),(2547,'wp-content/plugins/elementor-pro/base/module-base.php'),(2548,'wp-content/plugins/elementor-pro/core/admin/admin.php'),(2549,'wp-content/plugins/elementor-pro/core/admin/canary-deployment.php'),(2550,'wp-content/plugins/elementor-pro/core/app/app.php'),(2551,'wp-content/plugins/elementor-pro/core/app/assets/js/index.js'),(2552,'wp-content/plugins/elementor-pro/core/app/modules/kit-library/module.php'),(2553,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms/indicator-bullet.js'),(2554,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms/preview-iframe.js'),(2555,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/base-context.js'),(2556,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/conditions.js'),(2557,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/models/condition.js'),(2558,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/services/conditions-config.js'),(2559,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/templates.js'),(2560,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/conditions-config.js'),(2561,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/index.js'),(2562,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates-conditions-conflicts.js'),(2563,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates-conditions.js'),(2564,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates.js'),(2565,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/component.js'),(2566,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/editor.js'),(2567,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/hooks/use-templates-screenshot.js'),(2568,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/back-button.js'),(2569,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-body.js'),(2570,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-footer.js'),(2571,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-header.js'),(2572,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-thumbnail.js'),(2573,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template.js'),(2574,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/organisms/site-templates.js'),(2575,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/add-new.js'),(2576,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-conflicts.js'),(2577,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-name.js'),(2578,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-sub-id.js'),(2579,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-sub.js'),(2580,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-type.js'),(2581,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/conditions-rows.js'),(2582,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/conditions.js'),(2583,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/import.js'),(2584,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/template-type.js'),(2585,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/templates.js'),(2586,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialog-delete.js'),(2587,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialog-rename.js'),(2588,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialogs-and-buttons.js'),(2589,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/site-editor.js'),(2590,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/controller.php'),(2591,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/base-endpoint.php'),(2592,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/conditions-config.php'),(2593,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/template-types.php'),(2594,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates-conditions-conflicts.php'),(2595,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates-conditions.php'),(2596,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php'),(2597,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/responses/lock-error-response.php'),(2598,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/module.php'),(2599,'wp-content/plugins/elementor-pro/core/app/modules/site-editor/render-mode-template-preview.php'),(2600,'wp-content/plugins/elementor-pro/core/connect/apps/activate.php'),(2601,'wp-content/plugins/elementor-pro/core/connect/manager.php'),(2602,'wp-content/plugins/elementor-pro/core/editor/editor.php'),(2603,'wp-content/plugins/elementor-pro/core/editor/notice-bar.php'),(2604,'wp-content/plugins/elementor-pro/core/editor/template.php'),(2605,'wp-content/plugins/elementor-pro/core/modules-manager.php'),(2606,'wp-content/plugins/elementor-pro/core/preview/preview.php'),(2607,'wp-content/plugins/elementor-pro/core/upgrade/manager.php'),(2608,'wp-content/plugins/elementor-pro/core/upgrade/upgrades.php'),(2609,'wp-content/plugins/elementor-pro/core/utils.php'),(2610,'wp-content/plugins/elementor-pro/data/base/controller.php'),(2611,'wp-content/plugins/elementor-pro/data/base/endpoint.php'),(2612,'wp-content/plugins/elementor-pro/docs/modules/payments/classes/payment-button.php.md'),(2613,'wp-content/plugins/elementor-pro/docs/modules/payments/widgets/paypal-button.php.md'),(2614,'wp-content/plugins/elementor-pro/elementor-pro.php'),(2615,'wp-content/plugins/elementor-pro/karma.conf.js'),(2616,'wp-content/plugins/elementor-pro/license/admin.php'),(2617,'wp-content/plugins/elementor-pro/license/api.php'),(2618,'wp-content/plugins/elementor-pro/license/updater.php'),(2619,'wp-content/plugins/elementor-pro/modules/animated-headline/module.php'),(2620,'wp-content/plugins/elementor-pro/modules/animated-headline/widgets/animated-headline.php'),(2621,'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/custom-fonts.php'),(2622,'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/typekit-fonts.php'),(2623,'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts-manager.php'),(2624,'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/custom-icons.php'),(2625,'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/font-awesome-pro.php'),(2626,'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/fontastic.php'),(2627,'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/fontello.php'),(2628,'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/icomoon.php'),(2629,'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/icon-set-base.php'),(2630,'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/templates.php'),(2631,'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons-manager.php'),(2632,'wp-content/plugins/elementor-pro/modules/assets-manager/classes/assets-base.php'),(2633,'wp-content/plugins/elementor-pro/modules/assets-manager/classes/font-base.php'),(2634,'wp-content/plugins/elementor-pro/modules/assets-manager/module.php'),(2635,'wp-content/plugins/elementor-pro/modules/blockquote/module.php'),(2636,'wp-content/plugins/elementor-pro/modules/blockquote/widgets/blockquote.php'),(2637,'wp-content/plugins/elementor-pro/modules/call-to-action/module.php'),(2638,'wp-content/plugins/elementor-pro/modules/call-to-action/widgets/call-to-action.php'),(2639,'wp-content/plugins/elementor-pro/modules/carousel/module.php'),(2640,'wp-content/plugins/elementor-pro/modules/carousel/widgets/base.php'),(2641,'wp-content/plugins/elementor-pro/modules/carousel/widgets/media-carousel.php'),(2642,'wp-content/plugins/elementor-pro/modules/carousel/widgets/reviews.php'),(2643,'wp-content/plugins/elementor-pro/modules/carousel/widgets/testimonial-carousel.php'),(2644,'wp-content/plugins/elementor-pro/modules/code-highlight/module.php'),(2645,'wp-content/plugins/elementor-pro/modules/code-highlight/widgets/code-highlight.php'),(2646,'wp-content/plugins/elementor-pro/modules/compatibility-tag/compatibility-tag-component.php'),(2647,'wp-content/plugins/elementor-pro/modules/compatibility-tag/module.php'),(2648,'wp-content/plugins/elementor-pro/modules/countdown/module.php'),(2649,'wp-content/plugins/elementor-pro/modules/countdown/widgets/countdown.php'),(2650,'wp-content/plugins/elementor-pro/modules/custom-attributes/module.php'),(2651,'wp-content/plugins/elementor-pro/modules/custom-code/custom-code-metabox.php'),(2652,'wp-content/plugins/elementor-pro/modules/custom-code/document.php'),(2653,'wp-content/plugins/elementor-pro/modules/custom-code/module.php'),(2654,'wp-content/plugins/elementor-pro/modules/custom-css/module.php'),(2655,'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/module.php'),(2656,'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-color.php'),(2657,'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-file.php'),(2658,'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-gallery.php'),(2659,'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-image.php'),(2660,'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-number.php'),(2661,'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-text.php'),(2662,'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-url.php'),(2663,'wp-content/plugins/elementor-pro/modules/dynamic-tags/module.php'),(2664,'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/module.php'),(2665,'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-base.php'),(2666,'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-date.php'),(2667,'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-gallery.php'),(2668,'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-image.php'),(2669,'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-numeric.php'),(2670,'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-text.php'),(2671,'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-url.php'),(2672,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-description.php'),(2673,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-meta.php'),(2674,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-title.php'),(2675,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-url.php'),(2676,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-info.php'),(2677,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-meta.php'),(2678,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-name.php'),(2679,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-profile-picture.php'),(2680,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-url.php'),(2681,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/data-tag.php'),(2682,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/tag-trait.php'),(2683,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/tag.php'),(2684,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/comments-number.php'),(2685,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/comments-url.php'),(2686,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/contact-url.php'),(2687,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/current-date-time.php'),(2688,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/featured-image-data.php'),(2689,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/internal-url.php'),(2690,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/lightbox.php'),(2691,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/page-title.php'),(2692,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-custom-field.php'),(2693,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-date.php'),(2694,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-excerpt.php'),(2695,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-featured-image.php'),(2696,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-gallery.php'),(2697,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-id.php'),(2698,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-terms.php'),(2699,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-time.php'),(2700,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-title.php'),(2701,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-url.php'),(2702,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/request-parameter.php'),(2703,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/shortcode.php'),(2704,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-logo.php'),(2705,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-tagline.php'),(2706,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-title.php'),(2707,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-url.php'),(2708,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/user-info.php'),(2709,'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/user-profile-picture.php'),(2710,'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/module.php'),(2711,'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-base.php'),(2712,'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-date.php'),(2713,'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-gallery.php'),(2714,'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-image.php'),(2715,'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-text.php'),(2716,'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-url.php'),(2717,'wp-content/plugins/elementor-pro/modules/flip-box/module.php'),(2718,'wp-content/plugins/elementor-pro/modules/flip-box/widgets/flip-box.php'),(2719,'wp-content/plugins/elementor-pro/modules/forms/actions/activecampaign.php'),(2720,'wp-content/plugins/elementor-pro/modules/forms/actions/activity-log.php'),(2721,'wp-content/plugins/elementor-pro/modules/forms/actions/cf7db.php'),(2722,'wp-content/plugins/elementor-pro/modules/forms/actions/convertkit.php'),(2723,'wp-content/plugins/elementor-pro/modules/forms/actions/discord.php'),(2724,'wp-content/plugins/elementor-pro/modules/forms/actions/drip.php'),(2725,'wp-content/plugins/elementor-pro/modules/forms/actions/email.php'),(2726,'wp-content/plugins/elementor-pro/modules/forms/actions/email2.php'),(2727,'wp-content/plugins/elementor-pro/modules/forms/actions/getresponse.php'),(2728,'wp-content/plugins/elementor-pro/modules/forms/actions/mailchimp.php'),(2729,'wp-content/plugins/elementor-pro/modules/forms/actions/mailerlite.php'),(2730,'wp-content/plugins/elementor-pro/modules/forms/actions/mailpoet.php'),(2731,'wp-content/plugins/elementor-pro/modules/forms/actions/mailpoet3.php'),(2732,'wp-content/plugins/elementor-pro/modules/forms/actions/redirect.php'),(2733,'wp-content/plugins/elementor-pro/modules/forms/actions/slack.php'),(2734,'wp-content/plugins/elementor-pro/modules/forms/actions/webhook.php'),(2735,'wp-content/plugins/elementor-pro/modules/forms/classes/action-base.php'),(2736,'wp-content/plugins/elementor-pro/modules/forms/classes/activecampaign-handler.php'),(2737,'wp-content/plugins/elementor-pro/modules/forms/classes/ajax-handler.php'),(2738,'wp-content/plugins/elementor-pro/modules/forms/classes/convertkit-handler.php'),(2739,'wp-content/plugins/elementor-pro/modules/forms/classes/drip-handler.php'),(2740,'wp-content/plugins/elementor-pro/modules/forms/classes/form-base.php'),(2741,'wp-content/plugins/elementor-pro/modules/forms/classes/form-record.php'),(2742,'wp-content/plugins/elementor-pro/modules/forms/classes/getresponse-handler.php'),(2743,'wp-content/plugins/elementor-pro/modules/forms/classes/honeypot-handler.php'),(2744,'wp-content/plugins/elementor-pro/modules/forms/classes/integration-base.php'),(2745,'wp-content/plugins/elementor-pro/modules/forms/classes/mailchimp-handler.php'),(2746,'wp-content/plugins/elementor-pro/modules/forms/classes/mailerlite-handler.php'),(2747,'wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-handler.php'),(2748,'wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-v3-handler.php'),(2749,'wp-content/plugins/elementor-pro/modules/forms/classes/rest-client.php'),(2750,'wp-content/plugins/elementor-pro/modules/forms/controls/fields-map.php'),(2751,'wp-content/plugins/elementor-pro/modules/forms/controls/fields-repeater.php'),(2752,'wp-content/plugins/elementor-pro/modules/forms/fields/acceptance.php'),(2753,'wp-content/plugins/elementor-pro/modules/forms/fields/date.php'),(2754,'wp-content/plugins/elementor-pro/modules/forms/fields/field-base.php'),(2755,'wp-content/plugins/elementor-pro/modules/forms/fields/number.php'),(2756,'wp-content/plugins/elementor-pro/modules/forms/fields/step.php'),(2757,'wp-content/plugins/elementor-pro/modules/forms/fields/tel.php'),(2758,'wp-content/plugins/elementor-pro/modules/forms/fields/time.php'),(2759,'wp-content/plugins/elementor-pro/modules/forms/fields/upload.php'),(2760,'wp-content/plugins/elementor-pro/modules/forms/module.php'),(2761,'wp-content/plugins/elementor-pro/modules/forms/submissions/actions/save-to-database.php'),(2762,'wp-content/plugins/elementor-pro/modules/forms/submissions/component.php'),(2763,'wp-content/plugins/elementor-pro/modules/forms/submissions/data/controller.php'),(2764,'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/export.php'),(2765,'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/forms-index.php'),(2766,'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/index.php'),(2767,'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/referer.php'),(2768,'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/restore.php'),(2769,'wp-content/plugins/elementor-pro/modules/forms/submissions/data/forms-controller.php'),(2770,'wp-content/plugins/elementor-pro/modules/forms/submissions/data/responses/query-failed-response.php'),(2771,'wp-content/plugins/elementor-pro/modules/forms/submissions/database/entities/form-snapshot.php'),(2772,'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migration.php'),(2773,'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/base-migration.php'),(2774,'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/fix-indexes.php'),(2775,'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/initial.php'),(2776,'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/referer-extra.php'),(2777,'wp-content/plugins/elementor-pro/modules/forms/submissions/database/query.php'),(2778,'wp-content/plugins/elementor-pro/modules/forms/submissions/database/repositories/form-snapshot-repository.php'),(2779,'wp-content/plugins/elementor-pro/modules/forms/submissions/export/csv-export.php'),(2780,'wp-content/plugins/elementor-pro/modules/forms/submissions/personal-data.php'),(2781,'wp-content/plugins/elementor-pro/modules/forms/widgets/form.php'),(2782,'wp-content/plugins/elementor-pro/modules/forms/widgets/login.php'),(2783,'wp-content/plugins/elementor-pro/modules/gallery/module.php'),(2784,'wp-content/plugins/elementor-pro/modules/gallery/widgets/gallery.php'),(2785,'wp-content/plugins/elementor-pro/modules/global-widget/documents/widget.php'),(2786,'wp-content/plugins/elementor-pro/modules/global-widget/module.php'),(2787,'wp-content/plugins/elementor-pro/modules/global-widget/views/panel-template.php'),(2788,'wp-content/plugins/elementor-pro/modules/global-widget/widgets/global-widget.php'),(2789,'wp-content/plugins/elementor-pro/modules/hotspot/module.php'),(2790,'wp-content/plugins/elementor-pro/modules/hotspot/widgets/hotspot.php'),(2791,'wp-content/plugins/elementor-pro/modules/library/classes/shortcode.php'),(2792,'wp-content/plugins/elementor-pro/modules/library/module.php'),(2793,'wp-content/plugins/elementor-pro/modules/library/widgets/template.php'),(2794,'wp-content/plugins/elementor-pro/modules/library/wp-widgets/elementor-library.php'),(2795,'wp-content/plugins/elementor-pro/modules/license/module.php'),(2796,'wp-content/plugins/elementor-pro/modules/lottie/module.php'),(2797,'wp-content/plugins/elementor-pro/modules/lottie/widgets/lottie.php'),(2798,'wp-content/plugins/elementor-pro/modules/motion-fx/controls-group.php'),(2799,'wp-content/plugins/elementor-pro/modules/motion-fx/module.php'),(2800,'wp-content/plugins/elementor-pro/modules/nav-menu/module.php'),(2801,'wp-content/plugins/elementor-pro/modules/nav-menu/widgets/nav-menu.php'),(2802,'wp-content/plugins/elementor-pro/modules/payments/classes/payment-button.php'),(2803,'wp-content/plugins/elementor-pro/modules/payments/module.php'),(2804,'wp-content/plugins/elementor-pro/modules/payments/widgets/paypal-button.php'),(2805,'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/browsers.svg'),(2806,'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/devices.svg'),(2807,'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/logged_in.svg'),(2808,'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/page_views.svg'),(2809,'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/sessions.svg'),(2810,'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/sources.svg'),(2811,'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/times.svg'),(2812,'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/url.svg'),(2813,'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/visits.svg'),(2814,'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing-tab.svg'),(2815,'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/click.svg'),(2816,'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/exit_intent.svg'),(2817,'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/inactivity.svg'),(2818,'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/page_load.svg'),(2819,'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/scrolling.svg'),(2820,'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/scrolling_to.svg'),(2821,'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers-tab.svg'),(2822,'wp-content/plugins/elementor-pro/modules/popup/display-settings/base.php'),(2823,'wp-content/plugins/elementor-pro/modules/popup/display-settings/timing.php'),(2824,'wp-content/plugins/elementor-pro/modules/popup/display-settings/triggers.php'),(2825,'wp-content/plugins/elementor-pro/modules/popup/document.php'),(2826,'wp-content/plugins/elementor-pro/modules/popup/form-action.php'),(2827,'wp-content/plugins/elementor-pro/modules/popup/module.php'),(2828,'wp-content/plugins/elementor-pro/modules/popup/tag.php'),(2829,'wp-content/plugins/elementor-pro/modules/posts/module.php'),(2830,'wp-content/plugins/elementor-pro/modules/posts/skins/skin-base.php'),(2831,'wp-content/plugins/elementor-pro/modules/posts/skins/skin-cards.php'),(2832,'wp-content/plugins/elementor-pro/modules/posts/skins/skin-classic.php'),(2833,'wp-content/plugins/elementor-pro/modules/posts/skins/skin-content-base.php'),(2834,'wp-content/plugins/elementor-pro/modules/posts/skins/skin-full-content.php'),(2835,'wp-content/plugins/elementor-pro/modules/posts/widgets/portfolio.php'),(2836,'wp-content/plugins/elementor-pro/modules/posts/widgets/posts-base.php'),(2837,'wp-content/plugins/elementor-pro/modules/posts/widgets/posts.php'),(2838,'wp-content/plugins/elementor-pro/modules/pricing/module.php'),(2839,'wp-content/plugins/elementor-pro/modules/pricing/widgets/price-list.php'),(2840,'wp-content/plugins/elementor-pro/modules/pricing/widgets/price-table.php'),(2841,'wp-content/plugins/elementor-pro/modules/query-control/classes/elementor-post-query.php'),(2842,'wp-content/plugins/elementor-pro/modules/query-control/classes/elementor-related-query.php'),(2843,'wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-posts.php'),(2844,'wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-query.php'),(2845,'wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-related.php'),(2846,'wp-content/plugins/elementor-pro/modules/query-control/controls/query.php'),(2847,'wp-content/plugins/elementor-pro/modules/query-control/module.php'),(2848,'wp-content/plugins/elementor-pro/modules/role-manager/module.php'),(2849,'wp-content/plugins/elementor-pro/modules/screenshots/module.php'),(2850,'wp-content/plugins/elementor-pro/modules/screenshots/render-mode-screenshot.php'),(2851,'wp-content/plugins/elementor-pro/modules/screenshots/screenshot.php'),(2852,'wp-content/plugins/elementor-pro/modules/share-buttons/module.php'),(2853,'wp-content/plugins/elementor-pro/modules/share-buttons/widgets/share-buttons.php'),(2854,'wp-content/plugins/elementor-pro/modules/slides/module.php'),(2855,'wp-content/plugins/elementor-pro/modules/slides/widgets/slides.php'),(2856,'wp-content/plugins/elementor-pro/modules/social/classes/facebook-sdk-manager.php'),(2857,'wp-content/plugins/elementor-pro/modules/social/module.php'),(2858,'wp-content/plugins/elementor-pro/modules/social/widgets/facebook-button.php'),(2859,'wp-content/plugins/elementor-pro/modules/social/widgets/facebook-comments.php'),(2860,'wp-content/plugins/elementor-pro/modules/social/widgets/facebook-embed.php'),(2861,'wp-content/plugins/elementor-pro/modules/social/widgets/facebook-page.php'),(2862,'wp-content/plugins/elementor-pro/modules/sticky/module.php'),(2863,'wp-content/plugins/elementor-pro/modules/table-of-contents/module.php'),(2864,'wp-content/plugins/elementor-pro/modules/table-of-contents/widgets/table-of-contents.php'),(2865,'wp-content/plugins/elementor-pro/modules/theme-builder/api.php'),(2866,'wp-content/plugins/elementor-pro/modules/theme-builder/assets/images/conditions-tab.svg'),(2867,'wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-cache.php'),(2868,'wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php'),(2869,'wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-repeater.php'),(2870,'wp-content/plugins/elementor-pro/modules/theme-builder/classes/locations-manager.php'),(2871,'wp-content/plugins/elementor-pro/modules/theme-builder/classes/preview-manager.php'),(2872,'wp-content/plugins/elementor-pro/modules/theme-builder/classes/template-conditions.php'),(2873,'wp-content/plugins/elementor-pro/modules/theme-builder/classes/templates-types-manager.php'),(2874,'wp-content/plugins/elementor-pro/modules/theme-builder/classes/theme-support.php'),(2875,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/any-child-of-term.php'),(2876,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/any-child-of.php'),(2877,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/archive.php'),(2878,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/author.php'),(2879,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/by-author.php'),(2880,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/child-of-term.php'),(2881,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/child-of.php'),(2882,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/condition-base.php'),(2883,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/date.php'),(2884,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/front-page.php'),(2885,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/general.php'),(2886,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/in-sub-term.php'),(2887,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/in-taxonomy.php'),(2888,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/not-found404.php'),(2889,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post-type-archive.php'),(2890,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post-type-by-author.php'),(2891,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post.php'),(2892,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/search.php'),(2893,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/singular.php'),(2894,'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/taxonomy.php'),(2895,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/archive-single-base.php'),(2896,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/archive.php'),(2897,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/error-404.php'),(2898,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/footer.php'),(2899,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/header-footer-base.php'),(2900,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/header.php'),(2901,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/search-results.php'),(2902,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/section.php'),(2903,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-base.php'),(2904,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-page.php'),(2905,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-post.php'),(2906,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/single.php'),(2907,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-document.php'),(2908,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-page-document.php'),(2909,'wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-section-document.php'),(2910,'wp-content/plugins/elementor-pro/modules/theme-builder/module.php'),(2911,'wp-content/plugins/elementor-pro/modules/theme-builder/skins/post-comments-skin-classic.php'),(2912,'wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-base.php'),(2913,'wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-cards.php'),(2914,'wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-classic.php'),(2915,'wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-full-content.php'),(2916,'wp-content/plugins/elementor-pro/modules/theme-builder/theme-support/generate-press-theme-support.php'),(2917,'wp-content/plugins/elementor-pro/modules/theme-builder/theme-support/safe-mode-theme-support.php'),(2918,'wp-content/plugins/elementor-pro/modules/theme-builder/views/comments-template.php'),(2919,'wp-content/plugins/elementor-pro/modules/theme-builder/views/panel-template.php'),(2920,'wp-content/plugins/elementor-pro/modules/theme-builder/views/theme-support-footer.php'),(2921,'wp-content/plugins/elementor-pro/modules/theme-builder/views/theme-support-header.php'),(2922,'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/archive-posts.php'),(2923,'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/archive-title.php'),(2924,'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/page-title.php'),(2925,'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-content.php'),(2926,'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-excerpt.php'),(2927,'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-featured-image.php'),(2928,'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-title.php'),(2929,'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-logo.php'),(2930,'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-title.php'),(2931,'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/title-widget-base.php'),(2932,'wp-content/plugins/elementor-pro/modules/theme-elements/module.php'),(2933,'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/author-box.php'),(2934,'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/base.php'),(2935,'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/breadcrumbs.php'),(2936,'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-comments.php'),(2937,'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-info.php'),(2938,'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-navigation.php'),(2939,'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/search-form.php'),(2940,'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/sitemap.php'),(2941,'wp-content/plugins/elementor-pro/modules/usage/module.php'),(2942,'wp-content/plugins/elementor-pro/modules/video-playlist/module.php'),(2943,'wp-content/plugins/elementor-pro/modules/video-playlist/widgets/video-playlist.php'),(2944,'wp-content/plugins/elementor-pro/modules/woocommerce/classes/base-products-renderer.php'),(2945,'wp-content/plugins/elementor-pro/modules/woocommerce/classes/current-query-renderer.php'),(2946,'wp-content/plugins/elementor-pro/modules/woocommerce/classes/products-renderer.php'),(2947,'wp-content/plugins/elementor-pro/modules/woocommerce/conditions/product-archive.php'),(2948,'wp-content/plugins/elementor-pro/modules/woocommerce/conditions/product-search.php'),(2949,'wp-content/plugins/elementor-pro/modules/woocommerce/conditions/shop-page.php'),(2950,'wp-content/plugins/elementor-pro/modules/woocommerce/conditions/woocommerce.php'),(2951,'wp-content/plugins/elementor-pro/modules/woocommerce/documents/product-archive.php'),(2952,'wp-content/plugins/elementor-pro/modules/woocommerce/documents/product-post.php'),(2953,'wp-content/plugins/elementor-pro/modules/woocommerce/documents/product.php'),(2954,'wp-content/plugins/elementor-pro/modules/woocommerce/module.php'),(2955,'wp-content/plugins/elementor-pro/modules/woocommerce/skins/skin-classic.php'),(2956,'wp-content/plugins/elementor-pro/modules/woocommerce/tags/base-data-tag.php'),(2957,'wp-content/plugins/elementor-pro/modules/woocommerce/tags/base-tag.php'),(2958,'wp-content/plugins/elementor-pro/modules/woocommerce/tags/category-image.php'),(2959,'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-gallery.php'),(2960,'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-image.php'),(2961,'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-price.php'),(2962,'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-rating.php'),(2963,'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-sale.php'),(2964,'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-short-description.php'),(2965,'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-sku.php'),(2966,'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-stock.php'),(2967,'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-terms.php'),(2968,'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-title.php'),(2969,'wp-content/plugins/elementor-pro/modules/woocommerce/wc-templates/cart/mini-cart.php'),(2970,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/add-to-cart.php'),(2971,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-description.php'),(2972,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-products-deprecated.php'),(2973,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-products.php'),(2974,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/base-widget.php'),(2975,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/breadcrumb.php'),(2976,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/categories.php'),(2977,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/category-image.php'),(2978,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/elements.php'),(2979,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/menu-cart.php'),(2980,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-add-to-cart.php'),(2981,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-additional-information.php'),(2982,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-content.php'),(2983,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-data-tabs.php'),(2984,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-images.php'),(2985,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-meta.php'),(2986,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-price.php'),(2987,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-rating.php'),(2988,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-related.php'),(2989,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-short-description.php'),(2990,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-stock.php'),(2991,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-title.php'),(2992,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-upsell.php'),(2993,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products-base.php'),(2994,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products-deprecated.php'),(2995,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products.php'),(2996,'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/single-elements.php'),(2997,'wp-content/plugins/elementor-pro/modules/wp-cli/license-command.php'),(2998,'wp-content/plugins/elementor-pro/modules/wp-cli/module.php'),(2999,'wp-content/plugins/elementor-pro/modules/wp-cli/update.php'),(3000,'wp-content/plugins/elementor-pro/plugin.php'),(3001,'wp-content/plugins/facebook-pagelike-widget/FacebookLocales.json'),(3002,'wp-content/plugins/facebook-pagelike-widget/assets/css/add-review.css'),(3003,'wp-content/plugins/facebook-pagelike-widget/facebook_widget.php'),(3004,'wp-content/plugins/facebook-pagelike-widget/facebook_widget.po'),(3005,'wp-content/plugins/facebook-pagelike-widget/fb.js'),(3006,'wp-content/plugins/facebook-pagelike-widget/fb_class.php'),(3007,'wp-content/plugins/facebook-pagelike-widget/includes/add-review.php'),(3008,'wp-content/plugins/facebook-pagelike-widget/loader.gif'),(3009,'wp-content/plugins/facebook-pagelike-widget/readme.txt'),(3010,'wp-content/plugins/facebook-pagelike-widget/screenshot-1.png'),(3011,'wp-content/plugins/facebook-pagelike-widget/screenshot-2.png'),(3012,'wp-content/plugins/facebook-pagelike-widget/screenshot-3.png'),(3013,'wp-content/plugins/facebook-pagelike-widget/short_code.php'),(3014,'wp-content/plugins/hello-dolly/hello.php'),(3015,'wp-content/plugins/hello-dolly/readme.txt'),(3016,'wp-content/plugins/hello.php'),(3017,'wp-content/plugins/index.php'),(3018,'wp-content/plugins/issuu-panel/assets/js/document-update.js'),(3019,'wp-content/plugins/issuu-panel/assets/js/document-update.min.js'),(3020,'wp-content/plugins/issuu-panel/assets/js/document-upload.js'),(3021,'wp-content/plugins/issuu-panel/assets/js/document-upload.min.js'),(3022,'wp-content/plugins/issuu-panel/assets/js/document-url-upload.js'),(3023,'wp-content/plugins/issuu-panel/assets/js/document-url-upload.min.js'),(3024,'wp-content/plugins/issuu-panel/assets/js/issuu-panel-reader.js'),(3025,'wp-content/plugins/issuu-panel/assets/js/issuu-panel-reader.min.js'),(3026,'wp-content/plugins/issuu-panel/assets/js/replace-tags-p.js'),(3027,'wp-content/plugins/issuu-panel/assets/js/replace-tags-p.min.js'),(3028,'wp-content/plugins/issuu-panel/assets/js/swfobject/swfobject.js'),(3029,'wp-content/plugins/issuu-panel/assets/js/tinymce-button.js'),(3030,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanel.php'),(3031,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelaction.php'),(3032,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelcachemanager.php'),(3033,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelcatcher.php'),(3034,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelconfig.php'),(3035,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelcron.php'),(3036,'wp-content/plugins/issuu-panel/includes/classes/class.issuupaneldebug.php'),(3037,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelfilter.php'),(3038,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelfoldercacheentity.php'),(3039,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelfoldercacheentitymanager.php'),(3040,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelhookmanager.php'),(3041,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelinitplugin.php'),(3042,'wp-content/plugins/issuu-panel/includes/classes/class.issuupaneloptionentity.php'),(3043,'wp-content/plugins/issuu-panel/includes/classes/class.issuupaneloptionentitymanager.php'),(3044,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelpaginate.php'),(3045,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelpluginmanager.php'),(3046,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelscripts.php'),(3047,'wp-content/plugins/issuu-panel/includes/classes/class.issuupanelsubmenu.php'),(3048,'wp-content/plugins/issuu-panel/includes/classes/class.issuupaneltinymcebutton.php'),(3049,'wp-content/plugins/issuu-panel/includes/functions.php'),(3050,'wp-content/plugins/issuu-panel/includes/interfaces/interface.issuupanelhook.php'),(3051,'wp-content/plugins/issuu-panel/includes/interfaces/interface.issuupanelpage.php'),(3052,'wp-content/plugins/issuu-panel/includes/interfaces/interface.issuupanelservice.php'),(3053,'wp-content/plugins/issuu-panel/includes/listeners/class.issuupanelajaxrequestlistener.php'),(3054,'wp-content/plugins/issuu-panel/includes/listeners/class.issuupaneldocumentlistener.php'),(3055,'wp-content/plugins/issuu-panel/includes/listeners/class.issuupanelfoldercachelistener.php'),(3056,'wp-content/plugins/issuu-panel/includes/listeners/class.issuupanelfolderlistener.php'),(3057,'wp-content/plugins/issuu-panel/includes/listeners/class.issuupanelloglistener.php'),(3058,'wp-content/plugins/issuu-panel/includes/listeners/class.issuupanelpluginconfiglistener.php'),(3059,'wp-content/plugins/issuu-panel/includes/listeners/class.issuupanelupdatedatalistener.php'),(3060,'wp-content/plugins/issuu-panel/includes/mobile-detect/Mobile_Detect.php'),(3061,'wp-content/plugins/issuu-panel/includes/reader/class.issuupanelsimplereader.php'),(3062,'wp-content/plugins/issuu-panel/includes/reader/js/jquery.issuupanelreader.js'),(3063,'wp-content/plugins/issuu-panel/includes/reader/js/jquery.issuupanelreader.min.js'),(3064,'wp-content/plugins/issuu-panel/includes/reader/reader.phtml'),(3065,'wp-content/plugins/issuu-panel/index.php'),(3066,'wp-content/plugins/issuu-panel/issuu-panel.php'),(3067,'wp-content/plugins/issuu-panel/issuuservice-lib/bootstrap.php'),(3068,'wp-content/plugins/issuu-panel/issuuservice-lib/lib/class.issuubookmark.php'),(3069,'wp-content/plugins/issuu-panel/issuuservice-lib/lib/class.issuudocument.php'),(3070,'wp-content/plugins/issuu-panel/issuuservice-lib/lib/class.issuudocumentembed.php'),(3071,'wp-content/plugins/issuu-panel/issuuservice-lib/lib/class.issuufolder.php'),(3072,'wp-content/plugins/issuu-panel/issuuservice-lib/lib/class.issuuserviceapi.php'),(3073,'wp-content/plugins/issuu-panel/menu/about/config.php'),(3074,'wp-content/plugins/issuu-panel/menu/about/page.php'),(3075,'wp-content/plugins/issuu-panel/menu/document/config.php'),(3076,'wp-content/plugins/issuu-panel/menu/document/document-list.php'),(3077,'wp-content/plugins/issuu-panel/menu/document/forms/update.php'),(3078,'wp-content/plugins/issuu-panel/menu/document/forms/upload.php'),(3079,'wp-content/plugins/issuu-panel/menu/document/forms/url-upload.php'),(3080,'wp-content/plugins/issuu-panel/menu/folder/config.php'),(3081,'wp-content/plugins/issuu-panel/menu/folder/folder-list.php'),(3082,'wp-content/plugins/issuu-panel/menu/folder/forms/add.php'),(3083,'wp-content/plugins/issuu-panel/menu/folder/forms/update.php'),(3084,'wp-content/plugins/issuu-panel/menu/main/config.php'),(3085,'wp-content/plugins/issuu-panel/menu/main/page.phtml'),(3086,'wp-content/plugins/issuu-panel/shortcode/class.issuupanelshortcodegenerator.php'),(3087,'wp-content/plugins/issuu-panel/shortcode/class.issuupanelshortcodes.php'),(3088,'wp-content/plugins/issuu-panel/shortcode/document-list.php'),(3089,'wp-content/plugins/issuu-panel/shortcode/folder-list.php'),(3090,'wp-content/plugins/issuu-panel/shortcode/generator.php'),(3091,'wp-content/plugins/issuu-panel/shortcode/the-last-document-folder.php'),(3092,'wp-content/plugins/issuu-panel/shortcode/the-last-document.php'),(3093,'wp-content/plugins/issuu-panel/widget/class.issuupanelwidget.php'),(3094,'wp-content/plugins/issuu-panel/widget/forms/last-document-shortcode.phtml'),(3095,'wp-content/plugins/jetpack/3rd-party/3rd-party.php'),(3096,'wp-content/plugins/jetpack/3rd-party/bbpress.php'),(3097,'wp-content/plugins/jetpack/3rd-party/beaverbuilder.php'),(3098,'wp-content/plugins/jetpack/3rd-party/bitly.php'),(3099,'wp-content/plugins/jetpack/3rd-party/buddypress.php'),(3100,'wp-content/plugins/jetpack/3rd-party/class-domain-mapping.php'),(3101,'wp-content/plugins/jetpack/3rd-party/class-jetpack-bbpress-rest-api.php'),(3102,'wp-content/plugins/jetpack/3rd-party/class-jetpack-crm-data.php'),(3103,'wp-content/plugins/jetpack/3rd-party/class-jetpack-modules-overrides.php'),(3104,'wp-content/plugins/jetpack/3rd-party/class.jetpack-amp-support.php'),(3105,'wp-content/plugins/jetpack/3rd-party/class.jetpack-modules-overrides.php'),(3106,'wp-content/plugins/jetpack/3rd-party/creative-mail.php'),(3107,'wp-content/plugins/jetpack/3rd-party/crowdsignal.php'),(3108,'wp-content/plugins/jetpack/3rd-party/debug-bar/class-jetpack-search-debug-bar.php'),(3109,'wp-content/plugins/jetpack/3rd-party/debug-bar/class.jetpack-search-debug-bar.php'),(3110,'wp-content/plugins/jetpack/3rd-party/debug-bar/debug-bar.css'),(3111,'wp-content/plugins/jetpack/3rd-party/debug-bar/debug-bar.js'),(3112,'wp-content/plugins/jetpack/3rd-party/debug-bar.php'),(3113,'wp-content/plugins/jetpack/3rd-party/domain-mapping.php'),(3114,'wp-content/plugins/jetpack/3rd-party/jetpack-backup.php'),(3115,'wp-content/plugins/jetpack/3rd-party/jetpack-boost.php'),(3116,'wp-content/plugins/jetpack/3rd-party/polldaddy.php'),(3117,'wp-content/plugins/jetpack/3rd-party/qtranslate-x.php'),(3118,'wp-content/plugins/jetpack/3rd-party/vaultpress.php'),(3119,'wp-content/plugins/jetpack/3rd-party/web-stories.php'),(3120,'wp-content/plugins/jetpack/3rd-party/woocommerce-services.php'),(3121,'wp-content/plugins/jetpack/3rd-party/woocommerce.php'),(3122,'wp-content/plugins/jetpack/3rd-party/wpml.php'),(3123,'wp-content/plugins/jetpack/CHANGELOG.md'),(3124,'wp-content/plugins/jetpack/LICENSE.txt'),(3125,'wp-content/plugins/jetpack/SECURITY.md'),(3126,'wp-content/plugins/jetpack/_inc/accessible-focus.js'),(3127,'wp-content/plugins/jetpack/_inc/blocks/263.js'),(3128,'wp-content/plugins/jetpack/_inc/blocks/279.eaf0dc5c7f63a13ef5c0.js'),(3129,'wp-content/plugins/jetpack/_inc/blocks/778.js'),(3130,'wp-content/plugins/jetpack/_inc/blocks/788.14064aefb46e9e64d8d5.js'),(3131,'wp-content/plugins/jetpack/_inc/blocks/860.js'),(3132,'wp-content/plugins/jetpack/_inc/blocks/business-hours/view.asset.php'),(3133,'wp-content/plugins/jetpack/_inc/blocks/business-hours/view.css'),(3134,'wp-content/plugins/jetpack/_inc/blocks/business-hours/view.js'),(3135,'wp-content/plugins/jetpack/_inc/blocks/business-hours/view.min.asset.php'),(3136,'wp-content/plugins/jetpack/_inc/blocks/business-hours/view.min.js'),(3137,'wp-content/plugins/jetpack/_inc/blocks/business-hours/view.rtl.css'),(3138,'wp-content/plugins/jetpack/_inc/blocks/button/view.asset.php'),(3139,'wp-content/plugins/jetpack/_inc/blocks/button/view.css'),(3140,'wp-content/plugins/jetpack/_inc/blocks/button/view.js'),(3141,'wp-content/plugins/jetpack/_inc/blocks/button/view.min.asset.php'),(3142,'wp-content/plugins/jetpack/_inc/blocks/button/view.min.js'),(3143,'wp-content/plugins/jetpack/_inc/blocks/button/view.rtl.css'),(3144,'wp-content/plugins/jetpack/_inc/blocks/calendly/view.asset.php'),(3145,'wp-content/plugins/jetpack/_inc/blocks/calendly/view.css'),(3146,'wp-content/plugins/jetpack/_inc/blocks/calendly/view.js'),(3147,'wp-content/plugins/jetpack/_inc/blocks/calendly/view.min.asset.php'),(3148,'wp-content/plugins/jetpack/_inc/blocks/calendly/view.min.js'),(3149,'wp-content/plugins/jetpack/_inc/blocks/calendly/view.rtl.css'),(3150,'wp-content/plugins/jetpack/_inc/blocks/components.css'),(3151,'wp-content/plugins/jetpack/_inc/blocks/components.js'),(3152,'wp-content/plugins/jetpack/_inc/blocks/components.js.LICENSE.txt'),(3153,'wp-content/plugins/jetpack/_inc/blocks/components.rtl.css'),(3154,'wp-content/plugins/jetpack/_inc/blocks/contact-info/view.asset.php'),(3155,'wp-content/plugins/jetpack/_inc/blocks/contact-info/view.css'),(3156,'wp-content/plugins/jetpack/_inc/blocks/contact-info/view.js'),(3157,'wp-content/plugins/jetpack/_inc/blocks/contact-info/view.min.asset.php'),(3158,'wp-content/plugins/jetpack/_inc/blocks/contact-info/view.min.js'),(3159,'wp-content/plugins/jetpack/_inc/blocks/contact-info/view.rtl.css'),(3160,'wp-content/plugins/jetpack/_inc/blocks/dialogue/view.asset.php'),(3161,'wp-content/plugins/jetpack/_inc/blocks/dialogue/view.css'),(3162,'wp-content/plugins/jetpack/_inc/blocks/dialogue/view.js'),(3163,'wp-content/plugins/jetpack/_inc/blocks/dialogue/view.min.asset.php'),(3164,'wp-content/plugins/jetpack/_inc/blocks/dialogue/view.min.js'),(3165,'wp-content/plugins/jetpack/_inc/blocks/dialogue/view.rtl.css'),(3166,'wp-content/plugins/jetpack/_inc/blocks/donations/view.asset.php'),(3167,'wp-content/plugins/jetpack/_inc/blocks/donations/view.css'),(3168,'wp-content/plugins/jetpack/_inc/blocks/donations/view.js'),(3169,'wp-content/plugins/jetpack/_inc/blocks/donations/view.js.LICENSE.txt'),(3170,'wp-content/plugins/jetpack/_inc/blocks/donations/view.min.asset.php'),(3171,'wp-content/plugins/jetpack/_inc/blocks/donations/view.min.js'),(3172,'wp-content/plugins/jetpack/_inc/blocks/donations/view.rtl.css'),(3173,'wp-content/plugins/jetpack/_inc/blocks/editor-assets/mapbox-gl-1.13.0.css'),(3174,'wp-content/plugins/jetpack/_inc/blocks/editor-assets/mapbox-gl-1.13.0.js'),(3175,'wp-content/plugins/jetpack/_inc/blocks/editor-beta.asset.php'),(3176,'wp-content/plugins/jetpack/_inc/blocks/editor-beta.css'),(3177,'wp-content/plugins/jetpack/_inc/blocks/editor-beta.js'),(3178,'wp-content/plugins/jetpack/_inc/blocks/editor-beta.js.LICENSE.txt'),(3179,'wp-content/plugins/jetpack/_inc/blocks/editor-beta.min.asset.php'),(3180,'wp-content/plugins/jetpack/_inc/blocks/editor-beta.min.js'),(3181,'wp-content/plugins/jetpack/_inc/blocks/editor-beta.rtl.css'),(3182,'wp-content/plugins/jetpack/_inc/blocks/editor-experimental.asset.php'),(3183,'wp-content/plugins/jetpack/_inc/blocks/editor-experimental.css'),(3184,'wp-content/plugins/jetpack/_inc/blocks/editor-experimental.js'),(3185,'wp-content/plugins/jetpack/_inc/blocks/editor-experimental.js.LICENSE.txt'),(3186,'wp-content/plugins/jetpack/_inc/blocks/editor-experimental.min.asset.php'),(3187,'wp-content/plugins/jetpack/_inc/blocks/editor-experimental.min.js'),(3188,'wp-content/plugins/jetpack/_inc/blocks/editor-experimental.rtl.css'),(3189,'wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.asset.php'),(3190,'wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.css'),(3191,'wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.js'),(3192,'wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.js.LICENSE.txt'),(3193,'wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.min.asset.php'),(3194,'wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.min.js'),(3195,'wp-content/plugins/jetpack/_inc/blocks/editor-no-post-editor.rtl.css'),(3196,'wp-content/plugins/jetpack/_inc/blocks/editor.asset.php'),(3197,'wp-content/plugins/jetpack/_inc/blocks/editor.css'),(3198,'wp-content/plugins/jetpack/_inc/blocks/editor.js'),(3199,'wp-content/plugins/jetpack/_inc/blocks/editor.js.LICENSE.txt'),(3200,'wp-content/plugins/jetpack/_inc/blocks/editor.min.asset.php'),(3201,'wp-content/plugins/jetpack/_inc/blocks/editor.min.js'),(3202,'wp-content/plugins/jetpack/_inc/blocks/editor.rtl.css'),(3203,'wp-content/plugins/jetpack/_inc/blocks/eventbrite/view.asset.php'),(3204,'wp-content/plugins/jetpack/_inc/blocks/eventbrite/view.css'),(3205,'wp-content/plugins/jetpack/_inc/blocks/eventbrite/view.js'),(3206,'wp-content/plugins/jetpack/_inc/blocks/eventbrite/view.min.asset.php'),(3207,'wp-content/plugins/jetpack/_inc/blocks/eventbrite/view.min.js'),(3208,'wp-content/plugins/jetpack/_inc/blocks/eventbrite/view.rtl.css'),(3209,'wp-content/plugins/jetpack/_inc/blocks/frontend-nudge.html'),(3210,'wp-content/plugins/jetpack/_inc/blocks/gif/view.asset.php'),(3211,'wp-content/plugins/jetpack/_inc/blocks/gif/view.css'),(3212,'wp-content/plugins/jetpack/_inc/blocks/gif/view.js'),(3213,'wp-content/plugins/jetpack/_inc/blocks/gif/view.min.asset.php'),(3214,'wp-content/plugins/jetpack/_inc/blocks/gif/view.min.js'),(3215,'wp-content/plugins/jetpack/_inc/blocks/gif/view.rtl.css'),(3216,'wp-content/plugins/jetpack/_inc/blocks/google-calendar/view.asset.php'),(3217,'wp-content/plugins/jetpack/_inc/blocks/google-calendar/view.css'),(3218,'wp-content/plugins/jetpack/_inc/blocks/google-calendar/view.js'),(3219,'wp-content/plugins/jetpack/_inc/blocks/google-calendar/view.min.asset.php'),(3220,'wp-content/plugins/jetpack/_inc/blocks/google-calendar/view.min.js'),(3221,'wp-content/plugins/jetpack/_inc/blocks/google-calendar/view.rtl.css'),(3222,'wp-content/plugins/jetpack/_inc/blocks/image-compare/view.asset.php'),(3223,'wp-content/plugins/jetpack/_inc/blocks/image-compare/view.css'),(3224,'wp-content/plugins/jetpack/_inc/blocks/image-compare/view.js'),(3225,'wp-content/plugins/jetpack/_inc/blocks/image-compare/view.min.asset.php'),(3226,'wp-content/plugins/jetpack/_inc/blocks/image-compare/view.min.js'),(3227,'wp-content/plugins/jetpack/_inc/blocks/image-compare/view.rtl.css'),(3228,'wp-content/plugins/jetpack/_inc/blocks/images/eventbrite-in-page-example-c351ec80e4dd5d39433d.png'),(3229,'wp-content/plugins/jetpack/_inc/blocks/images/example_160x600-ccbc594f54431dafa70d.png'),(3230,'wp-content/plugins/jetpack/_inc/blocks/images/example_300x250-5b93e8174f02d48c40b7.png'),(3231,'wp-content/plugins/jetpack/_inc/blocks/images/example_320x50-7110edf045141630a222.png'),(3232,'wp-content/plugins/jetpack/_inc/blocks/images/example_728x90-d9de384932330b92e1c3.png'),(3233,'wp-content/plugins/jetpack/_inc/blocks/images/img-example-after-d6db862c442c24ad1c63.png'),(3234,'wp-content/plugins/jetpack/_inc/blocks/images/img-example-before-4592b4656108c1429614.png'),(3235,'wp-content/plugins/jetpack/_inc/blocks/images/map-preview-97bda80ebb6981457630.jpg'),(3236,'wp-content/plugins/jetpack/_inc/blocks/images/map-theme_black_and_white-b6ad81a7dd09d09fb34d.jpg'),(3237,'wp-content/plugins/jetpack/_inc/blocks/images/map-theme_default-b53ccdf170e5ac873ff0.jpg'),(3238,'wp-content/plugins/jetpack/_inc/blocks/images/map-theme_satellite-cc50c608e244f90d18dc.jpg'),(3239,'wp-content/plugins/jetpack/_inc/blocks/images/map-theme_terrain-ac291441b3461820747d.jpg'),(3240,'wp-content/plugins/jetpack/_inc/blocks/images/oval-3cc7669d571aef4e12f34b349e42d390.svg'),(3241,'wp-content/plugins/jetpack/_inc/blocks/images/oval-5f1d889983a8747472c7.svg'),(3242,'wp-content/plugins/jetpack/_inc/blocks/images/paypal-button-2x-62cd99bcc3acbd1ff504.png'),(3243,'wp-content/plugins/jetpack/_inc/blocks/images/paypal-button-a51d6c3207b0a904edb7.png'),(3244,'wp-content/plugins/jetpack/_inc/blocks/images/simple-payments_example-1-0273eeccd8d120df4984.jpg'),(3245,'wp-content/plugins/jetpack/_inc/blocks/images/slideshow_example-1-07a3f164621235df0419.jpg'),(3246,'wp-content/plugins/jetpack/_inc/blocks/images/slideshow_example-2-2ee401e47066229bdac5.jpg'),(3247,'wp-content/plugins/jetpack/_inc/blocks/images/slideshow_example-3-0682afca66c485f17ff6.jpg'),(3248,'wp-content/plugins/jetpack/_inc/blocks/images/story_example-1-716db2e4f5a074d302f7.png'),(3249,'wp-content/plugins/jetpack/_inc/blocks/images/tiled-gallery_example-1-d2817eb0e669267ab3eb.jpg'),(3250,'wp-content/plugins/jetpack/_inc/blocks/images/tiled-gallery_example-2-7d8f0cf8e262f0112691.jpg'),(3251,'wp-content/plugins/jetpack/_inc/blocks/images/tiled-gallery_example-3-07a3f164621235df0419.jpg'),(3252,'wp-content/plugins/jetpack/_inc/blocks/images/tiled-gallery_example-4-2ee401e47066229bdac5.jpg'),(3253,'wp-content/plugins/jetpack/_inc/blocks/images/tiled-gallery_example-5-a1935fd9cf1181168d90.jpg'),(3254,'wp-content/plugins/jetpack/_inc/blocks/images/tiled-gallery_example-6-9f9d39c6af0fb4b0d99c.jpg'),(3255,'wp-content/plugins/jetpack/_inc/blocks/images/upgrade-illustration-4f15d75a961111384b907965c2e4e168.svg'),(3256,'wp-content/plugins/jetpack/_inc/blocks/images/upgrade-illustration-5b3059f7101ac37f4339.svg'),(3257,'wp-content/plugins/jetpack/_inc/blocks/images/upgrade-illustration-7779cb4960d6719c723e09cb51a732f7.svg'),(3258,'wp-content/plugins/jetpack/_inc/blocks/images/videopress-block-example-image-da9ef73787adca8896f2.jpg'),(3259,'wp-content/plugins/jetpack/_inc/blocks/index.json'),(3260,'wp-content/plugins/jetpack/_inc/blocks/instagram-gallery/view.asset.php'),(3261,'wp-content/plugins/jetpack/_inc/blocks/instagram-gallery/view.css'),(3262,'wp-content/plugins/jetpack/_inc/blocks/instagram-gallery/view.js'),(3263,'wp-content/plugins/jetpack/_inc/blocks/instagram-gallery/view.min.asset.php'),(3264,'wp-content/plugins/jetpack/_inc/blocks/instagram-gallery/view.min.js'),(3265,'wp-content/plugins/jetpack/_inc/blocks/instagram-gallery/view.rtl.css'),(3266,'wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.asset.php'),(3267,'wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.css'),(3268,'wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.js'),(3269,'wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.min.asset.php'),(3270,'wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.min.js'),(3271,'wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.rtl.css'),(3272,'wp-content/plugins/jetpack/_inc/blocks/map/view.asset.php'),(3273,'wp-content/plugins/jetpack/_inc/blocks/map/view.css'),(3274,'wp-content/plugins/jetpack/_inc/blocks/map/view.js'),(3275,'wp-content/plugins/jetpack/_inc/blocks/map/view.min.asset.php'),(3276,'wp-content/plugins/jetpack/_inc/blocks/map/view.min.js'),(3277,'wp-content/plugins/jetpack/_inc/blocks/map/view.rtl.css'),(3278,'wp-content/plugins/jetpack/_inc/blocks/opentable/view.asset.php'),(3279,'wp-content/plugins/jetpack/_inc/blocks/opentable/view.css'),(3280,'wp-content/plugins/jetpack/_inc/blocks/opentable/view.js'),(3281,'wp-content/plugins/jetpack/_inc/blocks/opentable/view.min.asset.php'),(3282,'wp-content/plugins/jetpack/_inc/blocks/opentable/view.min.js'),(3283,'wp-content/plugins/jetpack/_inc/blocks/opentable/view.rtl.css'),(3284,'wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.asset.php'),(3285,'wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.css'),(3286,'wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.js'),(3287,'wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.js.LICENSE.txt'),(3288,'wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.min.asset.php'),(3289,'wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.min.js'),(3290,'wp-content/plugins/jetpack/_inc/blocks/podcast-player/view.rtl.css'),(3291,'wp-content/plugins/jetpack/_inc/blocks/premium-content/view.asset.php'),(3292,'wp-content/plugins/jetpack/_inc/blocks/premium-content/view.css'),(3293,'wp-content/plugins/jetpack/_inc/blocks/premium-content/view.js'),(3294,'wp-content/plugins/jetpack/_inc/blocks/premium-content/view.min.asset.php'),(3295,'wp-content/plugins/jetpack/_inc/blocks/premium-content/view.min.js'),(3296,'wp-content/plugins/jetpack/_inc/blocks/premium-content/view.rtl.css'),(3297,'wp-content/plugins/jetpack/_inc/blocks/rating-star/view.asset.php'),(3298,'wp-content/plugins/jetpack/_inc/blocks/rating-star/view.css'),(3299,'wp-content/plugins/jetpack/_inc/blocks/rating-star/view.js'),(3300,'wp-content/plugins/jetpack/_inc/blocks/rating-star/view.min.asset.php'),(3301,'wp-content/plugins/jetpack/_inc/blocks/rating-star/view.min.js'),(3302,'wp-content/plugins/jetpack/_inc/blocks/rating-star/view.rtl.css'),(3303,'wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.asset.php'),(3304,'wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.css'),(3305,'wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.js'),(3306,'wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.min.asset.php'),(3307,'wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.min.js'),(3308,'wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.rtl.css'),(3309,'wp-content/plugins/jetpack/_inc/blocks/repeat-visitor/view.asset.php'),(3310,'wp-content/plugins/jetpack/_inc/blocks/repeat-visitor/view.js'),(3311,'wp-content/plugins/jetpack/_inc/blocks/repeat-visitor/view.js.LICENSE.txt'),(3312,'wp-content/plugins/jetpack/_inc/blocks/repeat-visitor/view.min.asset.php'),(3313,'wp-content/plugins/jetpack/_inc/blocks/repeat-visitor/view.min.js'),(3314,'wp-content/plugins/jetpack/_inc/blocks/revue/view.asset.php'),(3315,'wp-content/plugins/jetpack/_inc/blocks/revue/view.css'),(3316,'wp-content/plugins/jetpack/_inc/blocks/revue/view.js'),(3317,'wp-content/plugins/jetpack/_inc/blocks/revue/view.min.asset.php'),(3318,'wp-content/plugins/jetpack/_inc/blocks/revue/view.min.js'),(3319,'wp-content/plugins/jetpack/_inc/blocks/revue/view.rtl.css'),(3320,'wp-content/plugins/jetpack/_inc/blocks/send-a-message/view.asset.php'),(3321,'wp-content/plugins/jetpack/_inc/blocks/send-a-message/view.css'),(3322,'wp-content/plugins/jetpack/_inc/blocks/send-a-message/view.js'),(3323,'wp-content/plugins/jetpack/_inc/blocks/send-a-message/view.min.asset.php'),(3324,'wp-content/plugins/jetpack/_inc/blocks/send-a-message/view.min.js'),(3325,'wp-content/plugins/jetpack/_inc/blocks/send-a-message/view.rtl.css'),(3326,'wp-content/plugins/jetpack/_inc/blocks/send-a-message/whatsapp-button/view.asset.php'),(3327,'wp-content/plugins/jetpack/_inc/blocks/send-a-message/whatsapp-button/view.js'),(3328,'wp-content/plugins/jetpack/_inc/blocks/slideshow/view.asset.php'),(3329,'wp-content/plugins/jetpack/_inc/blocks/slideshow/view.css'),(3330,'wp-content/plugins/jetpack/_inc/blocks/slideshow/view.js'),(3331,'wp-content/plugins/jetpack/_inc/blocks/slideshow/view.min.asset.php'),(3332,'wp-content/plugins/jetpack/_inc/blocks/slideshow/view.min.js'),(3333,'wp-content/plugins/jetpack/_inc/blocks/slideshow/view.rtl.css'),(3334,'wp-content/plugins/jetpack/_inc/blocks/story/view.asset.php'),(3335,'wp-content/plugins/jetpack/_inc/blocks/story/view.css'),(3336,'wp-content/plugins/jetpack/_inc/blocks/story/view.js'),(3337,'wp-content/plugins/jetpack/_inc/blocks/story/view.js.LICENSE.txt'),(3338,'wp-content/plugins/jetpack/_inc/blocks/story/view.min.asset.php'),(3339,'wp-content/plugins/jetpack/_inc/blocks/story/view.min.js'),(3340,'wp-content/plugins/jetpack/_inc/blocks/story/view.rtl.css'),(3341,'wp-content/plugins/jetpack/_inc/blocks/stripe-nudge.html'),(3342,'wp-content/plugins/jetpack/_inc/blocks/subscriptions/view.asset.php'),(3343,'wp-content/plugins/jetpack/_inc/blocks/subscriptions/view.css'),(3344,'wp-content/plugins/jetpack/_inc/blocks/subscriptions/view.js'),(3345,'wp-content/plugins/jetpack/_inc/blocks/subscriptions/view.min.asset.php'),(3346,'wp-content/plugins/jetpack/_inc/blocks/subscriptions/view.min.js'),(3347,'wp-content/plugins/jetpack/_inc/blocks/subscriptions/view.rtl.css'),(3348,'wp-content/plugins/jetpack/_inc/blocks/swiper.css'),(3349,'wp-content/plugins/jetpack/_inc/blocks/swiper.rtl.css'),(3350,'wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.asset.php'),(3351,'wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.css'),(3352,'wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.js'),(3353,'wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.min.asset.php'),(3354,'wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.min.js'),(3355,'wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.rtl.css'),(3356,'wp-content/plugins/jetpack/_inc/blocks/upgrade-nudge.html'),(3357,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.04e03ac043566852ef07.js'),(3358,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.1239e27c56411388bad5.js'),(3359,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.2c2e1671860a4cf5d781.js'),(3360,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.3a045592d603a85f6d0e.js'),(3361,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.4248de861021fc1e7e3f.js'),(3362,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.58efaceccd1518ed2c94.js'),(3363,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.755f84ecfa921e241e69.js'),(3364,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.75a983ae51de51cf9b97.css'),(3365,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.75a983ae51de51cf9b97.js'),(3366,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.75a983ae51de51cf9b97.rtl.css'),(3367,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.944556a764fd3aa446d5.css'),(3368,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.944556a764fd3aa446d5.js'),(3369,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.944556a764fd3aa446d5.rtl.css'),(3370,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.a7c1e95b8ead018349bf.js'),(3371,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.a885ed76fb87153f02ab.js'),(3372,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.ac1295a42dde74f83fe2.js'),(3373,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.bc7535a1f167717130ba.js'),(3374,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.bfac31067355202ba5b7.js'),(3375,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.c47a73a369b133a00458.js'),(3376,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.da7c87f2fad3626889f8.js'),(3377,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.dcd007ee1e7d338a363e.js'),(3378,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.e4eff6d734deaf135b94.css'),(3379,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.e4eff6d734deaf135b94.js'),(3380,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.e4eff6d734deaf135b94.rtl.css'),(3381,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.0a3d8e29d43db6127a68.js'),(3382,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.11ce8ade2c6d2dbe0b77.js'),(3383,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.17b5bcc416832d7a0c9e.js'),(3384,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.1b546e229f7e01fd913e.js'),(3385,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.23fd414831f3de8536b3.js'),(3386,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.2459755ebeb4b00099c8.js'),(3387,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.40d61c1ef8d2dec3a865.css'),(3388,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.40d61c1ef8d2dec3a865.js'),(3389,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.40d61c1ef8d2dec3a865.rtl.css'),(3390,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.4fd6c7e1c96b229b54d4.js'),(3391,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.6c77cf0f0df648fd416c.js'),(3392,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.8065ce623abb09aeb822.js'),(3393,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.86b80b8b1cc951f50101.js'),(3394,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.90af53d1918781529c41.js'),(3395,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.91f23bda140fb9ba4bea.css'),(3396,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.91f23bda140fb9ba4bea.js'),(3397,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.91f23bda140fb9ba4bea.rtl.css'),(3398,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.9abc30e87cced29e581f.js'),(3399,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.b75f5142f545a3c930e7.css'),(3400,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.b75f5142f545a3c930e7.js'),(3401,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.b75f5142f545a3c930e7.rtl.css'),(3402,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.ca03362195b614e03692.js'),(3403,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.cb62edabc93862de3784.js'),(3404,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.cd0051244a89c7367b0b.js'),(3405,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.ddb6eb1f9dce558a2a68.js'),(3406,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.e3d919805dd5d74f6537.js'),(3407,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.ed9ded845f6a7a8142ff.js'),(3408,'wp-content/plugins/jetpack/_inc/build/accessible-focus.min.asset.php'),(3409,'wp-content/plugins/jetpack/_inc/build/accessible-focus.min.js'),(3410,'wp-content/plugins/jetpack/_inc/build/admin.asset.php'),(3411,'wp-content/plugins/jetpack/_inc/build/admin.css'),(3412,'wp-content/plugins/jetpack/_inc/build/admin.js'),(3413,'wp-content/plugins/jetpack/_inc/build/admin.js.LICENSE.txt'),(3414,'wp-content/plugins/jetpack/_inc/build/admin.rtl.css'),(3415,'wp-content/plugins/jetpack/_inc/build/carousel/jetpack-carousel.min.asset.php'),(3416,'wp-content/plugins/jetpack/_inc/build/carousel/jetpack-carousel.min.js'),(3417,'wp-content/plugins/jetpack/_inc/build/carousel/swiper-bundle.min.asset.php'),(3418,'wp-content/plugins/jetpack/_inc/build/carousel/swiper-bundle.min.js'),(3419,'wp-content/plugins/jetpack/_inc/build/carousel/swiper-bundle.min.js.LICENSE.txt'),(3420,'wp-content/plugins/jetpack/_inc/build/comment-likes/comment-like-count.min.asset.php'),(3421,'wp-content/plugins/jetpack/_inc/build/comment-likes/comment-like-count.min.js'),(3422,'wp-content/plugins/jetpack/_inc/build/connect-button.min.asset.php'),(3423,'wp-content/plugins/jetpack/_inc/build/connect-button.min.js'),(3424,'wp-content/plugins/jetpack/_inc/build/contact-form/js/editor-view.min.asset.php'),(3425,'wp-content/plugins/jetpack/_inc/build/contact-form/js/editor-view.min.js'),(3426,'wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-admin.min.asset.php'),(3427,'wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-admin.min.js'),(3428,'wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-frontend.min.asset.php'),(3429,'wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-frontend.min.js'),(3430,'wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion.min.asset.php'),(3431,'wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion.min.js'),(3432,'wp-content/plugins/jetpack/_inc/build/contact-form/js/tinymce-plugin-form-button.min.asset.php'),(3433,'wp-content/plugins/jetpack/_inc/build/contact-form/js/tinymce-plugin-form-button.min.js'),(3434,'wp-content/plugins/jetpack/_inc/build/crowdsignal-shortcode.min.asset.php'),(3435,'wp-content/plugins/jetpack/_inc/build/crowdsignal-shortcode.min.js'),(3436,'wp-content/plugins/jetpack/_inc/build/crowdsignal-survey.min.asset.php'),(3437,'wp-content/plugins/jetpack/_inc/build/crowdsignal-survey.min.js'),(3438,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css-preview.min.asset.php'),(3439,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css-preview.min.js'),(3440,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.core-4.9.min.asset.php'),(3441,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.core-4.9.min.js'),(3442,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.min.asset.php'),(3443,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.min.js'),(3444,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/css-editor.min.asset.php'),(3445,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/css-editor.min.js'),(3446,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/use-codemirror.min.asset.php'),(3447,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/use-codemirror.min.js'),(3448,'wp-content/plugins/jetpack/_inc/build/custom-post-types/comics/comics.min.asset.php'),(3449,'wp-content/plugins/jetpack/_inc/build/custom-post-types/comics/comics.min.js'),(3450,'wp-content/plugins/jetpack/_inc/build/custom-post-types/js/many-items.min.asset.php'),(3451,'wp-content/plugins/jetpack/_inc/build/custom-post-types/js/many-items.min.js'),(3452,'wp-content/plugins/jetpack/_inc/build/custom-post-types/js/menu-checkboxes.min.asset.php'),(3453,'wp-content/plugins/jetpack/_inc/build/custom-post-types/js/menu-checkboxes.min.js'),(3454,'wp-content/plugins/jetpack/_inc/build/custom-post-types/js/nova-drag-drop.min.asset.php'),(3455,'wp-content/plugins/jetpack/_inc/build/custom-post-types/js/nova-drag-drop.min.js'),(3456,'wp-content/plugins/jetpack/_inc/build/facebook-embed.min.asset.php'),(3457,'wp-content/plugins/jetpack/_inc/build/facebook-embed.min.js'),(3458,'wp-content/plugins/jetpack/_inc/build/gallery-settings.min.asset.php'),(3459,'wp-content/plugins/jetpack/_inc/build/gallery-settings.min.js'),(3460,'wp-content/plugins/jetpack/_inc/build/idc-notice.min.js'),(3461,'wp-content/plugins/jetpack/_inc/build/images/boost-8ea10be101c586380d89.svg'),(3462,'wp-content/plugins/jetpack/_inc/build/images/cloud-d0f9b0f863bc1adcc03e.svg'),(3463,'wp-content/plugins/jetpack/_inc/build/images/disconnect-confirm-dc9fe8f5c68cfd1320e0.jpg'),(3464,'wp-content/plugins/jetpack/_inc/build/images/disconnect-thanks-5873bfac56a9bd7322cd.jpg'),(3465,'wp-content/plugins/jetpack/_inc/build/images/green-star-b0ac6af62d4c43bd4d04ca6abb9c2e83.svg'),(3466,'wp-content/plugins/jetpack/_inc/build/images/jetpack-anti-spam-b118b4c6a814c557be29797c60df3d33.svg'),(3467,'wp-content/plugins/jetpack/_inc/build/images/jetpack-anti-spam-v2-2b60b188ed4f5b2c25b923be1166fdc0.svg'),(3468,'wp-content/plugins/jetpack/_inc/build/images/jetpack-anti-spam-v2-darkblue-3465774241b3cf0c97cdfc872f399ce0.svg'),(3469,'wp-content/plugins/jetpack/_inc/build/images/jetpack-backup-a5adb7d10cc442d19f9b24b4541bc1e1.svg'),(3470,'wp-content/plugins/jetpack/_inc/build/images/jetpack-backup-v2-0ea2a25527bf121bde2903779680bced.svg'),(3471,'wp-content/plugins/jetpack/_inc/build/images/jetpack-backup-v2-darkblue-64717239bc74ba6fe94f86066b675f7e.svg'),(3472,'wp-content/plugins/jetpack/_inc/build/images/jetpack-complete-v2-2ca7acdd4768b17a59c79933892e61d9.svg'),(3473,'wp-content/plugins/jetpack/_inc/build/images/jetpack-crm-v2-darkblue-4641dbe0ebb0c3a1f2e1914ff1daab1e.svg'),(3474,'wp-content/plugins/jetpack/_inc/build/images/jetpack-crm-v2-dc761535a22c204facab557450617b8c.svg'),(3475,'wp-content/plugins/jetpack/_inc/build/images/jetpack-free-44df53d327c1bd1a398ed53effdcb296.svg'),(3476,'wp-content/plugins/jetpack/_inc/build/images/jetpack-personal-db67581ec6621cabbe3aa1a32167b521.svg'),(3477,'wp-content/plugins/jetpack/_inc/build/images/jetpack-premium-a2cd099cefe19078e7034dbcdfa0e580.svg'),(3478,'wp-content/plugins/jetpack/_inc/build/images/jetpack-professional-2b66b1c5cc0d544101d5a0579679be94.svg'),(3479,'wp-content/plugins/jetpack/_inc/build/images/jetpack-scan-7935956200af22932207966dcf605a6c.svg'),(3480,'wp-content/plugins/jetpack/_inc/build/images/jetpack-scan-v2-6ac0b79f0107a8b73e5bc5531a6d7e67.svg'),(3481,'wp-content/plugins/jetpack/_inc/build/images/jetpack-scan-v2-darkblue-00ca7fc6b666a195edbf93f9d333ccd7.svg'),(3482,'wp-content/plugins/jetpack/_inc/build/images/jetpack-search-45c9a662b22709cb514351313329aa23.svg'),(3483,'wp-content/plugins/jetpack/_inc/build/images/jetpack-search-v2-darkblue-42081c8626e98f52cf6bf3ec223cd2e1.svg'),(3484,'wp-content/plugins/jetpack/_inc/build/images/jetpack-search-v2-f4abb08dde5f846c2243bc6e9e14dc37.svg'),(3485,'wp-content/plugins/jetpack/_inc/build/images/jetpack-security-v2-1ffacfda6dd5ff3073bd9468bfe3b4fd.svg'),(3486,'wp-content/plugins/jetpack/_inc/build/images/people-c8df8440a2897e6d0eba.svg'),(3487,'wp-content/plugins/jetpack/_inc/build/images/remove-bug-aa23c420a6e6394d5787.svg'),(3488,'wp-content/plugins/jetpack/_inc/build/images/shield-bb27f10b1ca957261b8d.svg'),(3489,'wp-content/plugins/jetpack/_inc/build/images/shield-with-check-b59b7e859cf937a15a0e.svg'),(3490,'wp-content/plugins/jetpack/_inc/build/images/wpcom-blogger-dda7d9d51abfb03c2bf4265bb5634fb8.svg'),(3491,'wp-content/plugins/jetpack/_inc/build/images/wpcom-business-12b92201de1ad0bd052f4a3affb7c82c.svg'),(3492,'wp-content/plugins/jetpack/_inc/build/images/wpcom-ecommerce-469d904d4dfb0cf3540d7bfa200ccff2.svg'),(3493,'wp-content/plugins/jetpack/_inc/build/images/wpcom-free-c26bd117f464670d89b2168207bf9939.svg'),(3494,'wp-content/plugins/jetpack/_inc/build/images/wpcom-personal-af68afffe22447c06bbb3c20c94db1a3.svg'),(3495,'wp-content/plugins/jetpack/_inc/build/images/wpcom-premium-38838ffe196a3ad6ba3784059707ee25.svg'),(3496,'wp-content/plugins/jetpack/_inc/build/infinite-scroll/infinity-customizer.min.asset.php'),(3497,'wp-content/plugins/jetpack/_inc/build/infinite-scroll/infinity-customizer.min.js'),(3498,'wp-content/plugins/jetpack/_inc/build/infinite-scroll/infinity.min.asset.php'),(3499,'wp-content/plugins/jetpack/_inc/build/infinite-scroll/infinity.min.js'),(3500,'wp-content/plugins/jetpack/_inc/build/instant-search/407.js'),(3501,'wp-content/plugins/jetpack/_inc/build/instant-search/407.js.LICENSE.txt'),(3502,'wp-content/plugins/jetpack/_inc/build/instant-search/605.js'),(3503,'wp-content/plugins/jetpack/_inc/build/instant-search/605.js.LICENSE.txt'),(3504,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-52.min.js'),(3505,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.asset.php'),(3506,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.bundle.asset.php'),(3507,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.bundle.js'),(3508,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.js'),(3509,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.js.LICENSE.txt'),(3510,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.min.asset.php'),(3511,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-configure-main.min.js'),(3512,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-ie11-polyfill-loader.bundle.asset.php'),(3513,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-ie11-polyfill-loader.bundle.js'),(3514,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-ie11-polyfill-payload.bundle.asset.php'),(3515,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-ie11-polyfill-payload.bundle.js'),(3516,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-main.asset.php'),(3517,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-main.bundle.asset.php'),(3518,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-main.bundle.js'),(3519,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-main.bundle.min.asset.php'),(3520,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-main.bundle.min.js'),(3521,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search-main.js'),(3522,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.bundle.asset.php'),(3523,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.bundle.js'),(3524,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-1-26fd3bc862e3521d00a8.js'),(3525,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-1-743842878eceecda1571.js'),(3526,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-1-e052740f2f86553f7f9c.js'),(3527,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-1-ea13ceea008ed3f40c5d.js'),(3528,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-1-f4300f48331e2183fdd9.js'),(3529,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-270.e200588ee02c9e4e229e.min.js'),(3530,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-270.js'),(3531,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-270.min.js'),(3532,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-3-0650b8da2a9ba2461f3f.js'),(3533,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-3-aa4556b3f21c2d031ef1.js'),(3534,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-4-1a2821bfb803906d5e27.js'),(3535,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-4-67380477921bd9a7ae19.js'),(3536,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-4-a33f06a486a7f4249d33.js'),(3537,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-4-a35aa49a0dfc317ef141.js'),(3538,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-4-a3bf71e65929a9be598a.js'),(3539,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-4-ab48f4d457506a7fcab7.js'),(3540,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-52-0d626d46cc567b31f6e1.min.js'),(3541,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-81-0d626d46cc567b31f6e1.min.js'),(3542,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-81-0d626d46cc567b31f6e1.min.js.LICENSE.txt'),(3543,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-0d626d46cc567b31f6e1.min.js'),(3544,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-1a2821bfb803906d5e27.js'),(3545,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-67380477921bd9a7ae19.js'),(3546,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-a33f06a486a7f4249d33.js'),(3547,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-a35aa49a0dfc317ef141.js'),(3548,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-a3bf71e65929a9be598a.js'),(3549,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload-ab48f4d457506a7fcab7.js'),(3550,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload.75dacdd368237a38d5eb.min.js'),(3551,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload.885bc75706af563a7288.min.js'),(3552,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload.js'),(3553,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.chunk-main-payload.min.js'),(3554,'wp-content/plugins/jetpack/_inc/build/jetpack-admin.min.asset.php'),(3555,'wp-content/plugins/jetpack/_inc/build/jetpack-admin.min.js'),(3556,'wp-content/plugins/jetpack/_inc/build/jetpack-connection-banner.min.asset.php'),(3557,'wp-content/plugins/jetpack/_inc/build/jetpack-connection-banner.min.js'),(3558,'wp-content/plugins/jetpack/_inc/build/jetpack-deactivate-dialog.min.asset.php'),(3559,'wp-content/plugins/jetpack/_inc/build/jetpack-deactivate-dialog.min.js'),(3560,'wp-content/plugins/jetpack/_inc/build/jetpack-jitm.min.js'),(3561,'wp-content/plugins/jetpack/_inc/build/jetpack-modules.min.asset.php'),(3562,'wp-content/plugins/jetpack/_inc/build/jetpack-modules.min.js'),(3563,'wp-content/plugins/jetpack/_inc/build/jetpack-modules.models.min.asset.php'),(3564,'wp-content/plugins/jetpack/_inc/build/jetpack-modules.models.min.js'),(3565,'wp-content/plugins/jetpack/_inc/build/jetpack-modules.views.min.asset.php'),(3566,'wp-content/plugins/jetpack/_inc/build/jetpack-modules.views.min.js'),(3567,'wp-content/plugins/jetpack/_inc/build/jetpack-recommendations-banner.min.asset.php'),(3568,'wp-content/plugins/jetpack/_inc/build/jetpack-recommendations-banner.min.js'),(3569,'wp-content/plugins/jetpack/_inc/build/jetpack-wizard-banner.min.js'),(3570,'wp-content/plugins/jetpack/_inc/build/jquery.jetpack-resize.min.js'),(3571,'wp-content/plugins/jetpack/_inc/build/jquery.spin.min.js'),(3572,'wp-content/plugins/jetpack/_inc/build/lazy-images/js/lazy-images.min.js'),(3573,'wp-content/plugins/jetpack/_inc/build/likes/post-count-jetpack.min.asset.php'),(3574,'wp-content/plugins/jetpack/_inc/build/likes/post-count-jetpack.min.js'),(3575,'wp-content/plugins/jetpack/_inc/build/likes/post-count.min.asset.php'),(3576,'wp-content/plugins/jetpack/_inc/build/likes/post-count.min.js'),(3577,'wp-content/plugins/jetpack/_inc/build/likes/queuehandler.min.asset.php'),(3578,'wp-content/plugins/jetpack/_inc/build/likes/queuehandler.min.js'),(3579,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/aquatic/colors.css'),(3580,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/blue/colors.css'),(3581,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/classic-blue/colors.css'),(3582,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/classic-bright/colors.css'),(3583,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/classic-dark/colors.css'),(3584,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/coffee/colors.css'),(3585,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/contrast/colors.css'),(3586,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/ectoplasm/colors.css'),(3587,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/fresh/colors.css'),(3588,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/light/colors.css'),(3589,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/midnight/colors.css'),(3590,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/modern/colors.css'),(3591,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/nightfall/colors.css'),(3592,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/ocean/colors.css'),(3593,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/powder-snow/colors.css'),(3594,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/sakura/colors.css'),(3595,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/sunrise/colors.css'),(3596,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-color-schemes/colors/sunset/colors.css'),(3597,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-menu/admin-menu.min.asset.php'),(3598,'wp-content/plugins/jetpack/_inc/build/masterbar/admin-menu/admin-menu.min.js'),(3599,'wp-content/plugins/jetpack/_inc/build/masterbar/masterbar/tracks-events.min.asset.php'),(3600,'wp-content/plugins/jetpack/_inc/build/masterbar/masterbar/tracks-events.min.js'),(3601,'wp-content/plugins/jetpack/_inc/build/masterbar/nudges/additional-css/js/additional-css.min.asset.php'),(3602,'wp-content/plugins/jetpack/_inc/build/masterbar/nudges/additional-css/js/additional-css.min.js'),(3603,'wp-content/plugins/jetpack/_inc/build/masterbar/tracks-events.min.js'),(3604,'wp-content/plugins/jetpack/_inc/build/minileven/theme/pub/minileven/js/small-menu.min.js'),(3605,'wp-content/plugins/jetpack/_inc/build/photon/photon.min.asset.php'),(3606,'wp-content/plugins/jetpack/_inc/build/photon/photon.min.js'),(3607,'wp-content/plugins/jetpack/_inc/build/plugins-page.asset.php'),(3608,'wp-content/plugins/jetpack/_inc/build/plugins-page.css'),(3609,'wp-content/plugins/jetpack/_inc/build/plugins-page.js'),(3610,'wp-content/plugins/jetpack/_inc/build/plugins-page.js.LICENSE.txt'),(3611,'wp-content/plugins/jetpack/_inc/build/plugins-page.rtl.css'),(3612,'wp-content/plugins/jetpack/_inc/build/polldaddy-shortcode.min.asset.php'),(3613,'wp-content/plugins/jetpack/_inc/build/polldaddy-shortcode.min.js'),(3614,'wp-content/plugins/jetpack/_inc/build/postmessage.min.js'),(3615,'wp-content/plugins/jetpack/_inc/build/related-posts/related-posts-customizer.min.asset.php'),(3616,'wp-content/plugins/jetpack/_inc/build/related-posts/related-posts-customizer.min.js'),(3617,'wp-content/plugins/jetpack/_inc/build/related-posts/related-posts.min.asset.php'),(3618,'wp-content/plugins/jetpack/_inc/build/related-posts/related-posts.min.js'),(3619,'wp-content/plugins/jetpack/_inc/build/scan/admin-bar-notice.min.asset.php'),(3620,'wp-content/plugins/jetpack/_inc/build/scan/admin-bar-notice.min.js'),(3621,'wp-content/plugins/jetpack/_inc/build/search-dashboard.asset.php'),(3622,'wp-content/plugins/jetpack/_inc/build/search-dashboard.js'),(3623,'wp-content/plugins/jetpack/_inc/build/search-dashboard.js.LICENSE.txt'),(3624,'wp-content/plugins/jetpack/_inc/build/sharedaddy/admin-sharing.min.asset.php'),(3625,'wp-content/plugins/jetpack/_inc/build/sharedaddy/admin-sharing.min.js'),(3626,'wp-content/plugins/jetpack/_inc/build/sharedaddy/sharing.min.asset.php'),(3627,'wp-content/plugins/jetpack/_inc/build/sharedaddy/sharing.min.js'),(3628,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/brightcove.min.asset.php'),(3629,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/brightcove.min.js'),(3630,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/gist.min.js'),(3631,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/instagram.min.js'),(3632,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/jmpress.min.asset.php'),(3633,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/jmpress.min.js'),(3634,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/jmpress.min.js.LICENSE.txt'),(3635,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/main.min.asset.php'),(3636,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/main.min.js'),(3637,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/quiz.min.asset.php'),(3638,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/quiz.min.js'),(3639,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes-printthis.min.asset.php'),(3640,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes-printthis.min.js'),(3641,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes-printthis.min.js.LICENSE.txt'),(3642,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes.min.asset.php'),(3643,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes.min.js'),(3644,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/slideshow-shortcode.min.asset.php'),(3645,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/slideshow-shortcode.min.js'),(3646,'wp-content/plugins/jetpack/_inc/build/spin.min.js'),(3647,'wp-content/plugins/jetpack/_inc/build/static-noscript-notice.html'),(3648,'wp-content/plugins/jetpack/_inc/build/static-version-notice.html'),(3649,'wp-content/plugins/jetpack/_inc/build/static.html'),(3650,'wp-content/plugins/jetpack/_inc/build/static.js'),(3651,'wp-content/plugins/jetpack/_inc/build/static.js.LICENSE.txt'),(3652,'wp-content/plugins/jetpack/_inc/build/style.min.css'),(3653,'wp-content/plugins/jetpack/_inc/build/style.min.rtl.css'),(3654,'wp-content/plugins/jetpack/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.asset.php'),(3655,'wp-content/plugins/jetpack/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.js'),(3656,'wp-content/plugins/jetpack/_inc/build/twitter-timeline.min.asset.php'),(3657,'wp-content/plugins/jetpack/_inc/build/twitter-timeline.min.js'),(3658,'wp-content/plugins/jetpack/_inc/build/videopress/js/editor-view.min.asset.php'),(3659,'wp-content/plugins/jetpack/_inc/build/videopress/js/editor-view.min.js'),(3660,'wp-content/plugins/jetpack/_inc/build/videopress/js/gutenberg-video-upload.min.asset.php'),(3661,'wp-content/plugins/jetpack/_inc/build/videopress/js/gutenberg-video-upload.min.js'),(3662,'wp-content/plugins/jetpack/_inc/build/videopress/js/media-video-widget-extensions.min.asset.php'),(3663,'wp-content/plugins/jetpack/_inc/build/videopress/js/media-video-widget-extensions.min.js'),(3664,'wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-plupload.min.asset.php'),(3665,'wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-plupload.min.js'),(3666,'wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-uploader.min.asset.php'),(3667,'wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-uploader.min.js'),(3668,'wp-content/plugins/jetpack/_inc/build/widget-visibility/editor/index.asset.php'),(3669,'wp-content/plugins/jetpack/_inc/build/widget-visibility/editor/index.js'),(3670,'wp-content/plugins/jetpack/_inc/build/widget-visibility/editor/index.min.asset.php'),(3671,'wp-content/plugins/jetpack/_inc/build/widget-visibility/editor/index.min.js'),(3672,'wp-content/plugins/jetpack/_inc/build/widget-visibility/widget-conditions/widget-conditions.min.asset.php'),(3673,'wp-content/plugins/jetpack/_inc/build/widget-visibility/widget-conditions/widget-conditions.min.js'),(3674,'wp-content/plugins/jetpack/_inc/build/widgets/contact-info/contact-info-admin.min.asset.php'),(3675,'wp-content/plugins/jetpack/_inc/build/widgets/contact-info/contact-info-admin.min.js'),(3676,'wp-content/plugins/jetpack/_inc/build/widgets/customizer-utils.min.asset.php'),(3677,'wp-content/plugins/jetpack/_inc/build/widgets/customizer-utils.min.js'),(3678,'wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law-admin.min.asset.php'),(3679,'wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law-admin.min.js'),(3680,'wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law.min.asset.php'),(3681,'wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law.min.js'),(3682,'wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/admin.min.asset.php'),(3683,'wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/admin.min.js'),(3684,'wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/gallery.min.asset.php'),(3685,'wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/gallery.min.js'),(3686,'wp-content/plugins/jetpack/_inc/build/widgets/google-translate/google-translate.min.asset.php'),(3687,'wp-content/plugins/jetpack/_inc/build/widgets/google-translate/google-translate.min.js'),(3688,'wp-content/plugins/jetpack/_inc/build/widgets/milestone/admin.min.asset.php'),(3689,'wp-content/plugins/jetpack/_inc/build/widgets/milestone/admin.min.js'),(3690,'wp-content/plugins/jetpack/_inc/build/widgets/milestone/milestone.min.asset.php'),(3691,'wp-content/plugins/jetpack/_inc/build/widgets/milestone/milestone.min.js'),(3692,'wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget-admin.min.asset.php'),(3693,'wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget-admin.min.js'),(3694,'wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget.min.asset.php'),(3695,'wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget.min.js'),(3696,'wp-content/plugins/jetpack/_inc/build/widgets/simple-payments/customizer.min.asset.php'),(3697,'wp-content/plugins/jetpack/_inc/build/widgets/simple-payments/customizer.min.js'),(3698,'wp-content/plugins/jetpack/_inc/build/widgets/social-icons/social-icons-admin.min.asset.php'),(3699,'wp-content/plugins/jetpack/_inc/build/widgets/social-icons/social-icons-admin.min.js'),(3700,'wp-content/plugins/jetpack/_inc/build/widgets/twitter-timeline-admin.min.asset.php'),(3701,'wp-content/plugins/jetpack/_inc/build/widgets/twitter-timeline-admin.min.js'),(3702,'wp-content/plugins/jetpack/_inc/build/wordads/js/wordads-ccpa.min.asset.php'),(3703,'wp-content/plugins/jetpack/_inc/build/wordads/js/wordads-ccpa.min.js'),(3704,'wp-content/plugins/jetpack/_inc/class.jetpack-provision.php'),(3705,'wp-content/plugins/jetpack/_inc/connect-button.js'),(3706,'wp-content/plugins/jetpack/_inc/crowdsignal-shortcode.js'),(3707,'wp-content/plugins/jetpack/_inc/crowdsignal-survey.js'),(3708,'wp-content/plugins/jetpack/_inc/facebook-embed.js'),(3709,'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.eot'),(3710,'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.svg'),(3711,'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.ttf'),(3712,'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.woff'),(3713,'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.eot'),(3714,'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.svg'),(3715,'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.ttf'),(3716,'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.woff'),(3717,'wp-content/plugins/jetpack/_inc/footer.php'),(3718,'wp-content/plugins/jetpack/_inc/gallery-settings.js'),(3719,'wp-content/plugins/jetpack/_inc/genericons/COPYING.txt'),(3720,'wp-content/plugins/jetpack/_inc/genericons/LICENSE.txt'),(3721,'wp-content/plugins/jetpack/_inc/genericons/README.md'),(3722,'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.eot'),(3723,'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.svg'),(3724,'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.ttf'),(3725,'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.woff'),(3726,'wp-content/plugins/jetpack/_inc/genericons/genericons/genericons.css'),(3727,'wp-content/plugins/jetpack/_inc/genericons/genericons/rtl/genericons-rtl.css'),(3728,'wp-content/plugins/jetpack/_inc/genericons/genericons.css'),(3729,'wp-content/plugins/jetpack/_inc/genericons.php'),(3730,'wp-content/plugins/jetpack/_inc/header.php'),(3731,'wp-content/plugins/jetpack/_inc/idc-notice.js'),(3732,'wp-content/plugins/jetpack/_inc/jetpack-admin.js'),(3733,'wp-content/plugins/jetpack/_inc/jetpack-connection-banner.js'),(3734,'wp-content/plugins/jetpack/_inc/jetpack-deactivate-dialog.js'),(3735,'wp-content/plugins/jetpack/_inc/jetpack-jitm.js'),(3736,'wp-content/plugins/jetpack/_inc/jetpack-modules.js'),(3737,'wp-content/plugins/jetpack/_inc/jetpack-modules.models.js'),(3738,'wp-content/plugins/jetpack/_inc/jetpack-modules.views.js'),(3739,'wp-content/plugins/jetpack/_inc/jetpack-recommendations-banner.js'),(3740,'wp-content/plugins/jetpack/_inc/jetpack-server-sandbox.php'),(3741,'wp-content/plugins/jetpack/_inc/jetpack-strings.php'),(3742,'wp-content/plugins/jetpack/_inc/jetpack-wizard-banner.js'),(3743,'wp-content/plugins/jetpack/_inc/jquery.jetpack-resize.js'),(3744,'wp-content/plugins/jetpack/_inc/jquery.spin.js'),(3745,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class-jetpack-about-page.php'),(3746,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class-jetpack-redux-state-helper.php'),(3747,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class-jetpack-search-dashboard-page.php'),(3748,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-admin-page.php'),(3749,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-landing-page.php'),(3750,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php'),(3751,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-settings-page.php'),(3752,'wp-content/plugins/jetpack/_inc/lib/class-jetpack-currencies.php'),(3753,'wp-content/plugins/jetpack/_inc/lib/class-jetpack-instagram-gallery-helper.php'),(3754,'wp-content/plugins/jetpack/_inc/lib/class-jetpack-mapbox-helper.php'),(3755,'wp-content/plugins/jetpack/_inc/lib/class-jetpack-podcast-feed-locator.php'),(3756,'wp-content/plugins/jetpack/_inc/lib/class-jetpack-podcast-helper.php'),(3757,'wp-content/plugins/jetpack/_inc/lib/class-jetpack-recommendations.php'),(3758,'wp-content/plugins/jetpack/_inc/lib/class-jetpack-tweetstorm-helper.php'),(3759,'wp-content/plugins/jetpack/_inc/lib/class-jetpack-wizard.php'),(3760,'wp-content/plugins/jetpack/_inc/lib/class.color.php'),(3761,'wp-content/plugins/jetpack/_inc/lib/class.core-rest-api-endpoints.php'),(3762,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-automatic-install-skin.php'),(3763,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-iframe-embed.php'),(3764,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-keyring-service-helper.php'),(3765,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-password-checker.php'),(3766,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-photon-image-sizes.php'),(3767,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-photon-image.php'),(3768,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-search-performance-logger.php'),(3769,'wp-content/plugins/jetpack/_inc/lib/class.media-extractor.php'),(3770,'wp-content/plugins/jetpack/_inc/lib/class.media-summary.php'),(3771,'wp-content/plugins/jetpack/_inc/lib/class.media.php'),(3772,'wp-content/plugins/jetpack/_inc/lib/components.php'),(3773,'wp-content/plugins/jetpack/_inc/lib/core-api/class-wpcom-rest-field-controller.php'),(3774,'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-module-endpoints.php'),(3775,'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-site-endpoints.php'),(3776,'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-widgets-endpoints.php'),(3777,'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-xmlrpc-consumer-endpoint.php'),(3778,'wp-content/plugins/jetpack/_inc/lib/core-api/load-wpcom-endpoints.php'),(3779,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/business-hours.php'),(3780,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-admin-menu.php'),(3781,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-external-media.php'),(3782,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-instagram-gallery.php'),(3783,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-mailchimp.php'),(3784,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-podcast-player.php'),(3785,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-publicize-share-post.php'),(3786,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-resolve-redirect.php'),(3787,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-search.php'),(3788,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-transient.php'),(3789,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-tweetstorm-gather.php'),(3790,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-tweetstorm-parse.php'),(3791,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-videopress.php'),(3792,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/gutenberg-available-extensions.php'),(3793,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/hello.php'),(3794,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/memberships.php'),(3795,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/publicize-connection-test-results.php'),(3796,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/publicize-connections.php'),(3797,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/publicize-services.php'),(3798,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/service-api-keys.php'),(3799,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/sites-posts-featured-media-url.php'),(3800,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/subscribers.php'),(3801,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-fields/attachment-fields-videopress.php'),(3802,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-fields/class-wpcom-rest-api-v2-attachment-videopress-data.php'),(3803,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-fields/post-fields-publicize-connections.php'),(3804,'wp-content/plugins/jetpack/_inc/lib/debugger/0-load.php'),(3805,'wp-content/plugins/jetpack/_inc/lib/debugger/class-jetpack-cxn-test-base.php'),(3806,'wp-content/plugins/jetpack/_inc/lib/debugger/class-jetpack-cxn-tests.php'),(3807,'wp-content/plugins/jetpack/_inc/lib/debugger/class-jetpack-debug-data.php'),(3808,'wp-content/plugins/jetpack/_inc/lib/debugger/class-jetpack-debugger.php'),(3809,'wp-content/plugins/jetpack/_inc/lib/debugger/debug-functions-for-php53.php'),(3810,'wp-content/plugins/jetpack/_inc/lib/debugger/debug-functions.php'),(3811,'wp-content/plugins/jetpack/_inc/lib/debugger/jetpack-debugger-site-health.css'),(3812,'wp-content/plugins/jetpack/_inc/lib/debugger/jetpack-debugger-site-health.js'),(3813,'wp-content/plugins/jetpack/_inc/lib/debugger.php'),(3814,'wp-content/plugins/jetpack/_inc/lib/functions.wp-notify.php'),(3815,'wp-content/plugins/jetpack/_inc/lib/icalendar-reader.php'),(3816,'wp-content/plugins/jetpack/_inc/lib/jetpack-wpes-query-builder/jetpack-wpes-query-builder.php'),(3817,'wp-content/plugins/jetpack/_inc/lib/jetpack-wpes-query-builder/jetpack-wpes-query-parser.php'),(3818,'wp-content/plugins/jetpack/_inc/lib/markdown/0-load.php'),(3819,'wp-content/plugins/jetpack/_inc/lib/markdown/README.md'),(3820,'wp-content/plugins/jetpack/_inc/lib/markdown/extra.php'),(3821,'wp-content/plugins/jetpack/_inc/lib/markdown/gfm.php'),(3822,'wp-content/plugins/jetpack/_inc/lib/markdown.php'),(3823,'wp-content/plugins/jetpack/_inc/lib/plans.php'),(3824,'wp-content/plugins/jetpack/_inc/lib/plugins.php'),(3825,'wp-content/plugins/jetpack/_inc/lib/tonesque.php'),(3826,'wp-content/plugins/jetpack/_inc/lib/tracks/tracks-ajax.js'),(3827,'wp-content/plugins/jetpack/_inc/lib/tracks/tracks-callables.js'),(3828,'wp-content/plugins/jetpack/_inc/lib/widgets.php'),(3829,'wp-content/plugins/jetpack/_inc/polldaddy-shortcode.js'),(3830,'wp-content/plugins/jetpack/_inc/postmessage.js'),(3831,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.css'),(3832,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.eot'),(3833,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.html'),(3834,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.min.css'),(3835,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.ttf'),(3836,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.woff'),(3837,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.woff2'),(3838,'wp-content/plugins/jetpack/_inc/social-logos.php'),(3839,'wp-content/plugins/jetpack/_inc/spin.js'),(3840,'wp-content/plugins/jetpack/_inc/twitter-timeline.js'),(3841,'wp-content/plugins/jetpack/bin/build-asset-cdn-json.php'),(3842,'wp-content/plugins/jetpack/class-jetpack-connection-status.php'),(3843,'wp-content/plugins/jetpack/class-jetpack-pre-connection-jitms.php'),(3844,'wp-content/plugins/jetpack/class-jetpack-recommendations-banner.php'),(3845,'wp-content/plugins/jetpack/class-jetpack-stats-dashboard-widget.php'),(3846,'wp-content/plugins/jetpack/class-jetpack-wizard-banner.php'),(3847,'wp-content/plugins/jetpack/class-jetpack-xmlrpc-methods.php'),(3848,'wp-content/plugins/jetpack/class.frame-nonce-preview.php'),(3849,'wp-content/plugins/jetpack/class.jetpack-admin.php'),(3850,'wp-content/plugins/jetpack/class.jetpack-affiliate.php'),(3851,'wp-content/plugins/jetpack/class.jetpack-autoupdate.php'),(3852,'wp-content/plugins/jetpack/class.jetpack-bbpress-json-api-compat.php'),(3853,'wp-content/plugins/jetpack/class.jetpack-bbpress-json-api.compat.php'),(3854,'wp-content/plugins/jetpack/class.jetpack-cli.php'),(3855,'wp-content/plugins/jetpack/class.jetpack-client-server.php'),(3856,'wp-content/plugins/jetpack/class.jetpack-connection-banner.php'),(3857,'wp-content/plugins/jetpack/class.jetpack-data.php'),(3858,'wp-content/plugins/jetpack/class.jetpack-debugger.php'),(3859,'wp-content/plugins/jetpack/class.jetpack-error.php'),(3860,'wp-content/plugins/jetpack/class.jetpack-gutenberg.php'),(3861,'wp-content/plugins/jetpack/class.jetpack-heartbeat.php'),(3862,'wp-content/plugins/jetpack/class.jetpack-idc.php'),(3863,'wp-content/plugins/jetpack/class.jetpack-ixr-client.php'),(3864,'wp-content/plugins/jetpack/class.jetpack-modules-list-table.php'),(3865,'wp-content/plugins/jetpack/class.jetpack-network-sites-list-table.php'),(3866,'wp-content/plugins/jetpack/class.jetpack-network.php'),(3867,'wp-content/plugins/jetpack/class.jetpack-plan.php'),(3868,'wp-content/plugins/jetpack/class.jetpack-post-images.php'),(3869,'wp-content/plugins/jetpack/class.jetpack-twitter-cards.php'),(3870,'wp-content/plugins/jetpack/class.jetpack-user-agent.php'),(3871,'wp-content/plugins/jetpack/class.jetpack-xmlrpc-server.php'),(3872,'wp-content/plugins/jetpack/class.jetpack.php'),(3873,'wp-content/plugins/jetpack/class.json-api-endpoints.php'),(3874,'wp-content/plugins/jetpack/class.json-api.php'),(3875,'wp-content/plugins/jetpack/class.photon.php'),(3876,'wp-content/plugins/jetpack/composer.json'),(3877,'wp-content/plugins/jetpack/css/cleanslate-rtl.css'),(3878,'wp-content/plugins/jetpack/css/cleanslate-rtl.min.css'),(3879,'wp-content/plugins/jetpack/css/cleanslate.css'),(3880,'wp-content/plugins/jetpack/css/cleanslate.min.css'),(3881,'wp-content/plugins/jetpack/css/dashboard-widget-rtl.css'),(3882,'wp-content/plugins/jetpack/css/dashboard-widget-rtl.min.css'),(3883,'wp-content/plugins/jetpack/css/dashboard-widget.css'),(3884,'wp-content/plugins/jetpack/css/dashboard-widget.min.css'),(3885,'wp-content/plugins/jetpack/css/jetpack-admin-rtl.css'),(3886,'wp-content/plugins/jetpack/css/jetpack-admin-rtl.min.css'),(3887,'wp-content/plugins/jetpack/css/jetpack-admin.css'),(3888,'wp-content/plugins/jetpack/css/jetpack-admin.min.css'),(3889,'wp-content/plugins/jetpack/css/jetpack-banners-rtl.css'),(3890,'wp-content/plugins/jetpack/css/jetpack-banners-rtl.min.css'),(3891,'wp-content/plugins/jetpack/css/jetpack-banners.css'),(3892,'wp-content/plugins/jetpack/css/jetpack-banners.min.css'),(3893,'wp-content/plugins/jetpack/css/jetpack-connect-rtl.css'),(3894,'wp-content/plugins/jetpack/css/jetpack-connect-rtl.min.css'),(3895,'wp-content/plugins/jetpack/css/jetpack-connect.css'),(3896,'wp-content/plugins/jetpack/css/jetpack-connect.min.css'),(3897,'wp-content/plugins/jetpack/css/jetpack-deactivate-dialog-rtl.css'),(3898,'wp-content/plugins/jetpack/css/jetpack-deactivate-dialog-rtl.min.css'),(3899,'wp-content/plugins/jetpack/css/jetpack-deactivate-dialog.css'),(3900,'wp-content/plugins/jetpack/css/jetpack-deactivate-dialog.min.css'),(3901,'wp-content/plugins/jetpack/css/jetpack-icons-rtl.css'),(3902,'wp-content/plugins/jetpack/css/jetpack-icons-rtl.min.css'),(3903,'wp-content/plugins/jetpack/css/jetpack-icons.css'),(3904,'wp-content/plugins/jetpack/css/jetpack-icons.min.css'),(3905,'wp-content/plugins/jetpack/css/jetpack-recommendations-banner-rtl.css'),(3906,'wp-content/plugins/jetpack/css/jetpack-recommendations-banner-rtl.min.css'),(3907,'wp-content/plugins/jetpack/css/jetpack-recommendations-banner.css'),(3908,'wp-content/plugins/jetpack/css/jetpack-recommendations-banner.min.css'),(3909,'wp-content/plugins/jetpack/css/jetpack-rtl.css'),(3910,'wp-content/plugins/jetpack/css/jetpack.css'),(3911,'wp-content/plugins/jetpack/css/wordads-ccpa-rtl.css'),(3912,'wp-content/plugins/jetpack/css/wordads-ccpa-rtl.min.css'),(3913,'wp-content/plugins/jetpack/css/wordads-ccpa.css'),(3914,'wp-content/plugins/jetpack/css/wordads-ccpa.min.css'),(3915,'wp-content/plugins/jetpack/extensions/blocks/amazon/amazon.php'),(3916,'wp-content/plugins/jetpack/extensions/blocks/anchor-fm/anchor-fm.php'),(3917,'wp-content/plugins/jetpack/extensions/blocks/business-hours/business-hours.php'),(3918,'wp-content/plugins/jetpack/extensions/blocks/button/button.php'),(3919,'wp-content/plugins/jetpack/extensions/blocks/calendly/calendly.php'),(3920,'wp-content/plugins/jetpack/extensions/blocks/contact-info/class-jetpack-contact-info-block.php'),(3921,'wp-content/plugins/jetpack/extensions/blocks/contact-info/contact-info.php'),(3922,'wp-content/plugins/jetpack/extensions/blocks/conversation/conversation.php'),(3923,'wp-content/plugins/jetpack/extensions/blocks/dialogue/dialogue.php'),(3924,'wp-content/plugins/jetpack/extensions/blocks/donations/donations.php'),(3925,'wp-content/plugins/jetpack/extensions/blocks/eventbrite/eventbrite.php'),(3926,'wp-content/plugins/jetpack/extensions/blocks/gif/gif.php'),(3927,'wp-content/plugins/jetpack/extensions/blocks/google-calendar/google-calendar.php'),(3928,'wp-content/plugins/jetpack/extensions/blocks/image-compare/image-compare.php'),(3929,'wp-content/plugins/jetpack/extensions/blocks/instagram-gallery/instagram-gallery.php'),(3930,'wp-content/plugins/jetpack/extensions/blocks/mailchimp/mailchimp.php'),(3931,'wp-content/plugins/jetpack/extensions/blocks/map/map.php'),(3932,'wp-content/plugins/jetpack/extensions/blocks/markdown/markdown.php'),(3933,'wp-content/plugins/jetpack/extensions/blocks/opentable/opentable.php'),(3934,'wp-content/plugins/jetpack/extensions/blocks/pinterest/pinterest.php'),(3935,'wp-content/plugins/jetpack/extensions/blocks/podcast-player/podcast-player.php'),(3936,'wp-content/plugins/jetpack/extensions/blocks/podcast-player/templates/playlist-track.php'),(3937,'wp-content/plugins/jetpack/extensions/blocks/podcast-player/templates/podcast-header-title.php'),(3938,'wp-content/plugins/jetpack/extensions/blocks/podcast-player/templates/podcast-header.php'),(3939,'wp-content/plugins/jetpack/extensions/blocks/podcast-player/templates/podcast-title.php'),(3940,'wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/access-check.php'),(3941,'wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/legacy-buttons.php'),(3942,'wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-jetpack-token-subscription-service.php'),(3943,'wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-jwt.php'),(3944,'wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-subscription-service.php'),(3945,'wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-token-subscription-service.php'),(3946,'wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-token-subscription.php'),(3947,'wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-unconfigured-subscription-service.php'),(3948,'wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-wpcom-offline-subscription-service.php'),(3949,'wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/class-wpcom-token-subscription-service.php'),(3950,'wp-content/plugins/jetpack/extensions/blocks/premium-content/_inc/subscription-service/include.php'),(3951,'wp-content/plugins/jetpack/extensions/blocks/premium-content/buttons/buttons.php'),(3952,'wp-content/plugins/jetpack/extensions/blocks/premium-content/logged-out-view/logged-out-view.php'),(3953,'wp-content/plugins/jetpack/extensions/blocks/premium-content/login-button/login-button.php'),(3954,'wp-content/plugins/jetpack/extensions/blocks/premium-content/premium-content.php'),(3955,'wp-content/plugins/jetpack/extensions/blocks/premium-content/subscriber-view/subscriber-view.php'),(3956,'wp-content/plugins/jetpack/extensions/blocks/rating-star/rating-meta.php'),(3957,'wp-content/plugins/jetpack/extensions/blocks/rating-star/rating-star.php'),(3958,'wp-content/plugins/jetpack/extensions/blocks/recurring-payments/recurring-payments.php'),(3959,'wp-content/plugins/jetpack/extensions/blocks/repeat-visitor/repeat-visitor.php'),(3960,'wp-content/plugins/jetpack/extensions/blocks/revue/revue.php'),(3961,'wp-content/plugins/jetpack/extensions/blocks/send-a-message/send-a-message.php'),(3962,'wp-content/plugins/jetpack/extensions/blocks/send-a-message/whatsapp-button/whatsapp-button.php'),(3963,'wp-content/plugins/jetpack/extensions/blocks/simple-payments/simple-payments.php'),(3964,'wp-content/plugins/jetpack/extensions/blocks/slideshow/slideshow.php'),(3965,'wp-content/plugins/jetpack/extensions/blocks/social-previews/social-previews.php'),(3966,'wp-content/plugins/jetpack/extensions/blocks/story/story.php'),(3967,'wp-content/plugins/jetpack/extensions/blocks/subscriptions/subscriptions.php'),(3968,'wp-content/plugins/jetpack/extensions/blocks/tiled-gallery/tiled-gallery.php'),(3969,'wp-content/plugins/jetpack/extensions/blocks/wordads/wordads.php'),(3970,'wp-content/plugins/jetpack/extensions/extended-blocks/core-audio/core-audio.php'),(3971,'wp-content/plugins/jetpack/extensions/extended-blocks/core-cover/core-cover.php'),(3972,'wp-content/plugins/jetpack/extensions/extended-blocks/core-video/core-video.php'),(3973,'wp-content/plugins/jetpack/extensions/extended-blocks/premium-content-container/premium-content-container.php'),(3974,'wp-content/plugins/jetpack/extensions/plugins/publicize/publicize.php'),(3975,'wp-content/plugins/jetpack/functions.compat.php'),(3976,'wp-content/plugins/jetpack/functions.cookies.php'),(3977,'wp-content/plugins/jetpack/functions.gallery.php'),(3978,'wp-content/plugins/jetpack/functions.global.php'),(3979,'wp-content/plugins/jetpack/functions.opengraph.php'),(3980,'wp-content/plugins/jetpack/functions.photon.php'),(3981,'wp-content/plugins/jetpack/images/apps/triple-devices.svg'),(3982,'wp-content/plugins/jetpack/images/apps.svg'),(3983,'wp-content/plugins/jetpack/images/block-picker.png'),(3984,'wp-content/plugins/jetpack/images/cf-ss.png'),(3985,'wp-content/plugins/jetpack/images/characters.svg'),(3986,'wp-content/plugins/jetpack/images/cloud-based.svg'),(3987,'wp-content/plugins/jetpack/images/cloud-checkmark.svg'),(3988,'wp-content/plugins/jetpack/images/connect-jetpack.svg'),(3989,'wp-content/plugins/jetpack/images/connect-plug.svg'),(3990,'wp-content/plugins/jetpack/images/connect-right-partner-backup.png'),(3991,'wp-content/plugins/jetpack/images/connect-right-secondary.png'),(3992,'wp-content/plugins/jetpack/images/connect-right.jpg'),(3993,'wp-content/plugins/jetpack/images/customize-theme-2.svg'),(3994,'wp-content/plugins/jetpack/images/customize-theme.svg'),(3995,'wp-content/plugins/jetpack/images/generating-cash-2.svg'),(3996,'wp-content/plugins/jetpack/images/generating-cash.svg'),(3997,'wp-content/plugins/jetpack/images/get-apps-google-play.png'),(3998,'wp-content/plugins/jetpack/images/get-apps-ios-store.svg'),(3999,'wp-content/plugins/jetpack/images/get-apps.svg'),(4000,'wp-content/plugins/jetpack/images/green-star.svg'),(4001,'wp-content/plugins/jetpack/images/ionos-logo.jpg'),(4002,'wp-content/plugins/jetpack/images/jetpack-aside-background.jpg'),(4003,'wp-content/plugins/jetpack/images/jetpack-backup.svg'),(4004,'wp-content/plugins/jetpack/images/jetpack-banner-gradient.png'),(4005,'wp-content/plugins/jetpack/images/jetpack-connection-performance.svg'),(4006,'wp-content/plugins/jetpack/images/jetpack-connection-security.svg'),(4007,'wp-content/plugins/jetpack/images/jetpack-design.svg'),(4008,'wp-content/plugins/jetpack/images/jetpack-google-analytics.svg'),(4009,'wp-content/plugins/jetpack/images/jetpack-gutenberg.svg'),(4010,'wp-content/plugins/jetpack/images/jetpack-icon.jpg'),(4011,'wp-content/plugins/jetpack/images/jetpack-license-activation-with-lock.png'),(4012,'wp-content/plugins/jetpack/images/jetpack-license-activation-with-success.png'),(4013,'wp-content/plugins/jetpack/images/jetpack-logo.png'),(4014,'wp-content/plugins/jetpack/images/jetpack-logo.svg'),(4015,'wp-content/plugins/jetpack/images/jetpack-logomark-blue.svg'),(4016,'wp-content/plugins/jetpack/images/jetpack-marketing.svg'),(4017,'wp-content/plugins/jetpack/images/jetpack-new-heights.svg'),(4018,'wp-content/plugins/jetpack/images/jetpack-performance-icon.svg'),(4019,'wp-content/plugins/jetpack/images/jetpack-performance.svg'),(4020,'wp-content/plugins/jetpack/images/jetpack-powering-up.svg'),(4021,'wp-content/plugins/jetpack/images/jetpack-publicize-1.svg'),(4022,'wp-content/plugins/jetpack/images/jetpack-search-icon.svg'),(4023,'wp-content/plugins/jetpack/images/jetpack-search.svg'),(4024,'wp-content/plugins/jetpack/images/jetpack-security.svg'),(4025,'wp-content/plugins/jetpack/images/jetpack-site-activity.svg'),(4026,'wp-content/plugins/jetpack/images/jetpack-spam.svg'),(4027,'wp-content/plugins/jetpack/images/jetpack-speed-icon.svg'),(4028,'wp-content/plugins/jetpack/images/jetpack-speed.svg'),(4029,'wp-content/plugins/jetpack/images/jetpack-support.svg'),(4030,'wp-content/plugins/jetpack/images/jetpack-themes.svg'),(4031,'wp-content/plugins/jetpack/images/jetpack-updates.svg'),(4032,'wp-content/plugins/jetpack/images/jetpack-video-hosting.svg'),(4033,'wp-content/plugins/jetpack/images/jetpack-welcome.svg'),(4034,'wp-content/plugins/jetpack/images/jetpack-woocommerce-logo.svg'),(4035,'wp-content/plugins/jetpack/images/jetpack-wordads.svg'),(4036,'wp-content/plugins/jetpack/images/jupiter.svg'),(4037,'wp-content/plugins/jetpack/images/man-and-laptop.svg'),(4038,'wp-content/plugins/jetpack/images/people-around-page.svg'),(4039,'wp-content/plugins/jetpack/images/plans/jetpack-complete.svg'),(4040,'wp-content/plugins/jetpack/images/plans/jetpack-free.svg'),(4041,'wp-content/plugins/jetpack/images/plans/jetpack-personal.svg'),(4042,'wp-content/plugins/jetpack/images/plans/jetpack-premium.svg'),(4043,'wp-content/plugins/jetpack/images/plans/jetpack-professional.svg'),(4044,'wp-content/plugins/jetpack/images/plans/jetpack-security.svg'),(4045,'wp-content/plugins/jetpack/images/plans/plan-business.svg'),(4046,'wp-content/plugins/jetpack/images/plans/plan-complete.svg'),(4047,'wp-content/plugins/jetpack/images/plans/plan-free.svg'),(4048,'wp-content/plugins/jetpack/images/plans/plan-personal.svg'),(4049,'wp-content/plugins/jetpack/images/plans/plan-premium.svg'),(4050,'wp-content/plugins/jetpack/images/plans/plan-security-daily.svg'),(4051,'wp-content/plugins/jetpack/images/plans/plan-security-realtime.svg'),(4052,'wp-content/plugins/jetpack/images/plans/wpcom-business.svg'),(4053,'wp-content/plugins/jetpack/images/plans/wpcom-ecommerce.svg'),(4054,'wp-content/plugins/jetpack/images/plans/wpcom-free.svg'),(4055,'wp-content/plugins/jetpack/images/plans/wpcom-personal.svg'),(4056,'wp-content/plugins/jetpack/images/plans/wpcom-premium.svg'),(4057,'wp-content/plugins/jetpack/images/products/illustration-anti-spam.png'),(4058,'wp-content/plugins/jetpack/images/products/illustration-backup.png'),(4059,'wp-content/plugins/jetpack/images/products/illustration-scan.png'),(4060,'wp-content/plugins/jetpack/images/products/illustration-search.png'),(4061,'wp-content/plugins/jetpack/images/products/illustration-videopress.png'),(4062,'wp-content/plugins/jetpack/images/products/product-jetpack-anti-spam.svg'),(4063,'wp-content/plugins/jetpack/images/products/product-jetpack-backup.svg'),(4064,'wp-content/plugins/jetpack/images/products/product-jetpack-boost.svg'),(4065,'wp-content/plugins/jetpack/images/products/product-jetpack-crm.svg'),(4066,'wp-content/plugins/jetpack/images/products/product-jetpack-scan.svg'),(4067,'wp-content/plugins/jetpack/images/products/product-jetpack-search.svg'),(4068,'wp-content/plugins/jetpack/images/products/product-jetpack-security-bundle.svg'),(4069,'wp-content/plugins/jetpack/images/products/product-jetpack-videopress.svg'),(4070,'wp-content/plugins/jetpack/images/recommendations/background-alt.svg'),(4071,'wp-content/plugins/jetpack/images/recommendations/background.svg'),(4072,'wp-content/plugins/jetpack/images/recommendations/creative-mail-illustration.svg'),(4073,'wp-content/plugins/jetpack/images/recommendations/manage-security.svg'),(4074,'wp-content/plugins/jetpack/images/recommendations/mobile-app.svg'),(4075,'wp-content/plugins/jetpack/images/recommendations/monitor-illustration.svg'),(4076,'wp-content/plugins/jetpack/images/recommendations/one-click-restores.svg'),(4077,'wp-content/plugins/jetpack/images/recommendations/product-purchased-illustration.svg'),(4078,'wp-content/plugins/jetpack/images/recommendations/related-posts-illustration.jpg'),(4079,'wp-content/plugins/jetpack/images/recommendations/site-accelerator-illustration.svg'),(4080,'wp-content/plugins/jetpack/images/recommendations/site-type-illustration.jpg'),(4081,'wp-content/plugins/jetpack/images/recommendations/woocommerce-illustration.jpg'),(4082,'wp-content/plugins/jetpack/images/rss/blue-large.png'),(4083,'wp-content/plugins/jetpack/images/rss/blue-medium.png'),(4084,'wp-content/plugins/jetpack/images/rss/blue-small.png'),(4085,'wp-content/plugins/jetpack/images/rss/green-large.png'),(4086,'wp-content/plugins/jetpack/images/rss/green-medium.png'),(4087,'wp-content/plugins/jetpack/images/rss/green-small.png'),(4088,'wp-content/plugins/jetpack/images/rss/orange-large.png'),(4089,'wp-content/plugins/jetpack/images/rss/orange-medium.png'),(4090,'wp-content/plugins/jetpack/images/rss/orange-small.png'),(4091,'wp-content/plugins/jetpack/images/rss/pink-large.png'),(4092,'wp-content/plugins/jetpack/images/rss/pink-medium.png'),(4093,'wp-content/plugins/jetpack/images/rss/pink-small.png'),(4094,'wp-content/plugins/jetpack/images/rss/purple-large.png'),(4095,'wp-content/plugins/jetpack/images/rss/purple-medium.png'),(4096,'wp-content/plugins/jetpack/images/rss/purple-small.png'),(4097,'wp-content/plugins/jetpack/images/rss/red-large.png'),(4098,'wp-content/plugins/jetpack/images/rss/red-medium.png'),(4099,'wp-content/plugins/jetpack/images/rss/red-small.png'),(4100,'wp-content/plugins/jetpack/images/rss/silver-large.png'),(4101,'wp-content/plugins/jetpack/images/rss/silver-medium.png'),(4102,'wp-content/plugins/jetpack/images/rss/silver-small.png'),(4103,'wp-content/plugins/jetpack/images/security.svg'),(4104,'wp-content/plugins/jetpack/images/star.svg'),(4105,'wp-content/plugins/jetpack/images/stars-full.svg'),(4106,'wp-content/plugins/jetpack/images/stars-left.svg'),(4107,'wp-content/plugins/jetpack/images/stars-right.svg'),(4108,'wp-content/plugins/jetpack/images/stats-example-lrg.png'),(4109,'wp-content/plugins/jetpack/images/stats-example-med.png'),(4110,'wp-content/plugins/jetpack/images/stats-example-sm.png'),(4111,'wp-content/plugins/jetpack/images/stats-people.svg'),(4112,'wp-content/plugins/jetpack/images/stats-smiley.gif'),(4113,'wp-content/plugins/jetpack/images/stats.svg'),(4114,'wp-content/plugins/jetpack/images/themes.svg'),(4115,'wp-content/plugins/jetpack/images/white-clouds-reverse.svg'),(4116,'wp-content/plugins/jetpack/images/white-clouds.svg'),(4117,'wp-content/plugins/jetpack/images/wordads.svg'),(4118,'wp-content/plugins/jetpack/jest.config.js'),(4119,'wp-content/plugins/jetpack/jetpack.php'),(4120,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-a8c-mc-stats/CHANGELOG.md'),(4121,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-a8c-mc-stats/LICENSE.txt'),(4122,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-a8c-mc-stats/SECURITY.md'),(4123,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-a8c-mc-stats/src/class-a8c-mc-stats.php'),(4124,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-abtest/CHANGELOG.md'),(4125,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-abtest/LICENSE.txt'),(4126,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-abtest/SECURITY.md'),(4127,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-abtest/src/class-abtest.php'),(4128,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/.phpcs.dir.xml'),(4129,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/CHANGELOG.md'),(4130,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/LICENSE.txt'),(4131,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/SECURITY.md'),(4132,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php'),(4133,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/css/jetpack-icon.css'),(4134,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/fonts/jetpack/jetpack.eot'),(4135,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/fonts/jetpack/jetpack.svg'),(4136,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/fonts/jetpack/jetpack.ttf'),(4137,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-admin-ui/src/fonts/jetpack/jetpack.woff'),(4138,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md'),(4139,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/LICENSE.txt'),(4140,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/SECURITY.md'),(4141,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/actions.php'),(4142,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/build/i18n-loader.asset.php'),(4143,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/build/i18n-loader.js'),(4144,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/package.json'),(4145,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/src/class-assets.php'),(4146,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/src/class-semver.php'),(4147,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/src/js/i18n-loader.js'),(4148,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/webpack.config.js'),(4149,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/CHANGELOG.md'),(4150,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/LICENSE.txt'),(4151,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/SECURITY.md'),(4152,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/actions.php'),(4153,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/class-helper-script-manager.php'),(4154,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/class-package-version.php'),(4155,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/class-rest-controller.php'),(4156,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-blocks/CHANGELOG.md'),(4157,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-blocks/LICENSE.txt'),(4158,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-blocks/SECURITY.md'),(4159,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-blocks/src/class-blocks.php'),(4160,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/CHANGELOG.md'),(4161,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/LICENSE.txt'),(4162,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/SECURITY.md'),(4163,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/functions.php'),(4164,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-client.php'),(4165,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-actions.php'),(4166,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php'),(4167,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-settings.php'),(4168,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpacktracking.php'),(4169,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-compat/lib/tracks/client.php'),(4170,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-config/CHANGELOG.md'),(4171,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-config/LICENSE.txt'),(4172,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-config/SECURITY.md'),(4173,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-config/src/class-config.php'),(4174,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md'),(4175,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/LICENSE.txt'),(4176,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/SECURITY.md'),(4177,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php'),(4178,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php'),(4179,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php'),(4180,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php'),(4181,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-client.php'),(4182,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php'),(4183,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php'),(4184,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php'),(4185,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php'),(4186,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php'),(4187,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php'),(4188,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php'),(4189,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php'),(4190,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php'),(4191,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php'),(4192,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php'),(4193,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php'),(4194,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php'),(4195,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php'),(4196,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php'),(4197,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php'),(4198,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php'),(4199,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php'),(4200,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php'),(4201,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/CHANGELOG.md'),(4202,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/LICENSE.txt'),(4203,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/SECURITY.md'),(4204,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/babel.config.js'),(4205,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/images/disconnect-confirm-dc9fe8f5c68cfd1320e0.jpg'),(4206,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/images/disconnect-thanks-5873bfac56a9bd7322cd.jpg'),(4207,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/index.asset.php'),(4208,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/index.css'),(4209,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/index.js'),(4210,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/index.js.LICENSE.txt'),(4211,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/build/index.rtl.css'),(4212,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/src/class-admin.php'),(4213,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection-ui/src/class-initial-state.php'),(4214,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-constants/CHANGELOG.md'),(4215,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-constants/LICENSE.txt'),(4216,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-constants/SECURITY.md'),(4217,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-constants/src/class-constants.php'),(4218,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-device-detection/CHANGELOG.md'),(4219,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-device-detection/LICENSE.txt'),(4220,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-device-detection/SECURITY.md'),(4221,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-device-detection/src/class-device-detection.php'),(4222,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-device-detection/src/class-user-agent-info.php'),(4223,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-error/CHANGELOG.md'),(4224,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-error/LICENSE.txt'),(4225,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-error/SECURITY.md'),(4226,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-error/src/class-error.php'),(4227,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-heartbeat/CHANGELOG.md'),(4228,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-heartbeat/LICENSE.txt'),(4229,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-heartbeat/SECURITY.md'),(4230,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-heartbeat/src/class-heartbeat.php'),(4231,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md'),(4232,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/LICENSE.txt'),(4233,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/SECURITY.md'),(4234,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/babel.config.js'),(4235,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/build/index.asset.php'),(4236,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/build/index.css'),(4237,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/build/index.js'),(4238,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/build/index.js.LICENSE.txt'),(4239,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/build/index.rtl.css'),(4240,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src/_inc/admin-bar.scss'),(4241,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src/_inc/admin.jsx'),(4242,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src/_inc/style.scss'),(4243,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php'),(4244,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-rest-endpoints.php'),(4245,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-ui.php'),(4246,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/CHANGELOG.md'),(4247,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/LICENSE.txt'),(4248,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/SECURITY.md'),(4249,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/build/index.asset.php'),(4250,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/build/index.css'),(4251,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/build/index.js'),(4252,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/build/index.rtl.css'),(4253,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/src/class-jitm.php'),(4254,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/src/class-post-connection-jitm.php'),(4255,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/src/class-pre-connection-jitm.php'),(4256,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/src/class-rest-api-endpoints.php'),(4257,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-jitm/src/js/jetpack-jitm.js'),(4258,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/CHANGELOG.md'),(4259,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/LICENSE.txt'),(4260,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/SECURITY.md'),(4261,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/dist/intersection-observer.asset.php'),(4262,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/dist/intersection-observer.js'),(4263,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/dist/intersection-observer.src.js'),(4264,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/dist/lazy-images.asset.php'),(4265,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/dist/lazy-images.js'),(4266,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/src/images/1x1.trans.gif'),(4267,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/src/js/lazy-images.js'),(4268,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/src/lazy-images.php'),(4269,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/webpack.config.js'),(4270,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-licensing/CHANGELOG.md'),(4271,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-licensing/LICENSE.txt'),(4272,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-licensing/SECURITY.md'),(4273,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-licensing/src/class-licensing.php'),(4274,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-logo/CHANGELOG.md'),(4275,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-logo/LICENSE.txt'),(4276,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-logo/SECURITY.md'),(4277,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-logo/src/class-logo.php'),(4278,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/.babelrc'),(4279,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md'),(4280,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/LICENSE.txt'),(4281,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/SECURITY.md'),(4282,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/babel.config.js'),(4283,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/boost-a54137485af36fdffe9c.png'),(4284,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/connect-f27775ac15cf885713c2.png'),(4285,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/crm-7e7684ae2c40327d8fed.png'),(4286,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/disconnect-confirm-dc9fe8f5c68cfd1320e0.jpg'),(4287,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/disconnect-thanks-5873bfac56a9bd7322cd.jpg'),(4288,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/extras-26daf36507504c96d066.png'),(4289,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/search-f9756bd9c926d905fe70.png'),(4290,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/images/videopress-9591093a9a238cc48a35.png'),(4291,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/index.asset.php'),(4292,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/index.css'),(4293,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/index.js'),(4294,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/index.js.LICENSE.txt'),(4295,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/index.rtl.css'),(4296,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/jest.setup.js'),(4297,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php'),(4298,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php'),(4299,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php'),(4300,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php'),(4301,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php'),(4302,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php'),(4303,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php'),(4304,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php'),(4305,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php'),(4306,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php'),(4307,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php'),(4308,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php'),(4309,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php'),(4310,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php'),(4311,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php'),(4312,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php'),(4313,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php'),(4314,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/webpack.config.js'),(4315,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-options/CHANGELOG.md'),(4316,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-options/LICENSE.txt'),(4317,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-options/SECURITY.md'),(4318,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-options/legacy/class-jetpack-options.php'),(4319,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-partner/CHANGELOG.md'),(4320,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-partner/LICENSE.txt'),(4321,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-partner/SECURITY.md'),(4322,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-partner/src/class-partner-coupon.php'),(4323,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-partner/src/class-partner.php'),(4324,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-password-checker/CHANGELOG.md'),(4325,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-password-checker/LICENSE.txt'),(4326,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-password-checker/SECURITY.md'),(4327,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-password-checker/src/class-password-checker.php'),(4328,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-redirect/CHANGELOG.md'),(4329,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-redirect/LICENSE.txt'),(4330,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-redirect/SECURITY.md'),(4331,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-redirect/src/class-redirect.php'),(4332,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-roles/CHANGELOG.md'),(4333,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-roles/LICENSE.txt'),(4334,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-roles/SECURITY.md'),(4335,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-roles/src/class-roles.php'),(4336,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/.size-limit.js'),(4337,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/CHANGELOG.md'),(4338,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/LICENSE.txt'),(4339,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/SECURITY.md'),(4340,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/customberg/jp-search-configure.asset.php'),(4341,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/customberg/jp-search-configure.css'),(4342,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/customberg/jp-search-configure.js'),(4343,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/customberg/jp-search-configure.js.LICENSE.txt'),(4344,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/customberg/jp-search-configure.rtl.css'),(4345,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/dashboard/jp-search-dashboard.asset.php'),(4346,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/dashboard/jp-search-dashboard.css'),(4347,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/dashboard/jp-search-dashboard.js'),(4348,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/dashboard/jp-search-dashboard.js.LICENSE.txt'),(4349,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/dashboard/jp-search-dashboard.rtl.css'),(4350,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/687.js'),(4351,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/687.js.LICENSE.txt'),(4352,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/jp-search.asset.php'),(4353,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/jp-search.chunk-main-payload.css'),(4354,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/jp-search.chunk-main-payload.js'),(4355,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/jp-search.chunk-main-payload.rtl.css'),(4356,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/build/instant-search/jp-search.js'),(4357,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/search.php'),(4358,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-cli.php'),(4359,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-helper.php'),(4360,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-module-control.php'),(4361,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-options.php'),(4362,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-plan.php'),(4363,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php'),(4364,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-settings.php'),(4365,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-stats.php'),(4366,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-template-tags.php'),(4367,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/classic-search/class-classic-search.php'),(4368,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customberg/class-customberg2.php'),(4369,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customberg/hooks/use-entity-record-state.js'),(4370,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customberg/hooks/use-loading-state.js'),(4371,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customberg/hooks/use-search-options.js'),(4372,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customberg/lib/analytics.js'),(4373,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/customberg/lib/constants.js'),(4374,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/class-dashboard.php'),(4375,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/class-initial-state.php'),(4376,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/components/global-notices/store/actions.js'),(4377,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/components/global-notices/store/reducer.js'),(4378,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/components/global-notices/store/selectors.js'),(4379,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/actions/index.js'),(4380,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/actions/jetpack-settings.js'),(4381,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/actions/site-plan.js'),(4382,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/controls.js'),(4383,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/index.js'),(4384,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/reducer/index.js'),(4385,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/reducer/jetpack-settings.js'),(4386,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/reducer/site-data.js'),(4387,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/reducer/site-plan.js'),(4388,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/reducer/user-data.js'),(4389,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/resolvers.js'),(4390,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/selectors/index.js'),(4391,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/selectors/jetpack-settings.js'),(4392,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/selectors/site-data.js'),(4393,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/selectors/site-plan.js'),(4394,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/dashboard/store/selectors/user-data.js'),(4395,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/initializers/class-initializer.php'),(4396,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/initializers/class-jetpack-initializer.php'),(4397,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/class-instant-search.php'),(4398,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/external/query-string-decode.js'),(4399,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/api.js'),(4400,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/array-overlap.js'),(4401,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/colors.js'),(4402,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/constants.js'),(4403,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/customize.js'),(4404,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/dom.js'),(4405,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/dummy-debug.js'),(4406,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/filters.js'),(4407,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/hooks/use-photon.js'),(4408,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/query-string.js'),(4409,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/sort.js'),(4410,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/test-helpers/tiny-lru.mock.js'),(4411,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/lib/tracks.js'),(4412,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/loader.js'),(4413,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/set-webpack-public-path.js'),(4414,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/actions.js'),(4415,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/effects.js'),(4416,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/index.js'),(4417,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/reducer/api.js'),(4418,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/reducer/history.js'),(4419,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/reducer/index.js'),(4420,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/reducer/query-string.js'),(4421,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/reducer/server-options.js'),(4422,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/instant-search/store/selectors.js'),(4423,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/widgets/class-search-widget.php'),(4424,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/widgets/css/search-widget-admin-ui.css'),(4425,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/widgets/css/search-widget-frontend.css'),(4426,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/widgets/js/search-widget-admin.js'),(4427,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/widgets/js/search-widget.js'),(4428,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-builder.php'),(4429,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-parser.php'),(4430,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/CHANGELOG.md'),(4431,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/LICENSE.txt'),(4432,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/SECURITY.md'),(4433,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/src/class-host.php'),(4434,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/src/class-status.php'),(4435,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/src/class-visitor.php'),(4436,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md'),(4437,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/LICENSE.txt'),(4438,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/SECURITY.md'),(4439,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php'),(4440,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-data-settings.php'),(4441,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-dedicated-sender.php'),(4442,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-default-filter-settings.php'),(4443,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-defaults.php'),(4444,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-functions.php'),(4445,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-health.php'),(4446,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-json-deflate-array-codec.php'),(4447,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-listener.php'),(4448,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-lock.php'),(4449,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-main.php'),(4450,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-modules.php'),(4451,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php'),(4452,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-queue-buffer.php'),(4453,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-queue.php'),(4454,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-replicastore.php'),(4455,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php'),(4456,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-rest-sender.php'),(4457,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-sender.php'),(4458,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-server.php'),(4459,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-settings.php'),(4460,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-simple-codec.php'),(4461,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-users.php'),(4462,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php'),(4463,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/interface-codec.php'),(4464,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/interface-replicastore.php'),(4465,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-attachments.php'),(4466,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-callables.php'),(4467,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-comments.php'),(4468,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-constants.php'),(4469,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php'),(4470,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php'),(4471,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-import.php'),(4472,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-menus.php'),(4473,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-meta.php'),(4474,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-module.php'),(4475,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-network-options.php'),(4476,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-options.php'),(4477,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-plugins.php'),(4478,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-posts.php'),(4479,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-protect.php'),(4480,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-search.php'),(4481,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-stats.php'),(4482,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-term-relationships.php'),(4483,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-terms.php'),(4484,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-themes.php'),(4485,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-updates.php'),(4486,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-users.php'),(4487,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce.php'),(4488,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/modules/class-wp-super-cache.php'),(4489,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-usermeta.php'),(4490,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-users.php'),(4491,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php'),(4492,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-terms-of-service/CHANGELOG.md'),(4493,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-terms-of-service/LICENSE.txt'),(4494,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-terms-of-service/SECURITY.md'),(4495,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-terms-of-service/src/class-terms-of-service.php'),(4496,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/CHANGELOG.md'),(4497,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/LICENSE.txt'),(4498,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/SECURITY.md'),(4499,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-client.php'),(4500,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-event.php'),(4501,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/src/class-tracking.php'),(4502,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/src/js/tracks-ajax.js'),(4503,'wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-tracking/src/js/tracks-callables.js'),(4504,'wp-content/plugins/jetpack/jetpack_vendor/i18n-map.php'),(4505,'wp-content/plugins/jetpack/json-api-config.php'),(4506,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-add-widget-endpoint.php'),(4507,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-autosave-post-v1-1-endpoint.php'),(4508,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-bulk-delete-post-endpoint.php'),(4509,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-bulk-restore-post-endpoint.php'),(4510,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-bulk-update-comments-endpoint.php'),(4511,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-comment-endpoint.php'),(4512,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-endpoint.php'),(4513,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-v1-1-endpoint.php'),(4514,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-edit-media-v1-2-endpoint.php'),(4515,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-autosave-v1-1-endpoint.php'),(4516,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-counts-endpoint.php'),(4517,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-endpoint.php'),(4518,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-history-endpoint.php'),(4519,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-endpoint.php'),(4520,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-v1-1-endpoint.php'),(4521,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-v1-2-endpoint.php'),(4522,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-customcss.php'),(4523,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-endpoint.php'),(4524,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-1-endpoint.php'),(4525,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-2-endpoint.php'),(4526,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-counts-v1-1-endpoint.php'),(4527,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-endpoint.php'),(4528,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-v1-1-endpoint.php'),(4529,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-endpoint.php'),(4530,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-v1-2-endpoint.php'),(4531,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomies-endpoint.php'),(4532,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomy-endpoint.php'),(4533,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-term-endpoint.php'),(4534,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-comments-endpoint.php'),(4535,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-embeds-endpoint.php'),(4536,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-endpoint.php'),(4537,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-v1-1-endpoint.php'),(4538,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-v1-2-endpoint.php'),(4539,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-type-taxonomies-endpoint.php'),(4540,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-types-endpoint.php'),(4541,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-endpoint.php'),(4542,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-v1-1-endpoint.php'),(4543,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-v1-2-endpoint.php'),(4544,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-roles-endpoint.php'),(4545,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-shortcodes-endpoint.php'),(4546,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-terms-endpoint.php'),(4547,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-users-endpoint.php'),(4548,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-menus-v1-1-endpoint.php'),(4549,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-endpoint.php'),(4550,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-v1-1-endpoint.php'),(4551,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-endpoint.php'),(4552,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-reversal-endpoint.php'),(4553,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-endpoint.php'),(4554,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-shortcode-endpoint.php'),(4555,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-sharing-buttons-endpoint.php'),(4556,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-endpoint.php'),(4557,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-2-endpoint.php'),(4558,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-3-endpoint.php'),(4559,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-4-endpoint.php'),(4560,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-user-endpoint.php'),(4561,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-taxonomy-endpoint.php'),(4562,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-comment-endpoint.php'),(4563,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-customcss.php'),(4564,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-endpoint.php'),(4565,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-v1-1-endpoint.php'),(4566,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-endpoint.php'),(4567,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-1-endpoint.php'),(4568,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-2-endpoint.php'),(4569,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-site-homepage-endpoint.php'),(4570,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-site-logo-endpoint.php'),(4571,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-taxonomy-endpoint.php'),(4572,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-term-endpoint.php'),(4573,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-user-endpoint.php'),(4574,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-endpoint.php'),(4575,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-v1-1-endpoint.php'),(4576,'wp-content/plugins/jetpack/json-endpoints/jetpack/class-jetpack-json-api-delete-backup-helper-script-endpoint.php'),(4577,'wp-content/plugins/jetpack/json-endpoints/jetpack/class-jetpack-json-api-install-backup-helper-script-endpoint.php'),(4578,'wp-content/plugins/jetpack/json-endpoints/jetpack/class-jetpack-json-api-modules-list-v1-2-endpoint.php'),(4579,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-check-capabilities-endpoint.php'),(4580,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-endpoint.php'),(4581,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-modify-endpoint.php'),(4582,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-cron-endpoint.php'),(4583,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-endpoint.php'),(4584,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-comment-backup-endpoint.php'),(4585,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-database-object-backup-endpoint.php'),(4586,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-option-backup-endpoint.php'),(4587,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-post-backup-endpoint.php'),(4588,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-term-backup-endpoint.php'),(4589,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-user-backup-endpoint.php'),(4590,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-jps-woocommerce-connect-endpoint.php'),(4591,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-log-endpoint.php'),(4592,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-maybe-auto-update-endpoint.php'),(4593,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-endpoint.php'),(4594,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-get-endpoint.php'),(4595,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-list-endpoint.php'),(4596,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-modify-endpoint.php'),(4597,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-delete-endpoint.php'),(4598,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-endpoint.php'),(4599,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-get-endpoint.php'),(4600,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-install-endpoint.php'),(4601,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-list-endpoint.php'),(4602,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-endpoint.php'),(4603,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-v1-2-endpoint.php'),(4604,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-new-endpoint.php'),(4605,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php'),(4606,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-active-endpoint.php'),(4607,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-delete-endpoint.php'),(4608,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-endpoint.php'),(4609,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-get-endpoint.php'),(4610,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-install-endpoint.php'),(4611,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-list-endpoint.php'),(4612,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-modify-endpoint.php'),(4613,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-new-endpoint.php'),(4614,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-endpoint.php'),(4615,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-modify-endpoint.php'),(4616,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-updates-status-endpoint.php'),(4617,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-user-connect-endpoint.php'),(4618,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-user-create-endpoint.php'),(4619,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-get-option-endpoint.php'),(4620,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-update-option-endpoint.php'),(4621,'wp-content/plugins/jetpack/json-endpoints/jetpack/json-api-jetpack-endpoints.php'),(4622,'wp-content/plugins/jetpack/json-endpoints.php'),(4623,'wp-content/plugins/jetpack/load-jetpack.php'),(4624,'wp-content/plugins/jetpack/locales.php'),(4625,'wp-content/plugins/jetpack/modules/.eslintrc.js'),(4626,'wp-content/plugins/jetpack/modules/after-the-deadline.php'),(4627,'wp-content/plugins/jetpack/modules/calypsoify/README.md'),(4628,'wp-content/plugins/jetpack/modules/calypsoify/class-jetpack-calypsoify.php'),(4629,'wp-content/plugins/jetpack/modules/calypsoify/class.jetpack-calypsoify.php'),(4630,'wp-content/plugins/jetpack/modules/calypsoify/gutenberg-styles/button.scss'),(4631,'wp-content/plugins/jetpack/modules/calypsoify/mods-gutenberg.js'),(4632,'wp-content/plugins/jetpack/modules/calypsoify/mods.js'),(4633,'wp-content/plugins/jetpack/modules/calypsoify/style-gutenberg-rtl.min.css'),(4634,'wp-content/plugins/jetpack/modules/calypsoify/style-gutenberg.min.css'),(4635,'wp-content/plugins/jetpack/modules/calypsoify/style-rtl.min.css'),(4636,'wp-content/plugins/jetpack/modules/calypsoify/style.min.css'),(4637,'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel-rtl.css'),(4638,'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.css'),(4639,'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.js'),(4640,'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.php'),(4641,'wp-content/plugins/jetpack/modules/carousel/readme.md'),(4642,'wp-content/plugins/jetpack/modules/carousel/swiper-bundle.css'),(4643,'wp-content/plugins/jetpack/modules/carousel/swiper-bundle.js'),(4644,'wp-content/plugins/jetpack/modules/carousel.php'),(4645,'wp-content/plugins/jetpack/modules/cloudflare-analytics/cloudflare-analytics.php'),(4646,'wp-content/plugins/jetpack/modules/comment-likes/admin-style.css'),(4647,'wp-content/plugins/jetpack/modules/comment-likes/comment-like-count.js'),(4648,'wp-content/plugins/jetpack/modules/comment-likes.php'),(4649,'wp-content/plugins/jetpack/modules/comments/admin.php'),(4650,'wp-content/plugins/jetpack/modules/comments/base.php'),(4651,'wp-content/plugins/jetpack/modules/comments/comments.php'),(4652,'wp-content/plugins/jetpack/modules/comments.php'),(4653,'wp-content/plugins/jetpack/modules/contact-form/admin.php'),(4654,'wp-content/plugins/jetpack/modules/contact-form/class-grunion-contact-form-endpoint.php'),(4655,'wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.css'),(4656,'wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.min.css'),(4657,'wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style.css'),(4658,'wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style.min.css'),(4659,'wp-content/plugins/jetpack/modules/contact-form/css/editor-style-rtl.css'),(4660,'wp-content/plugins/jetpack/modules/contact-form/css/editor-style-rtl.min.css'),(4661,'wp-content/plugins/jetpack/modules/contact-form/css/editor-style.css'),(4662,'wp-content/plugins/jetpack/modules/contact-form/css/editor-style.min.css'),(4663,'wp-content/plugins/jetpack/modules/contact-form/css/editor-ui-rtl.css'),(4664,'wp-content/plugins/jetpack/modules/contact-form/css/editor-ui-rtl.min.css'),(4665,'wp-content/plugins/jetpack/modules/contact-form/css/editor-ui.css'),(4666,'wp-content/plugins/jetpack/modules/contact-form/css/editor-ui.min.css'),(4667,'wp-content/plugins/jetpack/modules/contact-form/css/grunion-rtl.css'),(4668,'wp-content/plugins/jetpack/modules/contact-form/css/grunion.css'),(4669,'wp-content/plugins/jetpack/modules/contact-form/css/jquery-ui-datepicker.css'),(4670,'wp-content/plugins/jetpack/modules/contact-form/grunion-contact-form.php'),(4671,'wp-content/plugins/jetpack/modules/contact-form/grunion-editor-view.php'),(4672,'wp-content/plugins/jetpack/modules/contact-form/grunion-form-view.php'),(4673,'wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-akismet.png'),(4674,'wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-button.png'),(4675,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-form-2x.png'),(4676,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-form.png'),(4677,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-2x.png'),(4678,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover-2x.png'),(4679,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover.gif'),(4680,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field.gif'),(4681,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-2x.png'),(4682,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover-2x.png'),(4683,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover.gif'),(4684,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option.gif'),(4685,'wp-content/plugins/jetpack/modules/contact-form/js/editor-view.js'),(4686,'wp-content/plugins/jetpack/modules/contact-form/js/grunion-admin.js'),(4687,'wp-content/plugins/jetpack/modules/contact-form/js/grunion-frontend.js'),(4688,'wp-content/plugins/jetpack/modules/contact-form/js/grunion.js'),(4689,'wp-content/plugins/jetpack/modules/contact-form/js/tinymce-plugin-form-button.js'),(4690,'wp-content/plugins/jetpack/modules/contact-form.php'),(4691,'wp-content/plugins/jetpack/modules/copy-post.php'),(4692,'wp-content/plugins/jetpack/modules/custom-content-types.php'),(4693,'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy.php'),(4694,'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_ctype.php'),(4695,'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_optimise.php'),(4696,'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_print.php'),(4697,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.css'),(4698,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.min.css'),(4699,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.css'),(4700,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.min.css'),(4701,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.css'),(4702,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.min.css'),(4703,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.css'),(4704,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.min.css'),(4705,'wp-content/plugins/jetpack/modules/custom-css/csstidy/data-wp.inc.php'),(4706,'wp-content/plugins/jetpack/modules/custom-css/csstidy/data.inc.php'),(4707,'wp-content/plugins/jetpack/modules/custom-css/csstidy/lang.inc.php'),(4708,'wp-content/plugins/jetpack/modules/custom-css/csstidy/wordpress-standard.tpl'),(4709,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/blank.css'),(4710,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.css'),(4711,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.min.css'),(4712,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.css'),(4713,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.min.css'),(4714,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.css'),(4715,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.min.css'),(4716,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.css'),(4717,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.min.css'),(4718,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/customizer-control.css'),(4719,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/rtl/codemirror-rtl.css'),(4720,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.css'),(4721,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.min.css'),(4722,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.css'),(4723,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.min.css'),(4724,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/codemirror.min.js'),(4725,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css-preview.js'),(4726,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css.core-4.9.js'),(4727,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css.js'),(4728,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/css-editor.js'),(4729,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/use-codemirror.js'),(4730,'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/lessc.inc.php'),(4731,'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/scss.inc.php'),(4732,'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors.php'),(4733,'wp-content/plugins/jetpack/modules/custom-css/custom-css-4.7.php'),(4734,'wp-content/plugins/jetpack/modules/custom-css/custom-css.php'),(4735,'wp-content/plugins/jetpack/modules/custom-css/migrate-to-core.php'),(4736,'wp-content/plugins/jetpack/modules/custom-css.php'),(4737,'wp-content/plugins/jetpack/modules/custom-post-types/comics/admin.css'),(4738,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.css'),(4739,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.min.css'),(4740,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.css'),(4741,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.js'),(4742,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.min.css'),(4743,'wp-content/plugins/jetpack/modules/custom-post-types/comics/rtl/comics-rtl.css'),(4744,'wp-content/plugins/jetpack/modules/custom-post-types/comics.php'),(4745,'wp-content/plugins/jetpack/modules/custom-post-types/css/edit-items.css'),(4746,'wp-content/plugins/jetpack/modules/custom-post-types/css/many-items.css'),(4747,'wp-content/plugins/jetpack/modules/custom-post-types/css/nova-font.css'),(4748,'wp-content/plugins/jetpack/modules/custom-post-types/css/nova.css'),(4749,'wp-content/plugins/jetpack/modules/custom-post-types/css/portfolio-shortcode.css'),(4750,'wp-content/plugins/jetpack/modules/custom-post-types/css/testimonial-shortcode.css'),(4751,'wp-content/plugins/jetpack/modules/custom-post-types/js/many-items.js'),(4752,'wp-content/plugins/jetpack/modules/custom-post-types/js/menu-checkboxes.js'),(4753,'wp-content/plugins/jetpack/modules/custom-post-types/js/nova-drag-drop.js'),(4754,'wp-content/plugins/jetpack/modules/custom-post-types/nova.php'),(4755,'wp-content/plugins/jetpack/modules/custom-post-types/portfolios.php'),(4756,'wp-content/plugins/jetpack/modules/custom-post-types/testimonial.php'),(4757,'wp-content/plugins/jetpack/modules/enhanced-distribution.php'),(4758,'wp-content/plugins/jetpack/modules/geo-location/class.jetpack-geo-location.php'),(4759,'wp-content/plugins/jetpack/modules/geo-location.php'),(4760,'wp-content/plugins/jetpack/modules/google-analytics/classes/class-jetpack-google-amp-analytics.php'),(4761,'wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-legacy.php'),(4762,'wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-options.php'),(4763,'wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-universal.php'),(4764,'wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-utils.php'),(4765,'wp-content/plugins/jetpack/modules/google-analytics/wp-google-analytics.php'),(4766,'wp-content/plugins/jetpack/modules/google-analytics.php'),(4767,'wp-content/plugins/jetpack/modules/gravatar/gravatar-hovercards-amp.css'),(4768,'wp-content/plugins/jetpack/modules/gravatar-hovercards.php'),(4769,'wp-content/plugins/jetpack/modules/infinite-scroll/infinity-customizer.js'),(4770,'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.css'),(4771,'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.js'),(4772,'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.php'),(4773,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.css'),(4774,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.php'),(4775,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen-rtl.css'),(4776,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.css'),(4777,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.php'),(4778,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.css'),(4779,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.php'),(4780,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen-rtl.css'),(4781,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.css'),(4782,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.php'),(4783,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen-rtl.css'),(4784,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.css'),(4785,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.php'),(4786,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.css'),(4787,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.php'),(4788,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.css'),(4789,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.php'),(4790,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.css'),(4791,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.php'),(4792,'wp-content/plugins/jetpack/modules/infinite-scroll.php'),(4793,'wp-content/plugins/jetpack/modules/json-api.php'),(4794,'wp-content/plugins/jetpack/modules/latex.php'),(4795,'wp-content/plugins/jetpack/modules/lazy-images/js/lazy-images.js'),(4796,'wp-content/plugins/jetpack/modules/lazy-images/lazy-images.php'),(4797,'wp-content/plugins/jetpack/modules/lazy-images.php'),(4798,'wp-content/plugins/jetpack/modules/likes/jetpack-likes-master-iframe.php'),(4799,'wp-content/plugins/jetpack/modules/likes/jetpack-likes-settings.php'),(4800,'wp-content/plugins/jetpack/modules/likes/post-count-jetpack.js'),(4801,'wp-content/plugins/jetpack/modules/likes/post-count.js'),(4802,'wp-content/plugins/jetpack/modules/likes/queuehandler.js'),(4803,'wp-content/plugins/jetpack/modules/likes/style.css'),(4804,'wp-content/plugins/jetpack/modules/likes.php'),(4805,'wp-content/plugins/jetpack/modules/markdown/easy-markdown.php'),(4806,'wp-content/plugins/jetpack/modules/markdown.php'),(4807,'wp-content/plugins/jetpack/modules/masterbar/admin-color-schemes/class-admin-color-schemes.php'),(4808,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/admin-menu-rtl.css'),(4809,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/admin-menu-rtl.min.css'),(4810,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/admin-menu.css'),(4811,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/admin-menu.js'),(4812,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/admin-menu.min.css'),(4813,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-admin-menu.php'),(4814,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-atomic-admin-menu.php'),(4815,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-base-admin-menu.php'),(4816,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-dashboard-switcher-tracking.php'),(4817,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-domain-only-admin-menu.php'),(4818,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-jetpack-admin-menu.php'),(4819,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-p2-admin-menu.php'),(4820,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/class-wpcom-admin-menu.php'),(4821,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/dashicon-set.php'),(4822,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/load.php'),(4823,'wp-content/plugins/jetpack/modules/masterbar/admin-menu/menu-mappings.php'),(4824,'wp-content/plugins/jetpack/modules/masterbar/inline-help/class-inline-help.php'),(4825,'wp-content/plugins/jetpack/modules/masterbar/inline-help/gridicon-help.svg'),(4826,'wp-content/plugins/jetpack/modules/masterbar/inline-help/inline-help-template.php'),(4827,'wp-content/plugins/jetpack/modules/masterbar/inline-help/inline-help.css'),(4828,'wp-content/plugins/jetpack/modules/masterbar/masterbar/class-masterbar.php'),(4829,'wp-content/plugins/jetpack/modules/masterbar/masterbar/overrides.css'),(4830,'wp-content/plugins/jetpack/modules/masterbar/masterbar/tracks-events.js'),(4831,'wp-content/plugins/jetpack/modules/masterbar/masterbar.php'),(4832,'wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/class-atomic-additional-css-manager.php'),(4833,'wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/class-css-customizer-nudge.php'),(4834,'wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/class-css-nudge-customize-control.php'),(4835,'wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/class-wpcom-additional-css-manager.php'),(4836,'wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/css/additional-css.css'),(4837,'wp-content/plugins/jetpack/modules/masterbar/nudges/additional-css/js/additional-css.js'),(4838,'wp-content/plugins/jetpack/modules/masterbar/nudges/bootstrap.php'),(4839,'wp-content/plugins/jetpack/modules/masterbar/overrides.css'),(4840,'wp-content/plugins/jetpack/modules/masterbar/profile-edit/bootstrap.php'),(4841,'wp-content/plugins/jetpack/modules/masterbar/profile-edit/class-wpcom-user-profile-fields-revert.php'),(4842,'wp-content/plugins/jetpack/modules/masterbar/profile-edit/profile-edit.php'),(4843,'wp-content/plugins/jetpack/modules/masterbar/rtl-admin-bar.php'),(4844,'wp-content/plugins/jetpack/modules/masterbar/tracks-events.js'),(4845,'wp-content/plugins/jetpack/modules/masterbar/wp-posts-list/bootstrap.php'),(4846,'wp-content/plugins/jetpack/modules/masterbar/wp-posts-list/class-posts-list-page-notification.php'),(4847,'wp-content/plugins/jetpack/modules/masterbar/wp-posts-list/wp-posts-list.css'),(4848,'wp-content/plugins/jetpack/modules/masterbar.php'),(4849,'wp-content/plugins/jetpack/modules/memberships/class-jetpack-memberships.php'),(4850,'wp-content/plugins/jetpack/modules/minileven/minileven.php'),(4851,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/comments.php'),(4852,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content-gallery.php'),(4853,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content.php'),(4854,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/footer.php'),(4855,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/functions.php'),(4856,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/header.php'),(4857,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/image.php'),(4858,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/custom-header.php'),(4859,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.svg'),(4860,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/template-tags.php'),(4861,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/tweaks.php'),(4862,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/index.php'),(4863,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/js/small-menu.js'),(4864,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/page.php'),(4865,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/searchform.php'),(4866,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/sidebar.php'),(4867,'wp-content/plugins/jetpack/modules/minileven.php'),(4868,'wp-content/plugins/jetpack/modules/mobile-push.php'),(4869,'wp-content/plugins/jetpack/modules/module-extras.php'),(4870,'wp-content/plugins/jetpack/modules/module-headings.php'),(4871,'wp-content/plugins/jetpack/modules/module-info.php'),(4872,'wp-content/plugins/jetpack/modules/monitor.php'),(4873,'wp-content/plugins/jetpack/modules/notes.php'),(4874,'wp-content/plugins/jetpack/modules/photon/photon.js'),(4875,'wp-content/plugins/jetpack/modules/photon-cdn/jetpack-manifest.php'),(4876,'wp-content/plugins/jetpack/modules/photon-cdn.php'),(4877,'wp-content/plugins/jetpack/modules/photon.php'),(4878,'wp-content/plugins/jetpack/modules/plugin-search/plugin-search.css'),(4879,'wp-content/plugins/jetpack/modules/plugin-search/plugin-search.js'),(4880,'wp-content/plugins/jetpack/modules/plugin-search/psh-128.png'),(4881,'wp-content/plugins/jetpack/modules/plugin-search/psh-256.png'),(4882,'wp-content/plugins/jetpack/modules/plugin-search/psh.svg'),(4883,'wp-content/plugins/jetpack/modules/plugin-search.php'),(4884,'wp-content/plugins/jetpack/modules/post-by-email/class-jetpack-post-by-email.php'),(4885,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.css'),(4886,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.min.css'),(4887,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.css'),(4888,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.js'),(4889,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.min.css'),(4890,'wp-content/plugins/jetpack/modules/post-by-email.php'),(4891,'wp-content/plugins/jetpack/modules/protect/blocked-login-page.php'),(4892,'wp-content/plugins/jetpack/modules/protect/math-fallback.php'),(4893,'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.css'),(4894,'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.min.css'),(4895,'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.css'),(4896,'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.min.css'),(4897,'wp-content/plugins/jetpack/modules/protect/protect.png'),(4898,'wp-content/plugins/jetpack/modules/protect/shared-functions.php'),(4899,'wp-content/plugins/jetpack/modules/protect/transient-cleanup.php'),(4900,'wp-content/plugins/jetpack/modules/protect.php'),(4901,'wp-content/plugins/jetpack/modules/publicize/enhanced-open-graph.php'),(4902,'wp-content/plugins/jetpack/modules/publicize/publicize-jetpack.php'),(4903,'wp-content/plugins/jetpack/modules/publicize/publicize.php'),(4904,'wp-content/plugins/jetpack/modules/publicize/ui.php'),(4905,'wp-content/plugins/jetpack/modules/publicize.php'),(4906,'wp-content/plugins/jetpack/modules/pwa/class.jetpack-pwa-helpers.php'),(4907,'wp-content/plugins/jetpack/modules/pwa/class.jetpack-pwa-manifest.php'),(4908,'wp-content/plugins/jetpack/modules/pwa.php'),(4909,'wp-content/plugins/jetpack/modules/related-posts/class.related-posts-customize.php'),(4910,'wp-content/plugins/jetpack/modules/related-posts/jetpack-related-posts.php'),(4911,'wp-content/plugins/jetpack/modules/related-posts/related-posts-customizer.js'),(4912,'wp-content/plugins/jetpack/modules/related-posts/related-posts-rtl.css'),(4913,'wp-content/plugins/jetpack/modules/related-posts/related-posts.css'),(4914,'wp-content/plugins/jetpack/modules/related-posts/related-posts.js'),(4915,'wp-content/plugins/jetpack/modules/related-posts/rtl/related-posts-rtl.css'),(4916,'wp-content/plugins/jetpack/modules/related-posts.php'),(4917,'wp-content/plugins/jetpack/modules/scan/admin-bar-notice.js'),(4918,'wp-content/plugins/jetpack/modules/scan/class-admin-bar-notice.php'),(4919,'wp-content/plugins/jetpack/modules/scan/class-admin-sidebar-link.php'),(4920,'wp-content/plugins/jetpack/modules/scan/scan.php'),(4921,'wp-content/plugins/jetpack/modules/search/class-jetpack-instant-search.php'),(4922,'wp-content/plugins/jetpack/modules/search/class-jetpack-search-customberg.php'),(4923,'wp-content/plugins/jetpack/modules/search/class-jetpack-search-customize.php'),(4924,'wp-content/plugins/jetpack/modules/search/class-jetpack-search-options.php'),(4925,'wp-content/plugins/jetpack/modules/search/class-jetpack-search-settings.php'),(4926,'wp-content/plugins/jetpack/modules/search/class.jetpack-search-helpers.php'),(4927,'wp-content/plugins/jetpack/modules/search/class.jetpack-search-options.php'),(4928,'wp-content/plugins/jetpack/modules/search/class.jetpack-search-template-tags.php'),(4929,'wp-content/plugins/jetpack/modules/search/class.jetpack-search.php'),(4930,'wp-content/plugins/jetpack/modules/search/customberg/babel.config.js'),(4931,'wp-content/plugins/jetpack/modules/search/customberg/hooks/use-entity-record-state.js'),(4932,'wp-content/plugins/jetpack/modules/search/customberg/hooks/use-loading-state.js'),(4933,'wp-content/plugins/jetpack/modules/search/customberg/hooks/use-search-options.js'),(4934,'wp-content/plugins/jetpack/modules/search/customberg/lib/analytics.js'),(4935,'wp-content/plugins/jetpack/modules/search/customberg/lib/constants.js'),(4936,'wp-content/plugins/jetpack/modules/search/customize-controls/class-excluded-post-types-control.css'),(4937,'wp-content/plugins/jetpack/modules/search/customize-controls/class-excluded-post-types-control.js'),(4938,'wp-content/plugins/jetpack/modules/search/customize-controls/class-excluded-post-types-control.php'),(4939,'wp-content/plugins/jetpack/modules/search/customize-controls/class-label-control.css'),(4940,'wp-content/plugins/jetpack/modules/search/customize-controls/class-label-control.php'),(4941,'wp-content/plugins/jetpack/modules/search/customize-controls/customize-controls.js'),(4942,'wp-content/plugins/jetpack/modules/search.php'),(4943,'wp-content/plugins/jetpack/modules/seo-tools/class-jetpack-seo-posts.php'),(4944,'wp-content/plugins/jetpack/modules/seo-tools/class-jetpack-seo-titles.php'),(4945,'wp-content/plugins/jetpack/modules/seo-tools/class-jetpack-seo-utils.php'),(4946,'wp-content/plugins/jetpack/modules/seo-tools/class-jetpack-seo.php'),(4947,'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-posts.php'),(4948,'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-titles.php'),(4949,'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-utils.php'),(4950,'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo.php'),(4951,'wp-content/plugins/jetpack/modules/seo-tools.php'),(4952,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.css'),(4953,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.min.css'),(4954,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.css'),(4955,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.js'),(4956,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.min.css'),(4957,'wp-content/plugins/jetpack/modules/sharedaddy/amp-sharing.css'),(4958,'wp-content/plugins/jetpack/modules/sharedaddy/images/after-the-deadline@2x.png'),(4959,'wp-content/plugins/jetpack/modules/sharedaddy/images/comments@2x.png'),(4960,'wp-content/plugins/jetpack/modules/sharedaddy/images/contact-form@2x.png'),(4961,'wp-content/plugins/jetpack/modules/sharedaddy/images/custom.png'),(4962,'wp-content/plugins/jetpack/modules/sharedaddy/images/custom@2x.png'),(4963,'wp-content/plugins/jetpack/modules/sharedaddy/images/designfloat.png'),(4964,'wp-content/plugins/jetpack/modules/sharedaddy/images/digg.png'),(4965,'wp-content/plugins/jetpack/modules/sharedaddy/images/digg@2x.png'),(4966,'wp-content/plugins/jetpack/modules/sharedaddy/images/divider.png'),(4967,'wp-content/plugins/jetpack/modules/sharedaddy/images/divider@2x.png'),(4968,'wp-content/plugins/jetpack/modules/sharedaddy/images/draggy.png'),(4969,'wp-content/plugins/jetpack/modules/sharedaddy/images/draggy@2x.png'),(4970,'wp-content/plugins/jetpack/modules/sharedaddy/images/email.png'),(4971,'wp-content/plugins/jetpack/modules/sharedaddy/images/email@2x.png'),(4972,'wp-content/plugins/jetpack/modules/sharedaddy/images/ember.png'),(4973,'wp-content/plugins/jetpack/modules/sharedaddy/images/enhanced-distribution@2x.png'),(4974,'wp-content/plugins/jetpack/modules/sharedaddy/images/facebook.png'),(4975,'wp-content/plugins/jetpack/modules/sharedaddy/images/facebook@2x.png'),(4976,'wp-content/plugins/jetpack/modules/sharedaddy/images/feed.png'),(4977,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook-2x.png'),(4978,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook.png'),(4979,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter-2x.png'),(4980,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter.png'),(4981,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress-2x.png'),(4982,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress.png'),(4983,'wp-content/plugins/jetpack/modules/sharedaddy/images/kindle.png'),(4984,'wp-content/plugins/jetpack/modules/sharedaddy/images/kindle@2x.png'),(4985,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal.png'),(4986,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal@2x.png'),(4987,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount.png'),(4988,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount@2x.png'),(4989,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart.png'),(4990,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart@2x.png'),(4991,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical.png'),(4992,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical@2x.png'),(4993,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin.png'),(4994,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin@2x.png'),(4995,'wp-content/plugins/jetpack/modules/sharedaddy/images/loading.gif'),(4996,'wp-content/plugins/jetpack/modules/sharedaddy/images/more.png'),(4997,'wp-content/plugins/jetpack/modules/sharedaddy/images/more@2x.png'),(4998,'wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest.png'),(4999,'wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest@2x.png'),(5000,'wp-content/plugins/jetpack/modules/sharedaddy/images/pocket.png'),(5001,'wp-content/plugins/jetpack/modules/sharedaddy/images/pocket@2x.png'),(5002,'wp-content/plugins/jetpack/modules/sharedaddy/images/print.png'),(5003,'wp-content/plugins/jetpack/modules/sharedaddy/images/print@2x.png'),(5004,'wp-content/plugins/jetpack/modules/sharedaddy/images/reddit.png'),(5005,'wp-content/plugins/jetpack/modules/sharedaddy/images/reddit@2x.png'),(5006,'wp-content/plugins/jetpack/modules/sharedaddy/images/rss.png'),(5007,'wp-content/plugins/jetpack/modules/sharedaddy/images/rss@2x.png'),(5008,'wp-content/plugins/jetpack/modules/sharedaddy/images/share-bg.png'),(5009,'wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden.png'),(5010,'wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden@2x.png'),(5011,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg.png'),(5012,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg@2x.png'),(5013,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook.png'),(5014,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook@2x.png'),(5015,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like.png'),(5016,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like@2x.png'),(5017,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest.png'),(5018,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest@2x.png'),(5019,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket.png'),(5020,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket@2x.png'),(5021,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit.png'),(5022,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit@2x.png'),(5023,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype.png'),(5024,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype@2x.png'),(5025,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon.png'),(5026,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon@2x.png'),(5027,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr.png'),(5028,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr@2x.png'),(5029,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter.png'),(5030,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter@2x.png'),(5031,'wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr.png'),(5032,'wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr@2x.png'),(5033,'wp-content/plugins/jetpack/modules/sharedaddy/images/twitter.png'),(5034,'wp-content/plugins/jetpack/modules/sharedaddy/images/twitter@2x.png'),(5035,'wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress.png'),(5036,'wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress@2x.png'),(5037,'wp-content/plugins/jetpack/modules/sharedaddy/recaptcha.php'),(5038,'wp-content/plugins/jetpack/modules/sharedaddy/sharedaddy.php'),(5039,'wp-content/plugins/jetpack/modules/sharedaddy/sharing-service.php'),(5040,'wp-content/plugins/jetpack/modules/sharedaddy/sharing-sources.php'),(5041,'wp-content/plugins/jetpack/modules/sharedaddy/sharing.css'),(5042,'wp-content/plugins/jetpack/modules/sharedaddy/sharing.js'),(5043,'wp-content/plugins/jetpack/modules/sharedaddy/sharing.php'),(5044,'wp-content/plugins/jetpack/modules/sharedaddy.php'),(5045,'wp-content/plugins/jetpack/modules/shortcodes/archiveorg-book.php'),(5046,'wp-content/plugins/jetpack/modules/shortcodes/archiveorg.php'),(5047,'wp-content/plugins/jetpack/modules/shortcodes/archives.php'),(5048,'wp-content/plugins/jetpack/modules/shortcodes/bandcamp.php'),(5049,'wp-content/plugins/jetpack/modules/shortcodes/brightcove.php'),(5050,'wp-content/plugins/jetpack/modules/shortcodes/cartodb.php'),(5051,'wp-content/plugins/jetpack/modules/shortcodes/class.filter-embedded-html-objects.php'),(5052,'wp-content/plugins/jetpack/modules/shortcodes/codepen.php'),(5053,'wp-content/plugins/jetpack/modules/shortcodes/crowdsignal.php'),(5054,'wp-content/plugins/jetpack/modules/shortcodes/css/gravatar-amp.css'),(5055,'wp-content/plugins/jetpack/modules/shortcodes/css/quiz.css'),(5056,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print-rtl.css'),(5057,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print-rtl.min.css'),(5058,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print.css'),(5059,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print.min.css'),(5060,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-rtl.css'),(5061,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-rtl.min.css'),(5062,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes.css'),(5063,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes.min.css'),(5064,'wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode-rtl.css'),(5065,'wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode-rtl.min.css'),(5066,'wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode.css'),(5067,'wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode.min.css'),(5068,'wp-content/plugins/jetpack/modules/shortcodes/css/style.css'),(5069,'wp-content/plugins/jetpack/modules/shortcodes/dailymotion.php'),(5070,'wp-content/plugins/jetpack/modules/shortcodes/descript.php'),(5071,'wp-content/plugins/jetpack/modules/shortcodes/facebook.php'),(5072,'wp-content/plugins/jetpack/modules/shortcodes/flatio.php'),(5073,'wp-content/plugins/jetpack/modules/shortcodes/flickr.php'),(5074,'wp-content/plugins/jetpack/modules/shortcodes/getty.php'),(5075,'wp-content/plugins/jetpack/modules/shortcodes/gist.php'),(5076,'wp-content/plugins/jetpack/modules/shortcodes/googleapps.php'),(5077,'wp-content/plugins/jetpack/modules/shortcodes/googlemaps.php'),(5078,'wp-content/plugins/jetpack/modules/shortcodes/googleplus.php'),(5079,'wp-content/plugins/jetpack/modules/shortcodes/gravatar.php'),(5080,'wp-content/plugins/jetpack/modules/shortcodes/houzz.php'),(5081,'wp-content/plugins/jetpack/modules/shortcodes/hulu.php'),(5082,'wp-content/plugins/jetpack/modules/shortcodes/images/collapse.png'),(5083,'wp-content/plugins/jetpack/modules/shortcodes/images/expand.png'),(5084,'wp-content/plugins/jetpack/modules/shortcodes/images/slide-nav.png'),(5085,'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls-2x.png'),(5086,'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls.png'),(5087,'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-loader.gif'),(5088,'wp-content/plugins/jetpack/modules/shortcodes/inline-pdfs.php'),(5089,'wp-content/plugins/jetpack/modules/shortcodes/instagram.php'),(5090,'wp-content/plugins/jetpack/modules/shortcodes/js/brightcove.js'),(5091,'wp-content/plugins/jetpack/modules/shortcodes/js/gist.js'),(5092,'wp-content/plugins/jetpack/modules/shortcodes/js/instagram.js'),(5093,'wp-content/plugins/jetpack/modules/shortcodes/js/jmpress.js'),(5094,'wp-content/plugins/jetpack/modules/shortcodes/js/jquery.cycle.min.js'),(5095,'wp-content/plugins/jetpack/modules/shortcodes/js/main.js'),(5096,'wp-content/plugins/jetpack/modules/shortcodes/js/quiz.js'),(5097,'wp-content/plugins/jetpack/modules/shortcodes/js/recipes-printthis.js'),(5098,'wp-content/plugins/jetpack/modules/shortcodes/js/recipes.js'),(5099,'wp-content/plugins/jetpack/modules/shortcodes/js/slideshow-shortcode.js'),(5100,'wp-content/plugins/jetpack/modules/shortcodes/kickstarter.php'),(5101,'wp-content/plugins/jetpack/modules/shortcodes/mailchimp.php'),(5102,'wp-content/plugins/jetpack/modules/shortcodes/medium.php'),(5103,'wp-content/plugins/jetpack/modules/shortcodes/mixcloud.php'),(5104,'wp-content/plugins/jetpack/modules/shortcodes/others.php'),(5105,'wp-content/plugins/jetpack/modules/shortcodes/pinterest.php'),(5106,'wp-content/plugins/jetpack/modules/shortcodes/presentations.php'),(5107,'wp-content/plugins/jetpack/modules/shortcodes/quiz.php'),(5108,'wp-content/plugins/jetpack/modules/shortcodes/recipe.php'),(5109,'wp-content/plugins/jetpack/modules/shortcodes/scribd.php'),(5110,'wp-content/plugins/jetpack/modules/shortcodes/sitemap.php'),(5111,'wp-content/plugins/jetpack/modules/shortcodes/slideshare.php'),(5112,'wp-content/plugins/jetpack/modules/shortcodes/slideshow.php'),(5113,'wp-content/plugins/jetpack/modules/shortcodes/smartframe.php'),(5114,'wp-content/plugins/jetpack/modules/shortcodes/soundcloud.php'),(5115,'wp-content/plugins/jetpack/modules/shortcodes/spotify.php'),(5116,'wp-content/plugins/jetpack/modules/shortcodes/ted.php'),(5117,'wp-content/plugins/jetpack/modules/shortcodes/tweet.php'),(5118,'wp-content/plugins/jetpack/modules/shortcodes/twitchtv.php'),(5119,'wp-content/plugins/jetpack/modules/shortcodes/twitter-timeline.php'),(5120,'wp-content/plugins/jetpack/modules/shortcodes/unavailable.php'),(5121,'wp-content/plugins/jetpack/modules/shortcodes/untappd-menu.php'),(5122,'wp-content/plugins/jetpack/modules/shortcodes/upcoming-events.php'),(5123,'wp-content/plugins/jetpack/modules/shortcodes/ustream.php'),(5124,'wp-content/plugins/jetpack/modules/shortcodes/videopress.php'),(5125,'wp-content/plugins/jetpack/modules/shortcodes/vimeo.php'),(5126,'wp-content/plugins/jetpack/modules/shortcodes/vine.php'),(5127,'wp-content/plugins/jetpack/modules/shortcodes/vr.php'),(5128,'wp-content/plugins/jetpack/modules/shortcodes/wordads.php'),(5129,'wp-content/plugins/jetpack/modules/shortcodes/wufoo.php'),(5130,'wp-content/plugins/jetpack/modules/shortcodes/youtube.php'),(5131,'wp-content/plugins/jetpack/modules/shortcodes.php'),(5132,'wp-content/plugins/jetpack/modules/shortlinks.php'),(5133,'wp-content/plugins/jetpack/modules/simple-payments/paypal-express-checkout.js'),(5134,'wp-content/plugins/jetpack/modules/simple-payments/simple-payments.css'),(5135,'wp-content/plugins/jetpack/modules/simple-payments/simple-payments.php'),(5136,'wp-content/plugins/jetpack/modules/site-icon/site-icon-functions.php'),(5137,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-fallback.php'),(5138,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-image-fallback.php'),(5139,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-image.php'),(5140,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-master-fallback.php'),(5141,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-master.php'),(5142,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-news-fallback.php'),(5143,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-news.php'),(5144,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-page-fallback.php'),(5145,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-page.php'),(5146,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-video-fallback.php'),(5147,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-video.php'),(5148,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer.php'),(5149,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-builder.php'),(5150,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-constants.php'),(5151,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-finder.php'),(5152,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-librarian.php'),(5153,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-logger.php'),(5154,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-state.php'),(5155,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-stylist.php'),(5156,'wp-content/plugins/jetpack/modules/sitemaps/sitemaps.php'),(5157,'wp-content/plugins/jetpack/modules/sitemaps.php'),(5158,'wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-helpers.php'),(5159,'wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-notices.php'),(5160,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.css'),(5161,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.min.css'),(5162,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.css'),(5163,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.js'),(5164,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.min.css'),(5165,'wp-content/plugins/jetpack/modules/sso.php'),(5166,'wp-content/plugins/jetpack/modules/stats/class-jetpack-stats-upgrade-nudges.php'),(5167,'wp-content/plugins/jetpack/modules/stats.php'),(5168,'wp-content/plugins/jetpack/modules/subscriptions/readme.md'),(5169,'wp-content/plugins/jetpack/modules/subscriptions/subscriptions.css'),(5170,'wp-content/plugins/jetpack/modules/subscriptions/subscriptions.js'),(5171,'wp-content/plugins/jetpack/modules/subscriptions/views.php'),(5172,'wp-content/plugins/jetpack/modules/subscriptions.php'),(5173,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen-rtl.css'),(5174,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.css'),(5175,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.php'),(5176,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen-rtl.css'),(5177,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.css'),(5178,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.php'),(5179,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentynineteen-rtl.css'),(5180,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.css'),(5181,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.php'),(5182,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyseventeen.php'),(5183,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen-rtl.css'),(5184,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.css'),(5185,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.php'),(5186,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentytwenty-rtl.css'),(5187,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentytwenty.css'),(5188,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentytwenty.php'),(5189,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentytwentyone-rtl.css'),(5190,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentytwentyone.css'),(5191,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentytwentyone.php'),(5192,'wp-content/plugins/jetpack/modules/theme-tools/content-options/author-bio.php'),(5193,'wp-content/plugins/jetpack/modules/theme-tools/content-options/blog-display.php'),(5194,'wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.js'),(5195,'wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.php'),(5196,'wp-content/plugins/jetpack/modules/theme-tools/content-options/featured-images-fallback.php'),(5197,'wp-content/plugins/jetpack/modules/theme-tools/content-options/featured-images.php'),(5198,'wp-content/plugins/jetpack/modules/theme-tools/content-options/post-details.php'),(5199,'wp-content/plugins/jetpack/modules/theme-tools/content-options.php'),(5200,'wp-content/plugins/jetpack/modules/theme-tools/devicepx.php'),(5201,'wp-content/plugins/jetpack/modules/theme-tools/featured-content.php'),(5202,'wp-content/plugins/jetpack/modules/theme-tools/infinite-scroll.php'),(5203,'wp-content/plugins/jetpack/modules/theme-tools/js/suggest.js'),(5204,'wp-content/plugins/jetpack/modules/theme-tools/random-redirect.php'),(5205,'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.css'),(5206,'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.js'),(5207,'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.min.js'),(5208,'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos.php'),(5209,'wp-content/plugins/jetpack/modules/theme-tools/site-breadcrumbs.php'),(5210,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo-control.php'),(5211,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo.php'),(5212,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/compat.php'),(5213,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/functions.php'),(5214,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.js'),(5215,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.min.js'),(5216,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.js'),(5217,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.min.js'),(5218,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.js'),(5219,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.min.js'),(5220,'wp-content/plugins/jetpack/modules/theme-tools/site-logo.php'),(5221,'wp-content/plugins/jetpack/modules/theme-tools/social-links.php'),(5222,'wp-content/plugins/jetpack/modules/theme-tools/social-menu/icon-functions.php'),(5223,'wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.css'),(5224,'wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.svg'),(5225,'wp-content/plugins/jetpack/modules/theme-tools/social-menu.php'),(5226,'wp-content/plugins/jetpack/modules/theme-tools.php'),(5227,'wp-content/plugins/jetpack/modules/tiled-gallery/math/class-constrained-array-rounding.php'),(5228,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/rtl/tiled-gallery-rtl.css'),(5229,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/carousel-container.php'),(5230,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/circle-layout.php'),(5231,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/carousel-image-args.php'),(5232,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/item.php'),(5233,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/rectangular-layout.php'),(5234,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/square-layout.php'),(5235,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-circle.php'),(5236,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-item.php'),(5237,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-layout.php'),(5238,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-rectangular.php'),(5239,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-rtl.css'),(5240,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-shape.php'),(5241,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-square.php'),(5242,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.css'),(5243,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.js'),(5244,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery.php'),(5245,'wp-content/plugins/jetpack/modules/tiled-gallery.php'),(5246,'wp-content/plugins/jetpack/modules/vaultpress.php'),(5247,'wp-content/plugins/jetpack/modules/verification-tools/blog-verification-tools.php'),(5248,'wp-content/plugins/jetpack/modules/verification-tools/verification-tools-utils.php'),(5249,'wp-content/plugins/jetpack/modules/verification-tools.php'),(5250,'wp-content/plugins/jetpack/modules/videopress/class-videopress-attachment-metadata.php'),(5251,'wp-content/plugins/jetpack/modules/videopress/class.jetpack-videopress.php'),(5252,'wp-content/plugins/jetpack/modules/videopress/class.videopress-ajax.php'),(5253,'wp-content/plugins/jetpack/modules/videopress/class.videopress-cli.php'),(5254,'wp-content/plugins/jetpack/modules/videopress/class.videopress-edit-attachment.php'),(5255,'wp-content/plugins/jetpack/modules/videopress/class.videopress-gutenberg.php'),(5256,'wp-content/plugins/jetpack/modules/videopress/class.videopress-options.php'),(5257,'wp-content/plugins/jetpack/modules/videopress/class.videopress-player.php'),(5258,'wp-content/plugins/jetpack/modules/videopress/class.videopress-scheduler.php'),(5259,'wp-content/plugins/jetpack/modules/videopress/class.videopress-video.php'),(5260,'wp-content/plugins/jetpack/modules/videopress/class.videopress-xmlrpc.php'),(5261,'wp-content/plugins/jetpack/modules/videopress/css/editor-rtl.css'),(5262,'wp-content/plugins/jetpack/modules/videopress/css/editor-rtl.min.css'),(5263,'wp-content/plugins/jetpack/modules/videopress/css/editor.css'),(5264,'wp-content/plugins/jetpack/modules/videopress/css/editor.min.css'),(5265,'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style-rtl.css'),(5266,'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style-rtl.min.css'),(5267,'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style.css'),(5268,'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style.min.css'),(5269,'wp-content/plugins/jetpack/modules/videopress/editor-media-view.php'),(5270,'wp-content/plugins/jetpack/modules/videopress/js/editor-view.js'),(5271,'wp-content/plugins/jetpack/modules/videopress/js/gutenberg-video-upload.js'),(5272,'wp-content/plugins/jetpack/modules/videopress/js/media-video-widget-extensions.js'),(5273,'wp-content/plugins/jetpack/modules/videopress/js/videopress-plupload.js'),(5274,'wp-content/plugins/jetpack/modules/videopress/js/videopress-uploader.js'),(5275,'wp-content/plugins/jetpack/modules/videopress/shortcode.php'),(5276,'wp-content/plugins/jetpack/modules/videopress/utility-functions.php'),(5277,'wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.css'),(5278,'wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.min.css'),(5279,'wp-content/plugins/jetpack/modules/videopress/videopress-admin.css'),(5280,'wp-content/plugins/jetpack/modules/videopress/videopress-admin.min.css'),(5281,'wp-content/plugins/jetpack/modules/videopress.php'),(5282,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/rtl/widget-conditions-rtl.css'),(5283,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.css'),(5284,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.min.css'),(5285,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.css'),(5286,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.js'),(5287,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.min.css'),(5288,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions.php'),(5289,'wp-content/plugins/jetpack/modules/widget-visibility.php'),(5290,'wp-content/plugins/jetpack/modules/widgets/authors/style.css'),(5291,'wp-content/plugins/jetpack/modules/widgets/authors.php'),(5292,'wp-content/plugins/jetpack/modules/widgets/blog-stats.php'),(5293,'wp-content/plugins/jetpack/modules/widgets/class-jetpack-eu-cookie-law-widget.php'),(5294,'wp-content/plugins/jetpack/modules/widgets/class-jetpack-instagram-widget.php'),(5295,'wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-admin.js'),(5296,'wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-map.css'),(5297,'wp-content/plugins/jetpack/modules/widgets/contact-info.php'),(5298,'wp-content/plugins/jetpack/modules/widgets/customizer-controls.css'),(5299,'wp-content/plugins/jetpack/modules/widgets/customizer-utils.js'),(5300,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law-admin.js'),(5301,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law.js'),(5302,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/form.php'),(5303,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/style.css'),(5304,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/widget-amp.php'),(5305,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/widget.php'),(5306,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law.php'),(5307,'wp-content/plugins/jetpack/modules/widgets/facebook-likebox/style.css'),(5308,'wp-content/plugins/jetpack/modules/widgets/facebook-likebox.php'),(5309,'wp-content/plugins/jetpack/modules/widgets/flickr/form.php'),(5310,'wp-content/plugins/jetpack/modules/widgets/flickr/style.css'),(5311,'wp-content/plugins/jetpack/modules/widgets/flickr/widget.php'),(5312,'wp-content/plugins/jetpack/modules/widgets/flickr.php'),(5313,'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.css'),(5314,'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.min.css'),(5315,'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.css'),(5316,'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.min.css'),(5317,'wp-content/plugins/jetpack/modules/widgets/gallery/css/rtl/admin-rtl.css'),(5318,'wp-content/plugins/jetpack/modules/widgets/gallery/js/admin.js'),(5319,'wp-content/plugins/jetpack/modules/widgets/gallery/js/gallery.js'),(5320,'wp-content/plugins/jetpack/modules/widgets/gallery/templates/form.php'),(5321,'wp-content/plugins/jetpack/modules/widgets/gallery.php'),(5322,'wp-content/plugins/jetpack/modules/widgets/goodreads/css/goodreads.css'),(5323,'wp-content/plugins/jetpack/modules/widgets/goodreads/css/rtl/goodreads-rtl.css'),(5324,'wp-content/plugins/jetpack/modules/widgets/goodreads.php'),(5325,'wp-content/plugins/jetpack/modules/widgets/google-translate/google-translate.js'),(5326,'wp-content/plugins/jetpack/modules/widgets/google-translate.php'),(5327,'wp-content/plugins/jetpack/modules/widgets/gravatar-profile.css'),(5328,'wp-content/plugins/jetpack/modules/widgets/gravatar-profile.php'),(5329,'wp-content/plugins/jetpack/modules/widgets/image-widget/style.css'),(5330,'wp-content/plugins/jetpack/modules/widgets/image-widget.php'),(5331,'wp-content/plugins/jetpack/modules/widgets/instagram/instagram.css'),(5332,'wp-content/plugins/jetpack/modules/widgets/internet-defense-league.php'),(5333,'wp-content/plugins/jetpack/modules/widgets/mailchimp.php'),(5334,'wp-content/plugins/jetpack/modules/widgets/migrate-to-core/gallery-widget.php'),(5335,'wp-content/plugins/jetpack/modules/widgets/migrate-to-core/image-widget.php'),(5336,'wp-content/plugins/jetpack/modules/widgets/milestone/admin.js'),(5337,'wp-content/plugins/jetpack/modules/widgets/milestone/class-milestone-widget.php'),(5338,'wp-content/plugins/jetpack/modules/widgets/milestone/milestone-widget.css'),(5339,'wp-content/plugins/jetpack/modules/widgets/milestone/milestone.js'),(5340,'wp-content/plugins/jetpack/modules/widgets/milestone/milestone.php'),(5341,'wp-content/plugins/jetpack/modules/widgets/milestone/style-admin.css'),(5342,'wp-content/plugins/jetpack/modules/widgets/milestone.php'),(5343,'wp-content/plugins/jetpack/modules/widgets/my-community/style.css'),(5344,'wp-content/plugins/jetpack/modules/widgets/my-community.php'),(5345,'wp-content/plugins/jetpack/modules/widgets/rsslinks-widget.php'),(5346,'wp-content/plugins/jetpack/modules/widgets/search/js/search-widget-admin.js'),(5347,'wp-content/plugins/jetpack/modules/widgets/search/js/search-widget.js'),(5348,'wp-content/plugins/jetpack/modules/widgets/search.php'),(5349,'wp-content/plugins/jetpack/modules/widgets/simple-payments/admin-warning.php'),(5350,'wp-content/plugins/jetpack/modules/widgets/simple-payments/customizer.css'),(5351,'wp-content/plugins/jetpack/modules/widgets/simple-payments/customizer.js'),(5352,'wp-content/plugins/jetpack/modules/widgets/simple-payments/form.php'),(5353,'wp-content/plugins/jetpack/modules/widgets/simple-payments/style.css'),(5354,'wp-content/plugins/jetpack/modules/widgets/simple-payments/widget.php'),(5355,'wp-content/plugins/jetpack/modules/widgets/simple-payments.php'),(5356,'wp-content/plugins/jetpack/modules/widgets/social-icons/social-icons-admin.css'),(5357,'wp-content/plugins/jetpack/modules/widgets/social-icons/social-icons-admin.js'),(5358,'wp-content/plugins/jetpack/modules/widgets/social-icons/social-icons.css'),(5359,'wp-content/plugins/jetpack/modules/widgets/social-icons.php'),(5360,'wp-content/plugins/jetpack/modules/widgets/social-media-icons/style.css'),(5361,'wp-content/plugins/jetpack/modules/widgets/social-media-icons.php'),(5362,'wp-content/plugins/jetpack/modules/widgets/top-posts/style.css'),(5363,'wp-content/plugins/jetpack/modules/widgets/top-posts.php'),(5364,'wp-content/plugins/jetpack/modules/widgets/twitter-timeline-admin.js'),(5365,'wp-content/plugins/jetpack/modules/widgets/twitter-timeline.php'),(5366,'wp-content/plugins/jetpack/modules/widgets/upcoming-events.php'),(5367,'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget/class.jetpack-display-posts-widget-base.php'),(5368,'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget/class.jetpack-display-posts-widget.php'),(5369,'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget/style.css'),(5370,'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget.php'),(5371,'wp-content/plugins/jetpack/modules/widgets.php'),(5372,'wp-content/plugins/jetpack/modules/woocommerce-analytics/class-jetpack-woocommerce-analytics.php'),(5373,'wp-content/plugins/jetpack/modules/woocommerce-analytics/classes/class-jetpack-woocommerce-analytics-universal.php'),(5374,'wp-content/plugins/jetpack/modules/woocommerce-analytics/classes/wp-woocommerce-analytics-universal.php'),(5375,'wp-content/plugins/jetpack/modules/woocommerce-analytics/wp-woocommerce-analytics.php'),(5376,'wp-content/plugins/jetpack/modules/woocommerce-analytics.php'),(5377,'wp-content/plugins/jetpack/modules/wordads/class-wordads.php'),(5378,'wp-content/plugins/jetpack/modules/wordads/css/style.css'),(5379,'wp-content/plugins/jetpack/modules/wordads/css/wordads-ccpa.min.css'),(5380,'wp-content/plugins/jetpack/modules/wordads/js/wordads-ccpa.js'),(5381,'wp-content/plugins/jetpack/modules/wordads/php/admin.php'),(5382,'wp-content/plugins/jetpack/modules/wordads/php/api.php'),(5383,'wp-content/plugins/jetpack/modules/wordads/php/class-wordads-admin.php'),(5384,'wp-content/plugins/jetpack/modules/wordads/php/class-wordads-api.php'),(5385,'wp-content/plugins/jetpack/modules/wordads/php/class-wordads-california-privacy.php'),(5386,'wp-content/plugins/jetpack/modules/wordads/php/class-wordads-ccpa-do-not-sell-link-widget.php'),(5387,'wp-content/plugins/jetpack/modules/wordads/php/class-wordads-cron.php'),(5388,'wp-content/plugins/jetpack/modules/wordads/php/class-wordads-params.php'),(5389,'wp-content/plugins/jetpack/modules/wordads/php/class-wordads-sidebar-widget.php'),(5390,'wp-content/plugins/jetpack/modules/wordads/php/cron.php'),(5391,'wp-content/plugins/jetpack/modules/wordads/php/networks/amazon.php'),(5392,'wp-content/plugins/jetpack/modules/wordads/php/params.php'),(5393,'wp-content/plugins/jetpack/modules/wordads/php/widgets.php'),(5394,'wp-content/plugins/jetpack/modules/wordads/wordads.php'),(5395,'wp-content/plugins/jetpack/modules/wordads.php'),(5396,'wp-content/plugins/jetpack/modules/wpcom-block-editor/class-jetpack-wpcom-block-editor.php'),(5397,'wp-content/plugins/jetpack/modules/wpcom-block-editor/functions.editor-type.php'),(5398,'wp-content/plugins/jetpack/modules/wpcom-tos/wpcom-tos.php'),(5399,'wp-content/plugins/jetpack/modules/wpgroho.js'),(5400,'wp-content/plugins/jetpack/readme.txt'),(5401,'wp-content/plugins/jetpack/require-lib.php'),(5402,'wp-content/plugins/jetpack/sal/class.json-api-date.php'),(5403,'wp-content/plugins/jetpack/sal/class.json-api-links.php'),(5404,'wp-content/plugins/jetpack/sal/class.json-api-metadata.php'),(5405,'wp-content/plugins/jetpack/sal/class.json-api-platform-jetpack.php'),(5406,'wp-content/plugins/jetpack/sal/class.json-api-platform.php'),(5407,'wp-content/plugins/jetpack/sal/class.json-api-post-base.php'),(5408,'wp-content/plugins/jetpack/sal/class.json-api-post-jetpack.php'),(5409,'wp-content/plugins/jetpack/sal/class.json-api-site-base.php'),(5410,'wp-content/plugins/jetpack/sal/class.json-api-site-jetpack-base.php'),(5411,'wp-content/plugins/jetpack/sal/class.json-api-site-jetpack.php'),(5412,'wp-content/plugins/jetpack/sal/class.json-api-token.php'),(5413,'wp-content/plugins/jetpack/src/Tracking.php'),(5414,'wp-content/plugins/jetpack/src/class-tracking.php'),(5415,'wp-content/plugins/jetpack/uninstall.php'),(5416,'wp-content/plugins/jetpack/vendor/autoload.php'),(5417,'wp-content/plugins/jetpack/vendor/autoload_functions.php'),(5418,'wp-content/plugins/jetpack/vendor/autoload_packages.php'),(5419,'wp-content/plugins/jetpack/vendor/automattic/jetpack-a8c-mc-stats/src/class-a8c-mc-stats.php'),(5420,'wp-content/plugins/jetpack/vendor/automattic/jetpack-abtest/src/Abtest.php'),(5421,'wp-content/plugins/jetpack/vendor/automattic/jetpack-abtest/src/class-abtest.php'),(5422,'wp-content/plugins/jetpack/vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php'),(5423,'wp-content/plugins/jetpack/vendor/automattic/jetpack-admin-ui/src/fonts/jetpack/jetpack.svg'),(5424,'wp-content/plugins/jetpack/vendor/automattic/jetpack-assets/src/Assets.php'),(5425,'wp-content/plugins/jetpack/vendor/automattic/jetpack-assets/src/class-assets.php'),(5426,'wp-content/plugins/jetpack/vendor/automattic/jetpack-backup/actions.php'),(5427,'wp-content/plugins/jetpack/vendor/automattic/jetpack-backup/src/Helper_Script_Manager.php'),(5428,'wp-content/plugins/jetpack/vendor/automattic/jetpack-backup/src/class-helper-script-manager.php'),(5429,'wp-content/plugins/jetpack/vendor/automattic/jetpack-backup/src/class-package-version.php'),(5430,'wp-content/plugins/jetpack/vendor/automattic/jetpack-backup/src/class-rest-controller.php'),(5431,'wp-content/plugins/jetpack/vendor/automattic/jetpack-blocks/src/class-blocks.php'),(5432,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/functions.php'),(5433,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpack-client.php'),(5434,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-actions.php'),(5435,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php'),(5436,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-settings.php'),(5437,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpacktracking.php'),(5438,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-client.php'),(5439,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-sync-actions.php'),(5440,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-sync-modules.php'),(5441,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-sync-settings.php'),(5442,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-tracks.php'),(5443,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/lib/tracks/client.php'),(5444,'wp-content/plugins/jetpack/vendor/automattic/jetpack-config/src/class-config.php'),(5445,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php'),(5446,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php'),(5447,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php'),(5448,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php'),(5449,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class.jetpack-ixr-client-multicall.php'),(5450,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class.jetpack-ixr-client.php'),(5451,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class.jetpack-signature.php'),(5452,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class.jetpack-xmlrpc-server.php'),(5453,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/load-ixr.php'),(5454,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/Client.php'),(5455,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/Manager.php'),(5456,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/Manager_Interface.php'),(5457,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/REST_Connector.php'),(5458,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/XMLRPC_Connector.php'),(5459,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-client.php'),(5460,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-error-handler.php'),(5461,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-initial-state.php'),(5462,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-manager.php'),(5463,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-nonce-handler.php'),(5464,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-package-version-tracker.php'),(5465,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-package-version.php'),(5466,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-plugin-storage.php'),(5467,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-plugin.php'),(5468,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-rest-authentication.php'),(5469,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-rest-connector.php'),(5470,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-secrets.php'),(5471,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-server-sandbox.php'),(5472,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-tokens.php'),(5473,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-urls.php'),(5474,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-utils.php'),(5475,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-webhooks.php'),(5476,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php'),(5477,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php'),(5478,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/error-handlers/class-invalid-blog-token.php'),(5479,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/interface-manager.php'),(5480,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection-ui/babel.config.js'),(5481,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection-ui/build/index.asset.php'),(5482,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection-ui/build/index.js'),(5483,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection-ui/build/index.js.map'),(5484,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection-ui/src/class-admin.php'),(5485,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection-ui/src/class-initial-state.php'),(5486,'wp-content/plugins/jetpack/vendor/automattic/jetpack-constants/src/Constants.php'),(5487,'wp-content/plugins/jetpack/vendor/automattic/jetpack-constants/src/class-constants.php'),(5488,'wp-content/plugins/jetpack/vendor/automattic/jetpack-device-detection/src/class-device-detection.php'),(5489,'wp-content/plugins/jetpack/vendor/automattic/jetpack-device-detection/src/class-user-agent-info.php'),(5490,'wp-content/plugins/jetpack/vendor/automattic/jetpack-error/src/Error.php'),(5491,'wp-content/plugins/jetpack/vendor/automattic/jetpack-error/src/class-error.php'),(5492,'wp-content/plugins/jetpack/vendor/automattic/jetpack-heartbeat/src/class-heartbeat.php'),(5493,'wp-content/plugins/jetpack/vendor/automattic/jetpack-identity-crisis/build/index.asset.php'),(5494,'wp-content/plugins/jetpack/vendor/automattic/jetpack-identity-crisis/build/index.js'),(5495,'wp-content/plugins/jetpack/vendor/automattic/jetpack-identity-crisis/src/_inc/idc-notice.js'),(5496,'wp-content/plugins/jetpack/vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php'),(5497,'wp-content/plugins/jetpack/vendor/automattic/jetpack-identity-crisis/src/class-rest-endpoints.php'),(5498,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/build/index.asset.php'),(5499,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/build/index.js'),(5500,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/JITM.php'),(5501,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/class-jitm.php'),(5502,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/class-post-connection-jitm.php'),(5503,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/class-pre-connection-jitm.php'),(5504,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/class-rest-api-endpoints.php'),(5505,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/js/jetpack-jitm.js'),(5506,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/js/jetpack-jitm.min.js'),(5507,'wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/dist/intersection-observer.asset.php'),(5508,'wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/dist/intersection-observer.js'),(5509,'wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/dist/intersection-observer.src.js'),(5510,'wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/dist/lazy-images.asset.php'),(5511,'wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/dist/lazy-images.js'),(5512,'wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/src/js/intersectionobserver-polyfill.js'),(5513,'wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/src/js/intersectionobserver-polyfill.min.js'),(5514,'wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/src/js/lazy-images.js'),(5515,'wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/src/js/lazy-images.min.js'),(5516,'wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/src/lazy-images.php'),(5517,'wp-content/plugins/jetpack/vendor/automattic/jetpack-lazy-images/webpack.config.js'),(5518,'wp-content/plugins/jetpack/vendor/automattic/jetpack-licensing/src/class-licensing.php'),(5519,'wp-content/plugins/jetpack/vendor/automattic/jetpack-logo/src/Logo.php'),(5520,'wp-content/plugins/jetpack/vendor/automattic/jetpack-logo/src/class-logo.php'),(5521,'wp-content/plugins/jetpack/vendor/automattic/jetpack-my-jetpack/babel.config.js'),(5522,'wp-content/plugins/jetpack/vendor/automattic/jetpack-my-jetpack/src/class-initializer.php'),(5523,'wp-content/plugins/jetpack/vendor/automattic/jetpack-my-jetpack/webpack.config.js'),(5524,'wp-content/plugins/jetpack/vendor/automattic/jetpack-options/legacy/class-jetpack-options.php'),(5525,'wp-content/plugins/jetpack/vendor/automattic/jetpack-options/legacy/class.jetpack-options.php'),(5526,'wp-content/plugins/jetpack/vendor/automattic/jetpack-partner/src/class-partner-coupon.php'),(5527,'wp-content/plugins/jetpack/vendor/automattic/jetpack-partner/src/class-partner.php'),(5528,'wp-content/plugins/jetpack/vendor/automattic/jetpack-password-checker/src/class-password-checker.php'),(5529,'wp-content/plugins/jetpack/vendor/automattic/jetpack-plugins-installer/.phpcs.dir.xml'),(5530,'wp-content/plugins/jetpack/vendor/automattic/jetpack-plugins-installer/CHANGELOG.md'),(5531,'wp-content/plugins/jetpack/vendor/automattic/jetpack-plugins-installer/LICENSE.txt'),(5532,'wp-content/plugins/jetpack/vendor/automattic/jetpack-plugins-installer/SECURITY.md'),(5533,'wp-content/plugins/jetpack/vendor/automattic/jetpack-plugins-installer/src/class-automatic-install-skin.php'),(5534,'wp-content/plugins/jetpack/vendor/automattic/jetpack-plugins-installer/src/class-plugins-installer.php'),(5535,'wp-content/plugins/jetpack/vendor/automattic/jetpack-redirect/src/class-redirect.php'),(5536,'wp-content/plugins/jetpack/vendor/automattic/jetpack-roles/src/Roles.php'),(5537,'wp-content/plugins/jetpack/vendor/automattic/jetpack-roles/src/class-roles.php'),(5538,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-helper.php'),(5539,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-module-control.php'),(5540,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-options.php'),(5541,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-plan.php'),(5542,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-rest-controller.php'),(5543,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-settings.php'),(5544,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/class-template-tags.php'),(5545,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/components/global-notices/store/actions.js'),(5546,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/components/global-notices/store/reducer.js'),(5547,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/components/global-notices/store/selectors.js'),(5548,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/actions/index.js'),(5549,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/actions/jetpack-settings.js'),(5550,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/actions/site-plan.js'),(5551,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/controls.js'),(5552,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/index.js'),(5553,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/reducer/index.js'),(5554,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/reducer/jetpack-settings.js'),(5555,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/reducer/site-data.js'),(5556,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/reducer/site-plan.js'),(5557,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/reducer/user-data.js'),(5558,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/resolvers.js'),(5559,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/selectors/index.js'),(5560,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/selectors/jetpack-settings.js'),(5561,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/selectors/site-data.js'),(5562,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/selectors/site-plan.js'),(5563,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/dashboard/store/selectors/user-data.js'),(5564,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/wpes/class-query-builder.php'),(5565,'wp-content/plugins/jetpack/vendor/automattic/jetpack-search/src/wpes/class-query-parser.php'),(5566,'wp-content/plugins/jetpack/vendor/automattic/jetpack-status/src/Status.php'),(5567,'wp-content/plugins/jetpack/vendor/automattic/jetpack-status/src/class-host.php'),(5568,'wp-content/plugins/jetpack/vendor/automattic/jetpack-status/src/class-status.php'),(5569,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Actions.php'),(5570,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Codec_Interface.php'),(5571,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Defaults.php'),(5572,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Functions.php'),(5573,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Json_Deflate_Array_Codec.php'),(5574,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Listener.php'),(5575,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Main.php'),(5576,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Modules.php'),(5577,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Queue.php'),(5578,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Queue_Buffer.php'),(5579,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Replicastore.php'),(5580,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Replicastore_Interface.php'),(5581,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Sender.php'),(5582,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Server.php'),(5583,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Settings.php'),(5584,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Simple_Codec.php'),(5585,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Users.php'),(5586,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Utils.php'),(5587,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-actions.php'),(5588,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-defaults.php'),(5589,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-functions.php'),(5590,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-health.php'),(5591,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-json-deflate-array-codec.php'),(5592,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-listener.php'),(5593,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-lock.php'),(5594,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-main.php'),(5595,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-modules.php'),(5596,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-package-version.php'),(5597,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-queue-buffer.php'),(5598,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-queue.php'),(5599,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-replicastore.php'),(5600,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-rest-endpoints.php'),(5601,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-rest-sender.php'),(5602,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-sender.php'),(5603,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-server.php'),(5604,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-settings.php'),(5605,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-simple-codec.php'),(5606,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-users.php'),(5607,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/class-utils.php'),(5608,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/interface-codec.php'),(5609,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/interface-replicastore.php'),(5610,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Attachments.php'),(5611,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Callables.php'),(5612,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Comments.php'),(5613,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Constants.php'),(5614,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Full_Sync.php'),(5615,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Import.php'),(5616,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Menus.php'),(5617,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Meta.php'),(5618,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Module.php'),(5619,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Network_Options.php'),(5620,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Options.php'),(5621,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Plugins.php'),(5622,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Posts.php'),(5623,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Protect.php'),(5624,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Stats.php'),(5625,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Term_Relationships.php'),(5626,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Terms.php'),(5627,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Themes.php'),(5628,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Updates.php'),(5629,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Users.php'),(5630,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/WP_Super_Cache.php'),(5631,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/WooCommerce.php'),(5632,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-attachments.php'),(5633,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-callables.php'),(5634,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-comments.php'),(5635,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-constants.php'),(5636,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php'),(5637,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-full-sync.php'),(5638,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-import.php'),(5639,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-menus.php'),(5640,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-meta.php'),(5641,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-module.php'),(5642,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-network-options.php'),(5643,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-options.php'),(5644,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-plugins.php'),(5645,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-posts.php'),(5646,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-protect.php'),(5647,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-stats.php'),(5648,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-term-relationships.php'),(5649,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-terms.php'),(5650,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-themes.php'),(5651,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-updates.php'),(5652,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-users.php'),(5653,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-woocommerce.php'),(5654,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/class-wp-super-cache.php'),(5655,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-usermeta.php'),(5656,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-users.php'),(5657,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php'),(5658,'wp-content/plugins/jetpack/vendor/automattic/jetpack-terms-of-service/src/Terms_Of_Service.php'),(5659,'wp-content/plugins/jetpack/vendor/automattic/jetpack-terms-of-service/src/class-terms-of-service.php'),(5660,'wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-client.php'),(5661,'wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-event.php'),(5662,'wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/legacy/class.tracks-client.php'),(5663,'wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/legacy/class.tracks-event.php'),(5664,'wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/src/Tracking.php'),(5665,'wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/src/class-tracking.php'),(5666,'wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/src/js/tracks-ajax.js'),(5667,'wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/src/js/tracks-callables.js'),(5668,'wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/.phpcsignore'),(5669,'wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/CHANGELOG.md'),(5670,'wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/LICENSE.txt'),(5671,'wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/SECURITY.md'),(5672,'wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/actions.php'),(5673,'wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/rules/rules.php'),(5674,'wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/src/class-waf-operators.php'),(5675,'wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/src/class-waf-rule-compiler.php'),(5676,'wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/src/class-waf-runner.php'),(5677,'wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/src/class-waf-runtime.php'),(5678,'wp-content/plugins/jetpack/vendor/automattic/jetpack-waf/src/class-waf-transforms.php'),(5679,'wp-content/plugins/jetpack/vendor/class-autoloader-handler.php'),(5680,'wp-content/plugins/jetpack/vendor/class-classes-handler.php'),(5681,'wp-content/plugins/jetpack/vendor/class-files-handler.php'),(5682,'wp-content/plugins/jetpack/vendor/class-plugins-handler.php'),(5683,'wp-content/plugins/jetpack/vendor/class-version-selector.php'),(5684,'wp-content/plugins/jetpack/vendor/composer/ClassLoader.php'),(5685,'wp-content/plugins/jetpack/vendor/composer/InstalledVersions.php'),(5686,'wp-content/plugins/jetpack/vendor/composer/LICENSE'),(5687,'wp-content/plugins/jetpack/vendor/composer/autoload_classmap.php'),(5688,'wp-content/plugins/jetpack/vendor/composer/autoload_classmap_package.php'),(5689,'wp-content/plugins/jetpack/vendor/composer/autoload_files.php'),(5690,'wp-content/plugins/jetpack/vendor/composer/autoload_files_package.php'),(5691,'wp-content/plugins/jetpack/vendor/composer/autoload_namespaces.php'),(5692,'wp-content/plugins/jetpack/vendor/composer/autoload_psr4.php'),(5693,'wp-content/plugins/jetpack/vendor/composer/autoload_real.php'),(5694,'wp-content/plugins/jetpack/vendor/composer/autoload_static.php'),(5695,'wp-content/plugins/jetpack/vendor/composer/installed.json'),(5696,'wp-content/plugins/jetpack/vendor/composer/installed.php'),(5697,'wp-content/plugins/jetpack/vendor/composer/jetpack_autoload_classmap.php'),(5698,'wp-content/plugins/jetpack/vendor/composer/jetpack_autoload_filemap.php'),(5699,'wp-content/plugins/jetpack/vendor/composer/platform_check.php'),(5700,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/autoload_functions.php'),(5701,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader-handler.php'),(5702,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader-locator.php'),(5703,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader.php'),(5704,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-container.php'),(5705,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-hook-manager.php'),(5706,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-latest-autoloader-guard.php'),(5707,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-manifest-handler.php'),(5708,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-manifest-reader.php'),(5709,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-path-processor.php'),(5710,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-php-autoloader.php'),(5711,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-plugin-locator.php'),(5712,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-plugins-handler.php'),(5713,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-shutdown-handler.php'),(5714,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-version-loader.php'),(5715,'wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-version-selector.php'),(5716,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/Changes.md'),(5717,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/LICENSE'),(5718,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/README.md'),(5719,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/build/build-emoji-regex.php'),(5720,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/build/build-tld-lists.php'),(5721,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/composer.json'),(5722,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/Autolink.php'),(5723,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/Configuration.php'),(5724,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/EmojiRegex.php'),(5725,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/Extractor.php'),(5726,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/HitHighlighter.php'),(5727,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/ParseResults.php'),(5728,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/Parser.php'),(5729,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/Regex.php'),(5730,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/StringUtils.php'),(5731,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/TldLists.php'),(5732,'wp-content/plugins/jetpack/vendor/nojimage/twitter-text-php/lib/Twitter/Text/Validator.php'),(5733,'wp-content/plugins/jetpack/views/admin/deactivation-dialog.php'),(5734,'wp-content/plugins/jetpack/views/admin/jetpack-plugin-portal-containers.php'),(5735,'wp-content/plugins/jetpack/views/admin/must-connect-main-blog.php'),(5736,'wp-content/plugins/jetpack/views/admin/network-activated-notice.php'),(5737,'wp-content/plugins/jetpack/views/admin/network-admin-alert.php'),(5738,'wp-content/plugins/jetpack/views/admin/network-admin-footer.php'),(5739,'wp-content/plugins/jetpack/views/admin/network-admin-header.php'),(5740,'wp-content/plugins/jetpack/views/admin/network-settings.php'),(5741,'wp-content/plugins/jetpack/wpml-config.xml'),(5742,'wp-content/plugins/our-team-enhanced/assets/admin/css/admin.css'),(5743,'wp-content/plugins/our-team-enhanced/assets/admin/css/settings.css'),(5744,'wp-content/plugins/our-team-enhanced/assets/admin/js/customizer.js'),(5745,'wp-content/plugins/our-team-enhanced/assets/admin/js/reorder.js'),(5746,'wp-content/plugins/our-team-enhanced/assets/admin/js/settings.js'),(5747,'wp-content/plugins/our-team-enhanced/assets/css/common.css'),(5748,'wp-content/plugins/our-team-enhanced/assets/css/single.css'),(5749,'wp-content/plugins/our-team-enhanced/assets/css/team-view.css'),(5750,'wp-content/plugins/our-team-enhanced/assets/css/widgets.css'),(5751,'wp-content/plugins/our-team-enhanced/assets/data/demo.csv'),(5752,'wp-content/plugins/our-team-enhanced/assets/fonts/fonts.css'),(5753,'wp-content/plugins/our-team-enhanced/assets/fonts/lato/lato-regular.eot'),(5754,'wp-content/plugins/our-team-enhanced/assets/fonts/lato/lato-regular.svg'),(5755,'wp-content/plugins/our-team-enhanced/assets/fonts/lato/lato-regular.ttf'),(5756,'wp-content/plugins/our-team-enhanced/assets/fonts/lato/lato-regular.woff'),(5757,'wp-content/plugins/our-team-enhanced/assets/fonts/lato/lato-regular.woff2'),(5758,'wp-content/plugins/our-team-enhanced/assets/fonts/oswald/oswald-regular.eot'),(5759,'wp-content/plugins/our-team-enhanced/assets/fonts/oswald/oswald-regular.svg'),(5760,'wp-content/plugins/our-team-enhanced/assets/fonts/oswald/oswald-regular.ttf'),(5761,'wp-content/plugins/our-team-enhanced/assets/fonts/oswald/oswald-regular.woff'),(5762,'wp-content/plugins/our-team-enhanced/assets/fonts/oswald/oswald-regular.woff2'),(5763,'wp-content/plugins/our-team-enhanced/assets/images/add-ons/member-portal.jpg'),(5764,'wp-content/plugins/our-team-enhanced/assets/images/add-ons/ots-pro.jpg'),(5765,'wp-content/plugins/our-team-enhanced/assets/images/branding/smartcat-medium.png'),(5766,'wp-content/plugins/our-team-enhanced/assets/images/default-avatar.png'),(5767,'wp-content/plugins/our-team-enhanced/assets/images/demo/card.jpg'),(5768,'wp-content/plugins/our-team-enhanced/assets/images/demo/panel-1.jpg'),(5769,'wp-content/plugins/our-team-enhanced/assets/images/demo/sidebar-widget.jpg'),(5770,'wp-content/plugins/our-team-enhanced/assets/images/doc/manage-members-1.jpg'),(5771,'wp-content/plugins/our-team-enhanced/assets/images/doc/manage-members-2.jpg'),(5772,'wp-content/plugins/our-team-enhanced/assets/images/doc/manage-members-3.jpg'),(5773,'wp-content/plugins/our-team-enhanced/assets/images/doc/ots-widget.jpg'),(5774,'wp-content/plugins/our-team-enhanced/assets/images/doc/portal-1.jpg'),(5775,'wp-content/plugins/our-team-enhanced/assets/images/doc/restrict-posts-1.jpg'),(5776,'wp-content/plugins/our-team-enhanced/assets/images/doc/restrict-posts-2.jpg'),(5777,'wp-content/plugins/our-team-enhanced/assets/images/doc/restrict-posts-3.jpg'),(5778,'wp-content/plugins/our-team-enhanced/assets/images/doc/restrict-posts-4.jpg'),(5779,'wp-content/plugins/our-team-enhanced/assets/images/more.png'),(5780,'wp-content/plugins/our-team-enhanced/assets/images/social/email.png'),(5781,'wp-content/plugins/our-team-enhanced/assets/images/social/etsy.png'),(5782,'wp-content/plugins/our-team-enhanced/assets/images/social/facebook.png'),(5783,'wp-content/plugins/our-team-enhanced/assets/images/social/gplus.png'),(5784,'wp-content/plugins/our-team-enhanced/assets/images/social/instagram.png'),(5785,'wp-content/plugins/our-team-enhanced/assets/images/social/linkedin.png'),(5786,'wp-content/plugins/our-team-enhanced/assets/images/social/phone.png'),(5787,'wp-content/plugins/our-team-enhanced/assets/images/social/pinterest.png'),(5788,'wp-content/plugins/our-team-enhanced/assets/images/social/skype.png'),(5789,'wp-content/plugins/our-team-enhanced/assets/images/social/soundcloud.png'),(5790,'wp-content/plugins/our-team-enhanced/assets/images/social/twitter.png'),(5791,'wp-content/plugins/our-team-enhanced/assets/images/social/vimeo.png'),(5792,'wp-content/plugins/our-team-enhanced/assets/images/social/website.png'),(5793,'wp-content/plugins/our-team-enhanced/assets/images/social/whatsapp.png'),(5794,'wp-content/plugins/our-team-enhanced/assets/js/script.js'),(5795,'wp-content/plugins/our-team-enhanced/constants.php'),(5796,'wp-content/plugins/our-team-enhanced/includes/TeamMainWidget.php'),(5797,'wp-content/plugins/our-team-enhanced/includes/TeamMember.php'),(5798,'wp-content/plugins/our-team-enhanced/includes/TeamSidebarWidget.php'),(5799,'wp-content/plugins/our-team-enhanced/includes/add-ons.php'),(5800,'wp-content/plugins/our-team-enhanced/includes/admin-settings.php'),(5801,'wp-content/plugins/our-team-enhanced/includes/documentation.php'),(5802,'wp-content/plugins/our-team-enhanced/includes/extension-licensing.php'),(5803,'wp-content/plugins/our-team-enhanced/includes/functions.php'),(5804,'wp-content/plugins/our-team-enhanced/includes/helpers.php'),(5805,'wp-content/plugins/our-team-enhanced/includes/libraries/theme-showcase.php'),(5806,'wp-content/plugins/our-team-enhanced/includes/reorder-members.php'),(5807,'wp-content/plugins/our-team-enhanced/includes/team-member.php'),(5808,'wp-content/plugins/our-team-enhanced/includes/team-view.php'),(5809,'wp-content/plugins/our-team-enhanced/includes/team_member-post-type.php'),(5810,'wp-content/plugins/our-team-enhanced/includes/tools.php'),(5811,'wp-content/plugins/our-team-enhanced/includes/widgets.php'),(5812,'wp-content/plugins/our-team-enhanced/languages/ots.pot'),(5813,'wp-content/plugins/our-team-enhanced/our-team-showcase.php'),(5814,'wp-content/plugins/our-team-enhanced/readme.txt'),(5815,'wp-content/plugins/our-team-enhanced/templates/grid-circles-2.php'),(5816,'wp-content/plugins/our-team-enhanced/templates/grid-circles.php'),(5817,'wp-content/plugins/our-team-enhanced/templates/grid.php'),(5818,'wp-content/plugins/our-team-enhanced/uninstall.php'),(5819,'wp-content/plugins/our-team-enhanced/upgrade.php'),(5820,'wp-content/plugins/responsive-menu/LICENSE.md'),(5821,'wp-content/plugins/responsive-menu/README.md'),(5822,'wp-content/plugins/responsive-menu/app/Collections/OptionsCollection.php'),(5823,'wp-content/plugins/responsive-menu/app/Container/Container.php'),(5824,'wp-content/plugins/responsive-menu/app/Controllers/AdminController.php'),(5825,'wp-content/plugins/responsive-menu/app/Controllers/FrontController.php'),(5826,'wp-content/plugins/responsive-menu/app/Database/Database.php'),(5827,'wp-content/plugins/responsive-menu/app/Database/Migration.php'),(5828,'wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate.php'),(5829,'wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_0_0_1_0_0_2.php'),(5830,'wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_0_0_2_0_0_3.php'),(5831,'wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_0_0_5_0_0_6.php'),(5832,'wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_1_1_0_1_1_1.php'),(5833,'wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_3_1_0_3_1_1.php'),(5834,'wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_3_1_13_3_1_14.php'),(5835,'wp-content/plugins/responsive-menu/app/Database/Migrations/Migrate_3_1_7_3_1_8.php'),(5836,'wp-content/plugins/responsive-menu/app/Formatters/Minifier.php'),(5837,'wp-content/plugins/responsive-menu/app/Management/OptionManager.php'),(5838,'wp-content/plugins/responsive-menu/app/Tasks/UpdateOptionsTask.php'),(5839,'wp-content/plugins/responsive-menu/app/Validation/Validator.php'),(5840,'wp-content/plugins/responsive-menu/app/Validation/Validators/BaseValidator.php'),(5841,'wp-content/plugins/responsive-menu/app/Validation/Validators/Colour.php'),(5842,'wp-content/plugins/responsive-menu/app/Validation/Validators/Number.php'),(5843,'wp-content/plugins/responsive-menu/app/Validation/Validators/Positive.php'),(5844,'wp-content/plugins/responsive-menu/app/View/View.php'),(5845,'wp-content/plugins/responsive-menu/app/Walkers/Walker.php'),(5846,'wp-content/plugins/responsive-menu/composer.json'),(5847,'wp-content/plugins/responsive-menu/composer.lock'),(5848,'wp-content/plugins/responsive-menu/config/default_options.php'),(5849,'wp-content/plugins/responsive-menu/config/polylang.php'),(5850,'wp-content/plugins/responsive-menu/config/routing.php'),(5851,'wp-content/plugins/responsive-menu/config/services.php'),(5852,'wp-content/plugins/responsive-menu/config/twig.php'),(5853,'wp-content/plugins/responsive-menu/config/wp/scripts.php'),(5854,'wp-content/plugins/responsive-menu/deploy.sh'),(5855,'wp-content/plugins/responsive-menu/migration.php'),(5856,'wp-content/plugins/responsive-menu/public/fonts/admin/glyphicons-halflings-regular.svg'),(5857,'wp-content/plugins/responsive-menu/public/js/admin/additional.js'),(5858,'wp-content/plugins/responsive-menu/public/js/admin/base.js'),(5859,'wp-content/plugins/responsive-menu/public/js/admin/bootstrap-file.js'),(5860,'wp-content/plugins/responsive-menu/public/js/admin/bootstrap-select.js'),(5861,'wp-content/plugins/responsive-menu/public/js/admin/bootstrap-toggle.js'),(5862,'wp-content/plugins/responsive-menu/public/js/admin/bootstrap.js'),(5863,'wp-content/plugins/responsive-menu/public/js/admin/minicolours.js'),(5864,'wp-content/plugins/responsive-menu/public/js/admin/selectize.js'),(5865,'wp-content/plugins/responsive-menu/public/js/app.js.twig'),(5866,'wp-content/plugins/responsive-menu/readme.txt'),(5867,'wp-content/plugins/responsive-menu/responsive-menu.php'),(5868,'wp-content/plugins/responsive-menu/review-banner-class.php'),(5869,'wp-content/plugins/responsive-menu/tests/app/Collections/OptionsCollectionTest.php'),(5870,'wp-content/plugins/responsive-menu/tests/app/Container/ContainerTest.php'),(5871,'wp-content/plugins/responsive-menu/tests/app/Controllers/AdminControllerTest.php'),(5872,'wp-content/plugins/responsive-menu/tests/app/Database/MigrationTest.php'),(5873,'wp-content/plugins/responsive-menu/tests/app/Formatters/MinifierTest.php'),(5874,'wp-content/plugins/responsive-menu/tests/app/Management/OptionManagerTest.php'),(5875,'wp-content/plugins/responsive-menu/tests/app/Validation/ValidatorTest.php'),(5876,'wp-content/plugins/responsive-menu/tests/app/Validation/Validators/ColourTest.php'),(5877,'wp-content/plugins/responsive-menu/tests/app/Validation/Validators/NumberTest.php'),(5878,'wp-content/plugins/responsive-menu/tests/app/Validation/Validators/PositiveTest.php'),(5879,'wp-content/plugins/responsive-menu/v4.0.0/.babelrc'),(5880,'wp-content/plugins/responsive-menu/v4.0.0/.distignore'),(5881,'wp-content/plugins/responsive-menu/v4.0.0/.editorconfig'),(5882,'wp-content/plugins/responsive-menu/v4.0.0/.eslintignore'),(5883,'wp-content/plugins/responsive-menu/v4.0.0/.eslintrc.json'),(5884,'wp-content/plugins/responsive-menu/v4.0.0/.gitignore'),(5885,'wp-content/plugins/responsive-menu/v4.0.0/.stylelintrc'),(5886,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/build/css/rmpMain.css'),(5887,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/build/js/rmpMain.js'),(5888,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/build/js/rmpMain.js.LICENSE.txt'),(5889,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/fonts/product-sans/Product Sans Bold Italic.ttf'),(5890,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/fonts/product-sans/Product Sans Bold.ttf'),(5891,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/fonts/product-sans/Product Sans Italic.ttf'),(5892,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/fonts/product-sans/Product Sans Medium.ttf'),(5893,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/fonts/product-sans/Product Sans Regular.ttf'),(5894,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/fonts/product-sans/google-product-sans.jpg'),(5895,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/export.png'),(5896,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/advanced.svg'),(5897,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/container.svg'),(5898,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/desktop.svg'),(5899,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/dropdowns.svg'),(5900,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/general.svg'),(5901,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/header.svg'),(5902,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/image-placeholder.svg'),(5903,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/mobile.svg'),(5904,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/tablet.svg'),(5905,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/icons/svg/toggle.svg'),(5906,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/dropzone.min.js'),(5907,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/rmp-admin.js'),(5908,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/rmp-editor.js'),(5909,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/rmp-elementor.js'),(5910,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/rmp-icon.js'),(5911,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/rmp-menu-wizard.js'),(5912,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/rmp-preview.js'),(5913,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/selectize.js'),(5914,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/js/wp-color-alpha.js'),(5915,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/rmp-main.js'),(5916,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/scss/admin.css'),(5917,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/scss/dark-mode.scss'),(5918,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/scss/glyphicons.css'),(5919,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/scss/selectize.css'),(5920,'wp-content/plugins/responsive-menu/v4.0.0/assets/admin/scss/wizard-ui.scss'),(5921,'wp-content/plugins/responsive-menu/v4.0.0/assets/images/default-theme-preview.png'),(5922,'wp-content/plugins/responsive-menu/v4.0.0/assets/images/giphy.webp'),(5923,'wp-content/plugins/responsive-menu/v4.0.0/assets/images/no-preview.jpeg'),(5924,'wp-content/plugins/responsive-menu/v4.0.0/assets/images/placeholder.png'),(5925,'wp-content/plugins/responsive-menu/v4.0.0/assets/images/rmp-logo.png'),(5926,'wp-content/plugins/responsive-menu/v4.0.0/assets/js/rmp-menu.js'),(5927,'wp-content/plugins/responsive-menu/v4.0.0/assets/scss/common.scss'),(5928,'wp-content/plugins/responsive-menu/v4.0.0/assets/scss/main.scss'),(5929,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-admin.php'),(5930,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-assets.php'),(5931,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-control-manager.php'),(5932,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-editor-manager.php'),(5933,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-editor.php'),(5934,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-option-manager.php'),(5935,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-plugin.php'),(5936,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-preview.php'),(5937,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-rmp-menu.php'),(5938,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-rmp-migration.php'),(5939,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-style-manager.php'),(5940,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-theme-manager.php'),(5941,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-ui-manager.php'),(5942,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/class-walker.php'),(5943,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/elementor/class-elementor-manager.php'),(5944,'wp-content/plugins/responsive-menu/v4.0.0/inc/classes/elementor/widgets/class-rmp-widget.php'),(5945,'wp-content/plugins/responsive-menu/v4.0.0/inc/helpers/autoloader.php'),(5946,'wp-content/plugins/responsive-menu/v4.0.0/inc/helpers/custom-functions.php'),(5947,'wp-content/plugins/responsive-menu/v4.0.0/inc/helpers/default-options.php'),(5948,'wp-content/plugins/responsive-menu/v4.0.0/inc/traits/trait-singleton.php'),(5949,'wp-content/plugins/responsive-menu/v4.0.0/languages/responsive-menu.pot'),(5950,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/composer.json'),(5951,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/composer.lock'),(5952,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/autoload.php'),(5953,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/bin/pscss'),(5954,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/bin/pscss.bat'),(5955,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/ClassLoader.php'),(5956,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/LICENSE'),(5957,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/autoload_classmap.php'),(5958,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/autoload_namespaces.php'),(5959,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/autoload_psr4.php'),(5960,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/autoload_real.php'),(5961,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/autoload_static.php'),(5962,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/composer/installed.json'),(5963,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/LICENSE.md'),(5964,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/README.md'),(5965,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/bin/pscss'),(5966,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/composer.json'),(5967,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/scss.inc.php'),(5968,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Base/Range.php'),(5969,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Block.php'),(5970,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Cache.php'),(5971,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Colors.php'),(5972,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Compiler/Environment.php'),(5973,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Compiler.php'),(5974,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Exception/CompilerException.php'),(5975,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Exception/ParserException.php'),(5976,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Exception/RangeException.php'),(5977,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Exception/ServerException.php'),(5978,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/Compact.php'),(5979,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/Compressed.php'),(5980,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/Crunched.php'),(5981,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/Debug.php'),(5982,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/Expanded.php'),(5983,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/Nested.php'),(5984,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter/OutputBlock.php'),(5985,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Formatter.php'),(5986,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Node/Number.php'),(5987,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Node.php'),(5988,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Parser.php'),(5989,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/SourceMap/Base64.php'),(5990,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/SourceMap/Base64VLQ.php'),(5991,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/SourceMap/SourceMapGenerator.php'),(5992,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Type.php'),(5993,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Util.php'),(5994,'wp-content/plugins/responsive-menu/v4.0.0/libs/scssphp/vendor/scssphp/scssphp/src/Version.php'),(5995,'wp-content/plugins/responsive-menu/v4.0.0/package-lock.json'),(5996,'wp-content/plugins/responsive-menu/v4.0.0/package.json'),(5997,'wp-content/plugins/responsive-menu/v4.0.0/postcss.config.js'),(5998,'wp-content/plugins/responsive-menu/v4.0.0/templates/admin-notices.php'),(5999,'wp-content/plugins/responsive-menu/v4.0.0/templates/legacy-settings.php'),(6000,'wp-content/plugins/responsive-menu/v4.0.0/templates/menu-elements/additional-content.php'),(6001,'wp-content/plugins/responsive-menu/v4.0.0/templates/menu-elements/menu.php'),(6002,'wp-content/plugins/responsive-menu/v4.0.0/templates/menu-elements/search.php'),(6003,'wp-content/plugins/responsive-menu/v4.0.0/templates/menu-elements/title.php'),(6004,'wp-content/plugins/responsive-menu/v4.0.0/templates/new-menu-wizard.php'),(6005,'wp-content/plugins/responsive-menu/v4.0.0/templates/rmp-editor.php'),(6006,'wp-content/plugins/responsive-menu/v4.0.0/templates/rmp-roadmap.php'),(6007,'wp-content/plugins/responsive-menu/v4.0.0/templates/rmp-settings.php'),(6008,'wp-content/plugins/responsive-menu/v4.0.0/templates/rmp-themes.php'),(6009,'wp-content/plugins/responsive-menu/v4.0.0/templates/rmp-wizards.php'),(6010,'wp-content/plugins/responsive-menu/v4.0.0/themes/electric blue theme/blue-background.png'),(6011,'wp-content/plugins/responsive-menu/v4.0.0/themes/electric blue theme/config.json'),(6012,'wp-content/plugins/responsive-menu/v4.0.0/themes/electric blue theme/electric-blue-theme.php'),(6013,'wp-content/plugins/responsive-menu/v4.0.0/themes/electric blue theme/options.json'),(6014,'wp-content/plugins/responsive-menu/v4.0.0/themes/electric blue theme/person.png'),(6015,'wp-content/plugins/responsive-menu/v4.0.0/themes/electric blue theme/preview.png'),(6016,'wp-content/plugins/responsive-menu/v4.0.0/themes/full-width-theme/config.json'),(6017,'wp-content/plugins/responsive-menu/v4.0.0/themes/full-width-theme/full-width-theme.php'),(6018,'wp-content/plugins/responsive-menu/v4.0.0/themes/full-width-theme/options.json'),(6019,'wp-content/plugins/responsive-menu/v4.0.0/themes/full-width-theme/person.png'),(6020,'wp-content/plugins/responsive-menu/v4.0.0/themes/full-width-theme/preview.png'),(6021,'wp-content/plugins/responsive-menu/v4.0.0/themes/simple-red-free/config.json'),(6022,'wp-content/plugins/responsive-menu/v4.0.0/themes/simple-red-free/options.json'),(6023,'wp-content/plugins/responsive-menu/v4.0.0/themes/simple-red-free/person.png'),(6024,'wp-content/plugins/responsive-menu/v4.0.0/themes/simple-red-free/preview.png'),(6025,'wp-content/plugins/responsive-menu/v4.0.0/themes/simple-red-free/simple-red-theme.php'),(6026,'wp-content/plugins/responsive-menu/v4.0.0/uninstall.php'),(6027,'wp-content/plugins/responsive-menu/v4.0.0/webpack.config.js'),(6028,'wp-content/plugins/responsive-menu/vendor/autoload.php'),(6029,'wp-content/plugins/responsive-menu/vendor/composer/ClassLoader.php'),(6030,'wp-content/plugins/responsive-menu/vendor/composer/autoload_classmap.php'),(6031,'wp-content/plugins/responsive-menu/vendor/composer/autoload_files.php'),(6032,'wp-content/plugins/responsive-menu/vendor/composer/autoload_namespaces.php'),(6033,'wp-content/plugins/responsive-menu/vendor/composer/autoload_psr4.php'),(6034,'wp-content/plugins/responsive-menu/vendor/composer/autoload_real.php'),(6035,'wp-content/plugins/responsive-menu/vendor/composer/autoload_static.php'),(6036,'wp-content/plugins/responsive-menu/vendor/symfony/polyfill-ctype/Ctype.php'),(6037,'wp-content/plugins/responsive-menu/vendor/symfony/polyfill-ctype/bootstrap.php'),(6038,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Autoloader.php'),(6039,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/BaseNodeVisitor.php'),(6040,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Cache/Filesystem.php'),(6041,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Cache/Null.php'),(6042,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/CacheInterface.php'),(6043,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Compiler.php'),(6044,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/CompilerInterface.php'),(6045,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/ContainerRuntimeLoader.php'),(6046,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Environment.php'),(6047,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Error/Loader.php'),(6048,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Error/Runtime.php'),(6049,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Error/Syntax.php'),(6050,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Error.php'),(6051,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/ExistsLoaderInterface.php'),(6052,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/ExpressionParser.php'),(6053,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Core.php'),(6054,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Debug.php'),(6055,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Escaper.php'),(6056,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/GlobalsInterface.php'),(6057,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/InitRuntimeInterface.php'),(6058,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Optimizer.php'),(6059,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Profiler.php'),(6060,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Sandbox.php'),(6061,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/Staging.php'),(6062,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension/StringLoader.php'),(6063,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Extension.php'),(6064,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/ExtensionInterface.php'),(6065,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/FactoryRuntimeLoader.php'),(6066,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/FileExtensionEscapingStrategy.php'),(6067,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Filter/Function.php'),(6068,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Filter/Method.php'),(6069,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Filter/Node.php'),(6070,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Filter.php'),(6071,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/FilterCallableInterface.php'),(6072,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/FilterInterface.php'),(6073,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Function/Function.php'),(6074,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Function/Method.php'),(6075,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Function/Node.php'),(6076,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Function.php'),(6077,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/FunctionCallableInterface.php'),(6078,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/FunctionInterface.php'),(6079,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Lexer.php'),(6080,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/LexerInterface.php'),(6081,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Loader/Array.php'),(6082,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Loader/Chain.php'),(6083,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Loader/Filesystem.php'),(6084,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Loader/String.php'),(6085,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/LoaderInterface.php'),(6086,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Markup.php'),(6087,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/AutoEscape.php'),(6088,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Block.php'),(6089,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/BlockReference.php'),(6090,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Body.php'),(6091,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/CheckSecurity.php'),(6092,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Deprecated.php'),(6093,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Do.php'),(6094,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Embed.php'),(6095,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Array.php'),(6096,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/AssignName.php'),(6097,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Add.php'),(6098,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/And.php'),(6099,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/BitwiseAnd.php'),(6100,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/BitwiseOr.php'),(6101,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/BitwiseXor.php'),(6102,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Concat.php'),(6103,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Div.php'),(6104,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/EndsWith.php'),(6105,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Equal.php'),(6106,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/FloorDiv.php'),(6107,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Greater.php'),(6108,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/GreaterEqual.php'),(6109,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/In.php'),(6110,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Less.php'),(6111,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/LessEqual.php'),(6112,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Matches.php'),(6113,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Mod.php'),(6114,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Mul.php'),(6115,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/NotEqual.php'),(6116,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/NotIn.php'),(6117,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Or.php'),(6118,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Power.php'),(6119,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Range.php'),(6120,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/StartsWith.php'),(6121,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Sub.php'),(6122,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Binary.php'),(6123,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/BlockReference.php'),(6124,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Call.php'),(6125,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Conditional.php'),(6126,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Constant.php'),(6127,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/ExtensionReference.php'),(6128,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Filter/Default.php'),(6129,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Filter.php'),(6130,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Function.php'),(6131,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/GetAttr.php'),(6132,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/MethodCall.php'),(6133,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Name.php'),(6134,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/NullCoalesce.php'),(6135,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Parent.php'),(6136,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/TempName.php'),(6137,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Constant.php'),(6138,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Defined.php'),(6139,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Divisibleby.php'),(6140,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Even.php'),(6141,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Null.php'),(6142,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Odd.php'),(6143,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test/Sameas.php'),(6144,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Test.php'),(6145,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Unary/Neg.php'),(6146,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Unary/Not.php'),(6147,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Unary/Pos.php'),(6148,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression/Unary.php'),(6149,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Expression.php'),(6150,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Flush.php'),(6151,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/For.php'),(6152,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/ForLoop.php'),(6153,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/If.php'),(6154,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Import.php'),(6155,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Include.php'),(6156,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Macro.php'),(6157,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Module.php'),(6158,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Print.php'),(6159,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Sandbox.php'),(6160,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/SandboxedPrint.php'),(6161,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Set.php'),(6162,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/SetTemp.php'),(6163,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Spaceless.php'),(6164,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/Text.php'),(6165,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node/With.php'),(6166,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Node.php'),(6167,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeCaptureInterface.php'),(6168,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeInterface.php'),(6169,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeOutputInterface.php'),(6170,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeTraverser.php'),(6171,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeVisitor/Escaper.php'),(6172,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeVisitor/Optimizer.php'),(6173,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeVisitor/SafeAnalysis.php'),(6174,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeVisitor/Sandbox.php'),(6175,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/NodeVisitorInterface.php'),(6176,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Parser.php'),(6177,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/ParserInterface.php'),(6178,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Dumper/Base.php'),(6179,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Dumper/Blackfire.php'),(6180,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Dumper/Html.php'),(6181,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Dumper/Text.php'),(6182,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Node/EnterProfile.php'),(6183,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Node/LeaveProfile.php'),(6184,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/NodeVisitor/Profiler.php'),(6185,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Profiler/Profile.php'),(6186,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/RuntimeLoaderInterface.php'),(6187,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityError.php'),(6188,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedFilterError.php'),(6189,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedFunctionError.php'),(6190,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedMethodError.php'),(6191,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedPropertyError.php'),(6192,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedTagError.php'),(6193,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityPolicy.php'),(6194,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Sandbox/SecurityPolicyInterface.php'),(6195,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/SimpleFilter.php'),(6196,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/SimpleFunction.php'),(6197,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/SimpleTest.php'),(6198,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Source.php'),(6199,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/SourceContextLoaderInterface.php'),(6200,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Template.php'),(6201,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TemplateInterface.php'),(6202,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TemplateWrapper.php'),(6203,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Test/Function.php'),(6204,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Test/IntegrationTestCase.php'),(6205,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Test/Method.php'),(6206,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Test/Node.php'),(6207,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Test/NodeTestCase.php'),(6208,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Test.php'),(6209,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TestCallableInterface.php'),(6210,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TestInterface.php'),(6211,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Token.php'),(6212,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/AutoEscape.php'),(6213,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Block.php'),(6214,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Deprecated.php'),(6215,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Do.php'),(6216,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Embed.php'),(6217,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Extends.php'),(6218,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Filter.php'),(6219,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Flush.php'),(6220,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/For.php'),(6221,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/From.php'),(6222,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/If.php'),(6223,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Import.php'),(6224,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Include.php'),(6225,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Macro.php'),(6226,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Sandbox.php'),(6227,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Set.php'),(6228,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Spaceless.php'),(6229,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/Use.php'),(6230,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser/With.php'),(6231,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParser.php'),(6232,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParserBroker.php'),(6233,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParserBrokerInterface.php'),(6234,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenParserInterface.php'),(6235,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/TokenStream.php'),(6236,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Util/DeprecationCollector.php'),(6237,'wp-content/plugins/responsive-menu/vendor/twig/twig/lib/Twig/Util/TemplateDirIterator.php'),(6238,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Cache/CacheInterface.php'),(6239,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Cache/FilesystemCache.php'),(6240,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Cache/NullCache.php'),(6241,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Compiler.php'),(6242,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Environment.php'),(6243,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Error/Error.php'),(6244,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Error/LoaderError.php'),(6245,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Error/RuntimeError.php'),(6246,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Error/SyntaxError.php'),(6247,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/ExpressionParser.php'),(6248,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/AbstractExtension.php'),(6249,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/CoreExtension.php'),(6250,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/DebugExtension.php'),(6251,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/EscaperExtension.php'),(6252,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/ExtensionInterface.php'),(6253,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/GlobalsInterface.php'),(6254,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/InitRuntimeInterface.php'),(6255,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/OptimizerExtension.php'),(6256,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/ProfilerExtension.php'),(6257,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/RuntimeExtensionInterface.php'),(6258,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/SandboxExtension.php'),(6259,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/StagingExtension.php'),(6260,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Extension/StringLoaderExtension.php'),(6261,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/FileExtensionEscapingStrategy.php'),(6262,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Lexer.php'),(6263,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Loader/ArrayLoader.php'),(6264,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Loader/ChainLoader.php'),(6265,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Loader/ExistsLoaderInterface.php'),(6266,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Loader/FilesystemLoader.php'),(6267,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Loader/LoaderInterface.php'),(6268,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Loader/SourceContextLoaderInterface.php'),(6269,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Markup.php'),(6270,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/AutoEscapeNode.php'),(6271,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/BlockNode.php'),(6272,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/BlockReferenceNode.php'),(6273,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/BodyNode.php'),(6274,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/CheckSecurityNode.php'),(6275,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/CheckToStringNode.php'),(6276,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/DeprecatedNode.php'),(6277,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/DoNode.php'),(6278,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/EmbedNode.php'),(6279,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/AbstractExpression.php'),(6280,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/ArrayExpression.php'),(6281,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/ArrowFunctionExpression.php'),(6282,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/AssignNameExpression.php'),(6283,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/AbstractBinary.php'),(6284,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/AddBinary.php'),(6285,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/AndBinary.php'),(6286,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/BitwiseAndBinary.php'),(6287,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/BitwiseOrBinary.php'),(6288,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/BitwiseXorBinary.php'),(6289,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/ConcatBinary.php'),(6290,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/DivBinary.php'),(6291,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/EndsWithBinary.php'),(6292,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/EqualBinary.php'),(6293,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/FloorDivBinary.php'),(6294,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/GreaterBinary.php'),(6295,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/GreaterEqualBinary.php'),(6296,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/InBinary.php'),(6297,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/LessBinary.php'),(6298,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/LessEqualBinary.php'),(6299,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/MatchesBinary.php'),(6300,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/ModBinary.php'),(6301,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/MulBinary.php'),(6302,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/NotEqualBinary.php'),(6303,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/NotInBinary.php'),(6304,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/OrBinary.php'),(6305,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/PowerBinary.php'),(6306,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/RangeBinary.php'),(6307,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/StartsWithBinary.php'),(6308,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Binary/SubBinary.php'),(6309,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/BlockReferenceExpression.php'),(6310,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/CallExpression.php'),(6311,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/ConditionalExpression.php'),(6312,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/ConstantExpression.php'),(6313,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Filter/DefaultFilter.php'),(6314,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/FilterExpression.php'),(6315,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/FunctionExpression.php'),(6316,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/GetAttrExpression.php'),(6317,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/InlinePrint.php'),(6318,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/MethodCallExpression.php'),(6319,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/NameExpression.php'),(6320,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/NullCoalesceExpression.php'),(6321,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/ParentExpression.php'),(6322,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/TempNameExpression.php'),(6323,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/ConstantTest.php'),(6324,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/DefinedTest.php'),(6325,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/DivisiblebyTest.php'),(6326,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/EvenTest.php'),(6327,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/NullTest.php'),(6328,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/OddTest.php'),(6329,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Test/SameasTest.php'),(6330,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/TestExpression.php'),(6331,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Unary/AbstractUnary.php'),(6332,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Unary/NegUnary.php'),(6333,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Unary/NotUnary.php'),(6334,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Expression/Unary/PosUnary.php'),(6335,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/FlushNode.php'),(6336,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/ForLoopNode.php'),(6337,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/ForNode.php'),(6338,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/IfNode.php'),(6339,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/ImportNode.php'),(6340,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/IncludeNode.php'),(6341,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/MacroNode.php'),(6342,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/ModuleNode.php'),(6343,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/Node.php'),(6344,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/NodeCaptureInterface.php'),(6345,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/NodeOutputInterface.php'),(6346,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/PrintNode.php'),(6347,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/SandboxNode.php'),(6348,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/SandboxedPrintNode.php'),(6349,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/SetNode.php'),(6350,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/SetTempNode.php'),(6351,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/SpacelessNode.php'),(6352,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/TextNode.php'),(6353,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Node/WithNode.php'),(6354,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeTraverser.php'),(6355,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php'),(6356,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeVisitor/EscaperNodeVisitor.php'),(6357,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeVisitor/NodeVisitorInterface.php'),(6358,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeVisitor/OptimizerNodeVisitor.php'),(6359,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php'),(6360,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/NodeVisitor/SandboxNodeVisitor.php'),(6361,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Parser.php'),(6362,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Dumper/BaseDumper.php'),(6363,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Dumper/BlackfireDumper.php'),(6364,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Dumper/HtmlDumper.php'),(6365,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Dumper/TextDumper.php'),(6366,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Node/EnterProfileNode.php'),(6367,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Node/LeaveProfileNode.php'),(6368,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php'),(6369,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Profiler/Profile.php'),(6370,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/RuntimeLoader/ContainerRuntimeLoader.php'),(6371,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/RuntimeLoader/FactoryRuntimeLoader.php'),(6372,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/RuntimeLoader/RuntimeLoaderInterface.php'),(6373,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityError.php'),(6374,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFilterError.php'),(6375,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFunctionError.php'),(6376,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityNotAllowedMethodError.php'),(6377,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php'),(6378,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityNotAllowedTagError.php'),(6379,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityPolicy.php'),(6380,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Sandbox/SecurityPolicyInterface.php'),(6381,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Source.php'),(6382,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Template.php'),(6383,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TemplateWrapper.php'),(6384,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Test/IntegrationTestCase.php'),(6385,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Test/NodeTestCase.php'),(6386,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Token.php'),(6387,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/AbstractTokenParser.php'),(6388,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/ApplyTokenParser.php'),(6389,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/AutoEscapeTokenParser.php'),(6390,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/BlockTokenParser.php'),(6391,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/DeprecatedTokenParser.php'),(6392,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/DoTokenParser.php'),(6393,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/EmbedTokenParser.php'),(6394,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/ExtendsTokenParser.php'),(6395,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/FilterTokenParser.php'),(6396,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/FlushTokenParser.php'),(6397,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/ForTokenParser.php'),(6398,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/FromTokenParser.php'),(6399,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/IfTokenParser.php'),(6400,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/ImportTokenParser.php'),(6401,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/IncludeTokenParser.php'),(6402,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/MacroTokenParser.php'),(6403,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/SandboxTokenParser.php'),(6404,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/SetTokenParser.php'),(6405,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/SpacelessTokenParser.php'),(6406,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/TokenParserInterface.php'),(6407,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/UseTokenParser.php'),(6408,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenParser/WithTokenParser.php'),(6409,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TokenStream.php'),(6410,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TwigFilter.php'),(6411,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TwigFunction.php'),(6412,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/TwigTest.php'),(6413,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Util/DeprecationCollector.php'),(6414,'wp-content/plugins/responsive-menu/vendor/twig/twig/src/Util/TemplateDirIterator.php'),(6415,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/AutoloaderTest.php'),(6416,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Cache/FilesystemTest.php'),(6417,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/CompilerTest.php'),(6418,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/ContainerRuntimeLoaderTest.php'),(6419,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/CustomExtensionTest.php'),(6420,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/EnvironmentTest.php'),(6421,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/ErrorTest.php'),(6422,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/ExpressionParserTest.php'),(6423,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Extension/CoreTest.php'),(6424,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Extension/SandboxTest.php'),(6425,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/FactoryRuntimeLoaderTest.php'),(6426,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/FileCachingTest.php'),(6427,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/FileExtensionEscapingStrategyTest.php'),(6428,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/FilesystemHelper.php'),(6429,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Fixtures/errors/base.html'),(6430,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Fixtures/errors/index.html'),(6431,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Fixtures/errors/leak-output.php'),(6432,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/IntegrationTest.php'),(6433,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/LegacyIntegrationTest.php'),(6434,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/LexerTest.php'),(6435,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/ArrayTest.php'),(6436,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/ChainTest.php'),(6437,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/FilesystemTest.php'),(6438,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_empty_parent.html.twig'),(6439,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_nonexistent_parent.html.twig'),(6440,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_null_parent.html.twig'),(6441,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_valid_parent.html.twig'),(6442,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/parent.html.twig'),(6443,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/spare_parent.html.twig'),(6444,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named/index.html'),(6445,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_bis/index.html'),(6446,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_final/index.html'),(6447,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_quater/named_absolute.html'),(6448,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_ter/index.html'),(6449,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal/index.html'),(6450,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_bis/index.html'),(6451,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_final/index.html'),(6452,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_ter/index.html'),(6453,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme1/blocks.html.twig'),(6454,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme2/blocks.html.twig'),(6455,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/NativeExtensionTest.php'),(6456,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/AutoEscapeTest.php'),(6457,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/BlockReferenceTest.php'),(6458,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/BlockTest.php'),(6459,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/DeprecatedTest.php'),(6460,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/DoTest.php'),(6461,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/ArrayTest.php'),(6462,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/AssignNameTest.php'),(6463,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/AddTest.php'),(6464,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/AndTest.php'),(6465,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/ConcatTest.php'),(6466,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/DivTest.php'),(6467,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/FloorDivTest.php'),(6468,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/ModTest.php'),(6469,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/MulTest.php'),(6470,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/OrTest.php'),(6471,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/SubTest.php'),(6472,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/CallTest.php'),(6473,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/ConditionalTest.php'),(6474,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/ConstantTest.php'),(6475,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/FilterTest.php'),(6476,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/FunctionTest.php'),(6477,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/GetAttrTest.php'),(6478,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/NameTest.php'),(6479,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/NullCoalesceTest.php'),(6480,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/FilterInclude.php'),(6481,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/FunctionInclude.php'),(6482,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/TestInclude.php'),(6483,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/ParentTest.php'),(6484,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/TestTest.php'),(6485,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Unary/NegTest.php'),(6486,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Unary/NotTest.php'),(6487,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/Expression/Unary/PosTest.php'),(6488,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/ForTest.php'),(6489,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/IfTest.php'),(6490,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/ImportTest.php'),(6491,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/IncludeTest.php'),(6492,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/MacroTest.php'),(6493,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/ModuleTest.php'),(6494,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/PrintTest.php'),(6495,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/SandboxTest.php'),(6496,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/SandboxedPrintTest.php'),(6497,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/SetTest.php'),(6498,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/SpacelessTest.php'),(6499,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Node/TextTest.php'),(6500,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/NodeTraverserTest.php'),(6501,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/NodeVisitor/OptimizerTest.php'),(6502,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/ParserTest.php'),(6503,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/AbstractTest.php'),(6504,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/BlackfireTest.php'),(6505,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/HtmlTest.php'),(6506,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/TextTest.php'),(6507,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Profiler/ProfileTest.php'),(6508,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/TemplateTest.php'),(6509,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/TemplateWrapperTest.php'),(6510,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/TokenStreamTest.php'),(6511,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/Util/DeprecationCollectorTest.php'),(6512,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/Twig/Tests/escapingTest.php'),(6513,'wp-content/plugins/responsive-menu/vendor/twig/twig/test/bootstrap.php'),(6514,'wp-content/plugins/responsive-menu/views/admin/alerts.html.twig'),(6515,'wp-content/plugins/responsive-menu/views/admin/banners.html.twig'),(6516,'wp-content/plugins/responsive-menu/views/admin/macros.html.twig'),(6517,'wp-content/plugins/responsive-menu/views/admin/main.html.twig'),(6518,'wp-content/plugins/responsive-menu/views/admin/options.html.twig'),(6519,'wp-content/plugins/responsive-menu/views/admin/sections/advanced.html.twig'),(6520,'wp-content/plugins/responsive-menu/views/admin/sections/button.html.twig'),(6521,'wp-content/plugins/responsive-menu/views/admin/sections/container.html.twig'),(6522,'wp-content/plugins/responsive-menu/views/admin/sections/desktop-menu.html.twig'),(6523,'wp-content/plugins/responsive-menu/views/admin/sections/header-bar.html.twig'),(6524,'wp-content/plugins/responsive-menu/views/admin/sections/initial-setup.html.twig'),(6525,'wp-content/plugins/responsive-menu/views/admin/sections/license.html.twig'),(6526,'wp-content/plugins/responsive-menu/views/admin/sections/menu.html.twig'),(6527,'wp-content/plugins/responsive-menu/views/admin/sections/modules/container-ordering.html.twig'),(6528,'wp-content/plugins/responsive-menu/views/admin/sections/modules/desktop-menu-settings.html.twig'),(6529,'wp-content/plugins/responsive-menu/views/admin/sections/modules/excluded-pages.html.twig'),(6530,'wp-content/plugins/responsive-menu/views/admin/sections/modules/font-icons.html.twig'),(6531,'wp-content/plugins/responsive-menu/views/admin/sections/modules/header-bar-ordering.html.twig'),(6532,'wp-content/plugins/responsive-menu/views/admin/sections/modules/license-key.html.twig'),(6533,'wp-content/plugins/responsive-menu/views/admin/sections/modules/rebuild.html.twig'),(6534,'wp-content/plugins/responsive-menu/views/admin/sections/modules/transfer.html.twig'),(6535,'wp-content/plugins/responsive-menu/views/admin/sections/sub-menus.html.twig'),(6536,'wp-content/plugins/responsive-menu/views/admin/sections/technical.html.twig'),(6537,'wp-content/plugins/responsive-menu/views/admin/sections/themes.html.twig'),(6538,'wp-content/plugins/responsive-menu/views/admin/tabs.html.twig'),(6539,'wp-content/plugins/responsive-menu/views/app/additional-content.html.twig'),(6540,'wp-content/plugins/responsive-menu/views/app/button.html.twig'),(6541,'wp-content/plugins/responsive-menu/views/app/container.html.twig'),(6542,'wp-content/plugins/responsive-menu/views/app/menu.html.twig'),(6543,'wp-content/plugins/responsive-menu/views/app/search.html.twig'),(6544,'wp-content/plugins/responsive-menu/views/app/title.html.twig'),(6545,'wp-content/plugins/responsive-menu/views/app.html.twig'),(6546,'wp-content/plugins/responsive-menu/views/preview.html.twig'),(6547,'wp-content/plugins/slider-images/Images/1-1.png'),(6548,'wp-content/plugins/slider-images/Images/1.png'),(6549,'wp-content/plugins/slider-images/Images/10-10.png'),(6550,'wp-content/plugins/slider-images/Images/10.png'),(6551,'wp-content/plugins/slider-images/Images/11-11.png'),(6552,'wp-content/plugins/slider-images/Images/11.png'),(6553,'wp-content/plugins/slider-images/Images/12-12.png'),(6554,'wp-content/plugins/slider-images/Images/12.png'),(6555,'wp-content/plugins/slider-images/Images/13-13.png'),(6556,'wp-content/plugins/slider-images/Images/13.png'),(6557,'wp-content/plugins/slider-images/Images/14-14.png'),(6558,'wp-content/plugins/slider-images/Images/14.png'),(6559,'wp-content/plugins/slider-images/Images/2-2.png'),(6560,'wp-content/plugins/slider-images/Images/2.png'),(6561,'wp-content/plugins/slider-images/Images/3-3.png'),(6562,'wp-content/plugins/slider-images/Images/3.png'),(6563,'wp-content/plugins/slider-images/Images/4-4.png'),(6564,'wp-content/plugins/slider-images/Images/4.png'),(6565,'wp-content/plugins/slider-images/Images/5-5.png'),(6566,'wp-content/plugins/slider-images/Images/5.png'),(6567,'wp-content/plugins/slider-images/Images/6-6.png'),(6568,'wp-content/plugins/slider-images/Images/6.png'),(6569,'wp-content/plugins/slider-images/Images/7-7.png'),(6570,'wp-content/plugins/slider-images/Images/7.png'),(6571,'wp-content/plugins/slider-images/Images/8-8.png'),(6572,'wp-content/plugins/slider-images/Images/8.png'),(6573,'wp-content/plugins/slider-images/Images/9-9.png'),(6574,'wp-content/plugins/slider-images/Images/9.png'),(6575,'wp-content/plugins/slider-images/Images/ConFailed_Photo_Slider.jpg'),(6576,'wp-content/plugins/slider-images/Images/Products/Coming-Soon.png'),(6577,'wp-content/plugins/slider-images/Images/Products/Forms.png'),(6578,'wp-content/plugins/slider-images/Images/Products/Gallery-Image.png'),(6579,'wp-content/plugins/slider-images/Images/Products/Share-Button.png'),(6580,'wp-content/plugins/slider-images/Images/Products/Slider-Image.png'),(6581,'wp-content/plugins/slider-images/Images/Products/Slider-Video.png'),(6582,'wp-content/plugins/slider-images/Images/Products/Tabs.png'),(6583,'wp-content/plugins/slider-images/Images/Products/Timeline.png'),(6584,'wp-content/plugins/slider-images/Images/admin.png'),(6585,'wp-content/plugins/slider-images/Images/ajax-loader.gif'),(6586,'wp-content/plugins/slider-images/Images/icon-1-1.png'),(6587,'wp-content/plugins/slider-images/Images/icon-1.png'),(6588,'wp-content/plugins/slider-images/Images/icon-10-10.png'),(6589,'wp-content/plugins/slider-images/Images/icon-10.png'),(6590,'wp-content/plugins/slider-images/Images/icon-11-11.png'),(6591,'wp-content/plugins/slider-images/Images/icon-11.png'),(6592,'wp-content/plugins/slider-images/Images/icon-12-12.png'),(6593,'wp-content/plugins/slider-images/Images/icon-12.png'),(6594,'wp-content/plugins/slider-images/Images/icon-13-13.png'),(6595,'wp-content/plugins/slider-images/Images/icon-13.png'),(6596,'wp-content/plugins/slider-images/Images/icon-14-14.png'),(6597,'wp-content/plugins/slider-images/Images/icon-14.png'),(6598,'wp-content/plugins/slider-images/Images/icon-15-15.png'),(6599,'wp-content/plugins/slider-images/Images/icon-15.png'),(6600,'wp-content/plugins/slider-images/Images/icon-16-16.png'),(6601,'wp-content/plugins/slider-images/Images/icon-16.png'),(6602,'wp-content/plugins/slider-images/Images/icon-17-17.png'),(6603,'wp-content/plugins/slider-images/Images/icon-17.png'),(6604,'wp-content/plugins/slider-images/Images/icon-18-18.png'),(6605,'wp-content/plugins/slider-images/Images/icon-18.png'),(6606,'wp-content/plugins/slider-images/Images/icon-19-19.png'),(6607,'wp-content/plugins/slider-images/Images/icon-19.png'),(6608,'wp-content/plugins/slider-images/Images/icon-2-2.png'),(6609,'wp-content/plugins/slider-images/Images/icon-2.png'),(6610,'wp-content/plugins/slider-images/Images/icon-20-20.png'),(6611,'wp-content/plugins/slider-images/Images/icon-20.png'),(6612,'wp-content/plugins/slider-images/Images/icon-21-21.png'),(6613,'wp-content/plugins/slider-images/Images/icon-21.png'),(6614,'wp-content/plugins/slider-images/Images/icon-22-22.png'),(6615,'wp-content/plugins/slider-images/Images/icon-22.png'),(6616,'wp-content/plugins/slider-images/Images/icon-23-23.png'),(6617,'wp-content/plugins/slider-images/Images/icon-23.png'),(6618,'wp-content/plugins/slider-images/Images/icon-24-24.png'),(6619,'wp-content/plugins/slider-images/Images/icon-24.png'),(6620,'wp-content/plugins/slider-images/Images/icon-25-25.png'),(6621,'wp-content/plugins/slider-images/Images/icon-25.png'),(6622,'wp-content/plugins/slider-images/Images/icon-26-26.png'),(6623,'wp-content/plugins/slider-images/Images/icon-26.png'),(6624,'wp-content/plugins/slider-images/Images/icon-27-27.png'),(6625,'wp-content/plugins/slider-images/Images/icon-27.png'),(6626,'wp-content/plugins/slider-images/Images/icon-28-28.png'),(6627,'wp-content/plugins/slider-images/Images/icon-28.png'),(6628,'wp-content/plugins/slider-images/Images/icon-3-3.png'),(6629,'wp-content/plugins/slider-images/Images/icon-3.png'),(6630,'wp-content/plugins/slider-images/Images/icon-4-4.png'),(6631,'wp-content/plugins/slider-images/Images/icon-4.png'),(6632,'wp-content/plugins/slider-images/Images/icon-5-5.png'),(6633,'wp-content/plugins/slider-images/Images/icon-5.png'),(6634,'wp-content/plugins/slider-images/Images/icon-6-6.png'),(6635,'wp-content/plugins/slider-images/Images/icon-6.png'),(6636,'wp-content/plugins/slider-images/Images/icon-7-7.png'),(6637,'wp-content/plugins/slider-images/Images/icon-7.png'),(6638,'wp-content/plugins/slider-images/Images/icon-8-8.png'),(6639,'wp-content/plugins/slider-images/Images/icon-8.png'),(6640,'wp-content/plugins/slider-images/Images/icon-9-9.png'),(6641,'wp-content/plugins/slider-images/Images/icon-9.png'),(6642,'wp-content/plugins/slider-images/Images/nav.png'),(6643,'wp-content/plugins/slider-images/Images/next_1.png'),(6644,'wp-content/plugins/slider-images/Images/next_2.png'),(6645,'wp-content/plugins/slider-images/Images/prev_1.png'),(6646,'wp-content/plugins/slider-images/Images/prev_2.png'),(6647,'wp-content/plugins/slider-images/Images/rich-web-logo.png'),(6648,'wp-content/plugins/slider-images/Images/transparency-grid.png'),(6649,'wp-content/plugins/slider-images/PHP/RW_Img_Slider_Accordion.php'),(6650,'wp-content/plugins/slider-images/PHP/RW_Img_Slider_Carousel.php'),(6651,'wp-content/plugins/slider-images/PHP/RW_Img_Slider_Dynamic.php'),(6652,'wp-content/plugins/slider-images/PHP/RW_Img_Slider_Fashion.php'),(6653,'wp-content/plugins/slider-images/PHP/RW_Img_Slider_Flexible.php'),(6654,'wp-content/plugins/slider-images/PHP/RW_Img_Slider_Navigation.php'),(6655,'wp-content/plugins/slider-images/README.txt'),(6656,'wp-content/plugins/slider-images/Rich-Web-Products.php'),(6657,'wp-content/plugins/slider-images/Rich-Web-Slider-Admin.php'),(6658,'wp-content/plugins/slider-images/Rich-Web-Slider-Admin_two.php'),(6659,'wp-content/plugins/slider-images/Rich-Web-Slider-Ajax.php'),(6660,'wp-content/plugins/slider-images/Rich-Web-Slider-Ajax_two.php'),(6661,'wp-content/plugins/slider-images/Rich-Web-Slider-Check.php'),(6662,'wp-content/plugins/slider-images/Rich-Web-Slider-General.php'),(6663,'wp-content/plugins/slider-images/Rich-Web-Slider-Header.php'),(6664,'wp-content/plugins/slider-images/Rich-Web-Slider-Install.php'),(6665,'wp-content/plugins/slider-images/Rich-Web-Slider-Shortcode.php'),(6666,'wp-content/plugins/slider-images/Rich-Web-Slider-Widget.php'),(6667,'wp-content/plugins/slider-images/Scripts/RW_Img_Slider_Accordion.js.php'),(6668,'wp-content/plugins/slider-images/Scripts/RW_Img_Slider_Carousel.js.php'),(6669,'wp-content/plugins/slider-images/Scripts/RW_Img_Slider_Dynamic.js.php'),(6670,'wp-content/plugins/slider-images/Scripts/RW_Img_Slider_Fashion.js.php'),(6671,'wp-content/plugins/slider-images/Scripts/RW_Img_Slider_Flexible.js.php'),(6672,'wp-content/plugins/slider-images/Scripts/RW_Img_Slider_Navigation.js.php'),(6673,'wp-content/plugins/slider-images/Scripts/Rich-Web-Slider-Admin.js'),(6674,'wp-content/plugins/slider-images/Scripts/Rich-Web-Slider-Admin_two.js'),(6675,'wp-content/plugins/slider-images/Scripts/Rich-Web-Slider-General.js.php'),(6676,'wp-content/plugins/slider-images/Scripts/Rich-Web-Slider-Widget.js'),(6677,'wp-content/plugins/slider-images/Scripts/alpha-color-picker.js'),(6678,'wp-content/plugins/slider-images/Scripts/fashion.js'),(6679,'wp-content/plugins/slider-images/Scripts/fonts/FontAwesome.otf'),(6680,'wp-content/plugins/slider-images/Scripts/fonts/fontawesome-webfont.eot'),(6681,'wp-content/plugins/slider-images/Scripts/fonts/fontawesome-webfont.svg'),(6682,'wp-content/plugins/slider-images/Scripts/fonts/fontawesome-webfont.ttf'),(6683,'wp-content/plugins/slider-images/Scripts/fonts/fontawesome-webfont.woff'),(6684,'wp-content/plugins/slider-images/Scripts/fonts/fontawesome-webfont.woff2'),(6685,'wp-content/plugins/slider-images/Scripts/jquery.anythingslider.min.js'),(6686,'wp-content/plugins/slider-images/Scripts/jquery.colorbox-min.js'),(6687,'wp-content/plugins/slider-images/Scripts/jquery.easing.1.2.js'),(6688,'wp-content/plugins/slider-images/Scripts/jquery.flexslider-min.js'),(6689,'wp-content/plugins/slider-images/Scripts/jquery.slideshow.js'),(6690,'wp-content/plugins/slider-images/Scripts/jquery.tinymce.min.js'),(6691,'wp-content/plugins/slider-images/Scripts/jquery.tmpl.min.js'),(6692,'wp-content/plugins/slider-images/Scripts/mislider.js'),(6693,'wp-content/plugins/slider-images/Scripts/plugins/advlist/plugin.min.js'),(6694,'wp-content/plugins/slider-images/Scripts/plugins/anchor/plugin.min.js'),(6695,'wp-content/plugins/slider-images/Scripts/plugins/autolink/plugin.min.js'),(6696,'wp-content/plugins/slider-images/Scripts/plugins/autoresize/plugin.min.js'),(6697,'wp-content/plugins/slider-images/Scripts/plugins/autosave/plugin.min.js'),(6698,'wp-content/plugins/slider-images/Scripts/plugins/bbcode/plugin.min.js'),(6699,'wp-content/plugins/slider-images/Scripts/plugins/charmap/plugin.min.js'),(6700,'wp-content/plugins/slider-images/Scripts/plugins/code/plugin.min.js'),(6701,'wp-content/plugins/slider-images/Scripts/plugins/codesample/css/prism.css'),(6702,'wp-content/plugins/slider-images/Scripts/plugins/codesample/plugin.min.js'),(6703,'wp-content/plugins/slider-images/Scripts/plugins/colorpicker/plugin.min.js'),(6704,'wp-content/plugins/slider-images/Scripts/plugins/contextmenu/plugin.min.js'),(6705,'wp-content/plugins/slider-images/Scripts/plugins/directionality/plugin.min.js'),(6706,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-cool.gif'),(6707,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-cry.gif'),(6708,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-embarassed.gif'),(6709,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-foot-in-mouth.gif'),(6710,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-frown.gif'),(6711,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-innocent.gif'),(6712,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-kiss.gif'),(6713,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-laughing.gif'),(6714,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-money-mouth.gif'),(6715,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-sealed.gif'),(6716,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-smile.gif'),(6717,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-surprised.gif'),(6718,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-tongue-out.gif'),(6719,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-undecided.gif'),(6720,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-wink.gif'),(6721,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/img/smiley-yell.gif'),(6722,'wp-content/plugins/slider-images/Scripts/plugins/emoticons/plugin.min.js'),(6723,'wp-content/plugins/slider-images/Scripts/plugins/fullpage/plugin.min.js'),(6724,'wp-content/plugins/slider-images/Scripts/plugins/fullscreen/plugin.min.js'),(6725,'wp-content/plugins/slider-images/Scripts/plugins/help/img/logo.png'),(6726,'wp-content/plugins/slider-images/Scripts/plugins/help/plugin.min.js'),(6727,'wp-content/plugins/slider-images/Scripts/plugins/hr/plugin.min.js'),(6728,'wp-content/plugins/slider-images/Scripts/plugins/image/plugin.min.js'),(6729,'wp-content/plugins/slider-images/Scripts/plugins/imagetools/plugin.min.js'),(6730,'wp-content/plugins/slider-images/Scripts/plugins/importcss/plugin.min.js'),(6731,'wp-content/plugins/slider-images/Scripts/plugins/insertdatetime/plugin.min.js'),(6732,'wp-content/plugins/slider-images/Scripts/plugins/legacyoutput/plugin.min.js'),(6733,'wp-content/plugins/slider-images/Scripts/plugins/link/plugin.min.js'),(6734,'wp-content/plugins/slider-images/Scripts/plugins/lists/plugin.min.js'),(6735,'wp-content/plugins/slider-images/Scripts/plugins/media/plugin.min.js'),(6736,'wp-content/plugins/slider-images/Scripts/plugins/nonbreaking/plugin.min.js'),(6737,'wp-content/plugins/slider-images/Scripts/plugins/noneditable/plugin.min.js'),(6738,'wp-content/plugins/slider-images/Scripts/plugins/pagebreak/plugin.min.js'),(6739,'wp-content/plugins/slider-images/Scripts/plugins/paste/plugin.min.js'),(6740,'wp-content/plugins/slider-images/Scripts/plugins/preview/plugin.min.js'),(6741,'wp-content/plugins/slider-images/Scripts/plugins/print/plugin.min.js'),(6742,'wp-content/plugins/slider-images/Scripts/plugins/save/plugin.min.js'),(6743,'wp-content/plugins/slider-images/Scripts/plugins/searchreplace/plugin.min.js'),(6744,'wp-content/plugins/slider-images/Scripts/plugins/spellchecker/plugin.min.js'),(6745,'wp-content/plugins/slider-images/Scripts/plugins/tabfocus/plugin.min.js'),(6746,'wp-content/plugins/slider-images/Scripts/plugins/table/plugin.min.js'),(6747,'wp-content/plugins/slider-images/Scripts/plugins/template/plugin.min.js'),(6748,'wp-content/plugins/slider-images/Scripts/plugins/textcolor/plugin.min.js'),(6749,'wp-content/plugins/slider-images/Scripts/plugins/textpattern/plugin.min.js'),(6750,'wp-content/plugins/slider-images/Scripts/plugins/toc/plugin.min.js'),(6751,'wp-content/plugins/slider-images/Scripts/plugins/visualblocks/css/visualblocks.css'),(6752,'wp-content/plugins/slider-images/Scripts/plugins/visualblocks/plugin.min.js'),(6753,'wp-content/plugins/slider-images/Scripts/plugins/visualchars/plugin.min.js'),(6754,'wp-content/plugins/slider-images/Scripts/plugins/wordcount/plugin.min.js'),(6755,'wp-content/plugins/slider-images/Scripts/skins/lightgray/content.inline.min.css'),(6756,'wp-content/plugins/slider-images/Scripts/skins/lightgray/content.min.css'),(6757,'wp-content/plugins/slider-images/Scripts/skins/lightgray/content.mobile.min.css'),(6758,'wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce-mobile.woff'),(6759,'wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce-small.eot'),(6760,'wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce-small.svg'),(6761,'wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce-small.ttf'),(6762,'wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce-small.woff'),(6763,'wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce.eot'),(6764,'wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce.svg'),(6765,'wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce.ttf'),(6766,'wp-content/plugins/slider-images/Scripts/skins/lightgray/fonts/tinymce.woff'),(6767,'wp-content/plugins/slider-images/Scripts/skins/lightgray/img/anchor.gif'),(6768,'wp-content/plugins/slider-images/Scripts/skins/lightgray/img/loader.gif'),(6769,'wp-content/plugins/slider-images/Scripts/skins/lightgray/img/object.gif'),(6770,'wp-content/plugins/slider-images/Scripts/skins/lightgray/img/trans.gif'),(6771,'wp-content/plugins/slider-images/Scripts/skins/lightgray/skin.min.css'),(6772,'wp-content/plugins/slider-images/Scripts/skins/lightgray/skin.mobile.min.css'),(6773,'wp-content/plugins/slider-images/Scripts/themes/inlite/theme.min.js'),(6774,'wp-content/plugins/slider-images/Scripts/themes/mobile/theme.min.js'),(6775,'wp-content/plugins/slider-images/Scripts/themes/modern/theme.min.js'),(6776,'wp-content/plugins/slider-images/Scripts/tinymce.min.js'),(6777,'wp-content/plugins/slider-images/Slider.php'),(6778,'wp-content/plugins/slider-images/Style/RW_Img_Slider_Accordion.css.php'),(6779,'wp-content/plugins/slider-images/Style/RW_Img_Slider_Carousel.css.php'),(6780,'wp-content/plugins/slider-images/Style/RW_Img_Slider_Dynamic.css.php'),(6781,'wp-content/plugins/slider-images/Style/RW_Img_Slider_Fashion.css.php'),(6782,'wp-content/plugins/slider-images/Style/RW_Img_Slider_Flexible.css.php'),(6783,'wp-content/plugins/slider-images/Style/RW_Img_Slider_Navigation.css.php'),(6784,'wp-content/plugins/slider-images/Style/Rich-Web-Slider-Admin.css.php'),(6785,'wp-content/plugins/slider-images/Style/Rich-Web-Slider-General.css.php'),(6786,'wp-content/plugins/slider-images/Style/Rich-Web-Slider-Widget.css'),(6787,'wp-content/plugins/slider-images/Style/Slider_Carousel.css'),(6788,'wp-content/plugins/slider-images/Style/alpha-color-picker.css'),(6789,'wp-content/plugins/slider-images/Style/animateSlSVG.css'),(6790,'wp-content/plugins/slider-images/Style/fashion.css'),(6791,'wp-content/plugins/slider-images/Style/flexslider.css'),(6792,'wp-content/plugins/slider-images/Style/mislider.css'),(6793,'wp-content/plugins/slider-images/Style/richwebicons.css'),(6794,'wp-content/plugins/ultimate-responsive-image-slider/admin-banner.php'),(6795,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/bootstrap-latest/bootstrap-admin.css'),(6796,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/bootstrap-latest/bootstrap.css'),(6797,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/bootstrap-latest/bootstrap.min-product.css'),(6798,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/codemirror/blackboard.css'),(6799,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/codemirror/codemirror.css'),(6800,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/codemirror/codemirror.js'),(6801,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/codemirror/css-hint.js'),(6802,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/codemirror/ris-css.js'),(6803,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/codemirror/show-hint.css'),(6804,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/editor-modal.css'),(6805,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/css/fa-brands.css'),(6806,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/css/fa-regular.css'),(6807,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/css/fa-solid.css'),(6808,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/css/fontawesome-all.css'),(6809,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/css/fontawesome.css'),(6810,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/fonts/FontAwesome.otf'),(6811,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/fonts/fontawesome-webfont.eot'),(6812,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/fonts/fontawesome-webfont.svg'),(6813,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/fonts/fontawesome-webfont.ttf'),(6814,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/fonts/fontawesome-webfont.woff'),(6815,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/fonts/fontawesome-webfont.woff2'),(6816,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_animated.less'),(6817,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_bordered-pulled.less'),(6818,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_core.less'),(6819,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_fixed-width.less'),(6820,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_icons.less'),(6821,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_larger.less'),(6822,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_list.less'),(6823,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_mixins.less'),(6824,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_rotated-flipped.less'),(6825,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_screen-reader.less'),(6826,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_stacked.less'),(6827,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/_variables.less'),(6828,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/fa-brands.less'),(6829,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/fa-regular.less'),(6830,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/fa-solid.less'),(6831,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/less/fontawesome.less'),(6832,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_animated.scss'),(6833,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_bordered-pulled.scss'),(6834,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_core.scss'),(6835,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_fixed-width.scss'),(6836,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_icons.scss'),(6837,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_larger.scss'),(6838,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_list.scss'),(6839,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_mixins.scss'),(6840,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_rotated-flipped.scss'),(6841,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_screen-reader.scss'),(6842,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_stacked.scss'),(6843,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/_variables.scss'),(6844,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/fa-brands.scss'),(6845,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/fa-regular.scss'),(6846,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/fa-solid.scss'),(6847,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/scss/fontawesome.scss'),(6848,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-brands-400.eot'),(6849,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-brands-400.svg'),(6850,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-brands-400.ttf'),(6851,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-brands-400.woff'),(6852,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-brands-400.woff2'),(6853,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-regular-400.eot'),(6854,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-regular-400.svg'),(6855,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-regular-400.ttf'),(6856,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-regular-400.woff'),(6857,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-regular-400.woff2'),(6858,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-solid-900.eot'),(6859,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-solid-900.svg'),(6860,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-solid-900.ttf'),(6861,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-solid-900.woff'),(6862,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/font-awesome-latest/webfonts/fa-solid-900.woff2'),(6863,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/images/blank.gif'),(6864,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/images/closedhand.cur'),(6865,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/images/openhand.cur'),(6866,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/slider-pro.css'),(6867,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/uris-feature-notice.css'),(6868,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/wpfrank-products.css'),(6869,'wp-content/plugins/ultimate-responsive-image-slider/assets/css/wpfrank-uris-settings.css'),(6870,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/5star.jpg'),(6871,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/close-icon.png'),(6872,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/loading.gif'),(6873,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Display Slide Description.png'),(6874,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Display Slide Title.png'),(6875,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Display Slider Post Title.png'),(6876,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Distance Between Slide.png'),(6877,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Fonts.png'),(6878,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Full Screen Slide Show.png'),(6879,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Navigation Bullets Color.png'),(6880,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Navigation Color.png'),(6881,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Selected Thumbnail Style Color.png'),(6882,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Selected Thumbnail Style.png'),(6883,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Show Navigation Arrow.png'),(6884,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Show Navigation Bullets.png'),(6885,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Show Thumbnail.png'),(6886,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Slide Description Background Color.png'),(6887,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Slide Description Color.png'),(6888,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Slide Title Background Color.png'),(6889,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Slide Title Color.png'),(6890,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Slider Height.png'),(6891,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Slider Width.png'),(6892,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Thumbnail Position.png'),(6893,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/preview/Thumbnail Resize.png'),(6894,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/products/Appointment-Scheduler-Pro.jpg'),(6895,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/products/Flickr-Album-Gallery-Pro.jpg'),(6896,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/products/Slider-Factory-Pro.png'),(6897,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/products/Ultimate-Responsive-Image-Slider-Pro.jpg'),(6898,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/products/slider-factory-free-wordpress-plugin.jpg'),(6899,'wp-content/plugins/ultimate-responsive-image-slider/assets/img/up.png'),(6900,'wp-content/plugins/ultimate-responsive-image-slider/assets/js/bootstrap.js'),(6901,'wp-content/plugins/ultimate-responsive-image-slider/assets/js/jquery.sliderPro.js'),(6902,'wp-content/plugins/ultimate-responsive-image-slider/assets/js/uris-ajax-script.js'),(6903,'wp-content/plugins/ultimate-responsive-image-slider/assets/js/wpfrank-uris-color-picker-custom.js'),(6904,'wp-content/plugins/ultimate-responsive-image-slider/assets/js/wpfrank-uris-multiple-media-uploader.js'),(6905,'wp-content/plugins/ultimate-responsive-image-slider/assets/tooltip/darktooltip.min.css'),(6906,'wp-content/plugins/ultimate-responsive-image-slider/assets/tooltip/jquery.darktooltip.min.js'),(6907,'wp-content/plugins/ultimate-responsive-image-slider/css/codemirror/codemirror.js'),(6908,'wp-content/plugins/ultimate-responsive-image-slider/css/codemirror/css-hint.js'),(6909,'wp-content/plugins/ultimate-responsive-image-slider/css/codemirror/ris-css.js'),(6910,'wp-content/plugins/ultimate-responsive-image-slider/css/font-awesome-latest/fonts/fontawesome-webfont.svg'),(6911,'wp-content/plugins/ultimate-responsive-image-slider/css/font-awesome-latest/webfonts/fa-brands-400.svg'),(6912,'wp-content/plugins/ultimate-responsive-image-slider/css/font-awesome-latest/webfonts/fa-regular-400.svg'),(6913,'wp-content/plugins/ultimate-responsive-image-slider/css/font-awesome-latest/webfonts/fa-solid-900.svg'),(6914,'wp-content/plugins/ultimate-responsive-image-slider/help-and-support.php'),(6915,'wp-content/plugins/ultimate-responsive-image-slider/js/bootstrap.min.js'),(6916,'wp-content/plugins/ultimate-responsive-image-slider/js/jquery.sliderPro.js'),(6917,'wp-content/plugins/ultimate-responsive-image-slider/js/uris-multiple-media-uploader.js'),(6918,'wp-content/plugins/ultimate-responsive-image-slider/js/wl-color-picker.js'),(6919,'wp-content/plugins/ultimate-responsive-image-slider/languages/ultimate-responsive-image-slider-en_EN.mo'),(6920,'wp-content/plugins/ultimate-responsive-image-slider/languages/ultimate-responsive-image-slider-en_EN.po'),(6921,'wp-content/plugins/ultimate-responsive-image-slider/languages/ultimate-responsive-image-slider-hi_IN.mo'),(6922,'wp-content/plugins/ultimate-responsive-image-slider/languages/ultimate-responsive-image-slider-hi_IN.po'),(6923,'wp-content/plugins/ultimate-responsive-image-slider/layout.php'),(6924,'wp-content/plugins/ultimate-responsive-image-slider/products.php'),(6925,'wp-content/plugins/ultimate-responsive-image-slider/readme.txt'),(6926,'wp-content/plugins/ultimate-responsive-image-slider/recover-slider.php'),(6927,'wp-content/plugins/ultimate-responsive-image-slider/settings.php'),(6928,'wp-content/plugins/ultimate-responsive-image-slider/shortcode.php'),(6929,'wp-content/plugins/ultimate-responsive-image-slider/tooltip/jquery.darktooltip.min.js'),(6930,'wp-content/plugins/ultimate-responsive-image-slider/tooltip.php'),(6931,'wp-content/plugins/ultimate-responsive-image-slider/ultimate-responsive-image-slider-settings-meta-box.php'),(6932,'wp-content/plugins/ultimate-responsive-image-slider/ultimate-responsive-image-slider-short-code.php'),(6933,'wp-content/plugins/ultimate-responsive-image-slider/ultimate-responsive-image-slider.php'),(6934,'wp-content/plugins/ultimate-responsive-image-slider/uris-feature-admin-notice.php'),(6935,'wp-content/plugins/ultimate-responsive-image-slider/uris-layout.php'),(6936,'wp-content/plugins/updraftplus/admin.php'),(6937,'wp-content/plugins/updraftplus/backup.php'),(6938,'wp-content/plugins/updraftplus/central/bootstrap.php'),(6939,'wp-content/plugins/updraftplus/central/classes/automatic-upgrader-skin-compatibility.php'),(6940,'wp-content/plugins/updraftplus/central/classes/class-automatic-upgrader-skin.php'),(6941,'wp-content/plugins/updraftplus/central/classes/class-udrpc.php'),(6942,'wp-content/plugins/updraftplus/central/commands.php'),(6943,'wp-content/plugins/updraftplus/central/factory.php'),(6944,'wp-content/plugins/updraftplus/central/interface.php'),(6945,'wp-content/plugins/updraftplus/central/listener.php'),(6946,'wp-content/plugins/updraftplus/central/modules/analytics.php'),(6947,'wp-content/plugins/updraftplus/central/modules/comments.php'),(6948,'wp-content/plugins/updraftplus/central/modules/core.php'),(6949,'wp-content/plugins/updraftplus/central/modules/media.php'),(6950,'wp-content/plugins/updraftplus/central/modules/pages.php'),(6951,'wp-content/plugins/updraftplus/central/modules/plugin.php'),(6952,'wp-content/plugins/updraftplus/central/modules/posts.php'),(6953,'wp-content/plugins/updraftplus/central/modules/theme.php'),(6954,'wp-content/plugins/updraftplus/central/modules/updates.php'),(6955,'wp-content/plugins/updraftplus/central/modules/users.php'),(6956,'wp-content/plugins/updraftplus/central/translations-updraftplus.php'),(6957,'wp-content/plugins/updraftplus/central/updraftplus.php'),(6958,'wp-content/plugins/updraftplus/changelog-old.txt'),(6959,'wp-content/plugins/updraftplus/class-updraftplus.php'),(6960,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-arrows-fix.css'),(6961,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-arrows-fix.min.css'),(6962,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-arrows-plain-buttons.css'),(6963,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-arrows-plain-buttons.min.css'),(6964,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-arrows.css'),(6965,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-arrows.min.css'),(6966,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-dark.css'),(6967,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-dark.min.css'),(6968,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-default.css'),(6969,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-default.min.css'),(6970,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-square-dark.css'),(6971,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-square-dark.min.css'),(6972,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-square.css'),(6973,'wp-content/plugins/updraftplus/css/tether-shepherd/shepherd-theme-square.min.css'),(6974,'wp-content/plugins/updraftplus/css/updraftplus-admin-1-22-11.min.css'),(6975,'wp-content/plugins/updraftplus/css/updraftplus-admin-1-22-11.min.css.map'),(6976,'wp-content/plugins/updraftplus/css/updraftplus-admin.css'),(6977,'wp-content/plugins/updraftplus/css/updraftplus-notices-1-22-11.min.css'),(6978,'wp-content/plugins/updraftplus/css/updraftplus-notices-1-22-11.min.css.map'),(6979,'wp-content/plugins/updraftplus/css/updraftplus-notices.css'),(6980,'wp-content/plugins/updraftplus/css/updraftplus-tour-1-22-11.min.css'),(6981,'wp-content/plugins/updraftplus/css/updraftplus-tour-1-22-11.min.css.map'),(6982,'wp-content/plugins/updraftplus/css/updraftplus-tour.css'),(6983,'wp-content/plugins/updraftplus/css/updraftplus-tour.scss'),(6984,'wp-content/plugins/updraftplus/example-decrypt.php'),(6985,'wp-content/plugins/updraftplus/images/addons-images/all.png'),(6986,'wp-content/plugins/updraftplus/images/addons-images/anonymisation.png'),(6987,'wp-content/plugins/updraftplus/images/addons-images/autobackup.png'),(6988,'wp-content/plugins/updraftplus/images/addons-images/azure.png'),(6989,'wp-content/plugins/updraftplus/images/addons-images/backblaze.png'),(6990,'wp-content/plugins/updraftplus/images/addons-images/cloudfiles-enhanced.png'),(6991,'wp-content/plugins/updraftplus/images/addons-images/dropbox-folders.png'),(6992,'wp-content/plugins/updraftplus/images/addons-images/fixtime.png'),(6993,'wp-content/plugins/updraftplus/images/addons-images/google-enhanced.png'),(6994,'wp-content/plugins/updraftplus/images/addons-images/googlecloud.png'),(6995,'wp-content/plugins/updraftplus/images/addons-images/importer.png'),(6996,'wp-content/plugins/updraftplus/images/addons-images/incremental.png'),(6997,'wp-content/plugins/updraftplus/images/addons-images/lockadmin.png'),(6998,'wp-content/plugins/updraftplus/images/addons-images/migrator.png'),(6999,'wp-content/plugins/updraftplus/images/addons-images/moredatabase.png'),(7000,'wp-content/plugins/updraftplus/images/addons-images/morefiles.png'),(7001,'wp-content/plugins/updraftplus/images/addons-images/morestorage.png'),(7002,'wp-content/plugins/updraftplus/images/addons-images/multisite.png'),(7003,'wp-content/plugins/updraftplus/images/addons-images/noadverts.png'),(7004,'wp-content/plugins/updraftplus/images/addons-images/onedrive.png'),(7005,'wp-content/plugins/updraftplus/images/addons-images/reporting.png'),(7006,'wp-content/plugins/updraftplus/images/addons-images/s3-enhanced.png'),(7007,'wp-content/plugins/updraftplus/images/addons-images/sftp.png'),(7008,'wp-content/plugins/updraftplus/images/addons-images/webdav.png'),(7009,'wp-content/plugins/updraftplus/images/addons-images/wp-cli.png'),(7010,'wp-content/plugins/updraftplus/images/automaticbackup.png'),(7011,'wp-content/plugins/updraftplus/images/aws_logo.png'),(7012,'wp-content/plugins/updraftplus/images/azure.png'),(7013,'wp-content/plugins/updraftplus/images/backblaze.png'),(7014,'wp-content/plugins/updraftplus/images/dashicon.png'),(7015,'wp-content/plugins/updraftplus/images/dreamobjects_logo-horiz-2013.png'),(7016,'wp-content/plugins/updraftplus/images/dropbox-logo.png'),(7017,'wp-content/plugins/updraftplus/images/googlecloud.png'),(7018,'wp-content/plugins/updraftplus/images/googledrive_logo.png'),(7019,'wp-content/plugins/updraftplus/images/icons/azure.png'),(7020,'wp-content/plugins/updraftplus/images/icons/backblaze.png'),(7021,'wp-content/plugins/updraftplus/images/icons/cloudfiles.png'),(7022,'wp-content/plugins/updraftplus/images/icons/dreamobjects.png'),(7023,'wp-content/plugins/updraftplus/images/icons/dropbox.png'),(7024,'wp-content/plugins/updraftplus/images/icons/email.png'),(7025,'wp-content/plugins/updraftplus/images/icons/folder.png'),(7026,'wp-content/plugins/updraftplus/images/icons/googlecloud.png'),(7027,'wp-content/plugins/updraftplus/images/icons/googledrive.png'),(7028,'wp-content/plugins/updraftplus/images/icons/lock.png'),(7029,'wp-content/plugins/updraftplus/images/icons/onedrive.png'),(7030,'wp-content/plugins/updraftplus/images/icons/openstack.png'),(7031,'wp-content/plugins/updraftplus/images/icons/s3.png'),(7032,'wp-content/plugins/updraftplus/images/icons/updraftvault.png'),(7033,'wp-content/plugins/updraftplus/images/icons/webdav.png'),(7034,'wp-content/plugins/updraftplus/images/notices/black_friday.png'),(7035,'wp-content/plugins/updraftplus/images/notices/keyy_logo.png'),(7036,'wp-content/plugins/updraftplus/images/notices/locksettings.png'),(7037,'wp-content/plugins/updraftplus/images/notices/new_year.png'),(7038,'wp-content/plugins/updraftplus/images/notices/reporting.png'),(7039,'wp-content/plugins/updraftplus/images/notices/spring.png'),(7040,'wp-content/plugins/updraftplus/images/notices/subscriben.png'),(7041,'wp-content/plugins/updraftplus/images/notices/summer.png'),(7042,'wp-content/plugins/updraftplus/images/notices/support.png'),(7043,'wp-content/plugins/updraftplus/images/notices/ud_smile.png'),(7044,'wp-content/plugins/updraftplus/images/notices/updraft_logo.png'),(7045,'wp-content/plugins/updraftplus/images/notices/wp_optimize_logo.png'),(7046,'wp-content/plugins/updraftplus/images/onedrive.png'),(7047,'wp-content/plugins/updraftplus/images/other-plugins/keyy.png'),(7048,'wp-content/plugins/updraftplus/images/other-plugins/meta-slider.png'),(7049,'wp-content/plugins/updraftplus/images/other-plugins/updraft-central.png'),(7050,'wp-content/plugins/updraftplus/images/other-plugins/wp-optimize.png'),(7051,'wp-content/plugins/updraftplus/images/padlock-150.png'),(7052,'wp-content/plugins/updraftplus/images/rackspacecloud-logo.png'),(7053,'wp-content/plugins/updraftplus/images/ud-logo-150.png'),(7054,'wp-content/plugins/updraftplus/images/ud-logo.png'),(7055,'wp-content/plugins/updraftplus/images/udlogo-rotating.gif'),(7056,'wp-content/plugins/updraftplus/images/udp-logo-white.png'),(7057,'wp-content/plugins/updraftplus/images/updraft_central_logo.png'),(7058,'wp-content/plugins/updraftplus/images/updraft_cross.png'),(7059,'wp-content/plugins/updraftplus/images/updraft_freev.png'),(7060,'wp-content/plugins/updraftplus/images/updraft_premv.png'),(7061,'wp-content/plugins/updraftplus/images/updraft_tick.png'),(7062,'wp-content/plugins/updraftplus/images/updraft_vault_logo.png'),(7063,'wp-content/plugins/updraftplus/images/updraftcentral_cloud.png'),(7064,'wp-content/plugins/updraftplus/images/updraftclone_logo_white.png'),(7065,'wp-content/plugins/updraftplus/images/updraftvault-150.png'),(7066,'wp-content/plugins/updraftplus/images/upraftplus-clone-screenshot.jpg'),(7067,'wp-content/plugins/updraftplus/includes/Dropbox2/API.php'),(7068,'wp-content/plugins/updraftplus/includes/Dropbox2/Exception.php'),(7069,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php'),(7070,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/Curl.php'),(7071,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/WordPress.php'),(7072,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/Encrypter.php'),(7073,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/StorageInterface.php'),(7074,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/WordPress.php'),(7075,'wp-content/plugins/updraftplus/includes/Google/Auth/Abstract.php'),(7076,'wp-content/plugins/updraftplus/includes/Google/Auth/AppIdentity.php'),(7077,'wp-content/plugins/updraftplus/includes/Google/Auth/AssertionCredentials.php'),(7078,'wp-content/plugins/updraftplus/includes/Google/Auth/ComputeEngine.php'),(7079,'wp-content/plugins/updraftplus/includes/Google/Auth/Exception.php'),(7080,'wp-content/plugins/updraftplus/includes/Google/Auth/LoginTicket.php'),(7081,'wp-content/plugins/updraftplus/includes/Google/Auth/OAuth2.php'),(7082,'wp-content/plugins/updraftplus/includes/Google/Auth/Simple.php'),(7083,'wp-content/plugins/updraftplus/includes/Google/Cache/Abstract.php'),(7084,'wp-content/plugins/updraftplus/includes/Google/Cache/Apc.php'),(7085,'wp-content/plugins/updraftplus/includes/Google/Cache/Exception.php'),(7086,'wp-content/plugins/updraftplus/includes/Google/Cache/File.php'),(7087,'wp-content/plugins/updraftplus/includes/Google/Cache/Memcache.php'),(7088,'wp-content/plugins/updraftplus/includes/Google/Cache/Null.php'),(7089,'wp-content/plugins/updraftplus/includes/Google/Client.php'),(7090,'wp-content/plugins/updraftplus/includes/Google/Collection.php'),(7091,'wp-content/plugins/updraftplus/includes/Google/Config.php'),(7092,'wp-content/plugins/updraftplus/includes/Google/Exception.php'),(7093,'wp-content/plugins/updraftplus/includes/Google/Http/Batch.php'),(7094,'wp-content/plugins/updraftplus/includes/Google/Http/CacheParser.php'),(7095,'wp-content/plugins/updraftplus/includes/Google/Http/MediaFileUpload.php'),(7096,'wp-content/plugins/updraftplus/includes/Google/Http/REST.php'),(7097,'wp-content/plugins/updraftplus/includes/Google/Http/Request.php'),(7098,'wp-content/plugins/updraftplus/includes/Google/IO/Abstract.php'),(7099,'wp-content/plugins/updraftplus/includes/Google/IO/Curl.php'),(7100,'wp-content/plugins/updraftplus/includes/Google/IO/Exception.php'),(7101,'wp-content/plugins/updraftplus/includes/Google/IO/Stream.php'),(7102,'wp-content/plugins/updraftplus/includes/Google/IO/cacerts.pem'),(7103,'wp-content/plugins/updraftplus/includes/Google/Logger/Abstract.php'),(7104,'wp-content/plugins/updraftplus/includes/Google/Logger/Exception.php'),(7105,'wp-content/plugins/updraftplus/includes/Google/Logger/File.php'),(7106,'wp-content/plugins/updraftplus/includes/Google/Logger/Null.php'),(7107,'wp-content/plugins/updraftplus/includes/Google/Logger/Psr.php'),(7108,'wp-content/plugins/updraftplus/includes/Google/Model.php'),(7109,'wp-content/plugins/updraftplus/includes/Google/Service/Datastore.php'),(7110,'wp-content/plugins/updraftplus/includes/Google/Service/Dns.php'),(7111,'wp-content/plugins/updraftplus/includes/Google/Service/Drive.php'),(7112,'wp-content/plugins/updraftplus/includes/Google/Service/Exception.php'),(7113,'wp-content/plugins/updraftplus/includes/Google/Service/Logging.php'),(7114,'wp-content/plugins/updraftplus/includes/Google/Service/Oauth2.php'),(7115,'wp-content/plugins/updraftplus/includes/Google/Service/Resource.php'),(7116,'wp-content/plugins/updraftplus/includes/Google/Service/Storage.php'),(7117,'wp-content/plugins/updraftplus/includes/Google/Service.php'),(7118,'wp-content/plugins/updraftplus/includes/Google/Signer/Abstract.php'),(7119,'wp-content/plugins/updraftplus/includes/Google/Signer/P12.php'),(7120,'wp-content/plugins/updraftplus/includes/Google/Task/Exception.php'),(7121,'wp-content/plugins/updraftplus/includes/Google/Task/Retryable.php'),(7122,'wp-content/plugins/updraftplus/includes/Google/Task/Runner.php'),(7123,'wp-content/plugins/updraftplus/includes/Google/Utils/URITemplate.php'),(7124,'wp-content/plugins/updraftplus/includes/Google/Utils.php'),(7125,'wp-content/plugins/updraftplus/includes/Google/Verifier/Abstract.php'),(7126,'wp-content/plugins/updraftplus/includes/Google/Verifier/Pem.php'),(7127,'wp-content/plugins/updraftplus/includes/Google/autoload.php'),(7128,'wp-content/plugins/updraftplus/includes/S3.php'),(7129,'wp-content/plugins/updraftplus/includes/S3compat.php'),(7130,'wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-10.min.js'),(7131,'wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-11.min.js'),(7132,'wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-3.min.js'),(7133,'wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-4.min.js'),(7134,'wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-5.min.js'),(7135,'wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-6.min.js'),(7136,'wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-7.min.js'),(7137,'wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-8.min.js'),(7138,'wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI-1-22-9.min.js'),(7139,'wp-content/plugins/updraftplus/includes/blockui/jquery.blockUI.js'),(7140,'wp-content/plugins/updraftplus/includes/cacert.pem'),(7141,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/loader.svg'),(7142,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-10.min.js'),(7143,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-11.min.css'),(7144,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-11.min.css.map'),(7145,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-11.min.js'),(7146,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-3.min.js'),(7147,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-4.min.js'),(7148,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-5.min.js'),(7149,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-6.min.js'),(7150,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-7.min.js'),(7151,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-8.min.js'),(7152,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed-1-22-9.min.js'),(7153,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed.css'),(7154,'wp-content/plugins/updraftplus/includes/checkout-embed/assets/udp-checkout-embed.js'),(7155,'wp-content/plugins/updraftplus/includes/checkout-embed/class-udp-checkout-embed.php'),(7156,'wp-content/plugins/updraftplus/includes/checkout-embed/products.json'),(7157,'wp-content/plugins/updraftplus/includes/checkout-embed/readme.md'),(7158,'wp-content/plugins/updraftplus/includes/class-backup-history.php'),(7159,'wp-content/plugins/updraftplus/includes/class-commands.php'),(7160,'wp-content/plugins/updraftplus/includes/class-database-utility.php'),(7161,'wp-content/plugins/updraftplus/includes/class-filesystem-functions.php'),(7162,'wp-content/plugins/updraftplus/includes/class-job-scheduler.php'),(7163,'wp-content/plugins/updraftplus/includes/class-manipulation-functions.php'),(7164,'wp-content/plugins/updraftplus/includes/class-partialfileservlet.php'),(7165,'wp-content/plugins/updraftplus/includes/class-remote-send.php'),(7166,'wp-content/plugins/updraftplus/includes/class-search-replace.php'),(7167,'wp-content/plugins/updraftplus/includes/class-semaphore.php'),(7168,'wp-content/plugins/updraftplus/includes/class-storage-methods-interface.php'),(7169,'wp-content/plugins/updraftplus/includes/class-udrpc.php'),(7170,'wp-content/plugins/updraftplus/includes/class-updraft-dashboard-news.php'),(7171,'wp-content/plugins/updraftplus/includes/class-updraft-semaphore.php'),(7172,'wp-content/plugins/updraftplus/includes/class-updraftcentral-updraftplus-commands.php'),(7173,'wp-content/plugins/updraftplus/includes/class-updraftplus-encryption.php'),(7174,'wp-content/plugins/updraftplus/includes/class-wpadmin-commands.php'),(7175,'wp-content/plugins/updraftplus/includes/class-zip.php'),(7176,'wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles.php'),(7177,'wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_exceptions.php'),(7178,'wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_http.php'),(7179,'wp-content/plugins/updraftplus/includes/ftp.class.php'),(7180,'wp-content/plugins/updraftplus/includes/get-cpanel-quota-usage.pl'),(7181,'wp-content/plugins/updraftplus/includes/google-extensions.php'),(7182,'wp-content/plugins/updraftplus/includes/handlebars/LICENSE'),(7183,'wp-content/plugins/updraftplus/includes/handlebars/handlebars.js'),(7184,'wp-content/plugins/updraftplus/includes/handlebars/handlebars.min.js'),(7185,'wp-content/plugins/updraftplus/includes/handlebars/handlebars.runtime.js'),(7186,'wp-content/plugins/updraftplus/includes/handlebars/handlebars.runtime.min.js'),(7187,'wp-content/plugins/updraftplus/includes/images/ui-bg_diagonals-thick_18_b81900_40x40.png'),(7188,'wp-content/plugins/updraftplus/includes/images/ui-bg_diagonals-thick_20_666666_40x40.png'),(7189,'wp-content/plugins/updraftplus/includes/images/ui-bg_flat_10_000000_40x100.png'),(7190,'wp-content/plugins/updraftplus/includes/images/ui-bg_glass_100_f6f6f6_1x400.png'),(7191,'wp-content/plugins/updraftplus/includes/images/ui-bg_glass_100_fdf5ce_1x400.png'),(7192,'wp-content/plugins/updraftplus/includes/images/ui-bg_glass_65_ffffff_1x400.png'),(7193,'wp-content/plugins/updraftplus/includes/images/ui-bg_gloss-wave_35_f6a828_500x100.png'),(7194,'wp-content/plugins/updraftplus/includes/images/ui-bg_highlight-soft_100_eeeeee_1x100.png'),(7195,'wp-content/plugins/updraftplus/includes/images/ui-bg_highlight-soft_75_ffe45c_1x100.png'),(7196,'wp-content/plugins/updraftplus/includes/images/ui-icons_222222_256x240.png'),(7197,'wp-content/plugins/updraftplus/includes/images/ui-icons_228ef1_256x240.png'),(7198,'wp-content/plugins/updraftplus/includes/images/ui-icons_ef8c08_256x240.png'),(7199,'wp-content/plugins/updraftplus/includes/images/ui-icons_ffd27a_256x240.png'),(7200,'wp-content/plugins/updraftplus/includes/images/ui-icons_ffffff_256x240.png'),(7201,'wp-content/plugins/updraftplus/includes/jquery-ui.custom-v1.11.4-1-22-11.min.css'),(7202,'wp-content/plugins/updraftplus/includes/jquery-ui.custom-v1.11.4-1-22-11.min.css.map'),(7203,'wp-content/plugins/updraftplus/includes/jquery-ui.custom-v1.11.4.css'),(7204,'wp-content/plugins/updraftplus/includes/jquery-ui.custom-v1.12.1-1-22-11.min.css'),(7205,'wp-content/plugins/updraftplus/includes/jquery-ui.custom-v1.12.1-1-22-11.min.css.map'),(7206,'wp-content/plugins/updraftplus/includes/jquery-ui.custom-v1.12.1.css'),(7207,'wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-10.min.js'),(7208,'wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-11.min.js'),(7209,'wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-3.min.js'),(7210,'wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-4.min.js'),(7211,'wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-5.min.js'),(7212,'wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-6.min.js'),(7213,'wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-7.min.js'),(7214,'wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-8.min.js'),(7215,'wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended-1-22-9.min.js'),(7216,'wp-content/plugins/updraftplus/includes/jquery-ui.dialog.extended/jquery-ui.dialog.extended.js'),(7217,'wp-content/plugins/updraftplus/includes/jquery.serializeJSON/jquery.serializejson.js'),(7218,'wp-content/plugins/updraftplus/includes/jquery.serializeJSON/jquery.serializejson.min.js'),(7219,'wp-content/plugins/updraftplus/includes/jstree/jstree.js'),(7220,'wp-content/plugins/updraftplus/includes/jstree/jstree.min.js'),(7221,'wp-content/plugins/updraftplus/includes/jstree/themes/default/32px.png'),(7222,'wp-content/plugins/updraftplus/includes/jstree/themes/default/40px.png'),(7223,'wp-content/plugins/updraftplus/includes/jstree/themes/default/style.css'),(7224,'wp-content/plugins/updraftplus/includes/jstree/themes/default/style.min.css'),(7225,'wp-content/plugins/updraftplus/includes/jstree/themes/default/throbber.gif'),(7226,'wp-content/plugins/updraftplus/includes/jstree/themes/default-dark/32px.png'),(7227,'wp-content/plugins/updraftplus/includes/jstree/themes/default-dark/40px.png'),(7228,'wp-content/plugins/updraftplus/includes/jstree/themes/default-dark/style.css'),(7229,'wp-content/plugins/updraftplus/includes/jstree/themes/default-dark/style.min.css'),(7230,'wp-content/plugins/updraftplus/includes/jstree/themes/default-dark/throbber.gif'),(7231,'wp-content/plugins/updraftplus/includes/labelauty/LICENSE'),(7232,'wp-content/plugins/updraftplus/includes/labelauty/images/input-checked.png'),(7233,'wp-content/plugins/updraftplus/includes/labelauty/images/input-unchecked.png'),(7234,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-10.min.js'),(7235,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-11.min.css'),(7236,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-11.min.css.map'),(7237,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-11.min.js'),(7238,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-3.min.js'),(7239,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-4.min.js'),(7240,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-5.min.js'),(7241,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-6.min.js'),(7242,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-7.min.js'),(7243,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-8.min.js'),(7244,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty-1-22-9.min.js'),(7245,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.css'),(7246,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.js'),(7247,'wp-content/plugins/updraftplus/includes/tether/LICENSE'),(7248,'wp-content/plugins/updraftplus/includes/tether/tether.js'),(7249,'wp-content/plugins/updraftplus/includes/tether/tether.min.js'),(7250,'wp-content/plugins/updraftplus/includes/tether-shepherd/LICENSE'),(7251,'wp-content/plugins/updraftplus/includes/tether-shepherd/shepherd.js'),(7252,'wp-content/plugins/updraftplus/includes/tether-shepherd/shepherd.min.js'),(7253,'wp-content/plugins/updraftplus/includes/tether-shepherd/tether.js'),(7254,'wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-10.min.js'),(7255,'wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-11.min.js'),(7256,'wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-3.min.js'),(7257,'wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-4.min.js'),(7258,'wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-5.min.js'),(7259,'wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-6.min.js'),(7260,'wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-7.min.js'),(7261,'wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-8.min.js'),(7262,'wp-content/plugins/updraftplus/includes/updraft-admin-common-1-22-9.min.js'),(7263,'wp-content/plugins/updraftplus/includes/updraft-admin-common.js'),(7264,'wp-content/plugins/updraftplus/includes/updraft-notices.php'),(7265,'wp-content/plugins/updraftplus/includes/updraft-restorer-skin-compatibility.php'),(7266,'wp-content/plugins/updraftplus/includes/updraft-restorer-skin.php'),(7267,'wp-content/plugins/updraftplus/includes/updraftcentral.php'),(7268,'wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-auto-login.php'),(7269,'wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-dash-notice.php'),(7270,'wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-restore.php'),(7271,'wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-status.php'),(7272,'wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-user-notice.php'),(7273,'wp-content/plugins/updraftplus/includes/updraftplus-clone.php'),(7274,'wp-content/plugins/updraftplus/includes/updraftplus-login.php'),(7275,'wp-content/plugins/updraftplus/includes/updraftplus-notices.php'),(7276,'wp-content/plugins/updraftplus/includes/updraftplus-tour.php'),(7277,'wp-content/plugins/updraftplus/includes/updraftvault.php'),(7278,'wp-content/plugins/updraftplus/index.html'),(7279,'wp-content/plugins/updraftplus/js/tour-1-22-10.min.js'),(7280,'wp-content/plugins/updraftplus/js/tour-1-22-11.min.js'),(7281,'wp-content/plugins/updraftplus/js/tour-1-22-3.min.js'),(7282,'wp-content/plugins/updraftplus/js/tour-1-22-4.min.js'),(7283,'wp-content/plugins/updraftplus/js/tour-1-22-5.min.js'),(7284,'wp-content/plugins/updraftplus/js/tour-1-22-6.min.js'),(7285,'wp-content/plugins/updraftplus/js/tour-1-22-7.min.js'),(7286,'wp-content/plugins/updraftplus/js/tour-1-22-8.min.js'),(7287,'wp-content/plugins/updraftplus/js/tour-1-22-9.min.js'),(7288,'wp-content/plugins/updraftplus/js/tour.js'),(7289,'wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-10.min.js'),(7290,'wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-11.min.js'),(7291,'wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-3.min.js'),(7292,'wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-4.min.js'),(7293,'wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-5.min.js'),(7294,'wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-6.min.js'),(7295,'wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-7.min.js'),(7296,'wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-8.min.js'),(7297,'wp-content/plugins/updraftplus/js/updraft-admin-restore-1-22-9.min.js'),(7298,'wp-content/plugins/updraftplus/js/updraft-admin-restore.js'),(7299,'wp-content/plugins/updraftplus/languages/updraftplus-af.mo'),(7300,'wp-content/plugins/updraftplus/languages/updraftplus-af.po'),(7301,'wp-content/plugins/updraftplus/languages/updraftplus-ar.mo'),(7302,'wp-content/plugins/updraftplus/languages/updraftplus-ar.po'),(7303,'wp-content/plugins/updraftplus/languages/updraftplus-bg_BG.mo'),(7304,'wp-content/plugins/updraftplus/languages/updraftplus-bg_BG.po'),(7305,'wp-content/plugins/updraftplus/languages/updraftplus-bn_BD.mo'),(7306,'wp-content/plugins/updraftplus/languages/updraftplus-bn_BD.po'),(7307,'wp-content/plugins/updraftplus/languages/updraftplus-bs_BA.mo'),(7308,'wp-content/plugins/updraftplus/languages/updraftplus-bs_BA.po'),(7309,'wp-content/plugins/updraftplus/languages/updraftplus-ca.mo'),(7310,'wp-content/plugins/updraftplus/languages/updraftplus-ca.po'),(7311,'wp-content/plugins/updraftplus/languages/updraftplus-ckb.mo'),(7312,'wp-content/plugins/updraftplus/languages/updraftplus-ckb.po'),(7313,'wp-content/plugins/updraftplus/languages/updraftplus-da_DK.mo'),(7314,'wp-content/plugins/updraftplus/languages/updraftplus-da_DK.po'),(7315,'wp-content/plugins/updraftplus/languages/updraftplus-es_AR.mo'),(7316,'wp-content/plugins/updraftplus/languages/updraftplus-es_AR.po'),(7317,'wp-content/plugins/updraftplus/languages/updraftplus-et.mo'),(7318,'wp-content/plugins/updraftplus/languages/updraftplus-et.po'),(7319,'wp-content/plugins/updraftplus/languages/updraftplus-eu.mo'),(7320,'wp-content/plugins/updraftplus/languages/updraftplus-eu.po'),(7321,'wp-content/plugins/updraftplus/languages/updraftplus-fa_IR.mo'),(7322,'wp-content/plugins/updraftplus/languages/updraftplus-fa_IR.po'),(7323,'wp-content/plugins/updraftplus/languages/updraftplus-fi.mo'),(7324,'wp-content/plugins/updraftplus/languages/updraftplus-fi.po'),(7325,'wp-content/plugins/updraftplus/languages/updraftplus-fr_CA.mo'),(7326,'wp-content/plugins/updraftplus/languages/updraftplus-fr_CA.po'),(7327,'wp-content/plugins/updraftplus/languages/updraftplus-he_IL.mo'),(7328,'wp-content/plugins/updraftplus/languages/updraftplus-he_IL.po'),(7329,'wp-content/plugins/updraftplus/languages/updraftplus-hi_IN.mo'),(7330,'wp-content/plugins/updraftplus/languages/updraftplus-hi_IN.po'),(7331,'wp-content/plugins/updraftplus/languages/updraftplus-hu_HU.mo'),(7332,'wp-content/plugins/updraftplus/languages/updraftplus-hu_HU.po'),(7333,'wp-content/plugins/updraftplus/languages/updraftplus-id_ID.mo'),(7334,'wp-content/plugins/updraftplus/languages/updraftplus-id_ID.po'),(7335,'wp-content/plugins/updraftplus/languages/updraftplus-ko_KR.mo'),(7336,'wp-content/plugins/updraftplus/languages/updraftplus-ko_KR.po'),(7337,'wp-content/plugins/updraftplus/languages/updraftplus-lt_LT.mo'),(7338,'wp-content/plugins/updraftplus/languages/updraftplus-lt_LT.po'),(7339,'wp-content/plugins/updraftplus/languages/updraftplus-pt_BR.mo'),(7340,'wp-content/plugins/updraftplus/languages/updraftplus-pt_BR.po'),(7341,'wp-content/plugins/updraftplus/languages/updraftplus-ru_RU.mo'),(7342,'wp-content/plugins/updraftplus/languages/updraftplus-ru_RU.po'),(7343,'wp-content/plugins/updraftplus/languages/updraftplus-sl_SI.mo'),(7344,'wp-content/plugins/updraftplus/languages/updraftplus-sl_SI.po'),(7345,'wp-content/plugins/updraftplus/languages/updraftplus-sr_RS.mo'),(7346,'wp-content/plugins/updraftplus/languages/updraftplus-sr_RS.po'),(7347,'wp-content/plugins/updraftplus/languages/updraftplus-te.mo'),(7348,'wp-content/plugins/updraftplus/languages/updraftplus-te.po'),(7349,'wp-content/plugins/updraftplus/languages/updraftplus-th.mo'),(7350,'wp-content/plugins/updraftplus/languages/updraftplus-th.po'),(7351,'wp-content/plugins/updraftplus/languages/updraftplus-tl.mo'),(7352,'wp-content/plugins/updraftplus/languages/updraftplus-tl.po'),(7353,'wp-content/plugins/updraftplus/languages/updraftplus-tr_TR.mo'),(7354,'wp-content/plugins/updraftplus/languages/updraftplus-tr_TR.po'),(7355,'wp-content/plugins/updraftplus/languages/updraftplus-ur.mo'),(7356,'wp-content/plugins/updraftplus/languages/updraftplus-ur.po'),(7357,'wp-content/plugins/updraftplus/languages/updraftplus-vi.mo'),(7358,'wp-content/plugins/updraftplus/languages/updraftplus-vi.po'),(7359,'wp-content/plugins/updraftplus/languages/updraftplus-zh_HK.mo'),(7360,'wp-content/plugins/updraftplus/languages/updraftplus-zh_HK.po'),(7361,'wp-content/plugins/updraftplus/languages/updraftplus-zh_TW.mo'),(7362,'wp-content/plugins/updraftplus/languages/updraftplus-zh_TW.po'),(7363,'wp-content/plugins/updraftplus/languages/updraftplus.pot'),(7364,'wp-content/plugins/updraftplus/methods/addon-base-v2.php'),(7365,'wp-content/plugins/updraftplus/methods/addon-not-yet-present.php'),(7366,'wp-content/plugins/updraftplus/methods/azure.php'),(7367,'wp-content/plugins/updraftplus/methods/backblaze.php'),(7368,'wp-content/plugins/updraftplus/methods/backup-module.php'),(7369,'wp-content/plugins/updraftplus/methods/cloudfiles-new.php'),(7370,'wp-content/plugins/updraftplus/methods/cloudfiles.php'),(7371,'wp-content/plugins/updraftplus/methods/dreamobjects.php'),(7372,'wp-content/plugins/updraftplus/methods/dropbox.php'),(7373,'wp-content/plugins/updraftplus/methods/email.php'),(7374,'wp-content/plugins/updraftplus/methods/ftp.php'),(7375,'wp-content/plugins/updraftplus/methods/googlecloud.php'),(7376,'wp-content/plugins/updraftplus/methods/googledrive.php'),(7377,'wp-content/plugins/updraftplus/methods/insufficient.php'),(7378,'wp-content/plugins/updraftplus/methods/onedrive.php'),(7379,'wp-content/plugins/updraftplus/methods/openstack-base.php'),(7380,'wp-content/plugins/updraftplus/methods/openstack.php'),(7381,'wp-content/plugins/updraftplus/methods/openstack2.php'),(7382,'wp-content/plugins/updraftplus/methods/remotesend.php'),(7383,'wp-content/plugins/updraftplus/methods/s3.php'),(7384,'wp-content/plugins/updraftplus/methods/s3generic.php'),(7385,'wp-content/plugins/updraftplus/methods/sftp.php'),(7386,'wp-content/plugins/updraftplus/methods/template.php'),(7387,'wp-content/plugins/updraftplus/methods/updraftvault.php'),(7388,'wp-content/plugins/updraftplus/methods/webdav.php'),(7389,'wp-content/plugins/updraftplus/options.php'),(7390,'wp-content/plugins/updraftplus/readme.txt'),(7391,'wp-content/plugins/updraftplus/restorer.php'),(7392,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/advanced-tools.php'),(7393,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/export-settings.php'),(7394,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/lock-admin.php'),(7395,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/search-replace.php'),(7396,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/site-info.php'),(7397,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/tools-menu.php'),(7398,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/total-size.php'),(7399,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/updraftcentral.php'),(7400,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/wipe-settings.php'),(7401,'wp-content/plugins/updraftplus/templates/wp-admin/notices/autobackup-notice.php'),(7402,'wp-content/plugins/updraftplus/templates/wp-admin/notices/bottom-notice.php'),(7403,'wp-content/plugins/updraftplus/templates/wp-admin/notices/horizontal-notice.php'),(7404,'wp-content/plugins/updraftplus/templates/wp-admin/notices/report-plain.php'),(7405,'wp-content/plugins/updraftplus/templates/wp-admin/notices/report.php'),(7406,'wp-content/plugins/updraftplus/templates/wp-admin/notices/thanks-for-using-main-dash.php'),(7407,'wp-content/plugins/updraftplus/templates/wp-admin/settings/backupnow-modal.php'),(7408,'wp-content/plugins/updraftplus/templates/wp-admin/settings/delete-and-restore-modals.php'),(7409,'wp-content/plugins/updraftplus/templates/wp-admin/settings/downloading-and-restoring.php'),(7410,'wp-content/plugins/updraftplus/templates/wp-admin/settings/exclude-modal.php'),(7411,'wp-content/plugins/updraftplus/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-heading.php'),(7412,'wp-content/plugins/updraftplus/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-submit.php'),(7413,'wp-content/plugins/updraftplus/templates/wp-admin/settings/existing-backups-table.php'),(7414,'wp-content/plugins/updraftplus/templates/wp-admin/settings/file-backup-exclude.php'),(7415,'wp-content/plugins/updraftplus/templates/wp-admin/settings/footer.php'),(7416,'wp-content/plugins/updraftplus/templates/wp-admin/settings/form-contents.php'),(7417,'wp-content/plugins/updraftplus/templates/wp-admin/settings/header.php'),(7418,'wp-content/plugins/updraftplus/templates/wp-admin/settings/migrator-no-migrator.php'),(7419,'wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-addons.php'),(7420,'wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-backups.php'),(7421,'wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-bar.php'),(7422,'wp-content/plugins/updraftplus/templates/wp-admin/settings/take-backup.php'),(7423,'wp-content/plugins/updraftplus/templates/wp-admin/settings/temporary-clone.php'),(7424,'wp-content/plugins/updraftplus/templates/wp-admin/settings/updraftcentral-connect.php'),(7425,'wp-content/plugins/updraftplus/templates/wp-admin/settings/upload-backups-modal.php'),(7426,'wp-content/plugins/updraftplus/updraftplus.php'),(7427,'wp-content/plugins/updraftplus/vendor/autoload.php'),(7428,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/CODE_OF_CONDUCT.md'),(7429,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/CONTRIBUTING.md'),(7430,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/LICENSE'),(7431,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/Makefile.frag'),(7432,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/Makefile.frag.w32'),(7433,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/NOTICE'),(7434,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/README.md'),(7435,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/builder.json'),(7436,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/composer.json'),(7437,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/config.m4'),(7438,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/config.w32'),(7439,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/ext/awscrt.stub.php'),(7440,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/format-check.sh'),(7441,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/gen_api.php'),(7442,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/gen_stub.php'),(7443,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/package.xml-template_post'),(7444,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/package.xml-template_pre'),(7445,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/php-win.ini'),(7446,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/php.ini'),(7447,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/prepare_package_xml.sh'),(7448,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/prepare_release.sh'),(7449,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/AwsCredentials.php'),(7450,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/CredentialsProvider.php'),(7451,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/Signable.php'),(7452,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SignatureType.php'),(7453,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SignedBodyHeaderType.php'),(7454,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/Signing.php'),(7455,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SigningAlgorithm.php'),(7456,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SigningConfigAWS.php'),(7457,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SigningResult.php'),(7458,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/StaticCredentialsProvider.php'),(7459,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/CRT.php'),(7460,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Headers.php'),(7461,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Message.php'),(7462,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Request.php'),(7463,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Response.php'),(7464,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/IO/EventLoopGroup.php'),(7465,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/IO/InputStream.php'),(7466,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Internal/Encoding.php'),(7467,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Internal/Extension.php'),(7468,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Log.php'),(7469,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/NativeResource.php'),(7470,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/src/AWS/CRT/Options.php'),(7471,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/000_CoreTest.php'),(7472,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/CrcTest.php'),(7473,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/CredentialsTest.php'),(7474,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/ErrorTest.php'),(7475,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/EventLoopGroupTest.php'),(7476,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/HttpMessageTest.php'),(7477,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/LogTest.php'),(7478,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/SigningTest.php'),(7479,'wp-content/plugins/updraftplus/vendor/aws/aws-crt-php/tests/StreamTest.php'),(7480,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/CODE_OF_CONDUCT.md'),(7481,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/CRT_INSTRUCTIONS.md'),(7482,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/LICENSE'),(7483,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/NOTICE'),(7484,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/THIRD-PARTY-LICENSES'),(7485,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/composer.json'),(7486,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/AbstractConfigurationProvider.php'),(7487,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/AbstractModel.php'),(7488,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ApiProvider.php'),(7489,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/DateTimeResult.php'),(7490,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/DocModel.php'),(7491,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ErrorParser/AbstractErrorParser.php'),(7492,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ErrorParser/JsonParserTrait.php'),(7493,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ErrorParser/JsonRpcErrorParser.php'),(7494,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ErrorParser/RestJsonErrorParser.php'),(7495,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ErrorParser/XmlErrorParser.php'),(7496,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ListShape.php'),(7497,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/MapShape.php'),(7498,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Operation.php'),(7499,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/AbstractParser.php'),(7500,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/AbstractRestParser.php'),(7501,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/Crc32ValidatingParser.php'),(7502,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/DecodingEventStreamIterator.php'),(7503,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/EventParsingIterator.php'),(7504,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/Exception/ParserException.php'),(7505,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/JsonParser.php'),(7506,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/JsonRpcParser.php'),(7507,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/MetadataParserTrait.php'),(7508,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/PayloadParserTrait.php'),(7509,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/QueryParser.php'),(7510,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/RestJsonParser.php'),(7511,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/RestXmlParser.php'),(7512,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Parser/XmlParser.php'),(7513,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/Ec2ParamBuilder.php'),(7514,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/JsonBody.php'),(7515,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/JsonRpcSerializer.php'),(7516,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/QueryParamBuilder.php'),(7517,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/QuerySerializer.php'),(7518,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/RestJsonSerializer.php'),(7519,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/RestSerializer.php'),(7520,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/RestXmlSerializer.php'),(7521,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Serializer/XmlBody.php'),(7522,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Service.php'),(7523,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Shape.php'),(7524,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/ShapeMap.php'),(7525,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/StructureShape.php'),(7526,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/TimestampShape.php'),(7527,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Api/Validator.php'),(7528,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/AccessPointArn.php'),(7529,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/AccessPointArnInterface.php'),(7530,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/Arn.php'),(7531,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/ArnInterface.php'),(7532,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/ArnParser.php'),(7533,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/Exception/InvalidArnException.php'),(7534,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/ObjectLambdaAccessPointArn.php'),(7535,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/ResourceTypeAndIdTrait.php'),(7536,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/S3/AccessPointArn.php'),(7537,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/S3/BucketArnInterface.php'),(7538,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/S3/MultiRegionAccessPointArn.php'),(7539,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsAccessPointArn.php'),(7540,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsArnInterface.php'),(7541,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsBucketArn.php'),(7542,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/AwsClient.php'),(7543,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/AwsClientInterface.php'),(7544,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/AwsClientTrait.php'),(7545,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/CacheInterface.php'),(7546,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientResolver.php'),(7547,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/AbstractMonitoringMiddleware.php'),(7548,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ApiCallAttemptMonitoringMiddleware.php'),(7549,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ApiCallMonitoringMiddleware.php'),(7550,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/Configuration.php'),(7551,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ConfigurationInterface.php'),(7552,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ConfigurationProvider.php'),(7553,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/Exception/ConfigurationException.php'),(7554,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/MonitoringMiddlewareInterface.php'),(7555,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Command.php'),(7556,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/CommandInterface.php'),(7557,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/CommandPool.php'),(7558,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ConfigurationProviderInterface.php'),(7559,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/AssumeRoleCredentialProvider.php'),(7560,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/AssumeRoleWithWebIdentityCredentialProvider.php'),(7561,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/CredentialProvider.php'),(7562,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/Credentials.php'),(7563,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/CredentialsInterface.php'),(7564,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/EcsCredentialProvider.php'),(7565,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Credentials/InstanceProfileProvider.php'),(7566,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/DefaultsMode/Configuration.php'),(7567,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/DefaultsMode/ConfigurationInterface.php'),(7568,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/DefaultsMode/ConfigurationProvider.php'),(7569,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/DefaultsMode/Exception/ConfigurationException.php'),(7570,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/DoctrineCacheAdapter.php'),(7571,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/EndpointProvider.php'),(7572,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/Partition.php'),(7573,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/PartitionEndpointProvider.php'),(7574,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/PartitionInterface.php'),(7575,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/PatternEndpointProvider.php'),(7576,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/Configuration.php'),(7577,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/ConfigurationInterface.php'),(7578,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/ConfigurationProvider.php'),(7579,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/Exception/ConfigurationException.php'),(7580,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/Configuration.php'),(7581,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/ConfigurationInterface.php'),(7582,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/ConfigurationProvider.php'),(7583,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/Exception/ConfigurationException.php'),(7584,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointDiscovery/Configuration.php'),(7585,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointDiscovery/ConfigurationInterface.php'),(7586,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointDiscovery/ConfigurationProvider.php'),(7587,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointDiscovery/EndpointDiscoveryMiddleware.php'),(7588,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointDiscovery/EndpointList.php'),(7589,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointDiscovery/Exception/ConfigurationException.php'),(7590,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/EndpointParameterMiddleware.php'),(7591,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/AwsException.php'),(7592,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/CommonRuntimeException.php'),(7593,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/CouldNotCreateChecksumException.php'),(7594,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/CredentialsException.php'),(7595,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/CryptoException.php'),(7596,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/CryptoPolyfillException.php'),(7597,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/EventStreamDataException.php'),(7598,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/IncalculablePayloadException.php'),(7599,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/InvalidJsonException.php'),(7600,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/InvalidRegionException.php'),(7601,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/MultipartUploadException.php'),(7602,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/UnresolvedApiException.php'),(7603,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/UnresolvedEndpointException.php'),(7604,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Exception/UnresolvedSignatureException.php'),(7605,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5/GuzzleHandler.php'),(7606,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5/GuzzleStream.php'),(7607,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5/PsrStream.php'),(7608,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Handler/GuzzleV6/GuzzleHandler.php'),(7609,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/HandlerList.php'),(7610,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/HasDataTrait.php'),(7611,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/HasMonitoringEventsTrait.php'),(7612,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/HashInterface.php'),(7613,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/HashingStream.php'),(7614,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/History.php'),(7615,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Iam/Exception/IamException.php'),(7616,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Iam/IamClient.php'),(7617,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/IdempotencyTokenMiddleware.php'),(7618,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/InputValidationMiddleware.php'),(7619,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/JsonCompiler.php'),(7620,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Keyspaces/Exception/KeyspacesException.php'),(7621,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Keyspaces/KeyspacesClient.php'),(7622,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/LruArrayCache.php'),(7623,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Middleware.php'),(7624,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/MockHandler.php'),(7625,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/MonitoringEventsInterface.php'),(7626,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/MultiRegionClient.php'),(7627,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Multipart/AbstractUploadManager.php'),(7628,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Multipart/AbstractUploader.php'),(7629,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Multipart/UploadState.php'),(7630,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/PhpHash.php'),(7631,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/PresignUrlMiddleware.php'),(7632,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Psr16CacheAdapter.php'),(7633,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/PsrCacheAdapter.php'),(7634,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php'),(7635,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Result.php'),(7636,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ResultInterface.php'),(7637,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/ResultPaginator.php'),(7638,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/Configuration.php'),(7639,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/ConfigurationInterface.php'),(7640,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/ConfigurationProvider.php'),(7641,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/Exception/ConfigurationException.php'),(7642,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/QuotaManager.php'),(7643,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/RateLimiter.php'),(7644,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Retry/RetryHelperTrait.php'),(7645,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/RetryMiddleware.php'),(7646,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/RetryMiddlewareV2.php'),(7647,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/AmbiguousSuccessParser.php'),(7648,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/ApplyChecksumMiddleware.php'),(7649,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/BatchDelete.php'),(7650,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/BucketEndpointArnMiddleware.php'),(7651,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/BucketEndpointMiddleware.php'),(7652,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/CalculatesChecksumTrait.php'),(7653,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/CryptoParamsTrait.php'),(7654,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/CryptoParamsTraitV2.php'),(7655,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/HeadersMetadataStrategy.php'),(7656,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/InstructionFileMetadataStrategy.php'),(7657,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionClient.php'),(7658,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionClientV2.php'),(7659,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionMultipartUploader.php'),(7660,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionMultipartUploaderV2.php'),(7661,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Crypto/UserAgentTrait.php'),(7662,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/EndpointRegionHelperTrait.php'),(7663,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Exception/DeleteMultipleObjectsException.php'),(7664,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Exception/PermanentRedirectException.php'),(7665,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Exception/S3Exception.php'),(7666,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Exception/S3MultipartUploadException.php'),(7667,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/GetBucketLocationParser.php'),(7668,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/MultipartCopy.php'),(7669,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/MultipartUploader.php'),(7670,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/MultipartUploadingTrait.php'),(7671,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/ObjectCopier.php'),(7672,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/ObjectUploader.php'),(7673,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/PermanentRedirectMiddleware.php'),(7674,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/PostObject.php'),(7675,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/PostObjectV4.php'),(7676,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/PutObjectUrlMiddleware.php'),(7677,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/Configuration.php'),(7678,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/ConfigurationInterface.php'),(7679,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/ConfigurationProvider.php'),(7680,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/Exception/ConfigurationException.php'),(7681,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/RetryableMalformedResponseParser.php'),(7682,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/S3Client.php'),(7683,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/S3ClientInterface.php'),(7684,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/S3ClientTrait.php'),(7685,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/S3EndpointMiddleware.php'),(7686,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/S3MultiRegionClient.php'),(7687,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/S3UriParser.php'),(7688,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/SSECMiddleware.php'),(7689,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/StreamWrapper.php'),(7690,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/Transfer.php'),(7691,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/Configuration.php'),(7692,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/ConfigurationInterface.php'),(7693,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/ConfigurationProvider.php'),(7694,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/Exception/ConfigurationException.php'),(7695,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/S3/ValidateResponseChecksumParser.php'),(7696,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Sdk.php'),(7697,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Signature/AnonymousSignature.php'),(7698,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Signature/S3SignatureV4.php'),(7699,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Signature/SignatureInterface.php'),(7700,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Signature/SignatureProvider.php'),(7701,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Signature/SignatureTrait.php'),(7702,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Signature/SignatureV4.php'),(7703,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/StreamRequestPayloadMiddleware.php'),(7704,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/TraceMiddleware.php'),(7705,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Waiter.php'),(7706,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/WrappedHttpHandler.php'),(7707,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/aliases.json.php'),(7708,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/endpoints.json.php'),(7709,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/endpoints_prefix_history.json.php'),(7710,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/api-2.json.php'),(7711,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/paginators-1.json.php'),(7712,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/smoke.json.php'),(7713,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/waiters-2.json.php'),(7714,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/api-2.json.php'),(7715,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/paginators-1.json.php'),(7716,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/smoke.json.php'),(7717,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/waiters-2.json.php'),(7718,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/manifest.json.php'),(7719,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/api-2.json.php'),(7720,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/paginators-1.json.php'),(7721,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/smoke.json.php'),(7722,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/waiters-1.json.php'),(7723,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/waiters-2.json.php'),(7724,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/data/sdk-default-configuration.json.php'),(7725,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/functions.php'),(7726,'wp-content/plugins/updraftplus/vendor/components/jquery/README.md'),(7727,'wp-content/plugins/updraftplus/vendor/components/jquery/bower.json'),(7728,'wp-content/plugins/updraftplus/vendor/components/jquery/component.json'),(7729,'wp-content/plugins/updraftplus/vendor/components/jquery/composer.json'),(7730,'wp-content/plugins/updraftplus/vendor/components/jquery/jquery.js'),(7731,'wp-content/plugins/updraftplus/vendor/components/jquery/jquery.min.js'),(7732,'wp-content/plugins/updraftplus/vendor/components/jquery/jquery.min.map'),(7733,'wp-content/plugins/updraftplus/vendor/components/jquery/jquery.slim.js'),(7734,'wp-content/plugins/updraftplus/vendor/components/jquery/jquery.slim.min.js'),(7735,'wp-content/plugins/updraftplus/vendor/components/jquery/jquery.slim.min.map'),(7736,'wp-content/plugins/updraftplus/vendor/components/jquery/package.json'),(7737,'wp-content/plugins/updraftplus/vendor/components/jquery-blockui/README.md'),(7738,'wp-content/plugins/updraftplus/vendor/components/jquery-blockui/blockUI.jquery.json'),(7739,'wp-content/plugins/updraftplus/vendor/components/jquery-blockui/bower.json'),(7740,'wp-content/plugins/updraftplus/vendor/components/jquery-blockui/composer.json'),(7741,'wp-content/plugins/updraftplus/vendor/components/jquery-blockui/jquery.blockUI.js'),(7742,'wp-content/plugins/updraftplus/vendor/composer/ClassLoader.php'),(7743,'wp-content/plugins/updraftplus/vendor/composer/InstalledVersions.php'),(7744,'wp-content/plugins/updraftplus/vendor/composer/LICENSE'),(7745,'wp-content/plugins/updraftplus/vendor/composer/autoload_classmap.php'),(7746,'wp-content/plugins/updraftplus/vendor/composer/autoload_files.php'),(7747,'wp-content/plugins/updraftplus/vendor/composer/autoload_namespaces.php'),(7748,'wp-content/plugins/updraftplus/vendor/composer/autoload_psr4.php'),(7749,'wp-content/plugins/updraftplus/vendor/composer/autoload_real.php'),(7750,'wp-content/plugins/updraftplus/vendor/composer/autoload_static.php'),(7751,'wp-content/plugins/updraftplus/vendor/composer/include_paths.php'),(7752,'wp-content/plugins/updraftplus/vendor/composer/installed.json'),(7753,'wp-content/plugins/updraftplus/vendor/composer/installed.php'),(7754,'wp-content/plugins/updraftplus/vendor/eher/oauth/README.md'),(7755,'wp-content/plugins/updraftplus/vendor/eher/oauth/composer.json'),(7756,'wp-content/plugins/updraftplus/vendor/eher/oauth/phpunit.xml.dist'),(7757,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Consumer.php'),(7758,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/HmacSha1.php'),(7759,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthDataStore.php'),(7760,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthException.php'),(7761,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthServer.php'),(7762,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/PlainText.php'),(7763,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Request.php'),(7764,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/RsaSha1.php'),(7765,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/SignatureMethod.php'),(7766,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Token.php'),(7767,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Util.php'),(7768,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/CHANGELOG.md'),(7769,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/LICENSE'),(7770,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/README.md'),(7771,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/UPGRADING.md'),(7772,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/build.xml'),(7773,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/composer.json'),(7774,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/phar-stub.php'),(7775,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/phpunit.xml.dist'),(7776,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/AbstractBatchDecorator.php'),(7777,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Batch.php'),(7778,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchBuilder.php'),(7779,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureDivisor.php'),(7780,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureTransfer.php'),(7781,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchCommandTransfer.php'),(7782,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php'),(7783,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php'),(7784,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchRequestTransfer.php'),(7785,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchSizeDivisor.php'),(7786,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php'),(7787,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Exception/BatchTransferException.php'),(7788,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/ExceptionBufferingBatch.php'),(7789,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/FlushingBatch.php'),(7790,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/HistoryBatch.php'),(7791,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/NotifyingBatch.php'),(7792,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/composer.json'),(7793,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/AbstractCacheAdapter.php'),(7794,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterFactory.php'),(7795,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterInterface.php'),(7796,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/ClosureCacheAdapter.php'),(7797,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/DoctrineCacheAdapter.php'),(7798,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/NullCacheAdapter.php'),(7799,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php'),(7800,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf2CacheAdapter.php'),(7801,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/composer.json'),(7802,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/AbstractHasDispatcher.php'),(7803,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Collection.php'),(7804,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Event.php'),(7805,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/BadMethodCallException.php'),(7806,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/ExceptionCollection.php'),(7807,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/GuzzleException.php'),(7808,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php'),(7809,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php'),(7810,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/UnexpectedValueException.php'),(7811,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/FromConfigInterface.php'),(7812,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/HasDispatcherInterface.php'),(7813,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php'),(7814,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Version.php'),(7815,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/composer.json'),(7816,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php'),(7817,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/CachingEntityBody.php'),(7818,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Client.php'),(7819,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ClientInterface.php'),(7820,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlHandle.php'),(7821,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMulti.php'),(7822,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiInterface.php'),(7823,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php'),(7824,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlVersion.php'),(7825,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/RequestMediator.php'),(7826,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBody.php'),(7827,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBodyInterface.php'),(7828,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php'),(7829,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ClientErrorResponseException.php'),(7830,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CouldNotRewindStreamException.php'),(7831,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php'),(7832,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/HttpException.php'),(7833,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/MultiTransferException.php'),(7834,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/RequestException.php'),(7835,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ServerErrorResponseException.php'),(7836,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/TooManyRedirectsException.php'),(7837,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/IoEmittingEntityBody.php'),(7838,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/AbstractMessage.php'),(7839,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequest.php'),(7840,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequestInterface.php'),(7841,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/CacheControl.php'),(7842,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderCollection.php'),(7843,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactory.php'),(7844,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactoryInterface.php'),(7845,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderInterface.php'),(7846,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/Link.php'),(7847,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header.php'),(7848,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/MessageInterface.php'),(7849,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFile.php'),(7850,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFileInterface.php'),(7851,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Request.php'),(7852,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactory.php'),(7853,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactoryInterface.php'),(7854,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestInterface.php'),(7855,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Response.php'),(7856,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Mimetypes.php'),(7857,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/CommaAggregator.php'),(7858,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/DuplicateAggregator.php'),(7859,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/PhpAggregator.php'),(7860,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php'),(7861,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryString.php'),(7862,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ReadLimitEntityBody.php'),(7863,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php'),(7864,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Resources/cacert.pem'),(7865,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/StaticClient.php'),(7866,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Url.php'),(7867,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/composer.json'),(7868,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/Inflector.php'),(7869,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php'),(7870,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/MemoizingInflector.php'),(7871,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/PreComputedInflector.php'),(7872,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/composer.json'),(7873,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/AppendIterator.php'),(7874,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/ChunkedIterator.php'),(7875,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/FilterIterator.php'),(7876,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MapIterator.php'),(7877,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MethodProxyIterator.php'),(7878,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/README.md'),(7879,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/composer.json'),(7880,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/AbstractLogAdapter.php'),(7881,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ArrayLogAdapter.php'),(7882,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ClosureLogAdapter.php'),(7883,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/LogAdapterInterface.php'),(7884,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MessageFormatter.php'),(7885,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MonologLogAdapter.php'),(7886,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/PsrLogAdapter.php'),(7887,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf1LogAdapter.php'),(7888,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf2LogAdapter.php'),(7889,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/composer.json'),(7890,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParser.php'),(7891,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParserInterface.php'),(7892,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/AbstractMessageParser.php'),(7893,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParser.php'),(7894,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParserInterface.php'),(7895,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/PeclHttpMessageParser.php'),(7896,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/ParserRegistry.php'),(7897,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/PeclUriTemplate.php'),(7898,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplate.php'),(7899,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplateInterface.php'),(7900,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParser.php'),(7901,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParserInterface.php'),(7902,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/composer.json'),(7903,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php'),(7904,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/composer.json'),(7905,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractBackoffStrategy.php'),(7906,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractErrorCodeBackoffStrategy.php'),(7907,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffLogger.php'),(7908,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffPlugin.php'),(7909,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffStrategyInterface.php'),(7910,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CallbackBackoffStrategy.php'),(7911,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ConstantBackoffStrategy.php'),(7912,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CurlBackoffStrategy.php'),(7913,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ExponentialBackoffStrategy.php'),(7914,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/HttpBackoffStrategy.php'),(7915,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/LinearBackoffStrategy.php'),(7916,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ReasonPhraseBackoffStrategy.php'),(7917,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/TruncatedBackoffStrategy.php'),(7918,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/composer.json'),(7919,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php'),(7920,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php'),(7921,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheStorageInterface.php'),(7922,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CallbackCanCacheStrategy.php'),(7923,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php'),(7924,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheKeyProvider.php'),(7925,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheStorage.php'),(7926,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCanCacheStrategy.php'),(7927,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultRevalidation.php'),(7928,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DenyRevalidation.php'),(7929,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/RevalidationInterface.php'),(7930,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/SkipRevalidation.php'),(7931,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/composer.json'),(7932,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Cookie.php'),(7933,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/ArrayCookieJar.php'),(7934,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/CookieJarInterface.php'),(7935,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/FileCookieJar.php'),(7936,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookiePlugin.php'),(7937,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php'),(7938,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/composer.json'),(7939,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/CurlAuthPlugin.php'),(7940,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/composer.json'),(7941,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponseExceptionInterface.php'),(7942,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponsePlugin.php'),(7943,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php'),(7944,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/composer.json'),(7945,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/HistoryPlugin.php'),(7946,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/composer.json'),(7947,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/LogPlugin.php'),(7948,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/composer.json'),(7949,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/CommandContentMd5Plugin.php'),(7950,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/Md5ValidatorPlugin.php'),(7951,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/composer.json'),(7952,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/MockPlugin.php'),(7953,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/composer.json'),(7954,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/OauthPlugin.php'),(7955,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/composer.json'),(7956,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/composer.json'),(7957,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/AbstractConfigLoader.php'),(7958,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilder.php'),(7959,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderInterface.php'),(7960,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderLoader.php'),(7961,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/CachingConfigLoader.php'),(7962,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Client.php'),(7963,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ClientInterface.php'),(7964,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/AbstractCommand.php'),(7965,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ClosureCommand.php'),(7966,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CommandInterface.php'),(7967,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CreateResponseClassEvent.php'),(7968,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php'),(7969,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultResponseParser.php'),(7970,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/AliasFactory.php'),(7971,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/CompositeFactory.php'),(7972,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ConcreteClassFactory.php'),(7973,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/FactoryInterface.php'),(7974,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/MapFactory.php'),(7975,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ServiceDescriptionFactory.php'),(7976,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/AbstractRequestVisitor.php'),(7977,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/BodyVisitor.php'),(7978,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/HeaderVisitor.php'),(7979,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php'),(7980,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php'),(7981,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php'),(7982,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php'),(7983,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/RequestVisitorInterface.php'),(7984,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php'),(7985,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/XmlVisitor.php'),(7986,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php'),(7987,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/BodyVisitor.php'),(7988,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php'),(7989,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/JsonVisitor.php'),(7990,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php'),(7991,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ResponseVisitorInterface.php'),(7992,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php'),(7993,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/XmlVisitor.php'),(7994,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/VisitorFlyweight.php'),(7995,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationCommand.php'),(7996,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationResponseParser.php'),(7997,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/RequestSerializerInterface.php'),(7998,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseClassInterface.php'),(7999,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseParserInterface.php'),(8000,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ConfigLoaderInterface.php'),(8001,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Operation.php'),(8002,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/OperationInterface.php'),(8003,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Parameter.php'),(8004,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaFormatter.php'),(8005,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaValidator.php'),(8006,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescription.php'),(8007,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionInterface.php'),(8008,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionLoader.php'),(8009,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ValidatorInterface.php'),(8010,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php'),(8011,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandTransferException.php'),(8012,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/DescriptionBuilderException.php'),(8013,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/InconsistentClientTransferException.php'),(8014,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ResponseClassException.php'),(8015,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceBuilderException.php'),(8016,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php'),(8017,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ValidationException.php'),(8018,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/AbstractResourceIteratorFactory.php'),(8019,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/CompositeResourceIteratorFactory.php'),(8020,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/MapResourceIteratorFactory.php'),(8021,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/Model.php'),(8022,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIterator.php'),(8023,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorApplyBatched.php'),(8024,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorClassFactory.php'),(8025,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorFactoryInterface.php'),(8026,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorInterface.php'),(8027,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/composer.json'),(8028,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/PhpStreamRequestFactory.php'),(8029,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/Stream.php'),(8030,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamInterface.php'),(8031,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamRequestFactoryInterface.php'),(8032,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/composer.json'),(8033,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/CHANGELOG.md'),(8034,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/Dockerfile'),(8035,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/LICENSE'),(8036,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/README.md'),(8037,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/UPGRADING.md'),(8038,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/composer.json'),(8039,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Client.php'),(8040,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/ClientInterface.php'),(8041,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php'),(8042,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php'),(8043,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php'),(8044,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php'),(8045,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php'),(8046,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php'),(8047,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/ClientException.php'),(8048,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/ConnectException.php'),(8049,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php'),(8050,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php'),(8051,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php'),(8052,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/SeekException.php'),(8053,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/ServerException.php'),(8054,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php'),(8055,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception/TransferException.php'),(8056,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php'),(8057,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php'),(8058,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php'),(8059,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php'),(8060,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php'),(8061,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php'),(8062,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php'),(8063,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php'),(8064,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/HandlerStack.php'),(8065,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/MessageFormatter.php'),(8066,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Middleware.php'),(8067,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Pool.php'),(8068,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php'),(8069,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php'),(8070,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/RequestOptions.php'),(8071,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php'),(8072,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/TransferStats.php'),(8073,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/UriTemplate.php'),(8074,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Utils.php'),(8075,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/functions.php'),(8076,'wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/functions_include.php'),(8077,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/CHANGELOG.md'),(8078,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/LICENSE'),(8079,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/Makefile'),(8080,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/README.md'),(8081,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/composer.json'),(8082,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/AggregateException.php'),(8083,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/CancellationException.php'),(8084,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/Coroutine.php'),(8085,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/Create.php'),(8086,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/Each.php'),(8087,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/EachPromise.php'),(8088,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/FulfilledPromise.php'),(8089,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/Is.php'),(8090,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/Promise.php'),(8091,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/PromiseInterface.php'),(8092,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/PromisorInterface.php'),(8093,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/RejectedPromise.php'),(8094,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/RejectionException.php'),(8095,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/TaskQueue.php'),(8096,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/TaskQueueInterface.php'),(8097,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/Utils.php'),(8098,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/functions.php'),(8099,'wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/functions_include.php'),(8100,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/CHANGELOG.md'),(8101,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/LICENSE'),(8102,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/README.md'),(8103,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/composer.json'),(8104,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/AppendStream.php'),(8105,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/BufferStream.php'),(8106,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/CachingStream.php'),(8107,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/DroppingStream.php'),(8108,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/FnStream.php'),(8109,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Header.php'),(8110,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/InflateStream.php'),(8111,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/LazyOpenStream.php'),(8112,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/LimitStream.php'),(8113,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Message.php'),(8114,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/MessageTrait.php'),(8115,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/MimeType.php'),(8116,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/MultipartStream.php'),(8117,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/NoSeekStream.php'),(8118,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/PumpStream.php'),(8119,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Query.php'),(8120,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Request.php'),(8121,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Response.php'),(8122,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Rfc7230.php'),(8123,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/ServerRequest.php'),(8124,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Stream.php'),(8125,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php'),(8126,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/StreamWrapper.php'),(8127,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/UploadedFile.php'),(8128,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Uri.php'),(8129,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/UriNormalizer.php'),(8130,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/UriResolver.php'),(8131,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/Utils.php'),(8132,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/functions.php'),(8133,'wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/functions_include.php'),(8134,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/CHANGELOG-1.0.md'),(8135,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/CHANGELOG-1.1.md'),(8136,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/CHANGELOG-1.2.md'),(8137,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/Gemfile'),(8138,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/LICENSE'),(8139,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/README.md'),(8140,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/composer.json'),(8141,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/package.json'),(8142,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCache.php'),(8143,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollection.php'),(8144,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollectionInterface.php'),(8145,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetInterface.php'),(8146,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetReference.php'),(8147,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/BaseAsset.php'),(8148,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/FileAsset.php'),(8149,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/GlobAsset.php'),(8150,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/HttpAsset.php'),(8151,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/AssetCollectionFilterIterator.php'),(8152,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/AssetCollectionIterator.php'),(8153,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/StringAsset.php'),(8154,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/AssetManager.php'),(8155,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/AssetWriter.php'),(8156,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ApcCache.php'),(8157,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ArrayCache.php'),(8158,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/CacheInterface.php'),(8159,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ConfigCache.php'),(8160,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ExpiringCache.php'),(8161,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/FilesystemCache.php'),(8162,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Exception/Exception.php'),(8163,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Exception/FilterException.php'),(8164,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticExtension.php'),(8165,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterFunction.php'),(8166,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterInvoker.php'),(8167,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterNode.php'),(8168,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticNode.php'),(8169,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticTokenParser.php'),(8170,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigFormulaLoader.php'),(8171,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigResource.php'),(8172,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/ValueContainer.php'),(8173,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/AssetFactory.php'),(8174,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/LazyAssetManager.php'),(8175,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/BasePhpFormulaLoader.php'),(8176,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/CachedFormulaLoader.php'),(8177,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/FormulaLoaderInterface.php'),(8178,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/FunctionCallsFormulaLoader.php'),(8179,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/CoalescingDirectoryResource.php'),(8180,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/DirectoryResource.php'),(8181,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/FileResource.php'),(8182,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/IteratorResourceInterface.php'),(8183,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/ResourceInterface.php'),(8184,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/CacheBustingWorker.php'),(8185,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/EnsureFilterWorker.php'),(8186,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/WorkerInterface.php'),(8187,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/AutoprefixerFilter.php'),(8188,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseCssFilter.php'),(8189,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseNodeFilter.php'),(8190,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseProcessFilter.php'),(8191,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CallablesFilter.php'),(8192,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CleanCssFilter.php'),(8193,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CoffeeScriptFilter.php'),(8194,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CompassFilter.php'),(8195,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssCacheBustingFilter.php'),(8196,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssEmbedFilter.php'),(8197,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssImportFilter.php'),(8198,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssMinFilter.php'),(8199,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssRewriteFilter.php'),(8200,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/DartFilter.php'),(8201,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/DependencyExtractorInterface.php'),(8202,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/EmberPrecompileFilter.php'),(8203,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterCollection.php'),(8204,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterInterface.php'),(8205,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/BaseCompilerFilter.php'),(8206,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/CompilerApiFilter.php'),(8207,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/CompilerJarFilter.php'),(8208,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GssFilter.php'),(8209,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/HandlebarsFilter.php'),(8210,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/HashableInterface.php'),(8211,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSMinFilter.php'),(8212,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSMinPlusFilter.php'),(8213,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSqueezeFilter.php'),(8214,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JpegoptimFilter.php'),(8215,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JpegtranFilter.php'),(8216,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/LessFilter.php'),(8217,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/LessphpFilter.php'),(8218,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/MinifyCssCompressorFilter.php'),(8219,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/OptiPngFilter.php'),(8220,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PackagerFilter.php'),(8221,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PackerFilter.php'),(8222,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PhpCssEmbedFilter.php'),(8223,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PngoutFilter.php'),(8224,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/ReactJsxFilter.php'),(8225,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/RooleFilter.php'),(8226,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/BaseSassFilter.php'),(8227,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/SassFilter.php'),(8228,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/ScssFilter.php'),(8229,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SassphpFilter.php'),(8230,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/ScssphpFilter.php'),(8231,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SeparatorFilter.php'),(8232,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SprocketsFilter.php'),(8233,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/StylusFilter.php'),(8234,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/TypeScriptFilter.php'),(8235,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyCssFilter.php'),(8236,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyJs2Filter.php'),(8237,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyJsFilter.php'),(8238,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/BaseCompressorFilter.php'),(8239,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/CssCompressorFilter.php'),(8240,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/JsCompressorFilter.php'),(8241,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/FilterManager.php'),(8242,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/CssUtils.php'),(8243,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/FilesystemUtils.php'),(8244,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/LessUtils.php'),(8245,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/SassUtils.php'),(8246,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/TraversableString.php'),(8247,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/VarUtils.php'),(8248,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/ValueSupplierInterface.php'),(8249,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/functions.php'),(8250,'wp-content/plugins/updraftplus/vendor/mikemccabe/json-patch-php/README.md'),(8251,'wp-content/plugins/updraftplus/vendor/mikemccabe/json-patch-php/composer.json'),(8252,'wp-content/plugins/updraftplus/vendor/mikemccabe/json-patch-php/local_tests.json'),(8253,'wp-content/plugins/updraftplus/vendor/mikemccabe/json-patch-php/run_tests.php'),(8254,'wp-content/plugins/updraftplus/vendor/mikemccabe/json-patch-php/simplexml_tests.json'),(8255,'wp-content/plugins/updraftplus/vendor/mikemccabe/json-patch-php/src/JsonPatch.php'),(8256,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/CHANGELOG.md'),(8257,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/LICENSE'),(8258,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/README.rst'),(8259,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/bin/jp.php'),(8260,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/bin/perf.php'),(8261,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/composer.json'),(8262,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/AstRuntime.php'),(8263,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/CompilerRuntime.php'),(8264,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/DebugRuntime.php'),(8265,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/Env.php'),(8266,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/FnDispatcher.php'),(8267,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/JmesPath.php'),(8268,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/Lexer.php'),(8269,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/Parser.php'),(8270,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/SyntaxErrorException.php'),(8271,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/TreeCompiler.php'),(8272,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/TreeInterpreter.php'),(8273,'wp-content/plugins/updraftplus/vendor/mtdowling/jmespath.php/src/Utils.php'),(8274,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/LICENSE'),(8275,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/composer.json'),(8276,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey'),(8277,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc'),(8278,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/byte_safe_strings.php'),(8279,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/cast_to_int.php'),(8280,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/error_polyfill.php'),(8281,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random.php'),(8282,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php'),(8283,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php'),(8284,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php'),(8285,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php'),(8286,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php'),(8287,'wp-content/plugins/updraftplus/vendor/paragonie/random_compat/lib/random_int.php'),(8288,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/AUTHORS'),(8289,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/BACKERS.md'),(8290,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/LICENSE'),(8291,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/README.md'),(8292,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/appveyor.yml'),(8293,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/composer.json'),(8294,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php'),(8295,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php'),(8296,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php'),(8297,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php'),(8298,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php'),(8299,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php'),(8300,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php'),(8301,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php'),(8302,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php'),(8303,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php'),(8304,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php'),(8305,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php'),(8306,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php'),(8307,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php'),(8308,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/X509.php'),(8309,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php'),(8310,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php'),(8311,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php'),(8312,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php'),(8313,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php'),(8314,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php'),(8315,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php'),(8316,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/System/SSH_Agent.php'),(8317,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php'),(8318,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/openssl.cnf'),(8319,'wp-content/plugins/updraftplus/vendor/psr/http-message/CHANGELOG.md'),(8320,'wp-content/plugins/updraftplus/vendor/psr/http-message/LICENSE'),(8321,'wp-content/plugins/updraftplus/vendor/psr/http-message/README.md'),(8322,'wp-content/plugins/updraftplus/vendor/psr/http-message/composer.json'),(8323,'wp-content/plugins/updraftplus/vendor/psr/http-message/src/MessageInterface.php'),(8324,'wp-content/plugins/updraftplus/vendor/psr/http-message/src/RequestInterface.php'),(8325,'wp-content/plugins/updraftplus/vendor/psr/http-message/src/ResponseInterface.php'),(8326,'wp-content/plugins/updraftplus/vendor/psr/http-message/src/ServerRequestInterface.php'),(8327,'wp-content/plugins/updraftplus/vendor/psr/http-message/src/StreamInterface.php'),(8328,'wp-content/plugins/updraftplus/vendor/psr/http-message/src/UploadedFileInterface.php'),(8329,'wp-content/plugins/updraftplus/vendor/psr/http-message/src/UriInterface.php'),(8330,'wp-content/plugins/updraftplus/vendor/psr/log/LICENSE'),(8331,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/AbstractLogger.php'),(8332,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/InvalidArgumentException.php'),(8333,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LogLevel.php'),(8334,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareInterface.php'),(8335,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareTrait.php'),(8336,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerInterface.php'),(8337,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerTrait.php'),(8338,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/NullLogger.php'),(8339,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/Test/DummyTest.php'),(8340,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php'),(8341,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/Test/TestLogger.php'),(8342,'wp-content/plugins/updraftplus/vendor/psr/log/README.md'),(8343,'wp-content/plugins/updraftplus/vendor/psr/log/composer.json'),(8344,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/CODE_OF_CONDUCT.md'),(8345,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/CONTRIBUTING.md'),(8346,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/LICENSE'),(8347,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/README.md'),(8348,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/apigen.neon'),(8349,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/composer.json'),(8350,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/CDN/Resource/Flavor.php'),(8351,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/CDN/Resource/Service.php'),(8352,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/CDN/Service.php'),(8353,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/ArrayAccess.php'),(8354,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Base.php'),(8355,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ArrayCollection.php'),(8356,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/PaginatedIterator.php'),(8357,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ResourceIterator.php'),(8358,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection.php'),(8359,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Datetime.php'),(8360,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Header.php'),(8361,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Mime.php'),(8362,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Service.php'),(8363,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Size.php'),(8364,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/State.php'),(8365,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncError.php'),(8366,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncHttpError.php'),(8367,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncTimeoutError.php'),(8368,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AttributeError.php'),(8369,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AuthenticationError.php'),(8370,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/BackupInstanceError.php'),(8371,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/BackupNameError.php'),(8372,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/BaseException.php'),(8373,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnError.php'),(8374,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnHttpError.php'),(8375,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnNotAvailableError.php'),(8376,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnTtlError.php'),(8377,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CollectionException.php'),(8378,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerCreateError.php'),(8379,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerDeleteError.php'),(8380,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerError.php'),(8381,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNameError.php'),(8382,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotEmptyError.php'),(8383,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotFoundError.php'),(8384,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateError.php'),(8385,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateUpdateError.php'),(8386,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CredentialError.php'),(8387,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseCreateError.php'),(8388,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseDeleteError.php'),(8389,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseListError.php'),(8390,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseNameError.php'),(8391,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseUpdateError.php'),(8392,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DeleteError.php'),(8393,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DocumentError.php'),(8394,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DomainError.php'),(8395,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DomainNotFoundException.php'),(8396,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EmptyResponseError.php'),(8397,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EndpointError.php'),(8398,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/FlavorError.php'),(8399,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ForbiddenOperationException.php'),(8400,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpError.php'),(8401,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpForbiddenError.php'),(8402,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpOverLimitError.php'),(8403,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpResponseException.php'),(8404,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpRetryError.php'),(8405,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpTimeoutError.php'),(8406,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUnauthorizedError.php'),(8407,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUrlError.php'),(8408,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IOError.php'),(8409,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IdRequiredError.php'),(8410,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ImageError.php'),(8411,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceCreateError.php'),(8412,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceDeleteError.php'),(8413,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceError.php'),(8414,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceFlavorError.php'),(8415,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceNotFound.php'),(8416,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceUpdateError.php'),(8417,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidArgumentError.php'),(8418,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIdTypeError.php'),(8419,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIpTypeError.php'),(8420,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidParameterError.php'),(8421,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidRequestError.php'),(8422,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidTemplateError.php'),(8423,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/JsonError.php'),(8424,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/LoggingException.php'),(8425,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataCreateError.php'),(8426,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataDeleteError.php'),(8427,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataError.php'),(8428,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataJsonError.php'),(8429,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataKeyError.php'),(8430,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataPrefixError.php'),(8431,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataUpdateError.php'),(8432,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MisMatchedChecksumError.php'),(8433,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MissingValueError.php'),(8434,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NameError.php'),(8435,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkCreateError.php'),(8436,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkDeleteError.php'),(8437,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkError.php'),(8438,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUpdateError.php'),(8439,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUrlError.php'),(8440,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoContentTypeError.php'),(8441,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoNameError.php'),(8442,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjFetchError.php'),(8443,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectCopyError.php'),(8444,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectError.php'),(8445,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RebuildError.php'),(8446,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RecordTypeError.php'),(8447,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceBucketException.php'),(8448,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceNotFoundException.php'),(8449,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RuntimeException.php'),(8450,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerActionError.php'),(8451,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerCreateError.php'),(8452,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerDeleteError.php'),(8453,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerImageScheduleError.php'),(8454,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerIpsError.php'),(8455,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerJsonError.php'),(8456,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUpdateError.php'),(8457,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUrlError.php'),(8458,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServiceException.php'),(8459,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/SnapshotError.php'),(8460,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/TempUrlMethodError.php'),(8461,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownError.php'),(8462,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownParameterError.php'),(8463,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnrecognizedServiceError.php'),(8464,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedExtensionError.php'),(8465,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedFeatureExtension.php'),(8466,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedVersionError.php'),(8467,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UpdateError.php'),(8468,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UrlError.php'),(8469,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserCreateError.php'),(8470,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserDeleteError.php'),(8471,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserListError.php'),(8472,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserNameError.php'),(8473,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserUpdateError.php'),(8474,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeError.php'),(8475,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeTypeError.php'),(8476,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Client.php'),(8477,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/Formatter.php'),(8478,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/RequestSubscriber.php'),(8479,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Lang.php'),(8480,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Log/Logger.php'),(8481,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Metadata.php'),(8482,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/PersistentObject.php'),(8483,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/BaseResource.php'),(8484,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/NovaResource.php'),(8485,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/PersistentResource.php'),(8486,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/ReadOnlyResource.php'),(8487,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/AbstractService.php'),(8488,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Catalog.php'),(8489,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogItem.php'),(8490,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogService.php'),(8491,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Endpoint.php'),(8492,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/NovaService.php'),(8493,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceBuilder.php'),(8494,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceInterface.php'),(8495,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Constants/User.php'),(8496,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Role.php'),(8497,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Tenant.php'),(8498,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Token.php'),(8499,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/User.php'),(8500,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Service.php'),(8501,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/AbstractService.php'),(8502,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/CDNService.php'),(8503,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/Header.php'),(8504,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/UrlType.php'),(8505,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Enum/ReturnType.php'),(8506,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/BulkOperationException.php'),(8507,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ContainerException.php'),(8508,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ObjectNotEmptyException.php'),(8509,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ObjectNotFoundException.php'),(8510,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/StreamException.php'),(8511,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/UploadException.php'),(8512,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractContainer.php'),(8513,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractResource.php'),(8514,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Account.php'),(8515,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/CDNContainer.php'),(8516,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Container.php'),(8517,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/ContainerMetadata.php'),(8518,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/DataObject.php'),(8519,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Service.php'),(8520,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/AbstractTransfer.php'),(8521,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConcurrentTransfer.php'),(8522,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConsecutiveTransfer.php'),(8523,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ContainerMigration.php'),(8524,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/DirectorySync.php'),(8525,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferBuilder.php'),(8526,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferPart.php'),(8527,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferState.php'),(8528,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/OpenStack.php'),(8529,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Rackspace.php'),(8530,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Version.php'),(8531,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/php-opencloud.php'),(8532,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/phpunit.xml.dist'),(8533,'wp-content/plugins/updraftplus/vendor/ralouphie/getallheaders/LICENSE'),(8534,'wp-content/plugins/updraftplus/vendor/ralouphie/getallheaders/README.md'),(8535,'wp-content/plugins/updraftplus/vendor/ralouphie/getallheaders/composer.json'),(8536,'wp-content/plugins/updraftplus/vendor/ralouphie/getallheaders/phpunit.xml'),(8537,'wp-content/plugins/updraftplus/vendor/ralouphie/getallheaders/src/getallheaders.php'),(8538,'wp-content/plugins/updraftplus/vendor/ralouphie/getallheaders/tests/GetAllHeadersTest.php'),(8539,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/CHANGELOG.md'),(8540,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php'),(8541,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php'),(8542,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php'),(8543,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/WrappedListener.php'),(8544,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php'),(8545,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Event.php'),(8546,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventDispatcher.php'),(8547,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventDispatcherInterface.php'),(8548,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventSubscriberInterface.php'),(8549,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/GenericEvent.php'),(8550,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php'),(8551,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/LICENSE'),(8552,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/README.md'),(8553,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/composer.json'),(8554,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/phpunit.xml.dist'),(8555,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Idn.php'),(8556,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Info.php'),(8557,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/LICENSE'),(8558,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/README.md'),(8559,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php'),(8560,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/Regex.php'),(8561,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/deviation.php'),(8562,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php'),(8563,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php'),(8564,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php'),(8565,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/ignored.php'),(8566,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/mapped.php'),(8567,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/Resources/unidata/virama.php'),(8568,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/bootstrap.php'),(8569,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-idn/composer.json'),(8570,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/LICENSE'),(8571,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/Normalizer.php'),(8572,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/README.md'),(8573,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php'),(8574,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php'),(8575,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php'),(8576,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php'),(8577,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php'),(8578,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/bootstrap.php'),(8579,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-intl-normalizer/composer.json'),(8580,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/LICENSE'),(8581,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/Mbstring.php'),(8582,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/README.md'),(8583,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/Resources/mb_convert_variables.php8'),(8584,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php'),(8585,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php'),(8586,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php'),(8587,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/bootstrap.php'),(8588,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-mbstring/composer.json'),(8589,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/LICENSE'),(8590,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Php70.php'),(8591,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/README.md'),(8592,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php'),(8593,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/AssertionError.php'),(8594,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php'),(8595,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/Error.php'),(8596,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php'),(8597,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php'),(8598,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/Resources/stubs/TypeError.php'),(8599,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/bootstrap.php'),(8600,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php70/composer.json'),(8601,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php72/LICENSE'),(8602,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php72/Php72.php'),(8603,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php72/README.md'),(8604,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php72/bootstrap.php'),(8605,'wp-content/plugins/updraftplus/vendor/symfony/polyfill-php72/composer.json'),(8606,'wp-content/plugins/updraftplus/vendor/symfony/process/CHANGELOG.md'),(8607,'wp-content/plugins/updraftplus/vendor/symfony/process/Exception/ExceptionInterface.php'),(8608,'wp-content/plugins/updraftplus/vendor/symfony/process/Exception/InvalidArgumentException.php'),(8609,'wp-content/plugins/updraftplus/vendor/symfony/process/Exception/LogicException.php'),(8610,'wp-content/plugins/updraftplus/vendor/symfony/process/Exception/ProcessFailedException.php'),(8611,'wp-content/plugins/updraftplus/vendor/symfony/process/Exception/ProcessTimedOutException.php'),(8612,'wp-content/plugins/updraftplus/vendor/symfony/process/Exception/RuntimeException.php'),(8613,'wp-content/plugins/updraftplus/vendor/symfony/process/ExecutableFinder.php'),(8614,'wp-content/plugins/updraftplus/vendor/symfony/process/InputStream.php'),(8615,'wp-content/plugins/updraftplus/vendor/symfony/process/LICENSE'),(8616,'wp-content/plugins/updraftplus/vendor/symfony/process/PhpExecutableFinder.php'),(8617,'wp-content/plugins/updraftplus/vendor/symfony/process/PhpProcess.php'),(8618,'wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/AbstractPipes.php'),(8619,'wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/PipesInterface.php'),(8620,'wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/UnixPipes.php'),(8621,'wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/WindowsPipes.php'),(8622,'wp-content/plugins/updraftplus/vendor/symfony/process/Process.php'),(8623,'wp-content/plugins/updraftplus/vendor/symfony/process/ProcessBuilder.php'),(8624,'wp-content/plugins/updraftplus/vendor/symfony/process/ProcessUtils.php'),(8625,'wp-content/plugins/updraftplus/vendor/symfony/process/README.md'),(8626,'wp-content/plugins/updraftplus/vendor/symfony/process/composer.json'),(8627,'wp-content/plugins/updraftplus/vendor/symfony/process/phpunit.xml.dist'),(8628,'wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/CI/php-compatibility.xml'),(8629,'wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/CI/php-syntax-check.xml'),(8630,'wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/README.md'),(8631,'wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/composer.json'),(8632,'wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-semaphore/class-updraft-semaphore.php'),(8633,'wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-semaphore/test.php'),(8634,'wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager-commands.php'),(8635,'wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager.php'),(8636,'wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-meta.php'),(8637,'wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-options.php'),(8638,'wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task.php'),(8639,'wp-content/plugins/updraftplus/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-tasks-activation.php'),(8640,'wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerFFWDShortcode.php'),(8641,'wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerInfo_ffwd.php'),(8642,'wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerLicensing_ffwd.php'),(8643,'wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerOptions_ffwd.php'),(8644,'wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerThemes_ffwd.php'),(8645,'wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerUninstall_ffwd.php'),(8646,'wp-content/plugins/wd-facebook-feed/admin/controllers/FFWDControllerWidget.php'),(8647,'wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelFFWDShortcode.php'),(8648,'wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelInfo_ffwd.php'),(8649,'wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelLicensing_ffwd.php'),(8650,'wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelOptions_ffwd.php'),(8651,'wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelThemes_ffwd.php'),(8652,'wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelUninstall_ffwd.php'),(8653,'wp-content/plugins/wd-facebook-feed/admin/models/FFWDModelWidget.php'),(8654,'wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewFFWDShortcode.php'),(8655,'wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewInfo_ffwd.php'),(8656,'wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewLicensing_ffwd.php'),(8657,'wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewOptions_ffwd.php'),(8658,'wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewThemes_ffwd.php'),(8659,'wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewUninstall_ffwd.php'),(8660,'wp-content/plugins/wd-facebook-feed/admin/views/FFWDViewWidget.php'),(8661,'wp-content/plugins/wd-facebook-feed/admin/views/uninstall.php'),(8662,'wp-content/plugins/wd-facebook-feed/css/ffwd_frontend.css'),(8663,'wp-content/plugins/wd-facebook-feed/css/ffwd_notices.css'),(8664,'wp-content/plugins/wd-facebook-feed/css/ffwd_shortcode.css'),(8665,'wp-content/plugins/wd-facebook-feed/css/ffwd_tables.css'),(8666,'wp-content/plugins/wd-facebook-feed/css/fonts/ffwd.eot'),(8667,'wp-content/plugins/wd-facebook-feed/css/fonts/ffwd.svg'),(8668,'wp-content/plugins/wd-facebook-feed/css/fonts/ffwd.ttf'),(8669,'wp-content/plugins/wd-facebook-feed/css/fonts/ffwd.woff'),(8670,'wp-content/plugins/wd-facebook-feed/css/fonts.css'),(8671,'wp-content/plugins/wd-facebook-feed/css/images/animated-overlay.gif'),(8672,'wp-content/plugins/wd-facebook-feed/css/images/help.svg'),(8673,'wp-content/plugins/wd-facebook-feed/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png'),(8674,'wp-content/plugins/wd-facebook-feed/css/images/ui-bg_diagonals-thick_20_666666_40x40.png'),(8675,'wp-content/plugins/wd-facebook-feed/css/images/ui-bg_flat_10_000000_40x100.png'),(8676,'wp-content/plugins/wd-facebook-feed/css/images/ui-bg_glass_100_f6f6f6_1x400.png'),(8677,'wp-content/plugins/wd-facebook-feed/css/images/ui-bg_glass_100_fdf5ce_1x400.png'),(8678,'wp-content/plugins/wd-facebook-feed/css/images/ui-bg_glass_65_ffffff_1x400.png'),(8679,'wp-content/plugins/wd-facebook-feed/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png'),(8680,'wp-content/plugins/wd-facebook-feed/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png'),(8681,'wp-content/plugins/wd-facebook-feed/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png'),(8682,'wp-content/plugins/wd-facebook-feed/css/images/ui-icons_222222_256x240.png'),(8683,'wp-content/plugins/wd-facebook-feed/css/images/ui-icons_228ef1_256x240.png'),(8684,'wp-content/plugins/wd-facebook-feed/css/images/ui-icons_ef8c08_256x240.png'),(8685,'wp-content/plugins/wd-facebook-feed/css/images/ui-icons_ffd27a_256x240.png'),(8686,'wp-content/plugins/wd-facebook-feed/css/images/ui-icons_ffffff_256x240.png'),(8687,'wp-content/plugins/wd-facebook-feed/css/jquery-ui-1.10.3.custom.css'),(8688,'wp-content/plugins/wd-facebook-feed/css/jquery.mCustomScrollbar.css'),(8689,'wp-content/plugins/wd-facebook-feed/css/topbar.css'),(8690,'wp-content/plugins/wd-facebook-feed/css/tw-gb/block.css'),(8691,'wp-content/plugins/wd-facebook-feed/css/wd_bp_install.css'),(8692,'wp-content/plugins/wd-facebook-feed/elementor/elementor.php'),(8693,'wp-content/plugins/wd-facebook-feed/elementor/js/ffwd_elementor_widget.js'),(8694,'wp-content/plugins/wd-facebook-feed/elementor/styles/editor.css'),(8695,'wp-content/plugins/wd-facebook-feed/elementor/styles/fonts/twbb-icons.eot'),(8696,'wp-content/plugins/wd-facebook-feed/elementor/styles/fonts/twbb-icons.svg'),(8697,'wp-content/plugins/wd-facebook-feed/elementor/styles/fonts/twbb-icons.ttf'),(8698,'wp-content/plugins/wd-facebook-feed/elementor/styles/fonts/twbb-icons.woff'),(8699,'wp-content/plugins/wd-facebook-feed/elementor/widget.php'),(8700,'wp-content/plugins/wd-facebook-feed/facebook-feed-wd-notices.php'),(8701,'wp-content/plugins/wd-facebook-feed/facebook-feed-wd.php'),(8702,'wp-content/plugins/wd-facebook-feed/fonts/arial.ttf'),(8703,'wp-content/plugins/wd-facebook-feed/framework/WDFacebookFeed.php'),(8704,'wp-content/plugins/wd-facebook-feed/framework/WDW_FFWD_Library.php'),(8705,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/base_facebook.php'),(8706,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/changelog.md'),(8707,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/facebook.php'),(8708,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/fb_ca_chain_bundle.crt'),(8709,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/readme.md'),(8710,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Authentication/AccessToken.php'),(8711,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Authentication/AccessTokenMetadata.php'),(8712,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Authentication/OAuth2Client.php'),(8713,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookAuthenticationException.php'),(8714,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookAuthorizationException.php'),(8715,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookClientException.php'),(8716,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookOtherException.php'),(8717,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookResponseException.php'),(8718,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookSDKException.php'),(8719,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookServerException.php'),(8720,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Exceptions/FacebookThrottleException.php'),(8721,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Facebook.php'),(8722,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FacebookApp.php'),(8723,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FacebookBatchRequest.php'),(8724,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FacebookBatchResponse.php'),(8725,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FacebookClient.php'),(8726,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FacebookRequest.php'),(8727,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FacebookResponse.php'),(8728,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FileUpload/FacebookFile.php'),(8729,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FileUpload/FacebookVideo.php'),(8730,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/FileUpload/Mimetypes.php'),(8731,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/Collection.php'),(8732,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphAchievement.php'),(8733,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphAlbum.php'),(8734,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphApplication.php'),(8735,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphCoverPhoto.php'),(8736,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphEdge.php'),(8737,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphEvent.php'),(8738,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphGroup.php'),(8739,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphList.php'),(8740,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphLocation.php'),(8741,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphNode.php'),(8742,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphNodeFactory.php'),(8743,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphObject.php'),(8744,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphObjectFactory.php'),(8745,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphPage.php'),(8746,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphPicture.php'),(8747,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphSessionInfo.php'),(8748,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/GraphNodes/GraphUser.php'),(8749,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Helpers/FacebookCanvasHelper.php'),(8750,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Helpers/FacebookJavaScriptHelper.php'),(8751,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Helpers/FacebookPageTabHelper.php'),(8752,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Helpers/FacebookRedirectLoginHelper.php'),(8753,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Helpers/FacebookSignedRequestFromInputHelper.php'),(8754,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Http/GraphRawResponse.php'),(8755,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Http/RequestBodyInterface.php'),(8756,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Http/RequestBodyMultipart.php'),(8757,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Http/RequestBodyUrlEncoded.php'),(8758,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/FacebookCurl.php'),(8759,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/FacebookCurlHttpClient.php'),(8760,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/FacebookGuzzleHttpClient.php'),(8761,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/FacebookHttpClientInterface.php'),(8762,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/FacebookStream.php'),(8763,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/FacebookStreamHttpClient.php'),(8764,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/HttpClients/certs/DigiCertHighAssuranceEVRootCA.pem'),(8765,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PersistentData/FacebookMemoryPersistentDataHandler.php'),(8766,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PersistentData/FacebookSessionPersistentDataHandler.php'),(8767,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PersistentData/PersistentDataInterface.php'),(8768,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PseudoRandomString/McryptPseudoRandomStringGenerator.php'),(8769,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PseudoRandomString/OpenSslPseudoRandomStringGenerator.php'),(8770,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PseudoRandomString/PseudoRandomStringGeneratorInterface.php'),(8771,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PseudoRandomString/PseudoRandomStringGeneratorTrait.php'),(8772,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/PseudoRandomString/UrandomPseudoRandomStringGenerator.php'),(8773,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/SignedRequest.php'),(8774,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Url/FacebookUrlDetectionHandler.php'),(8775,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Url/FacebookUrlManipulator.php'),(8776,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/Url/UrlDetectionInterface.php'),(8777,'wp-content/plugins/wd-facebook-feed/framework/facebook-sdk/src/Facebook/autoload.php'),(8778,'wp-content/plugins/wd-facebook-feed/framework/linkify/Linkify.php'),(8779,'wp-content/plugins/wd-facebook-feed/framework/linkify/LinkifyInterface.php'),(8780,'wp-content/plugins/wd-facebook-feed/frontend/controllers/FFWDControllerMain.php'),(8781,'wp-content/plugins/wd-facebook-feed/frontend/controllers/FFWDControllerPopupBox.php'),(8782,'wp-content/plugins/wd-facebook-feed/frontend/models/FFWDModelAlbum_compact.php'),(8783,'wp-content/plugins/wd-facebook-feed/frontend/models/FFWDModelBlog_style.php'),(8784,'wp-content/plugins/wd-facebook-feed/frontend/models/FFWDModelMain.php'),(8785,'wp-content/plugins/wd-facebook-feed/frontend/models/FFWDModelPopupBox.php'),(8786,'wp-content/plugins/wd-facebook-feed/frontend/models/FFWDModelThumbnails.php'),(8787,'wp-content/plugins/wd-facebook-feed/frontend/models/FFWDModelThumbnails_masonry.php'),(8788,'wp-content/plugins/wd-facebook-feed/frontend/views/FFWDViewAlbum_compact.php'),(8789,'wp-content/plugins/wd-facebook-feed/frontend/views/FFWDViewBlog_style.php'),(8790,'wp-content/plugins/wd-facebook-feed/frontend/views/FFWDViewPopupBox.php'),(8791,'wp-content/plugins/wd-facebook-feed/frontend/views/FFWDViewThumbnails.php'),(8792,'wp-content/plugins/wd-facebook-feed/frontend/views/FFWDViewThumbnails_masonry.php'),(8793,'wp-content/plugins/wd-facebook-feed/images/add_but.png'),(8794,'wp-content/plugins/wd-facebook-feed/images/ajax_loader.png'),(8795,'wp-content/plugins/wd-facebook-feed/images/album-icon.png'),(8796,'wp-content/plugins/wd-facebook-feed/images/album_compact_preview.jpg'),(8797,'wp-content/plugins/wd-facebook-feed/images/album_extended_preview.jpg'),(8798,'wp-content/plugins/wd-facebook-feed/images/arrow3.png'),(8799,'wp-content/plugins/wd-facebook-feed/images/backup_logo.png'),(8800,'wp-content/plugins/wd-facebook-feed/images/best-wordpress-gallery.png'),(8801,'wp-content/plugins/wd-facebook-feed/images/blank.gif'),(8802,'wp-content/plugins/wd-facebook-feed/images/blog_style.jpg'),(8803,'wp-content/plugins/wd-facebook-feed/images/bwg_shortcode.png'),(8804,'wp-content/plugins/wd-facebook-feed/images/captcha_refresh.png'),(8805,'wp-content/plugins/wd-facebook-feed/images/comment-icon.png'),(8806,'wp-content/plugins/wd-facebook-feed/images/comments.png'),(8807,'wp-content/plugins/wd-facebook-feed/images/crop.png'),(8808,'wp-content/plugins/wd-facebook-feed/images/default.png'),(8809,'wp-content/plugins/wd-facebook-feed/images/delete.png'),(8810,'wp-content/plugins/wd-facebook-feed/images/draggable.png'),(8811,'wp-content/plugins/wd-facebook-feed/images/feed/angry_gray.png'),(8812,'wp-content/plugins/wd-facebook-feed/images/feed/cb_cont.png'),(8813,'wp-content/plugins/wd-facebook-feed/images/feed/comment_white.png'),(8814,'wp-content/plugins/wd-facebook-feed/images/feed/download blue.png'),(8815,'wp-content/plugins/wd-facebook-feed/images/feed/download.png'),(8816,'wp-content/plugins/wd-facebook-feed/images/feed/f blue.png'),(8817,'wp-content/plugins/wd-facebook-feed/images/feed/facebook_blue.png'),(8818,'wp-content/plugins/wd-facebook-feed/images/feed/facebook_gray.png'),(8819,'wp-content/plugins/wd-facebook-feed/images/feed/facebook_hover.png'),(8820,'wp-content/plugins/wd-facebook-feed/images/feed/facebook_white.png'),(8821,'wp-content/plugins/wd-facebook-feed/images/feed/fullscreen.png'),(8822,'wp-content/plugins/wd-facebook-feed/images/feed/fullscreen_hover.png'),(8823,'wp-content/plugins/wd-facebook-feed/images/feed/g plus blue.png'),(8824,'wp-content/plugins/wd-facebook-feed/images/feed/google_blue.png'),(8825,'wp-content/plugins/wd-facebook-feed/images/feed/google_gray.png'),(8826,'wp-content/plugins/wd-facebook-feed/images/feed/google_hover.png'),(8827,'wp-content/plugins/wd-facebook-feed/images/feed/google_white.png'),(8828,'wp-content/plugins/wd-facebook-feed/images/feed/haha_gray.png'),(8829,'wp-content/plugins/wd-facebook-feed/images/feed/like_blue.png'),(8830,'wp-content/plugins/wd-facebook-feed/images/feed/like_gray.png'),(8831,'wp-content/plugins/wd-facebook-feed/images/feed/like_white.png'),(8832,'wp-content/plugins/wd-facebook-feed/images/feed/love_gray.png'),(8833,'wp-content/plugins/wd-facebook-feed/images/feed/pause.png'),(8834,'wp-content/plugins/wd-facebook-feed/images/feed/pause_blue.png'),(8835,'wp-content/plugins/wd-facebook-feed/images/feed/pause_gray.png'),(8836,'wp-content/plugins/wd-facebook-feed/images/feed/play blue.png'),(8837,'wp-content/plugins/wd-facebook-feed/images/feed/play.png'),(8838,'wp-content/plugins/wd-facebook-feed/images/feed/play_gray.png'),(8839,'wp-content/plugins/wd-facebook-feed/images/feed/resize_in.png'),(8840,'wp-content/plugins/wd-facebook-feed/images/feed/resize_in_gray.png'),(8841,'wp-content/plugins/wd-facebook-feed/images/feed/resize_out.png'),(8842,'wp-content/plugins/wd-facebook-feed/images/feed/resize_out_gray.png'),(8843,'wp-content/plugins/wd-facebook-feed/images/feed/sad_gray.png'),(8844,'wp-content/plugins/wd-facebook-feed/images/feed/share blue.png'),(8845,'wp-content/plugins/wd-facebook-feed/images/feed/share_blue.png'),(8846,'wp-content/plugins/wd-facebook-feed/images/feed/share_gray.png'),(8847,'wp-content/plugins/wd-facebook-feed/images/feed/share_hover.png'),(8848,'wp-content/plugins/wd-facebook-feed/images/feed/share_white.png'),(8849,'wp-content/plugins/wd-facebook-feed/images/feed/t blue.png'),(8850,'wp-content/plugins/wd-facebook-feed/images/feed/time_blue.png'),(8851,'wp-content/plugins/wd-facebook-feed/images/feed/time_gray.png'),(8852,'wp-content/plugins/wd-facebook-feed/images/feed/time_white.png'),(8853,'wp-content/plugins/wd-facebook-feed/images/feed/twitter_blue.png'),(8854,'wp-content/plugins/wd-facebook-feed/images/feed/twitter_gray.png'),(8855,'wp-content/plugins/wd-facebook-feed/images/feed/twitter_hover.png'),(8856,'wp-content/plugins/wd-facebook-feed/images/feed/twitter_white.png'),(8857,'wp-content/plugins/wd-facebook-feed/images/feed/wow_gray.png'),(8858,'wp-content/plugins/wd-facebook-feed/images/ffwd/add_new.png'),(8859,'wp-content/plugins/wd-facebook-feed/images/ffwd/button-icons.png'),(8860,'wp-content/plugins/wd-facebook-feed/images/ffwd/button-icons2.png'),(8861,'wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_album.png'),(8862,'wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_blog.png'),(8863,'wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_logo_editor.png'),(8864,'wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_logo_large.png'),(8865,'wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_logo_small.png'),(8866,'wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_masonry.png'),(8867,'wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_thumb.png'),(8868,'wp-content/plugins/wd-facebook-feed/images/ffwd/ffwd_views.png'),(8869,'wp-content/plugins/wd-facebook-feed/images/ffwd/no-image.png'),(8870,'wp-content/plugins/wd-facebook-feed/images/ffwd/themes_options.png'),(8871,'wp-content/plugins/wd-facebook-feed/images/ffwd_logo.png'),(8872,'wp-content/plugins/wd-facebook-feed/images/flip_both.png'),(8873,'wp-content/plugins/wd-facebook-feed/images/flip_horizontal.png'),(8874,'wp-content/plugins/wd-facebook-feed/images/flip_vertical.png'),(8875,'wp-content/plugins/wd-facebook-feed/images/gallery-icon.png'),(8876,'wp-content/plugins/wd-facebook-feed/images/i_support.png'),(8877,'wp-content/plugins/wd-facebook-feed/images/icon-feed.png'),(8878,'wp-content/plugins/wd-facebook-feed/images/image_browser.jpg'),(8879,'wp-content/plugins/wd-facebook-feed/images/like.png'),(8880,'wp-content/plugins/wd-facebook-feed/images/loader.svg'),(8881,'wp-content/plugins/wd-facebook-feed/images/loading.gif'),(8882,'wp-content/plugins/wd-facebook-feed/images/logo.png'),(8883,'wp-content/plugins/wd-facebook-feed/images/minus.png'),(8884,'wp-content/plugins/wd-facebook-feed/images/no-image.png'),(8885,'wp-content/plugins/wd-facebook-feed/images/notdefault.png'),(8886,'wp-content/plugins/wd-facebook-feed/images/option-icon.png'),(8887,'wp-content/plugins/wd-facebook-feed/images/plus.png'),(8888,'wp-content/plugins/wd-facebook-feed/images/publish.png'),(8889,'wp-content/plugins/wd-facebook-feed/images/rating-icon.png'),(8890,'wp-content/plugins/wd-facebook-feed/images/rotate_left.png'),(8891,'wp-content/plugins/wd-facebook-feed/images/rotate_right.png'),(8892,'wp-content/plugins/wd-facebook-feed/images/short_extended_preview.jpg'),(8893,'wp-content/plugins/wd-facebook-feed/images/slideshow.jpg'),(8894,'wp-content/plugins/wd-facebook-feed/images/tag-icon.png'),(8895,'wp-content/plugins/wd-facebook-feed/images/theme-icon.png'),(8896,'wp-content/plugins/wd-facebook-feed/images/themes/album.png'),(8897,'wp-content/plugins/wd-facebook-feed/images/themes/almum.png'),(8898,'wp-content/plugins/wd-facebook-feed/images/themes/blog.png'),(8899,'wp-content/plugins/wd-facebook-feed/images/themes/lightbox.png'),(8900,'wp-content/plugins/wd-facebook-feed/images/themes/masonry.png'),(8901,'wp-content/plugins/wd-facebook-feed/images/themes/pagenav.png'),(8902,'wp-content/plugins/wd-facebook-feed/images/themes/thumbnail.png'),(8903,'wp-content/plugins/wd-facebook-feed/images/thumbnails.jpg'),(8904,'wp-content/plugins/wd-facebook-feed/images/thumbnails_masonry.jpg'),(8905,'wp-content/plugins/wd-facebook-feed/images/thumbnails_mosaic.jpg'),(8906,'wp-content/plugins/wd-facebook-feed/images/uninstall-icon.png'),(8907,'wp-content/plugins/wd-facebook-feed/images/unpublish.png'),(8908,'wp-content/plugins/wd-facebook-feed/images/views/album.png'),(8909,'wp-content/plugins/wd-facebook-feed/images/views/blog_style.png'),(8910,'wp-content/plugins/wd-facebook-feed/images/views/logo.png'),(8911,'wp-content/plugins/wd-facebook-feed/images/views/masonry.png'),(8912,'wp-content/plugins/wd-facebook-feed/images/views/thumbnails.png'),(8913,'wp-content/plugins/wd-facebook-feed/images/watermark.png'),(8914,'wp-content/plugins/wd-facebook-feed/images/watermark_preview.jpg'),(8915,'wp-content/plugins/wd-facebook-feed/images/wd_fb.png'),(8916,'wp-content/plugins/wd-facebook-feed/images/wd_fb_menu.png'),(8917,'wp-content/plugins/wd-facebook-feed/images/wd_fb_shortcode.png'),(8918,'wp-content/plugins/wd-facebook-feed/images/wt-gb/ffwd_logo_editor.svg'),(8919,'wp-content/plugins/wd-facebook-feed/images/wt-gb/icon.svg'),(8920,'wp-content/plugins/wd-facebook-feed/js/3DEngine/3DEngine.js'),(8921,'wp-content/plugins/wd-facebook-feed/js/3DEngine/Sphere.js'),(8922,'wp-content/plugins/wd-facebook-feed/js/ffwd.js'),(8923,'wp-content/plugins/wd-facebook-feed/js/ffwd_cache.js'),(8924,'wp-content/plugins/wd-facebook-feed/js/ffwd_editor_button.js'),(8925,'wp-content/plugins/wd-facebook-feed/js/ffwd_embed.js'),(8926,'wp-content/plugins/wd-facebook-feed/js/ffwd_frontend.js'),(8927,'wp-content/plugins/wd-facebook-feed/js/ffwd_gallery_box.js'),(8928,'wp-content/plugins/wd-facebook-feed/js/ffwd_shortcode.js'),(8929,'wp-content/plugins/wd-facebook-feed/js/images/bwg_edit_but.png'),(8930,'wp-content/plugins/wd-facebook-feed/js/images/wd_fb_edit_butt.png'),(8931,'wp-content/plugins/wd-facebook-feed/js/jquery.form.js'),(8932,'wp-content/plugins/wd-facebook-feed/js/jquery.fullscreen-0.4.1.js'),(8933,'wp-content/plugins/wd-facebook-feed/js/jquery.mCustomScrollbar.concat.min.js'),(8934,'wp-content/plugins/wd-facebook-feed/js/jquery.mobile.js'),(8935,'wp-content/plugins/wd-facebook-feed/js/jscolor/arrow.gif'),(8936,'wp-content/plugins/wd-facebook-feed/js/jscolor/cross.gif'),(8937,'wp-content/plugins/wd-facebook-feed/js/jscolor/hs.png'),(8938,'wp-content/plugins/wd-facebook-feed/js/jscolor/hv.png'),(8939,'wp-content/plugins/wd-facebook-feed/js/jscolor/index.html'),(8940,'wp-content/plugins/wd-facebook-feed/js/jscolor/jscolor.js'),(8941,'wp-content/plugins/wd-facebook-feed/js/tw-gb/block.js'),(8942,'wp-content/plugins/wd-facebook-feed/js/wd_bp_install.js'),(8943,'wp-content/plugins/wd-facebook-feed/languages/ffwd-de_DE.mo'),(8944,'wp-content/plugins/wd-facebook-feed/languages/ffwd-de_DE.po'),(8945,'wp-content/plugins/wd-facebook-feed/languages/ffwd-pl_PL .mo'),(8946,'wp-content/plugins/wd-facebook-feed/languages/ffwd-pl_PL .po'),(8947,'wp-content/plugins/wd-facebook-feed/readme.txt'),(8948,'wp-content/plugins/wd-facebook-feed/update/ffwd_update.php'),(8949,'wp-content/plugins/wd-facebook-feed/wd/README.md'),(8950,'wp-content/plugins/wd-facebook-feed/wd/assets/css/deactivate_popup.css'),(8951,'wp-content/plugins/wd-facebook-feed/wd/assets/css/img/allow&continue.png'),(8952,'wp-content/plugins/wd-facebook-feed/wd/assets/css/img/close.svg'),(8953,'wp-content/plugins/wd-facebook-feed/wd/assets/css/img/coupon_bg.png'),(8954,'wp-content/plugins/wd-facebook-feed/wd/assets/css/img/plugins_header_bg.png'),(8955,'wp-content/plugins/wd-facebook-feed/wd/assets/css/img/skip.png'),(8956,'wp-content/plugins/wd-facebook-feed/wd/assets/css/img/themes_headrer_bg.png'),(8957,'wp-content/plugins/wd-facebook-feed/wd/assets/css/img/ug-icon-1.png'),(8958,'wp-content/plugins/wd-facebook-feed/wd/assets/css/img/ug-icon-2.png'),(8959,'wp-content/plugins/wd-facebook-feed/wd/assets/css/img/ug-icon-3.png'),(8960,'wp-content/plugins/wd-facebook-feed/wd/assets/css/img/ug-icon-4.png'),(8961,'wp-content/plugins/wd-facebook-feed/wd/assets/css/img/ug-icon-5.png'),(8962,'wp-content/plugins/wd-facebook-feed/wd/assets/css/img/welcome_bg.png'),(8963,'wp-content/plugins/wd-facebook-feed/wd/assets/css/notices.css'),(8964,'wp-content/plugins/wd-facebook-feed/wd/assets/css/overview.css'),(8965,'wp-content/plugins/wd-facebook-feed/wd/assets/css/subscribe.css'),(8966,'wp-content/plugins/wd-facebook-feed/wd/assets/img/allow-and-continue.png'),(8967,'wp-content/plugins/wd-facebook-feed/wd/assets/img/bwg_main_plugin.png'),(8968,'wp-content/plugins/wd-facebook-feed/wd/assets/img/cfm_main_plugin.png'),(8969,'wp-content/plugins/wd-facebook-feed/wd/assets/img/ecwd_main_plugin.png'),(8970,'wp-content/plugins/wd-facebook-feed/wd/assets/img/faqwd_main_plugin.png'),(8971,'wp-content/plugins/wd-facebook-feed/wd/assets/img/ffwd_main_plugin.png'),(8972,'wp-content/plugins/wd-facebook-feed/wd/assets/img/fm_main_plugin.png'),(8973,'wp-content/plugins/wd-facebook-feed/wd/assets/img/fmc_main_plugin.png'),(8974,'wp-content/plugins/wd-facebook-feed/wd/assets/img/gawd_main_plugin.png'),(8975,'wp-content/plugins/wd-facebook-feed/wd/assets/img/gmwd_main_plugin.png'),(8976,'wp-content/plugins/wd-facebook-feed/wd/assets/img/header.svg'),(8977,'wp-content/plugins/wd-facebook-feed/wd/assets/img/how_it_works.png'),(8978,'wp-content/plugins/wd-facebook-feed/wd/assets/img/loader.gif'),(8979,'wp-content/plugins/wd-facebook-feed/wd/assets/img/mwd_main_plugin.png'),(8980,'wp-content/plugins/wd-facebook-feed/wd/assets/img/slide-1366.jpg'),(8981,'wp-content/plugins/wd-facebook-feed/wd/assets/img/spinner.gif'),(8982,'wp-content/plugins/wd-facebook-feed/wd/assets/img/twd_main_plugin.png'),(8983,'wp-content/plugins/wd-facebook-feed/wd/assets/img/wd_ads_main_plugin.png'),(8984,'wp-content/plugins/wd-facebook-feed/wd/assets/img/wde_main_plugin.png'),(8985,'wp-content/plugins/wd-facebook-feed/wd/assets/img/wdi_main_plugin.png'),(8986,'wp-content/plugins/wd-facebook-feed/wd/assets/img/wdps_main_plugin.png'),(8987,'wp-content/plugins/wd-facebook-feed/wd/assets/img/wds_main_plugin.png'),(8988,'wp-content/plugins/wd-facebook-feed/wd/assets/img/wp_logo.png'),(8989,'wp-content/plugins/wd-facebook-feed/wd/assets/img/ytwd_main_plugin.png'),(8990,'wp-content/plugins/wd-facebook-feed/wd/assets/js/deactivate_popup.js'),(8991,'wp-content/plugins/wd-facebook-feed/wd/assets/js/overview.js'),(8992,'wp-content/plugins/wd-facebook-feed/wd/assets/js/subsribe.js'),(8993,'wp-content/plugins/wd-facebook-feed/wd/config.php'),(8994,'wp-content/plugins/wd-facebook-feed/wd/includes/api.php'),(8995,'wp-content/plugins/wd-facebook-feed/wd/includes/deactivate.php'),(8996,'wp-content/plugins/wd-facebook-feed/wd/includes/notices.php'),(8997,'wp-content/plugins/wd-facebook-feed/wd/includes/overview.php'),(8998,'wp-content/plugins/wd-facebook-feed/wd/includes/subscribe.php'),(8999,'wp-content/plugins/wd-facebook-feed/wd/start.php'),(9000,'wp-content/plugins/wd-facebook-feed/wd/templates/display_deactivation_popup.php'),(9001,'wp-content/plugins/wd-facebook-feed/wd/templates/display_overview.php'),(9002,'wp-content/plugins/wd-facebook-feed/wd/templates/display_subscribe.php'),(9003,'wp-content/plugins/wd-facebook-feed/wd/wd.php'),(9004,'wp-content/plugins/widget-context/LICENSE'),(9005,'wp-content/plugins/widget-context/assets/css/admin.css'),(9006,'wp-content/plugins/widget-context/assets/js/widget-context.js'),(9007,'wp-content/plugins/widget-context/class/class-widget-context.php'),(9008,'wp-content/plugins/widget-context/class/modules/custom-post-types-taxonomies/module.php'),(9009,'wp-content/plugins/widget-context/class/modules/word-count/module.php'),(9010,'wp-content/plugins/widget-context/composer.json'),(9011,'wp-content/plugins/widget-context/composer.lock'),(9012,'wp-content/plugins/widget-context/debug/debug-bar.php'),(9013,'wp-content/plugins/widget-context/debug/debug.js'),(9014,'wp-content/plugins/widget-context/readme.txt'),(9015,'wp-content/plugins/widget-context/screenshot-1.png'),(9016,'wp-content/plugins/widget-context/screenshot-2.png'),(9017,'wp-content/plugins/widget-context/src/Plugin.php'),(9018,'wp-content/plugins/widget-context/src/UriRuleMatcher.php'),(9019,'wp-content/plugins/widget-context/src/UriRules.php'),(9020,'wp-content/plugins/widget-context/src/WidgetContext.php'),(9021,'wp-content/plugins/widget-context/src/modules/custom-post-types-taxonomies/module.php'),(9022,'wp-content/plugins/widget-context/src/modules/word-count/module.php'),(9023,'wp-content/plugins/widget-context/vendor/autoload.php'),(9024,'wp-content/plugins/widget-context/vendor/composer/ClassLoader.php'),(9025,'wp-content/plugins/widget-context/vendor/composer/LICENSE'),(9026,'wp-content/plugins/widget-context/vendor/composer/autoload_classmap.php'),(9027,'wp-content/plugins/widget-context/vendor/composer/autoload_namespaces.php'),(9028,'wp-content/plugins/widget-context/vendor/composer/autoload_psr4.php'),(9029,'wp-content/plugins/widget-context/vendor/composer/autoload_real.php'),(9030,'wp-content/plugins/widget-context/vendor/composer/autoload_static.php'),(9031,'wp-content/plugins/widget-context/vendor/composer/installed.json'),(9032,'wp-content/plugins/widget-context/widget-context.php'),(9033,'wp-content/plugins/widget-logic/languages/widget-logic-de_DE.mo'),(9034,'wp-content/plugins/widget-logic/languages/widget-logic-de_DE.po'),(9035,'wp-content/plugins/widget-logic/languages/widget-logic-es_ES.mo'),(9036,'wp-content/plugins/widget-logic/languages/widget-logic-es_ES.po'),(9037,'wp-content/plugins/widget-logic/languages/widget-logic-hu_HU.mo'),(9038,'wp-content/plugins/widget-logic/languages/widget-logic-hu_HU.po'),(9039,'wp-content/plugins/widget-logic/languages/widget-logic-pt_BR.mo'),(9040,'wp-content/plugins/widget-logic/languages/widget-logic-pt_BR.po'),(9041,'wp-content/plugins/widget-logic/languages/widget-logic-uk.mo'),(9042,'wp-content/plugins/widget-logic/languages/widget-logic-uk.po'),(9043,'wp-content/plugins/widget-logic/languages/widget-logic.pot'),(9044,'wp-content/plugins/widget-logic/readme.txt'),(9045,'wp-content/plugins/widget-logic/widget_logic.php'),(9046,'wp-content/plugins/widget-options/LICENSE'),(9047,'wp-content/plugins/widget-options/assets/css/admin.css'),(9048,'wp-content/plugins/widget-options/assets/css/animate.min.css'),(9049,'wp-content/plugins/widget-options/assets/css/beaver-widgetopts.css'),(9050,'wp-content/plugins/widget-options/assets/css/jqueryui/1.11.4/themes/ui-lightness/images/ui-icons_ffffff_256x240.png'),(9051,'wp-content/plugins/widget-options/assets/css/jqueryui/1.11.4/themes/ui-lightness/jquery-ui.css'),(9052,'wp-content/plugins/widget-options/assets/css/select2.min.css'),(9053,'wp-content/plugins/widget-options/assets/css/welcome.css'),(9054,'wp-content/plugins/widget-options/assets/css/widget-options.css'),(9055,'wp-content/plugins/widget-options/assets/images/cover-book.jpg'),(9056,'wp-content/plugins/widget-options/assets/images/logo-mascot.png'),(9057,'wp-content/plugins/widget-options/assets/images/ui-icons_ffffff_256x240.png'),(9058,'wp-content/plugins/widget-options/assets/images/widget-options-profile.gif'),(9059,'wp-content/plugins/widget-options/assets/js/admin.js'),(9060,'wp-content/plugins/widget-options/assets/js/jquery.liveFilter.js'),(9061,'wp-content/plugins/widget-options/assets/js/jquery.liveFilter.min.js'),(9062,'wp-content/plugins/widget-options/assets/js/jquery.widgetopts.beaver.js'),(9063,'wp-content/plugins/widget-options/assets/js/jquery.widgetopts.beaver.min.js'),(9064,'wp-content/plugins/widget-options/assets/js/select2-settings.js'),(9065,'wp-content/plugins/widget-options/assets/js/select2-settings.min.js'),(9066,'wp-content/plugins/widget-options/assets/js/select2.min.js'),(9067,'wp-content/plugins/widget-options/assets/js/settings.js'),(9068,'wp-content/plugins/widget-options/assets/js/settings.min.js'),(9069,'wp-content/plugins/widget-options/assets/js/widgets.js'),(9070,'wp-content/plugins/widget-options/assets/js/widgets.min.js'),(9071,'wp-content/plugins/widget-options/assets/js/wpWidgetOpts.js'),(9072,'wp-content/plugins/widget-options/assets/js/wpWidgetOpts.min.js'),(9073,'wp-content/plugins/widget-options/assets/scss/welcome.scss'),(9074,'wp-content/plugins/widget-options/assets/scss/widget-options.scss'),(9075,'wp-content/plugins/widget-options/includes/admin/globals.php'),(9076,'wp-content/plugins/widget-options/includes/admin/import-export.php'),(9077,'wp-content/plugins/widget-options/includes/admin/notices.php'),(9078,'wp-content/plugins/widget-options/includes/admin/settings/display-settings.php'),(9079,'wp-content/plugins/widget-options/includes/admin/settings/modules/acf.php'),(9080,'wp-content/plugins/widget-options/includes/admin/settings/modules/alignment.php'),(9081,'wp-content/plugins/widget-options/includes/admin/settings/modules/animation.php'),(9082,'wp-content/plugins/widget-options/includes/admin/settings/modules/beaver_builder.php'),(9083,'wp-content/plugins/widget-options/includes/admin/settings/modules/cache.php'),(9084,'wp-content/plugins/widget-options/includes/admin/settings/modules/classes.php'),(9085,'wp-content/plugins/widget-options/includes/admin/settings/modules/classic-widgets-screen.php'),(9086,'wp-content/plugins/widget-options/includes/admin/settings/modules/clone.php'),(9087,'wp-content/plugins/widget-options/includes/admin/settings/modules/columns.php'),(9088,'wp-content/plugins/widget-options/includes/admin/settings/modules/dates.php'),(9089,'wp-content/plugins/widget-options/includes/admin/settings/modules/devices.php'),(9090,'wp-content/plugins/widget-options/includes/admin/settings/modules/disable_widgets.php'),(9091,'wp-content/plugins/widget-options/includes/admin/settings/modules/elementor.php'),(9092,'wp-content/plugins/widget-options/includes/admin/settings/modules/fixed.php'),(9093,'wp-content/plugins/widget-options/includes/admin/settings/modules/import-export.php'),(9094,'wp-content/plugins/widget-options/includes/admin/settings/modules/links.php'),(9095,'wp-content/plugins/widget-options/includes/admin/settings/modules/logic.php'),(9096,'wp-content/plugins/widget-options/includes/admin/settings/modules/move.php'),(9097,'wp-content/plugins/widget-options/includes/admin/settings/modules/permission.php'),(9098,'wp-content/plugins/widget-options/includes/admin/settings/modules/roles.php'),(9099,'wp-content/plugins/widget-options/includes/admin/settings/modules/search.php'),(9100,'wp-content/plugins/widget-options/includes/admin/settings/modules/shortcodes.php'),(9101,'wp-content/plugins/widget-options/includes/admin/settings/modules/sidebar-more_plugins.php'),(9102,'wp-content/plugins/widget-options/includes/admin/settings/modules/sidebar-opt_in.php'),(9103,'wp-content/plugins/widget-options/includes/admin/settings/modules/sidebar-support_box.php'),(9104,'wp-content/plugins/widget-options/includes/admin/settings/modules/sidebar-upsell_pro.php'),(9105,'wp-content/plugins/widget-options/includes/admin/settings/modules/siteorigin.php'),(9106,'wp-content/plugins/widget-options/includes/admin/settings/modules/sliding.php'),(9107,'wp-content/plugins/widget-options/includes/admin/settings/modules/state.php'),(9108,'wp-content/plugins/widget-options/includes/admin/settings/modules/styling.php'),(9109,'wp-content/plugins/widget-options/includes/admin/settings/modules/taxonomies.php'),(9110,'wp-content/plugins/widget-options/includes/admin/settings/modules/title.php'),(9111,'wp-content/plugins/widget-options/includes/admin/settings/modules/urls.php'),(9112,'wp-content/plugins/widget-options/includes/admin/settings/modules/visibility.php'),(9113,'wp-content/plugins/widget-options/includes/admin/settings/modules/widget-area.php'),(9114,'wp-content/plugins/widget-options/includes/admin/settings/register-settings.php'),(9115,'wp-content/plugins/widget-options/includes/admin/welcome.php'),(9116,'wp-content/plugins/widget-options/includes/ajax-functions.php'),(9117,'wp-content/plugins/widget-options/includes/extras.php'),(9118,'wp-content/plugins/widget-options/includes/install.php'),(9119,'wp-content/plugins/widget-options/includes/pagebuilders/beaver/beaver.php'),(9120,'wp-content/plugins/widget-options/includes/pagebuilders/elementor/elementor.php'),(9121,'wp-content/plugins/widget-options/includes/pagebuilders/elementor/render.php'),(9122,'wp-content/plugins/widget-options/includes/pagebuilders/siteorigin.php'),(9123,'wp-content/plugins/widget-options/includes/scripts.php'),(9124,'wp-content/plugins/widget-options/includes/transient.php'),(9125,'wp-content/plugins/widget-options/includes/widgets/display.php'),(9126,'wp-content/plugins/widget-options/includes/widgets/extras.php'),(9127,'wp-content/plugins/widget-options/includes/widgets/option-tabs/alignment.php'),(9128,'wp-content/plugins/widget-options/includes/widgets/option-tabs/devices.php'),(9129,'wp-content/plugins/widget-options/includes/widgets/option-tabs/settings.php'),(9130,'wp-content/plugins/widget-options/includes/widgets/option-tabs/state.php'),(9131,'wp-content/plugins/widget-options/includes/widgets/option-tabs/upsell.php'),(9132,'wp-content/plugins/widget-options/includes/widgets/option-tabs/visibility.php'),(9133,'wp-content/plugins/widget-options/includes/widgets/widgets.php'),(9134,'wp-content/plugins/widget-options/plugin.php'),(9135,'wp-content/plugins/widget-options/readme.md'),(9136,'wp-content/plugins/widget-options/readme.txt'),(9137,'wp-content/plugins/widget-options/screenshot-1.png'),(9138,'wp-content/plugins/widget-options/screenshot-10.png'),(9139,'wp-content/plugins/widget-options/screenshot-2.png'),(9140,'wp-content/plugins/widget-options/screenshot-3.png'),(9141,'wp-content/plugins/widget-options/screenshot-4.png'),(9142,'wp-content/plugins/widget-options/screenshot-5.png'),(9143,'wp-content/plugins/widget-options/screenshot-6.png'),(9144,'wp-content/plugins/widget-options/screenshot-7.png'),(9145,'wp-content/plugins/widget-options/screenshot-8.png'),(9146,'wp-content/plugins/widget-options/screenshot-9.png'),(9147,'wp-content/plugins/wordfence/crypto/vendor/autoload.php'),(9148,'wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php'),(9149,'wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php'),(9150,'wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE'),(9151,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php'),(9152,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php'),(9153,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php'),(9154,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php'),(9155,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php'),(9156,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php'),(9157,'wp-content/plugins/wordfence/crypto/vendor/composer/installed.json'),(9158,'wp-content/plugins/wordfence/crypto/vendor/composer/installed.php'),(9159,'wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php'),(9160,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE'),(9161,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey'),(9162,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc'),(9163,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php'),(9164,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php'),(9165,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php'),(9166,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php'),(9167,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php'),(9168,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php'),(9169,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php'),(9170,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php'),(9171,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php'),(9172,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php'),(9173,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/psalm-autoload.php'),(9174,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE'),(9175,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-fast.php'),(9176,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-pedantic.php'),(9177,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php'),(9178,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-phpunit.php'),(9179,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php'),(9180,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json'),(9181,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php'),(9182,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php'),(9183,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php'),(9184,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php'),(9185,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php'),(9186,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php'),(9187,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php'),(9188,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(9189,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(9190,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php'),(9191,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(9192,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(9193,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(9194,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(9195,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(9196,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(9197,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php'),(9198,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php'),(9199,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php'),(9200,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php'),(9201,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php'),(9202,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php'),(9203,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php'),(9204,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php'),(9205,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php'),(9206,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php'),(9207,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php'),(9208,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php'),(9209,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php'),(9210,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php'),(9211,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php'),(9212,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-above-3.xml'),(9213,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-below-3.xml'),(9214,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php'),(9215,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php'),(9216,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Common.php'),(9217,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php'),(9218,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php'),(9219,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php'),(9220,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(9221,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php'),(9222,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php'),(9223,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(9224,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(9225,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(9226,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(9227,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(9228,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php'),(9229,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php'),(9230,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php'),(9231,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php'),(9232,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php'),(9233,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php'),(9234,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php'),(9235,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php'),(9236,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php'),(9237,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php'),(9238,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php'),(9239,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php'),(9240,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php'),(9241,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php'),(9242,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php'),(9243,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(9244,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(9245,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php'),(9246,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php'),(9247,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(9248,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(9249,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(9250,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(9251,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(9252,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php'),(9253,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php'),(9254,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php'),(9255,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php'),(9256,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php'),(9257,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php'),(9258,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php'),(9259,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php'),(9260,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php'),(9261,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php'),(9262,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php'),(9263,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php'),(9264,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php'),(9265,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php'),(9266,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php'),(9267,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php'),(9268,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php'),(9269,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php'),(9270,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php'),(9271,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php'),(9272,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php'),(9273,'wp-content/plugins/wordfence/css/activity-report-widget.1647958122.css'),(9274,'wp-content/plugins/wordfence/css/diff.1647958122.css'),(9275,'wp-content/plugins/wordfence/css/dt_table.1647958122.css'),(9276,'wp-content/plugins/wordfence/css/fullLog.1647958122.css'),(9277,'wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png'),(9278,'wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png'),(9279,'wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png'),(9280,'wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png'),(9281,'wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png'),(9282,'wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png'),(9283,'wp-content/plugins/wordfence/css/iptraf.1647958122.css'),(9284,'wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1647958122.css'),(9285,'wp-content/plugins/wordfence/css/jquery-ui.min.1647958122.css'),(9286,'wp-content/plugins/wordfence/css/jquery-ui.structure.min.1647958122.css'),(9287,'wp-content/plugins/wordfence/css/jquery-ui.theme.min.1647958122.css'),(9288,'wp-content/plugins/wordfence/css/license/care-global.1647958122.css'),(9289,'wp-content/plugins/wordfence/css/license/care.1647958122.css'),(9290,'wp-content/plugins/wordfence/css/license/free-global.1647958122.css'),(9291,'wp-content/plugins/wordfence/css/license/free.1647958122.css'),(9292,'wp-content/plugins/wordfence/css/license/premium-global.1647958122.css'),(9293,'wp-content/plugins/wordfence/css/license/premium.1647958122.css'),(9294,'wp-content/plugins/wordfence/css/license/response-global.1647958122.css'),(9295,'wp-content/plugins/wordfence/css/license/response-variables.1647958122.css'),(9296,'wp-content/plugins/wordfence/css/license/response.1647958122.css'),(9297,'wp-content/plugins/wordfence/css/main.1647958122.css'),(9298,'wp-content/plugins/wordfence/css/phpinfo.1647958122.css'),(9299,'wp-content/plugins/wordfence/css/wf-adminbar.1647958122.css'),(9300,'wp-content/plugins/wordfence/css/wf-colorbox.1647958122.css'),(9301,'wp-content/plugins/wordfence/css/wf-font-awesome.1647958122.css'),(9302,'wp-content/plugins/wordfence/css/wf-global.1647958122.css'),(9303,'wp-content/plugins/wordfence/css/wf-ionicons.1647958122.css'),(9304,'wp-content/plugins/wordfence/css/wf-onboarding.1647958122.css'),(9305,'wp-content/plugins/wordfence/css/wf-roboto-font.1647958122.css'),(9306,'wp-content/plugins/wordfence/css/wfselect2.min.1647958122.css'),(9307,'wp-content/plugins/wordfence/css/wordfenceBox.1647958122.css'),(9308,'wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff'),(9309,'wp-content/plugins/wordfence/fonts/ionicons.woff'),(9310,'wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff'),(9311,'wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff'),(9312,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff'),(9313,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff'),(9314,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff'),(9315,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff'),(9316,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff'),(9317,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff'),(9318,'wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff'),(9319,'wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff'),(9320,'wp-content/plugins/wordfence/images/2fa-whole.svg'),(9321,'wp-content/plugins/wordfence/images/2fa1.svg'),(9322,'wp-content/plugins/wordfence/images/2fa2.svg'),(9323,'wp-content/plugins/wordfence/images/back_disabled.jpg'),(9324,'wp-content/plugins/wordfence/images/back_enabled.jpg'),(9325,'wp-content/plugins/wordfence/images/blocking.svg'),(9326,'wp-content/plugins/wordfence/images/button-grad-grey.png'),(9327,'wp-content/plugins/wordfence/images/checkbox.png'),(9328,'wp-content/plugins/wordfence/images/flags.png'),(9329,'wp-content/plugins/wordfence/images/forward_disabled.jpg'),(9330,'wp-content/plugins/wordfence/images/forward_enabled.jpg'),(9331,'wp-content/plugins/wordfence/images/help.png'),(9332,'wp-content/plugins/wordfence/images/icons/ajax24.gif'),(9333,'wp-content/plugins/wordfence/images/icons/ajax3.gif'),(9334,'wp-content/plugins/wordfence/images/icons/ajaxRed16.gif'),(9335,'wp-content/plugins/wordfence/images/icons/ajaxScan.gif'),(9336,'wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif'),(9337,'wp-content/plugins/wordfence/images/icons/arrow_refresh.png'),(9338,'wp-content/plugins/wordfence/images/icons/bullet_yellow.png'),(9339,'wp-content/plugins/wordfence/images/icons/check-care.svg'),(9340,'wp-content/plugins/wordfence/images/icons/check-premium.svg'),(9341,'wp-content/plugins/wordfence/images/icons/check-response.svg'),(9342,'wp-content/plugins/wordfence/images/icons/check.svg'),(9343,'wp-content/plugins/wordfence/images/icons/email_go.png'),(9344,'wp-content/plugins/wordfence/images/icons/error128.png'),(9345,'wp-content/plugins/wordfence/images/icons/magnifier.png'),(9346,'wp-content/plugins/wordfence/images/icons/tick128.png'),(9347,'wp-content/plugins/wordfence/images/icons/warning128.png'),(9348,'wp-content/plugins/wordfence/images/icons/working-indicator.gif'),(9349,'wp-content/plugins/wordfence/images/lightbox-controls.png'),(9350,'wp-content/plugins/wordfence/images/loading.gif'),(9351,'wp-content/plugins/wordfence/images/loading_background.png'),(9352,'wp-content/plugins/wordfence/images/loading_large.gif'),(9353,'wp-content/plugins/wordfence/images/logo.png'),(9354,'wp-content/plugins/wordfence/images/logos/shield-care.svg'),(9355,'wp-content/plugins/wordfence/images/logos/shield-free.svg'),(9356,'wp-content/plugins/wordfence/images/logos/shield-premium.svg'),(9357,'wp-content/plugins/wordfence/images/logos/shield-response.svg'),(9358,'wp-content/plugins/wordfence/images/logos/shield-white.svg'),(9359,'wp-content/plugins/wordfence/images/options.svg'),(9360,'wp-content/plugins/wordfence/images/ratelimiting.svg'),(9361,'wp-content/plugins/wordfence/images/sort_asc.gif'),(9362,'wp-content/plugins/wordfence/images/sort_asc.png'),(9363,'wp-content/plugins/wordfence/images/sort_asc_disabled.gif'),(9364,'wp-content/plugins/wordfence/images/sort_asc_disabled.png'),(9365,'wp-content/plugins/wordfence/images/sort_both.gif'),(9366,'wp-content/plugins/wordfence/images/sort_both.png'),(9367,'wp-content/plugins/wordfence/images/sort_desc.gif'),(9368,'wp-content/plugins/wordfence/images/sort_desc.png'),(9369,'wp-content/plugins/wordfence/images/sort_desc_disabled.gif'),(9370,'wp-content/plugins/wordfence/images/sort_desc_disabled.png'),(9371,'wp-content/plugins/wordfence/images/support.svg'),(9372,'wp-content/plugins/wordfence/images/tools.svg'),(9373,'wp-content/plugins/wordfence/images/wf-central-logo.svg'),(9374,'wp-content/plugins/wordfence/images/wf-error-badge.svg'),(9375,'wp-content/plugins/wordfence/images/wf-horizontal.svg'),(9376,'wp-content/plugins/wordfence/images/wordfence-logo.svg'),(9377,'wp-content/plugins/wordfence/index.php'),(9378,'wp-content/plugins/wordfence/js/Chart.bundle.min.1637598990.js'),(9379,'wp-content/plugins/wordfence/js/Chart.bundle.min.1643748814.js'),(9380,'wp-content/plugins/wordfence/js/Chart.bundle.min.1647958122.js'),(9381,'wp-content/plugins/wordfence/js/admin.1637598990.js'),(9382,'wp-content/plugins/wordfence/js/admin.1643748814.js'),(9383,'wp-content/plugins/wordfence/js/admin.1647958122.js'),(9384,'wp-content/plugins/wordfence/js/admin.ajaxWatcher.1637598990.js'),(9385,'wp-content/plugins/wordfence/js/admin.ajaxWatcher.1643748814.js'),(9386,'wp-content/plugins/wordfence/js/admin.ajaxWatcher.1647958122.js'),(9387,'wp-content/plugins/wordfence/js/admin.liveTraffic.1637598990.js'),(9388,'wp-content/plugins/wordfence/js/admin.liveTraffic.1643748814.js'),(9389,'wp-content/plugins/wordfence/js/admin.liveTraffic.1647958122.js'),(9390,'wp-content/plugins/wordfence/js/date.1637598990.js'),(9391,'wp-content/plugins/wordfence/js/date.1643748814.js'),(9392,'wp-content/plugins/wordfence/js/date.1647958122.js'),(9393,'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1637598990.js'),(9394,'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1643748814.js'),(9395,'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1647958122.js'),(9396,'wp-content/plugins/wordfence/js/jquery.colorbox-min.1637598990.js'),(9397,'wp-content/plugins/wordfence/js/jquery.colorbox-min.1643748814.js'),(9398,'wp-content/plugins/wordfence/js/jquery.colorbox-min.1647958122.js'),(9399,'wp-content/plugins/wordfence/js/jquery.colorbox.1637598990.js'),(9400,'wp-content/plugins/wordfence/js/jquery.colorbox.1643748814.js'),(9401,'wp-content/plugins/wordfence/js/jquery.colorbox.1647958122.js'),(9402,'wp-content/plugins/wordfence/js/jquery.dataTables.min.1637598990.js'),(9403,'wp-content/plugins/wordfence/js/jquery.dataTables.min.1643748814.js'),(9404,'wp-content/plugins/wordfence/js/jquery.dataTables.min.1647958122.js'),(9405,'wp-content/plugins/wordfence/js/jquery.qrcode.min.1637598990.js'),(9406,'wp-content/plugins/wordfence/js/jquery.qrcode.min.1643748814.js'),(9407,'wp-content/plugins/wordfence/js/jquery.qrcode.min.1647958122.js'),(9408,'wp-content/plugins/wordfence/js/jquery.tmpl.min.1637598990.js'),(9409,'wp-content/plugins/wordfence/js/jquery.tmpl.min.1643748814.js'),(9410,'wp-content/plugins/wordfence/js/jquery.tmpl.min.1647958122.js'),(9411,'wp-content/plugins/wordfence/js/jquery.tools.min.1637598990.js'),(9412,'wp-content/plugins/wordfence/js/jquery.tools.min.1643748814.js'),(9413,'wp-content/plugins/wordfence/js/jquery.tools.min.1647958122.js'),(9414,'wp-content/plugins/wordfence/js/knockout-3.5.1.1637598990.js'),(9415,'wp-content/plugins/wordfence/js/knockout-3.5.1.1643748814.js'),(9416,'wp-content/plugins/wordfence/js/knockout-3.5.1.1647958122.js'),(9417,'wp-content/plugins/wordfence/js/wfdashboard.1637598990.js'),(9418,'wp-content/plugins/wordfence/js/wfdashboard.1643748814.js'),(9419,'wp-content/plugins/wordfence/js/wfdashboard.1647958122.js'),(9420,'wp-content/plugins/wordfence/js/wfdropdown.1637598990.js'),(9421,'wp-content/plugins/wordfence/js/wfdropdown.1643748814.js'),(9422,'wp-content/plugins/wordfence/js/wfdropdown.1647958122.js'),(9423,'wp-content/plugins/wordfence/js/wfglobal.1637598990.js'),(9424,'wp-content/plugins/wordfence/js/wfglobal.1643748814.js'),(9425,'wp-content/plugins/wordfence/js/wfglobal.1647958122.js'),(9426,'wp-content/plugins/wordfence/js/wfi18n.1637598990.js'),(9427,'wp-content/plugins/wordfence/js/wfi18n.1643748814.js'),(9428,'wp-content/plugins/wordfence/js/wfi18n.1647958122.js'),(9429,'wp-content/plugins/wordfence/js/wfpopover.1637598990.js'),(9430,'wp-content/plugins/wordfence/js/wfpopover.1643748814.js'),(9431,'wp-content/plugins/wordfence/js/wfpopover.1647958122.js'),(9432,'wp-content/plugins/wordfence/js/wfselect2.min.1637598990.js'),(9433,'wp-content/plugins/wordfence/js/wfselect2.min.1643748814.js'),(9434,'wp-content/plugins/wordfence/js/wfselect2.min.1647958122.js'),(9435,'wp-content/plugins/wordfence/languages/wordfence.mo'),(9436,'wp-content/plugins/wordfence/languages/wordfence.po'),(9437,'wp-content/plugins/wordfence/lib/.htaccess'),(9438,'wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php'),(9439,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php'),(9440,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php'),(9441,'wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php'),(9442,'wp-content/plugins/wordfence/lib/Diff.php'),(9443,'wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb'),(9444,'wp-content/plugins/wordfence/lib/IPTraf.php'),(9445,'wp-content/plugins/wordfence/lib/IPTrafList.php'),(9446,'wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php'),(9447,'wp-content/plugins/wordfence/lib/compat.php'),(9448,'wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php'),(9449,'wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php'),(9450,'wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php'),(9451,'wp-content/plugins/wordfence/lib/dashboard/widget_countries.php'),(9452,'wp-content/plugins/wordfence/lib/dashboard/widget_ips.php'),(9453,'wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php'),(9454,'wp-content/plugins/wordfence/lib/dashboard/widget_logins.php'),(9455,'wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php'),(9456,'wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php'),(9457,'wp-content/plugins/wordfence/lib/diffResult.php'),(9458,'wp-content/plugins/wordfence/lib/email_genericAlert.php'),(9459,'wp-content/plugins/wordfence/lib/email_newIssues.php'),(9460,'wp-content/plugins/wordfence/lib/email_unlockRequest.php'),(9461,'wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php'),(9462,'wp-content/plugins/wordfence/lib/flags.php'),(9463,'wp-content/plugins/wordfence/lib/live_activity.php'),(9464,'wp-content/plugins/wordfence/lib/menu_dashboard.php'),(9465,'wp-content/plugins/wordfence/lib/menu_dashboard_options.php'),(9466,'wp-content/plugins/wordfence/lib/menu_firewall.php'),(9467,'wp-content/plugins/wordfence/lib/menu_firewall_blocking.php'),(9468,'wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php'),(9469,'wp-content/plugins/wordfence/lib/menu_firewall_waf.php'),(9470,'wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php'),(9471,'wp-content/plugins/wordfence/lib/menu_options.php'),(9472,'wp-content/plugins/wordfence/lib/menu_scanner.php'),(9473,'wp-content/plugins/wordfence/lib/menu_scanner_credentials.php'),(9474,'wp-content/plugins/wordfence/lib/menu_scanner_options.php'),(9475,'wp-content/plugins/wordfence/lib/menu_support.php'),(9476,'wp-content/plugins/wordfence/lib/menu_tools.php'),(9477,'wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php'),(9478,'wp-content/plugins/wordfence/lib/menu_tools_importExport.php'),(9479,'wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php'),(9480,'wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php'),(9481,'wp-content/plugins/wordfence/lib/menu_tools_whois.php'),(9482,'wp-content/plugins/wordfence/lib/menu_wordfence_central.php'),(9483,'wp-content/plugins/wordfence/lib/noc1.key'),(9484,'wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php'),(9485,'wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php'),(9486,'wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php'),(9487,'wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php'),(9488,'wp-content/plugins/wordfence/lib/sysinfo.php'),(9489,'wp-content/plugins/wordfence/lib/viewFullActivityLog.php'),(9490,'wp-content/plugins/wordfence/lib/wf503.php'),(9491,'wp-content/plugins/wordfence/lib/wfAPI.php'),(9492,'wp-content/plugins/wordfence/lib/wfActivityReport.php'),(9493,'wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php'),(9494,'wp-content/plugins/wordfence/lib/wfAlerts.php'),(9495,'wp-content/plugins/wordfence/lib/wfArray.php'),(9496,'wp-content/plugins/wordfence/lib/wfBrowscap.php'),(9497,'wp-content/plugins/wordfence/lib/wfBrowscapCache.php'),(9498,'wp-content/plugins/wordfence/lib/wfBulkCountries.php'),(9499,'wp-content/plugins/wordfence/lib/wfCache.php'),(9500,'wp-content/plugins/wordfence/lib/wfCentralAPI.php'),(9501,'wp-content/plugins/wordfence/lib/wfConfig.php'),(9502,'wp-content/plugins/wordfence/lib/wfCrawl.php'),(9503,'wp-content/plugins/wordfence/lib/wfCredentialsController.php'),(9504,'wp-content/plugins/wordfence/lib/wfCrypt.php'),(9505,'wp-content/plugins/wordfence/lib/wfDB.php'),(9506,'wp-content/plugins/wordfence/lib/wfDashboard.php'),(9507,'wp-content/plugins/wordfence/lib/wfDateLocalization.php'),(9508,'wp-content/plugins/wordfence/lib/wfDiagnostic.php'),(9509,'wp-content/plugins/wordfence/lib/wfDict.php'),(9510,'wp-content/plugins/wordfence/lib/wfDirectoryIterator.php'),(9511,'wp-content/plugins/wordfence/lib/wfHelperBin.php'),(9512,'wp-content/plugins/wordfence/lib/wfHelperString.php'),(9513,'wp-content/plugins/wordfence/lib/wfIPWhitelist.php'),(9514,'wp-content/plugins/wordfence/lib/wfImportExportController.php'),(9515,'wp-content/plugins/wordfence/lib/wfIssues.php'),(9516,'wp-content/plugins/wordfence/lib/wfJWT.php'),(9517,'wp-content/plugins/wordfence/lib/wfLicense.php'),(9518,'wp-content/plugins/wordfence/lib/wfLockedOut.php'),(9519,'wp-content/plugins/wordfence/lib/wfLog.php'),(9520,'wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php'),(9521,'wp-content/plugins/wordfence/lib/wfModuleController.php'),(9522,'wp-content/plugins/wordfence/lib/wfNotification.php'),(9523,'wp-content/plugins/wordfence/lib/wfOnboardingController.php'),(9524,'wp-content/plugins/wordfence/lib/wfPersistenceController.php'),(9525,'wp-content/plugins/wordfence/lib/wfRESTAPI.php'),(9526,'wp-content/plugins/wordfence/lib/wfScan.php'),(9527,'wp-content/plugins/wordfence/lib/wfScanEngine.php'),(9528,'wp-content/plugins/wordfence/lib/wfSchema.php'),(9529,'wp-content/plugins/wordfence/lib/wfStyle.php'),(9530,'wp-content/plugins/wordfence/lib/wfSupportController.php'),(9531,'wp-content/plugins/wordfence/lib/wfUnlockMsg.php'),(9532,'wp-content/plugins/wordfence/lib/wfUpdateCheck.php'),(9533,'wp-content/plugins/wordfence/lib/wfUtils.php'),(9534,'wp-content/plugins/wordfence/lib/wfVersionCheckController.php'),(9535,'wp-content/plugins/wordfence/lib/wfView.php'),(9536,'wp-content/plugins/wordfence/lib/wfViewResult.php'),(9537,'wp-content/plugins/wordfence/lib/wordfenceClass.php'),(9538,'wp-content/plugins/wordfence/lib/wordfenceConstants.php'),(9539,'wp-content/plugins/wordfence/lib/wordfenceHash.php'),(9540,'wp-content/plugins/wordfence/lib/wordfenceScanner.php'),(9541,'wp-content/plugins/wordfence/lib/wordfenceURLHoover.php'),(9542,'wp-content/plugins/wordfence/license.txt'),(9543,'wp-content/plugins/wordfence/models/.htaccess'),(9544,'wp-content/plugins/wordfence/models/block/wfBlock.php'),(9545,'wp-content/plugins/wordfence/models/block/wfRateLimit.php'),(9546,'wp-content/plugins/wordfence/models/common/wfGeoIP2.php'),(9547,'wp-content/plugins/wordfence/models/common/wfTab.php'),(9548,'wp-content/plugins/wordfence/models/firewall/wfFirewall.php'),(9549,'wp-content/plugins/wordfence/models/page/wfPage.php'),(9550,'wp-content/plugins/wordfence/models/scanner/wfScanner.php'),(9551,'wp-content/plugins/wordfence/modules/login-security/classes/.htaccess'),(9552,'wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php'),(9553,'wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php'),(9554,'wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php'),(9555,'wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php'),(9556,'wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php'),(9557,'wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php'),(9558,'wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php'),(9559,'wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php'),(9560,'wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php'),(9561,'wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php'),(9562,'wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php'),(9563,'wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php'),(9564,'wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php'),(9565,'wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php'),(9566,'wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php'),(9567,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php'),(9568,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php'),(9569,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php'),(9570,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php'),(9571,'wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php'),(9572,'wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php'),(9573,'wp-content/plugins/wordfence/modules/login-security/classes/model/request.php'),(9574,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php'),(9575,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php'),(9576,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php'),(9577,'wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php'),(9578,'wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php'),(9579,'wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php'),(9580,'wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php'),(9581,'wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php'),(9582,'wp-content/plugins/wordfence/modules/login-security/classes/model/view.php'),(9583,'wp-content/plugins/wordfence/modules/login-security/css/admin-global.1647958122.css'),(9584,'wp-content/plugins/wordfence/modules/login-security/css/admin.1647958122.css'),(9585,'wp-content/plugins/wordfence/modules/login-security/css/colorbox.1647958122.css'),(9586,'wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1647958122.css'),(9587,'wp-content/plugins/wordfence/modules/login-security/css/ionicons.1647958122.css'),(9588,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1647958122.css'),(9589,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1647958122.css'),(9590,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1647958122.css'),(9591,'wp-content/plugins/wordfence/modules/login-security/css/login.1647958122.css'),(9592,'wp-content/plugins/wordfence/modules/login-security/img/header.svg'),(9593,'wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png'),(9594,'wp-content/plugins/wordfence/modules/login-security/img/loading.gif'),(9595,'wp-content/plugins/wordfence/modules/login-security/img/loading_background.png'),(9596,'wp-content/plugins/wordfence/modules/login-security/img/menu.svg'),(9597,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png'),(9598,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png'),(9599,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png'),(9600,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png'),(9601,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png'),(9602,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png'),(9603,'wp-content/plugins/wordfence/modules/login-security/js/admin-global.1637598990.js'),(9604,'wp-content/plugins/wordfence/modules/login-security/js/admin-global.1643748814.js'),(9605,'wp-content/plugins/wordfence/modules/login-security/js/admin-global.1647958122.js'),(9606,'wp-content/plugins/wordfence/modules/login-security/js/admin.1637598990.js'),(9607,'wp-content/plugins/wordfence/modules/login-security/js/admin.1643748814.js'),(9608,'wp-content/plugins/wordfence/modules/login-security/js/admin.1647958122.js'),(9609,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1637598990.js'),(9610,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1643748814.js'),(9611,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1647958122.js'),(9612,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1637598990.js'),(9613,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1643748814.js'),(9614,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1647958122.js'),(9615,'wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1637598990.js'),(9616,'wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1643748814.js'),(9617,'wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1647958122.js'),(9618,'wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1637598990.js'),(9619,'wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1643748814.js'),(9620,'wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1647958122.js'),(9621,'wp-content/plugins/wordfence/modules/login-security/js/login.1637598990.js'),(9622,'wp-content/plugins/wordfence/modules/login-security/js/login.1643748814.js'),(9623,'wp-content/plugins/wordfence/modules/login-security/js/login.1647958122.js'),(9624,'wp-content/plugins/wordfence/modules/login-security/views/.htaccess'),(9625,'wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php'),(9626,'wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php'),(9627,'wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php'),(9628,'wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php'),(9629,'wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php'),(9630,'wp-content/plugins/wordfence/modules/login-security/views/manage/code.php'),(9631,'wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php'),(9632,'wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php'),(9633,'wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php'),(9634,'wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php'),(9635,'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php'),(9636,'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php'),(9637,'wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php'),(9638,'wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php'),(9639,'wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php'),(9640,'wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php'),(9641,'wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php'),(9642,'wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php'),(9643,'wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php'),(9644,'wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php'),(9645,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php'),(9646,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php'),(9647,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php'),(9648,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php'),(9649,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php'),(9650,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php'),(9651,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php'),(9652,'wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php'),(9653,'wp-content/plugins/wordfence/modules/login-security/views/page/manage.php'),(9654,'wp-content/plugins/wordfence/modules/login-security/views/page/page.php'),(9655,'wp-content/plugins/wordfence/modules/login-security/views/page/role.php'),(9656,'wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php'),(9657,'wp-content/plugins/wordfence/modules/login-security/views/page/settings.php'),(9658,'wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php'),(9659,'wp-content/plugins/wordfence/modules/login-security/views/settings/options.php'),(9660,'wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php'),(9661,'wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php'),(9662,'wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php'),(9663,'wp-content/plugins/wordfence/readme.txt'),(9664,'wp-content/plugins/wordfence/tmp/.htaccess'),(9665,'wp-content/plugins/wordfence/vendor/.htaccess'),(9666,'wp-content/plugins/wordfence/vendor/autoload.php'),(9667,'wp-content/plugins/wordfence/vendor/composer/ClassLoader.php'),(9668,'wp-content/plugins/wordfence/vendor/composer/LICENSE'),(9669,'wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php'),(9670,'wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php'),(9671,'wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php'),(9672,'wp-content/plugins/wordfence/vendor/composer/autoload_real.php'),(9673,'wp-content/plugins/wordfence/vendor/composer/autoload_static.php'),(9674,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/LICENSE'),(9675,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/res/cacert.pem'),(9676,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/src/CaBundle.php'),(9677,'wp-content/plugins/wordfence/vendor/composer/installed.json'),(9678,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/.gitmodules'),(9679,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/.php_cs'),(9680,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/LICENSE'),(9681,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Database/Reader.php'),(9682,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php'),(9683,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php'),(9684,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php'),(9685,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/HttpException.php'),(9686,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php'),(9687,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php'),(9688,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AbstractModel.php'),(9689,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AnonymousIp.php'),(9690,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Asn.php'),(9691,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/City.php'),(9692,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/ConnectionType.php'),(9693,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Country.php'),(9694,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Domain.php'),(9695,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Enterprise.php'),(9696,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Insights.php'),(9697,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Isp.php'),(9698,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/ProviderInterface.php'),(9699,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php'),(9700,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractRecord.php'),(9701,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/City.php'),(9702,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Continent.php'),(9703,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Country.php'),(9704,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Location.php'),(9705,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/MaxMind.php'),(9706,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Postal.php'),(9707,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php'),(9708,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Subdivision.php'),(9709,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Traits.php'),(9710,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/WebService/Client.php'),(9711,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/LICENSE'),(9712,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php'),(9713,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/HttpException.php'),(9714,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php'),(9715,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php'),(9716,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php'),(9717,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php'),(9718,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php'),(9719,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php'),(9720,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Client.php'),(9721,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php'),(9722,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/Request.php'),(9723,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php'),(9724,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/LICENSE'),(9725,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/autoload.php'),(9726,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php'),(9727,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php'),(9728,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php'),(9729,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php'),(9730,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php'),(9731,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem'),(9732,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key'),(9733,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php'),(9734,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php'),(9735,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php'),(9736,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php'),(9737,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php'),(9738,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php'),(9739,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php'),(9740,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php'),(9741,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php'),(9742,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php'),(9743,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php'),(9744,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php'),(9745,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php'),(9746,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php'),(9747,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php'),(9748,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php'),(9749,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php'),(9750,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key'),(9751,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php'),(9752,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php'),(9753,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php'),(9754,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php'),(9755,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php'),(9756,'wp-content/plugins/wordfence/views/.htaccess'),(9757,'wp-content/plugins/wordfence/views/blocking/block-list.php'),(9758,'wp-content/plugins/wordfence/views/blocking/blocking-create.php'),(9759,'wp-content/plugins/wordfence/views/blocking/blocking-status.php'),(9760,'wp-content/plugins/wordfence/views/blocking/country-block-map.php'),(9761,'wp-content/plugins/wordfence/views/blocking/country-modal.php'),(9762,'wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php'),(9763,'wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php'),(9764,'wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php'),(9765,'wp-content/plugins/wordfence/views/common/block-navigation-option.php'),(9766,'wp-content/plugins/wordfence/views/common/indeterminate-progress.php'),(9767,'wp-content/plugins/wordfence/views/common/license.php'),(9768,'wp-content/plugins/wordfence/views/common/modal-prompt.php'),(9769,'wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php'),(9770,'wp-content/plugins/wordfence/views/common/page-help.php'),(9771,'wp-content/plugins/wordfence/views/common/page-tabbar.php'),(9772,'wp-content/plugins/wordfence/views/common/page-title.php'),(9773,'wp-content/plugins/wordfence/views/common/section-subtitle.php'),(9774,'wp-content/plugins/wordfence/views/common/section-title.php'),(9775,'wp-content/plugins/wordfence/views/common/status-circular.php'),(9776,'wp-content/plugins/wordfence/views/common/status-critical.php'),(9777,'wp-content/plugins/wordfence/views/common/status-detail.php'),(9778,'wp-content/plugins/wordfence/views/common/status-tooltip.php'),(9779,'wp-content/plugins/wordfence/views/common/status-warning.php'),(9780,'wp-content/plugins/wordfence/views/common/unsubscribe.php'),(9781,'wp-content/plugins/wordfence/views/dashboard/global-status.php'),(9782,'wp-content/plugins/wordfence/views/dashboard/option-howgetips.php'),(9783,'wp-content/plugins/wordfence/views/dashboard/options-group-alert.php'),(9784,'wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php'),(9785,'wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php'),(9786,'wp-content/plugins/wordfence/views/dashboard/options-group-general.php'),(9787,'wp-content/plugins/wordfence/views/dashboard/options-group-import.php'),(9788,'wp-content/plugins/wordfence/views/dashboard/options-group-license.php'),(9789,'wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php'),(9790,'wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php'),(9791,'wp-content/plugins/wordfence/views/dashboard/status-renewing.php'),(9792,'wp-content/plugins/wordfence/views/diagnostics/text.php'),(9793,'wp-content/plugins/wordfence/views/gdpr/banner.php'),(9794,'wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php'),(9795,'wp-content/plugins/wordfence/views/onboarding/banner.php'),(9796,'wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php'),(9797,'wp-content/plugins/wordfence/views/onboarding/fresh-install.php'),(9798,'wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php'),(9799,'wp-content/plugins/wordfence/views/onboarding/overlay.php'),(9800,'wp-content/plugins/wordfence/views/onboarding/plugin-header.php'),(9801,'wp-content/plugins/wordfence/views/onboarding/tour-overlay.php'),(9802,'wp-content/plugins/wordfence/views/options/block-all-options-controls.php'),(9803,'wp-content/plugins/wordfence/views/options/block-controls.php'),(9804,'wp-content/plugins/wordfence/views/options/option-label.php'),(9805,'wp-content/plugins/wordfence/views/options/option-select.php'),(9806,'wp-content/plugins/wordfence/views/options/option-switch.php'),(9807,'wp-content/plugins/wordfence/views/options/option-text.php'),(9808,'wp-content/plugins/wordfence/views/options/option-textarea.php'),(9809,'wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php'),(9810,'wp-content/plugins/wordfence/views/options/option-toggled-multiple.php'),(9811,'wp-content/plugins/wordfence/views/options/option-toggled-segmented.php'),(9812,'wp-content/plugins/wordfence/views/options/option-toggled-select.php'),(9813,'wp-content/plugins/wordfence/views/options/option-toggled-sub.php'),(9814,'wp-content/plugins/wordfence/views/options/option-toggled-textarea.php'),(9815,'wp-content/plugins/wordfence/views/options/option-toggled.php'),(9816,'wp-content/plugins/wordfence/views/options/option-token.php'),(9817,'wp-content/plugins/wordfence/views/options/options-title.php'),(9818,'wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php'),(9819,'wp-content/plugins/wordfence/views/reports/activity-report.php'),(9820,'wp-content/plugins/wordfence/views/scanner/issue-base.php'),(9821,'wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php'),(9822,'wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php'),(9823,'wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php'),(9824,'wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php'),(9825,'wp-content/plugins/wordfence/views/scanner/issue-configReadable.php'),(9826,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php'),(9827,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php'),(9828,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php'),(9829,'wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php'),(9830,'wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php'),(9831,'wp-content/plugins/wordfence/views/scanner/issue-control-repair.php'),(9832,'wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php'),(9833,'wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php'),(9834,'wp-content/plugins/wordfence/views/scanner/issue-database.php'),(9835,'wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php'),(9836,'wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php'),(9837,'wp-content/plugins/wordfence/views/scanner/issue-file.php'),(9838,'wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php'),(9839,'wp-content/plugins/wordfence/views/scanner/issue-knownfile.php'),(9840,'wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php'),(9841,'wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php'),(9842,'wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php'),(9843,'wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php'),(9844,'wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php'),(9845,'wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php'),(9846,'wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php'),(9847,'wp-content/plugins/wordfence/views/scanner/issue-timelimit.php'),(9848,'wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php'),(9849,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php'),(9850,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php'),(9851,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php'),(9852,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php'),(9853,'wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php'),(9854,'wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php'),(9855,'wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php'),(9856,'wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php'),(9857,'wp-content/plugins/wordfence/views/scanner/no-issues.php'),(9858,'wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php'),(9859,'wp-content/plugins/wordfence/views/scanner/options-group-advanced.php'),(9860,'wp-content/plugins/wordfence/views/scanner/options-group-basic.php'),(9861,'wp-content/plugins/wordfence/views/scanner/options-group-general.php'),(9862,'wp-content/plugins/wordfence/views/scanner/options-group-performance.php'),(9863,'wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php'),(9864,'wp-content/plugins/wordfence/views/scanner/scan-failed.php'),(9865,'wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php'),(9866,'wp-content/plugins/wordfence/views/scanner/scan-progress-element.php'),(9867,'wp-content/plugins/wordfence/views/scanner/scan-progress.php'),(9868,'wp-content/plugins/wordfence/views/scanner/scan-results.php'),(9869,'wp-content/plugins/wordfence/views/scanner/scan-scheduling.php'),(9870,'wp-content/plugins/wordfence/views/scanner/scan-starter.php'),(9871,'wp-content/plugins/wordfence/views/scanner/scan-type.php'),(9872,'wp-content/plugins/wordfence/views/scanner/scanner-status.php'),(9873,'wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php'),(9874,'wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php'),(9875,'wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php'),(9876,'wp-content/plugins/wordfence/views/scanner/site-cleaning.php'),(9877,'wp-content/plugins/wordfence/views/tools/options-group-2fa.php'),(9878,'wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php'),(9879,'wp-content/plugins/wordfence/views/tours/login-security.php'),(9880,'wp-content/plugins/wordfence/views/unsupported-php/admin-message.php'),(9881,'wp-content/plugins/wordfence/views/user/disabled-application-passwords.php'),(9882,'wp-content/plugins/wordfence/views/waf/debug.php'),(9883,'wp-content/plugins/wordfence/views/waf/firewall-status.php'),(9884,'wp-content/plugins/wordfence/views/waf/option-rate-limit.php'),(9885,'wp-content/plugins/wordfence/views/waf/option-rules.php'),(9886,'wp-content/plugins/wordfence/views/waf/option-whitelist.php'),(9887,'wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php'),(9888,'wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php'),(9889,'wp-content/plugins/wordfence/views/waf/options-group-brute-force.php'),(9890,'wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php'),(9891,'wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php'),(9892,'wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php'),(9893,'wp-content/plugins/wordfence/views/waf/waf-install-manual.php'),(9894,'wp-content/plugins/wordfence/views/waf/waf-install-success.php'),(9895,'wp-content/plugins/wordfence/views/waf/waf-install.php'),(9896,'wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php'),(9897,'wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php'),(9898,'wp-content/plugins/wordfence/views/waf/waf-uninstall.php'),(9899,'wp-content/plugins/wordfence/waf/.htaccess'),(9900,'wp-content/plugins/wordfence/waf/bootstrap.php'),(9901,'wp-content/plugins/wordfence/waf/pomo/entry.php'),(9902,'wp-content/plugins/wordfence/waf/pomo/mo.php'),(9903,'wp-content/plugins/wordfence/waf/pomo/plural-forms.php'),(9904,'wp-content/plugins/wordfence/waf/pomo/po.php'),(9905,'wp-content/plugins/wordfence/waf/pomo/streams.php'),(9906,'wp-content/plugins/wordfence/waf/pomo/translations.php'),(9907,'wp-content/plugins/wordfence/waf/wfWAFGeoIP2.php'),(9908,'wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php'),(9909,'wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php'),(9910,'wp-content/plugins/wordfence/wordfence.php'),(9911,'wp-content/plugins/wp-author-date-and-meta-remover/css/entrymetastyle.css'),(9912,'wp-content/plugins/wp-author-date-and-meta-remover/readme.txt'),(9913,'wp-content/plugins/wp-author-date-and-meta-remover/wp-author-date-and-meta-remover.php'),(9914,'wp-content/plugins/wp-editor/classes/WPEditor.php'),(9915,'wp-content/plugins/wp-editor/classes/WPEditorAdmin.php'),(9916,'wp-content/plugins/wp-editor/classes/WPEditorAjax.php'),(9917,'wp-content/plugins/wp-editor/classes/WPEditorBrowser.php'),(9918,'wp-content/plugins/wp-editor/classes/WPEditorException.php'),(9919,'wp-content/plugins/wp-editor/classes/WPEditorLog.php'),(9920,'wp-content/plugins/wp-editor/classes/WPEditorPlugins.php'),(9921,'wp-content/plugins/wp-editor/classes/WPEditorPosts.php'),(9922,'wp-content/plugins/wp-editor/classes/WPEditorSetting.php'),(9923,'wp-content/plugins/wp-editor/classes/WPEditorThemes.php'),(9924,'wp-content/plugins/wp-editor/extensions/attrchange/attrchange.js'),(9925,'wp-content/plugins/wp-editor/extensions/chosen/css/chosen-sprite.png'),(9926,'wp-content/plugins/wp-editor/extensions/chosen/css/chosen-sprite@2x.png'),(9927,'wp-content/plugins/wp-editor/extensions/chosen/css/chosen.min.css'),(9928,'wp-content/plugins/wp-editor/extensions/chosen/js/chosen.jquery.min.js'),(9929,'wp-content/plugins/wp-editor/extensions/codemirror/css/codemirror.css'),(9930,'wp-content/plugins/wp-editor/extensions/codemirror/css/dialog.css'),(9931,'wp-content/plugins/wp-editor/extensions/codemirror/css/fullscreen.css'),(9932,'wp-content/plugins/wp-editor/extensions/codemirror/js/clike.js'),(9933,'wp-content/plugins/wp-editor/extensions/codemirror/js/codemirror.js'),(9934,'wp-content/plugins/wp-editor/extensions/codemirror/js/css.js'),(9935,'wp-content/plugins/wp-editor/extensions/codemirror/js/dialog.js'),(9936,'wp-content/plugins/wp-editor/extensions/codemirror/js/foldcode.js'),(9937,'wp-content/plugins/wp-editor/extensions/codemirror/js/fullscreen.js'),(9938,'wp-content/plugins/wp-editor/extensions/codemirror/js/htmlembedded.js'),(9939,'wp-content/plugins/wp-editor/extensions/codemirror/js/htmlmixed.js'),(9940,'wp-content/plugins/wp-editor/extensions/codemirror/js/javascript.js'),(9941,'wp-content/plugins/wp-editor/extensions/codemirror/js/mustache.js'),(9942,'wp-content/plugins/wp-editor/extensions/codemirror/js/php.js'),(9943,'wp-content/plugins/wp-editor/extensions/codemirror/js/search.js'),(9944,'wp-content/plugins/wp-editor/extensions/codemirror/js/searchcursor.js'),(9945,'wp-content/plugins/wp-editor/extensions/codemirror/js/xml.js'),(9946,'wp-content/plugins/wp-editor/extensions/codemirror/theme/theme.css'),(9947,'wp-content/plugins/wp-editor/extensions/codemirror/themes/themes.css'),(9948,'wp-content/plugins/wp-editor/extensions/fancybox/images/blank.gif'),(9949,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_close.png'),(9950,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_loading.png'),(9951,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_nav_left.png'),(9952,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_nav_right.png'),(9953,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_e.png'),(9954,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_n.png'),(9955,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_ne.png'),(9956,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_nw.png'),(9957,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_s.png'),(9958,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_se.png'),(9959,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_sw.png'),(9960,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_w.png'),(9961,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_left.png'),(9962,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_main.png'),(9963,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_over.png'),(9964,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_right.png'),(9965,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancybox-x.png'),(9966,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancybox-y.png'),(9967,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancybox.png'),(9968,'wp-content/plugins/wp-editor/extensions/fancybox/jquery.fancybox-1.3.4.css'),(9969,'wp-content/plugins/wp-editor/extensions/fancybox/js/jquery.fancybox-1.3.4.pack.js'),(9970,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/css/nivo-lightbox.css'),(9971,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/js/nivo-lightbox.min.js'),(9972,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/close.png'),(9973,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/close@2x.png'),(9974,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/default.css'),(9975,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/loading.gif'),(9976,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/loading@2x.gif'),(9977,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/next.png'),(9978,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/next@2x.png'),(9979,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/prev.png'),(9980,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/prev@2x.png'),(9981,'wp-content/plugins/wp-editor/images/css.png'),(9982,'wp-content/plugins/wp-editor/images/folder.png'),(9983,'wp-content/plugins/wp-editor/images/gif.png'),(9984,'wp-content/plugins/wp-editor/images/htm.png'),(9985,'wp-content/plugins/wp-editor/images/html.png'),(9986,'wp-content/plugins/wp-editor/images/jpeg.png'),(9987,'wp-content/plugins/wp-editor/images/jpg.png'),(9988,'wp-content/plugins/wp-editor/images/js.png'),(9989,'wp-content/plugins/wp-editor/images/less.png'),(9990,'wp-content/plugins/wp-editor/images/loader.gif'),(9991,'wp-content/plugins/wp-editor/images/php.png'),(9992,'wp-content/plugins/wp-editor/images/png.png'),(9993,'wp-content/plugins/wp-editor/images/po.png'),(9994,'wp-content/plugins/wp-editor/images/pot.png'),(9995,'wp-content/plugins/wp-editor/images/sql.png'),(9996,'wp-content/plugins/wp-editor/images/txt.png'),(9997,'wp-content/plugins/wp-editor/images/wpeditor_logo_16.png'),(9998,'wp-content/plugins/wp-editor/images/wpeditor_logo_32.png'),(9999,'wp-content/plugins/wp-editor/images/xml.png'),(10000,'wp-content/plugins/wp-editor/images/xml.psd'),(10001,'wp-content/plugins/wp-editor/js/posts-jquery.js'),(10002,'wp-content/plugins/wp-editor/js/quicktags.js'),(10003,'wp-content/plugins/wp-editor/js/wpeditor.js'),(10004,'wp-content/plugins/wp-editor/readme.txt'),(10005,'wp-content/plugins/wp-editor/screenshot-1.png'),(10006,'wp-content/plugins/wp-editor/screenshot-2.png'),(10007,'wp-content/plugins/wp-editor/screenshot-3.png'),(10008,'wp-content/plugins/wp-editor/screenshot-4.png'),(10009,'wp-content/plugins/wp-editor/screenshot-5.png'),(10010,'wp-content/plugins/wp-editor/sql/database.sql'),(10011,'wp-content/plugins/wp-editor/sql/uninstall.sql'),(10012,'wp-content/plugins/wp-editor/uninstall.php'),(10013,'wp-content/plugins/wp-editor/views/OLDsettings.php'),(10014,'wp-content/plugins/wp-editor/views/plugin-editor.php'),(10015,'wp-content/plugins/wp-editor/views/settings.php'),(10016,'wp-content/plugins/wp-editor/views/theme-editor.php'),(10017,'wp-content/plugins/wp-editor/wpeditor.css'),(10018,'wp-content/plugins/wp-editor/wpeditor.php'),(10019,'wp-content/themes/Divi/404.php'),(10020,'wp-content/themes/Divi/comments.php'),(10021,'wp-content/themes/Divi/core/_et_core_version.php'),(10022,'wp-content/themes/Divi/core/_metadata.php'),(10023,'wp-content/themes/Divi/core/admin/fonts/builder.svg'),(10024,'wp-content/themes/Divi/core/admin/fonts/modules.svg'),(10025,'wp-content/themes/Divi/core/admin/js/common.js'),(10026,'wp-content/themes/Divi/core/admin/js/core.js'),(10027,'wp-content/themes/Divi/core/admin/js/page-resource-fallback.js'),(10028,'wp-content/themes/Divi/core/admin/js/page-resource-fallback.min.js'),(10029,'wp-content/themes/Divi/core/admin/js/portability.js'),(10030,'wp-content/themes/Divi/core/components/Cache.php'),(10031,'wp-content/themes/Divi/core/components/HTTPInterface.php'),(10032,'wp-content/themes/Divi/core/components/Logger.php'),(10033,'wp-content/themes/Divi/core/components/PageResource.php'),(10034,'wp-content/themes/Divi/core/components/Portability.php'),(10035,'wp-content/themes/Divi/core/components/Updates.php'),(10036,'wp-content/themes/Divi/core/components/api/OAuthHelper.php'),(10037,'wp-content/themes/Divi/core/components/api/Service.php'),(10038,'wp-content/themes/Divi/core/components/api/email/ActiveCampaign.php'),(10039,'wp-content/themes/Divi/core/components/api/email/Aweber.php'),(10040,'wp-content/themes/Divi/core/components/api/email/CampaignMonitor.php'),(10041,'wp-content/themes/Divi/core/components/api/email/ConstantContact.php'),(10042,'wp-content/themes/Divi/core/components/api/email/ConvertKit.php'),(10043,'wp-content/themes/Divi/core/components/api/email/Emma.php'),(10044,'wp-content/themes/Divi/core/components/api/email/Feedblitz.php'),(10045,'wp-content/themes/Divi/core/components/api/email/GetResponse.php'),(10046,'wp-content/themes/Divi/core/components/api/email/HubSpot.php'),(10047,'wp-content/themes/Divi/core/components/api/email/Infusionsoft.php'),(10048,'wp-content/themes/Divi/core/components/api/email/MadMimi.php'),(10049,'wp-content/themes/Divi/core/components/api/email/MailChimp.php'),(10050,'wp-content/themes/Divi/core/components/api/email/MailPoet.php'),(10051,'wp-content/themes/Divi/core/components/api/email/MailerLite.php'),(10052,'wp-content/themes/Divi/core/components/api/email/Mailster.php'),(10053,'wp-content/themes/Divi/core/components/api/email/Ontraport.php'),(10054,'wp-content/themes/Divi/core/components/api/email/Provider.php'),(10055,'wp-content/themes/Divi/core/components/api/email/Providers.php'),(10056,'wp-content/themes/Divi/core/components/api/email/SalesForce.php'),(10057,'wp-content/themes/Divi/core/components/api/email/SendinBlue.php'),(10058,'wp-content/themes/Divi/core/components/api/email/_MailPoet2.php'),(10059,'wp-content/themes/Divi/core/components/api/email/_MailPoet3.php'),(10060,'wp-content/themes/Divi/core/components/api/email/_ProviderName.php'),(10061,'wp-content/themes/Divi/core/components/api/email/iContact.php'),(10062,'wp-content/themes/Divi/core/components/api/email/init.php'),(10063,'wp-content/themes/Divi/core/components/api/init.php'),(10064,'wp-content/themes/Divi/core/components/api/social/Network.php'),(10065,'wp-content/themes/Divi/core/components/data/Utils.php'),(10066,'wp-content/themes/Divi/core/components/data/init.php'),(10067,'wp-content/themes/Divi/core/components/init.php'),(10068,'wp-content/themes/Divi/core/components/lib/BluehostCache.php'),(10069,'wp-content/themes/Divi/core/components/lib/OAuth.php'),(10070,'wp-content/themes/Divi/core/components/lib/WPHttp.php'),(10071,'wp-content/themes/Divi/core/components/post/Object.php'),(10072,'wp-content/themes/Divi/core/components/post/Query.php'),(10073,'wp-content/themes/Divi/core/components/post/Taxonomy.php'),(10074,'wp-content/themes/Divi/core/components/post/Type.php'),(10075,'wp-content/themes/Divi/core/functions.php'),(10076,'wp-content/themes/Divi/core/init.php'),(10077,'wp-content/themes/Divi/core/updates_init.php'),(10078,'wp-content/themes/Divi/core/wp_functions.php'),(10079,'wp-content/themes/Divi/css/tinymce-skin/fonts/tinymce-small.svg'),(10080,'wp-content/themes/Divi/css/tinymce-skin/fonts/tinymce.svg'),(10081,'wp-content/themes/Divi/epanel/core_functions.php'),(10082,'wp-content/themes/Divi/epanel/custom_functions.php'),(10083,'wp-content/themes/Divi/epanel/google-fonts/et_google_fonts.js'),(10084,'wp-content/themes/Divi/epanel/js/checkbox.js'),(10085,'wp-content/themes/Divi/epanel/js/colorpicker.js'),(10086,'wp-content/themes/Divi/epanel/js/custom_uploader.js'),(10087,'wp-content/themes/Divi/epanel/js/eye.js'),(10088,'wp-content/themes/Divi/epanel/js/functions-init.js'),(10089,'wp-content/themes/Divi/epanel/js/layout.js'),(10090,'wp-content/themes/Divi/epanel/js/wp-color-picker-alpha.min.js'),(10091,'wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.js'),(10092,'wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.min.js'),(10093,'wp-content/themes/Divi/epanel/shortcodes/js/et_shortcodes_frontend.js'),(10094,'wp-content/themes/Divi/epanel/shortcodes/shortcodes.php'),(10095,'wp-content/themes/Divi/et-pagebuilder/et-pagebuilder.php'),(10096,'wp-content/themes/Divi/footer.php'),(10097,'wp-content/themes/Divi/functions.php'),(10098,'wp-content/themes/Divi/header.php'),(10099,'wp-content/themes/Divi/includes/builder/ab-testing.php'),(10100,'wp-content/themes/Divi/includes/builder/class-et-builder-element.php'),(10101,'wp-content/themes/Divi/includes/builder/class-et-builder-plugin-compat-base.php'),(10102,'wp-content/themes/Divi/includes/builder/class-et-builder-plugin-compat-loader.php'),(10103,'wp-content/themes/Divi/includes/builder/class-et-builder-settings.php'),(10104,'wp-content/themes/Divi/includes/builder/class-et-global-settings.php'),(10105,'wp-content/themes/Divi/includes/builder/comments_template.php'),(10106,'wp-content/themes/Divi/includes/builder/compat/woocommerce.php'),(10107,'wp-content/themes/Divi/includes/builder/core.php'),(10108,'wp-content/themes/Divi/includes/builder/feature/Library.php'),(10109,'wp-content/themes/Divi/includes/builder/framework.php'),(10110,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/mediaelement-images/bigplay.svg'),(10111,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/mediaelement-images/controls.svg'),(10112,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/scripts/failure_notice.js'),(10113,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/advlist/plugin.min.js'),(10114,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/anchor/plugin.min.js'),(10115,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autolink/plugin.min.js'),(10116,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autoresize/plugin.min.js'),(10117,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autosave/plugin.min.js'),(10118,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/bbcode/plugin.min.js'),(10119,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/charmap/plugin.min.js'),(10120,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/code/plugin.min.js'),(10121,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/codesample/plugin.min.js'),(10122,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/colorpicker/plugin.min.js'),(10123,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/contextmenu/plugin.min.js'),(10124,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/directionality/plugin.min.js'),(10125,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/emoticons/plugin.min.js'),(10126,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullpage/plugin.min.js'),(10127,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullscreen/plugin.min.js'),(10128,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/help/plugin.min.js'),(10129,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/hr/plugin.min.js'),(10130,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/image/plugin.min.js'),(10131,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/imagetools/plugin.min.js'),(10132,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/importcss/plugin.min.js'),(10133,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/insertdatetime/plugin.min.js'),(10134,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/legacyoutput/plugin.min.js'),(10135,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/link/plugin.min.js'),(10136,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/lists/plugin.min.js'),(10137,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/media/plugin.min.js'),(10138,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/nonbreaking/plugin.min.js'),(10139,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/noneditable/plugin.min.js'),(10140,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/pagebreak/plugin.min.js'),(10141,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/paste/plugin.min.js'),(10142,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/preview/plugin.min.js'),(10143,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/print/plugin.min.js'),(10144,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/save/plugin.min.js'),(10145,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/searchreplace/plugin.min.js'),(10146,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/spellchecker/plugin.min.js'),(10147,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/tabfocus/plugin.min.js'),(10148,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/table/plugin.min.js'),(10149,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/template/plugin.min.js'),(10150,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textcolor/plugin.min.js'),(10151,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textpattern/plugin.min.js'),(10152,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/toc/plugin.min.js'),(10153,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualblocks/plugin.min.js'),(10154,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualchars/plugin.min.js'),(10155,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/wordcount/plugin.min.js'),(10156,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.svg'),(10157,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.svg'),(10158,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/inlite/theme.min.js'),(10159,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/modern/theme.min.js'),(10160,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.svg'),(10161,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.svg'),(10162,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce.min.js'),(10163,'wp-content/themes/Divi/includes/builder/frontend-builder/assets.php'),(10164,'wp-content/themes/Divi/includes/builder/frontend-builder/bundle.js'),(10165,'wp-content/themes/Divi/includes/builder/frontend-builder/bundle.modals.2d731ae0.js'),(10166,'wp-content/themes/Divi/includes/builder/frontend-builder/helpers.php'),(10167,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/categories.php'),(10168,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/layouts-long.php'),(10169,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/layouts-short.php'),(10170,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/packs.php'),(10171,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library.php'),(10172,'wp-content/themes/Divi/includes/builder/frontend-builder/init.php'),(10173,'wp-content/themes/Divi/includes/builder/frontend-builder/rtl.php'),(10174,'wp-content/themes/Divi/includes/builder/frontend-builder/view.php'),(10175,'wp-content/themes/Divi/includes/builder/functions.php'),(10176,'wp-content/themes/Divi/includes/builder/google-fonts-data.php'),(10177,'wp-content/themes/Divi/includes/builder/images/library-global.svg'),(10178,'wp-content/themes/Divi/includes/builder/images/library-layout.svg'),(10179,'wp-content/themes/Divi/includes/builder/images/menu.svg'),(10180,'wp-content/themes/Divi/includes/builder/images/stats-no-data.svg'),(10181,'wp-content/themes/Divi/includes/builder/images/stats.svg'),(10182,'wp-content/themes/Divi/includes/builder/main-modules.php'),(10183,'wp-content/themes/Divi/includes/builder/main-structure-elements.php'),(10184,'wp-content/themes/Divi/includes/builder/module/Accordion.php'),(10185,'wp-content/themes/Divi/includes/builder/module/AccordionItem.php'),(10186,'wp-content/themes/Divi/includes/builder/module/Audio.php'),(10187,'wp-content/themes/Divi/includes/builder/module/BarCounters.php'),(10188,'wp-content/themes/Divi/includes/builder/module/BarCountersItem.php'),(10189,'wp-content/themes/Divi/includes/builder/module/Blog.php'),(10190,'wp-content/themes/Divi/includes/builder/module/Blurb.php'),(10191,'wp-content/themes/Divi/includes/builder/module/Button.php'),(10192,'wp-content/themes/Divi/includes/builder/module/CircleCounter.php'),(10193,'wp-content/themes/Divi/includes/builder/module/Code.php'),(10194,'wp-content/themes/Divi/includes/builder/module/Comments.php'),(10195,'wp-content/themes/Divi/includes/builder/module/ContactForm.php'),(10196,'wp-content/themes/Divi/includes/builder/module/ContactFormItem.php'),(10197,'wp-content/themes/Divi/includes/builder/module/CountdownTimer.php'),(10198,'wp-content/themes/Divi/includes/builder/module/Cta.php'),(10199,'wp-content/themes/Divi/includes/builder/module/Divider.php'),(10200,'wp-content/themes/Divi/includes/builder/module/FilterablePortfolio.php'),(10201,'wp-content/themes/Divi/includes/builder/module/FullwidthCode.php'),(10202,'wp-content/themes/Divi/includes/builder/module/FullwidthHeader.php'),(10203,'wp-content/themes/Divi/includes/builder/module/FullwidthImage.php'),(10204,'wp-content/themes/Divi/includes/builder/module/FullwidthMap.php'),(10205,'wp-content/themes/Divi/includes/builder/module/FullwidthMenu.php'),(10206,'wp-content/themes/Divi/includes/builder/module/FullwidthPortfolio.php'),(10207,'wp-content/themes/Divi/includes/builder/module/FullwidthPostSlider.php'),(10208,'wp-content/themes/Divi/includes/builder/module/FullwidthPostTitle.php'),(10209,'wp-content/themes/Divi/includes/builder/module/FullwidthSlider.php'),(10210,'wp-content/themes/Divi/includes/builder/module/Gallery.php'),(10211,'wp-content/themes/Divi/includes/builder/module/Image.php'),(10212,'wp-content/themes/Divi/includes/builder/module/Login.php'),(10213,'wp-content/themes/Divi/includes/builder/module/Map.php'),(10214,'wp-content/themes/Divi/includes/builder/module/MapItem.php'),(10215,'wp-content/themes/Divi/includes/builder/module/NumberCounter.php'),(10216,'wp-content/themes/Divi/includes/builder/module/Portfolio.php'),(10217,'wp-content/themes/Divi/includes/builder/module/PostSlider.php'),(10218,'wp-content/themes/Divi/includes/builder/module/PostTitle.php'),(10219,'wp-content/themes/Divi/includes/builder/module/PostsNavigation.php'),(10220,'wp-content/themes/Divi/includes/builder/module/PricingTables.php'),(10221,'wp-content/themes/Divi/includes/builder/module/PricingTablesItem.php'),(10222,'wp-content/themes/Divi/includes/builder/module/Search.php'),(10223,'wp-content/themes/Divi/includes/builder/module/Shop.php'),(10224,'wp-content/themes/Divi/includes/builder/module/Sidebar.php'),(10225,'wp-content/themes/Divi/includes/builder/module/Signup.php'),(10226,'wp-content/themes/Divi/includes/builder/module/Slider.php'),(10227,'wp-content/themes/Divi/includes/builder/module/SliderItem.php'),(10228,'wp-content/themes/Divi/includes/builder/module/SocialMediaFollow.php'),(10229,'wp-content/themes/Divi/includes/builder/module/SocialMediaFollowItem.php'),(10230,'wp-content/themes/Divi/includes/builder/module/Tabs.php'),(10231,'wp-content/themes/Divi/includes/builder/module/TabsItem.php'),(10232,'wp-content/themes/Divi/includes/builder/module/TeamMember.php'),(10233,'wp-content/themes/Divi/includes/builder/module/Testimonial.php'),(10234,'wp-content/themes/Divi/includes/builder/module/Text.php'),(10235,'wp-content/themes/Divi/includes/builder/module/Toggle.php'),(10236,'wp-content/themes/Divi/includes/builder/module/Video.php'),(10237,'wp-content/themes/Divi/includes/builder/module/VideoSlider.php'),(10238,'wp-content/themes/Divi/includes/builder/module/VideoSliderItem.php'),(10239,'wp-content/themes/Divi/includes/builder/module/field/Base.php'),(10240,'wp-content/themes/Divi/includes/builder/module/field/Border.php'),(10241,'wp-content/themes/Divi/includes/builder/module/field/BoxShadow.php'),(10242,'wp-content/themes/Divi/includes/builder/module/field/Divider.php'),(10243,'wp-content/themes/Divi/includes/builder/module/field/Factory.php'),(10244,'wp-content/themes/Divi/includes/builder/module/field/TextShadow.php'),(10245,'wp-content/themes/Divi/includes/builder/module/field/attribute/composite/Parser.php'),(10246,'wp-content/themes/Divi/includes/builder/module/field/attribute/composite/type/Tabbed.php'),(10247,'wp-content/themes/Divi/includes/builder/module/field/template/Base.php'),(10248,'wp-content/themes/Divi/includes/builder/module/field/template/Tabbed.php'),(10249,'wp-content/themes/Divi/includes/builder/module/field/template/border/Radius.php'),(10250,'wp-content/themes/Divi/includes/builder/module/field/template/border/Styles.php'),(10251,'wp-content/themes/Divi/includes/builder/module/settings/Migration.php'),(10252,'wp-content/themes/Divi/includes/builder/module/settings/migration/Animation.php'),(10253,'wp-content/themes/Divi/includes/builder/module/settings/migration/BackgroundUI.php'),(10254,'wp-content/themes/Divi/includes/builder/module/settings/migration/BorderOptions.php'),(10255,'wp-content/themes/Divi/includes/builder/module/settings/migration/DropShadowToBoxShadow.php'),(10256,'wp-content/themes/Divi/includes/builder/module/settings/migration/FilterOptions.php'),(10257,'wp-content/themes/Divi/includes/builder/module/settings/migration/FullwidthHeader.php'),(10258,'wp-content/themes/Divi/includes/builder/module/settings/migration/FullwidthHeader2.php'),(10259,'wp-content/themes/Divi/includes/builder/module/settings/migration/InnerShadowToBoxShadow.php'),(10260,'wp-content/themes/Divi/includes/builder/module/settings/migration/OptionsHarmony.php'),(10261,'wp-content/themes/Divi/includes/builder/module/settings/migration/ShopModuleSlugs.php'),(10262,'wp-content/themes/Divi/includes/builder/module/type/PostBased.php'),(10263,'wp-content/themes/Divi/includes/builder/plugin-compat/amazon-s3-and-cloudfront-pro.php'),(10264,'wp-content/themes/Divi/includes/builder/plugin-compat/amazon-s3-and-cloudfront.php'),(10265,'wp-content/themes/Divi/includes/builder/plugin-compat/divi_layout_injector.php'),(10266,'wp-content/themes/Divi/includes/builder/plugin-compat/dk-pdf.php'),(10267,'wp-content/themes/Divi/includes/builder/plugin-compat/easy-digital-downloads.php'),(10268,'wp-content/themes/Divi/includes/builder/plugin-compat/insert-pages.php'),(10269,'wp-content/themes/Divi/includes/builder/plugin-compat/mappress-google-maps-for-wordpress.php'),(10270,'wp-content/themes/Divi/includes/builder/plugin-compat/siteorigin-panels.php'),(10271,'wp-content/themes/Divi/includes/builder/plugin-compat/sitepress-multilingual-cms.php'),(10272,'wp-content/themes/Divi/includes/builder/plugin-compat/table-of-contents-plus.php'),(10273,'wp-content/themes/Divi/includes/builder/plugin-compat/woocommerce.php'),(10274,'wp-content/themes/Divi/includes/builder/plugin-compat/wordpress-seo.php'),(10275,'wp-content/themes/Divi/includes/builder/post/query/Layouts.php'),(10276,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutCategory.php'),(10277,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutPack.php'),(10278,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutScope.php'),(10279,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutType.php'),(10280,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutWidth.php'),(10281,'wp-content/themes/Divi/includes/builder/post/type/Layout.php'),(10282,'wp-content/themes/Divi/includes/builder/scripts/admin_global_functions.js'),(10283,'wp-content/themes/Divi/includes/builder/scripts/builder.js'),(10284,'wp-content/themes/Divi/includes/builder/scripts/cache_notice.js'),(10285,'wp-content/themes/Divi/includes/builder/scripts/ext/chart.min.js'),(10286,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.10.4.custom.min.js'),(10287,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.11.4.custom.min.js'),(10288,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-timepicker-addon.js'),(10289,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.minicolors.js'),(10290,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.tablesorter.min.js'),(10291,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.validate.js'),(10292,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.visible.min.js'),(10293,'wp-content/themes/Divi/includes/builder/scripts/ext/media-library.js'),(10294,'wp-content/themes/Divi/includes/builder/scripts/ext/widgets.js'),(10295,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha-48.js'),(10296,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha-48.min.js'),(10297,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.js'),(10298,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.min.js'),(10299,'wp-content/themes/Divi/includes/builder/scripts/failure_notice.js'),(10300,'wp-content/themes/Divi/includes/builder/scripts/frontend-builder-global-functions.js'),(10301,'wp-content/themes/Divi/includes/builder/scripts/frontend-builder-preview.js'),(10302,'wp-content/themes/Divi/includes/builder/scripts/frontend-builder-scripts.js'),(10303,'wp-content/themes/Divi/includes/builder/scripts/jquery.easypiechart.js'),(10304,'wp-content/themes/Divi/includes/builder/scripts/jquery.fitvids.js'),(10305,'wp-content/themes/Divi/includes/builder/scripts/jquery.hashchange.js'),(10306,'wp-content/themes/Divi/includes/builder/scripts/jquery.magnific-popup.js'),(10307,'wp-content/themes/Divi/includes/builder/scripts/jquery.mobile.custom.min.js'),(10308,'wp-content/themes/Divi/includes/builder/scripts/library_category.js'),(10309,'wp-content/themes/Divi/includes/builder/scripts/library_scripts.js'),(10310,'wp-content/themes/Divi/includes/builder/scripts/lz-string.min.js'),(10311,'wp-content/themes/Divi/includes/builder/scripts/reset_memory_limit_increase_setting.js'),(10312,'wp-content/themes/Divi/includes/builder/scripts/roles_admin.js'),(10313,'wp-content/themes/Divi/includes/builder/scripts/salvattore.min.js'),(10314,'wp-content/themes/Divi/includes/builder/scripts/waypoints.min.js'),(10315,'wp-content/themes/Divi/includes/builder/template-preview.php'),(10316,'wp-content/themes/Divi/includes/functions/choices.php'),(10317,'wp-content/themes/Divi/includes/functions/installation.php'),(10318,'wp-content/themes/Divi/includes/functions/sanitization.php'),(10319,'wp-content/themes/Divi/includes/functions/sidebars.php'),(10320,'wp-content/themes/Divi/includes/functions/tutorials.php'),(10321,'wp-content/themes/Divi/includes/navigation.php'),(10322,'wp-content/themes/Divi/includes/no-results.php'),(10323,'wp-content/themes/Divi/includes/social_icons.php'),(10324,'wp-content/themes/Divi/includes/widgets/widget-about.php'),(10325,'wp-content/themes/Divi/includes/widgets/widget-ads.php'),(10326,'wp-content/themes/Divi/includes/widgets/widget-adsense.php'),(10327,'wp-content/themes/Divi/includes/widgets.php'),(10328,'wp-content/themes/Divi/index.php'),(10329,'wp-content/themes/Divi/js/admin_post_settings.js'),(10330,'wp-content/themes/Divi/js/custom.js'),(10331,'wp-content/themes/Divi/js/custom.min.js'),(10332,'wp-content/themes/Divi/js/html5.js'),(10333,'wp-content/themes/Divi/js/menu_fix.js'),(10334,'wp-content/themes/Divi/js/smoothscroll.js'),(10335,'wp-content/themes/Divi/js/theme-customizer-controls.js'),(10336,'wp-content/themes/Divi/js/theme-customizer.js'),(10337,'wp-content/themes/Divi/options_divi.php'),(10338,'wp-content/themes/Divi/page-template-blank.php'),(10339,'wp-content/themes/Divi/page.php'),(10340,'wp-content/themes/Divi/post_thumbnails_divi.php'),(10341,'wp-content/themes/Divi/sidebar-footer.php'),(10342,'wp-content/themes/Divi/sidebar.php'),(10343,'wp-content/themes/Divi/single-et_pb_layout.php'),(10344,'wp-content/themes/Divi/single-project.php'),(10345,'wp-content/themes/Divi/single.php'),(10346,'wp-content/themes/avenue/404.php'),(10347,'wp-content/themes/avenue/LICENSE'),(10348,'wp-content/themes/avenue/README.txt'),(10349,'wp-content/themes/avenue/archive.php'),(10350,'wp-content/themes/avenue/comments.php'),(10351,'wp-content/themes/avenue/footer.php'),(10352,'wp-content/themes/avenue/front-page.php'),(10353,'wp-content/themes/avenue/functions.php'),(10354,'wp-content/themes/avenue/header.php'),(10355,'wp-content/themes/avenue/inc/avenue/avenue.php'),(10356,'wp-content/themes/avenue/inc/class-tgm.php'),(10357,'wp-content/themes/avenue/inc/css/animate.css'),(10358,'wp-content/themes/avenue/inc/css/avenue.css'),(10359,'wp-content/themes/avenue/inc/css/bootstrap.css'),(10360,'wp-content/themes/avenue/inc/css/bootstrap.min.css'),(10361,'wp-content/themes/avenue/inc/css/camera.css'),(10362,'wp-content/themes/avenue/inc/css/font-awesome.css'),(10363,'wp-content/themes/avenue/inc/css/font-awesome.min.css'),(10364,'wp-content/themes/avenue/inc/css/old_avenue.css'),(10365,'wp-content/themes/avenue/inc/customizer-panels/settings-appearance.php'),(10366,'wp-content/themes/avenue/inc/customizer-panels/settings-blog.php'),(10367,'wp-content/themes/avenue/inc/customizer-panels/settings-frontpage.php'),(10368,'wp-content/themes/avenue/inc/customizer-panels/settings-header-footer.php'),(10369,'wp-content/themes/avenue/inc/customizer-panels/settings-single.php'),(10370,'wp-content/themes/avenue/inc/customizer-panels/settings-slider.php'),(10371,'wp-content/themes/avenue/inc/customizer.php'),(10372,'wp-content/themes/avenue/inc/font-awesome.php'),(10373,'wp-content/themes/avenue/inc/fonts/fontawesome-webfont.ttf'),(10374,'wp-content/themes/avenue/inc/fonts/fontawesome-webfont.woff'),(10375,'wp-content/themes/avenue/inc/fonts/fontawesome-webfont.woff2'),(10376,'wp-content/themes/avenue/inc/images/avenue_demo.jpg'),(10377,'wp-content/themes/avenue/inc/images/camera-loader.gif'),(10378,'wp-content/themes/avenue/inc/images/camera_skins.png'),(10379,'wp-content/themes/avenue/inc/images/cat_logo_mini.png'),(10380,'wp-content/themes/avenue/inc/images/close-mobile.png'),(10381,'wp-content/themes/avenue/inc/js/avenue.js'),(10382,'wp-content/themes/avenue/inc/js/bigSlide.js'),(10383,'wp-content/themes/avenue/inc/js/bigSlide.min.js'),(10384,'wp-content/themes/avenue/inc/js/bootstrap.js'),(10385,'wp-content/themes/avenue/inc/js/bootstrap.min.js'),(10386,'wp-content/themes/avenue/inc/js/camera.js'),(10387,'wp-content/themes/avenue/inc/js/camera.min.js'),(10388,'wp-content/themes/avenue/inc/js/jquery.easing.1.3.js'),(10389,'wp-content/themes/avenue/inc/js/jquery.sticky.js'),(10390,'wp-content/themes/avenue/inc/js/wow.js'),(10391,'wp-content/themes/avenue/inc/js/wow.min.js'),(10392,'wp-content/themes/avenue/inc/template-functions.php'),(10393,'wp-content/themes/avenue/inc/template-tags.php'),(10394,'wp-content/themes/avenue/inc/tgm.php'),(10395,'wp-content/themes/avenue/index.php'),(10396,'wp-content/themes/avenue/js/customizer.js'),(10397,'wp-content/themes/avenue/js/navigation.js'),(10398,'wp-content/themes/avenue/js/skip-link-focus-fix.js'),(10399,'wp-content/themes/avenue/languages/avenue.pot'),(10400,'wp-content/themes/avenue/languages/readme.txt'),(10401,'wp-content/themes/avenue/layouts/content-sidebar.css'),(10402,'wp-content/themes/avenue/layouts/sidebar-content.css'),(10403,'wp-content/themes/avenue/page.php'),(10404,'wp-content/themes/avenue/screenshot.jpg'),(10405,'wp-content/themes/avenue/search.php'),(10406,'wp-content/themes/avenue/sidebar-left.php'),(10407,'wp-content/themes/avenue/sidebar.php'),(10408,'wp-content/themes/avenue/single.php'),(10409,'wp-content/themes/avenue/smartcat-modules/views/CTA_Widget_View.php'),(10410,'wp-content/themes/avenue/smartcat-modules/views/Contact_Form_Widget_View.php'),(10411,'wp-content/themes/avenue/smartcat-modules/views/Contact_Info_Widget_View.php'),(10412,'wp-content/themes/avenue/smartcat-modules/views/Events_Widget_View.php'),(10413,'wp-content/themes/avenue/smartcat-modules/views/FAQs_Widget_View.php'),(10414,'wp-content/themes/avenue/smartcat-modules/views/Gallery_Widget_View.php'),(10415,'wp-content/themes/avenue/smartcat-modules/views/News_Widget_View.php'),(10416,'wp-content/themes/avenue/smartcat-modules/views/Pricing_Table_Widget_View.php'),(10417,'wp-content/themes/avenue/smartcat-modules/views/Testimonials_Widget_View.php'),(10418,'wp-content/themes/avenue/style.css'),(10419,'wp-content/themes/avenue/template-parts/content-home.php'),(10420,'wp-content/themes/avenue/template-parts/content-none.php'),(10421,'wp-content/themes/avenue/template-parts/content-page.php'),(10422,'wp-content/themes/avenue/template-parts/content-posts-alt.php'),(10423,'wp-content/themes/avenue/template-parts/content-posts.php'),(10424,'wp-content/themes/avenue/template-parts/content-search.php'),(10425,'wp-content/themes/avenue/template-parts/content-single-alt.php'),(10426,'wp-content/themes/avenue/template-parts/content-single.php'),(10427,'wp-content/themes/avenue/template-parts/content.php'),(10428,'wp-content/themes/avenue/template-parts/layout-cta-trio.php'),(10429,'wp-content/themes/avenue/template-parts/layout-footer.php'),(10430,'wp-content/themes/avenue/template-parts/layout-homepage-areas.php'),(10431,'wp-content/themes/avenue/template-parts/layout-slider.php'),(10432,'wp-content/themes/avenue/template-parts/layout-toolbar.php'),(10433,'wp-content/themes/bg-photo-frame/404.php'),(10434,'wp-content/themes/bg-photo-frame/archive.php'),(10435,'wp-content/themes/bg-photo-frame/comments.php'),(10436,'wp-content/themes/bg-photo-frame/custom/css/bg-photo-frame-style-dark.css'),(10437,'wp-content/themes/bg-photo-frame/custom/css/bg-photo-frame-style-light.css'),(10438,'wp-content/themes/bg-photo-frame/custom/css/bg-photo-frame-style-sp.css'),(10439,'wp-content/themes/bg-photo-frame/custom/css/bg-photo-frame-style.css'),(10440,'wp-content/themes/bg-photo-frame/custom/css/bootstrap-theme.css'),(10441,'wp-content/themes/bg-photo-frame/custom/css/bootstrap.css'),(10442,'wp-content/themes/bg-photo-frame/custom/css/bootstrap.min.css'),(10443,'wp-content/themes/bg-photo-frame/custom/css/jquery.bgPhotoFrame.css'),(10444,'wp-content/themes/bg-photo-frame/custom/css/jquery.bgPhotoFrame.min.css'),(10445,'wp-content/themes/bg-photo-frame/custom/fonts/glyphicons-halflings-regular.eot'),(10446,'wp-content/themes/bg-photo-frame/custom/fonts/glyphicons-halflings-regular.svg'),(10447,'wp-content/themes/bg-photo-frame/custom/fonts/glyphicons-halflings-regular.ttf'),(10448,'wp-content/themes/bg-photo-frame/custom/fonts/glyphicons-halflings-regular.woff'),(10449,'wp-content/themes/bg-photo-frame/custom/fonts/glyphicons-halflings-regular.woff2'),(10450,'wp-content/themes/bg-photo-frame/custom/img/bg-default-dark-0.jpg'),(10451,'wp-content/themes/bg-photo-frame/custom/img/bg-default-dark-1.jpg'),(10452,'wp-content/themes/bg-photo-frame/custom/img/bg-default-dark-2.jpg'),(10453,'wp-content/themes/bg-photo-frame/custom/img/bg-default-light-0.jpg'),(10454,'wp-content/themes/bg-photo-frame/custom/img/bg-default-light-1.jpg'),(10455,'wp-content/themes/bg-photo-frame/custom/img/bg-default-light-2.jpg'),(10456,'wp-content/themes/bg-photo-frame/custom/js/bg-photo-frame-master.js'),(10457,'wp-content/themes/bg-photo-frame/custom/js/jquery.bgPhotoFrame.js'),(10458,'wp-content/themes/bg-photo-frame/custom/js/jquery.bgPhotoFrame.min.js'),(10459,'wp-content/themes/bg-photo-frame/custom/php/bg-photo-frame-functions.php'),(10460,'wp-content/themes/bg-photo-frame/footer.php'),(10461,'wp-content/themes/bg-photo-frame/functions.php'),(10462,'wp-content/themes/bg-photo-frame/header.php'),(10463,'wp-content/themes/bg-photo-frame/inc/custom-header.php'),(10464,'wp-content/themes/bg-photo-frame/inc/customizer.php'),(10465,'wp-content/themes/bg-photo-frame/inc/extras.php'),(10466,'wp-content/themes/bg-photo-frame/inc/jetpack.php'),(10467,'wp-content/themes/bg-photo-frame/inc/template-tags.php'),(10468,'wp-content/themes/bg-photo-frame/index.php'),(10469,'wp-content/themes/bg-photo-frame/js/customizer.js'),(10470,'wp-content/themes/bg-photo-frame/js/navigation.js'),(10471,'wp-content/themes/bg-photo-frame/js/skip-link-focus-fix.js'),(10472,'wp-content/themes/bg-photo-frame/languages/bg-photo-frame.mo'),(10473,'wp-content/themes/bg-photo-frame/languages/bg-photo-frame.pot'),(10474,'wp-content/themes/bg-photo-frame/languages/ja.mo'),(10475,'wp-content/themes/bg-photo-frame/languages/ja.po'),(10476,'wp-content/themes/bg-photo-frame/languages/readme.txt'),(10477,'wp-content/themes/bg-photo-frame/layouts/content-sidebar.css'),(10478,'wp-content/themes/bg-photo-frame/layouts/sidebar-content.css'),(10479,'wp-content/themes/bg-photo-frame/page.php'),(10480,'wp-content/themes/bg-photo-frame/readme.txt'),(10481,'wp-content/themes/bg-photo-frame/rtl.css'),(10482,'wp-content/themes/bg-photo-frame/screenshot.png'),(10483,'wp-content/themes/bg-photo-frame/search.php'),(10484,'wp-content/themes/bg-photo-frame/sidebar.php'),(10485,'wp-content/themes/bg-photo-frame/single.php'),(10486,'wp-content/themes/bg-photo-frame/style.css'),(10487,'wp-content/themes/bg-photo-frame/template-parts/content-none.php'),(10488,'wp-content/themes/bg-photo-frame/template-parts/content-page.php'),(10489,'wp-content/themes/bg-photo-frame/template-parts/content-search.php'),(10490,'wp-content/themes/bg-photo-frame/template-parts/content-single.php'),(10491,'wp-content/themes/bg-photo-frame/template-parts/content.php'),(10492,'wp-content/themes/bizworx-pro/404.php'),(10493,'wp-content/themes/bizworx-pro/archive.php'),(10494,'wp-content/themes/bizworx-pro/comments.php'),(10495,'wp-content/themes/bizworx-pro/content-classic-alt.php'),(10496,'wp-content/themes/bizworx-pro/content-front-page.php'),(10497,'wp-content/themes/bizworx-pro/content-none.php'),(10498,'wp-content/themes/bizworx-pro/content-page.php'),(10499,'wp-content/themes/bizworx-pro/content-single.php'),(10500,'wp-content/themes/bizworx-pro/content.php'),(10501,'wp-content/themes/bizworx-pro/demo-content/demo-content-setup.php'),(10502,'wp-content/themes/bizworx-pro/fonts/fontawesome-webfont.svg'),(10503,'wp-content/themes/bizworx-pro/footer.php'),(10504,'wp-content/themes/bizworx-pro/functions.php'),(10505,'wp-content/themes/bizworx-pro/header.php'),(10506,'wp-content/themes/bizworx-pro/home.php'),(10507,'wp-content/themes/bizworx-pro/inc/carousel.php'),(10508,'wp-content/themes/bizworx-pro/inc/custom-header.php'),(10509,'wp-content/themes/bizworx-pro/inc/customizer.php'),(10510,'wp-content/themes/bizworx-pro/inc/styles.php'),(10511,'wp-content/themes/bizworx-pro/inc/woocommerce.php'),(10512,'wp-content/themes/bizworx-pro/index.php'),(10513,'wp-content/themes/bizworx-pro/js/_-owl.carousel.min.js'),(10514,'wp-content/themes/bizworx-pro/js/jquery.min.js'),(10515,'wp-content/themes/bizworx-pro/js/main.js'),(10516,'wp-content/themes/bizworx-pro/js/owl.carousel.js'),(10517,'wp-content/themes/bizworx-pro/js/owl.carousel.min.js'),(10518,'wp-content/themes/bizworx-pro/page.php'),(10519,'wp-content/themes/bizworx-pro/recommend/class-tgm-plugin-activation.php'),(10520,'wp-content/themes/bizworx-pro/search.php'),(10521,'wp-content/themes/bizworx-pro/searchform.php'),(10522,'wp-content/themes/bizworx-pro/sidebar-footer.php'),(10523,'wp-content/themes/bizworx-pro/sidebar.php'),(10524,'wp-content/themes/bizworx-pro/single.php'),(10525,'wp-content/themes/bizworx-pro/template-files/page_home.php'),(10526,'wp-content/themes/bizworx-pro/woocommerce/fonts/WooCommerce.svg'),(10527,'wp-content/themes/bizworx-pro/woocommerce/fonts/star.svg'),(10528,'wp-content/themes/bizworx-pro/woocommerce/single-product/_rating.php'),(10529,'wp-content/themes/bizworx-pro/woocommerce/single-product/add-to-cart/simple.php'),(10530,'wp-content/themes/business-center/404.php'),(10531,'wp-content/themes/business-center/archive.php'),(10532,'wp-content/themes/business-center/assets/css/blocks.css'),(10533,'wp-content/themes/business-center/assets/css/blocks.min.css'),(10534,'wp-content/themes/business-center/assets/css/editor-blocks.css'),(10535,'wp-content/themes/business-center/assets/css/editor-blocks.min.css'),(10536,'wp-content/themes/business-center/assets/css/editor-style.css'),(10537,'wp-content/themes/business-center/assets/css/editor-style.min.css'),(10538,'wp-content/themes/business-center/assets/js/custom.min.js'),(10539,'wp-content/themes/business-center/assets/js/customize-control.min.js'),(10540,'wp-content/themes/business-center/assets/js/customizer.min.js'),(10541,'wp-content/themes/business-center/assets/js/navigation.min.js'),(10542,'wp-content/themes/business-center/assets/js/skip-link-focus-fix.min.js'),(10543,'wp-content/themes/business-center/assets/js/unminified/custom.js'),(10544,'wp-content/themes/business-center/assets/js/unminified/customize-control.js'),(10545,'wp-content/themes/business-center/assets/js/unminified/customizer.js'),(10546,'wp-content/themes/business-center/assets/js/unminified/navigation.js'),(10547,'wp-content/themes/business-center/assets/js/unminified/skip-link-focus-fix.js'),(10548,'wp-content/themes/business-center/assets/js/unminified/upload.js'),(10549,'wp-content/themes/business-center/assets/js/upload.min.js'),(10550,'wp-content/themes/business-center/assets/plugins/css/font-awesome.min.css'),(10551,'wp-content/themes/business-center/assets/plugins/css/slick-theme.min.css'),(10552,'wp-content/themes/business-center/assets/plugins/css/slick.min.css'),(10553,'wp-content/themes/business-center/assets/plugins/css/unminified/font-awesome.css'),(10554,'wp-content/themes/business-center/assets/plugins/css/unminified/slick-theme.css'),(10555,'wp-content/themes/business-center/assets/plugins/css/unminified/slick.css'),(10556,'wp-content/themes/business-center/assets/plugins/fonts/ajax-loader.gif'),(10557,'wp-content/themes/business-center/assets/plugins/fonts/fontawesome-webfont.woff'),(10558,'wp-content/themes/business-center/assets/plugins/fonts/fontawesome-webfont.woff2'),(10559,'wp-content/themes/business-center/assets/plugins/fonts/slick.ttf'),(10560,'wp-content/themes/business-center/assets/plugins/fonts/slick.woff'),(10561,'wp-content/themes/business-center/assets/plugins/js/slick.min.js'),(10562,'wp-content/themes/business-center/assets/plugins/js/unminified/slick.js'),(10563,'wp-content/themes/business-center/assets/uploads/contact-us-bg.jpg'),(10564,'wp-content/themes/business-center/assets/uploads/header-image.jpg'),(10565,'wp-content/themes/business-center/assets/uploads/no-featured-image-1300x600.jpg'),(10566,'wp-content/themes/business-center/assets/uploads/search-loading.gif'),(10567,'wp-content/themes/business-center/assets/uploads/user.png'),(10568,'wp-content/themes/business-center/comments.php'),(10569,'wp-content/themes/business-center/footer.php'),(10570,'wp-content/themes/business-center/functions.php'),(10571,'wp-content/themes/business-center/header.php'),(10572,'wp-content/themes/business-center/inc/core.php'),(10573,'wp-content/themes/business-center/inc/custom-header.php'),(10574,'wp-content/themes/business-center/inc/customizer/active-callback.php'),(10575,'wp-content/themes/business-center/inc/customizer/custom-controls.php'),(10576,'wp-content/themes/business-center/inc/customizer/customizer.php'),(10577,'wp-content/themes/business-center/inc/customizer/defaults.php'),(10578,'wp-content/themes/business-center/inc/customizer/partial.php'),(10579,'wp-content/themes/business-center/inc/customizer/sanitize.php'),(10580,'wp-content/themes/business-center/inc/customizer/sections/call-to-action.php'),(10581,'wp-content/themes/business-center/inc/customizer/sections/contact.php'),(10582,'wp-content/themes/business-center/inc/customizer/sections/feature.php'),(10583,'wp-content/themes/business-center/inc/customizer/sections/front-page-blog.php'),(10584,'wp-content/themes/business-center/inc/customizer/sections/menu.php'),(10585,'wp-content/themes/business-center/inc/customizer/sections/service.php'),(10586,'wp-content/themes/business-center/inc/customizer/sections/slider.php'),(10587,'wp-content/themes/business-center/inc/customizer/sections/team.php'),(10588,'wp-content/themes/business-center/inc/customizer/sections/testimonial.php'),(10589,'wp-content/themes/business-center/inc/customizer/theme-options/blog-options.php'),(10590,'wp-content/themes/business-center/inc/customizer/theme-options/breadcrumb.php'),(10591,'wp-content/themes/business-center/inc/customizer/theme-options/excerpt.php'),(10592,'wp-content/themes/business-center/inc/customizer/theme-options/footer.php'),(10593,'wp-content/themes/business-center/inc/customizer/theme-options/homepage-static.php'),(10594,'wp-content/themes/business-center/inc/customizer/theme-options/loader.php'),(10595,'wp-content/themes/business-center/inc/customizer/theme-options/pagination.php'),(10596,'wp-content/themes/business-center/inc/customizer/theme-options/reset.php'),(10597,'wp-content/themes/business-center/inc/customizer/upgrade-to-pro/class-customize.php'),(10598,'wp-content/themes/business-center/inc/customizer/upgrade-to-pro/customize-controls.css'),(10599,'wp-content/themes/business-center/inc/customizer/upgrade-to-pro/customize-controls.js'),(10600,'wp-content/themes/business-center/inc/customizer/upgrade-to-pro/section-pro.php'),(10601,'wp-content/themes/business-center/inc/customizer/validation.php'),(10602,'wp-content/themes/business-center/inc/extras.php'),(10603,'wp-content/themes/business-center/inc/helpers.php'),(10604,'wp-content/themes/business-center/inc/jetpack.php'),(10605,'wp-content/themes/business-center/inc/metabox/header-image.php'),(10606,'wp-content/themes/business-center/inc/metabox/metabox.php'),(10607,'wp-content/themes/business-center/inc/modules/breadcrumb/breadcrumb-class.php'),(10608,'wp-content/themes/business-center/inc/modules/breadcrumb/breadcrumb.php'),(10609,'wp-content/themes/business-center/inc/modules/call-to-action.php'),(10610,'wp-content/themes/business-center/inc/modules/contact.php'),(10611,'wp-content/themes/business-center/inc/modules/feature.php'),(10612,'wp-content/themes/business-center/inc/modules/front-page-blog.php'),(10613,'wp-content/themes/business-center/inc/modules/menu.php'),(10614,'wp-content/themes/business-center/inc/modules/modules.php'),(10615,'wp-content/themes/business-center/inc/modules/service.php'),(10616,'wp-content/themes/business-center/inc/modules/slider.php'),(10617,'wp-content/themes/business-center/inc/modules/structure.php'),(10618,'wp-content/themes/business-center/inc/modules/team.php'),(10619,'wp-content/themes/business-center/inc/modules/testimonial.php'),(10620,'wp-content/themes/business-center/inc/options.php'),(10621,'wp-content/themes/business-center/inc/scripts.php'),(10622,'wp-content/themes/business-center/inc/template-tags.php'),(10623,'wp-content/themes/business-center/inc/tgm/class-tgm-plugin-activation.php'),(10624,'wp-content/themes/business-center/inc/tgm/tgm-hook.php'),(10625,'wp-content/themes/business-center/inc/widgets/featured-image.php'),(10626,'wp-content/themes/business-center/inc/widgets/widgets.php'),(10627,'wp-content/themes/business-center/inc/woocommerce.php'),(10628,'wp-content/themes/business-center/index.php'),(10629,'wp-content/themes/business-center/languages/business-center.pot'),(10630,'wp-content/themes/business-center/page.php'),(10631,'wp-content/themes/business-center/readme.txt'),(10632,'wp-content/themes/business-center/screenshot.png'),(10633,'wp-content/themes/business-center/search.php'),(10634,'wp-content/themes/business-center/sidebar.php'),(10635,'wp-content/themes/business-center/single.php'),(10636,'wp-content/themes/business-center/style.css'),(10637,'wp-content/themes/business-center/template-parts/content-none.php'),(10638,'wp-content/themes/business-center/template-parts/content-page.php'),(10639,'wp-content/themes/business-center/template-parts/content-search.php'),(10640,'wp-content/themes/business-center/template-parts/content-single.php'),(10641,'wp-content/themes/business-center/template-parts/content.php'),(10642,'wp-content/themes/chic-lifestyle/404.php'),(10643,'wp-content/themes/chic-lifestyle/archive.php'),(10644,'wp-content/themes/chic-lifestyle/comments.php'),(10645,'wp-content/themes/chic-lifestyle/css/animate.css'),(10646,'wp-content/themes/chic-lifestyle/css/bootstrap-rtl.css'),(10647,'wp-content/themes/chic-lifestyle/css/bootstrap.css'),(10648,'wp-content/themes/chic-lifestyle/css/dynamic.css'),(10649,'wp-content/themes/chic-lifestyle/css/font-awesome.css'),(10650,'wp-content/themes/chic-lifestyle/css/owl.carousel.css'),(10651,'wp-content/themes/chic-lifestyle/fonts/FontAwesome.otf'),(10652,'wp-content/themes/chic-lifestyle/fonts/fontawesome-webfont.eot'),(10653,'wp-content/themes/chic-lifestyle/fonts/fontawesome-webfont.svg'),(10654,'wp-content/themes/chic-lifestyle/fonts/fontawesome-webfont.ttf'),(10655,'wp-content/themes/chic-lifestyle/fonts/fontawesome-webfont.woff'),(10656,'wp-content/themes/chic-lifestyle/fonts/fontawesome-webfont.woff2'),(10657,'wp-content/themes/chic-lifestyle/fonts/glyphicons-halflings-regular.eot'),(10658,'wp-content/themes/chic-lifestyle/fonts/glyphicons-halflings-regular.svg'),(10659,'wp-content/themes/chic-lifestyle/fonts/glyphicons-halflings-regular.ttf'),(10660,'wp-content/themes/chic-lifestyle/fonts/glyphicons-halflings-regular.woff'),(10661,'wp-content/themes/chic-lifestyle/fonts/glyphicons-halflings-regular.woff2'),(10662,'wp-content/themes/chic-lifestyle/footer.php'),(10663,'wp-content/themes/chic-lifestyle/freemius/assets/css/admin/index.php'),(10664,'wp-content/themes/chic-lifestyle/freemius/assets/css/index.php'),(10665,'wp-content/themes/chic-lifestyle/freemius/assets/img/index.php'),(10666,'wp-content/themes/chic-lifestyle/freemius/assets/index.php'),(10667,'wp-content/themes/chic-lifestyle/freemius/assets/js/index.php'),(10668,'wp-content/themes/chic-lifestyle/freemius/assets/js/nojquery.ba-postmessage.js'),(10669,'wp-content/themes/chic-lifestyle/freemius/assets/js/nojquery.ba-postmessage.min.js'),(10670,'wp-content/themes/chic-lifestyle/freemius/assets/js/postmessage.js'),(10671,'wp-content/themes/chic-lifestyle/freemius/config.php'),(10672,'wp-content/themes/chic-lifestyle/freemius/includes/class-freemius-abstract.php'),(10673,'wp-content/themes/chic-lifestyle/freemius/includes/class-freemius.php'),(10674,'wp-content/themes/chic-lifestyle/freemius/includes/class-fs-admin-notices.php'),(10675,'wp-content/themes/chic-lifestyle/freemius/includes/class-fs-api.php'),(10676,'wp-content/themes/chic-lifestyle/freemius/includes/class-fs-logger.php'),(10677,'wp-content/themes/chic-lifestyle/freemius/includes/class-fs-options.php'),(10678,'wp-content/themes/chic-lifestyle/freemius/includes/class-fs-plugin-updater.php'),(10679,'wp-content/themes/chic-lifestyle/freemius/includes/class-fs-security.php'),(10680,'wp-content/themes/chic-lifestyle/freemius/includes/class-fs-storage.php'),(10681,'wp-content/themes/chic-lifestyle/freemius/includes/class-fs-user-lock.php'),(10682,'wp-content/themes/chic-lifestyle/freemius/includes/customizer/class-fs-customizer-support-section.php'),(10683,'wp-content/themes/chic-lifestyle/freemius/includes/customizer/class-fs-customizer-upsell-control.php'),(10684,'wp-content/themes/chic-lifestyle/freemius/includes/customizer/index.php'),(10685,'wp-content/themes/chic-lifestyle/freemius/includes/debug/class-fs-debug-bar-panel.php'),(10686,'wp-content/themes/chic-lifestyle/freemius/includes/debug/debug-bar-start.php'),(10687,'wp-content/themes/chic-lifestyle/freemius/includes/debug/index.php'),(10688,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-affiliate-terms.php'),(10689,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-affiliate.php'),(10690,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-billing.php'),(10691,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-entity.php'),(10692,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-payment.php'),(10693,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-plugin-info.php'),(10694,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-plugin-license.php'),(10695,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-plugin-plan.php'),(10696,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-plugin-tag.php'),(10697,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-plugin.php'),(10698,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-pricing.php'),(10699,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-scope-entity.php'),(10700,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-site.php'),(10701,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-subscription.php'),(10702,'wp-content/themes/chic-lifestyle/freemius/includes/entities/class-fs-user.php'),(10703,'wp-content/themes/chic-lifestyle/freemius/includes/entities/index.php'),(10704,'wp-content/themes/chic-lifestyle/freemius/includes/fs-core-functions.php'),(10705,'wp-content/themes/chic-lifestyle/freemius/includes/fs-essential-functions.php'),(10706,'wp-content/themes/chic-lifestyle/freemius/includes/fs-plugin-info-dialog.php'),(10707,'wp-content/themes/chic-lifestyle/freemius/includes/i18n.php'),(10708,'wp-content/themes/chic-lifestyle/freemius/includes/index.php'),(10709,'wp-content/themes/chic-lifestyle/freemius/includes/l10n.php'),(10710,'wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-admin-menu-manager.php'),(10711,'wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-admin-notice-manager.php'),(10712,'wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-cache-manager.php'),(10713,'wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-gdpr-manager.php'),(10714,'wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-key-value-storage.php'),(10715,'wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-license-manager.php'),(10716,'wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-option-manager.php'),(10717,'wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-plan-manager.php'),(10718,'wp-content/themes/chic-lifestyle/freemius/includes/managers/class-fs-plugin-manager.php'),(10719,'wp-content/themes/chic-lifestyle/freemius/includes/managers/index.php'),(10720,'wp-content/themes/chic-lifestyle/freemius/includes/sdk/Exceptions/ArgumentNotExistException.php'),(10721,'wp-content/themes/chic-lifestyle/freemius/includes/sdk/Exceptions/EmptyArgumentException.php'),(10722,'wp-content/themes/chic-lifestyle/freemius/includes/sdk/Exceptions/Exception.php'),(10723,'wp-content/themes/chic-lifestyle/freemius/includes/sdk/Exceptions/InvalidArgumentException.php'),(10724,'wp-content/themes/chic-lifestyle/freemius/includes/sdk/Exceptions/OAuthException.php'),(10725,'wp-content/themes/chic-lifestyle/freemius/includes/sdk/Exceptions/index.php'),(10726,'wp-content/themes/chic-lifestyle/freemius/includes/sdk/FreemiusBase.php'),(10727,'wp-content/themes/chic-lifestyle/freemius/includes/sdk/FreemiusWordPress.php'),(10728,'wp-content/themes/chic-lifestyle/freemius/includes/sdk/index.php'),(10729,'wp-content/themes/chic-lifestyle/freemius/includes/supplements/fs-essential-functions-1.1.7.1.php'),(10730,'wp-content/themes/chic-lifestyle/freemius/includes/supplements/fs-essential-functions-2.2.1.php'),(10731,'wp-content/themes/chic-lifestyle/freemius/includes/supplements/index.php'),(10732,'wp-content/themes/chic-lifestyle/freemius/index.php'),(10733,'wp-content/themes/chic-lifestyle/freemius/languages/index.php'),(10734,'wp-content/themes/chic-lifestyle/freemius/require.php'),(10735,'wp-content/themes/chic-lifestyle/freemius/start.php'),(10736,'wp-content/themes/chic-lifestyle/freemius/templates/account/billing.php'),(10737,'wp-content/themes/chic-lifestyle/freemius/templates/account/index.php'),(10738,'wp-content/themes/chic-lifestyle/freemius/templates/account/partials/activate-license-button.php'),(10739,'wp-content/themes/chic-lifestyle/freemius/templates/account/partials/addon.php'),(10740,'wp-content/themes/chic-lifestyle/freemius/templates/account/partials/deactivate-license-button.php'),(10741,'wp-content/themes/chic-lifestyle/freemius/templates/account/partials/index.php'),(10742,'wp-content/themes/chic-lifestyle/freemius/templates/account/partials/site.php'),(10743,'wp-content/themes/chic-lifestyle/freemius/templates/account/payments.php'),(10744,'wp-content/themes/chic-lifestyle/freemius/templates/account.php'),(10745,'wp-content/themes/chic-lifestyle/freemius/templates/add-ons.php'),(10746,'wp-content/themes/chic-lifestyle/freemius/templates/add-trial-to-pricing.php'),(10747,'wp-content/themes/chic-lifestyle/freemius/templates/admin-notice.php'),(10748,'wp-content/themes/chic-lifestyle/freemius/templates/ajax-loader.php'),(10749,'wp-content/themes/chic-lifestyle/freemius/templates/auto-installation.php'),(10750,'wp-content/themes/chic-lifestyle/freemius/templates/checkout.php'),(10751,'wp-content/themes/chic-lifestyle/freemius/templates/connect.php'),(10752,'wp-content/themes/chic-lifestyle/freemius/templates/contact.php'),(10753,'wp-content/themes/chic-lifestyle/freemius/templates/debug/api-calls.php'),(10754,'wp-content/themes/chic-lifestyle/freemius/templates/debug/index.php'),(10755,'wp-content/themes/chic-lifestyle/freemius/templates/debug/logger.php'),(10756,'wp-content/themes/chic-lifestyle/freemius/templates/debug/plugins-themes-sync.php'),(10757,'wp-content/themes/chic-lifestyle/freemius/templates/debug/scheduled-crons.php'),(10758,'wp-content/themes/chic-lifestyle/freemius/templates/debug.php'),(10759,'wp-content/themes/chic-lifestyle/freemius/templates/email.php'),(10760,'wp-content/themes/chic-lifestyle/freemius/templates/firewall-issues-js.php'),(10761,'wp-content/themes/chic-lifestyle/freemius/templates/forms/affiliation.php'),(10762,'wp-content/themes/chic-lifestyle/freemius/templates/forms/data-debug-mode.php'),(10763,'wp-content/themes/chic-lifestyle/freemius/templates/forms/deactivation/contact.php'),(10764,'wp-content/themes/chic-lifestyle/freemius/templates/forms/deactivation/form.php'),(10765,'wp-content/themes/chic-lifestyle/freemius/templates/forms/deactivation/index.php'),(10766,'wp-content/themes/chic-lifestyle/freemius/templates/forms/deactivation/retry-skip.php'),(10767,'wp-content/themes/chic-lifestyle/freemius/templates/forms/index.php'),(10768,'wp-content/themes/chic-lifestyle/freemius/templates/forms/license-activation.php'),(10769,'wp-content/themes/chic-lifestyle/freemius/templates/forms/optout.php'),(10770,'wp-content/themes/chic-lifestyle/freemius/templates/forms/premium-versions-upgrade-handler.php'),(10771,'wp-content/themes/chic-lifestyle/freemius/templates/forms/premium-versions-upgrade-metadata.php'),(10772,'wp-content/themes/chic-lifestyle/freemius/templates/forms/resend-key.php'),(10773,'wp-content/themes/chic-lifestyle/freemius/templates/forms/subscription-cancellation.php'),(10774,'wp-content/themes/chic-lifestyle/freemius/templates/forms/trial-start.php'),(10775,'wp-content/themes/chic-lifestyle/freemius/templates/forms/user-change.php'),(10776,'wp-content/themes/chic-lifestyle/freemius/templates/gdpr-optin-js.php'),(10777,'wp-content/themes/chic-lifestyle/freemius/templates/index.php'),(10778,'wp-content/themes/chic-lifestyle/freemius/templates/js/index.php'),(10779,'wp-content/themes/chic-lifestyle/freemius/templates/js/jquery.content-change.php'),(10780,'wp-content/themes/chic-lifestyle/freemius/templates/js/open-license-activation.php'),(10781,'wp-content/themes/chic-lifestyle/freemius/templates/js/style-premium-theme.php'),(10782,'wp-content/themes/chic-lifestyle/freemius/templates/partials/network-activation.php'),(10783,'wp-content/themes/chic-lifestyle/freemius/templates/plugin-icon.php'),(10784,'wp-content/themes/chic-lifestyle/freemius/templates/plugin-info/description.php'),(10785,'wp-content/themes/chic-lifestyle/freemius/templates/plugin-info/features.php'),(10786,'wp-content/themes/chic-lifestyle/freemius/templates/plugin-info/index.php'),(10787,'wp-content/themes/chic-lifestyle/freemius/templates/plugin-info/screenshots.php'),(10788,'wp-content/themes/chic-lifestyle/freemius/templates/powered-by.php'),(10789,'wp-content/themes/chic-lifestyle/freemius/templates/pricing.php'),(10790,'wp-content/themes/chic-lifestyle/freemius/templates/secure-https-header.php'),(10791,'wp-content/themes/chic-lifestyle/freemius/templates/sticky-admin-notice-js.php'),(10792,'wp-content/themes/chic-lifestyle/freemius/templates/tabs-capture-js.php'),(10793,'wp-content/themes/chic-lifestyle/freemius/templates/tabs.php'),(10794,'wp-content/themes/chic-lifestyle/front-page.php'),(10795,'wp-content/themes/chic-lifestyle/fullwidth.php'),(10796,'wp-content/themes/chic-lifestyle/functions.php'),(10797,'wp-content/themes/chic-lifestyle/header.php'),(10798,'wp-content/themes/chic-lifestyle/images/arrow.png'),(10799,'wp-content/themes/chic-lifestyle/images/header-layouts/one.jpg'),(10800,'wp-content/themes/chic-lifestyle/images/header-layouts/three.jpg'),(10801,'wp-content/themes/chic-lifestyle/images/header-layouts/two.jpg'),(10802,'wp-content/themes/chic-lifestyle/images/left.png'),(10803,'wp-content/themes/chic-lifestyle/images/no-image.jpg'),(10804,'wp-content/themes/chic-lifestyle/images/right.png'),(10805,'wp-content/themes/chic-lifestyle/images/search.png'),(10806,'wp-content/themes/chic-lifestyle/images/slider-layouts/one.jpg'),(10807,'wp-content/themes/chic-lifestyle/images/slider-layouts/three.jpg'),(10808,'wp-content/themes/chic-lifestyle/images/slider-layouts/two.jpg'),(10809,'wp-content/themes/chic-lifestyle/inc/about/about.css'),(10810,'wp-content/themes/chic-lifestyle/inc/about/about.php'),(10811,'wp-content/themes/chic-lifestyle/inc/about/images/bootstrap.png'),(10812,'wp-content/themes/chic-lifestyle/inc/class.php'),(10813,'wp-content/themes/chic-lifestyle/inc/custom-header.php'),(10814,'wp-content/themes/chic-lifestyle/inc/customizer/custom-controls.php'),(10815,'wp-content/themes/chic-lifestyle/inc/customizer/customizer.php'),(10816,'wp-content/themes/chic-lifestyle/inc/customizer/panels/colors-fonts-panel.php'),(10817,'wp-content/themes/chic-lifestyle/inc/customizer/panels/homepage-panel.php'),(10818,'wp-content/themes/chic-lifestyle/inc/customizer/sanitization-functions.php'),(10819,'wp-content/themes/chic-lifestyle/inc/customizer/sections/colors-fonts.php'),(10820,'wp-content/themes/chic-lifestyle/inc/customizer/sections/footer-section.php'),(10821,'wp-content/themes/chic-lifestyle/inc/customizer/sections/header-layout.php'),(10822,'wp-content/themes/chic-lifestyle/inc/customizer/sections/homepage-sections/archive-section.php'),(10823,'wp-content/themes/chic-lifestyle/inc/customizer/sections/homepage-sections/instagram-section.php'),(10824,'wp-content/themes/chic-lifestyle/inc/customizer/sections/homepage-sections/pages-select-section.php'),(10825,'wp-content/themes/chic-lifestyle/inc/customizer/sections/homepage-sections/slider-section.php'),(10826,'wp-content/themes/chic-lifestyle/inc/customizer/sections/post-options-section.php'),(10827,'wp-content/themes/chic-lifestyle/inc/customizer/sections/social-media.php'),(10828,'wp-content/themes/chic-lifestyle/inc/customizer/sections/sort-homepage-section.php'),(10829,'wp-content/themes/chic-lifestyle/inc/demo/class-demo.php'),(10830,'wp-content/themes/chic-lifestyle/inc/demo/demo.php'),(10831,'wp-content/themes/chic-lifestyle/inc/demo-content.php'),(10832,'wp-content/themes/chic-lifestyle/inc/dynamic-css.php'),(10833,'wp-content/themes/chic-lifestyle/inc/extras.php'),(10834,'wp-content/themes/chic-lifestyle/inc/getting-started.php'),(10835,'wp-content/themes/chic-lifestyle/inc/google-fonts.php'),(10836,'wp-content/themes/chic-lifestyle/inc/jetpack.php'),(10837,'wp-content/themes/chic-lifestyle/inc/kirki/LICENSE'),(10838,'wp-content/themes/chic-lifestyle/inc/kirki/assets/css/customizer-dynamic-css-colors.php'),(10839,'wp-content/themes/chic-lifestyle/inc/kirki/assets/css/customizer-dynamic-css-width.php'),(10840,'wp-content/themes/chic-lifestyle/inc/kirki/assets/css/customizer-dynamic-css.php'),(10841,'wp-content/themes/chic-lifestyle/inc/kirki/assets/css/customizer.css'),(10842,'wp-content/themes/chic-lifestyle/inc/kirki/assets/css/customizer.css.map'),(10843,'wp-content/themes/chic-lifestyle/inc/kirki/assets/css/hint.css'),(10844,'wp-content/themes/chic-lifestyle/inc/kirki/assets/css/kirki-styles.css'),(10845,'wp-content/themes/chic-lifestyle/inc/kirki/assets/css/select2.min.css'),(10846,'wp-content/themes/chic-lifestyle/inc/kirki/assets/css/transparency-grid.png'),(10847,'wp-content/themes/chic-lifestyle/inc/kirki/assets/images/1c.png'),(10848,'wp-content/themes/chic-lifestyle/inc/kirki/assets/images/2cl.png'),(10849,'wp-content/themes/chic-lifestyle/inc/kirki/assets/images/2cr.png'),(10850,'wp-content/themes/chic-lifestyle/inc/kirki/assets/images/3cl.png'),(10851,'wp-content/themes/chic-lifestyle/inc/kirki/assets/images/3cm.png'),(10852,'wp-content/themes/chic-lifestyle/inc/kirki/assets/images/3cr.png'),(10853,'wp-content/themes/chic-lifestyle/inc/kirki/assets/images/jquery.fs.stepper-arrows.png'),(10854,'wp-content/themes/chic-lifestyle/inc/kirki/assets/images/kirki-bottom.png'),(10855,'wp-content/themes/chic-lifestyle/inc/kirki/assets/images/kirki-bottom.svg'),(10856,'wp-content/themes/chic-lifestyle/inc/kirki/assets/images/kirki-logo.svg'),(10857,'wp-content/themes/chic-lifestyle/inc/kirki/assets/images/kirki-toolkit.png'),(10858,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/branding.js'),(10859,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/checkbox.js'),(10860,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/code.js'),(10861,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/color-palette.js'),(10862,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/color.js'),(10863,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/custom.js'),(10864,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/dashicons.js'),(10865,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/date.js'),(10866,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/dimension.js'),(10867,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/dropdown-pages.js'),(10868,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/editor.js'),(10869,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/generic.js'),(10870,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/multicheck.js'),(10871,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/multicolor.js'),(10872,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/number.js'),(10873,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/palette.js'),(10874,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/preset.js'),(10875,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/radio-buttonset.js'),(10876,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/radio-image.js'),(10877,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/radio.js'),(10878,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/repeater.js'),(10879,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/select.js'),(10880,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/slider.js'),(10881,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/sortable.js'),(10882,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/spacing.js'),(10883,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/switch.js'),(10884,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/toggle.js'),(10885,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/controls/typography.js'),(10886,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/functions/set-setting-value.js'),(10887,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/functions/validate-css-value.js'),(10888,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/l10n.js'),(10889,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/postmessage.js'),(10890,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/reset.js'),(10891,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/tooltip.js'),(10892,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/AUTHORS'),(10893,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/LICENSE'),(10894,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/README.md'),(10895,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/comment/comment.js'),(10896,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/comment/continuecomment.js'),(10897,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/dialog/dialog.css'),(10898,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/dialog/dialog.js'),(10899,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/display/autorefresh.js'),(10900,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/display/fullscreen.css'),(10901,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/display/fullscreen.js'),(10902,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/display/panel.js'),(10903,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/display/placeholder.js'),(10904,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/display/rulers.js'),(10905,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/edit/closebrackets.js'),(10906,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/edit/closetag.js'),(10907,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/edit/continuelist.js'),(10908,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/edit/matchbrackets.js'),(10909,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/edit/matchtags.js'),(10910,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/edit/trailingspace.js'),(10911,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/brace-fold.js'),(10912,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/comment-fold.js'),(10913,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/foldcode.js'),(10914,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/foldgutter.css'),(10915,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/foldgutter.js'),(10916,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/indent-fold.js'),(10917,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/markdown-fold.js'),(10918,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/fold/xml-fold.js'),(10919,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/anyword-hint.js'),(10920,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/css-hint.js'),(10921,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/html-hint.js'),(10922,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/javascript-hint.js'),(10923,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/show-hint.css'),(10924,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/show-hint.js'),(10925,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/sql-hint.js'),(10926,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/hint/xml-hint.js'),(10927,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/coffeescript-lint.js'),(10928,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/css-lint.js'),(10929,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/html-lint.js'),(10930,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/javascript-lint.js'),(10931,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/json-lint.js'),(10932,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/lint.css'),(10933,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/lint.js'),(10934,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/lint/yaml-lint.js'),(10935,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/merge/merge.css'),(10936,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/merge/merge.js'),(10937,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/mode/loadmode.js'),(10938,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/mode/multiplex.js'),(10939,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/mode/multiplex_test.js'),(10940,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/mode/overlay.js'),(10941,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/mode/simple.js'),(10942,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/runmode/colorize.js'),(10943,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/runmode/runmode-standalone.js'),(10944,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/runmode/runmode.js'),(10945,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/runmode/runmode.node.js'),(10946,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/scroll/annotatescrollbar.js'),(10947,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/scroll/scrollpastend.js'),(10948,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/scroll/simplescrollbars.css'),(10949,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/scroll/simplescrollbars.js'),(10950,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/search/match-highlighter.js'),(10951,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/search/matchesonscrollbar.css'),(10952,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/search/matchesonscrollbar.js'),(10953,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/search/search.js'),(10954,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/search/searchcursor.js'),(10955,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/selection/active-line.js'),(10956,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/selection/mark-selection.js'),(10957,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/selection/selection-pointer.js'),(10958,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/tern/tern.css'),(10959,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/tern/tern.js'),(10960,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/tern/worker.js'),(10961,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/addon/wrap/hardwrap.js'),(10962,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/bin/authors.sh'),(10963,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/bin/compress'),(10964,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/bin/lint'),(10965,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/bin/release'),(10966,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/bin/source-highlight'),(10967,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/keymap/emacs.js'),(10968,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/keymap/sublime.js'),(10969,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/keymap/vim.js'),(10970,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/lib/codemirror.css'),(10971,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/lib/codemirror.js'),(10972,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/coffeescript/coffeescript.js'),(10973,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/coffeescript/index.html'),(10974,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/css.js'),(10975,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/gss.html'),(10976,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/gss_test.js'),(10977,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/index.html'),(10978,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/less.html'),(10979,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/less_test.js'),(10980,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/scss.html'),(10981,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/scss_test.js'),(10982,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/css/test.js'),(10983,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/haml/haml.js'),(10984,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/haml/index.html'),(10985,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/haml/test.js'),(10986,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/htmlembedded/htmlembedded.js'),(10987,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/htmlembedded/index.html'),(10988,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/htmlmixed/htmlmixed.js'),(10989,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/htmlmixed/index.html'),(10990,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/index.html'),(10991,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/javascript/index.html'),(10992,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/javascript/javascript.js'),(10993,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/javascript/json-ld.html'),(10994,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/javascript/test.js'),(10995,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/javascript/typescript.html'),(10996,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/markdown/index.html'),(10997,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/markdown/markdown.js'),(10998,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/markdown/test.js'),(10999,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/meta.js'),(11000,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/php/index.html'),(11001,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/php/php.js'),(11002,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/php/test.js'),(11003,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/sass/index.html'),(11004,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/sass/sass.js'),(11005,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/smarty/index.html'),(11006,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/smarty/smarty.js'),(11007,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/sql/index.html'),(11008,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/sql/sql.js'),(11009,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/stylus/index.html'),(11010,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/stylus/stylus.js'),(11011,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/textile/index.html'),(11012,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/textile/test.js'),(11013,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/textile/textile.js'),(11014,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/twig/index.html'),(11015,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/twig/twig.js'),(11016,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/xml/index.html'),(11017,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/xml/test.js'),(11018,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/xml/xml.js'),(11019,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/yaml/index.html'),(11020,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/mode/yaml/yaml.js'),(11021,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/theme/kirki-dark.css'),(11022,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/codemirror/theme/kirki-light.css'),(11023,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/selectize.js'),(11024,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/serialize.js'),(11025,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/tinymce.plugin.code.js'),(11026,'wp-content/themes/chic-lifestyle/inc/kirki/assets/js/vendor/wp-color-picker-alpha.js'),(11027,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/checkbox.scss'),(11028,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/code.scss'),(11029,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/color-palette.scss'),(11030,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/color.scss'),(11031,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/dashicons.scss'),(11032,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/date.scss'),(11033,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/dimension.scss'),(11034,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/editor.scss'),(11035,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/generic.scss'),(11036,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/multicheck.scss'),(11037,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/multicolor.scss'),(11038,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/number.scss'),(11039,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/palette.scss'),(11040,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/radio-buttonset.scss'),(11041,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/radio-image.scss'),(11042,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/radio.scss'),(11043,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/repeater.scss'),(11044,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/select.scss'),(11045,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/slider.scss'),(11046,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/sortable.scss'),(11047,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/spacing.scss'),(11048,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/switch.scss'),(11049,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/toggle.scss'),(11050,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/controls/typography.scss'),(11051,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/customizer.scss'),(11052,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/global.scss'),(11053,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/panels/expanded.scss'),(11054,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/sections/expanded.scss'),(11055,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/sections/hover.scss'),(11056,'wp-content/themes/chic-lifestyle/inc/kirki/assets/scss/tooltips.scss'),(11057,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ar.js'),(11058,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/az.js'),(11059,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/bg.js'),(11060,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ca.js'),(11061,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/cs.js'),(11062,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/da.js'),(11063,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/de.js'),(11064,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/el.js'),(11065,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/en.js'),(11066,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/es.js'),(11067,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/et.js'),(11068,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/eu.js'),(11069,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/fa.js'),(11070,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/fi.js'),(11071,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/fr.js'),(11072,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/gl.js'),(11073,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/he.js'),(11074,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/hi.js'),(11075,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/hr.js'),(11076,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/hu.js'),(11077,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/hy.js'),(11078,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/id.js'),(11079,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/is.js'),(11080,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/it.js'),(11081,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ja.js'),(11082,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/km.js'),(11083,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ko.js'),(11084,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/lt.js'),(11085,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/lv.js'),(11086,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/mk.js'),(11087,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ms.js'),(11088,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/nb.js'),(11089,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/nl.js'),(11090,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/pl.js'),(11091,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/pt-BR.js'),(11092,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/pt.js'),(11093,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ro.js'),(11094,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/ru.js'),(11095,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/sk.js'),(11096,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/sl.js'),(11097,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/sr-Cyrl.js'),(11098,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/sr.js'),(11099,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/sv.js'),(11100,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/th.js'),(11101,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/tr.js'),(11102,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/uk.js'),(11103,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/vi.js'),(11104,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/zh-CN.js'),(11105,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/i18n/zh-TW.js'),(11106,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/select2.full.js'),(11107,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/select2.full.min.js'),(11108,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/select2.js'),(11109,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/select2.min.js'),(11110,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/selectWoo.full.js'),(11111,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/selectWoo.full.min.js'),(11112,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/selectWoo.js'),(11113,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/selectWoo/js/selectWoo.min.js'),(11114,'wp-content/themes/chic-lifestyle/inc/kirki/assets/vendor/wp-color-picker-alpha/wp-color-picker-alpha.js'),(11115,'wp-content/themes/chic-lifestyle/inc/kirki/autoloader.php'),(11116,'wp-content/themes/chic-lifestyle/inc/kirki/class-kirki-autoload.php'),(11117,'wp-content/themes/chic-lifestyle/inc/kirki/controls/class-kirki-controls.php'),(11118,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/script.js'),(11119,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/script.min.js'),(11120,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/background.js'),(11121,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/color-palette.js'),(11122,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/dashicons.js'),(11123,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/date.js'),(11124,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/dimension.js'),(11125,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/dimensions.js'),(11126,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/dynamic-control.js'),(11127,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/editor.js'),(11128,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/kirki.control.js'),(11129,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/kirki.input.js'),(11130,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/kirki.js'),(11131,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/kirki.setting.js'),(11132,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/kirki.util.js'),(11133,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/multicheck.js'),(11134,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/multicolor.js'),(11135,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/palette.js'),(11136,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/radio-buttonset.js'),(11137,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/radio-image.js'),(11138,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/repeater.js'),(11139,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/set-setting-value.js'),(11140,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/slider.js'),(11141,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/sortable.js'),(11142,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/switch.js'),(11143,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/toggle.js'),(11144,'wp-content/themes/chic-lifestyle/inc/kirki/controls/js/src/typography.js'),(11145,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-background.php'),(11146,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-base.php'),(11147,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-checkbox.php'),(11148,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-code.php'),(11149,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-color-palette.php'),(11150,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-color.php'),(11151,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-cropped-image.php'),(11152,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-custom.php'),(11153,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-dashicons.php'),(11154,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-date.php'),(11155,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-dimension.php'),(11156,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-dimensions.php'),(11157,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-editor.php'),(11158,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-generic.php'),(11159,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-image.php'),(11160,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-multicheck.php'),(11161,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-multicolor.php'),(11162,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-number.php'),(11163,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-palette.php'),(11164,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-radio-buttonset.php'),(11165,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-radio-image.php'),(11166,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-radio.php'),(11167,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-repeater.php'),(11168,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-select.php'),(11169,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-slider.php'),(11170,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-sortable.php'),(11171,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-switch.php'),(11172,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-toggle.php'),(11173,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-typography.php'),(11174,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-control-upload.php'),(11175,'wp-content/themes/chic-lifestyle/inc/kirki/controls/php/class-kirki-settings-repeater-setting.php'),(11176,'wp-content/themes/chic-lifestyle/inc/kirki/controls/views/code.php'),(11177,'wp-content/themes/chic-lifestyle/inc/kirki/controls/views/color.php'),(11178,'wp-content/themes/chic-lifestyle/inc/kirki/controls/views/generic.php'),(11179,'wp-content/themes/chic-lifestyle/inc/kirki/controls/views/image.php'),(11180,'wp-content/themes/chic-lifestyle/inc/kirki/controls/views/number.php'),(11181,'wp-content/themes/chic-lifestyle/inc/kirki/controls/views/radio.php'),(11182,'wp-content/themes/chic-lifestyle/inc/kirki/controls/views/select.php'),(11183,'wp-content/themes/chic-lifestyle/inc/kirki/controls/views/textarea.php'),(11184,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-config.php'),(11185,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-control.php'),(11186,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-field.php'),(11187,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-helper.php'),(11188,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-init.php'),(11189,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-l10n.php'),(11190,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-modules.php'),(11191,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-panel.php'),(11192,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-sanitize-values.php'),(11193,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-section.php'),(11194,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-sections.php'),(11195,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-setting-site-option.php'),(11196,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-setting-user-meta.php'),(11197,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-settings.php'),(11198,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-toolkit.php'),(11199,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-util.php'),(11200,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki-values.php'),(11201,'wp-content/themes/chic-lifestyle/inc/kirki/core/class-kirki.php'),(11202,'wp-content/themes/chic-lifestyle/inc/kirki/deprecated/classes.php'),(11203,'wp-content/themes/chic-lifestyle/inc/kirki/deprecated/deprecated.php'),(11204,'wp-content/themes/chic-lifestyle/inc/kirki/deprecated/filters.php'),(11205,'wp-content/themes/chic-lifestyle/inc/kirki/deprecated/functions.php'),(11206,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-background.php'),(11207,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-checkbox.php'),(11208,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-code.php'),(11209,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-color-alpha.php'),(11210,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-color-palette.php'),(11211,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-color.php'),(11212,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-custom.php'),(11213,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-dashicons.php'),(11214,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-date.php'),(11215,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-dimension.php'),(11216,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-dimensions.php'),(11217,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-dropdown-pages.php'),(11218,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-editor.php'),(11219,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-fontawesome.php'),(11220,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-generic.php'),(11221,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-group-title.php'),(11222,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-image.php'),(11223,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-kirki-generic.php'),(11224,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-link.php'),(11225,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-multicheck.php'),(11226,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-multicolor.php'),(11227,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-number.php'),(11228,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-palette.php'),(11229,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-preset.php'),(11230,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-radio-buttonset.php'),(11231,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-radio-image.php'),(11232,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-radio.php'),(11233,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-repeater.php'),(11234,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-select.php'),(11235,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-select2-multiple.php'),(11236,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-select2.php'),(11237,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-slider.php'),(11238,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-sortable.php'),(11239,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-spacing.php'),(11240,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-switch.php'),(11241,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-text.php'),(11242,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-textarea.php'),(11243,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-toggle.php'),(11244,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-typography.php'),(11245,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-upload.php'),(11246,'wp-content/themes/chic-lifestyle/inc/kirki/field/class-kirki-field-url.php'),(11247,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-active-callback.php'),(11248,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-config.php'),(11249,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-control.php'),(11250,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-customize-control.php'),(11251,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-enqueue.php'),(11252,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-explode-background-field.php'),(11253,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-field.php'),(11254,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-fonts-google.php'),(11255,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-fonts.php'),(11256,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-helper.php'),(11257,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-init.php'),(11258,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-l10n.php'),(11259,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-panel.php'),(11260,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-sanitize-values.php'),(11261,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-scripts-registry.php'),(11262,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-section.php'),(11263,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-selective-refresh.php'),(11264,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-settings.php'),(11265,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-toolkit.php'),(11266,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki-values.php'),(11267,'wp-content/themes/chic-lifestyle/inc/kirki/includes/class-kirki.php'),(11268,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-checkbox-control.php'),(11269,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-code-control.php'),(11270,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-color-control.php'),(11271,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-color-palette-control.php'),(11272,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-custom-control.php'),(11273,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-dashicons-control.php'),(11274,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-date-control.php'),(11275,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-dimension-control.php'),(11276,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-dropdown-pages-control.php'),(11277,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-editor-control.php'),(11278,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-generic-control.php'),(11279,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-multicheck-control.php'),(11280,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-multicolor-control.php'),(11281,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-number-control.php'),(11282,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-palette-control.php'),(11283,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-preset-control.php'),(11284,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-radio-buttonset-control.php'),(11285,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-radio-control.php'),(11286,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-radio-image-control.php'),(11287,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-repeater-control.php'),(11288,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-select-control.php'),(11289,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-slider-control.php'),(11290,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-sortable-control.php'),(11291,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-spacing-control.php'),(11292,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-switch-control.php'),(11293,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-toggle-control.php'),(11294,'wp-content/themes/chic-lifestyle/inc/kirki/includes/controls/class-kirki-controls-typography-control.php'),(11295,'wp-content/themes/chic-lifestyle/inc/kirki/includes/deprecated.php'),(11296,'wp-content/themes/chic-lifestyle/inc/kirki/includes/dynamic-css.php'),(11297,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-checkbox.php'),(11298,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-code.php'),(11299,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-color-alpha.php'),(11300,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-color-palette.php'),(11301,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-color.php'),(11302,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-custom.php'),(11303,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-dashicons.php'),(11304,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-date.php'),(11305,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-dimension.php'),(11306,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-dropdown-pages.php'),(11307,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-editor.php'),(11308,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-generic.php'),(11309,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-group-title.php'),(11310,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-image.php'),(11311,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-kirki-generic.php'),(11312,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-multicheck.php'),(11313,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-multicolor.php'),(11314,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-number.php'),(11315,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-palette.php'),(11316,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-preset.php'),(11317,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-radio-buttonset.php'),(11318,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-radio-image.php'),(11319,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-radio.php'),(11320,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-select.php'),(11321,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-select2-multiple.php'),(11322,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-select2.php'),(11323,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-slider.php'),(11324,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-sortable.php'),(11325,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-spacing.php'),(11326,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-switch.php'),(11327,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-text.php'),(11328,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-textarea.php'),(11329,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-toggle.php'),(11330,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-typography.php'),(11331,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-field-upload.php'),(11332,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-filed-link.php'),(11333,'wp-content/themes/chic-lifestyle/inc/kirki/includes/field/class-kirki-filed-url.php'),(11334,'wp-content/themes/chic-lifestyle/inc/kirki/includes/lib/class-aricolor.php'),(11335,'wp-content/themes/chic-lifestyle/inc/kirki/includes/lib/class-kirki-color.php'),(11336,'wp-content/themes/chic-lifestyle/inc/kirki/includes/output/class-kirki-output.php'),(11337,'wp-content/themes/chic-lifestyle/inc/kirki/includes/output/field/class-kirki-output-field-multicolor.php'),(11338,'wp-content/themes/chic-lifestyle/inc/kirki/includes/output/field/class-kirki-output-field-spacing.php'),(11339,'wp-content/themes/chic-lifestyle/inc/kirki/includes/output/field/class-kirki-output-field-typography.php'),(11340,'wp-content/themes/chic-lifestyle/inc/kirki/includes/output/property/class-kirki-output-property-background-image.php'),(11341,'wp-content/themes/chic-lifestyle/inc/kirki/includes/output/property/class-kirki-output-property-background-position.php'),(11342,'wp-content/themes/chic-lifestyle/inc/kirki/includes/output/property/class-kirki-output-property-font-family.php'),(11343,'wp-content/themes/chic-lifestyle/inc/kirki/includes/output/property/class-kirki-output-property.php'),(11344,'wp-content/themes/chic-lifestyle/inc/kirki/includes/panels/class-kirki-panels-default-panel.php'),(11345,'wp-content/themes/chic-lifestyle/inc/kirki/includes/panels/class-kirki-panels-expanded-panel.php'),(11346,'wp-content/themes/chic-lifestyle/inc/kirki/includes/scripts/class-kirki-scripts-icons.php'),(11347,'wp-content/themes/chic-lifestyle/inc/kirki/includes/scripts/class-kirki-scripts-loading.php'),(11348,'wp-content/themes/chic-lifestyle/inc/kirki/includes/scripts/class-kirki-scripts-tooltips.php'),(11349,'wp-content/themes/chic-lifestyle/inc/kirki/includes/sections/class-kirki-sections-default-section.php'),(11350,'wp-content/themes/chic-lifestyle/inc/kirki/includes/sections/class-kirki-sections-expanded-section.php'),(11351,'wp-content/themes/chic-lifestyle/inc/kirki/includes/sections/class-kirki-sections-hover-section.php'),(11352,'wp-content/themes/chic-lifestyle/inc/kirki/includes/settings/class-kirki-settings-default-setting.php'),(11353,'wp-content/themes/chic-lifestyle/inc/kirki/includes/settings/class-kirki-settings-repeater-setting.php'),(11354,'wp-content/themes/chic-lifestyle/inc/kirki/includes/styles/class-kirki-styles-customizer.php'),(11355,'wp-content/themes/chic-lifestyle/inc/kirki/includes/styles/class-kirki-styles-frontend.php'),(11356,'wp-content/themes/chic-lifestyle/inc/kirki/includes/styles/class-kirki-styles-output-css.php'),(11357,'wp-content/themes/chic-lifestyle/inc/kirki/includes/webfonts.php'),(11358,'wp-content/themes/chic-lifestyle/inc/kirki/kirki.php'),(11359,'wp-content/themes/chic-lifestyle/inc/kirki/lib/class-aricolor.php'),(11360,'wp-content/themes/chic-lifestyle/inc/kirki/lib/class-kirki-color.php'),(11361,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css/class-kirki-modules-css-generator.php'),(11362,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css/class-kirki-modules-css.php'),(11363,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css/class-kirki-output.php'),(11364,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css/field/class-kirki-output-field-background.php'),(11365,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css/field/class-kirki-output-field-dimensions.php'),(11366,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css/field/class-kirki-output-field-image.php'),(11367,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css/field/class-kirki-output-field-multicolor.php'),(11368,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css/field/class-kirki-output-field-typography.php'),(11369,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css/property/class-kirki-output-property-background-image.php'),(11370,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css/property/class-kirki-output-property-background-position.php'),(11371,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css/property/class-kirki-output-property-font-family.php'),(11372,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css/property/class-kirki-output-property.php'),(11373,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css-vars/class-kirki-modules-css-vars.php'),(11374,'wp-content/themes/chic-lifestyle/inc/kirki/modules/css-vars/script.js'),(11375,'wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/class-kirki-modules-custom-sections.php'),(11376,'wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/panels/class-kirki-panels-nested-panel.php'),(11377,'wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/sections/class-kirki-sections-default-section.php'),(11378,'wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/sections/class-kirki-sections-expanded-section.php'),(11379,'wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/sections/class-kirki-sections-link-section.php'),(11380,'wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/sections/class-kirki-sections-nested-section.php'),(11381,'wp-content/themes/chic-lifestyle/inc/kirki/modules/custom-sections/sections.js'),(11382,'wp-content/themes/chic-lifestyle/inc/kirki/modules/field-dependencies/class-kirki-modules-field-dependencies.php'),(11383,'wp-content/themes/chic-lifestyle/inc/kirki/modules/field-dependencies/field-dependencies.js'),(11384,'wp-content/themes/chic-lifestyle/inc/kirki/modules/gutenberg/class-kirki-modules-gutenberg.php'),(11385,'wp-content/themes/chic-lifestyle/inc/kirki/modules/icons/class-kirki-modules-icons.php'),(11386,'wp-content/themes/chic-lifestyle/inc/kirki/modules/icons/icons.js'),(11387,'wp-content/themes/chic-lifestyle/inc/kirki/modules/loading/class-kirki-modules-loading.php'),(11388,'wp-content/themes/chic-lifestyle/inc/kirki/modules/post-meta/class-kirki-modules-post-meta.php'),(11389,'wp-content/themes/chic-lifestyle/inc/kirki/modules/post-meta/customize-controls.js'),(11390,'wp-content/themes/chic-lifestyle/inc/kirki/modules/post-meta/customize-preview.js'),(11391,'wp-content/themes/chic-lifestyle/inc/kirki/modules/postmessage/class-kirki-modules-postmessage.php'),(11392,'wp-content/themes/chic-lifestyle/inc/kirki/modules/postmessage/postmessage.js'),(11393,'wp-content/themes/chic-lifestyle/inc/kirki/modules/preset/class-kirki-modules-preset.php'),(11394,'wp-content/themes/chic-lifestyle/inc/kirki/modules/preset/preset.js'),(11395,'wp-content/themes/chic-lifestyle/inc/kirki/modules/selective-refresh/class-kirki-modules-selective-refresh.php'),(11396,'wp-content/themes/chic-lifestyle/inc/kirki/modules/tooltips/class-kirki-modules-tooltips.php'),(11397,'wp-content/themes/chic-lifestyle/inc/kirki/modules/tooltips/tooltip.js'),(11398,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/class-kirki-modules-webfont-loader.php'),(11399,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/closure.js'),(11400,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/cssclassname.js'),(11401,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/domhelper.js'),(11402,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/eventdispatcher.js'),(11403,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/font.js'),(11404,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/fontmodule.js'),(11405,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/fontmoduleloader.js'),(11406,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/fontruler.js'),(11407,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/fontwatcher.js'),(11408,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/fontwatchrunner.js'),(11409,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/initialize.js'),(11410,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/nativefontwatchrunner.js'),(11411,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/stylesheetwaiter.js'),(11412,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/core/webfont.js'),(11413,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/custom.js'),(11414,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/fontdeck.js'),(11415,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/google/fontapiparser.js'),(11416,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/google/fontapiurlbuilder.js'),(11417,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/google/googlefontapi.js'),(11418,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/monotype.js'),(11419,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/src/modules/typekit.js'),(11420,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfont-loader/vendor-typekit/webfontloader.js'),(11421,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfonts/class-kirki-fonts-downloader.php'),(11422,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfonts/class-kirki-fonts-google.php'),(11423,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfonts/class-kirki-fonts.php'),(11424,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfonts/class-kirki-modules-webfonts-async.php'),(11425,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfonts/class-kirki-modules-webfonts-embed.php'),(11426,'wp-content/themes/chic-lifestyle/inc/kirki/modules/webfonts/class-kirki-modules-webfonts.php'),(11427,'wp-content/themes/chic-lifestyle/inc/kirki/readme.txt'),(11428,'wp-content/themes/chic-lifestyle/inc/kirki/upgrade-notifications.php'),(11429,'wp-content/themes/chic-lifestyle/inc/template-tags.php'),(11430,'wp-content/themes/chic-lifestyle/inc/tgmpa/class-tgm-plugin-activation.php'),(11431,'wp-content/themes/chic-lifestyle/inc/tgmpa/recommended-plugins.php'),(11432,'wp-content/themes/chic-lifestyle/inc/widgets/widgets.php'),(11433,'wp-content/themes/chic-lifestyle/inc/woocommerce-functions.php'),(11434,'wp-content/themes/chic-lifestyle/inc/wp_bootstrap_navwalker.php'),(11435,'wp-content/themes/chic-lifestyle/index.php'),(11436,'wp-content/themes/chic-lifestyle/js/bootstrap-rtl.js'),(11437,'wp-content/themes/chic-lifestyle/js/bootstrap.js'),(11438,'wp-content/themes/chic-lifestyle/js/customizer.js'),(11439,'wp-content/themes/chic-lifestyle/js/getting-started.js'),(11440,'wp-content/themes/chic-lifestyle/js/loadmore.js'),(11441,'wp-content/themes/chic-lifestyle/js/owl.carousel.js'),(11442,'wp-content/themes/chic-lifestyle/js/script.js'),(11443,'wp-content/themes/chic-lifestyle/js/wow.js'),(11444,'wp-content/themes/chic-lifestyle/languages/chic-lifestyle.pot'),(11445,'wp-content/themes/chic-lifestyle/layouts/header/header-layout-one.php'),(11446,'wp-content/themes/chic-lifestyle/layouts/header/header-layout-three.php'),(11447,'wp-content/themes/chic-lifestyle/layouts/header/header-layout-two.php'),(11448,'wp-content/themes/chic-lifestyle/layouts/header/header-layout.php'),(11449,'wp-content/themes/chic-lifestyle/layouts/slider/slider-layout-one.php'),(11450,'wp-content/themes/chic-lifestyle/layouts/slider/slider-layout-three.php'),(11451,'wp-content/themes/chic-lifestyle/layouts/slider/slider-layout-two.php'),(11452,'wp-content/themes/chic-lifestyle/layouts/slider/slider-layout.php'),(11453,'wp-content/themes/chic-lifestyle/no-featureimage.php'),(11454,'wp-content/themes/chic-lifestyle/page.php'),(11455,'wp-content/themes/chic-lifestyle/readme.txt'),(11456,'wp-content/themes/chic-lifestyle/screenshot.jpg'),(11457,'wp-content/themes/chic-lifestyle/search.php'),(11458,'wp-content/themes/chic-lifestyle/sidebar.php'),(11459,'wp-content/themes/chic-lifestyle/single-leftsidebar.php'),(11460,'wp-content/themes/chic-lifestyle/single.php'),(11461,'wp-content/themes/chic-lifestyle/style-rtl.css'),(11462,'wp-content/themes/chic-lifestyle/style.css'),(11463,'wp-content/themes/chic-lifestyle/template-home.php'),(11464,'wp-content/themes/chic-lifestyle/template-parts/content-blogs.php'),(11465,'wp-content/themes/chic-lifestyle/template-parts/content-none.php'),(11466,'wp-content/themes/chic-lifestyle/template-parts/content-page.php'),(11467,'wp-content/themes/chic-lifestyle/template-parts/content-search.php'),(11468,'wp-content/themes/chic-lifestyle/template-parts/content-single.php'),(11469,'wp-content/themes/chic-lifestyle/template-parts/content.php'),(11470,'wp-content/themes/chic-lifestyle/template-parts/home-sections/archive-section.php'),(11471,'wp-content/themes/chic-lifestyle/template-parts/home-sections/instagram-section.php'),(11472,'wp-content/themes/chic-lifestyle/template-parts/home-sections/newsletter-section.php'),(11473,'wp-content/themes/chic-lifestyle/template-parts/home-sections/pages-select-section.php'),(11474,'wp-content/themes/chic-lifestyle/template-parts/home-sections/slider-section.php'),(11475,'wp-content/themes/chic-lifestyle/trt-customize-pro/chic-lifestyle/class-customize.php'),(11476,'wp-content/themes/chic-lifestyle/trt-customize-pro/chic-lifestyle/customize-controls.js'),(11477,'wp-content/themes/chic-lifestyle/trt-customize-pro/chic-lifestyle/section-pro.php'),(11478,'wp-content/themes/city-store/404.php'),(11479,'wp-content/themes/city-store/assets/css/bootstrap.css'),(11480,'wp-content/themes/city-store/assets/css/bootstrap.min.css'),(11481,'wp-content/themes/city-store/assets/css/editor-style.css'),(11482,'wp-content/themes/city-store/assets/css/responsive.css'),(11483,'wp-content/themes/city-store/assets/css/slick.css'),(11484,'wp-content/themes/city-store/assets/font-awesome/css/font-awesome.css'),(11485,'wp-content/themes/city-store/assets/font-awesome/css/font-awesome.min.css'),(11486,'wp-content/themes/city-store/assets/font-awesome/fonts/FontAwesome.otf'),(11487,'wp-content/themes/city-store/assets/font-awesome/fonts/fontawesome-webfont.eot'),(11488,'wp-content/themes/city-store/assets/font-awesome/fonts/fontawesome-webfont.svg'),(11489,'wp-content/themes/city-store/assets/font-awesome/fonts/fontawesome-webfont.ttf'),(11490,'wp-content/themes/city-store/assets/font-awesome/fonts/fontawesome-webfont.woff'),(11491,'wp-content/themes/city-store/assets/font-awesome/fonts/fontawesome-webfont.woff2'),(11492,'wp-content/themes/city-store/assets/img/wparmy.png'),(11493,'wp-content/themes/city-store/assets/js/bootstrap.js'),(11494,'wp-content/themes/city-store/assets/js/bootstrap.min.js'),(11495,'wp-content/themes/city-store/assets/js/city-store-slider-setting.min.js'),(11496,'wp-content/themes/city-store/assets/js/city-store.js'),(11497,'wp-content/themes/city-store/assets/js/customize-preview.js'),(11498,'wp-content/themes/city-store/assets/js/html5.min.js'),(11499,'wp-content/themes/city-store/assets/js/jquery.cycle.all.min.js'),(11500,'wp-content/themes/city-store/assets/js/slick.js'),(11501,'wp-content/themes/city-store/assets/js/slick.min.js'),(11502,'wp-content/themes/city-store/assets/js/source/city-store-main.js'),(11503,'wp-content/themes/city-store/assets/js/source/city-store-slider-setting.js'),(11504,'wp-content/themes/city-store/assets/js/source/html5.js'),(11505,'wp-content/themes/city-store/assets/js/source/jquery.cycle.all.js'),(11506,'wp-content/themes/city-store/assets/sticky/jquery.sticky.js'),(11507,'wp-content/themes/city-store/assets/sticky/jquery.sticky.min.js'),(11508,'wp-content/themes/city-store/assets/sticky/sticky-settings.js'),(11509,'wp-content/themes/city-store/comments.php'),(11510,'wp-content/themes/city-store/footer.php'),(11511,'wp-content/themes/city-store/functions.php'),(11512,'wp-content/themes/city-store/header.php'),(11513,'wp-content/themes/city-store/inc/customizer/city-store-default-values.php'),(11514,'wp-content/themes/city-store/inc/customizer/css/customizer-control.css'),(11515,'wp-content/themes/city-store/inc/customizer/functions/class-pro-discount.php'),(11516,'wp-content/themes/city-store/inc/customizer/functions/contact-us-customizer.php'),(11517,'wp-content/themes/city-store/inc/customizer/functions/customizer-control.php'),(11518,'wp-content/themes/city-store/inc/customizer/functions/design-options.php'),(11519,'wp-content/themes/city-store/inc/customizer/functions/featured-content-customizer.php'),(11520,'wp-content/themes/city-store/inc/customizer/functions/register-panel.php'),(11521,'wp-content/themes/city-store/inc/customizer/functions/sanitize-functions.php'),(11522,'wp-content/themes/city-store/inc/customizer/functions/section-pro-discount.php'),(11523,'wp-content/themes/city-store/inc/customizer/functions/social-icons.php'),(11524,'wp-content/themes/city-store/inc/customizer/functions/theme-options.php'),(11525,'wp-content/themes/city-store/inc/footer-details.php'),(11526,'wp-content/themes/city-store/inc/jetpack.php'),(11527,'wp-content/themes/city-store/inc/js/mystic-customizer.css'),(11528,'wp-content/themes/city-store/inc/js/source/customizer-custom-scripts.js'),(11529,'wp-content/themes/city-store/inc/settings/city-store-common-functions.php'),(11530,'wp-content/themes/city-store/inc/settings/city-store-functions.php'),(11531,'wp-content/themes/city-store/inc/settings/city-store-tgmp.php'),(11532,'wp-content/themes/city-store/inc/widgets/widgets-functions/register-widgets.php'),(11533,'wp-content/themes/city-store/index.php'),(11534,'wp-content/themes/city-store/languages/city-store.pot'),(11535,'wp-content/themes/city-store/languages/fr_FR.mo'),(11536,'wp-content/themes/city-store/languages/fr_FR.po'),(11537,'wp-content/themes/city-store/page-templates/contact-template.php'),(11538,'wp-content/themes/city-store/page-templates/gallery-template.php'),(11539,'wp-content/themes/city-store/page-templates/home-template.php'),(11540,'wp-content/themes/city-store/page.php'),(11541,'wp-content/themes/city-store/pagination.php'),(11542,'wp-content/themes/city-store/plugin-activation.php'),(11543,'wp-content/themes/city-store/readme.txt'),(11544,'wp-content/themes/city-store/screenshot.png'),(11545,'wp-content/themes/city-store/search.php'),(11546,'wp-content/themes/city-store/searchform.php'),(11547,'wp-content/themes/city-store/sidebar.php'),(11548,'wp-content/themes/city-store/single.php'),(11549,'wp-content/themes/city-store/style.css'),(11550,'wp-content/themes/city-store/template-parts/content.php'),(11551,'wp-content/themes/city-store/woocommerce.php'),(11552,'wp-content/themes/curiosity-lite/admin/css/about-theme.css'),(11553,'wp-content/themes/curiosity-lite/admin/css/custom-editor-style.css'),(11554,'wp-content/themes/curiosity-lite/admin/css/customize.css'),(11555,'wp-content/themes/curiosity-lite/admin/css/edit.css'),(11556,'wp-content/themes/curiosity-lite/admin/js/post-format-options.js'),(11557,'wp-content/themes/curiosity-lite/archive.php'),(11558,'wp-content/themes/curiosity-lite/comments.php'),(11559,'wp-content/themes/curiosity-lite/content-audio.php'),(11560,'wp-content/themes/curiosity-lite/content-gallery.php'),(11561,'wp-content/themes/curiosity-lite/content-link.php'),(11562,'wp-content/themes/curiosity-lite/content-quote.php'),(11563,'wp-content/themes/curiosity-lite/content-video.php'),(11564,'wp-content/themes/curiosity-lite/content.php'),(11565,'wp-content/themes/curiosity-lite/css/bootstrap.css'),(11566,'wp-content/themes/curiosity-lite/css/bootstrap.min.css'),(11567,'wp-content/themes/curiosity-lite/css/default-styles.css'),(11568,'wp-content/themes/curiosity-lite/css/flexslider.css'),(11569,'wp-content/themes/curiosity-lite/css/font-awesome.css'),(11570,'wp-content/themes/curiosity-lite/css/font-awesome.min.css'),(11571,'wp-content/themes/curiosity-lite/css/owl-carousel.css'),(11572,'wp-content/themes/curiosity-lite/css/prettyPhoto.css'),(11573,'wp-content/themes/curiosity-lite/fonts/FontAwesome.otf'),(11574,'wp-content/themes/curiosity-lite/fonts/fontawesome-webfont.eot'),(11575,'wp-content/themes/curiosity-lite/fonts/fontawesome-webfont.svg'),(11576,'wp-content/themes/curiosity-lite/fonts/fontawesome-webfont.ttf'),(11577,'wp-content/themes/curiosity-lite/fonts/fontawesome-webfont.woff'),(11578,'wp-content/themes/curiosity-lite/fonts/fontawesome-webfont.woff2'),(11579,'wp-content/themes/curiosity-lite/footer.php'),(11580,'wp-content/themes/curiosity-lite/framework-customizations/theme/index.html'),(11581,'wp-content/themes/curiosity-lite/framework-customizations/theme/manifest.php'),(11582,'wp-content/themes/curiosity-lite/framework-customizations/theme/options/blog-settings.php'),(11583,'wp-content/themes/curiosity-lite/framework-customizations/theme/options/breadcrumbs-settings.php'),(11584,'wp-content/themes/curiosity-lite/framework-customizations/theme/options/customizer.php'),(11585,'wp-content/themes/curiosity-lite/framework-customizations/theme/options/footer-settings.php'),(11586,'wp-content/themes/curiosity-lite/framework-customizations/theme/options/general-settings.php'),(11587,'wp-content/themes/curiosity-lite/framework-customizations/theme/options/header-settings.php'),(11588,'wp-content/themes/curiosity-lite/framework-customizations/theme/options/index.html'),(11589,'wp-content/themes/curiosity-lite/framework-customizations/theme/options/posts/index.html'),(11590,'wp-content/themes/curiosity-lite/framework-customizations/theme/options/posts/page.php'),(11591,'wp-content/themes/curiosity-lite/framework-customizations/theme/options/posts/post.php'),(11592,'wp-content/themes/curiosity-lite/framework-customizations/theme/options/secondary-header-settings.php'),(11593,'wp-content/themes/curiosity-lite/framework-customizations/theme/options/sidebars-settings.php'),(11594,'wp-content/themes/curiosity-lite/framework-customizations/theme/options/social-settings.php'),(11595,'wp-content/themes/curiosity-lite/functions.php'),(11596,'wp-content/themes/curiosity-lite/header.php'),(11597,'wp-content/themes/curiosity-lite/images/1c.png'),(11598,'wp-content/themes/curiosity-lite/images/1col.png'),(11599,'wp-content/themes/curiosity-lite/images/2cl.png'),(11600,'wp-content/themes/curiosity-lite/images/2cr.png'),(11601,'wp-content/themes/curiosity-lite/images/bg-body-pattern.png'),(11602,'wp-content/themes/curiosity-lite/images/bottom.png'),(11603,'wp-content/themes/curiosity-lite/images/calendar.png'),(11604,'wp-content/themes/curiosity-lite/images/chosen-sprite.png'),(11605,'wp-content/themes/curiosity-lite/images/chosen-sprite@2x.png'),(11606,'wp-content/themes/curiosity-lite/images/content.png'),(11607,'wp-content/themes/curiosity-lite/images/help.png'),(11608,'wp-content/themes/curiosity-lite/images/icons/credit-cards/amex.png'),(11609,'wp-content/themes/curiosity-lite/images/icons/credit-cards/diners.png'),(11610,'wp-content/themes/curiosity-lite/images/icons/credit-cards/discover.png'),(11611,'wp-content/themes/curiosity-lite/images/icons/credit-cards/jcb.png'),(11612,'wp-content/themes/curiosity-lite/images/icons/credit-cards/laser.png'),(11613,'wp-content/themes/curiosity-lite/images/icons/credit-cards/maestro.png'),(11614,'wp-content/themes/curiosity-lite/images/icons/credit-cards/mastercard.png'),(11615,'wp-content/themes/curiosity-lite/images/icons/credit-cards/visa.png'),(11616,'wp-content/themes/curiosity-lite/images/icons/edit.png'),(11617,'wp-content/themes/curiosity-lite/images/icons/loader.svg'),(11618,'wp-content/themes/curiosity-lite/images/mb-1c.png'),(11619,'wp-content/themes/curiosity-lite/images/mb-2cl.png'),(11620,'wp-content/themes/curiosity-lite/images/mb-2cr.png'),(11621,'wp-content/themes/curiosity-lite/images/mb-default.png'),(11622,'wp-content/themes/curiosity-lite/images/next.png'),(11623,'wp-content/themes/curiosity-lite/images/no-image.png'),(11624,'wp-content/themes/curiosity-lite/images/placeholder.png'),(11625,'wp-content/themes/curiosity-lite/images/prettyPhoto/default_thumb.png'),(11626,'wp-content/themes/curiosity-lite/images/prettyPhoto/loader.gif'),(11627,'wp-content/themes/curiosity-lite/images/prettyPhoto/sprite.png'),(11628,'wp-content/themes/curiosity-lite/images/prettyPhoto/sprite_next.png'),(11629,'wp-content/themes/curiosity-lite/images/prettyPhoto/sprite_prev.png'),(11630,'wp-content/themes/curiosity-lite/images/prettyPhoto/sprite_x.png'),(11631,'wp-content/themes/curiosity-lite/images/prettyPhoto/sprite_y.png'),(11632,'wp-content/themes/curiosity-lite/images/prev.png'),(11633,'wp-content/themes/curiosity-lite/images/select2-spinner.gif'),(11634,'wp-content/themes/curiosity-lite/images/select2.png'),(11635,'wp-content/themes/curiosity-lite/images/select2x2.png'),(11636,'wp-content/themes/curiosity-lite/images/top.png'),(11637,'wp-content/themes/curiosity-lite/includes/about-theme.php'),(11638,'wp-content/themes/curiosity-lite/includes/child-plugins.php'),(11639,'wp-content/themes/curiosity-lite/includes/class-tgm-plugin-activation.php'),(11640,'wp-content/themes/curiosity-lite/includes/footer-function.php'),(11641,'wp-content/themes/curiosity-lite/includes/header-function.php'),(11642,'wp-content/themes/curiosity-lite/includes/theme-function.php'),(11643,'wp-content/themes/curiosity-lite/includes/theme-init.php'),(11644,'wp-content/themes/curiosity-lite/includes/theme-scripts.php'),(11645,'wp-content/themes/curiosity-lite/includes/theme-sidebar.php'),(11646,'wp-content/themes/curiosity-lite/includes/theme-styles.php'),(11647,'wp-content/themes/curiosity-lite/index.php'),(11648,'wp-content/themes/curiosity-lite/js/bootstrap.js'),(11649,'wp-content/themes/curiosity-lite/js/bootstrap.min.js'),(11650,'wp-content/themes/curiosity-lite/js/custom.js'),(11651,'wp-content/themes/curiosity-lite/js/jquery.flexslider-min.js'),(11652,'wp-content/themes/curiosity-lite/js/jquery.flexslider.js'),(11653,'wp-content/themes/curiosity-lite/js/jquery.prettyPhoto-min.js'),(11654,'wp-content/themes/curiosity-lite/js/jquery.prettyPhoto.js'),(11655,'wp-content/themes/curiosity-lite/js/marquee.js'),(11656,'wp-content/themes/curiosity-lite/js/owl.carousel.js'),(11657,'wp-content/themes/curiosity-lite/js/owl.carousel.min.js'),(11658,'wp-content/themes/curiosity-lite/languages/curiosity-lite.pot'),(11659,'wp-content/themes/curiosity-lite/loop.php'),(11660,'wp-content/themes/curiosity-lite/page.php'),(11661,'wp-content/themes/curiosity-lite/readme.txt'),(11662,'wp-content/themes/curiosity-lite/screenshot.png'),(11663,'wp-content/themes/curiosity-lite/search.php'),(11664,'wp-content/themes/curiosity-lite/searchform.php'),(11665,'wp-content/themes/curiosity-lite/sidebar.php'),(11666,'wp-content/themes/curiosity-lite/single.php'),(11667,'wp-content/themes/curiosity-lite/style.css'),(11668,'wp-content/themes/idolcorp/404.php'),(11669,'wp-content/themes/idolcorp/archive.php'),(11670,'wp-content/themes/idolcorp/author-bio.php'),(11671,'wp-content/themes/idolcorp/author.php'),(11672,'wp-content/themes/idolcorp/category.php'),(11673,'wp-content/themes/idolcorp/comments.php'),(11674,'wp-content/themes/idolcorp/css/bootstrap.css'),(11675,'wp-content/themes/idolcorp/css/font-awesome.css'),(11676,'wp-content/themes/idolcorp/css/font-awesome.min.css'),(11677,'wp-content/themes/idolcorp/css/generated.css'),(11678,'wp-content/themes/idolcorp/fonts/FontAwesome.otf'),(11679,'wp-content/themes/idolcorp/fonts/Genericons.eot'),(11680,'wp-content/themes/idolcorp/fonts/Genericons.svg'),(11681,'wp-content/themes/idolcorp/fonts/Genericons.ttf'),(11682,'wp-content/themes/idolcorp/fonts/Genericons.woff'),(11683,'wp-content/themes/idolcorp/fonts/fontawesome-webfont.eot'),(11684,'wp-content/themes/idolcorp/fonts/fontawesome-webfont.svg'),(11685,'wp-content/themes/idolcorp/fonts/fontawesome-webfont.ttf'),(11686,'wp-content/themes/idolcorp/fonts/fontawesome-webfont.woff'),(11687,'wp-content/themes/idolcorp/fonts/fontawesome-webfont.woff2'),(11688,'wp-content/themes/idolcorp/fonts/glyphicons-halflings-regular.eot'),(11689,'wp-content/themes/idolcorp/fonts/glyphicons-halflings-regular.svg'),(11690,'wp-content/themes/idolcorp/fonts/glyphicons-halflings-regular.ttf'),(11691,'wp-content/themes/idolcorp/fonts/glyphicons-halflings-regular.woff'),(11692,'wp-content/themes/idolcorp/fonts/glyphicons-halflings-regular.woff2'),(11693,'wp-content/themes/idolcorp/footer.php'),(11694,'wp-content/themes/idolcorp/functions.php'),(11695,'wp-content/themes/idolcorp/header.php'),(11696,'wp-content/themes/idolcorp/images/apple-touch-icon.png'),(11697,'wp-content/themes/idolcorp/images/best-theme.png'),(11698,'wp-content/themes/idolcorp/images/blog-full.png'),(11699,'wp-content/themes/idolcorp/images/call_to_action-1.jpg'),(11700,'wp-content/themes/idolcorp/images/call_to_action-2.jpg'),(11701,'wp-content/themes/idolcorp/images/favicon.ico'),(11702,'wp-content/themes/idolcorp/images/noimage-120x120.png'),(11703,'wp-content/themes/idolcorp/images/noimage-120x150.png'),(11704,'wp-content/themes/idolcorp/images/noimage-263x170.png'),(11705,'wp-content/themes/idolcorp/images/slider-image.png'),(11706,'wp-content/themes/idolcorp/images/slider-img.png'),(11707,'wp-content/themes/idolcorp/inc/custom-header.php'),(11708,'wp-content/themes/idolcorp/inc/extras.php'),(11709,'wp-content/themes/idolcorp/inc/idolcorp-functions.php'),(11710,'wp-content/themes/idolcorp/inc/idolcorp-widget-area.php'),(11711,'wp-content/themes/idolcorp/inc/jetpack.php'),(11712,'wp-content/themes/idolcorp/inc/template-tags.php'),(11713,'wp-content/themes/idolcorp/inc/widget/idolcorp_contactinfo_widgets.php'),(11714,'wp-content/themes/idolcorp/index.php'),(11715,'wp-content/themes/idolcorp/js/bootstrap.js'),(11716,'wp-content/themes/idolcorp/js/custom-scripts.js'),(11717,'wp-content/themes/idolcorp/js/html5shiv.js'),(11718,'wp-content/themes/idolcorp/js/jquery.bxslider.js'),(11719,'wp-content/themes/idolcorp/js/jquery.nicescroll.js'),(11720,'wp-content/themes/idolcorp/js/jquery.nicescroll.min.js'),(11721,'wp-content/themes/idolcorp/js/respond.js'),(11722,'wp-content/themes/idolcorp/js/respond.min.js'),(11723,'wp-content/themes/idolcorp/languages/idolcorp.pot'),(11724,'wp-content/themes/idolcorp/page-templates/contact-page.php'),(11725,'wp-content/themes/idolcorp/page-templates/content-aside.php'),(11726,'wp-content/themes/idolcorp/page-templates/content-audio.php'),(11727,'wp-content/themes/idolcorp/page-templates/content-blank.php'),(11728,'wp-content/themes/idolcorp/page-templates/content-chat.php'),(11729,'wp-content/themes/idolcorp/page-templates/content-gallery.php'),(11730,'wp-content/themes/idolcorp/page-templates/content-image.php'),(11731,'wp-content/themes/idolcorp/page-templates/content-link.php'),(11732,'wp-content/themes/idolcorp/page-templates/content-none.php'),(11733,'wp-content/themes/idolcorp/page-templates/content-page.php'),(11734,'wp-content/themes/idolcorp/page-templates/content-quote.php'),(11735,'wp-content/themes/idolcorp/page-templates/content-single.php'),(11736,'wp-content/themes/idolcorp/page-templates/content-video.php'),(11737,'wp-content/themes/idolcorp/page-templates/content.php'),(11738,'wp-content/themes/idolcorp/page-templates/home-page.php'),(11739,'wp-content/themes/idolcorp/page.php'),(11740,'wp-content/themes/idolcorp/readme.txt'),(11741,'wp-content/themes/idolcorp/screenshot.png'),(11742,'wp-content/themes/idolcorp/search.php'),(11743,'wp-content/themes/idolcorp/sidebar-left.php'),(11744,'wp-content/themes/idolcorp/sidebar.php'),(11745,'wp-content/themes/idolcorp/single.php'),(11746,'wp-content/themes/idolcorp/style.css'),(11747,'wp-content/themes/idolcorp/tag.php'),(11748,'wp-content/themes/idolcorp/themeidol-customizer/class-wp-custom-customize-control.php'),(11749,'wp-content/themes/idolcorp/themeidol-customizer/css/admin-style.css'),(11750,'wp-content/themes/idolcorp/themeidol-customizer/images/1col.png'),(11751,'wp-content/themes/idolcorp/themeidol-customizer/images/2cl.png'),(11752,'wp-content/themes/idolcorp/themeidol-customizer/images/2cr.png'),(11753,'wp-content/themes/idolcorp/themeidol-customizer/images/3column.png'),(11754,'wp-content/themes/idolcorp/themeidol-customizer/images/4column.png'),(11755,'wp-content/themes/idolcorp/themeidol-customizer/js/admin-custom-scripts.js'),(11756,'wp-content/themes/idolcorp/themeidol-customizer/js/theme-customizer.js'),(11757,'wp-content/themes/idolcorp/themeidol-customizer/themeidol-customizer.php'),(11758,'wp-content/themes/idolcorp/themeidol-customizer/themidol-sanitize.php'),(11759,'wp-content/themes/incart-lite/404.php'),(11760,'wp-content/themes/incart-lite/Installation_Instructions.txt'),(11761,'wp-content/themes/incart-lite/SketchBoard/functions/admin-init.php'),(11762,'wp-content/themes/incart-lite/SketchBoard/functions/sketch-breadcrumb.php'),(11763,'wp-content/themes/incart-lite/SketchBoard/functions/sketch-enqueue.php'),(11764,'wp-content/themes/incart-lite/SketchBoard/functions/sketch-functions.php'),(11765,'wp-content/themes/incart-lite/SketchBoard/includes/assets/css/ot-admin-rtl.css'),(11766,'wp-content/themes/incart-lite/SketchBoard/includes/assets/css/ot-admin.css'),(11767,'wp-content/themes/incart-lite/SketchBoard/includes/assets/fonts/option-tree-font.eot'),(11768,'wp-content/themes/incart-lite/SketchBoard/includes/assets/fonts/option-tree-font.svg'),(11769,'wp-content/themes/incart-lite/SketchBoard/includes/assets/fonts/option-tree-font.ttf'),(11770,'wp-content/themes/incart-lite/SketchBoard/includes/assets/fonts/option-tree-font.woff'),(11771,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/dual-sidebar.png'),(11772,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/full-width.png'),(11773,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/left-dual-sidebar.png'),(11774,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/left-sidebar.png'),(11775,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/onecolumn.png'),(11776,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/right-dual-sidebar.png'),(11777,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/right-sidebar.png'),(11778,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/threecolumn.png'),(11779,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/layout/twocolumn.png'),(11780,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/ot-logo.png'),(11781,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/ot-pre-bg.gif'),(11782,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/ot-select-hover-rtl.png'),(11783,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/ot-select-hover.png'),(11784,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/ot-select-rtl.png'),(11785,'wp-content/themes/incart-lite/SketchBoard/includes/assets/images/ot-select.png'),(11786,'wp-content/themes/incart-lite/SketchBoard/includes/assets/js/ot-admin.js'),(11787,'wp-content/themes/incart-lite/SketchBoard/includes/assets/js/vendor/ace/ace.js'),(11788,'wp-content/themes/incart-lite/SketchBoard/includes/assets/js/vendor/ace/mode-css.js'),(11789,'wp-content/themes/incart-lite/SketchBoard/includes/assets/js/vendor/ace/theme-chrome.js'),(11790,'wp-content/themes/incart-lite/SketchBoard/includes/assets/js/vendor/ace/worker-css.js'),(11791,'wp-content/themes/incart-lite/SketchBoard/includes/assets/js/vendor/jquery/jquery-ui-timepicker.js'),(11792,'wp-content/themes/incart-lite/SketchBoard/includes/assets/theme-mode/demo-functions.php'),(11793,'wp-content/themes/incart-lite/SketchBoard/includes/assets/theme-mode/demo-meta-boxes.php'),(11794,'wp-content/themes/incart-lite/SketchBoard/includes/assets/theme-mode/demo-theme-options.php'),(11795,'wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions-admin.php'),(11796,'wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions-compat.php'),(11797,'wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions-deprecated.php'),(11798,'wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions-docs-page.php'),(11799,'wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions-option-types.php'),(11800,'wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions-settings-page.php'),(11801,'wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-functions.php'),(11802,'wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-meta-box-api.php'),(11803,'wp-content/themes/incart-lite/SketchBoard/includes/includes/ot-settings-api.php'),(11804,'wp-content/themes/incart-lite/SketchBoard/includes/languages/en_US.po'),(11805,'wp-content/themes/incart-lite/SketchBoard/includes/languages/option-tree.po'),(11806,'wp-content/themes/incart-lite/SketchBoard/includes/license.txt'),(11807,'wp-content/themes/incart-lite/SketchBoard/includes/options/theme-options.php'),(11808,'wp-content/themes/incart-lite/SketchBoard/includes/ot-loader.php'),(11809,'wp-content/themes/incart-lite/SketchBoard/includes/readme.txt'),(11810,'wp-content/themes/incart-lite/archive.php'),(11811,'wp-content/themes/incart-lite/author.php'),(11812,'wp-content/themes/incart-lite/category.php'),(11813,'wp-content/themes/incart-lite/changelog.txt'),(11814,'wp-content/themes/incart-lite/comments.php'),(11815,'wp-content/themes/incart-lite/content-none.php'),(11816,'wp-content/themes/incart-lite/content.php'),(11817,'wp-content/themes/incart-lite/css/bootstrap-responsive.css'),(11818,'wp-content/themes/incart-lite/css/font-awesome-ie7.css'),(11819,'wp-content/themes/incart-lite/css/font-awesome.css'),(11820,'wp-content/themes/incart-lite/css/font-awesome.min.css'),(11821,'wp-content/themes/incart-lite/css/prettyPhoto.css'),(11822,'wp-content/themes/incart-lite/css/skt-animation.css'),(11823,'wp-content/themes/incart-lite/css/superfish.css'),(11824,'wp-content/themes/incart-lite/css/upsell.css'),(11825,'wp-content/themes/incart-lite/editor-style.css'),(11826,'wp-content/themes/incart-lite/fonts/FontAwesome.otf'),(11827,'wp-content/themes/incart-lite/fonts/fontawesome-webfont.eot'),(11828,'wp-content/themes/incart-lite/fonts/fontawesome-webfont.svg'),(11829,'wp-content/themes/incart-lite/fonts/fontawesome-webfont.ttf'),(11830,'wp-content/themes/incart-lite/fonts/fontawesome-webfont.woff'),(11831,'wp-content/themes/incart-lite/fonts/fontawesome-webfont.woff2'),(11832,'wp-content/themes/incart-lite/footer.php'),(11833,'wp-content/themes/incart-lite/front-page.php'),(11834,'wp-content/themes/incart-lite/functions.php'),(11835,'wp-content/themes/incart-lite/header.php'),(11836,'wp-content/themes/incart-lite/images/Feature-image-01.png'),(11837,'wp-content/themes/incart-lite/images/Feature-image-02.png'),(11838,'wp-content/themes/incart-lite/images/Feature-image-03.png'),(11839,'wp-content/themes/incart-lite/images/Incart.png'),(11840,'wp-content/themes/incart-lite/images/Parallax-image.png'),(11841,'wp-content/themes/incart-lite/images/Slider-Image01.png'),(11842,'wp-content/themes/incart-lite/images/cart.png'),(11843,'wp-content/themes/incart-lite/images/ch-arr.png'),(11844,'wp-content/themes/incart-lite/images/corner-arrow.png'),(11845,'wp-content/themes/incart-lite/images/menuulbg.png'),(11846,'wp-content/themes/incart-lite/images/prettyPhoto/dark_rounded/btnNext.png'),(11847,'wp-content/themes/incart-lite/images/prettyPhoto/dark_rounded/btnPrevious.png'),(11848,'wp-content/themes/incart-lite/images/prettyPhoto/dark_rounded/contentPattern.png'),(11849,'wp-content/themes/incart-lite/images/prettyPhoto/dark_rounded/default_thumbnail.gif'),(11850,'wp-content/themes/incart-lite/images/prettyPhoto/dark_rounded/loader.gif'),(11851,'wp-content/themes/incart-lite/images/prettyPhoto/dark_rounded/sprite.png'),(11852,'wp-content/themes/incart-lite/images/prettyPhoto/dark_square/btnNext.png'),(11853,'wp-content/themes/incart-lite/images/prettyPhoto/dark_square/btnPrevious.png'),(11854,'wp-content/themes/incart-lite/images/prettyPhoto/dark_square/contentPattern.png'),(11855,'wp-content/themes/incart-lite/images/prettyPhoto/dark_square/default_thumbnail.gif'),(11856,'wp-content/themes/incart-lite/images/prettyPhoto/dark_square/loader.gif'),(11857,'wp-content/themes/incart-lite/images/prettyPhoto/dark_square/sprite.png'),(11858,'wp-content/themes/incart-lite/images/prettyPhoto/default/default_thumb.png'),(11859,'wp-content/themes/incart-lite/images/prettyPhoto/default/loader.gif'),(11860,'wp-content/themes/incart-lite/images/prettyPhoto/default/sprite.png'),(11861,'wp-content/themes/incart-lite/images/prettyPhoto/default/sprite_next.png'),(11862,'wp-content/themes/incart-lite/images/prettyPhoto/default/sprite_prev.png'),(11863,'wp-content/themes/incart-lite/images/prettyPhoto/default/sprite_x.png'),(11864,'wp-content/themes/incart-lite/images/prettyPhoto/default/sprite_y.png'),(11865,'wp-content/themes/incart-lite/images/prettyPhoto/facebook/btnNext.png'),(11866,'wp-content/themes/incart-lite/images/prettyPhoto/facebook/btnPrevious.png'),(11867,'wp-content/themes/incart-lite/images/prettyPhoto/facebook/contentPatternBottom.png'),(11868,'wp-content/themes/incart-lite/images/prettyPhoto/facebook/contentPatternLeft.png'),(11869,'wp-content/themes/incart-lite/images/prettyPhoto/facebook/contentPatternRight.png'),(11870,'wp-content/themes/incart-lite/images/prettyPhoto/facebook/contentPatternTop.png'),(11871,'wp-content/themes/incart-lite/images/prettyPhoto/facebook/default_thumbnail.gif'),(11872,'wp-content/themes/incart-lite/images/prettyPhoto/facebook/loader.gif'),(11873,'wp-content/themes/incart-lite/images/prettyPhoto/facebook/sprite.png'),(11874,'wp-content/themes/incart-lite/images/prettyPhoto/light_rounded/btnNext.png'),(11875,'wp-content/themes/incart-lite/images/prettyPhoto/light_rounded/btnPrevious.png'),(11876,'wp-content/themes/incart-lite/images/prettyPhoto/light_rounded/default_thumbnail.gif'),(11877,'wp-content/themes/incart-lite/images/prettyPhoto/light_rounded/loader.gif'),(11878,'wp-content/themes/incart-lite/images/prettyPhoto/light_rounded/sprite.png'),(11879,'wp-content/themes/incart-lite/images/prettyPhoto/light_square/Invert_Lightbox_Close.png'),(11880,'wp-content/themes/incart-lite/images/prettyPhoto/light_square/Invert_Lightbox_Next-Small.png'),(11881,'wp-content/themes/incart-lite/images/prettyPhoto/light_square/Invert_Lightbox_Pause.png'),(11882,'wp-content/themes/incart-lite/images/prettyPhoto/light_square/Invert_Lightbox_Play.png'),(11883,'wp-content/themes/incart-lite/images/prettyPhoto/light_square/Invert_Lightbox_Previous-Small.png'),(11884,'wp-content/themes/incart-lite/images/prettyPhoto/light_square/btnNext.png'),(11885,'wp-content/themes/incart-lite/images/prettyPhoto/light_square/btnNext1.png'),(11886,'wp-content/themes/incart-lite/images/prettyPhoto/light_square/btnPrevious.png'),(11887,'wp-content/themes/incart-lite/images/prettyPhoto/light_square/btnPrevious1.png'),(11888,'wp-content/themes/incart-lite/images/prettyPhoto/light_square/default_thumbnail.gif'),(11889,'wp-content/themes/incart-lite/images/prettyPhoto/light_square/loader.gif'),(11890,'wp-content/themes/incart-lite/images/prettyPhoto/light_square/sprite.png'),(11891,'wp-content/themes/incart-lite/images/sketch-logo.png'),(11892,'wp-content/themes/incart-lite/includes/front-header-image-section.php'),(11893,'wp-content/themes/incart-lite/includes/front-mid-box.php'),(11894,'wp-content/themes/incart-lite/includes/front-parallax-section.php'),(11895,'wp-content/themes/incart-lite/includes/front-woo-products.php'),(11896,'wp-content/themes/incart-lite/includes/incart-custom-css.php'),(11897,'wp-content/themes/incart-lite/includes/sketchtheme-upsell.php'),(11898,'wp-content/themes/incart-lite/index.php'),(11899,'wp-content/themes/incart-lite/js/cbpAnimatedHeader.js'),(11900,'wp-content/themes/incart-lite/js/custom.js'),(11901,'wp-content/themes/incart-lite/js/hoverIntent.js'),(11902,'wp-content/themes/incart-lite/js/jquery.easing.1.3.js'),(11903,'wp-content/themes/incart-lite/js/jquery.prettyPhoto.js'),(11904,'wp-content/themes/incart-lite/js/superfish.js'),(11905,'wp-content/themes/incart-lite/js/waypoints.js'),(11906,'wp-content/themes/incart-lite/languages/en_US.mo'),(11907,'wp-content/themes/incart-lite/languages/en_US.po'),(11908,'wp-content/themes/incart-lite/languages/incart-lite.pot'),(11909,'wp-content/themes/incart-lite/page.php'),(11910,'wp-content/themes/incart-lite/readme.txt'),(11911,'wp-content/themes/incart-lite/screenshot.png'),(11912,'wp-content/themes/incart-lite/search.php'),(11913,'wp-content/themes/incart-lite/searchform.php'),(11914,'wp-content/themes/incart-lite/sidebar-page.php'),(11915,'wp-content/themes/incart-lite/sidebar-shoppage.php'),(11916,'wp-content/themes/incart-lite/sidebar.php'),(11917,'wp-content/themes/incart-lite/single.php'),(11918,'wp-content/themes/incart-lite/sketchthemes-upsell/class-customize.php'),(11919,'wp-content/themes/incart-lite/sketchthemes-upsell/customize-controls.css'),(11920,'wp-content/themes/incart-lite/sketchthemes-upsell/customize-controls.js'),(11921,'wp-content/themes/incart-lite/sketchthemes-upsell/section-pro.php'),(11922,'wp-content/themes/incart-lite/style.css'),(11923,'wp-content/themes/incart-lite/tag.php'),(11924,'wp-content/themes/incart-lite/template-front-page.php'),(11925,'wp-content/themes/incart-lite/woocommerce.php'),(11926,'wp-content/themes/index.php'),(11927,'wp-content/themes/lithestore/404.php'),(11928,'wp-content/themes/lithestore/archive.php'),(11929,'wp-content/themes/lithestore/changelog.txt'),(11930,'wp-content/themes/lithestore/comments.php'),(11931,'wp-content/themes/lithestore/footer.php'),(11932,'wp-content/themes/lithestore/framework/assets/css/grid.css'),(11933,'wp-content/themes/lithestore/framework/assets/css/main.css'),(11934,'wp-content/themes/lithestore/framework/assets/css/woocommerce.css'),(11935,'wp-content/themes/lithestore/framework/assets/font-awesome/HELP-US-OUT.txt'),(11936,'wp-content/themes/lithestore/framework/assets/font-awesome/css/font-awesome.css'),(11937,'wp-content/themes/lithestore/framework/assets/font-awesome/css/font-awesome.min.css'),(11938,'wp-content/themes/lithestore/framework/assets/font-awesome/fonts/FontAwesome.otf'),(11939,'wp-content/themes/lithestore/framework/assets/font-awesome/fonts/fontawesome-webfont.eot'),(11940,'wp-content/themes/lithestore/framework/assets/font-awesome/fonts/fontawesome-webfont.svg'),(11941,'wp-content/themes/lithestore/framework/assets/font-awesome/fonts/fontawesome-webfont.ttf'),(11942,'wp-content/themes/lithestore/framework/assets/font-awesome/fonts/fontawesome-webfont.woff'),(11943,'wp-content/themes/lithestore/framework/assets/font-awesome/fonts/fontawesome-webfont.woff2'),(11944,'wp-content/themes/lithestore/framework/assets/font-awesome/less/animated.less'),(11945,'wp-content/themes/lithestore/framework/assets/font-awesome/less/bordered-pulled.less'),(11946,'wp-content/themes/lithestore/framework/assets/font-awesome/less/core.less'),(11947,'wp-content/themes/lithestore/framework/assets/font-awesome/less/fixed-width.less'),(11948,'wp-content/themes/lithestore/framework/assets/font-awesome/less/font-awesome.less'),(11949,'wp-content/themes/lithestore/framework/assets/font-awesome/less/icons.less'),(11950,'wp-content/themes/lithestore/framework/assets/font-awesome/less/larger.less'),(11951,'wp-content/themes/lithestore/framework/assets/font-awesome/less/list.less'),(11952,'wp-content/themes/lithestore/framework/assets/font-awesome/less/mixins.less'),(11953,'wp-content/themes/lithestore/framework/assets/font-awesome/less/path.less'),(11954,'wp-content/themes/lithestore/framework/assets/font-awesome/less/rotated-flipped.less'),(11955,'wp-content/themes/lithestore/framework/assets/font-awesome/less/stacked.less'),(11956,'wp-content/themes/lithestore/framework/assets/font-awesome/less/variables.less'),(11957,'wp-content/themes/lithestore/framework/assets/font-awesome/scss/_animated.scss'),(11958,'wp-content/themes/lithestore/framework/assets/font-awesome/scss/_bordered-pulled.scss'),(11959,'wp-content/themes/lithestore/framework/assets/font-awesome/scss/_core.scss'),(11960,'wp-content/themes/lithestore/framework/assets/font-awesome/scss/_fixed-width.scss'),(11961,'wp-content/themes/lithestore/framework/assets/font-awesome/scss/_icons.scss'),(11962,'wp-content/themes/lithestore/framework/assets/font-awesome/scss/_larger.scss'),(11963,'wp-content/themes/lithestore/framework/assets/font-awesome/scss/_list.scss'),(11964,'wp-content/themes/lithestore/framework/assets/font-awesome/scss/_mixins.scss'),(11965,'wp-content/themes/lithestore/framework/assets/font-awesome/scss/_path.scss'),(11966,'wp-content/themes/lithestore/framework/assets/font-awesome/scss/_rotated-flipped.scss'),(11967,'wp-content/themes/lithestore/framework/assets/font-awesome/scss/_stacked.scss'),(11968,'wp-content/themes/lithestore/framework/assets/font-awesome/scss/_variables.scss'),(11969,'wp-content/themes/lithestore/framework/assets/font-awesome/scss/font-awesome.scss'),(11970,'wp-content/themes/lithestore/framework/assets/img/child-node.png'),(11971,'wp-content/themes/lithestore/framework/assets/img/circle.png'),(11972,'wp-content/themes/lithestore/framework/assets/img/dot.png'),(11973,'wp-content/themes/lithestore/framework/assets/img/pattern.png'),(11974,'wp-content/themes/lithestore/framework/assets/js/customizer.js'),(11975,'wp-content/themes/lithestore/framework/assets/js/jquery.easing.min.js'),(11976,'wp-content/themes/lithestore/framework/assets/js/pushy.js'),(11977,'wp-content/themes/lithestore/framework/assets/js/skip-link-lithestore-fix.js'),(11978,'wp-content/themes/lithestore/framework/assets/js/theme.js'),(11979,'wp-content/themes/lithestore/framework/customizer/customizer.php'),(11980,'wp-content/themes/lithestore/framework/customizer/fonts.php'),(11981,'wp-content/themes/lithestore/framework/demo/default/content.xml'),(11982,'wp-content/themes/lithestore/framework/demo/default/customizer.dat'),(11983,'wp-content/themes/lithestore/framework/demo/default/widgets.json'),(11984,'wp-content/themes/lithestore/framework/demo/demo-importer.php'),(11985,'wp-content/themes/lithestore/framework/functions/class-tgm-plugin-activation.php'),(11986,'wp-content/themes/lithestore/framework/functions/extras.php'),(11987,'wp-content/themes/lithestore/framework/functions/plugins.php'),(11988,'wp-content/themes/lithestore/framework/functions/template-tags.php'),(11989,'wp-content/themes/lithestore/framework/functions/welcome/content/intro.php'),(11990,'wp-content/themes/lithestore/framework/functions/welcome/css/welcome.css'),(11991,'wp-content/themes/lithestore/framework/functions/welcome/img/shop-page.jpg'),(11992,'wp-content/themes/lithestore/framework/functions/welcome/welcome.php'),(11993,'wp-content/themes/lithestore/framework/hooks.php'),(11994,'wp-content/themes/lithestore/framework/init.php'),(11995,'wp-content/themes/lithestore/framework/woocommerce/extras.php'),(11996,'wp-content/themes/lithestore/framework/woocommerce/hooks.php'),(11997,'wp-content/themes/lithestore/framework/woocommerce/template-tags.php'),(11998,'wp-content/themes/lithestore/functions.php'),(11999,'wp-content/themes/lithestore/header.php'),(12000,'wp-content/themes/lithestore/index.php'),(12001,'wp-content/themes/lithestore/languages/en_US.mo'),(12002,'wp-content/themes/lithestore/languages/en_US.po'),(12003,'wp-content/themes/lithestore/languages/lithestore.pot'),(12004,'wp-content/themes/lithestore/languages/readme.txt'),(12005,'wp-content/themes/lithestore/page-templates/page-fullwidth.php'),(12006,'wp-content/themes/lithestore/page-templates/page-homepage.php'),(12007,'wp-content/themes/lithestore/page.php'),(12008,'wp-content/themes/lithestore/readme.txt'),(12009,'wp-content/themes/lithestore/screenshot.png'),(12010,'wp-content/themes/lithestore/search.php'),(12011,'wp-content/themes/lithestore/sidebar-home.php'),(12012,'wp-content/themes/lithestore/sidebar-page.php'),(12013,'wp-content/themes/lithestore/sidebar-shop.php'),(12014,'wp-content/themes/lithestore/sidebar.php'),(12015,'wp-content/themes/lithestore/single.php'),(12016,'wp-content/themes/lithestore/style.css'),(12017,'wp-content/themes/lithestore/template-parts/content-none.php'),(12018,'wp-content/themes/lithestore/template-parts/content-page.php'),(12019,'wp-content/themes/lithestore/template-parts/content-search.php'),(12020,'wp-content/themes/lithestore/template-parts/content-single.php'),(12021,'wp-content/themes/lithestore/template-parts/content.php'),(12022,'wp-content/themes/lithestore/template-parts/mobile-menu.php'),(12023,'wp-content/themes/lithestore/template-parts/popup.php'),(12024,'wp-content/themes/maxwell/404.php'),(12025,'wp-content/themes/maxwell/archive.php'),(12026,'wp-content/themes/maxwell/assets/css/customizer.css'),(12027,'wp-content/themes/maxwell/assets/css/editor-style.css'),(12028,'wp-content/themes/maxwell/assets/css/editor-styles.css'),(12029,'wp-content/themes/maxwell/assets/css/safari-flexbox-fixes.css'),(12030,'wp-content/themes/maxwell/assets/css/theme-info.css'),(12031,'wp-content/themes/maxwell/assets/genericons/Genericons.svg'),(12032,'wp-content/themes/maxwell/assets/icons/genericons-neue.svg'),(12033,'wp-content/themes/maxwell/assets/images/default-slider-image.png'),(12034,'wp-content/themes/maxwell/assets/images/magazine-columns.png'),(12035,'wp-content/themes/maxwell/assets/images/magazine-grid.png'),(12036,'wp-content/themes/maxwell/assets/js/customize-preview.js'),(12037,'wp-content/themes/maxwell/assets/js/customizer-controls.js'),(12038,'wp-content/themes/maxwell/assets/js/customizer-magazine-widgets.js'),(12039,'wp-content/themes/maxwell/assets/js/customizer.js'),(12040,'wp-content/themes/maxwell/assets/js/html5shiv.js'),(12041,'wp-content/themes/maxwell/assets/js/html5shiv.min.js'),(12042,'wp-content/themes/maxwell/assets/js/jquery.flexslider-min.js'),(12043,'wp-content/themes/maxwell/assets/js/jquery.flexslider.js'),(12044,'wp-content/themes/maxwell/assets/js/navigation.js'),(12045,'wp-content/themes/maxwell/assets/js/navigation.min.js'),(12046,'wp-content/themes/maxwell/assets/js/slider.js'),(12047,'wp-content/themes/maxwell/assets/js/svgxuse.js'),(12048,'wp-content/themes/maxwell/assets/js/svgxuse.min.js'),(12049,'wp-content/themes/maxwell/comments.php'),(12050,'wp-content/themes/maxwell/footer.php'),(12051,'wp-content/themes/maxwell/functions.php'),(12052,'wp-content/themes/maxwell/header.php'),(12053,'wp-content/themes/maxwell/home.php'),(12054,'wp-content/themes/maxwell/inc/addons.php'),(12055,'wp-content/themes/maxwell/inc/back-compat.php'),(12056,'wp-content/themes/maxwell/inc/customizer/controls/category-dropdown-control.php'),(12057,'wp-content/themes/maxwell/inc/customizer/controls/header-control.php'),(12058,'wp-content/themes/maxwell/inc/customizer/controls/links-control.php'),(12059,'wp-content/themes/maxwell/inc/customizer/controls/magazine-widget-area-control.php'),(12060,'wp-content/themes/maxwell/inc/customizer/controls/plugin-control.php'),(12061,'wp-content/themes/maxwell/inc/customizer/controls/upgrade-control.php'),(12062,'wp-content/themes/maxwell/inc/customizer/customizer.php'),(12063,'wp-content/themes/maxwell/inc/customizer/default-options.php'),(12064,'wp-content/themes/maxwell/inc/customizer/functions/callback-functions.php'),(12065,'wp-content/themes/maxwell/inc/customizer/functions/custom-controls.php'),(12066,'wp-content/themes/maxwell/inc/customizer/functions/magazine-widget-area-control.php'),(12067,'wp-content/themes/maxwell/inc/customizer/functions/sanitize-functions.php'),(12068,'wp-content/themes/maxwell/inc/customizer/sections/customizer-blog.php'),(12069,'wp-content/themes/maxwell/inc/customizer/sections/customizer-general.php'),(12070,'wp-content/themes/maxwell/inc/customizer/sections/customizer-info.php'),(12071,'wp-content/themes/maxwell/inc/customizer/sections/customizer-magazine.php'),(12072,'wp-content/themes/maxwell/inc/customizer/sections/customizer-post.php'),(12073,'wp-content/themes/maxwell/inc/customizer/sections/customizer-slider.php'),(12074,'wp-content/themes/maxwell/inc/customizer/sections/customizer-upgrade.php'),(12075,'wp-content/themes/maxwell/inc/customizer/sections/customizer-website.php'),(12076,'wp-content/themes/maxwell/inc/extras.php'),(12077,'wp-content/themes/maxwell/inc/gutenberg.php'),(12078,'wp-content/themes/maxwell/inc/icons.php'),(12079,'wp-content/themes/maxwell/inc/magazine.php'),(12080,'wp-content/themes/maxwell/inc/slider.php'),(12081,'wp-content/themes/maxwell/inc/template-tags.php'),(12082,'wp-content/themes/maxwell/inc/theme-info.php'),(12083,'wp-content/themes/maxwell/inc/widgets/widget-magazine-posts-columns.php'),(12084,'wp-content/themes/maxwell/inc/widgets/widget-magazine-posts-grid.php'),(12085,'wp-content/themes/maxwell/inc/wptt-webfont-loader.php'),(12086,'wp-content/themes/maxwell/index.php'),(12087,'wp-content/themes/maxwell/languages/maxwell.pot'),(12088,'wp-content/themes/maxwell/languages/readme.txt'),(12089,'wp-content/themes/maxwell/page.php'),(12090,'wp-content/themes/maxwell/readme.txt'),(12091,'wp-content/themes/maxwell/rtl.css'),(12092,'wp-content/themes/maxwell/screenshot.jpg'),(12093,'wp-content/themes/maxwell/search.php'),(12094,'wp-content/themes/maxwell/searchform.php'),(12095,'wp-content/themes/maxwell/sidebar.php'),(12096,'wp-content/themes/maxwell/single.php'),(12097,'wp-content/themes/maxwell/style.css'),(12098,'wp-content/themes/maxwell/template-centered.php'),(12099,'wp-content/themes/maxwell/template-fullwidth.php'),(12100,'wp-content/themes/maxwell/template-magazine.php'),(12101,'wp-content/themes/maxwell/template-parts/content-none.php'),(12102,'wp-content/themes/maxwell/template-parts/content-page.php'),(12103,'wp-content/themes/maxwell/template-parts/content-search.php'),(12104,'wp-content/themes/maxwell/template-parts/content-single.php'),(12105,'wp-content/themes/maxwell/template-parts/content-slider.php'),(12106,'wp-content/themes/maxwell/template-parts/content.php'),(12107,'wp-content/themes/maxwell/template-parts/header/site-navigation.php'),(12108,'wp-content/themes/maxwell/template-parts/post-slider.php'),(12109,'wp-content/themes/maxwell/template-parts/widgets/magazine-full-post-list.php'),(12110,'wp-content/themes/maxwell/template-parts/widgets/magazine-full-post.php'),(12111,'wp-content/themes/maxwell/template-parts/widgets/magazine-large-post-horizontal-box.php'),(12112,'wp-content/themes/maxwell/template-parts/widgets/magazine-large-post-sidebar.php'),(12113,'wp-content/themes/maxwell/template-parts/widgets/magazine-large-post.php'),(12114,'wp-content/themes/maxwell/template-parts/widgets/magazine-medium-post.php'),(12115,'wp-content/themes/maxwell/template-parts/widgets/magazine-small-post.php'),(12116,'wp-content/themes/maxwell/template-slider.php'),(12117,'wp-content/themes/mckinley/404.php'),(12118,'wp-content/themes/mckinley/archive.php'),(12119,'wp-content/themes/mckinley/author-bio.php'),(12120,'wp-content/themes/mckinley/author.php'),(12121,'wp-content/themes/mckinley/category.php'),(12122,'wp-content/themes/mckinley/comments.php'),(12123,'wp-content/themes/mckinley/content-aside.php'),(12124,'wp-content/themes/mckinley/content-audio.php'),(12125,'wp-content/themes/mckinley/content-chat.php'),(12126,'wp-content/themes/mckinley/content-gallery.php'),(12127,'wp-content/themes/mckinley/content-image.php'),(12128,'wp-content/themes/mckinley/content-link.php'),(12129,'wp-content/themes/mckinley/content-none.php'),(12130,'wp-content/themes/mckinley/content-quote.php'),(12131,'wp-content/themes/mckinley/content-status.php'),(12132,'wp-content/themes/mckinley/content-video.php'),(12133,'wp-content/themes/mckinley/content.php'),(12134,'wp-content/themes/mckinley/css/editor-style.css'),(12135,'wp-content/themes/mckinley/css/flexslider.css'),(12136,'wp-content/themes/mckinley/css/ie.css'),(12137,'wp-content/themes/mckinley/fonts/COPYING.txt'),(12138,'wp-content/themes/mckinley/fonts/LICENSE.txt'),(12139,'wp-content/themes/mckinley/fonts/genericons-regular-webfont.eot'),(12140,'wp-content/themes/mckinley/fonts/genericons-regular-webfont.svg'),(12141,'wp-content/themes/mckinley/fonts/genericons-regular-webfont.ttf'),(12142,'wp-content/themes/mckinley/fonts/genericons-regular-webfont.woff'),(12143,'wp-content/themes/mckinley/fonts/genericons.css'),(12144,'wp-content/themes/mckinley/footer.php'),(12145,'wp-content/themes/mckinley/functions.php'),(12146,'wp-content/themes/mckinley/header.php'),(12147,'wp-content/themes/mckinley/image.php'),(12148,'wp-content/themes/mckinley/images/flexslider/bg_control_nav.png'),(12149,'wp-content/themes/mckinley/images/flexslider/direction_nav.png'),(12150,'wp-content/themes/mckinley/inc/back-compat.php'),(12151,'wp-content/themes/mckinley/inc/custom-header.php'),(12152,'wp-content/themes/mckinley/index.php'),(12153,'wp-content/themes/mckinley/js/functions.js'),(12154,'wp-content/themes/mckinley/js/html5.js'),(12155,'wp-content/themes/mckinley/js/jquery.fitvids.js'),(12156,'wp-content/themes/mckinley/js/jquery.flexslider-min.js'),(12157,'wp-content/themes/mckinley/js/theme-customizer.js'),(12158,'wp-content/themes/mckinley/languages/mckinley.pot'),(12159,'wp-content/themes/mckinley/page.php'),(12160,'wp-content/themes/mckinley/readme.txt'),(12161,'wp-content/themes/mckinley/rtl.css'),(12162,'wp-content/themes/mckinley/screenshot.png'),(12163,'wp-content/themes/mckinley/search.php'),(12164,'wp-content/themes/mckinley/sidebar-main.php'),(12165,'wp-content/themes/mckinley/sidebar.php'),(12166,'wp-content/themes/mckinley/single.php'),(12167,'wp-content/themes/mckinley/style.css'),(12168,'wp-content/themes/mckinley/tag.php'),(12169,'wp-content/themes/mckinley/taxonomy-post_format.php'),(12170,'wp-content/themes/moesia/404.php'),(12171,'wp-content/themes/moesia/archive.php'),(12172,'wp-content/themes/moesia/author-bio.php'),(12173,'wp-content/themes/moesia/comments.php'),(12174,'wp-content/themes/moesia/content-large.php'),(12175,'wp-content/themes/moesia/content-none.php'),(12176,'wp-content/themes/moesia/content-page.php'),(12177,'wp-content/themes/moesia/content-project.php'),(12178,'wp-content/themes/moesia/content-search.php'),(12179,'wp-content/themes/moesia/content-single.php'),(12180,'wp-content/themes/moesia/content.php'),(12181,'wp-content/themes/moesia/css/animate/animate.css'),(12182,'wp-content/themes/moesia/css/animate/animate.min.css'),(12183,'wp-content/themes/moesia/css/bootstrap/bootstrap-theme.css'),(12184,'wp-content/themes/moesia/css/bootstrap/bootstrap-theme.min.css'),(12185,'wp-content/themes/moesia/css/bootstrap/bootstrap.css'),(12186,'wp-content/themes/moesia/css/bootstrap/bootstrap.min.css'),(12187,'wp-content/themes/moesia/fonts/FontAwesome.otf'),(12188,'wp-content/themes/moesia/fonts/font-awesome.css'),(12189,'wp-content/themes/moesia/fonts/font-awesome.min.css'),(12190,'wp-content/themes/moesia/fonts/fontawesome-webfont.eot'),(12191,'wp-content/themes/moesia/fonts/fontawesome-webfont.svg'),(12192,'wp-content/themes/moesia/fonts/fontawesome-webfont.ttf'),(12193,'wp-content/themes/moesia/fonts/fontawesome-webfont.woff'),(12194,'wp-content/themes/moesia/fonts/fontawesome-webfont.woff2'),(12195,'wp-content/themes/moesia/footer.php'),(12196,'wp-content/themes/moesia/functions.php'),(12197,'wp-content/themes/moesia/header.php'),(12198,'wp-content/themes/moesia/home.php'),(12199,'wp-content/themes/moesia/images/header.jpg'),(12200,'wp-content/themes/moesia/images/pattern.png'),(12201,'wp-content/themes/moesia/inc/custom-header.php'),(12202,'wp-content/themes/moesia/inc/customizer.php'),(12203,'wp-content/themes/moesia/inc/extras.php'),(12204,'wp-content/themes/moesia/inc/jetpack.php'),(12205,'wp-content/themes/moesia/inc/prettyphoto/css/prettyPhoto.css'),(12206,'wp-content/themes/moesia/inc/prettyphoto/css/prettyPhoto.min.css'),(12207,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_rounded/btnNext.png'),(12208,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_rounded/btnPrevious.png'),(12209,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_rounded/contentPattern.png'),(12210,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_rounded/default_thumbnail.gif'),(12211,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_rounded/loader.gif'),(12212,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_rounded/sprite.png'),(12213,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_square/btnNext.png'),(12214,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_square/btnPrevious.png'),(12215,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_square/contentPattern.png'),(12216,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_square/default_thumbnail.gif'),(12217,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_square/loader.gif'),(12218,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/dark_square/sprite.png'),(12219,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/default_thumb.png'),(12220,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/loader.gif'),(12221,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/sprite.png'),(12222,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/sprite_next.png'),(12223,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/sprite_prev.png'),(12224,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/sprite_x.png'),(12225,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/default/sprite_y.png'),(12226,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/btnNext.png'),(12227,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/btnPrevious.png'),(12228,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/contentPatternBottom.png'),(12229,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/contentPatternLeft.png'),(12230,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/contentPatternRight.png'),(12231,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/contentPatternTop.png'),(12232,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/default_thumbnail.gif'),(12233,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/loader.gif'),(12234,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/facebook/sprite.png'),(12235,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_rounded/btnNext.png'),(12236,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_rounded/btnPrevious.png'),(12237,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_rounded/default_thumbnail.gif'),(12238,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_rounded/loader.gif'),(12239,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_rounded/sprite.png'),(12240,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_square/btnNext.png'),(12241,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_square/btnPrevious.png'),(12242,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_square/default_thumbnail.gif'),(12243,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_square/loader.gif'),(12244,'wp-content/themes/moesia/inc/prettyphoto/images/prettyPhoto/light_square/sprite.png'),(12245,'wp-content/themes/moesia/inc/prettyphoto/images/thumbnails/flash-logo.png'),(12246,'wp-content/themes/moesia/inc/prettyphoto/images/thumbnails/quicktime-logo.gif'),(12247,'wp-content/themes/moesia/inc/prettyphoto/js/jquery.prettyPhoto.js'),(12248,'wp-content/themes/moesia/inc/prettyphoto/js/jquery.prettyPhoto.min.js'),(12249,'wp-content/themes/moesia/inc/prettyphoto/js/prettyphoto-init.js'),(12250,'wp-content/themes/moesia/inc/rows.php'),(12251,'wp-content/themes/moesia/inc/template-tags.php'),(12252,'wp-content/themes/moesia/inc/tha-theme-hooks.php'),(12253,'wp-content/themes/moesia/index.php'),(12254,'wp-content/themes/moesia/js/carousel-init.js'),(12255,'wp-content/themes/moesia/js/customizer.js'),(12256,'wp-content/themes/moesia/js/html5shiv.js'),(12257,'wp-content/themes/moesia/js/image-uploader.js'),(12258,'wp-content/themes/moesia/js/imagesloaded.pkgd.js'),(12259,'wp-content/themes/moesia/js/imagesloaded.pkgd.min.js'),(12260,'wp-content/themes/moesia/js/jquery.fitvids.js'),(12261,'wp-content/themes/moesia/js/jquery.scrolly.js'),(12262,'wp-content/themes/moesia/js/jquery.sticky.js'),(12263,'wp-content/themes/moesia/js/masonry-init.js'),(12264,'wp-content/themes/moesia/js/navigation.js'),(12265,'wp-content/themes/moesia/js/scripts.js'),(12266,'wp-content/themes/moesia/js/skip-link-focus-fix.js'),(12267,'wp-content/themes/moesia/js/slick.js'),(12268,'wp-content/themes/moesia/js/slick.min.js'),(12269,'wp-content/themes/moesia/js/waypoints.js'),(12270,'wp-content/themes/moesia/js/waypoints.min.js'),(12271,'wp-content/themes/moesia/js/wow-init.js'),(12272,'wp-content/themes/moesia/js/wow.js'),(12273,'wp-content/themes/moesia/js/wow.min.js'),(12274,'wp-content/themes/moesia/languages/de_AT.mo'),(12275,'wp-content/themes/moesia/languages/de_AT.po'),(12276,'wp-content/themes/moesia/languages/de_DE.mo'),(12277,'wp-content/themes/moesia/languages/de_DE.po'),(12278,'wp-content/themes/moesia/languages/fr_FR.mo'),(12279,'wp-content/themes/moesia/languages/fr_FR.po'),(12280,'wp-content/themes/moesia/languages/moesia.pot'),(12281,'wp-content/themes/moesia/languages/pt_PT.mo'),(12282,'wp-content/themes/moesia/languages/pt_PT.po'),(12283,'wp-content/themes/moesia/license.txt'),(12284,'wp-content/themes/moesia/page.php'),(12285,'wp-content/themes/moesia/page_employees.php'),(12286,'wp-content/themes/moesia/page_front-page.php'),(12287,'wp-content/themes/moesia/page_fullwidth.php'),(12288,'wp-content/themes/moesia/page_services.php'),(12289,'wp-content/themes/moesia/page_testimonials.php'),(12290,'wp-content/themes/moesia/plugins/class-tgm-plugin-activation.php'),(12291,'wp-content/themes/moesia/readme.txt'),(12292,'wp-content/themes/moesia/screenshot.png'),(12293,'wp-content/themes/moesia/search.php'),(12294,'wp-content/themes/moesia/searchform.php'),(12295,'wp-content/themes/moesia/sidebar-footer.php'),(12296,'wp-content/themes/moesia/sidebar.php'),(12297,'wp-content/themes/moesia/single.php'),(12298,'wp-content/themes/moesia/style.css'),(12299,'wp-content/themes/moesia/styles.php'),(12300,'wp-content/themes/moesia/widgets/contact-info.php'),(12301,'wp-content/themes/moesia/widgets/fp-blockquote.php'),(12302,'wp-content/themes/moesia/widgets/fp-call-to-action.php'),(12303,'wp-content/themes/moesia/widgets/fp-clients.php'),(12304,'wp-content/themes/moesia/widgets/fp-employees.php'),(12305,'wp-content/themes/moesia/widgets/fp-facts.php'),(12306,'wp-content/themes/moesia/widgets/fp-latest-news.php'),(12307,'wp-content/themes/moesia/widgets/fp-projects.php'),(12308,'wp-content/themes/moesia/widgets/fp-services.php'),(12309,'wp-content/themes/moesia/widgets/fp-skills.php'),(12310,'wp-content/themes/moesia/widgets/fp-social.php'),(12311,'wp-content/themes/moesia/widgets/fp-testimonials.php'),(12312,'wp-content/themes/moesia/widgets/recent-comments.php'),(12313,'wp-content/themes/moesia/widgets/recent-posts.php'),(12314,'wp-content/themes/moesia/widgets/social-profile.php'),(12315,'wp-content/themes/moesia/widgets/video-widget.php'),(12316,'wp-content/themes/moesia/wpml-config.xml'),(12317,'wp-content/themes/news-viral/404.php'),(12318,'wp-content/themes/news-viral/archive.php'),(12319,'wp-content/themes/news-viral/assets/css/bootstrap.css'),(12320,'wp-content/themes/news-viral/assets/css/default.css'),(12321,'wp-content/themes/news-viral/assets/css/font-awesome.css'),(12322,'wp-content/themes/news-viral/assets/css/menu.css'),(12323,'wp-content/themes/news-viral/assets/css/owl.carousel.css'),(12324,'wp-content/themes/news-viral/assets/fonts/FontAwesome.otf'),(12325,'wp-content/themes/news-viral/assets/fonts/fontawesome-webfont.eot'),(12326,'wp-content/themes/news-viral/assets/fonts/fontawesome-webfont.svg'),(12327,'wp-content/themes/news-viral/assets/fonts/fontawesome-webfont.ttf'),(12328,'wp-content/themes/news-viral/assets/fonts/fontawesome-webfont.woff'),(12329,'wp-content/themes/news-viral/assets/fonts/fontawesome-webfont.woff2'),(12330,'wp-content/themes/news-viral/assets/images/no-image.png'),(12331,'wp-content/themes/news-viral/assets/js/bootstrap.js'),(12332,'wp-content/themes/news-viral/assets/js/menu.js'),(12333,'wp-content/themes/news-viral/assets/js/navigation.js'),(12334,'wp-content/themes/news-viral/assets/js/owl.carousel.js'),(12335,'wp-content/themes/news-viral/comments.php'),(12336,'wp-content/themes/news-viral/footer.php'),(12337,'wp-content/themes/news-viral/frontpage.php'),(12338,'wp-content/themes/news-viral/full-width.php'),(12339,'wp-content/themes/news-viral/functions.php'),(12340,'wp-content/themes/news-viral/header.php'),(12341,'wp-content/themes/news-viral/inc/class-tgm-plugin-activation.php'),(12342,'wp-content/themes/news-viral/inc/custom-header.php'),(12343,'wp-content/themes/news-viral/inc/customizer.php'),(12344,'wp-content/themes/news-viral/inc/enqueue.php'),(12345,'wp-content/themes/news-viral/inc/template-setup.php'),(12346,'wp-content/themes/news-viral/inc/widgets/news-viral-category-widgets-style1/news-viral-category-widgets-style1.php'),(12347,'wp-content/themes/news-viral/inc/widgets/news-viral-category-widgets-style1/style1.css'),(12348,'wp-content/themes/news-viral/inc/widgets/news-viral-category-widgets-style2/news-viral-category-widgets-style2.php'),(12349,'wp-content/themes/news-viral/inc/widgets/news-viral-category-widgets-style2/style2.css'),(12350,'wp-content/themes/news-viral/inc/widgets/news-viral-footer-post-widgets/news-viral-footer-post-widgets.php'),(12351,'wp-content/themes/news-viral/inc/widgets/news-viral-footer-post-widgets/style1.css'),(12352,'wp-content/themes/news-viral/inc/widgets/news-viral-latest-post-slider/news-viral-latest-post-slider.php'),(12353,'wp-content/themes/news-viral/inc/widgets/news-viral-latest-post-slider/style1.css'),(12354,'wp-content/themes/news-viral/index.php'),(12355,'wp-content/themes/news-viral/languages/news-viral.pot'),(12356,'wp-content/themes/news-viral/page.php'),(12357,'wp-content/themes/news-viral/readme.txt'),(12358,'wp-content/themes/news-viral/screenshot.png'),(12359,'wp-content/themes/news-viral/search.php'),(12360,'wp-content/themes/news-viral/sidebar.php'),(12361,'wp-content/themes/news-viral/single.php'),(12362,'wp-content/themes/news-viral/style.css'),(12363,'wp-content/themes/news-viral/template-parts/content-blog.php'),(12364,'wp-content/themes/news-viral/template-parts/content-none.php'),(12365,'wp-content/themes/news-viral/template-parts/content-page-full.php'),(12366,'wp-content/themes/news-viral/template-parts/content-page.php'),(12367,'wp-content/themes/news-viral/template-parts/content-search.php'),(12368,'wp-content/themes/news-viral/template-parts/content.php'),(12369,'wp-content/themes/poseidon/404.php'),(12370,'wp-content/themes/poseidon/archive.php'),(12371,'wp-content/themes/poseidon/assets/css/customizer.css'),(12372,'wp-content/themes/poseidon/assets/css/editor-style.css'),(12373,'wp-content/themes/poseidon/assets/css/editor-styles.css'),(12374,'wp-content/themes/poseidon/assets/css/theme-info.css'),(12375,'wp-content/themes/poseidon/assets/genericons/Genericons.svg'),(12376,'wp-content/themes/poseidon/assets/icons/genericons-neue.svg'),(12377,'wp-content/themes/poseidon/assets/images/default-slider-image.png'),(12378,'wp-content/themes/poseidon/assets/images/magazine-columns.png'),(12379,'wp-content/themes/poseidon/assets/images/magazine-grid.png'),(12380,'wp-content/themes/poseidon/assets/images/magazine-horizontal-box.png'),(12381,'wp-content/themes/poseidon/assets/images/magazine-vertical-box.png'),(12382,'wp-content/themes/poseidon/assets/js/customize-preview.js'),(12383,'wp-content/themes/poseidon/assets/js/customizer-controls.js'),(12384,'wp-content/themes/poseidon/assets/js/customizer-magazine-widgets.js'),(12385,'wp-content/themes/poseidon/assets/js/html5shiv.js'),(12386,'wp-content/themes/poseidon/assets/js/html5shiv.min.js'),(12387,'wp-content/themes/poseidon/assets/js/jquery.flexslider-min.js'),(12388,'wp-content/themes/poseidon/assets/js/jquery.flexslider.js'),(12389,'wp-content/themes/poseidon/assets/js/navigation.js'),(12390,'wp-content/themes/poseidon/assets/js/navigation.min.js'),(12391,'wp-content/themes/poseidon/assets/js/slider.js'),(12392,'wp-content/themes/poseidon/assets/js/sticky-header.js'),(12393,'wp-content/themes/poseidon/assets/js/svgxuse.js'),(12394,'wp-content/themes/poseidon/assets/js/svgxuse.min.js'),(12395,'wp-content/themes/poseidon/comments.php'),(12396,'wp-content/themes/poseidon/footer.php'),(12397,'wp-content/themes/poseidon/functions.php'),(12398,'wp-content/themes/poseidon/header.php'),(12399,'wp-content/themes/poseidon/home.php'),(12400,'wp-content/themes/poseidon/inc/addons.php'),(12401,'wp-content/themes/poseidon/inc/back-compat.php'),(12402,'wp-content/themes/poseidon/inc/customizer/controls/category-dropdown-control.php'),(12403,'wp-content/themes/poseidon/inc/customizer/controls/header-control.php'),(12404,'wp-content/themes/poseidon/inc/customizer/controls/links-control.php'),(12405,'wp-content/themes/poseidon/inc/customizer/controls/magazine-widget-area-control.php'),(12406,'wp-content/themes/poseidon/inc/customizer/controls/plugin-control.php'),(12407,'wp-content/themes/poseidon/inc/customizer/controls/upgrade-control.php'),(12408,'wp-content/themes/poseidon/inc/customizer/customizer.php'),(12409,'wp-content/themes/poseidon/inc/customizer/default-options.php'),(12410,'wp-content/themes/poseidon/inc/customizer/functions/callback-functions.php'),(12411,'wp-content/themes/poseidon/inc/customizer/functions/custom-controls.php'),(12412,'wp-content/themes/poseidon/inc/customizer/functions/magazine-widget-area-control.php'),(12413,'wp-content/themes/poseidon/inc/customizer/functions/sanitize-functions.php'),(12414,'wp-content/themes/poseidon/inc/customizer/sections/customizer-blog.php'),(12415,'wp-content/themes/poseidon/inc/customizer/sections/customizer-general.php'),(12416,'wp-content/themes/poseidon/inc/customizer/sections/customizer-info.php'),(12417,'wp-content/themes/poseidon/inc/customizer/sections/customizer-magazine.php'),(12418,'wp-content/themes/poseidon/inc/customizer/sections/customizer-post.php'),(12419,'wp-content/themes/poseidon/inc/customizer/sections/customizer-slider.php'),(12420,'wp-content/themes/poseidon/inc/customizer/sections/customizer-upgrade.php'),(12421,'wp-content/themes/poseidon/inc/customizer/sections/customizer-website.php'),(12422,'wp-content/themes/poseidon/inc/extras.php'),(12423,'wp-content/themes/poseidon/inc/gutenberg.php'),(12424,'wp-content/themes/poseidon/inc/icons.php'),(12425,'wp-content/themes/poseidon/inc/magazine.php'),(12426,'wp-content/themes/poseidon/inc/slider.php'),(12427,'wp-content/themes/poseidon/inc/template-tags.php'),(12428,'wp-content/themes/poseidon/inc/theme-info.php'),(12429,'wp-content/themes/poseidon/inc/widgets/widget-magazine-posts-columns.php'),(12430,'wp-content/themes/poseidon/inc/widgets/widget-magazine-posts-grid.php'),(12431,'wp-content/themes/poseidon/inc/widgets/widget-magazine-posts-horizontal-box.php'),(12432,'wp-content/themes/poseidon/inc/widgets/widget-magazine-posts-vertical-box.php'),(12433,'wp-content/themes/poseidon/inc/wptt-webfont-loader.php'),(12434,'wp-content/themes/poseidon/index.php'),(12435,'wp-content/themes/poseidon/languages/poseidon.pot'),(12436,'wp-content/themes/poseidon/languages/readme.txt'),(12437,'wp-content/themes/poseidon/page.php'),(12438,'wp-content/themes/poseidon/readme.txt'),(12439,'wp-content/themes/poseidon/rtl.css'),(12440,'wp-content/themes/poseidon/screenshot.jpg'),(12441,'wp-content/themes/poseidon/search.php'),(12442,'wp-content/themes/poseidon/searchform.php'),(12443,'wp-content/themes/poseidon/sidebar.php'),(12444,'wp-content/themes/poseidon/single.php'),(12445,'wp-content/themes/poseidon/style.css'),(12446,'wp-content/themes/poseidon/template-centered.php'),(12447,'wp-content/themes/poseidon/template-fullwidth.php'),(12448,'wp-content/themes/poseidon/template-magazine.php'),(12449,'wp-content/themes/poseidon/template-parts/content-excerpt.php'),(12450,'wp-content/themes/poseidon/template-parts/content-none.php'),(12451,'wp-content/themes/poseidon/template-parts/content-page.php'),(12452,'wp-content/themes/poseidon/template-parts/content-search.php'),(12453,'wp-content/themes/poseidon/template-parts/content-single.php'),(12454,'wp-content/themes/poseidon/template-parts/content-slider.php'),(12455,'wp-content/themes/poseidon/template-parts/content.php'),(12456,'wp-content/themes/poseidon/template-parts/header/site-navigation.php'),(12457,'wp-content/themes/poseidon/template-parts/post-slider.php'),(12458,'wp-content/themes/poseidon/template-parts/widgets/magazine-full-post-list.php'),(12459,'wp-content/themes/poseidon/template-parts/widgets/magazine-full-post.php'),(12460,'wp-content/themes/poseidon/template-parts/widgets/magazine-large-post-horizontal-box.php'),(12461,'wp-content/themes/poseidon/template-parts/widgets/magazine-large-post-sidebar.php'),(12462,'wp-content/themes/poseidon/template-parts/widgets/magazine-large-post.php'),(12463,'wp-content/themes/poseidon/template-parts/widgets/magazine-medium-post.php'),(12464,'wp-content/themes/poseidon/template-parts/widgets/magazine-small-post.php'),(12465,'wp-content/themes/poseidon/template-slider.php'),(12466,'wp-content/themes/reyl-lite/404.php'),(12467,'wp-content/themes/reyl-lite/archive.php'),(12468,'wp-content/themes/reyl-lite/changelog.txt'),(12469,'wp-content/themes/reyl-lite/comments.php'),(12470,'wp-content/themes/reyl-lite/css/admin-styles.css'),(12471,'wp-content/themes/reyl-lite/css/admin-styles.less'),(12472,'wp-content/themes/reyl-lite/css/bootstrap.css'),(12473,'wp-content/themes/reyl-lite/css/editor-style.css'),(12474,'wp-content/themes/reyl-lite/css/theme.css'),(12475,'wp-content/themes/reyl-lite/footer.php'),(12476,'wp-content/themes/reyl-lite/functions.php'),(12477,'wp-content/themes/reyl-lite/header.php'),(12478,'wp-content/themes/reyl-lite/images/header_bck.png'),(12479,'wp-content/themes/reyl-lite/images/quemalabs.png'),(12480,'wp-content/themes/reyl-lite/inc/customizer.php'),(12481,'wp-content/themes/reyl-lite/inc/extras.php'),(12482,'wp-content/themes/reyl-lite/inc/jetpack.php'),(12483,'wp-content/themes/reyl-lite/inc/scripts/scripts.php'),(12484,'wp-content/themes/reyl-lite/inc/scripts/styles.php'),(12485,'wp-content/themes/reyl-lite/inc/scripts/stylesheets.php'),(12486,'wp-content/themes/reyl-lite/inc/template-tags.php'),(12487,'wp-content/themes/reyl-lite/inc/theme-functions/custom-header.php'),(12488,'wp-content/themes/reyl-lite/inc/theme-functions/theme-info-page.php'),(12489,'wp-content/themes/reyl-lite/inc/theme-functions/wp_bootstrap_navwalker.php'),(12490,'wp-content/themes/reyl-lite/index.php'),(12491,'wp-content/themes/reyl-lite/js/bootstrap.js'),(12492,'wp-content/themes/reyl-lite/js/customizer-preview.js'),(12493,'wp-content/themes/reyl-lite/js/customizer.js'),(12494,'wp-content/themes/reyl-lite/js/html5shiv.js'),(12495,'wp-content/themes/reyl-lite/js/modernizr.custom.67069.js'),(12496,'wp-content/themes/reyl-lite/js/pace.js'),(12497,'wp-content/themes/reyl-lite/js/script.js'),(12498,'wp-content/themes/reyl-lite/languages/readme.txt'),(12499,'wp-content/themes/reyl-lite/languages/reyl-lite.pot'),(12500,'wp-content/themes/reyl-lite/less/alerts.less'),(12501,'wp-content/themes/reyl-lite/less/badges.less'),(12502,'wp-content/themes/reyl-lite/less/bootstrap.less'),(12503,'wp-content/themes/reyl-lite/less/breadcrumbs.less'),(12504,'wp-content/themes/reyl-lite/less/button-groups.less'),(12505,'wp-content/themes/reyl-lite/less/buttons.less'),(12506,'wp-content/themes/reyl-lite/less/carousel.less'),(12507,'wp-content/themes/reyl-lite/less/close.less'),(12508,'wp-content/themes/reyl-lite/less/code.less'),(12509,'wp-content/themes/reyl-lite/less/component-animations.less'),(12510,'wp-content/themes/reyl-lite/less/dropdowns.less'),(12511,'wp-content/themes/reyl-lite/less/font-awesome/css/font-awesome.css'),(12512,'wp-content/themes/reyl-lite/less/font-awesome/css/font-awesome.min.css'),(12513,'wp-content/themes/reyl-lite/less/font-awesome/fonts/FontAwesome.otf'),(12514,'wp-content/themes/reyl-lite/less/font-awesome/fonts/fontawesome-webfont.eot'),(12515,'wp-content/themes/reyl-lite/less/font-awesome/fonts/fontawesome-webfont.svg'),(12516,'wp-content/themes/reyl-lite/less/font-awesome/fonts/fontawesome-webfont.ttf'),(12517,'wp-content/themes/reyl-lite/less/font-awesome/fonts/fontawesome-webfont.woff'),(12518,'wp-content/themes/reyl-lite/less/font-awesome/fonts/fontawesome-webfont.woff2'),(12519,'wp-content/themes/reyl-lite/less/font-awesome/less/animated.less'),(12520,'wp-content/themes/reyl-lite/less/font-awesome/less/bordered-pulled.less'),(12521,'wp-content/themes/reyl-lite/less/font-awesome/less/core.less'),(12522,'wp-content/themes/reyl-lite/less/font-awesome/less/fixed-width.less'),(12523,'wp-content/themes/reyl-lite/less/font-awesome/less/font-awesome.less'),(12524,'wp-content/themes/reyl-lite/less/font-awesome/less/icons.less'),(12525,'wp-content/themes/reyl-lite/less/font-awesome/less/larger.less'),(12526,'wp-content/themes/reyl-lite/less/font-awesome/less/list.less'),(12527,'wp-content/themes/reyl-lite/less/font-awesome/less/mixins.less'),(12528,'wp-content/themes/reyl-lite/less/font-awesome/less/path.less'),(12529,'wp-content/themes/reyl-lite/less/font-awesome/less/rotated-flipped.less'),(12530,'wp-content/themes/reyl-lite/less/font-awesome/less/stacked.less'),(12531,'wp-content/themes/reyl-lite/less/font-awesome/less/variables.less'),(12532,'wp-content/themes/reyl-lite/less/forms.less'),(12533,'wp-content/themes/reyl-lite/less/glyphicons.less'),(12534,'wp-content/themes/reyl-lite/less/grid.less'),(12535,'wp-content/themes/reyl-lite/less/input-groups.less'),(12536,'wp-content/themes/reyl-lite/less/jumbotron.less'),(12537,'wp-content/themes/reyl-lite/less/labels.less'),(12538,'wp-content/themes/reyl-lite/less/list-group.less'),(12539,'wp-content/themes/reyl-lite/less/media.less'),(12540,'wp-content/themes/reyl-lite/less/mixins/alerts.less'),(12541,'wp-content/themes/reyl-lite/less/mixins/background-variant.less'),(12542,'wp-content/themes/reyl-lite/less/mixins/border-radius.less'),(12543,'wp-content/themes/reyl-lite/less/mixins/buttons.less'),(12544,'wp-content/themes/reyl-lite/less/mixins/center-block.less'),(12545,'wp-content/themes/reyl-lite/less/mixins/clearfix.less'),(12546,'wp-content/themes/reyl-lite/less/mixins/forms.less'),(12547,'wp-content/themes/reyl-lite/less/mixins/gradients.less'),(12548,'wp-content/themes/reyl-lite/less/mixins/grid-framework.less'),(12549,'wp-content/themes/reyl-lite/less/mixins/grid.less'),(12550,'wp-content/themes/reyl-lite/less/mixins/hide-text.less'),(12551,'wp-content/themes/reyl-lite/less/mixins/image.less');
INSERT INTO `wpjj_wfKnownFileList` (`id`, `path`) VALUES (12552,'wp-content/themes/reyl-lite/less/mixins/labels.less'),(12553,'wp-content/themes/reyl-lite/less/mixins/list-group.less'),(12554,'wp-content/themes/reyl-lite/less/mixins/nav-divider.less'),(12555,'wp-content/themes/reyl-lite/less/mixins/nav-vertical-align.less'),(12556,'wp-content/themes/reyl-lite/less/mixins/opacity.less'),(12557,'wp-content/themes/reyl-lite/less/mixins/pagination.less'),(12558,'wp-content/themes/reyl-lite/less/mixins/panels.less'),(12559,'wp-content/themes/reyl-lite/less/mixins/progress-bar.less'),(12560,'wp-content/themes/reyl-lite/less/mixins/reset-filter.less'),(12561,'wp-content/themes/reyl-lite/less/mixins/resize.less'),(12562,'wp-content/themes/reyl-lite/less/mixins/responsive-visibility.less'),(12563,'wp-content/themes/reyl-lite/less/mixins/size.less'),(12564,'wp-content/themes/reyl-lite/less/mixins/tab-focus.less'),(12565,'wp-content/themes/reyl-lite/less/mixins/table-row.less'),(12566,'wp-content/themes/reyl-lite/less/mixins/text-emphasis.less'),(12567,'wp-content/themes/reyl-lite/less/mixins/text-overflow.less'),(12568,'wp-content/themes/reyl-lite/less/mixins/vendor-prefixes.less'),(12569,'wp-content/themes/reyl-lite/less/mixins.less'),(12570,'wp-content/themes/reyl-lite/less/modals.less'),(12571,'wp-content/themes/reyl-lite/less/navbar.less'),(12572,'wp-content/themes/reyl-lite/less/navs.less'),(12573,'wp-content/themes/reyl-lite/less/normalize.less'),(12574,'wp-content/themes/reyl-lite/less/pager.less'),(12575,'wp-content/themes/reyl-lite/less/pagination.less'),(12576,'wp-content/themes/reyl-lite/less/panels.less'),(12577,'wp-content/themes/reyl-lite/less/popovers.less'),(12578,'wp-content/themes/reyl-lite/less/print.less'),(12579,'wp-content/themes/reyl-lite/less/progress-bars.less'),(12580,'wp-content/themes/reyl-lite/less/responsive-embed.less'),(12581,'wp-content/themes/reyl-lite/less/responsive-utilities.less'),(12582,'wp-content/themes/reyl-lite/less/scaffolding.less'),(12583,'wp-content/themes/reyl-lite/less/tables.less'),(12584,'wp-content/themes/reyl-lite/less/theme.less'),(12585,'wp-content/themes/reyl-lite/less/thumbnails.less'),(12586,'wp-content/themes/reyl-lite/less/tooltip.less'),(12587,'wp-content/themes/reyl-lite/less/type.less'),(12588,'wp-content/themes/reyl-lite/less/utilities.less'),(12589,'wp-content/themes/reyl-lite/less/variables.less'),(12590,'wp-content/themes/reyl-lite/less/wells.less'),(12591,'wp-content/themes/reyl-lite/page.php'),(12592,'wp-content/themes/reyl-lite/readme.txt'),(12593,'wp-content/themes/reyl-lite/rtl.css'),(12594,'wp-content/themes/reyl-lite/screenshot.png'),(12595,'wp-content/themes/reyl-lite/search.php'),(12596,'wp-content/themes/reyl-lite/single.php'),(12597,'wp-content/themes/reyl-lite/style.css'),(12598,'wp-content/themes/reyl-lite/style.less'),(12599,'wp-content/themes/reyl-lite/template-parts/content-none.php'),(12600,'wp-content/themes/reyl-lite/template-parts/content-page.php'),(12601,'wp-content/themes/reyl-lite/template-parts/content-search.php'),(12602,'wp-content/themes/reyl-lite/template-parts/content-single.php'),(12603,'wp-content/themes/reyl-lite/template-parts/content.php'),(12604,'wp-content/themes/reyl-lite/template-parts/pagination.php'),(12605,'wp-content/themes/reyl-lite/template-parts/social-menu.php'),(12606,'wp-content/themes/reyl-lite/theme_less/_animate.min.less'),(12607,'wp-content/themes/reyl-lite/theme_less/_blog-pages.less'),(12608,'wp-content/themes/reyl-lite/theme_less/_comments.less'),(12609,'wp-content/themes/reyl-lite/theme_less/_external-plugins.less'),(12610,'wp-content/themes/reyl-lite/theme_less/_footer.less'),(12611,'wp-content/themes/reyl-lite/theme_less/_global.less'),(12612,'wp-content/themes/reyl-lite/theme_less/_header.less'),(12613,'wp-content/themes/reyl-lite/theme_less/_mediaquery-lg.less'),(12614,'wp-content/themes/reyl-lite/theme_less/_mediaquery-md.less'),(12615,'wp-content/themes/reyl-lite/theme_less/_mediaquery-sm.less'),(12616,'wp-content/themes/reyl-lite/theme_less/_mediaquery-xs.less'),(12617,'wp-content/themes/reyl-lite/theme_less/_pace.less'),(12618,'wp-content/themes/reyl-lite/theme_less/_sidebar.less'),(12619,'wp-content/themes/reyl-lite/theme_less/_wp-default.less'),(12620,'wp-content/themes/skt-toothy/404.php'),(12621,'wp-content/themes/skt-toothy/archive.php'),(12622,'wp-content/themes/skt-toothy/category.php'),(12623,'wp-content/themes/skt-toothy/change_log.txt'),(12624,'wp-content/themes/skt-toothy/class-tgm-plugin-activation.php'),(12625,'wp-content/themes/skt-toothy/comments.php'),(12626,'wp-content/themes/skt-toothy/content-single.php'),(12627,'wp-content/themes/skt-toothy/content.php'),(12628,'wp-content/themes/skt-toothy/css/nivo-slider.css'),(12629,'wp-content/themes/skt-toothy/css/responsive.css'),(12630,'wp-content/themes/skt-toothy/css/style_base.css'),(12631,'wp-content/themes/skt-toothy/customize-pro/example-1/class-customize.php'),(12632,'wp-content/themes/skt-toothy/customize-pro/example-1/customize-controls.css'),(12633,'wp-content/themes/skt-toothy/customize-pro/example-1/customize-controls.js'),(12634,'wp-content/themes/skt-toothy/customize-pro/example-1/section-pro.php'),(12635,'wp-content/themes/skt-toothy/editor-style.css'),(12636,'wp-content/themes/skt-toothy/footer.php'),(12637,'wp-content/themes/skt-toothy/front-page.php'),(12638,'wp-content/themes/skt-toothy/functions.php'),(12639,'wp-content/themes/skt-toothy/header.php'),(12640,'wp-content/themes/skt-toothy/image.php'),(12641,'wp-content/themes/skt-toothy/images/footer-icon-email.png'),(12642,'wp-content/themes/skt-toothy/images/footer-icon-phone.png'),(12643,'wp-content/themes/skt-toothy/images/free-vs-pro.png'),(12644,'wp-content/themes/skt-toothy/images/icon-clock.png'),(12645,'wp-content/themes/skt-toothy/images/icon-email.png'),(12646,'wp-content/themes/skt-toothy/images/icon-fb.png'),(12647,'wp-content/themes/skt-toothy/images/icon-gp.png'),(12648,'wp-content/themes/skt-toothy/images/icon-in.png'),(12649,'wp-content/themes/skt-toothy/images/icon-insta.png'),(12650,'wp-content/themes/skt-toothy/images/icon-medical.png'),(12651,'wp-content/themes/skt-toothy/images/icon-medical2.png'),(12652,'wp-content/themes/skt-toothy/images/icon-phone.png'),(12653,'wp-content/themes/skt-toothy/images/icon-tw.png'),(12654,'wp-content/themes/skt-toothy/images/img_404.jpg'),(12655,'wp-content/themes/skt-toothy/images/instagram.png'),(12656,'wp-content/themes/skt-toothy/images/list-arrow.png'),(12657,'wp-content/themes/skt-toothy/images/loading.gif'),(12658,'wp-content/themes/skt-toothy/images/location-icon.png'),(12659,'wp-content/themes/skt-toothy/images/mobile_nav_right.png'),(12660,'wp-content/themes/skt-toothy/images/page-image-1.png'),(12661,'wp-content/themes/skt-toothy/images/page-image-2.png'),(12662,'wp-content/themes/skt-toothy/images/page-image-3.png'),(12663,'wp-content/themes/skt-toothy/images/page-image-4.png'),(12664,'wp-content/themes/skt-toothy/images/search-icon.png'),(12665,'wp-content/themes/skt-toothy/images/sktskill.jpg'),(12666,'wp-content/themes/skt-toothy/images/slide-nav.png'),(12667,'wp-content/themes/skt-toothy/images/slides/slider1.jpg'),(12668,'wp-content/themes/skt-toothy/images/slides/slider2.jpg'),(12669,'wp-content/themes/skt-toothy/images/slides/slider3.jpg'),(12670,'wp-content/themes/skt-toothy/inc/about-themes.php'),(12671,'wp-content/themes/skt-toothy/inc/custom-header.php'),(12672,'wp-content/themes/skt-toothy/inc/customizer.php'),(12673,'wp-content/themes/skt-toothy/inc/extras.php'),(12674,'wp-content/themes/skt-toothy/inc/template-tags.php'),(12675,'wp-content/themes/skt-toothy/index.php'),(12676,'wp-content/themes/skt-toothy/js/custom.js'),(12677,'wp-content/themes/skt-toothy/js/customize-preview.js'),(12678,'wp-content/themes/skt-toothy/js/jquery.nivo.slider.js'),(12679,'wp-content/themes/skt-toothy/languages/readme.txt'),(12680,'wp-content/themes/skt-toothy/languages/skt-toothy.pot'),(12681,'wp-content/themes/skt-toothy/license.txt'),(12682,'wp-content/themes/skt-toothy/no-results.php'),(12683,'wp-content/themes/skt-toothy/page.php'),(12684,'wp-content/themes/skt-toothy/readme.txt'),(12685,'wp-content/themes/skt-toothy/screenshot.png'),(12686,'wp-content/themes/skt-toothy/search.php'),(12687,'wp-content/themes/skt-toothy/searchform.php'),(12688,'wp-content/themes/skt-toothy/sidebar.php'),(12689,'wp-content/themes/skt-toothy/single.php'),(12690,'wp-content/themes/skt-toothy/style.css'),(12691,'wp-content/themes/skt-toothy/woocommerce.php'),(12692,'wp-content/themes/start-press/archive.php'),(12693,'wp-content/themes/start-press/comments.php'),(12694,'wp-content/themes/start-press/content-single.php'),(12695,'wp-content/themes/start-press/content.php'),(12696,'wp-content/themes/start-press/css/animate.css'),(12697,'wp-content/themes/start-press/css/bootstrap.css'),(12698,'wp-content/themes/start-press/css/font-awesome.css'),(12699,'wp-content/themes/start-press/css/images/icon-search.png'),(12700,'wp-content/themes/start-press/css/images/slider_next.png'),(12701,'wp-content/themes/start-press/css/images/slider_prev.png'),(12702,'wp-content/themes/start-press/fonts/FontAwesome.otf'),(12703,'wp-content/themes/start-press/fonts/Oswald-Regular-400.woff'),(12704,'wp-content/themes/start-press/fonts/fontawesome-webfont.eot'),(12705,'wp-content/themes/start-press/fonts/fontawesome-webfont.svg'),(12706,'wp-content/themes/start-press/fonts/fontawesome-webfont.ttf'),(12707,'wp-content/themes/start-press/fonts/fontawesome-webfont.woff'),(12708,'wp-content/themes/start-press/fonts/fontawesome-webfont.woff2'),(12709,'wp-content/themes/start-press/fonts/glyphicons-halflings-regular.eot'),(12710,'wp-content/themes/start-press/fonts/glyphicons-halflings-regular.svg'),(12711,'wp-content/themes/start-press/fonts/glyphicons-halflings-regular.ttf'),(12712,'wp-content/themes/start-press/fonts/glyphicons-halflings-regular.woff'),(12713,'wp-content/themes/start-press/fonts/glyphicons-halflings-regular.woff2'),(12714,'wp-content/themes/start-press/footer.php'),(12715,'wp-content/themes/start-press/functions.php'),(12716,'wp-content/themes/start-press/header.php'),(12717,'wp-content/themes/start-press/images/default-banner.gif'),(12718,'wp-content/themes/start-press/images/status.gif'),(12719,'wp-content/themes/start-press/includes/custom-style.php'),(12720,'wp-content/themes/start-press/includes/customization.php'),(12721,'wp-content/themes/start-press/includes/init-theme-options.php'),(12722,'wp-content/themes/start-press/includes/set-up-assets.php'),(12723,'wp-content/themes/start-press/includes/start-press-recent-posts.php'),(12724,'wp-content/themes/start-press/index.php'),(12725,'wp-content/themes/start-press/js/bootstrap.js'),(12726,'wp-content/themes/start-press/js/custom.js'),(12727,'wp-content/themes/start-press/js/html5shiv.js'),(12728,'wp-content/themes/start-press/js/respond.js'),(12729,'wp-content/themes/start-press/js/scripts.js'),(12730,'wp-content/themes/start-press/js/wow.js'),(12731,'wp-content/themes/start-press/page.php'),(12732,'wp-content/themes/start-press/partials/head.php'),(12733,'wp-content/themes/start-press/partials/home-body.php'),(12734,'wp-content/themes/start-press/partials/navbar.php'),(12735,'wp-content/themes/start-press/partials/slides.php'),(12736,'wp-content/themes/start-press/partials/top-nav.php'),(12737,'wp-content/themes/start-press/readme.txt'),(12738,'wp-content/themes/start-press/screenshot.jpg'),(12739,'wp-content/themes/start-press/sidebar.php'),(12740,'wp-content/themes/start-press/single.php'),(12741,'wp-content/themes/start-press/style.css'),(12742,'wp-content/themes/start-press/wp-bootstrap-navwalker.php'),(12743,'wp-content/themes/storto/404.php'),(12744,'wp-content/themes/storto/archive.php'),(12745,'wp-content/themes/storto/comments.php'),(12746,'wp-content/themes/storto/content-none.php'),(12747,'wp-content/themes/storto/content-page.php'),(12748,'wp-content/themes/storto/content-search.php'),(12749,'wp-content/themes/storto/content-single.php'),(12750,'wp-content/themes/storto/content.php'),(12751,'wp-content/themes/storto/css/font-awesome.css'),(12752,'wp-content/themes/storto/css/font-awesome.min.css'),(12753,'wp-content/themes/storto/css/gutenberg-editor-style.css'),(12754,'wp-content/themes/storto/fonts/FontAwesome.otf'),(12755,'wp-content/themes/storto/fonts/fontawesome-webfont.eot'),(12756,'wp-content/themes/storto/fonts/fontawesome-webfont.svg'),(12757,'wp-content/themes/storto/fonts/fontawesome-webfont.ttf'),(12758,'wp-content/themes/storto/fonts/fontawesome-webfont.woff'),(12759,'wp-content/themes/storto/fonts/fontawesome-webfont.woff2'),(12760,'wp-content/themes/storto/footer.php'),(12761,'wp-content/themes/storto/functions.php'),(12762,'wp-content/themes/storto/header.php'),(12763,'wp-content/themes/storto/images/goto.png'),(12764,'wp-content/themes/storto/inc/customizer.php'),(12765,'wp-content/themes/storto/inc/extras.php'),(12766,'wp-content/themes/storto/inc/jetpack.php'),(12767,'wp-content/themes/storto/inc/pro-button/Button.php'),(12768,'wp-content/themes/storto/inc/pro-button/class-customize.php'),(12769,'wp-content/themes/storto/inc/pro-button/customize-controls.css'),(12770,'wp-content/themes/storto/inc/pro-button/customize-controls.js'),(12771,'wp-content/themes/storto/inc/pro-button/section-pro.php'),(12772,'wp-content/themes/storto/inc/storto-dynamic.php'),(12773,'wp-content/themes/storto/inc/template-tags.php'),(12774,'wp-content/themes/storto/index.php'),(12775,'wp-content/themes/storto/js/customizer.js'),(12776,'wp-content/themes/storto/js/jquery.storto.js'),(12777,'wp-content/themes/storto/js/jquery.storto.min.js'),(12778,'wp-content/themes/storto/js/navigation.js'),(12779,'wp-content/themes/storto/js/navigation.min.js'),(12780,'wp-content/themes/storto/js/theia-sticky-sidebar.js'),(12781,'wp-content/themes/storto/js/theia-sticky-sidebar.min.js'),(12782,'wp-content/themes/storto/languages/readme.txt'),(12783,'wp-content/themes/storto/languages/storto.pot'),(12784,'wp-content/themes/storto/page.php'),(12785,'wp-content/themes/storto/readme.txt'),(12786,'wp-content/themes/storto/screenshot.png'),(12787,'wp-content/themes/storto/search.php'),(12788,'wp-content/themes/storto/sidebar.php'),(12789,'wp-content/themes/storto/single.php'),(12790,'wp-content/themes/storto/style.css'),(12791,'wp-content/themes/storto/wpml-config.xml'),(12792,'wp-content/themes/twentyfifteen/404.php'),(12793,'wp-content/themes/twentyfifteen/archive.php'),(12794,'wp-content/themes/twentyfifteen/assets/pier-seagull.jpg'),(12795,'wp-content/themes/twentyfifteen/assets/pier-seagulls.jpg'),(12796,'wp-content/themes/twentyfifteen/assets/pier-sunset.jpg'),(12797,'wp-content/themes/twentyfifteen/author-bio.php'),(12798,'wp-content/themes/twentyfifteen/comments.php'),(12799,'wp-content/themes/twentyfifteen/content-link.php'),(12800,'wp-content/themes/twentyfifteen/content-none.php'),(12801,'wp-content/themes/twentyfifteen/content-page.php'),(12802,'wp-content/themes/twentyfifteen/content-search.php'),(12803,'wp-content/themes/twentyfifteen/content.php'),(12804,'wp-content/themes/twentyfifteen/css/blocks.css'),(12805,'wp-content/themes/twentyfifteen/css/editor-blocks.css'),(12806,'wp-content/themes/twentyfifteen/css/editor-style.css'),(12807,'wp-content/themes/twentyfifteen/css/ie.css'),(12808,'wp-content/themes/twentyfifteen/css/ie7.css'),(12809,'wp-content/themes/twentyfifteen/footer.php'),(12810,'wp-content/themes/twentyfifteen/functions.php'),(12811,'wp-content/themes/twentyfifteen/genericons/COPYING.txt'),(12812,'wp-content/themes/twentyfifteen/genericons/Genericons.eot'),(12813,'wp-content/themes/twentyfifteen/genericons/Genericons.svg'),(12814,'wp-content/themes/twentyfifteen/genericons/Genericons.ttf'),(12815,'wp-content/themes/twentyfifteen/genericons/Genericons.woff'),(12816,'wp-content/themes/twentyfifteen/genericons/LICENSE.txt'),(12817,'wp-content/themes/twentyfifteen/genericons/README.md'),(12818,'wp-content/themes/twentyfifteen/genericons/genericons.css'),(12819,'wp-content/themes/twentyfifteen/header.php'),(12820,'wp-content/themes/twentyfifteen/image.php'),(12821,'wp-content/themes/twentyfifteen/inc/back-compat.php'),(12822,'wp-content/themes/twentyfifteen/inc/block-patterns.php'),(12823,'wp-content/themes/twentyfifteen/inc/custom-header.php'),(12824,'wp-content/themes/twentyfifteen/inc/customizer.php'),(12825,'wp-content/themes/twentyfifteen/inc/template-tags.php'),(12826,'wp-content/themes/twentyfifteen/index.php'),(12827,'wp-content/themes/twentyfifteen/js/color-scheme-control.js'),(12828,'wp-content/themes/twentyfifteen/js/customize-preview.js'),(12829,'wp-content/themes/twentyfifteen/js/functions.js'),(12830,'wp-content/themes/twentyfifteen/js/html5.js'),(12831,'wp-content/themes/twentyfifteen/js/keyboard-image-navigation.js'),(12832,'wp-content/themes/twentyfifteen/js/skip-link-focus-fix.js'),(12833,'wp-content/themes/twentyfifteen/page.php'),(12834,'wp-content/themes/twentyfifteen/readme.txt'),(12835,'wp-content/themes/twentyfifteen/rtl.css'),(12836,'wp-content/themes/twentyfifteen/screenshot.png'),(12837,'wp-content/themes/twentyfifteen/search.php'),(12838,'wp-content/themes/twentyfifteen/sidebar.php'),(12839,'wp-content/themes/twentyfifteen/single.php'),(12840,'wp-content/themes/twentyfifteen/style.css'),(12841,'wp-content/themes/twentynineteen/404.php'),(12842,'wp-content/themes/twentynineteen/archive.php'),(12843,'wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php'),(12844,'wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php'),(12845,'wp-content/themes/twentynineteen/comments.php'),(12846,'wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff'),(12847,'wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff2'),(12848,'wp-content/themes/twentynineteen/footer.php'),(12849,'wp-content/themes/twentynineteen/functions.php'),(12850,'wp-content/themes/twentynineteen/header.php'),(12851,'wp-content/themes/twentynineteen/image.php'),(12852,'wp-content/themes/twentynineteen/images/pattern_01.jpg'),(12853,'wp-content/themes/twentynineteen/images/pattern_02.jpg'),(12854,'wp-content/themes/twentynineteen/images/pattern_03.jpg'),(12855,'wp-content/themes/twentynineteen/images/pattern_04.jpg'),(12856,'wp-content/themes/twentynineteen/inc/back-compat.php'),(12857,'wp-content/themes/twentynineteen/inc/block-patterns.php'),(12858,'wp-content/themes/twentynineteen/inc/color-patterns.php'),(12859,'wp-content/themes/twentynineteen/inc/customizer.php'),(12860,'wp-content/themes/twentynineteen/inc/helper-functions.php'),(12861,'wp-content/themes/twentynineteen/inc/icon-functions.php'),(12862,'wp-content/themes/twentynineteen/inc/template-functions.php'),(12863,'wp-content/themes/twentynineteen/inc/template-tags.php'),(12864,'wp-content/themes/twentynineteen/index.php'),(12865,'wp-content/themes/twentynineteen/js/customize-controls.js'),(12866,'wp-content/themes/twentynineteen/js/customize-preview.js'),(12867,'wp-content/themes/twentynineteen/js/priority-menu.js'),(12868,'wp-content/themes/twentynineteen/js/skip-link-focus-fix.js'),(12869,'wp-content/themes/twentynineteen/js/touch-keyboard-navigation.js'),(12870,'wp-content/themes/twentynineteen/package-lock.json'),(12871,'wp-content/themes/twentynineteen/package.json'),(12872,'wp-content/themes/twentynineteen/page.php'),(12873,'wp-content/themes/twentynineteen/postcss.config.js'),(12874,'wp-content/themes/twentynineteen/print.css'),(12875,'wp-content/themes/twentynineteen/print.scss'),(12876,'wp-content/themes/twentynineteen/readme.txt'),(12877,'wp-content/themes/twentynineteen/sass/_normalize.scss'),(12878,'wp-content/themes/twentynineteen/sass/blocks/_blocks.scss'),(12879,'wp-content/themes/twentynineteen/sass/elements/_elements.scss'),(12880,'wp-content/themes/twentynineteen/sass/elements/_lists.scss'),(12881,'wp-content/themes/twentynineteen/sass/elements/_tables.scss'),(12882,'wp-content/themes/twentynineteen/sass/forms/_buttons.scss'),(12883,'wp-content/themes/twentynineteen/sass/forms/_fields.scss'),(12884,'wp-content/themes/twentynineteen/sass/forms/_forms.scss'),(12885,'wp-content/themes/twentynineteen/sass/layout/_layout.scss'),(12886,'wp-content/themes/twentynineteen/sass/media/_captions.scss'),(12887,'wp-content/themes/twentynineteen/sass/media/_galleries.scss'),(12888,'wp-content/themes/twentynineteen/sass/media/_media.scss'),(12889,'wp-content/themes/twentynineteen/sass/mixins/_mixins-master.scss'),(12890,'wp-content/themes/twentynineteen/sass/mixins/_utilities.scss'),(12891,'wp-content/themes/twentynineteen/sass/modules/_accessibility.scss'),(12892,'wp-content/themes/twentynineteen/sass/modules/_alignments.scss'),(12893,'wp-content/themes/twentynineteen/sass/modules/_clearings.scss'),(12894,'wp-content/themes/twentynineteen/sass/navigation/_links.scss'),(12895,'wp-content/themes/twentynineteen/sass/navigation/_menu-footer-navigation.scss'),(12896,'wp-content/themes/twentynineteen/sass/navigation/_menu-main-navigation.scss'),(12897,'wp-content/themes/twentynineteen/sass/navigation/_menu-social-navigation.scss'),(12898,'wp-content/themes/twentynineteen/sass/navigation/_navigation.scss'),(12899,'wp-content/themes/twentynineteen/sass/navigation/_next-previous.scss'),(12900,'wp-content/themes/twentynineteen/sass/site/_site.scss'),(12901,'wp-content/themes/twentynineteen/sass/site/footer/_site-footer.scss'),(12902,'wp-content/themes/twentynineteen/sass/site/header/_site-featured-image.scss'),(12903,'wp-content/themes/twentynineteen/sass/site/header/_site-header.scss'),(12904,'wp-content/themes/twentynineteen/sass/site/primary/_archives.scss'),(12905,'wp-content/themes/twentynineteen/sass/site/primary/_comments.scss'),(12906,'wp-content/themes/twentynineteen/sass/site/primary/_posts-and-pages.scss'),(12907,'wp-content/themes/twentynineteen/sass/site/secondary/_widgets.scss'),(12908,'wp-content/themes/twentynineteen/sass/typography/_copy.scss'),(12909,'wp-content/themes/twentynineteen/sass/typography/_headings.scss'),(12910,'wp-content/themes/twentynineteen/sass/typography/_typography.scss'),(12911,'wp-content/themes/twentynineteen/sass/variables-site/_colors.scss'),(12912,'wp-content/themes/twentynineteen/sass/variables-site/_columns.scss'),(12913,'wp-content/themes/twentynineteen/sass/variables-site/_fonts.scss'),(12914,'wp-content/themes/twentynineteen/sass/variables-site/_structure.scss'),(12915,'wp-content/themes/twentynineteen/sass/variables-site/_transitions.scss'),(12916,'wp-content/themes/twentynineteen/sass/variables-site/_variables-site.scss'),(12917,'wp-content/themes/twentynineteen/screenshot.png'),(12918,'wp-content/themes/twentynineteen/search.php'),(12919,'wp-content/themes/twentynineteen/single.php'),(12920,'wp-content/themes/twentynineteen/style-editor-customizer.css'),(12921,'wp-content/themes/twentynineteen/style-editor-customizer.scss'),(12922,'wp-content/themes/twentynineteen/style-editor.css'),(12923,'wp-content/themes/twentynineteen/style-editor.scss'),(12924,'wp-content/themes/twentynineteen/style-rtl.css'),(12925,'wp-content/themes/twentynineteen/style.css'),(12926,'wp-content/themes/twentynineteen/style.css.map'),(12927,'wp-content/themes/twentynineteen/style.scss'),(12928,'wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php'),(12929,'wp-content/themes/twentynineteen/template-parts/content/content-none.php'),(12930,'wp-content/themes/twentynineteen/template-parts/content/content-page.php'),(12931,'wp-content/themes/twentynineteen/template-parts/content/content-single.php'),(12932,'wp-content/themes/twentynineteen/template-parts/content/content.php'),(12933,'wp-content/themes/twentynineteen/template-parts/footer/footer-widgets.php'),(12934,'wp-content/themes/twentynineteen/template-parts/header/entry-header.php'),(12935,'wp-content/themes/twentynineteen/template-parts/header/site-branding.php'),(12936,'wp-content/themes/twentynineteen/template-parts/post/author-bio.php'),(12937,'wp-content/themes/twentynineteen/template-parts/post/discussion-meta.php'),(12938,'wp-content/themes/twentyseventeen/404.php'),(12939,'wp-content/themes/twentyseventeen/archive.php'),(12940,'wp-content/themes/twentyseventeen/assets/css/blocks.css'),(12941,'wp-content/themes/twentyseventeen/assets/css/colors-dark.css'),(12942,'wp-content/themes/twentyseventeen/assets/css/editor-blocks.css'),(12943,'wp-content/themes/twentyseventeen/assets/css/editor-style.css'),(12944,'wp-content/themes/twentyseventeen/assets/css/ie8.css'),(12945,'wp-content/themes/twentyseventeen/assets/css/ie9.css'),(12946,'wp-content/themes/twentyseventeen/assets/images/coffee.jpg'),(12947,'wp-content/themes/twentyseventeen/assets/images/direct-light.jpg'),(12948,'wp-content/themes/twentyseventeen/assets/images/espresso.jpg'),(12949,'wp-content/themes/twentyseventeen/assets/images/header.jpg'),(12950,'wp-content/themes/twentyseventeen/assets/images/sandwich.jpg'),(12951,'wp-content/themes/twentyseventeen/assets/images/stripes.jpg'),(12952,'wp-content/themes/twentyseventeen/assets/images/svg-icons.svg'),(12953,'wp-content/themes/twentyseventeen/assets/images/white-border.jpg'),(12954,'wp-content/themes/twentyseventeen/assets/js/customize-controls.js'),(12955,'wp-content/themes/twentyseventeen/assets/js/customize-preview.js'),(12956,'wp-content/themes/twentyseventeen/assets/js/global.js'),(12957,'wp-content/themes/twentyseventeen/assets/js/html5.js'),(12958,'wp-content/themes/twentyseventeen/assets/js/jquery.scrollTo.js'),(12959,'wp-content/themes/twentyseventeen/assets/js/navigation.js'),(12960,'wp-content/themes/twentyseventeen/assets/js/skip-link-focus-fix.js'),(12961,'wp-content/themes/twentyseventeen/comments.php'),(12962,'wp-content/themes/twentyseventeen/footer.php'),(12963,'wp-content/themes/twentyseventeen/front-page.php'),(12964,'wp-content/themes/twentyseventeen/functions.php'),(12965,'wp-content/themes/twentyseventeen/functions.php.orig'),(12966,'wp-content/themes/twentyseventeen/header.php'),(12967,'wp-content/themes/twentyseventeen/inc/back-compat.php'),(12968,'wp-content/themes/twentyseventeen/inc/block-patterns.php'),(12969,'wp-content/themes/twentyseventeen/inc/color-patterns.php'),(12970,'wp-content/themes/twentyseventeen/inc/custom-header.php'),(12971,'wp-content/themes/twentyseventeen/inc/customizer.php'),(12972,'wp-content/themes/twentyseventeen/inc/customizer.php.orig'),(12973,'wp-content/themes/twentyseventeen/inc/icon-functions.php'),(12974,'wp-content/themes/twentyseventeen/inc/template-functions.php'),(12975,'wp-content/themes/twentyseventeen/inc/template-tags.php'),(12976,'wp-content/themes/twentyseventeen/index.php'),(12977,'wp-content/themes/twentyseventeen/page.php'),(12978,'wp-content/themes/twentyseventeen/readme.txt'),(12979,'wp-content/themes/twentyseventeen/rtl.css'),(12980,'wp-content/themes/twentyseventeen/screenshot.png'),(12981,'wp-content/themes/twentyseventeen/search.php'),(12982,'wp-content/themes/twentyseventeen/searchform.php'),(12983,'wp-content/themes/twentyseventeen/sidebar.php'),(12984,'wp-content/themes/twentyseventeen/single.php'),(12985,'wp-content/themes/twentyseventeen/style.css'),(12986,'wp-content/themes/twentyseventeen/template-parts/footer/footer-widgets.php'),(12987,'wp-content/themes/twentyseventeen/template-parts/footer/site-info.php'),(12988,'wp-content/themes/twentyseventeen/template-parts/header/header-image.php'),(12989,'wp-content/themes/twentyseventeen/template-parts/header/site-branding.php'),(12990,'wp-content/themes/twentyseventeen/template-parts/navigation/navigation-top.php'),(12991,'wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php'),(12992,'wp-content/themes/twentyseventeen/template-parts/page/content-front-page.php'),(12993,'wp-content/themes/twentyseventeen/template-parts/page/content-page.php'),(12994,'wp-content/themes/twentyseventeen/template-parts/post/content-audio.php'),(12995,'wp-content/themes/twentyseventeen/template-parts/post/content-excerpt.php'),(12996,'wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php'),(12997,'wp-content/themes/twentyseventeen/template-parts/post/content-image.php'),(12998,'wp-content/themes/twentyseventeen/template-parts/post/content-none.php'),(12999,'wp-content/themes/twentyseventeen/template-parts/post/content-video.php'),(13000,'wp-content/themes/twentyseventeen/template-parts/post/content.php'),(13001,'wp-content/themes/twentysixteen/404.php'),(13002,'wp-content/themes/twentysixteen/archive.php'),(13003,'wp-content/themes/twentysixteen/comments.php'),(13004,'wp-content/themes/twentysixteen/css/blocks.css'),(13005,'wp-content/themes/twentysixteen/css/editor-blocks.css'),(13006,'wp-content/themes/twentysixteen/css/editor-style.css'),(13007,'wp-content/themes/twentysixteen/css/ie.css'),(13008,'wp-content/themes/twentysixteen/css/ie7.css'),(13009,'wp-content/themes/twentysixteen/css/ie8.css'),(13010,'wp-content/themes/twentysixteen/footer.php'),(13011,'wp-content/themes/twentysixteen/functions.php'),(13012,'wp-content/themes/twentysixteen/genericons/COPYING.txt'),(13013,'wp-content/themes/twentysixteen/genericons/Genericons.eot'),(13014,'wp-content/themes/twentysixteen/genericons/Genericons.svg'),(13015,'wp-content/themes/twentysixteen/genericons/Genericons.ttf'),(13016,'wp-content/themes/twentysixteen/genericons/Genericons.woff'),(13017,'wp-content/themes/twentysixteen/genericons/LICENSE.txt'),(13018,'wp-content/themes/twentysixteen/genericons/README.md'),(13019,'wp-content/themes/twentysixteen/genericons/genericons.css'),(13020,'wp-content/themes/twentysixteen/header.php'),(13021,'wp-content/themes/twentysixteen/image.php'),(13022,'wp-content/themes/twentysixteen/inc/back-compat.php'),(13023,'wp-content/themes/twentysixteen/inc/block-patterns.php'),(13024,'wp-content/themes/twentysixteen/inc/customizer.php'),(13025,'wp-content/themes/twentysixteen/inc/template-tags.php'),(13026,'wp-content/themes/twentysixteen/index.php'),(13027,'wp-content/themes/twentysixteen/js/color-scheme-control.js'),(13028,'wp-content/themes/twentysixteen/js/customize-preview.js'),(13029,'wp-content/themes/twentysixteen/js/functions.js'),(13030,'wp-content/themes/twentysixteen/js/html5.js'),(13031,'wp-content/themes/twentysixteen/js/keyboard-image-navigation.js'),(13032,'wp-content/themes/twentysixteen/js/skip-link-focus-fix.js'),(13033,'wp-content/themes/twentysixteen/page.php'),(13034,'wp-content/themes/twentysixteen/readme.txt'),(13035,'wp-content/themes/twentysixteen/rtl.css'),(13036,'wp-content/themes/twentysixteen/screenshot.png'),(13037,'wp-content/themes/twentysixteen/search.php'),(13038,'wp-content/themes/twentysixteen/searchform.php'),(13039,'wp-content/themes/twentysixteen/sidebar-content-bottom.php'),(13040,'wp-content/themes/twentysixteen/sidebar.php'),(13041,'wp-content/themes/twentysixteen/single.php'),(13042,'wp-content/themes/twentysixteen/style.css'),(13043,'wp-content/themes/twentysixteen/template-parts/biography.php'),(13044,'wp-content/themes/twentysixteen/template-parts/content-none.php'),(13045,'wp-content/themes/twentysixteen/template-parts/content-page.php'),(13046,'wp-content/themes/twentysixteen/template-parts/content-search.php'),(13047,'wp-content/themes/twentysixteen/template-parts/content-single.php'),(13048,'wp-content/themes/twentysixteen/template-parts/content.php'),(13049,'wp-content/wflogs/attack-data.php'),(13050,'wp-content/wflogs/config-livewaf.php'),(13051,'wp-content/wflogs/config-synced.php'),(13052,'wp-content/wflogs/config-transient.php'),(13053,'wp-content/wflogs/config.php'),(13054,'wp-content/wflogs/ips.php'),(13055,'wp-content/wflogs/rules.php'),(13056,'wp-content/wflogs/template.php'),(13057,'wp-cron.php'),(13058,'wp-includes/ID3/getid3.lib.php'),(13059,'wp-includes/ID3/getid3.php'),(13060,'wp-includes/ID3/license.commercial.txt'),(13061,'wp-includes/ID3/license.txt'),(13062,'wp-includes/ID3/module.audio-video.asf.php'),(13063,'wp-includes/ID3/module.audio-video.flv.php'),(13064,'wp-includes/ID3/module.audio-video.matroska.php'),(13065,'wp-includes/ID3/module.audio-video.quicktime.php'),(13066,'wp-includes/ID3/module.audio-video.riff.php'),(13067,'wp-includes/ID3/module.audio.ac3.php'),(13068,'wp-includes/ID3/module.audio.dts.php'),(13069,'wp-includes/ID3/module.audio.flac.php'),(13070,'wp-includes/ID3/module.audio.mp3.php'),(13071,'wp-includes/ID3/module.audio.ogg.php'),(13072,'wp-includes/ID3/module.tag.apetag.php'),(13073,'wp-includes/ID3/module.tag.id3v1.php'),(13074,'wp-includes/ID3/module.tag.id3v2.php'),(13075,'wp-includes/ID3/module.tag.lyrics3.php'),(13076,'wp-includes/ID3/readme.txt'),(13077,'wp-includes/IXR/class-IXR-base64.php'),(13078,'wp-includes/IXR/class-IXR-client.php'),(13079,'wp-includes/IXR/class-IXR-clientmulticall.php'),(13080,'wp-includes/IXR/class-IXR-date.php'),(13081,'wp-includes/IXR/class-IXR-error.php'),(13082,'wp-includes/IXR/class-IXR-introspectionserver.php'),(13083,'wp-includes/IXR/class-IXR-message.php'),(13084,'wp-includes/IXR/class-IXR-request.php'),(13085,'wp-includes/IXR/class-IXR-server.php'),(13086,'wp-includes/IXR/class-IXR-value.php'),(13087,'wp-includes/PHPMailer/Exception.php'),(13088,'wp-includes/PHPMailer/PHPMailer.php'),(13089,'wp-includes/PHPMailer/SMTP.php'),(13090,'wp-includes/Requests/Auth/Basic.php'),(13091,'wp-includes/Requests/Auth.php'),(13092,'wp-includes/Requests/Cookie/Jar.php'),(13093,'wp-includes/Requests/Cookie.php'),(13094,'wp-includes/Requests/Exception/HTTP/304.php'),(13095,'wp-includes/Requests/Exception/HTTP/305.php'),(13096,'wp-includes/Requests/Exception/HTTP/306.php'),(13097,'wp-includes/Requests/Exception/HTTP/400.php'),(13098,'wp-includes/Requests/Exception/HTTP/401.php'),(13099,'wp-includes/Requests/Exception/HTTP/402.php'),(13100,'wp-includes/Requests/Exception/HTTP/403.php'),(13101,'wp-includes/Requests/Exception/HTTP/404.php'),(13102,'wp-includes/Requests/Exception/HTTP/405.php'),(13103,'wp-includes/Requests/Exception/HTTP/406.php'),(13104,'wp-includes/Requests/Exception/HTTP/407.php'),(13105,'wp-includes/Requests/Exception/HTTP/408.php'),(13106,'wp-includes/Requests/Exception/HTTP/409.php'),(13107,'wp-includes/Requests/Exception/HTTP/410.php'),(13108,'wp-includes/Requests/Exception/HTTP/411.php'),(13109,'wp-includes/Requests/Exception/HTTP/412.php'),(13110,'wp-includes/Requests/Exception/HTTP/413.php'),(13111,'wp-includes/Requests/Exception/HTTP/414.php'),(13112,'wp-includes/Requests/Exception/HTTP/415.php'),(13113,'wp-includes/Requests/Exception/HTTP/416.php'),(13114,'wp-includes/Requests/Exception/HTTP/417.php'),(13115,'wp-includes/Requests/Exception/HTTP/418.php'),(13116,'wp-includes/Requests/Exception/HTTP/428.php'),(13117,'wp-includes/Requests/Exception/HTTP/429.php'),(13118,'wp-includes/Requests/Exception/HTTP/431.php'),(13119,'wp-includes/Requests/Exception/HTTP/500.php'),(13120,'wp-includes/Requests/Exception/HTTP/501.php'),(13121,'wp-includes/Requests/Exception/HTTP/502.php'),(13122,'wp-includes/Requests/Exception/HTTP/503.php'),(13123,'wp-includes/Requests/Exception/HTTP/504.php'),(13124,'wp-includes/Requests/Exception/HTTP/505.php'),(13125,'wp-includes/Requests/Exception/HTTP/511.php'),(13126,'wp-includes/Requests/Exception/HTTP/Unknown.php'),(13127,'wp-includes/Requests/Exception/HTTP.php'),(13128,'wp-includes/Requests/Exception/Transport/cURL.php'),(13129,'wp-includes/Requests/Exception/Transport.php'),(13130,'wp-includes/Requests/Exception.php'),(13131,'wp-includes/Requests/Hooker.php'),(13132,'wp-includes/Requests/Hooks.php'),(13133,'wp-includes/Requests/IDNAEncoder.php'),(13134,'wp-includes/Requests/IPv6.php'),(13135,'wp-includes/Requests/IRI.php'),(13136,'wp-includes/Requests/Proxy/HTTP.php'),(13137,'wp-includes/Requests/Proxy.php'),(13138,'wp-includes/Requests/Response/Headers.php'),(13139,'wp-includes/Requests/Response.php'),(13140,'wp-includes/Requests/SSL.php'),(13141,'wp-includes/Requests/Session.php'),(13142,'wp-includes/Requests/Transport/cURL.php'),(13143,'wp-includes/Requests/Transport/fsockopen.php'),(13144,'wp-includes/Requests/Transport.php'),(13145,'wp-includes/Requests/Utility/CaseInsensitiveDictionary.php'),(13146,'wp-includes/Requests/Utility/FilteredIterator.php'),(13147,'wp-includes/SimplePie/Author.php'),(13148,'wp-includes/SimplePie/Cache/Base.php'),(13149,'wp-includes/SimplePie/Cache/DB.php'),(13150,'wp-includes/SimplePie/Cache/File.php'),(13151,'wp-includes/SimplePie/Cache/Memcache.php'),(13152,'wp-includes/SimplePie/Cache/Memcached.php'),(13153,'wp-includes/SimplePie/Cache/MySQL.php'),(13154,'wp-includes/SimplePie/Cache/Redis.php'),(13155,'wp-includes/SimplePie/Cache.php'),(13156,'wp-includes/SimplePie/Caption.php'),(13157,'wp-includes/SimplePie/Category.php'),(13158,'wp-includes/SimplePie/Content/Type/Sniffer.php'),(13159,'wp-includes/SimplePie/Copyright.php'),(13160,'wp-includes/SimplePie/Core.php'),(13161,'wp-includes/SimplePie/Credit.php'),(13162,'wp-includes/SimplePie/Decode/HTML/Entities.php'),(13163,'wp-includes/SimplePie/Enclosure.php'),(13164,'wp-includes/SimplePie/Exception.php'),(13165,'wp-includes/SimplePie/File.php'),(13166,'wp-includes/SimplePie/HTTP/Parser.php'),(13167,'wp-includes/SimplePie/IRI.php'),(13168,'wp-includes/SimplePie/Item.php'),(13169,'wp-includes/SimplePie/Locator.php'),(13170,'wp-includes/SimplePie/Misc.php'),(13171,'wp-includes/SimplePie/Net/IPv6.php'),(13172,'wp-includes/SimplePie/Parse/Date.php'),(13173,'wp-includes/SimplePie/Parser.php'),(13174,'wp-includes/SimplePie/Rating.php'),(13175,'wp-includes/SimplePie/Registry.php'),(13176,'wp-includes/SimplePie/Restriction.php'),(13177,'wp-includes/SimplePie/Sanitize.php'),(13178,'wp-includes/SimplePie/Source.php'),(13179,'wp-includes/SimplePie/XML/Declaration/Parser.php'),(13180,'wp-includes/SimplePie/gzdecode.php'),(13181,'wp-includes/Text/Diff/Engine/native.php'),(13182,'wp-includes/Text/Diff/Engine/shell.php'),(13183,'wp-includes/Text/Diff/Engine/string.php'),(13184,'wp-includes/Text/Diff/Engine/xdiff.php'),(13185,'wp-includes/Text/Diff/Renderer/inline.php'),(13186,'wp-includes/Text/Diff/Renderer.php'),(13187,'wp-includes/Text/Diff.php'),(13188,'wp-includes/admin-bar.php'),(13189,'wp-includes/assets/script-loader-packages.php'),(13190,'wp-includes/atomlib.php'),(13191,'wp-includes/author-template.php'),(13192,'wp-includes/block-editor.php'),(13193,'wp-includes/block-i18n.json'),(13194,'wp-includes/block-patterns/query-grid-posts.php'),(13195,'wp-includes/block-patterns/query-large-title-posts.php'),(13196,'wp-includes/block-patterns/query-medium-posts.php'),(13197,'wp-includes/block-patterns/query-offset-posts.php'),(13198,'wp-includes/block-patterns/query-small-posts.php'),(13199,'wp-includes/block-patterns/query-standard-posts.php'),(13200,'wp-includes/block-patterns/social-links-shared-background-color.php'),(13201,'wp-includes/block-patterns.php'),(13202,'wp-includes/block-supports/align.php'),(13203,'wp-includes/block-supports/border.php'),(13204,'wp-includes/block-supports/colors.php'),(13205,'wp-includes/block-supports/custom-classname.php'),(13206,'wp-includes/block-supports/dimensions.php'),(13207,'wp-includes/block-supports/duotone.php'),(13208,'wp-includes/block-supports/elements.php'),(13209,'wp-includes/block-supports/generated-classname.php'),(13210,'wp-includes/block-supports/layout.php'),(13211,'wp-includes/block-supports/spacing.php'),(13212,'wp-includes/block-supports/typography.php'),(13213,'wp-includes/block-template-utils.php'),(13214,'wp-includes/block-template.php'),(13215,'wp-includes/blocks/archives/block.json'),(13216,'wp-includes/blocks/archives/editor-rtl.css'),(13217,'wp-includes/blocks/archives/editor-rtl.min.css'),(13218,'wp-includes/blocks/archives/editor.css'),(13219,'wp-includes/blocks/archives/editor.min.css'),(13220,'wp-includes/blocks/archives/style-rtl.css'),(13221,'wp-includes/blocks/archives/style-rtl.min.css'),(13222,'wp-includes/blocks/archives/style.css'),(13223,'wp-includes/blocks/archives/style.min.css'),(13224,'wp-includes/blocks/archives.php'),(13225,'wp-includes/blocks/audio/block.json'),(13226,'wp-includes/blocks/audio/editor-rtl.css'),(13227,'wp-includes/blocks/audio/editor-rtl.min.css'),(13228,'wp-includes/blocks/audio/editor.css'),(13229,'wp-includes/blocks/audio/editor.min.css'),(13230,'wp-includes/blocks/audio/style-rtl.css'),(13231,'wp-includes/blocks/audio/style-rtl.min.css'),(13232,'wp-includes/blocks/audio/style.css'),(13233,'wp-includes/blocks/audio/style.min.css'),(13234,'wp-includes/blocks/audio/theme-rtl.css'),(13235,'wp-includes/blocks/audio/theme-rtl.min.css'),(13236,'wp-includes/blocks/audio/theme.css'),(13237,'wp-includes/blocks/audio/theme.min.css'),(13238,'wp-includes/blocks/block/block.json'),(13239,'wp-includes/blocks/block/editor-rtl.css'),(13240,'wp-includes/blocks/block/editor-rtl.min.css'),(13241,'wp-includes/blocks/block/editor.css'),(13242,'wp-includes/blocks/block/editor.min.css'),(13243,'wp-includes/blocks/block.php'),(13244,'wp-includes/blocks/button/block.json'),(13245,'wp-includes/blocks/button/editor-rtl.css'),(13246,'wp-includes/blocks/button/editor-rtl.min.css'),(13247,'wp-includes/blocks/button/editor.css'),(13248,'wp-includes/blocks/button/editor.min.css'),(13249,'wp-includes/blocks/button/style-rtl.css'),(13250,'wp-includes/blocks/button/style-rtl.min.css'),(13251,'wp-includes/blocks/button/style.css'),(13252,'wp-includes/blocks/button/style.min.css'),(13253,'wp-includes/blocks/buttons/block.json'),(13254,'wp-includes/blocks/buttons/editor-rtl.css'),(13255,'wp-includes/blocks/buttons/editor-rtl.min.css'),(13256,'wp-includes/blocks/buttons/editor.css'),(13257,'wp-includes/blocks/buttons/editor.min.css'),(13258,'wp-includes/blocks/buttons/style-rtl.css'),(13259,'wp-includes/blocks/buttons/style-rtl.min.css'),(13260,'wp-includes/blocks/buttons/style.css'),(13261,'wp-includes/blocks/buttons/style.min.css'),(13262,'wp-includes/blocks/calendar/block.json'),(13263,'wp-includes/blocks/calendar/style-rtl.css'),(13264,'wp-includes/blocks/calendar/style-rtl.min.css'),(13265,'wp-includes/blocks/calendar/style.css'),(13266,'wp-includes/blocks/calendar/style.min.css'),(13267,'wp-includes/blocks/calendar.php'),(13268,'wp-includes/blocks/categories/block.json'),(13269,'wp-includes/blocks/categories/editor-rtl.css'),(13270,'wp-includes/blocks/categories/editor-rtl.min.css'),(13271,'wp-includes/blocks/categories/editor.css'),(13272,'wp-includes/blocks/categories/editor.min.css'),(13273,'wp-includes/blocks/categories/style-rtl.css'),(13274,'wp-includes/blocks/categories/style-rtl.min.css'),(13275,'wp-includes/blocks/categories/style.css'),(13276,'wp-includes/blocks/categories/style.min.css'),(13277,'wp-includes/blocks/categories.php'),(13278,'wp-includes/blocks/code/block.json'),(13279,'wp-includes/blocks/code/style-rtl.css'),(13280,'wp-includes/blocks/code/style-rtl.min.css'),(13281,'wp-includes/blocks/code/style.css'),(13282,'wp-includes/blocks/code/style.min.css'),(13283,'wp-includes/blocks/code/theme-rtl.css'),(13284,'wp-includes/blocks/code/theme-rtl.min.css'),(13285,'wp-includes/blocks/code/theme.css'),(13286,'wp-includes/blocks/code/theme.min.css'),(13287,'wp-includes/blocks/column/block.json'),(13288,'wp-includes/blocks/columns/block.json'),(13289,'wp-includes/blocks/columns/editor-rtl.css'),(13290,'wp-includes/blocks/columns/editor-rtl.min.css'),(13291,'wp-includes/blocks/columns/editor.css'),(13292,'wp-includes/blocks/columns/editor.min.css'),(13293,'wp-includes/blocks/columns/style-rtl.css'),(13294,'wp-includes/blocks/columns/style-rtl.min.css'),(13295,'wp-includes/blocks/columns/style.css'),(13296,'wp-includes/blocks/columns/style.min.css'),(13297,'wp-includes/blocks/cover/block.json'),(13298,'wp-includes/blocks/cover/editor-rtl.css'),(13299,'wp-includes/blocks/cover/editor-rtl.min.css'),(13300,'wp-includes/blocks/cover/editor.css'),(13301,'wp-includes/blocks/cover/editor.min.css'),(13302,'wp-includes/blocks/cover/style-rtl.css'),(13303,'wp-includes/blocks/cover/style-rtl.min.css'),(13304,'wp-includes/blocks/cover/style.css'),(13305,'wp-includes/blocks/cover/style.min.css'),(13306,'wp-includes/blocks/embed/block.json'),(13307,'wp-includes/blocks/embed/editor-rtl.css'),(13308,'wp-includes/blocks/embed/editor-rtl.min.css'),(13309,'wp-includes/blocks/embed/editor.css'),(13310,'wp-includes/blocks/embed/editor.min.css'),(13311,'wp-includes/blocks/embed/style-rtl.css'),(13312,'wp-includes/blocks/embed/style-rtl.min.css'),(13313,'wp-includes/blocks/embed/style.css'),(13314,'wp-includes/blocks/embed/style.min.css'),(13315,'wp-includes/blocks/embed/theme-rtl.css'),(13316,'wp-includes/blocks/embed/theme-rtl.min.css'),(13317,'wp-includes/blocks/embed/theme.css'),(13318,'wp-includes/blocks/embed/theme.min.css'),(13319,'wp-includes/blocks/file/block.json'),(13320,'wp-includes/blocks/file/editor-rtl.css'),(13321,'wp-includes/blocks/file/editor-rtl.min.css'),(13322,'wp-includes/blocks/file/editor.css'),(13323,'wp-includes/blocks/file/editor.min.css'),(13324,'wp-includes/blocks/file/style-rtl.css'),(13325,'wp-includes/blocks/file/style-rtl.min.css'),(13326,'wp-includes/blocks/file/style.css'),(13327,'wp-includes/blocks/file/style.min.css'),(13328,'wp-includes/blocks/file/view.asset.php'),(13329,'wp-includes/blocks/file/view.js'),(13330,'wp-includes/blocks/file/view.min.asset.php'),(13331,'wp-includes/blocks/file/view.min.js'),(13332,'wp-includes/blocks/file.php'),(13333,'wp-includes/blocks/freeform/block.json'),(13334,'wp-includes/blocks/freeform/editor-rtl.css'),(13335,'wp-includes/blocks/freeform/editor-rtl.min.css'),(13336,'wp-includes/blocks/freeform/editor.css'),(13337,'wp-includes/blocks/freeform/editor.min.css'),(13338,'wp-includes/blocks/gallery/block.json'),(13339,'wp-includes/blocks/gallery/editor-rtl.css'),(13340,'wp-includes/blocks/gallery/editor-rtl.min.css'),(13341,'wp-includes/blocks/gallery/editor.css'),(13342,'wp-includes/blocks/gallery/editor.min.css'),(13343,'wp-includes/blocks/gallery/style-rtl.css'),(13344,'wp-includes/blocks/gallery/style-rtl.min.css'),(13345,'wp-includes/blocks/gallery/style.css'),(13346,'wp-includes/blocks/gallery/style.min.css'),(13347,'wp-includes/blocks/gallery/theme-rtl.css'),(13348,'wp-includes/blocks/gallery/theme-rtl.min.css'),(13349,'wp-includes/blocks/gallery/theme.css'),(13350,'wp-includes/blocks/gallery/theme.min.css'),(13351,'wp-includes/blocks/gallery.php'),(13352,'wp-includes/blocks/group/block.json'),(13353,'wp-includes/blocks/group/editor-rtl.css'),(13354,'wp-includes/blocks/group/editor-rtl.min.css'),(13355,'wp-includes/blocks/group/editor.css'),(13356,'wp-includes/blocks/group/editor.min.css'),(13357,'wp-includes/blocks/group/style-rtl.css'),(13358,'wp-includes/blocks/group/style-rtl.min.css'),(13359,'wp-includes/blocks/group/style.css'),(13360,'wp-includes/blocks/group/style.min.css'),(13361,'wp-includes/blocks/group/theme-rtl.css'),(13362,'wp-includes/blocks/group/theme-rtl.min.css'),(13363,'wp-includes/blocks/group/theme.css'),(13364,'wp-includes/blocks/group/theme.min.css'),(13365,'wp-includes/blocks/heading/block.json'),(13366,'wp-includes/blocks/heading/style-rtl.css'),(13367,'wp-includes/blocks/heading/style-rtl.min.css'),(13368,'wp-includes/blocks/heading/style.css'),(13369,'wp-includes/blocks/heading/style.min.css'),(13370,'wp-includes/blocks/html/block.json'),(13371,'wp-includes/blocks/html/editor-rtl.css'),(13372,'wp-includes/blocks/html/editor-rtl.min.css'),(13373,'wp-includes/blocks/html/editor.css'),(13374,'wp-includes/blocks/html/editor.min.css'),(13375,'wp-includes/blocks/image/block.json'),(13376,'wp-includes/blocks/image/editor-rtl.css'),(13377,'wp-includes/blocks/image/editor-rtl.min.css'),(13378,'wp-includes/blocks/image/editor.css'),(13379,'wp-includes/blocks/image/editor.min.css'),(13380,'wp-includes/blocks/image/style-rtl.css'),(13381,'wp-includes/blocks/image/style-rtl.min.css'),(13382,'wp-includes/blocks/image/style.css'),(13383,'wp-includes/blocks/image/style.min.css'),(13384,'wp-includes/blocks/image/theme-rtl.css'),(13385,'wp-includes/blocks/image/theme-rtl.min.css'),(13386,'wp-includes/blocks/image/theme.css'),(13387,'wp-includes/blocks/image/theme.min.css'),(13388,'wp-includes/blocks/image.php'),(13389,'wp-includes/blocks/index.php'),(13390,'wp-includes/blocks/latest-comments/block.json'),(13391,'wp-includes/blocks/latest-comments/style-rtl.css'),(13392,'wp-includes/blocks/latest-comments/style-rtl.min.css'),(13393,'wp-includes/blocks/latest-comments/style.css'),(13394,'wp-includes/blocks/latest-comments/style.min.css'),(13395,'wp-includes/blocks/latest-comments.php'),(13396,'wp-includes/blocks/latest-posts/block.json'),(13397,'wp-includes/blocks/latest-posts/editor-rtl.css'),(13398,'wp-includes/blocks/latest-posts/editor-rtl.min.css'),(13399,'wp-includes/blocks/latest-posts/editor.css'),(13400,'wp-includes/blocks/latest-posts/editor.min.css'),(13401,'wp-includes/blocks/latest-posts/style-rtl.css'),(13402,'wp-includes/blocks/latest-posts/style-rtl.min.css'),(13403,'wp-includes/blocks/latest-posts/style.css'),(13404,'wp-includes/blocks/latest-posts/style.min.css'),(13405,'wp-includes/blocks/latest-posts.php'),(13406,'wp-includes/blocks/legacy-widget/block.json'),(13407,'wp-includes/blocks/legacy-widget.php'),(13408,'wp-includes/blocks/list/block.json'),(13409,'wp-includes/blocks/list/style-rtl.css'),(13410,'wp-includes/blocks/list/style-rtl.min.css'),(13411,'wp-includes/blocks/list/style.css'),(13412,'wp-includes/blocks/list/style.min.css'),(13413,'wp-includes/blocks/loginout/block.json'),(13414,'wp-includes/blocks/loginout.php'),(13415,'wp-includes/blocks/media-text/block.json'),(13416,'wp-includes/blocks/media-text/editor-rtl.css'),(13417,'wp-includes/blocks/media-text/editor-rtl.min.css'),(13418,'wp-includes/blocks/media-text/editor.css'),(13419,'wp-includes/blocks/media-text/editor.min.css'),(13420,'wp-includes/blocks/media-text/style-rtl.css'),(13421,'wp-includes/blocks/media-text/style-rtl.min.css'),(13422,'wp-includes/blocks/media-text/style.css'),(13423,'wp-includes/blocks/media-text/style.min.css'),(13424,'wp-includes/blocks/missing/block.json'),(13425,'wp-includes/blocks/more/block.json'),(13426,'wp-includes/blocks/more/editor-rtl.css'),(13427,'wp-includes/blocks/more/editor-rtl.min.css'),(13428,'wp-includes/blocks/more/editor.css'),(13429,'wp-includes/blocks/more/editor.min.css'),(13430,'wp-includes/blocks/navigation/block.json'),(13431,'wp-includes/blocks/navigation/editor-rtl.css'),(13432,'wp-includes/blocks/navigation/editor-rtl.min.css'),(13433,'wp-includes/blocks/navigation/editor.css'),(13434,'wp-includes/blocks/navigation/editor.min.css'),(13435,'wp-includes/blocks/navigation/style-rtl.css'),(13436,'wp-includes/blocks/navigation/style-rtl.min.css'),(13437,'wp-includes/blocks/navigation/style.css'),(13438,'wp-includes/blocks/navigation/style.min.css'),(13439,'wp-includes/blocks/navigation/view.asset.php'),(13440,'wp-includes/blocks/navigation/view.js'),(13441,'wp-includes/blocks/navigation/view.min.asset.php'),(13442,'wp-includes/blocks/navigation/view.min.js'),(13443,'wp-includes/blocks/navigation-link/block.json'),(13444,'wp-includes/blocks/navigation-link/editor-rtl.css'),(13445,'wp-includes/blocks/navigation-link/editor-rtl.min.css'),(13446,'wp-includes/blocks/navigation-link/editor.css'),(13447,'wp-includes/blocks/navigation-link/editor.min.css'),(13448,'wp-includes/blocks/navigation-link/style-rtl.css'),(13449,'wp-includes/blocks/navigation-link/style-rtl.min.css'),(13450,'wp-includes/blocks/navigation-link/style.css'),(13451,'wp-includes/blocks/navigation-link/style.min.css'),(13452,'wp-includes/blocks/navigation-link.php'),(13453,'wp-includes/blocks/navigation-submenu/block.json'),(13454,'wp-includes/blocks/navigation-submenu/editor-rtl.css'),(13455,'wp-includes/blocks/navigation-submenu/editor-rtl.min.css'),(13456,'wp-includes/blocks/navigation-submenu/editor.css'),(13457,'wp-includes/blocks/navigation-submenu/editor.min.css'),(13458,'wp-includes/blocks/navigation-submenu.php'),(13459,'wp-includes/blocks/navigation.php'),(13460,'wp-includes/blocks/nextpage/block.json'),(13461,'wp-includes/blocks/nextpage/editor-rtl.css'),(13462,'wp-includes/blocks/nextpage/editor-rtl.min.css'),(13463,'wp-includes/blocks/nextpage/editor.css'),(13464,'wp-includes/blocks/nextpage/editor.min.css'),(13465,'wp-includes/blocks/page-list/block.json'),(13466,'wp-includes/blocks/page-list/editor-rtl.css'),(13467,'wp-includes/blocks/page-list/editor-rtl.min.css'),(13468,'wp-includes/blocks/page-list/editor.css'),(13469,'wp-includes/blocks/page-list/editor.min.css'),(13470,'wp-includes/blocks/page-list/style-rtl.css'),(13471,'wp-includes/blocks/page-list/style-rtl.min.css'),(13472,'wp-includes/blocks/page-list/style.css'),(13473,'wp-includes/blocks/page-list/style.min.css'),(13474,'wp-includes/blocks/page-list.php'),(13475,'wp-includes/blocks/paragraph/block.json'),(13476,'wp-includes/blocks/paragraph/editor-rtl.css'),(13477,'wp-includes/blocks/paragraph/editor-rtl.min.css'),(13478,'wp-includes/blocks/paragraph/editor.css'),(13479,'wp-includes/blocks/paragraph/editor.min.css'),(13480,'wp-includes/blocks/paragraph/style-rtl.css'),(13481,'wp-includes/blocks/paragraph/style-rtl.min.css'),(13482,'wp-includes/blocks/paragraph/style.css'),(13483,'wp-includes/blocks/paragraph/style.min.css'),(13484,'wp-includes/blocks/pattern/block.json'),(13485,'wp-includes/blocks/pattern.php'),(13486,'wp-includes/blocks/post-author/block.json'),(13487,'wp-includes/blocks/post-author/style-rtl.css'),(13488,'wp-includes/blocks/post-author/style-rtl.min.css'),(13489,'wp-includes/blocks/post-author/style.css'),(13490,'wp-includes/blocks/post-author/style.min.css'),(13491,'wp-includes/blocks/post-author.php'),(13492,'wp-includes/blocks/post-comments/block.json'),(13493,'wp-includes/blocks/post-comments/style-rtl.css'),(13494,'wp-includes/blocks/post-comments/style-rtl.min.css'),(13495,'wp-includes/blocks/post-comments/style.css'),(13496,'wp-includes/blocks/post-comments/style.min.css'),(13497,'wp-includes/blocks/post-comments.php'),(13498,'wp-includes/blocks/post-content/block.json'),(13499,'wp-includes/blocks/post-content.php'),(13500,'wp-includes/blocks/post-date/block.json'),(13501,'wp-includes/blocks/post-date.php'),(13502,'wp-includes/blocks/post-excerpt/block.json'),(13503,'wp-includes/blocks/post-excerpt/editor-rtl.css'),(13504,'wp-includes/blocks/post-excerpt/editor-rtl.min.css'),(13505,'wp-includes/blocks/post-excerpt/editor.css'),(13506,'wp-includes/blocks/post-excerpt/editor.min.css'),(13507,'wp-includes/blocks/post-excerpt/style-rtl.css'),(13508,'wp-includes/blocks/post-excerpt/style-rtl.min.css'),(13509,'wp-includes/blocks/post-excerpt/style.css'),(13510,'wp-includes/blocks/post-excerpt/style.min.css'),(13511,'wp-includes/blocks/post-excerpt.php'),(13512,'wp-includes/blocks/post-featured-image/block.json'),(13513,'wp-includes/blocks/post-featured-image/editor-rtl.css'),(13514,'wp-includes/blocks/post-featured-image/editor-rtl.min.css'),(13515,'wp-includes/blocks/post-featured-image/editor.css'),(13516,'wp-includes/blocks/post-featured-image/editor.min.css'),(13517,'wp-includes/blocks/post-featured-image/style-rtl.css'),(13518,'wp-includes/blocks/post-featured-image/style-rtl.min.css'),(13519,'wp-includes/blocks/post-featured-image/style.css'),(13520,'wp-includes/blocks/post-featured-image/style.min.css'),(13521,'wp-includes/blocks/post-featured-image.php'),(13522,'wp-includes/blocks/post-navigation-link/block.json'),(13523,'wp-includes/blocks/post-navigation-link.php'),(13524,'wp-includes/blocks/post-template/block.json'),(13525,'wp-includes/blocks/post-template/editor-rtl.css'),(13526,'wp-includes/blocks/post-template/editor-rtl.min.css'),(13527,'wp-includes/blocks/post-template/editor.css'),(13528,'wp-includes/blocks/post-template/editor.min.css'),(13529,'wp-includes/blocks/post-template/style-rtl.css'),(13530,'wp-includes/blocks/post-template/style-rtl.min.css'),(13531,'wp-includes/blocks/post-template/style.css'),(13532,'wp-includes/blocks/post-template/style.min.css'),(13533,'wp-includes/blocks/post-template.php'),(13534,'wp-includes/blocks/post-terms/block.json'),(13535,'wp-includes/blocks/post-terms/style-rtl.css'),(13536,'wp-includes/blocks/post-terms/style-rtl.min.css'),(13537,'wp-includes/blocks/post-terms/style.css'),(13538,'wp-includes/blocks/post-terms/style.min.css'),(13539,'wp-includes/blocks/post-terms.php'),(13540,'wp-includes/blocks/post-title/block.json'),(13541,'wp-includes/blocks/post-title/style-rtl.css'),(13542,'wp-includes/blocks/post-title/style-rtl.min.css'),(13543,'wp-includes/blocks/post-title/style.css'),(13544,'wp-includes/blocks/post-title/style.min.css'),(13545,'wp-includes/blocks/post-title.php'),(13546,'wp-includes/blocks/preformatted/block.json'),(13547,'wp-includes/blocks/preformatted/style-rtl.css'),(13548,'wp-includes/blocks/preformatted/style-rtl.min.css'),(13549,'wp-includes/blocks/preformatted/style.css'),(13550,'wp-includes/blocks/preformatted/style.min.css'),(13551,'wp-includes/blocks/pullquote/block.json'),(13552,'wp-includes/blocks/pullquote/editor-rtl.css'),(13553,'wp-includes/blocks/pullquote/editor-rtl.min.css'),(13554,'wp-includes/blocks/pullquote/editor.css'),(13555,'wp-includes/blocks/pullquote/editor.min.css'),(13556,'wp-includes/blocks/pullquote/style-rtl.css'),(13557,'wp-includes/blocks/pullquote/style-rtl.min.css'),(13558,'wp-includes/blocks/pullquote/style.css'),(13559,'wp-includes/blocks/pullquote/style.min.css'),(13560,'wp-includes/blocks/pullquote/theme-rtl.css'),(13561,'wp-includes/blocks/pullquote/theme-rtl.min.css'),(13562,'wp-includes/blocks/pullquote/theme.css'),(13563,'wp-includes/blocks/pullquote/theme.min.css'),(13564,'wp-includes/blocks/query/block.json'),(13565,'wp-includes/blocks/query/editor-rtl.css'),(13566,'wp-includes/blocks/query/editor-rtl.min.css'),(13567,'wp-includes/blocks/query/editor.css'),(13568,'wp-includes/blocks/query/editor.min.css'),(13569,'wp-includes/blocks/query-pagination/block.json'),(13570,'wp-includes/blocks/query-pagination/editor-rtl.css'),(13571,'wp-includes/blocks/query-pagination/editor-rtl.min.css'),(13572,'wp-includes/blocks/query-pagination/editor.css'),(13573,'wp-includes/blocks/query-pagination/editor.min.css'),(13574,'wp-includes/blocks/query-pagination/style-rtl.css'),(13575,'wp-includes/blocks/query-pagination/style-rtl.min.css'),(13576,'wp-includes/blocks/query-pagination/style.css'),(13577,'wp-includes/blocks/query-pagination/style.min.css'),(13578,'wp-includes/blocks/query-pagination-next/block.json'),(13579,'wp-includes/blocks/query-pagination-next.php'),(13580,'wp-includes/blocks/query-pagination-numbers/block.json'),(13581,'wp-includes/blocks/query-pagination-numbers/editor-rtl.css'),(13582,'wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css'),(13583,'wp-includes/blocks/query-pagination-numbers/editor.css'),(13584,'wp-includes/blocks/query-pagination-numbers/editor.min.css'),(13585,'wp-includes/blocks/query-pagination-numbers.php'),(13586,'wp-includes/blocks/query-pagination-previous/block.json'),(13587,'wp-includes/blocks/query-pagination-previous.php'),(13588,'wp-includes/blocks/query-pagination.php'),(13589,'wp-includes/blocks/query-title/block.json'),(13590,'wp-includes/blocks/query-title.php'),(13591,'wp-includes/blocks/query.php'),(13592,'wp-includes/blocks/quote/block.json'),(13593,'wp-includes/blocks/quote/style-rtl.css'),(13594,'wp-includes/blocks/quote/style-rtl.min.css'),(13595,'wp-includes/blocks/quote/style.css'),(13596,'wp-includes/blocks/quote/style.min.css'),(13597,'wp-includes/blocks/quote/theme-rtl.css'),(13598,'wp-includes/blocks/quote/theme-rtl.min.css'),(13599,'wp-includes/blocks/quote/theme.css'),(13600,'wp-includes/blocks/quote/theme.min.css'),(13601,'wp-includes/blocks/rss/block.json'),(13602,'wp-includes/blocks/rss/editor-rtl.css'),(13603,'wp-includes/blocks/rss/editor-rtl.min.css'),(13604,'wp-includes/blocks/rss/editor.css'),(13605,'wp-includes/blocks/rss/editor.min.css'),(13606,'wp-includes/blocks/rss/style-rtl.css'),(13607,'wp-includes/blocks/rss/style-rtl.min.css'),(13608,'wp-includes/blocks/rss/style.css'),(13609,'wp-includes/blocks/rss/style.min.css'),(13610,'wp-includes/blocks/rss.php'),(13611,'wp-includes/blocks/search/block.json'),(13612,'wp-includes/blocks/search/editor-rtl.css'),(13613,'wp-includes/blocks/search/editor-rtl.min.css'),(13614,'wp-includes/blocks/search/editor.css'),(13615,'wp-includes/blocks/search/editor.min.css'),(13616,'wp-includes/blocks/search/style-rtl.css'),(13617,'wp-includes/blocks/search/style-rtl.min.css'),(13618,'wp-includes/blocks/search/style.css'),(13619,'wp-includes/blocks/search/style.min.css'),(13620,'wp-includes/blocks/search/theme-rtl.css'),(13621,'wp-includes/blocks/search/theme-rtl.min.css'),(13622,'wp-includes/blocks/search/theme.css'),(13623,'wp-includes/blocks/search/theme.min.css'),(13624,'wp-includes/blocks/search.php'),(13625,'wp-includes/blocks/separator/block.json'),(13626,'wp-includes/blocks/separator/editor-rtl.css'),(13627,'wp-includes/blocks/separator/editor-rtl.min.css'),(13628,'wp-includes/blocks/separator/editor.css'),(13629,'wp-includes/blocks/separator/editor.min.css'),(13630,'wp-includes/blocks/separator/style-rtl.css'),(13631,'wp-includes/blocks/separator/style-rtl.min.css'),(13632,'wp-includes/blocks/separator/style.css'),(13633,'wp-includes/blocks/separator/style.min.css'),(13634,'wp-includes/blocks/separator/theme-rtl.css'),(13635,'wp-includes/blocks/separator/theme-rtl.min.css'),(13636,'wp-includes/blocks/separator/theme.css'),(13637,'wp-includes/blocks/separator/theme.min.css'),(13638,'wp-includes/blocks/shortcode/block.json'),(13639,'wp-includes/blocks/shortcode/editor-rtl.css'),(13640,'wp-includes/blocks/shortcode/editor-rtl.min.css'),(13641,'wp-includes/blocks/shortcode/editor.css'),(13642,'wp-includes/blocks/shortcode/editor.min.css'),(13643,'wp-includes/blocks/shortcode.php'),(13644,'wp-includes/blocks/site-logo/block.json'),(13645,'wp-includes/blocks/site-logo/editor-rtl.css'),(13646,'wp-includes/blocks/site-logo/editor-rtl.min.css'),(13647,'wp-includes/blocks/site-logo/editor.css'),(13648,'wp-includes/blocks/site-logo/editor.min.css'),(13649,'wp-includes/blocks/site-logo/style-rtl.css'),(13650,'wp-includes/blocks/site-logo/style-rtl.min.css'),(13651,'wp-includes/blocks/site-logo/style.css'),(13652,'wp-includes/blocks/site-logo/style.min.css'),(13653,'wp-includes/blocks/site-logo.php'),(13654,'wp-includes/blocks/site-tagline/block.json'),(13655,'wp-includes/blocks/site-tagline/editor-rtl.css'),(13656,'wp-includes/blocks/site-tagline/editor-rtl.min.css'),(13657,'wp-includes/blocks/site-tagline/editor.css'),(13658,'wp-includes/blocks/site-tagline/editor.min.css'),(13659,'wp-includes/blocks/site-tagline.php'),(13660,'wp-includes/blocks/site-title/block.json'),(13661,'wp-includes/blocks/site-title/editor-rtl.css'),(13662,'wp-includes/blocks/site-title/editor-rtl.min.css'),(13663,'wp-includes/blocks/site-title/editor.css'),(13664,'wp-includes/blocks/site-title/editor.min.css'),(13665,'wp-includes/blocks/site-title.php'),(13666,'wp-includes/blocks/social-link/block.json'),(13667,'wp-includes/blocks/social-link/editor-rtl.css'),(13668,'wp-includes/blocks/social-link/editor-rtl.min.css'),(13669,'wp-includes/blocks/social-link/editor.css'),(13670,'wp-includes/blocks/social-link/editor.min.css'),(13671,'wp-includes/blocks/social-link.php'),(13672,'wp-includes/blocks/social-links/block.json'),(13673,'wp-includes/blocks/social-links/editor-rtl.css'),(13674,'wp-includes/blocks/social-links/editor-rtl.min.css'),(13675,'wp-includes/blocks/social-links/editor.css'),(13676,'wp-includes/blocks/social-links/editor.min.css'),(13677,'wp-includes/blocks/social-links/style-rtl.css'),(13678,'wp-includes/blocks/social-links/style-rtl.min.css'),(13679,'wp-includes/blocks/social-links/style.css'),(13680,'wp-includes/blocks/social-links/style.min.css'),(13681,'wp-includes/blocks/spacer/block.json'),(13682,'wp-includes/blocks/spacer/editor-rtl.css'),(13683,'wp-includes/blocks/spacer/editor-rtl.min.css'),(13684,'wp-includes/blocks/spacer/editor.css'),(13685,'wp-includes/blocks/spacer/editor.min.css'),(13686,'wp-includes/blocks/spacer/style-rtl.css'),(13687,'wp-includes/blocks/spacer/style-rtl.min.css'),(13688,'wp-includes/blocks/spacer/style.css'),(13689,'wp-includes/blocks/spacer/style.min.css'),(13690,'wp-includes/blocks/table/block.json'),(13691,'wp-includes/blocks/table/editor-rtl.css'),(13692,'wp-includes/blocks/table/editor-rtl.min.css'),(13693,'wp-includes/blocks/table/editor.css'),(13694,'wp-includes/blocks/table/editor.min.css'),(13695,'wp-includes/blocks/table/style-rtl.css'),(13696,'wp-includes/blocks/table/style-rtl.min.css'),(13697,'wp-includes/blocks/table/style.css'),(13698,'wp-includes/blocks/table/style.min.css'),(13699,'wp-includes/blocks/table/theme-rtl.css'),(13700,'wp-includes/blocks/table/theme-rtl.min.css'),(13701,'wp-includes/blocks/table/theme.css'),(13702,'wp-includes/blocks/table/theme.min.css'),(13703,'wp-includes/blocks/tag-cloud/block.json'),(13704,'wp-includes/blocks/tag-cloud/style-rtl.css'),(13705,'wp-includes/blocks/tag-cloud/style-rtl.min.css'),(13706,'wp-includes/blocks/tag-cloud/style.css'),(13707,'wp-includes/blocks/tag-cloud/style.min.css'),(13708,'wp-includes/blocks/tag-cloud.php'),(13709,'wp-includes/blocks/template-part/block.json'),(13710,'wp-includes/blocks/template-part/editor-rtl.css'),(13711,'wp-includes/blocks/template-part/editor-rtl.min.css'),(13712,'wp-includes/blocks/template-part/editor.css'),(13713,'wp-includes/blocks/template-part/editor.min.css'),(13714,'wp-includes/blocks/template-part/theme-rtl.css'),(13715,'wp-includes/blocks/template-part/theme-rtl.min.css'),(13716,'wp-includes/blocks/template-part/theme.css'),(13717,'wp-includes/blocks/template-part/theme.min.css'),(13718,'wp-includes/blocks/template-part.php'),(13719,'wp-includes/blocks/term-description/block.json'),(13720,'wp-includes/blocks/term-description.php'),(13721,'wp-includes/blocks/text-columns/block.json'),(13722,'wp-includes/blocks/text-columns/editor-rtl.css'),(13723,'wp-includes/blocks/text-columns/editor-rtl.min.css'),(13724,'wp-includes/blocks/text-columns/editor.css'),(13725,'wp-includes/blocks/text-columns/editor.min.css'),(13726,'wp-includes/blocks/text-columns/style-rtl.css'),(13727,'wp-includes/blocks/text-columns/style-rtl.min.css'),(13728,'wp-includes/blocks/text-columns/style.css'),(13729,'wp-includes/blocks/text-columns/style.min.css'),(13730,'wp-includes/blocks/verse/block.json'),(13731,'wp-includes/blocks/verse/style-rtl.css'),(13732,'wp-includes/blocks/verse/style-rtl.min.css'),(13733,'wp-includes/blocks/verse/style.css'),(13734,'wp-includes/blocks/verse/style.min.css'),(13735,'wp-includes/blocks/video/block.json'),(13736,'wp-includes/blocks/video/editor-rtl.css'),(13737,'wp-includes/blocks/video/editor-rtl.min.css'),(13738,'wp-includes/blocks/video/editor.css'),(13739,'wp-includes/blocks/video/editor.min.css'),(13740,'wp-includes/blocks/video/style-rtl.css'),(13741,'wp-includes/blocks/video/style-rtl.min.css'),(13742,'wp-includes/blocks/video/style.css'),(13743,'wp-includes/blocks/video/style.min.css'),(13744,'wp-includes/blocks/video/theme-rtl.css'),(13745,'wp-includes/blocks/video/theme-rtl.min.css'),(13746,'wp-includes/blocks/video/theme.css'),(13747,'wp-includes/blocks/video/theme.min.css'),(13748,'wp-includes/blocks/widget-group/block.json'),(13749,'wp-includes/blocks/widget-group.php'),(13750,'wp-includes/blocks.php'),(13751,'wp-includes/bookmark-template.php'),(13752,'wp-includes/bookmark.php'),(13753,'wp-includes/cache-compat.php'),(13754,'wp-includes/cache.php'),(13755,'wp-includes/canonical.php'),(13756,'wp-includes/capabilities.php'),(13757,'wp-includes/category-template.php'),(13758,'wp-includes/category.php'),(13759,'wp-includes/certificates/ca-bundle.crt'),(13760,'wp-includes/class-IXR.php'),(13761,'wp-includes/class-feed.php'),(13762,'wp-includes/class-http.php'),(13763,'wp-includes/class-json.php'),(13764,'wp-includes/class-oembed.php'),(13765,'wp-includes/class-phpass.php'),(13766,'wp-includes/class-phpmailer.php'),(13767,'wp-includes/class-pop3.php'),(13768,'wp-includes/class-requests.php'),(13769,'wp-includes/class-simplepie.php'),(13770,'wp-includes/class-smtp.php'),(13771,'wp-includes/class-snoopy.php'),(13772,'wp-includes/class-walker-category-dropdown.php'),(13773,'wp-includes/class-walker-category.php'),(13774,'wp-includes/class-walker-comment.php'),(13775,'wp-includes/class-walker-nav-menu.php'),(13776,'wp-includes/class-walker-page-dropdown.php'),(13777,'wp-includes/class-walker-page.php'),(13778,'wp-includes/class-wp-admin-bar.php'),(13779,'wp-includes/class-wp-ajax-response.php'),(13780,'wp-includes/class-wp-application-passwords.php'),(13781,'wp-includes/class-wp-block-editor-context.php'),(13782,'wp-includes/class-wp-block-list.php'),(13783,'wp-includes/class-wp-block-parser.php'),(13784,'wp-includes/class-wp-block-pattern-categories-registry.php'),(13785,'wp-includes/class-wp-block-patterns-registry.php'),(13786,'wp-includes/class-wp-block-styles-registry.php'),(13787,'wp-includes/class-wp-block-supports.php'),(13788,'wp-includes/class-wp-block-template.php'),(13789,'wp-includes/class-wp-block-type-registry.php'),(13790,'wp-includes/class-wp-block-type.php'),(13791,'wp-includes/class-wp-block.php'),(13792,'wp-includes/class-wp-comment-query.php'),(13793,'wp-includes/class-wp-comment.php'),(13794,'wp-includes/class-wp-customize-control.php'),(13795,'wp-includes/class-wp-customize-manager.php'),(13796,'wp-includes/class-wp-customize-nav-menus.php'),(13797,'wp-includes/class-wp-customize-panel.php'),(13798,'wp-includes/class-wp-customize-section.php'),(13799,'wp-includes/class-wp-customize-setting.php'),(13800,'wp-includes/class-wp-customize-widgets.php'),(13801,'wp-includes/class-wp-date-query.php'),(13802,'wp-includes/class-wp-dependency.php'),(13803,'wp-includes/class-wp-editor.php'),(13804,'wp-includes/class-wp-embed.php'),(13805,'wp-includes/class-wp-error.php'),(13806,'wp-includes/class-wp-fatal-error-handler.php'),(13807,'wp-includes/class-wp-feed-cache-transient.php'),(13808,'wp-includes/class-wp-feed-cache.php'),(13809,'wp-includes/class-wp-hook.php'),(13810,'wp-includes/class-wp-http-cookie.php'),(13811,'wp-includes/class-wp-http-curl.php'),(13812,'wp-includes/class-wp-http-encoding.php'),(13813,'wp-includes/class-wp-http-ixr-client.php'),(13814,'wp-includes/class-wp-http-proxy.php'),(13815,'wp-includes/class-wp-http-requests-hooks.php'),(13816,'wp-includes/class-wp-http-requests-response.php'),(13817,'wp-includes/class-wp-http-response.php'),(13818,'wp-includes/class-wp-http-streams.php'),(13819,'wp-includes/class-wp-http.php'),(13820,'wp-includes/class-wp-image-editor-gd.php'),(13821,'wp-includes/class-wp-image-editor-imagick.php'),(13822,'wp-includes/class-wp-image-editor.php'),(13823,'wp-includes/class-wp-list-util.php'),(13824,'wp-includes/class-wp-locale-switcher.php'),(13825,'wp-includes/class-wp-locale.php'),(13826,'wp-includes/class-wp-matchesmapregex.php'),(13827,'wp-includes/class-wp-meta-query.php'),(13828,'wp-includes/class-wp-metadata-lazyloader.php'),(13829,'wp-includes/class-wp-network-query.php'),(13830,'wp-includes/class-wp-network.php'),(13831,'wp-includes/class-wp-object-cache.php'),(13832,'wp-includes/class-wp-oembed-controller.php'),(13833,'wp-includes/class-wp-oembed.php'),(13834,'wp-includes/class-wp-paused-extensions-storage.php'),(13835,'wp-includes/class-wp-post-type.php'),(13836,'wp-includes/class-wp-post.php'),(13837,'wp-includes/class-wp-query.php'),(13838,'wp-includes/class-wp-recovery-mode-cookie-service.php'),(13839,'wp-includes/class-wp-recovery-mode-email-service.php'),(13840,'wp-includes/class-wp-recovery-mode-key-service.php'),(13841,'wp-includes/class-wp-recovery-mode-link-service.php'),(13842,'wp-includes/class-wp-recovery-mode.php'),(13843,'wp-includes/class-wp-rewrite.php'),(13844,'wp-includes/class-wp-role.php'),(13845,'wp-includes/class-wp-roles.php'),(13846,'wp-includes/class-wp-session-tokens.php'),(13847,'wp-includes/class-wp-simplepie-file.php'),(13848,'wp-includes/class-wp-simplepie-sanitize-kses.php'),(13849,'wp-includes/class-wp-site-query.php'),(13850,'wp-includes/class-wp-site.php'),(13851,'wp-includes/class-wp-tax-query.php'),(13852,'wp-includes/class-wp-taxonomy.php'),(13853,'wp-includes/class-wp-term-query.php'),(13854,'wp-includes/class-wp-term.php'),(13855,'wp-includes/class-wp-text-diff-renderer-inline.php'),(13856,'wp-includes/class-wp-text-diff-renderer-table.php'),(13857,'wp-includes/class-wp-theme-json-resolver.php'),(13858,'wp-includes/class-wp-theme-json-schema.php'),(13859,'wp-includes/class-wp-theme-json.php'),(13860,'wp-includes/class-wp-theme.php'),(13861,'wp-includes/class-wp-user-meta-session-tokens.php'),(13862,'wp-includes/class-wp-user-query.php'),(13863,'wp-includes/class-wp-user-request.php'),(13864,'wp-includes/class-wp-user.php'),(13865,'wp-includes/class-wp-walker.php'),(13866,'wp-includes/class-wp-widget-factory.php'),(13867,'wp-includes/class-wp-widget.php'),(13868,'wp-includes/class-wp-xmlrpc-server.php'),(13869,'wp-includes/class-wp.php'),(13870,'wp-includes/class.wp-dependencies.php'),(13871,'wp-includes/class.wp-scripts.php'),(13872,'wp-includes/class.wp-styles.php'),(13873,'wp-includes/comment-template.php'),(13874,'wp-includes/comment.php'),(13875,'wp-includes/compat.php'),(13876,'wp-includes/cron.php'),(13877,'wp-includes/css/admin-bar-rtl.css'),(13878,'wp-includes/css/admin-bar-rtl.min.css'),(13879,'wp-includes/css/admin-bar.css'),(13880,'wp-includes/css/admin-bar.min.css'),(13881,'wp-includes/css/buttons-rtl.css'),(13882,'wp-includes/css/buttons-rtl.min.css'),(13883,'wp-includes/css/buttons.css'),(13884,'wp-includes/css/buttons.min.css'),(13885,'wp-includes/css/customize-preview-rtl.css'),(13886,'wp-includes/css/customize-preview-rtl.min.css'),(13887,'wp-includes/css/customize-preview.css'),(13888,'wp-includes/css/customize-preview.min.css'),(13889,'wp-includes/css/dashicons.css'),(13890,'wp-includes/css/dashicons.min.css'),(13891,'wp-includes/css/dist/block-directory/style-rtl.css'),(13892,'wp-includes/css/dist/block-directory/style-rtl.min.css'),(13893,'wp-includes/css/dist/block-directory/style.css'),(13894,'wp-includes/css/dist/block-directory/style.min.css'),(13895,'wp-includes/css/dist/block-editor/default-editor-styles-rtl.css'),(13896,'wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css'),(13897,'wp-includes/css/dist/block-editor/default-editor-styles.css'),(13898,'wp-includes/css/dist/block-editor/default-editor-styles.min.css'),(13899,'wp-includes/css/dist/block-editor/style-rtl.css'),(13900,'wp-includes/css/dist/block-editor/style-rtl.min.css'),(13901,'wp-includes/css/dist/block-editor/style.css'),(13902,'wp-includes/css/dist/block-editor/style.min.css'),(13903,'wp-includes/css/dist/block-library/common-rtl.css'),(13904,'wp-includes/css/dist/block-library/common-rtl.min.css'),(13905,'wp-includes/css/dist/block-library/common.css'),(13906,'wp-includes/css/dist/block-library/common.min.css'),(13907,'wp-includes/css/dist/block-library/editor-rtl.css'),(13908,'wp-includes/css/dist/block-library/editor-rtl.min.css'),(13909,'wp-includes/css/dist/block-library/editor.css'),(13910,'wp-includes/css/dist/block-library/editor.min.css'),(13911,'wp-includes/css/dist/block-library/reset-rtl.css'),(13912,'wp-includes/css/dist/block-library/reset-rtl.min.css'),(13913,'wp-includes/css/dist/block-library/reset.css'),(13914,'wp-includes/css/dist/block-library/reset.min.css'),(13915,'wp-includes/css/dist/block-library/style-rtl.css'),(13916,'wp-includes/css/dist/block-library/style-rtl.min.css'),(13917,'wp-includes/css/dist/block-library/style.css'),(13918,'wp-includes/css/dist/block-library/style.min.css'),(13919,'wp-includes/css/dist/block-library/theme-rtl.css'),(13920,'wp-includes/css/dist/block-library/theme-rtl.min.css'),(13921,'wp-includes/css/dist/block-library/theme.css'),(13922,'wp-includes/css/dist/block-library/theme.min.css'),(13923,'wp-includes/css/dist/components/style-rtl.css'),(13924,'wp-includes/css/dist/components/style-rtl.min.css'),(13925,'wp-includes/css/dist/components/style.css'),(13926,'wp-includes/css/dist/components/style.min.css'),(13927,'wp-includes/css/dist/customize-widgets/style-rtl.css'),(13928,'wp-includes/css/dist/customize-widgets/style-rtl.min.css'),(13929,'wp-includes/css/dist/customize-widgets/style.css'),(13930,'wp-includes/css/dist/customize-widgets/style.min.css'),(13931,'wp-includes/css/dist/edit-post/classic-rtl.css'),(13932,'wp-includes/css/dist/edit-post/classic-rtl.min.css'),(13933,'wp-includes/css/dist/edit-post/classic.css'),(13934,'wp-includes/css/dist/edit-post/classic.min.css'),(13935,'wp-includes/css/dist/edit-post/style-rtl.css'),(13936,'wp-includes/css/dist/edit-post/style-rtl.min.css'),(13937,'wp-includes/css/dist/edit-post/style.css'),(13938,'wp-includes/css/dist/edit-post/style.min.css'),(13939,'wp-includes/css/dist/edit-site/style-rtl.css'),(13940,'wp-includes/css/dist/edit-site/style-rtl.min.css'),(13941,'wp-includes/css/dist/edit-site/style.css'),(13942,'wp-includes/css/dist/edit-site/style.min.css'),(13943,'wp-includes/css/dist/edit-widgets/style-rtl.css'),(13944,'wp-includes/css/dist/edit-widgets/style-rtl.min.css'),(13945,'wp-includes/css/dist/edit-widgets/style.css'),(13946,'wp-includes/css/dist/edit-widgets/style.min.css'),(13947,'wp-includes/css/dist/editor/style-rtl.css'),(13948,'wp-includes/css/dist/editor/style-rtl.min.css'),(13949,'wp-includes/css/dist/editor/style.css'),(13950,'wp-includes/css/dist/editor/style.min.css'),(13951,'wp-includes/css/dist/format-library/style-rtl.css'),(13952,'wp-includes/css/dist/format-library/style-rtl.min.css'),(13953,'wp-includes/css/dist/format-library/style.css'),(13954,'wp-includes/css/dist/format-library/style.min.css'),(13955,'wp-includes/css/dist/list-reusable-blocks/style-rtl.css'),(13956,'wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css'),(13957,'wp-includes/css/dist/list-reusable-blocks/style.css'),(13958,'wp-includes/css/dist/list-reusable-blocks/style.min.css'),(13959,'wp-includes/css/dist/nux/style-rtl.css'),(13960,'wp-includes/css/dist/nux/style-rtl.min.css'),(13961,'wp-includes/css/dist/nux/style.css'),(13962,'wp-includes/css/dist/nux/style.min.css'),(13963,'wp-includes/css/dist/reusable-blocks/style-rtl.css'),(13964,'wp-includes/css/dist/reusable-blocks/style-rtl.min.css'),(13965,'wp-includes/css/dist/reusable-blocks/style.css'),(13966,'wp-includes/css/dist/reusable-blocks/style.min.css'),(13967,'wp-includes/css/dist/widgets/style-rtl.css'),(13968,'wp-includes/css/dist/widgets/style-rtl.min.css'),(13969,'wp-includes/css/dist/widgets/style.css'),(13970,'wp-includes/css/dist/widgets/style.min.css'),(13971,'wp-includes/css/editor-rtl.css'),(13972,'wp-includes/css/editor-rtl.min.css'),(13973,'wp-includes/css/editor.css'),(13974,'wp-includes/css/editor.min.css'),(13975,'wp-includes/css/jquery-ui-dialog-rtl.css'),(13976,'wp-includes/css/jquery-ui-dialog-rtl.min.css'),(13977,'wp-includes/css/jquery-ui-dialog.css'),(13978,'wp-includes/css/jquery-ui-dialog.min.css'),(13979,'wp-includes/css/media-views-rtl.css'),(13980,'wp-includes/css/media-views-rtl.min.css'),(13981,'wp-includes/css/media-views.css'),(13982,'wp-includes/css/media-views.min.css'),(13983,'wp-includes/css/wp-auth-check-rtl.css'),(13984,'wp-includes/css/wp-auth-check-rtl.min.css'),(13985,'wp-includes/css/wp-auth-check.css'),(13986,'wp-includes/css/wp-auth-check.min.css'),(13987,'wp-includes/css/wp-embed-template-ie.css'),(13988,'wp-includes/css/wp-embed-template-ie.min.css'),(13989,'wp-includes/css/wp-embed-template.css'),(13990,'wp-includes/css/wp-embed-template.min.css'),(13991,'wp-includes/css/wp-pointer-rtl.css'),(13992,'wp-includes/css/wp-pointer-rtl.min.css'),(13993,'wp-includes/css/wp-pointer.css'),(13994,'wp-includes/css/wp-pointer.min.css'),(13995,'wp-includes/customize/class-wp-customize-background-image-control.php'),(13996,'wp-includes/customize/class-wp-customize-background-image-setting.php'),(13997,'wp-includes/customize/class-wp-customize-background-position-control.php'),(13998,'wp-includes/customize/class-wp-customize-code-editor-control.php'),(13999,'wp-includes/customize/class-wp-customize-color-control.php'),(14000,'wp-includes/customize/class-wp-customize-cropped-image-control.php'),(14001,'wp-includes/customize/class-wp-customize-custom-css-setting.php'),(14002,'wp-includes/customize/class-wp-customize-date-time-control.php'),(14003,'wp-includes/customize/class-wp-customize-filter-setting.php'),(14004,'wp-includes/customize/class-wp-customize-header-image-control.php'),(14005,'wp-includes/customize/class-wp-customize-header-image-setting.php'),(14006,'wp-includes/customize/class-wp-customize-image-control.php'),(14007,'wp-includes/customize/class-wp-customize-media-control.php'),(14008,'wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php'),(14009,'wp-includes/customize/class-wp-customize-nav-menu-control.php'),(14010,'wp-includes/customize/class-wp-customize-nav-menu-item-control.php'),(14011,'wp-includes/customize/class-wp-customize-nav-menu-item-setting.php'),(14012,'wp-includes/customize/class-wp-customize-nav-menu-location-control.php'),(14013,'wp-includes/customize/class-wp-customize-nav-menu-locations-control.php'),(14014,'wp-includes/customize/class-wp-customize-nav-menu-name-control.php'),(14015,'wp-includes/customize/class-wp-customize-nav-menu-section.php'),(14016,'wp-includes/customize/class-wp-customize-nav-menu-setting.php'),(14017,'wp-includes/customize/class-wp-customize-nav-menus-panel.php'),(14018,'wp-includes/customize/class-wp-customize-new-menu-control.php'),(14019,'wp-includes/customize/class-wp-customize-new-menu-section.php'),(14020,'wp-includes/customize/class-wp-customize-partial.php'),(14021,'wp-includes/customize/class-wp-customize-selective-refresh.php'),(14022,'wp-includes/customize/class-wp-customize-sidebar-section.php'),(14023,'wp-includes/customize/class-wp-customize-site-icon-control.php'),(14024,'wp-includes/customize/class-wp-customize-theme-control.php'),(14025,'wp-includes/customize/class-wp-customize-themes-panel.php'),(14026,'wp-includes/customize/class-wp-customize-themes-section.php'),(14027,'wp-includes/customize/class-wp-customize-upload-control.php'),(14028,'wp-includes/customize/class-wp-sidebar-block-editor-control.php'),(14029,'wp-includes/customize/class-wp-widget-area-customize-control.php'),(14030,'wp-includes/customize/class-wp-widget-form-customize-control.php'),(14031,'wp-includes/customize/error_log'),(14032,'wp-includes/date.php'),(14033,'wp-includes/default-constants.php'),(14034,'wp-includes/default-filters.php'),(14035,'wp-includes/default-widgets.php'),(14036,'wp-includes/deprecated.php'),(14037,'wp-includes/embed-template.php'),(14038,'wp-includes/embed.php'),(14039,'wp-includes/error-protection.php'),(14040,'wp-includes/error_log'),(14041,'wp-includes/feed-atom-comments.php'),(14042,'wp-includes/feed-atom.php'),(14043,'wp-includes/feed-rdf.php'),(14044,'wp-includes/feed-rss.php'),(14045,'wp-includes/feed-rss2-comments.php'),(14046,'wp-includes/feed-rss2.php'),(14047,'wp-includes/feed.php'),(14048,'wp-includes/fonts/dashicons.eot'),(14049,'wp-includes/fonts/dashicons.svg'),(14050,'wp-includes/fonts/dashicons.ttf'),(14051,'wp-includes/fonts/dashicons.woff'),(14052,'wp-includes/fonts/dashicons.woff2'),(14053,'wp-includes/formatting.php'),(14054,'wp-includes/functions.php'),(14055,'wp-includes/functions.wp-scripts.php'),(14056,'wp-includes/functions.wp-styles.php'),(14057,'wp-includes/general-template.php'),(14058,'wp-includes/global-styles-and-settings.php'),(14059,'wp-includes/http.php'),(14060,'wp-includes/https-detection.php'),(14061,'wp-includes/https-migration.php'),(14062,'wp-includes/images/admin-bar-sprite-2x.png'),(14063,'wp-includes/images/admin-bar-sprite.png'),(14064,'wp-includes/images/arrow-pointer-blue-2x.png'),(14065,'wp-includes/images/arrow-pointer-blue.png'),(14066,'wp-includes/images/blank.gif'),(14067,'wp-includes/images/crystal/archive.png'),(14068,'wp-includes/images/crystal/audio.png'),(14069,'wp-includes/images/crystal/code.png'),(14070,'wp-includes/images/crystal/default.png'),(14071,'wp-includes/images/crystal/document.png'),(14072,'wp-includes/images/crystal/interactive.png'),(14073,'wp-includes/images/crystal/license.txt'),(14074,'wp-includes/images/crystal/spreadsheet.png'),(14075,'wp-includes/images/crystal/text.png'),(14076,'wp-includes/images/crystal/video.png'),(14077,'wp-includes/images/down_arrow-2x.gif'),(14078,'wp-includes/images/down_arrow.gif'),(14079,'wp-includes/images/icon-pointer-flag-2x.png'),(14080,'wp-includes/images/icon-pointer-flag.png'),(14081,'wp-includes/images/media/archive.png'),(14082,'wp-includes/images/media/audio.png'),(14083,'wp-includes/images/media/code.png'),(14084,'wp-includes/images/media/default.png'),(14085,'wp-includes/images/media/document.png'),(14086,'wp-includes/images/media/interactive.png'),(14087,'wp-includes/images/media/spreadsheet.png'),(14088,'wp-includes/images/media/text.png'),(14089,'wp-includes/images/media/video.png'),(14090,'wp-includes/images/rss-2x.png'),(14091,'wp-includes/images/rss.png'),(14092,'wp-includes/images/smilies/frownie.png'),(14093,'wp-includes/images/smilies/icon_arrow.gif'),(14094,'wp-includes/images/smilies/icon_biggrin.gif'),(14095,'wp-includes/images/smilies/icon_confused.gif'),(14096,'wp-includes/images/smilies/icon_cool.gif'),(14097,'wp-includes/images/smilies/icon_cry.gif'),(14098,'wp-includes/images/smilies/icon_eek.gif'),(14099,'wp-includes/images/smilies/icon_evil.gif'),(14100,'wp-includes/images/smilies/icon_exclaim.gif'),(14101,'wp-includes/images/smilies/icon_idea.gif'),(14102,'wp-includes/images/smilies/icon_lol.gif'),(14103,'wp-includes/images/smilies/icon_mad.gif'),(14104,'wp-includes/images/smilies/icon_mrgreen.gif'),(14105,'wp-includes/images/smilies/icon_neutral.gif'),(14106,'wp-includes/images/smilies/icon_question.gif'),(14107,'wp-includes/images/smilies/icon_razz.gif'),(14108,'wp-includes/images/smilies/icon_redface.gif'),(14109,'wp-includes/images/smilies/icon_rolleyes.gif'),(14110,'wp-includes/images/smilies/icon_sad.gif'),(14111,'wp-includes/images/smilies/icon_smile.gif'),(14112,'wp-includes/images/smilies/icon_surprised.gif'),(14113,'wp-includes/images/smilies/icon_twisted.gif'),(14114,'wp-includes/images/smilies/icon_wink.gif'),(14115,'wp-includes/images/smilies/mrgreen.png'),(14116,'wp-includes/images/smilies/rolleyes.png'),(14117,'wp-includes/images/smilies/simple-smile.png'),(14118,'wp-includes/images/spinner-2x.gif'),(14119,'wp-includes/images/spinner.gif'),(14120,'wp-includes/images/toggle-arrow-2x.png'),(14121,'wp-includes/images/toggle-arrow.png'),(14122,'wp-includes/images/uploader-icons-2x.png'),(14123,'wp-includes/images/uploader-icons.png'),(14124,'wp-includes/images/w-logo-blue-white-bg.png'),(14125,'wp-includes/images/w-logo-blue.png'),(14126,'wp-includes/images/wlw/wp-comments.png'),(14127,'wp-includes/images/wlw/wp-icon.png'),(14128,'wp-includes/images/wlw/wp-watermark.png'),(14129,'wp-includes/images/wpicons-2x.png'),(14130,'wp-includes/images/wpicons.png'),(14131,'wp-includes/images/wpspin-2x.gif'),(14132,'wp-includes/images/wpspin.gif'),(14133,'wp-includes/images/xit-2x.gif'),(14134,'wp-includes/images/xit.gif'),(14135,'wp-includes/js/admin-bar.js'),(14136,'wp-includes/js/admin-bar.min.js'),(14137,'wp-includes/js/api-request.js'),(14138,'wp-includes/js/api-request.min.js'),(14139,'wp-includes/js/autosave.js'),(14140,'wp-includes/js/autosave.min.js'),(14141,'wp-includes/js/backbone.js'),(14142,'wp-includes/js/backbone.min.js'),(14143,'wp-includes/js/clipboard.js'),(14144,'wp-includes/js/clipboard.min.js'),(14145,'wp-includes/js/codemirror/codemirror.min.css'),(14146,'wp-includes/js/codemirror/codemirror.min.js'),(14147,'wp-includes/js/codemirror/csslint.js'),(14148,'wp-includes/js/codemirror/esprima.js'),(14149,'wp-includes/js/codemirror/fakejshint.js'),(14150,'wp-includes/js/codemirror/htmlhint-kses.js'),(14151,'wp-includes/js/codemirror/htmlhint.js'),(14152,'wp-includes/js/codemirror/jsonlint.js'),(14153,'wp-includes/js/colorpicker.js'),(14154,'wp-includes/js/colorpicker.min.js'),(14155,'wp-includes/js/comment-reply.js'),(14156,'wp-includes/js/comment-reply.min.js'),(14157,'wp-includes/js/crop/cropper.css'),(14158,'wp-includes/js/crop/cropper.js'),(14159,'wp-includes/js/crop/marqueeHoriz.gif'),(14160,'wp-includes/js/crop/marqueeVert.gif'),(14161,'wp-includes/js/customize-base.js'),(14162,'wp-includes/js/customize-base.min.js'),(14163,'wp-includes/js/customize-loader.js'),(14164,'wp-includes/js/customize-loader.min.js'),(14165,'wp-includes/js/customize-models.js'),(14166,'wp-includes/js/customize-models.min.js'),(14167,'wp-includes/js/customize-preview-nav-menus.js'),(14168,'wp-includes/js/customize-preview-nav-menus.min.js'),(14169,'wp-includes/js/customize-preview-widgets.js'),(14170,'wp-includes/js/customize-preview-widgets.min.js'),(14171,'wp-includes/js/customize-preview.js'),(14172,'wp-includes/js/customize-preview.min.js'),(14173,'wp-includes/js/customize-selective-refresh.js'),(14174,'wp-includes/js/customize-selective-refresh.min.js'),(14175,'wp-includes/js/customize-views.js'),(14176,'wp-includes/js/customize-views.min.js'),(14177,'wp-includes/js/dist/a11y.js'),(14178,'wp-includes/js/dist/a11y.min.js'),(14179,'wp-includes/js/dist/annotations.js'),(14180,'wp-includes/js/dist/annotations.min.js'),(14181,'wp-includes/js/dist/api-fetch.js'),(14182,'wp-includes/js/dist/api-fetch.min.js'),(14183,'wp-includes/js/dist/autop.js'),(14184,'wp-includes/js/dist/autop.min.js'),(14185,'wp-includes/js/dist/blob.js'),(14186,'wp-includes/js/dist/blob.min.js'),(14187,'wp-includes/js/dist/block-directory.js'),(14188,'wp-includes/js/dist/block-directory.min.js'),(14189,'wp-includes/js/dist/block-editor.js'),(14190,'wp-includes/js/dist/block-editor.min.js'),(14191,'wp-includes/js/dist/block-library.js'),(14192,'wp-includes/js/dist/block-library.min.js'),(14193,'wp-includes/js/dist/block-serialization-default-parser.js'),(14194,'wp-includes/js/dist/block-serialization-default-parser.min.js'),(14195,'wp-includes/js/dist/blocks.js'),(14196,'wp-includes/js/dist/blocks.min.js'),(14197,'wp-includes/js/dist/components.js'),(14198,'wp-includes/js/dist/components.min.js'),(14199,'wp-includes/js/dist/compose.js'),(14200,'wp-includes/js/dist/compose.min.js'),(14201,'wp-includes/js/dist/core-data.js'),(14202,'wp-includes/js/dist/core-data.min.js'),(14203,'wp-includes/js/dist/customize-widgets.js'),(14204,'wp-includes/js/dist/customize-widgets.min.js'),(14205,'wp-includes/js/dist/data-controls.js'),(14206,'wp-includes/js/dist/data-controls.min.js'),(14207,'wp-includes/js/dist/data.js'),(14208,'wp-includes/js/dist/data.min.js'),(14209,'wp-includes/js/dist/date.js'),(14210,'wp-includes/js/dist/date.min.js'),(14211,'wp-includes/js/dist/deprecated.js'),(14212,'wp-includes/js/dist/deprecated.min.js'),(14213,'wp-includes/js/dist/dom-ready.js'),(14214,'wp-includes/js/dist/dom-ready.min.js'),(14215,'wp-includes/js/dist/dom.js'),(14216,'wp-includes/js/dist/dom.min.js'),(14217,'wp-includes/js/dist/edit-post.js'),(14218,'wp-includes/js/dist/edit-post.min.js'),(14219,'wp-includes/js/dist/edit-site.js'),(14220,'wp-includes/js/dist/edit-site.min.js'),(14221,'wp-includes/js/dist/edit-widgets.js'),(14222,'wp-includes/js/dist/edit-widgets.min.js'),(14223,'wp-includes/js/dist/editor.js'),(14224,'wp-includes/js/dist/editor.min.js'),(14225,'wp-includes/js/dist/element.js'),(14226,'wp-includes/js/dist/element.min.js'),(14227,'wp-includes/js/dist/escape-html.js'),(14228,'wp-includes/js/dist/escape-html.min.js'),(14229,'wp-includes/js/dist/format-library.js'),(14230,'wp-includes/js/dist/format-library.min.js'),(14231,'wp-includes/js/dist/hooks.js'),(14232,'wp-includes/js/dist/hooks.min.js'),(14233,'wp-includes/js/dist/html-entities.js'),(14234,'wp-includes/js/dist/html-entities.min.js'),(14235,'wp-includes/js/dist/i18n.js'),(14236,'wp-includes/js/dist/i18n.min.js'),(14237,'wp-includes/js/dist/is-shallow-equal.js'),(14238,'wp-includes/js/dist/is-shallow-equal.min.js'),(14239,'wp-includes/js/dist/keyboard-shortcuts.js'),(14240,'wp-includes/js/dist/keyboard-shortcuts.min.js'),(14241,'wp-includes/js/dist/keycodes.js'),(14242,'wp-includes/js/dist/keycodes.min.js'),(14243,'wp-includes/js/dist/list-reusable-blocks.js'),(14244,'wp-includes/js/dist/list-reusable-blocks.min.js'),(14245,'wp-includes/js/dist/media-utils.js'),(14246,'wp-includes/js/dist/media-utils.min.js'),(14247,'wp-includes/js/dist/notices.js'),(14248,'wp-includes/js/dist/notices.min.js'),(14249,'wp-includes/js/dist/nux.js'),(14250,'wp-includes/js/dist/nux.min.js'),(14251,'wp-includes/js/dist/plugins.js'),(14252,'wp-includes/js/dist/plugins.min.js'),(14253,'wp-includes/js/dist/primitives.js'),(14254,'wp-includes/js/dist/primitives.min.js'),(14255,'wp-includes/js/dist/priority-queue.js'),(14256,'wp-includes/js/dist/priority-queue.min.js'),(14257,'wp-includes/js/dist/redux-routine.js'),(14258,'wp-includes/js/dist/redux-routine.min.js'),(14259,'wp-includes/js/dist/reusable-blocks.js'),(14260,'wp-includes/js/dist/reusable-blocks.min.js'),(14261,'wp-includes/js/dist/rich-text.js'),(14262,'wp-includes/js/dist/rich-text.min.js'),(14263,'wp-includes/js/dist/server-side-render.js'),(14264,'wp-includes/js/dist/server-side-render.min.js'),(14265,'wp-includes/js/dist/shortcode.js'),(14266,'wp-includes/js/dist/shortcode.min.js'),(14267,'wp-includes/js/dist/token-list.js'),(14268,'wp-includes/js/dist/token-list.min.js'),(14269,'wp-includes/js/dist/url.js'),(14270,'wp-includes/js/dist/url.min.js'),(14271,'wp-includes/js/dist/vendor/lodash.js'),(14272,'wp-includes/js/dist/vendor/lodash.min.js'),(14273,'wp-includes/js/dist/vendor/moment.js'),(14274,'wp-includes/js/dist/vendor/moment.min.js'),(14275,'wp-includes/js/dist/vendor/react-dom.js'),(14276,'wp-includes/js/dist/vendor/react-dom.min.js'),(14277,'wp-includes/js/dist/vendor/react.js'),(14278,'wp-includes/js/dist/vendor/react.min.js'),(14279,'wp-includes/js/dist/vendor/regenerator-runtime.js'),(14280,'wp-includes/js/dist/vendor/regenerator-runtime.min.js'),(14281,'wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js'),(14282,'wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js'),(14283,'wp-includes/js/dist/vendor/wp-polyfill-element-closest.js'),(14284,'wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js'),(14285,'wp-includes/js/dist/vendor/wp-polyfill-fetch.js'),(14286,'wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js'),(14287,'wp-includes/js/dist/vendor/wp-polyfill-formdata.js'),(14288,'wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js'),(14289,'wp-includes/js/dist/vendor/wp-polyfill-node-contains.js'),(14290,'wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js'),(14291,'wp-includes/js/dist/vendor/wp-polyfill-object-fit.js'),(14292,'wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js'),(14293,'wp-includes/js/dist/vendor/wp-polyfill-url.js'),(14294,'wp-includes/js/dist/vendor/wp-polyfill-url.min.js'),(14295,'wp-includes/js/dist/vendor/wp-polyfill.js'),(14296,'wp-includes/js/dist/vendor/wp-polyfill.min.js'),(14297,'wp-includes/js/dist/viewport.js'),(14298,'wp-includes/js/dist/viewport.min.js'),(14299,'wp-includes/js/dist/warning.js'),(14300,'wp-includes/js/dist/warning.min.js'),(14301,'wp-includes/js/dist/widgets.js'),(14302,'wp-includes/js/dist/widgets.min.js'),(14303,'wp-includes/js/dist/wordcount.js'),(14304,'wp-includes/js/dist/wordcount.min.js'),(14305,'wp-includes/js/heartbeat.js'),(14306,'wp-includes/js/heartbeat.min.js'),(14307,'wp-includes/js/hoverIntent.js'),(14308,'wp-includes/js/hoverIntent.min.js'),(14309,'wp-includes/js/hoverintent-js.min.js'),(14310,'wp-includes/js/imagesloaded.min.js'),(14311,'wp-includes/js/imgareaselect/border-anim-h.gif'),(14312,'wp-includes/js/imgareaselect/border-anim-v.gif'),(14313,'wp-includes/js/imgareaselect/imgareaselect.css'),(14314,'wp-includes/js/imgareaselect/jquery.imgareaselect.js'),(14315,'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),(14316,'wp-includes/js/jcrop/Jcrop.gif'),(14317,'wp-includes/js/jcrop/jquery.Jcrop.min.css'),(14318,'wp-includes/js/jcrop/jquery.Jcrop.min.js'),(14319,'wp-includes/js/jquery/jquery-migrate.js'),(14320,'wp-includes/js/jquery/jquery-migrate.min.js'),(14321,'wp-includes/js/jquery/jquery.color.min.js'),(14322,'wp-includes/js/jquery/jquery.form.js'),(14323,'wp-includes/js/jquery/jquery.form.min.js'),(14324,'wp-includes/js/jquery/jquery.hotkeys.js'),(14325,'wp-includes/js/jquery/jquery.hotkeys.min.js'),(14326,'wp-includes/js/jquery/jquery.js'),(14327,'wp-includes/js/jquery/jquery.masonry.min.js'),(14328,'wp-includes/js/jquery/jquery.min.js'),(14329,'wp-includes/js/jquery/jquery.query.js'),(14330,'wp-includes/js/jquery/jquery.schedule.js'),(14331,'wp-includes/js/jquery/jquery.serialize-object.js'),(14332,'wp-includes/js/jquery/jquery.table-hotkeys.js'),(14333,'wp-includes/js/jquery/jquery.table-hotkeys.min.js'),(14334,'wp-includes/js/jquery/jquery.ui.touch-punch.js'),(14335,'wp-includes/js/jquery/suggest.js'),(14336,'wp-includes/js/jquery/suggest.min.js'),(14337,'wp-includes/js/jquery/ui/accordion.js'),(14338,'wp-includes/js/jquery/ui/accordion.min.js'),(14339,'wp-includes/js/jquery/ui/autocomplete.js'),(14340,'wp-includes/js/jquery/ui/autocomplete.min.js'),(14341,'wp-includes/js/jquery/ui/button.js'),(14342,'wp-includes/js/jquery/ui/button.min.js'),(14343,'wp-includes/js/jquery/ui/checkboxradio.js'),(14344,'wp-includes/js/jquery/ui/checkboxradio.min.js'),(14345,'wp-includes/js/jquery/ui/controlgroup.js'),(14346,'wp-includes/js/jquery/ui/controlgroup.min.js'),(14347,'wp-includes/js/jquery/ui/core.js'),(14348,'wp-includes/js/jquery/ui/core.min.js'),(14349,'wp-includes/js/jquery/ui/datepicker.js'),(14350,'wp-includes/js/jquery/ui/datepicker.min.js'),(14351,'wp-includes/js/jquery/ui/dialog.js'),(14352,'wp-includes/js/jquery/ui/dialog.min.js'),(14353,'wp-includes/js/jquery/ui/draggable.js'),(14354,'wp-includes/js/jquery/ui/draggable.min.js'),(14355,'wp-includes/js/jquery/ui/droppable.js'),(14356,'wp-includes/js/jquery/ui/droppable.min.js'),(14357,'wp-includes/js/jquery/ui/effect-blind.js'),(14358,'wp-includes/js/jquery/ui/effect-blind.min.js'),(14359,'wp-includes/js/jquery/ui/effect-bounce.js'),(14360,'wp-includes/js/jquery/ui/effect-bounce.min.js'),(14361,'wp-includes/js/jquery/ui/effect-clip.js'),(14362,'wp-includes/js/jquery/ui/effect-clip.min.js'),(14363,'wp-includes/js/jquery/ui/effect-drop.js'),(14364,'wp-includes/js/jquery/ui/effect-drop.min.js'),(14365,'wp-includes/js/jquery/ui/effect-explode.js'),(14366,'wp-includes/js/jquery/ui/effect-explode.min.js'),(14367,'wp-includes/js/jquery/ui/effect-fade.js'),(14368,'wp-includes/js/jquery/ui/effect-fade.min.js'),(14369,'wp-includes/js/jquery/ui/effect-fold.js'),(14370,'wp-includes/js/jquery/ui/effect-fold.min.js'),(14371,'wp-includes/js/jquery/ui/effect-highlight.js'),(14372,'wp-includes/js/jquery/ui/effect-highlight.min.js'),(14373,'wp-includes/js/jquery/ui/effect-puff.js'),(14374,'wp-includes/js/jquery/ui/effect-puff.min.js'),(14375,'wp-includes/js/jquery/ui/effect-pulsate.js'),(14376,'wp-includes/js/jquery/ui/effect-pulsate.min.js'),(14377,'wp-includes/js/jquery/ui/effect-scale.js'),(14378,'wp-includes/js/jquery/ui/effect-scale.min.js'),(14379,'wp-includes/js/jquery/ui/effect-shake.js'),(14380,'wp-includes/js/jquery/ui/effect-shake.min.js'),(14381,'wp-includes/js/jquery/ui/effect-size.js'),(14382,'wp-includes/js/jquery/ui/effect-size.min.js'),(14383,'wp-includes/js/jquery/ui/effect-slide.js'),(14384,'wp-includes/js/jquery/ui/effect-slide.min.js'),(14385,'wp-includes/js/jquery/ui/effect-transfer.js'),(14386,'wp-includes/js/jquery/ui/effect-transfer.min.js'),(14387,'wp-includes/js/jquery/ui/effect.js'),(14388,'wp-includes/js/jquery/ui/effect.min.js'),(14389,'wp-includes/js/jquery/ui/menu.js'),(14390,'wp-includes/js/jquery/ui/menu.min.js'),(14391,'wp-includes/js/jquery/ui/mouse.js'),(14392,'wp-includes/js/jquery/ui/mouse.min.js'),(14393,'wp-includes/js/jquery/ui/progressbar.js'),(14394,'wp-includes/js/jquery/ui/progressbar.min.js'),(14395,'wp-includes/js/jquery/ui/resizable.js'),(14396,'wp-includes/js/jquery/ui/resizable.min.js'),(14397,'wp-includes/js/jquery/ui/selectable.js'),(14398,'wp-includes/js/jquery/ui/selectable.min.js'),(14399,'wp-includes/js/jquery/ui/selectmenu.js'),(14400,'wp-includes/js/jquery/ui/selectmenu.min.js'),(14401,'wp-includes/js/jquery/ui/slider.js'),(14402,'wp-includes/js/jquery/ui/slider.min.js'),(14403,'wp-includes/js/jquery/ui/sortable.js'),(14404,'wp-includes/js/jquery/ui/sortable.min.js'),(14405,'wp-includes/js/jquery/ui/spinner.js'),(14406,'wp-includes/js/jquery/ui/spinner.min.js'),(14407,'wp-includes/js/jquery/ui/tabs.js'),(14408,'wp-includes/js/jquery/ui/tabs.min.js'),(14409,'wp-includes/js/jquery/ui/tooltip.js'),(14410,'wp-includes/js/jquery/ui/tooltip.min.js'),(14411,'wp-includes/js/json2.js'),(14412,'wp-includes/js/json2.min.js'),(14413,'wp-includes/js/masonry.min.js'),(14414,'wp-includes/js/mce-view.js'),(14415,'wp-includes/js/mce-view.min.js'),(14416,'wp-includes/js/media-audiovideo.js'),(14417,'wp-includes/js/media-audiovideo.min.js'),(14418,'wp-includes/js/media-editor.js'),(14419,'wp-includes/js/media-editor.min.js'),(14420,'wp-includes/js/media-grid.js'),(14421,'wp-includes/js/media-grid.min.js'),(14422,'wp-includes/js/media-models.js'),(14423,'wp-includes/js/media-models.min.js'),(14424,'wp-includes/js/media-views.js'),(14425,'wp-includes/js/media-views.min.js'),(14426,'wp-includes/js/mediaelement/mediaelement-and-player.js'),(14427,'wp-includes/js/mediaelement/mediaelement-and-player.min.js'),(14428,'wp-includes/js/mediaelement/mediaelement-migrate.js'),(14429,'wp-includes/js/mediaelement/mediaelement-migrate.min.js'),(14430,'wp-includes/js/mediaelement/mediaelement.js'),(14431,'wp-includes/js/mediaelement/mediaelement.min.js'),(14432,'wp-includes/js/mediaelement/mediaelementplayer-legacy.css'),(14433,'wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css'),(14434,'wp-includes/js/mediaelement/mediaelementplayer.css'),(14435,'wp-includes/js/mediaelement/mediaelementplayer.min.css'),(14436,'wp-includes/js/mediaelement/mejs-controls.png'),(14437,'wp-includes/js/mediaelement/mejs-controls.svg'),(14438,'wp-includes/js/mediaelement/renderers/vimeo.js'),(14439,'wp-includes/js/mediaelement/renderers/vimeo.min.js'),(14440,'wp-includes/js/mediaelement/wp-mediaelement.css'),(14441,'wp-includes/js/mediaelement/wp-mediaelement.js'),(14442,'wp-includes/js/mediaelement/wp-mediaelement.min.css'),(14443,'wp-includes/js/mediaelement/wp-mediaelement.min.js'),(14444,'wp-includes/js/mediaelement/wp-playlist.js'),(14445,'wp-includes/js/mediaelement/wp-playlist.min.js'),(14446,'wp-includes/js/plupload/handlers.js'),(14447,'wp-includes/js/plupload/handlers.min.js'),(14448,'wp-includes/js/plupload/license.txt'),(14449,'wp-includes/js/plupload/moxie.js'),(14450,'wp-includes/js/plupload/moxie.min.js'),(14451,'wp-includes/js/plupload/plupload.js'),(14452,'wp-includes/js/plupload/plupload.min.js'),(14453,'wp-includes/js/plupload/wp-plupload.js'),(14454,'wp-includes/js/plupload/wp-plupload.min.js'),(14455,'wp-includes/js/quicktags.js'),(14456,'wp-includes/js/quicktags.min.js'),(14457,'wp-includes/js/shortcode.js'),(14458,'wp-includes/js/shortcode.min.js'),(14459,'wp-includes/js/swfobject.js'),(14460,'wp-includes/js/swfupload/handlers.js'),(14461,'wp-includes/js/swfupload/handlers.min.js'),(14462,'wp-includes/js/swfupload/license.txt'),(14463,'wp-includes/js/swfupload/swfupload.js'),(14464,'wp-includes/js/thickbox/loadingAnimation.gif'),(14465,'wp-includes/js/thickbox/macFFBgHack.png'),(14466,'wp-includes/js/thickbox/thickbox.css'),(14467,'wp-includes/js/thickbox/thickbox.js'),(14468,'wp-includes/js/tinymce/langs/wp-langs-en.js'),(14469,'wp-includes/js/tinymce/license.txt'),(14470,'wp-includes/js/tinymce/plugins/charmap/plugin.js'),(14471,'wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),(14472,'wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),(14473,'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),(14474,'wp-includes/js/tinymce/plugins/compat3x/css/dialog.css'),(14475,'wp-includes/js/tinymce/plugins/compat3x/plugin.js'),(14476,'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),(14477,'wp-includes/js/tinymce/plugins/directionality/plugin.js'),(14478,'wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),(14479,'wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),(14480,'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),(14481,'wp-includes/js/tinymce/plugins/hr/plugin.js'),(14482,'wp-includes/js/tinymce/plugins/hr/plugin.min.js'),(14483,'wp-includes/js/tinymce/plugins/image/plugin.js'),(14484,'wp-includes/js/tinymce/plugins/image/plugin.min.js'),(14485,'wp-includes/js/tinymce/plugins/link/plugin.js'),(14486,'wp-includes/js/tinymce/plugins/link/plugin.min.js'),(14487,'wp-includes/js/tinymce/plugins/lists/plugin.js'),(14488,'wp-includes/js/tinymce/plugins/lists/plugin.min.js'),(14489,'wp-includes/js/tinymce/plugins/media/plugin.js'),(14490,'wp-includes/js/tinymce/plugins/media/plugin.min.js'),(14491,'wp-includes/js/tinymce/plugins/paste/plugin.js'),(14492,'wp-includes/js/tinymce/plugins/paste/plugin.min.js'),(14493,'wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),(14494,'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),(14495,'wp-includes/js/tinymce/plugins/textcolor/plugin.js'),(14496,'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),(14497,'wp-includes/js/tinymce/plugins/wordpress/plugin.js'),(14498,'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),(14499,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),(14500,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),(14501,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),(14502,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),(14503,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),(14504,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),(14505,'wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),(14506,'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),(14507,'wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),(14508,'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),(14509,'wp-includes/js/tinymce/plugins/wplink/plugin.js'),(14510,'wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),(14511,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.js'),(14512,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js'),(14513,'wp-includes/js/tinymce/plugins/wpview/plugin.js'),(14514,'wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),(14515,'wp-includes/js/tinymce/skins/lightgray/content.inline.min.css'),(14516,'wp-includes/js/tinymce/skins/lightgray/content.min.css'),(14517,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot'),(14518,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),(14519,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf'),(14520,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff'),(14521,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot'),(14522,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg'),(14523,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf'),(14524,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff'),(14525,'wp-includes/js/tinymce/skins/lightgray/img/anchor.gif'),(14526,'wp-includes/js/tinymce/skins/lightgray/img/loader.gif'),(14527,'wp-includes/js/tinymce/skins/lightgray/img/object.gif'),(14528,'wp-includes/js/tinymce/skins/lightgray/img/trans.gif'),(14529,'wp-includes/js/tinymce/skins/lightgray/skin.min.css'),(14530,'wp-includes/js/tinymce/skins/wordpress/images/audio.png'),(14531,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png'),(14532,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png'),(14533,'wp-includes/js/tinymce/skins/wordpress/images/embedded.png'),(14534,'wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png'),(14535,'wp-includes/js/tinymce/skins/wordpress/images/gallery.png'),(14536,'wp-includes/js/tinymce/skins/wordpress/images/more-2x.png'),(14537,'wp-includes/js/tinymce/skins/wordpress/images/more.png'),(14538,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png'),(14539,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png'),(14540,'wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png'),(14541,'wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png'),(14542,'wp-includes/js/tinymce/skins/wordpress/images/video.png'),(14543,'wp-includes/js/tinymce/skins/wordpress/wp-content.css'),(14544,'wp-includes/js/tinymce/themes/inlite/theme.js'),(14545,'wp-includes/js/tinymce/themes/inlite/theme.min.js'),(14546,'wp-includes/js/tinymce/themes/modern/theme.js'),(14547,'wp-includes/js/tinymce/themes/modern/theme.min.js'),(14548,'wp-includes/js/tinymce/tiny_mce_popup.js'),(14549,'wp-includes/js/tinymce/tinymce.min.js'),(14550,'wp-includes/js/tinymce/utils/editable_selects.js'),(14551,'wp-includes/js/tinymce/utils/form_utils.js'),(14552,'wp-includes/js/tinymce/utils/mctabs.js'),(14553,'wp-includes/js/tinymce/utils/validate.js'),(14554,'wp-includes/js/tinymce/wp-tinymce.js'),(14555,'wp-includes/js/tinymce/wp-tinymce.php'),(14556,'wp-includes/js/tw-sack.js'),(14557,'wp-includes/js/tw-sack.min.js'),(14558,'wp-includes/js/twemoji.js'),(14559,'wp-includes/js/twemoji.min.js'),(14560,'wp-includes/js/underscore.js'),(14561,'wp-includes/js/underscore.min.js'),(14562,'wp-includes/js/utils.js'),(14563,'wp-includes/js/utils.min.js'),(14564,'wp-includes/js/wp-ajax-response.js'),(14565,'wp-includes/js/wp-ajax-response.min.js'),(14566,'wp-includes/js/wp-api.js'),(14567,'wp-includes/js/wp-api.min.js'),(14568,'wp-includes/js/wp-auth-check.js'),(14569,'wp-includes/js/wp-auth-check.min.js'),(14570,'wp-includes/js/wp-backbone.js'),(14571,'wp-includes/js/wp-backbone.min.js'),(14572,'wp-includes/js/wp-custom-header.js'),(14573,'wp-includes/js/wp-custom-header.min.js'),(14574,'wp-includes/js/wp-embed-template.js'),(14575,'wp-includes/js/wp-embed-template.min.js'),(14576,'wp-includes/js/wp-embed.js'),(14577,'wp-includes/js/wp-embed.min.js'),(14578,'wp-includes/js/wp-emoji-loader.js'),(14579,'wp-includes/js/wp-emoji-loader.min.js'),(14580,'wp-includes/js/wp-emoji-release.min.js'),(14581,'wp-includes/js/wp-emoji.js'),(14582,'wp-includes/js/wp-emoji.min.js'),(14583,'wp-includes/js/wp-list-revisions.js'),(14584,'wp-includes/js/wp-list-revisions.min.js'),(14585,'wp-includes/js/wp-lists.js'),(14586,'wp-includes/js/wp-lists.min.js'),(14587,'wp-includes/js/wp-pointer.js'),(14588,'wp-includes/js/wp-pointer.min.js'),(14589,'wp-includes/js/wp-sanitize.js'),(14590,'wp-includes/js/wp-sanitize.min.js'),(14591,'wp-includes/js/wp-util.js'),(14592,'wp-includes/js/wp-util.min.js'),(14593,'wp-includes/js/wpdialog.js'),(14594,'wp-includes/js/wpdialog.min.js'),(14595,'wp-includes/js/wplink.js'),(14596,'wp-includes/js/wplink.min.js'),(14597,'wp-includes/js/zxcvbn-async.js'),(14598,'wp-includes/js/zxcvbn-async.min.js'),(14599,'wp-includes/js/zxcvbn.min.js'),(14600,'wp-includes/kses.php'),(14601,'wp-includes/l10n.php'),(14602,'wp-includes/link-template.php'),(14603,'wp-includes/load.php'),(14604,'wp-includes/locale.php'),(14605,'wp-includes/media-template.php'),(14606,'wp-includes/media.php'),(14607,'wp-includes/meta.php'),(14608,'wp-includes/ms-blogs.php'),(14609,'wp-includes/ms-default-constants.php'),(14610,'wp-includes/ms-default-filters.php'),(14611,'wp-includes/ms-deprecated.php'),(14612,'wp-includes/ms-files.php'),(14613,'wp-includes/ms-functions.php'),(14614,'wp-includes/ms-load.php'),(14615,'wp-includes/ms-network.php'),(14616,'wp-includes/ms-settings.php'),(14617,'wp-includes/ms-site.php'),(14618,'wp-includes/nav-menu-template.php'),(14619,'wp-includes/nav-menu.php'),(14620,'wp-includes/option.php'),(14621,'wp-includes/php-compat/readonly.php'),(14622,'wp-includes/pluggable-deprecated.php'),(14623,'wp-includes/pluggable.php'),(14624,'wp-includes/plugin.php'),(14625,'wp-includes/pomo/entry.php'),(14626,'wp-includes/pomo/mo.php'),(14627,'wp-includes/pomo/plural-forms.php'),(14628,'wp-includes/pomo/po.php'),(14629,'wp-includes/pomo/streams.php'),(14630,'wp-includes/pomo/translations.php'),(14631,'wp-includes/post-formats.php'),(14632,'wp-includes/post-template.php'),(14633,'wp-includes/post-thumbnail-template.php'),(14634,'wp-includes/post.php'),(14635,'wp-includes/query.php'),(14636,'wp-includes/random_compat/byte_safe_strings.php'),(14637,'wp-includes/random_compat/cast_to_int.php'),(14638,'wp-includes/random_compat/error_polyfill.php'),(14639,'wp-includes/random_compat/random.php'),(14640,'wp-includes/random_compat/random_bytes_com_dotnet.php'),(14641,'wp-includes/random_compat/random_bytes_dev_urandom.php'),(14642,'wp-includes/random_compat/random_bytes_libsodium.php'),(14643,'wp-includes/random_compat/random_bytes_libsodium_legacy.php'),(14644,'wp-includes/random_compat/random_bytes_mcrypt.php'),(14645,'wp-includes/random_compat/random_int.php'),(14646,'wp-includes/registration-functions.php'),(14647,'wp-includes/registration.php'),(14648,'wp-includes/rest-api/class-wp-rest-request.php'),(14649,'wp-includes/rest-api/class-wp-rest-response.php'),(14650,'wp-includes/rest-api/class-wp-rest-server.php'),(14651,'wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php'),(14652,'wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php'),(14653,'wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php'),(14654,'wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php'),(14655,'wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php'),(14656,'wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php'),(14657,'wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php'),(14658,'wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php'),(14659,'wp-includes/rest-api/endpoints/class-wp-rest-controller.php'),(14660,'wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php'),(14661,'wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php'),(14662,'wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php'),(14663,'wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php'),(14664,'wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php'),(14665,'wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php'),(14666,'wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php'),(14667,'wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'),(14668,'wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php'),(14669,'wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php'),(14670,'wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php'),(14671,'wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php'),(14672,'wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php'),(14673,'wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php'),(14674,'wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php'),(14675,'wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'),(14676,'wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php'),(14677,'wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php'),(14678,'wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php'),(14679,'wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php'),(14680,'wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php'),(14681,'wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php'),(14682,'wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php'),(14683,'wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php'),(14684,'wp-includes/rest-api/fields/class-wp-rest-meta-fields.php'),(14685,'wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php'),(14686,'wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php'),(14687,'wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php'),(14688,'wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php'),(14689,'wp-includes/rest-api/search/class-wp-rest-post-search-handler.php'),(14690,'wp-includes/rest-api/search/class-wp-rest-search-handler.php'),(14691,'wp-includes/rest-api/search/class-wp-rest-term-search-handler.php'),(14692,'wp-includes/rest-api.php'),(14693,'wp-includes/revision.php'),(14694,'wp-includes/rewrite.php'),(14695,'wp-includes/robots-template.php'),(14696,'wp-includes/rss-functions.php'),(14697,'wp-includes/rss.php'),(14698,'wp-includes/script-loader.php'),(14699,'wp-includes/session.php'),(14700,'wp-includes/shortcodes.php'),(14701,'wp-includes/sitemaps/class-wp-sitemaps-index.php'),(14702,'wp-includes/sitemaps/class-wp-sitemaps-provider.php'),(14703,'wp-includes/sitemaps/class-wp-sitemaps-registry.php'),(14704,'wp-includes/sitemaps/class-wp-sitemaps-renderer.php'),(14705,'wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php'),(14706,'wp-includes/sitemaps/class-wp-sitemaps.php'),(14707,'wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php'),(14708,'wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php'),(14709,'wp-includes/sitemaps/providers/class-wp-sitemaps-users.php'),(14710,'wp-includes/sitemaps.php'),(14711,'wp-includes/sodium_compat/LICENSE'),(14712,'wp-includes/sodium_compat/autoload-php7.php'),(14713,'wp-includes/sodium_compat/autoload.php'),(14714,'wp-includes/sodium_compat/composer.json'),(14715,'wp-includes/sodium_compat/lib/constants.php'),(14716,'wp-includes/sodium_compat/lib/namespaced.php'),(14717,'wp-includes/sodium_compat/lib/php72compat.php'),(14718,'wp-includes/sodium_compat/lib/php72compat_const.php'),(14719,'wp-includes/sodium_compat/lib/ristretto255.php'),(14720,'wp-includes/sodium_compat/lib/sodium_compat.php'),(14721,'wp-includes/sodium_compat/lib/stream-xchacha20.php'),(14722,'wp-includes/sodium_compat/namespaced/Compat.php'),(14723,'wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php'),(14724,'wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(14725,'wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(14726,'wp-includes/sodium_compat/namespaced/Core/ChaCha20.php'),(14727,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(14728,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(14729,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(14730,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(14731,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(14732,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(14733,'wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php'),(14734,'wp-includes/sodium_compat/namespaced/Core/Curve25519.php'),(14735,'wp-includes/sodium_compat/namespaced/Core/Ed25519.php'),(14736,'wp-includes/sodium_compat/namespaced/Core/HChaCha20.php'),(14737,'wp-includes/sodium_compat/namespaced/Core/HSalsa20.php'),(14738,'wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php'),(14739,'wp-includes/sodium_compat/namespaced/Core/Poly1305.php'),(14740,'wp-includes/sodium_compat/namespaced/Core/Salsa20.php'),(14741,'wp-includes/sodium_compat/namespaced/Core/SipHash.php'),(14742,'wp-includes/sodium_compat/namespaced/Core/Util.php'),(14743,'wp-includes/sodium_compat/namespaced/Core/X25519.php'),(14744,'wp-includes/sodium_compat/namespaced/Core/XChaCha20.php'),(14745,'wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php'),(14746,'wp-includes/sodium_compat/namespaced/Crypto.php'),(14747,'wp-includes/sodium_compat/namespaced/File.php'),(14748,'wp-includes/sodium_compat/src/Compat.php'),(14749,'wp-includes/sodium_compat/src/Core/BLAKE2b.php'),(14750,'wp-includes/sodium_compat/src/Core/Base64/Common.php'),(14751,'wp-includes/sodium_compat/src/Core/Base64/Original.php'),(14752,'wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php'),(14753,'wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php'),(14754,'wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(14755,'wp-includes/sodium_compat/src/Core/ChaCha20.php'),(14756,'wp-includes/sodium_compat/src/Core/Curve25519/Fe.php'),(14757,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(14758,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(14759,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(14760,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(14761,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(14762,'wp-includes/sodium_compat/src/Core/Curve25519/H.php'),(14763,'wp-includes/sodium_compat/src/Core/Curve25519/README.md'),(14764,'wp-includes/sodium_compat/src/Core/Curve25519.php'),(14765,'wp-includes/sodium_compat/src/Core/Ed25519.php'),(14766,'wp-includes/sodium_compat/src/Core/HChaCha20.php'),(14767,'wp-includes/sodium_compat/src/Core/HSalsa20.php'),(14768,'wp-includes/sodium_compat/src/Core/Poly1305/State.php'),(14769,'wp-includes/sodium_compat/src/Core/Poly1305.php'),(14770,'wp-includes/sodium_compat/src/Core/Ristretto255.php'),(14771,'wp-includes/sodium_compat/src/Core/Salsa20.php'),(14772,'wp-includes/sodium_compat/src/Core/SecretStream/State.php'),(14773,'wp-includes/sodium_compat/src/Core/SipHash.php'),(14774,'wp-includes/sodium_compat/src/Core/Util.php'),(14775,'wp-includes/sodium_compat/src/Core/X25519.php'),(14776,'wp-includes/sodium_compat/src/Core/XChaCha20.php'),(14777,'wp-includes/sodium_compat/src/Core/XSalsa20.php'),(14778,'wp-includes/sodium_compat/src/Core32/BLAKE2b.php'),(14779,'wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(14780,'wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(14781,'wp-includes/sodium_compat/src/Core32/ChaCha20.php'),(14782,'wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php'),(14783,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(14784,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(14785,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(14786,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(14787,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(14788,'wp-includes/sodium_compat/src/Core32/Curve25519/H.php'),(14789,'wp-includes/sodium_compat/src/Core32/Curve25519/README.md'),(14790,'wp-includes/sodium_compat/src/Core32/Curve25519.php'),(14791,'wp-includes/sodium_compat/src/Core32/Ed25519.php'),(14792,'wp-includes/sodium_compat/src/Core32/HChaCha20.php'),(14793,'wp-includes/sodium_compat/src/Core32/HSalsa20.php'),(14794,'wp-includes/sodium_compat/src/Core32/Int32.php'),(14795,'wp-includes/sodium_compat/src/Core32/Int64.php'),(14796,'wp-includes/sodium_compat/src/Core32/Poly1305/State.php'),(14797,'wp-includes/sodium_compat/src/Core32/Poly1305.php'),(14798,'wp-includes/sodium_compat/src/Core32/Salsa20.php'),(14799,'wp-includes/sodium_compat/src/Core32/SecretStream/State.php'),(14800,'wp-includes/sodium_compat/src/Core32/SipHash.php'),(14801,'wp-includes/sodium_compat/src/Core32/Util.php'),(14802,'wp-includes/sodium_compat/src/Core32/X25519.php'),(14803,'wp-includes/sodium_compat/src/Core32/XChaCha20.php'),(14804,'wp-includes/sodium_compat/src/Core32/XSalsa20.php'),(14805,'wp-includes/sodium_compat/src/Crypto.php'),(14806,'wp-includes/sodium_compat/src/Crypto32.php'),(14807,'wp-includes/sodium_compat/src/File.php'),(14808,'wp-includes/sodium_compat/src/PHP52/SplFixedArray.php'),(14809,'wp-includes/sodium_compat/src/SodiumException.php'),(14810,'wp-includes/spl-autoload-compat.php'),(14811,'wp-includes/taxonomy.php'),(14812,'wp-includes/template-canvas.php'),(14813,'wp-includes/template-loader.php'),(14814,'wp-includes/template.php'),(14815,'wp-includes/theme-compat/comments.php'),(14816,'wp-includes/theme-compat/embed-404.php'),(14817,'wp-includes/theme-compat/embed-content.php'),(14818,'wp-includes/theme-compat/embed.php'),(14819,'wp-includes/theme-compat/footer-embed.php'),(14820,'wp-includes/theme-compat/footer.php'),(14821,'wp-includes/theme-compat/header-embed.php'),(14822,'wp-includes/theme-compat/header.php'),(14823,'wp-includes/theme-compat/sidebar.php'),(14824,'wp-includes/theme-i18n.json'),(14825,'wp-includes/theme-templates.php'),(14826,'wp-includes/theme.json'),(14827,'wp-includes/theme.php'),(14828,'wp-includes/update.php'),(14829,'wp-includes/user.php'),(14830,'wp-includes/vars.php'),(14831,'wp-includes/version.php'),(14832,'wp-includes/widgets/class-wp-nav-menu-widget.php'),(14833,'wp-includes/widgets/class-wp-widget-archives.php'),(14834,'wp-includes/widgets/class-wp-widget-block.php'),(14835,'wp-includes/widgets/class-wp-widget-calendar.php'),(14836,'wp-includes/widgets/class-wp-widget-categories.php'),(14837,'wp-includes/widgets/class-wp-widget-custom-html.php'),(14838,'wp-includes/widgets/class-wp-widget-links.php'),(14839,'wp-includes/widgets/class-wp-widget-media-audio.php'),(14840,'wp-includes/widgets/class-wp-widget-media-gallery.php'),(14841,'wp-includes/widgets/class-wp-widget-media-image.php'),(14842,'wp-includes/widgets/class-wp-widget-media-video.php'),(14843,'wp-includes/widgets/class-wp-widget-media.php'),(14844,'wp-includes/widgets/class-wp-widget-meta.php'),(14845,'wp-includes/widgets/class-wp-widget-pages.php'),(14846,'wp-includes/widgets/class-wp-widget-recent-comments.php'),(14847,'wp-includes/widgets/class-wp-widget-recent-posts.php'),(14848,'wp-includes/widgets/class-wp-widget-rss.php'),(14849,'wp-includes/widgets/class-wp-widget-search.php'),(14850,'wp-includes/widgets/class-wp-widget-tag-cloud.php'),(14851,'wp-includes/widgets/class-wp-widget-text.php'),(14852,'wp-includes/widgets.php'),(14853,'wp-includes/wlwmanifest.xml'),(14854,'wp-includes/wp-db.php'),(14855,'wp-includes/wp-diff.php'),(14856,'wp-links-opml.php'),(14857,'wp-load.php'),(14858,'wp-login.php'),(14859,'wp-mail.php'),(14860,'wp-settings.php'),(14861,'wp-signup.php'),(14862,'wp-trackback.php'),(14863,'xmlrpc.php');
/*!40000 ALTER TABLE `wpjj_wfKnownFileList` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wfLiveTrafficHuman`
--

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

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

--
-- Table structure for table `wpjj_wfLocs`
--

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

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

--
-- Table structure for table `wpjj_wfLogins`
--

DROP TABLE IF EXISTS `wpjj_wfLogins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_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=21 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wfLogins`
--

LOCK TABLES `wpjj_wfLogins` WRITE;
/*!40000 ALTER TABLE `wpjj_wfLogins` DISABLE KEYS */;
INSERT INTO `wpjj_wfLogins` (`id`, `hitID`, `ctime`, `fail`, `action`, `username`, `userID`, `IP`, `UA`) VALUES (1,98327,1536092066.966771,1,'loginFailInvalidUsername','kclgenetics',0,_binary '\0\0\0\0\0\0\0\0\0\0%	5','Mozilla/5.0 (Windows NT 5.1; WOW64; x64) AppleWebKit/532.89.32 (KHTML, like Gecko) Chrome/57.4.9115.4487 Safari/534.59 OPR/44.5.0838.6100'),(2,98492,1536117803.062807,1,'loginFailInvalidUsername','admin',0,_binary '\0\0\0\0\0\0\0\0\0\0%	5','Mozilla/5.0 (Windows NT 6.2; WOW64; x64) AppleWebKit/531.81.34 (KHTML, like Gecko) Chrome/56.3.9378.4540 Safari/534.41 OPR/44.5.0091.5363'),(3,100630,1536478274.673950,1,'loginFailInvalidUsername','admin',0,_binary '\0\0\0\0\0\0\0\0\0\0Q\\','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_38_91) AppleWebKit/533.97.40 (KHTML, like Gecko) Chrome/57.5.0885.5157 Safari/534.67 Edge/34.63364'),(4,100682,1536525234.586136,1,'loginFailInvalidUsername','admin',0,_binary '\0\0\0\0\0\0\0\0\0\0խ','Mozilla/5.0 (Windows NT 5.0; rv:52.55.02) Gecko/20143862 Firefox/52.55.02'),(5,100720,1536549046.065154,1,'loginFailInvalidUsername','admin',0,_binary '\0\0\0\0\0\0\0\0\0\0\ӯr','Mozilla/5.0 (Windows NT 5.2; WOW64; x64) AppleWebKit/532.95.48 (KHTML, like Gecko) Chrome/57.5.0735.5008 Safari/534.65 OPR/40.6.1458.6720'),(6,100736,1536572247.101866,1,'loginFailInvalidUsername','admin',0,_binary '\0\0\0\0\0\0\0\0\0\0[˩','Mozilla/5.0 (Windows NT 5.0) AppleWebKit/533.05.58 (KHTML, like Gecko) Version/5.5.1 Safari/532.13'),(7,102221,1536595088.695781,1,'loginFailInvalidUsername','admin',0,_binary '\0\0\0\0\0\0\0\0\0\0R\v','Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_56_09) AppleWebKit/534.05.68 (KHTML, like Gecko) Chrome/53.6.1660.7932 Safari/530.75 Edge/34.71118'),(8,115501,1544292063.867529,0,'loginOK','larsons',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.1 Safari/605.1.15'),(9,116855,1545006391.698258,0,'loginOK','larsons',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(10,125541,1548810929.376015,0,'loginOK','larsons',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(11,135943,1556668192.957806,0,'loginOK','larsons',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.3 Safari/605.1.15'),(12,136019,1556754056.155770,0,'loginOK','larsons',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(13,136020,1556754200.065965,0,'logout','larsons',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(14,136024,1556755535.279999,0,'loginOK','larsons',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(15,136057,1556759826.828434,0,'loginOK','larsons',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(16,136064,1556761974.642273,0,'loginOK','larsons',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(17,136323,1557027648.562889,0,'loginOK','larsons',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.3 Safari/605.1.15'),(18,138122,1558581813.368538,0,'loginOK','larsons',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Safari/605.1.15'),(19,139078,1559782709.634988,0,'loginOK','larsons',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Safari/605.1.15'),(20,139079,1559782710.992854,0,'loginOK','larsons',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Safari/605.1.15');
/*!40000 ALTER TABLE `wpjj_wfLogins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wfNotifications`
--

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

LOCK TABLES `wpjj_wfNotifications` WRITE;
/*!40000 ALTER TABLE `wpjj_wfNotifications` DISABLE KEYS */;
INSERT INTO `wpjj_wfNotifications` (`id`, `new`, `category`, `priority`, `ctime`, `html`, `links`) VALUES ('site-7MAQAAA',0,'wfplugin_scan',502,1538503651,'<a href=\"http://kclgenetics.com/wp-admin/admin.php?page=WordfenceScan\">11 issues found in most recent scan</a>','[]'),('site-7QAQAAA',0,'wfplugin_updates',502,1544292261,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for WordPress (v5.0)</a>','[]'),('site-RMBAAAA',1,'wfplugin_scan',502,1648203377,'<a href=\"http://kclgenetics.com/wp-admin/admin.php?page=WordfenceScan\">8 issues found in most recent scan</a>','[]'),('site-O4BQAAA',0,'wfplugin_updates',502,1556646899,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">Updates are available for WordPress (v5.1.1), 6 plugins, and 8 themes</a>','[]'),('site-LMCQAAA',0,'wfplugin_updates',502,1556734907,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 theme</a>','[]'),('site-NMCQAAA',0,'wfplugin_updates',502,1557334336,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">Updates are available for 7 themes</a>','[]'),('site-RMCQAAA',0,'wfplugin_updates',502,1559785155,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-5ICQAAA',0,'wfplugin_updates',502,1586954764,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for WordPress (v5.4)</a>','[]'),('site-GQFAAAA',0,'wfplugin_updates',502,1588181812,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-JEFAAAA',0,'wfplugin_updates',502,1588786711,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-RQFAAAA',0,'wfplugin_updates',502,1591205759,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-TUFAAAA',0,'wfplugin_updates',502,1591844084,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 theme</a>','[]'),('site-ZYFAAAA',0,'wfplugin_updates',502,1593721215,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-GIFQAAA',0,'wfplugin_updates',502,1628031041,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-OEHQAAA',0,'wfplugin_updates',502,1629799423,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-PYHQAAA',0,'wfplugin_updates',502,1630749869,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-SUHQAAA',0,'wfplugin_updates',502,1631959423,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('network-GQ2TGNZU',0,'toupp-20210927',100,1637578991,'<p><strong>Wordfence Terms of Use and Privacy Policy Updated</strong></p>\n<p>Please review the updated Wordfence Terms of Use and Privacy Policy. We have incorporated the new versions of the Standard Contractual Clauses issued by the European Commission.</p>\n<p><a href=\"https://www.wordfence.com/terms-of-use/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20210927\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">Terms of Use</a> <a href=\"https://www.wordfence.com/privacy-policy/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20210927\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">Privacy Policy</a></p>','[]'),('site-VEHQAAA',0,'wfplugin_updates',502,1633169161,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-V4HQAAA',0,'wfplugin_updates',502,1633428356,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-YQHQAAA',0,'wfplugin_updates',502,1634650148,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-2IHQAAA',1,'wfplugin_updates',502,1648203373,'<a href=\"http://kclgenetics.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('network-GQ2TGNZV',1,'toupp-20211122',100,1648203372,'<p><strong>Wordfence Terms of Service and End User License Agreement Update</strong></p>\n<p>Please review the updated Terms of Service with the new Wordfence End User License Agreement.\n</p>\n<p><a href=\"https://www.wordfence.com/terms-of-service/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20211122\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">Terms of Service</a> <a href=\"https://www.wordfence.com/license-terms-and-conditions/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20211122\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">End User License Agreement</a></p>','[]');
/*!40000 ALTER TABLE `wpjj_wfNotifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wfPendingIssues`
--

DROP TABLE IF EXISTS `wpjj_wfPendingIssues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_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 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wfPendingIssues`
--

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

--
-- Table structure for table `wpjj_wfReverseCache`
--

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

--
-- Dumping data for table `wpjj_wfReverseCache`
--

LOCK TABLES `wpjj_wfReverseCache` WRITE;
/*!40000 ALTER TABLE `wpjj_wfReverseCache` DISABLE KEYS */;
INSERT INTO `wpjj_wfReverseCache` (`IP`, `host`, `lastUpdate`) VALUES (_binary '\0\0\0\0\0\0\0\0\0\0BHV','crawl-66-249-72-86.googlebot.com',1648131991),(_binary '\0\0\0\0\0\0\0\0\0\0BH[','crawl-66-249-72-91.googlebot.com',1648131987),(_binary '\0\0\0\0\0\0\0\0\0\0BH_','crawl-66-249-72-95.googlebot.com',1648218501),(_binary '\0\0\0\0\0\0\0\0\0\0BHR','crawl-66-249-72-82.googlebot.com',1648218408);
/*!40000 ALTER TABLE `wpjj_wfReverseCache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wfSNIPCache`
--

DROP TABLE IF EXISTS `wpjj_wfSNIPCache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_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 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wfSNIPCache`
--

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

--
-- Table structure for table `wpjj_wfStatus`
--

DROP TABLE IF EXISTS `wpjj_wfStatus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_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=119815 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wfStatus`
--

LOCK TABLES `wpjj_wfStatus` WRITE;
/*!40000 ALTER TABLE `wpjj_wfStatus` DISABLE KEYS */;
INSERT INTO `wpjj_wfStatus` (`id`, `ctime`, `level`, `type`, `msg`) VALUES (119311,1647897814.654424,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(119579,1648161628.914940,2,'info','Analyzed 14863 files containing 296.84 MB of data.'),(119580,1648161628.915197,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(119581,1648161628.919610,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(119582,1648161629.156893,10,'info','SUM_ENDOK:Scanning for known malware files'),(119583,1648161629.174622,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(119584,1648161629.529508,1,'error','Scan Engine Error: The signature on the request to start a scan is invalid. Please try again.'),(119585,1648161629.630409,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(119605,1648161648.822801,2,'info','Scanned contents of 208 additional files at 11.21 per second'),(119586,1648161629.638033,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(119587,1648161629.640109,10,'info','SUM_START:Scanning file contents for URLs on a domain blocklist'),(119588,1648161630.264083,2,'info','Starting scan of file contents'),(119589,1648161631.310719,2,'info','Scanned contents of 13 additional files at 12.44 per second'),(119590,1648161632.403383,2,'info','Scanned contents of 30 additional files at 14.03 per second'),(119591,1648161633.693298,2,'info','Scanned contents of 38 additional files at 11.09 per second'),(119592,1648161634.913428,2,'info','Scanned contents of 49 additional files at 10.54 per second'),(119593,1648161635.985115,2,'info','Scanned contents of 63 additional files at 11.01 per second'),(119594,1648161637.122561,2,'info','Scanned contents of 81 additional files at 11.81 per second'),(119595,1648161638.174297,2,'info','Scanned contents of 91 additional files at 11.51 per second'),(119596,1648161639.175556,2,'info','Scanned contents of 104 additional files at 11.67 per second'),(119597,1648161640.217787,2,'info','Scanned contents of 115 additional files at 11.56 per second'),(119598,1648161641.265874,2,'info','Scanned contents of 117 additional files at 10.64 per second'),(119599,1648161642.270879,2,'info','Scanned contents of 125 additional files at 10.41 per second'),(119600,1648161643.676447,2,'info','Scanned contents of 152 additional files at 11.33 per second'),(119601,1648161644.758596,2,'info','Scanned contents of 164 additional files at 11.32 per second'),(119602,1648161645.762954,2,'info','Scanned contents of 169 additional files at 10.90 per second'),(119603,1648161646.800331,2,'info','Scanned contents of 174 additional files at 10.52 per second'),(119604,1648161647.801448,2,'info','Scanned contents of 187 additional files at 10.66 per second'),(119312,1647897814.656836,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(119560,1648161612.750208,2,'info','Analyzed 13000 files containing 255.7 MB of data so far'),(119559,1648161611.981417,2,'info','Analyzed 12900 files containing 253.02 MB of data so far'),(119558,1648161611.506923,2,'info','Analyzed 12800 files containing 251.5 MB of data so far'),(118984,1647897495.045675,2,'info','Analyzed 2000 files containing 50.9 MB of data so far'),(118985,1647897495.229678,2,'info','Analyzed 2100 files containing 51.27 MB of data so far'),(118986,1647897495.389305,2,'info','Analyzed 2200 files containing 51.85 MB of data so far'),(118987,1647897496.194662,2,'info','Analyzed 2300 files containing 52.66 MB of data so far'),(118988,1647897496.498105,2,'info','Analyzed 2400 files containing 53.22 MB of data so far'),(118989,1647897498.704149,2,'info','Analyzed 2500 files containing 59.92 MB of data so far'),(119506,1648161584.761056,2,'info','Analyzed 7600 files containing 155.16 MB of data so far'),(119507,1648161584.940424,2,'info','Analyzed 7700 files containing 155.68 MB of data so far'),(119508,1648161585.448373,2,'info','Analyzed 7800 files containing 157.7 MB of data so far'),(119509,1648161585.656794,2,'info','Analyzed 7900 files containing 158.29 MB of data so far'),(119510,1648161585.794322,2,'info','Analyzed 8000 files containing 158.53 MB of data so far'),(119511,1648161585.980430,2,'info','Analyzed 8100 files containing 159.05 MB of data so far'),(119512,1648161586.144339,2,'info','Analyzed 8200 files containing 159.41 MB of data so far'),(119513,1648161586.327476,2,'info','Analyzed 8300 files containing 159.96 MB of data so far'),(119514,1648161586.650993,2,'info','Analyzed 8400 files containing 161.13 MB of data so far'),(119515,1648161586.777589,2,'info','Analyzed 8500 files containing 161.27 MB of data so far'),(119516,1648161587.024935,2,'info','Analyzed 8600 files containing 161.99 MB of data so far'),(119517,1648161587.282624,2,'info','Analyzed 8700 files containing 162.68 MB of data so far'),(119518,1648161587.663983,2,'info','Analyzed 8800 files containing 164.21 MB of data so far'),(119519,1648161588.175483,2,'info','Analyzed 8900 files containing 165.99 MB of data so far'),(119520,1648161588.646532,2,'info','Analyzed 9000 files containing 167.82 MB of data so far'),(119521,1648161589.226445,2,'info','Analyzed 9100 files containing 169.49 MB of data so far'),(119644,1648161693.229141,2,'info','Scanned contents of 915 additional files at 14.53 per second'),(119642,1648161691.043871,2,'info','Scanned contents of 878 additional files at 14.45 per second'),(119643,1648161692.081942,2,'info','Scanned contents of 905 additional files at 14.64 per second'),(119641,1648161689.722798,2,'info','Scanned contents of 851 additional files at 14.31 per second'),(119640,1648161688.720740,2,'info','Scanned contents of 819 additional files at 14.01 per second'),(119639,1648161687.689238,2,'info','Scanned contents of 791 additional files at 13.77 per second'),(119638,1648161686.668177,2,'info','Scanned contents of 769 additional files at 13.63 per second'),(119637,1648161685.632699,2,'info','Scanned contents of 744 additional files at 13.44 per second'),(119636,1648161684.627723,2,'info','Scanned contents of 718 additional files at 13.21 per second'),(119635,1648161683.612894,2,'info','Scanned contents of 689 additional files at 12.92 per second'),(119631,1648161679.478983,2,'info','Scanned contents of 612 additional files at 12.44 per second'),(119632,1648161680.530814,2,'info','Scanned contents of 631 additional files at 12.55 per second'),(119633,1648161681.561869,2,'info','Scanned contents of 657 additional files at 12.81 per second'),(119634,1648161682.586577,2,'info','Scanned contents of 671 additional files at 12.82 per second'),(119012,1647897520.712393,2,'info','Analyzed 4800 files containing 109.1 MB of data so far'),(119011,1647897520.490978,2,'info','Analyzed 4700 files containing 108.34 MB of data so far'),(118836,1647640145.502478,2,'info','Scanned contents of 2941 additional files at 12.73 per second'),(118837,1647640146.548605,2,'info','Scanned contents of 2963 additional files at 12.77 per second'),(118838,1647640154.999311,2,'info','Scanned contents of 2977 additional files at 12.37 per second'),(118839,1647640156.539219,2,'info','Scanned contents of 2980 additional files at 12.31 per second'),(119606,1648161649.848659,2,'info','Scanned contents of 243 additional files at 12.41 per second'),(119223,1647897709.247354,2,'info','Scanned contents of 1405 additional files at 10.29 per second'),(119224,1647897710.272798,2,'info','Scanned contents of 1423 additional files at 10.34 per second'),(119225,1647897711.281957,2,'info','Scanned contents of 1441 additional files at 10.39 per second'),(119226,1647897712.287744,2,'info','Scanned contents of 1457 additional files at 10.43 per second'),(119611,1648161655.363265,2,'info','Scanned contents of 303 additional files at 12.07 per second'),(119610,1648161654.239497,2,'info','Scanned contents of 293 additional files at 12.22 per second'),(119609,1648161653.164319,2,'info','Scanned contents of 290 additional files at 12.66 per second'),(119608,1648161652.027322,2,'info','Scanned contents of 275 additional files at 12.64 per second'),(119607,1648161651.017410,2,'info','Scanned contents of 252 additional files at 12.14 per second'),(118958,1647897474.876258,2,'info','12000 files indexed'),(118959,1647897474.956109,2,'info','12500 files indexed'),(118960,1647897475.630170,2,'info','13000 files indexed'),(118961,1647897476.203317,2,'info','13500 files indexed'),(119803,1648161860.976674,10,'info','SUM_FINAL:Scan complete. You have 8 new issues to fix. See below.'),(118962,1647897476.273047,2,'info','14000 files indexed'),(118963,1647897476.331145,2,'info','14500 files indexed'),(118964,1647897476.355734,2,'info','14783 files indexed'),(118965,1647897477.007621,2,'info','Analyzed 100 files containing 1.67 MB of data so far'),(118968,1647897478.323117,2,'info','Analyzed 400 files containing 6.89 MB of data so far'),(118966,1647897477.420980,2,'info','Analyzed 200 files containing 2.89 MB of data so far'),(118967,1647897477.750289,2,'info','Analyzed 300 files containing 4.09 MB of data so far'),(119802,1648161860.976495,1,'info','Scan Complete. Scanned 14863 files, 26 plugins, 24 themes, 48 posts, 0 comments and 5071 URLs in 5 minutes 31 seconds.'),(119800,1648161860.975882,1,'info','-------------------'),(119801,1648161860.976274,2,'info','Wordfence used 55.5 MB of memory for scan. Server peak memory usage was: 163.5 MB'),(118870,1647640162.699249,1,'info','Scan Complete. Scanned 14783 files, 26 plugins, 24 themes, 48 posts, 0 comments and 4992 URLs in 5 minutes 56 seconds.'),(118865,1647640162.692424,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(118866,1647640162.692823,2,'info','Done examining URLs'),(118868,1647640162.698499,1,'info','-------------------'),(118869,1647640162.698953,2,'info','Wordfence used 55 MB of memory for scan. Server peak memory usage was: 163 MB'),(118851,1647640158.043967,2,'info','Checking 226 host keys against Wordfence scanning servers.'),(118852,1647640159.110756,2,'info','Done host key check.'),(118853,1647640159.111307,2,'info','Done examining URLs'),(118858,1647640159.135204,2,'info','Starting password strength check on 1 user.'),(118972,1647897481.033673,2,'info','Analyzed 800 files containing 11.83 MB of data so far'),(118973,1647897481.675216,2,'info','Analyzed 900 files containing 13.69 MB of data so far'),(118974,1647897481.964501,2,'info','Analyzed 1000 files containing 15.53 MB of data so far'),(118975,1647897482.666067,2,'info','Analyzed 1100 files containing 17.16 MB of data so far'),(118976,1647897483.337745,2,'info','Analyzed 1200 files containing 18.49 MB of data so far'),(118977,1647897485.619803,2,'info','Analyzed 1300 files containing 21.73 MB of data so far'),(119742,1648161819.779756,2,'info','Scanned contents of 2446 additional files at 12.91 per second'),(119743,1648161823.127999,2,'info','Scanned contents of 2450 additional files at 12.70 per second'),(119744,1648161824.130795,2,'info','Scanned contents of 2473 additional files at 12.76 per second'),(119745,1648161824.679941,1,'error','Scan Engine Error: The signature on the request to start a scan is invalid. Please try again.'),(119746,1648161826.425084,2,'info','Scanned contents of 2496 additional files at 12.72 per second'),(119747,1648161827.432203,2,'info','Scanned contents of 2514 additional files at 12.75 per second'),(119748,1648161828.432644,2,'info','Scanned contents of 2532 additional files at 12.78 per second'),(119749,1648161829.536015,2,'info','Scanned contents of 2544 additional files at 12.77 per second'),(119750,1648161830.540105,2,'info','Scanned contents of 2559 additional files at 12.78 per second'),(119751,1648161831.564022,2,'info','Scanned contents of 2573 additional files at 12.78 per second'),(119752,1648161832.594536,2,'info','Scanned contents of 2585 additional files at 12.78 per second'),(119753,1648161833.607427,2,'info','Scanned contents of 2603 additional files at 12.80 per second'),(119004,1647897517.975757,2,'info','Analyzed 4000 files containing 100.47 MB of data so far'),(119005,1647897518.432104,2,'info','Analyzed 4100 files containing 101.79 MB of data so far'),(119006,1647897518.681615,2,'info','Analyzed 4200 files containing 102.82 MB of data so far'),(119007,1647897519.304296,2,'info','Analyzed 4300 files containing 104.8 MB of data so far'),(119008,1647897519.651837,2,'info','Analyzed 4400 files containing 105.44 MB of data so far'),(119009,1647897519.857139,2,'info','Analyzed 4500 files containing 106.3 MB of data so far'),(119010,1647897520.218451,2,'info','Analyzed 4600 files containing 107.34 MB of data so far'),(119723,1648161793.870807,2,'info','Scanned contents of 2196 additional files at 13.42 per second'),(119724,1648161794.918656,2,'info','Scanned contents of 2214 additional files at 13.45 per second'),(119725,1648161795.937037,2,'info','Scanned contents of 2233 additional files at 13.48 per second'),(119726,1648161797.031662,2,'info','Scanned contents of 2247 additional files at 13.47 per second'),(119727,1648161798.044761,2,'info','Scanned contents of 2269 additional files at 13.52 per second'),(119728,1648161799.051834,2,'info','Scanned contents of 2290 additional files at 13.57 per second'),(119729,1648161800.096561,2,'info','Scanned contents of 2306 additional files at 13.58 per second'),(119730,1648161802.121367,2,'info','Scanned contents of 2310 additional files at 13.44 per second'),(119731,1648161803.943295,2,'info','Scanned contents of 2313 additional files at 13.32 per second'),(119732,1648161805.069716,2,'info','Scanned contents of 2322 additional files at 13.28 per second'),(119733,1648161806.072084,2,'info','Scanned contents of 2359 additional files at 13.42 per second'),(119735,1648161810.547288,2,'info','Scanned contents of 2377 additional files at 13.18 per second'),(119734,1648161807.611700,2,'info','Scanned contents of 2375 additional files at 13.39 per second'),(119207,1647897689.609885,2,'info','Scanned contents of 1093 additional files at 9.34 per second'),(119206,1647897688.337131,2,'info','Scanned contents of 1088 additional files at 9.40 per second'),(119205,1647897685.650525,2,'info','Scanned contents of 1075 additional files at 9.51 per second'),(119204,1647897684.469709,2,'info','Scanned contents of 1071 additional files at 9.58 per second'),(119201,1647897680.998970,2,'info','Scanned contents of 1039 additional files at 9.59 per second'),(119202,1647897682.129557,2,'info','Scanned contents of 1055 additional files at 9.64 per second'),(119203,1647897683.253341,2,'info','Scanned contents of 1067 additional files at 9.65 per second'),(119522,1648161589.594612,2,'info','Analyzed 9200 files containing 170.66 MB of data so far'),(119523,1648161590.202126,2,'info','Analyzed 9300 files containing 172.27 MB of data so far'),(119315,1647897814.836809,2,'info','Checking 226 host keys against Wordfence scanning servers.'),(119316,1647897815.052301,2,'info','Done host key check.'),(119317,1647897815.052941,2,'info','Done examining URLs'),(119318,1647897815.054258,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),(119319,1647897815.062728,10,'info','SUM_START:Scanning comments for URLs on a domain blocklist'),(119320,1647897815.069300,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),(119321,1647897815.076512,10,'info','SUM_START:Scanning for weak passwords'),(119322,1647897815.079273,2,'info','Starting password strength check on 1 user.'),(119323,1647897815.091709,10,'info','SUM_ENDOK:Scanning for weak passwords'),(119324,1647897815.098492,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(119325,1647897817.635630,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(119378,1648161535.478740,10,'info','SUM_ENDOK:Scanning to check available disk space'),(119000,1647897516.820421,2,'info','Analyzed 3600 files containing 96.29 MB of data so far'),(118999,1647897516.056753,2,'info','Analyzed 3500 files containing 94.56 MB of data so far'),(118998,1647897515.180284,2,'info','Analyzed 3400 files containing 92.3 MB of data so far'),(118997,1647897504.192791,2,'info','Analyzed 3300 files containing 74.83 MB of data so far'),(118996,1647897503.909802,2,'info','Analyzed 3200 files containing 74.37 MB of data so far'),(118995,1647897501.651837,2,'info','Analyzed 3100 files containing 64.36 MB of data so far'),(118994,1647897500.859272,2,'info','Analyzed 3000 files containing 62.63 MB of data so far'),(118993,1647897500.350188,2,'info','Analyzed 2900 files containing 61.83 MB of data so far'),(118990,1647897499.042606,2,'info','Analyzed 2600 files containing 60.37 MB of data so far'),(118991,1647897499.651937,2,'info','Analyzed 2700 files containing 60.67 MB of data so far'),(118992,1647897500.010311,2,'info','Analyzed 2800 files containing 61.4 MB of data so far'),(119335,1647897817.876218,10,'info','SUM_FINAL:Scan complete. You have 9 new issues to fix. See below.'),(119334,1647897817.875993,1,'info','Scan Complete. Scanned 14783 files, 26 plugins, 24 themes, 48 posts, 0 comments and 4992 URLs in 5 minutes 57 seconds.'),(119333,1647897817.875710,2,'info','Wordfence used 55.25 MB of memory for scan. Server peak memory usage was: 162.75 MB'),(119332,1647897817.875272,1,'info','-------------------'),(119331,1647897817.870578,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(119330,1647897817.869770,2,'info','Done examining URLs'),(119329,1647897817.869371,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(119328,1647897817.863029,10,'info','SUM_START:Scanning for suspicious site options'),(119327,1647897817.856619,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(119326,1647897817.642839,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(119676,1648161742.306521,2,'info','Scanned contents of 1116 additional files at 9.96 per second'),(119675,1648161741.301897,2,'info','Scanned contents of 1102 additional files at 9.92 per second'),(119674,1648161739.155782,2,'info','Scanned contents of 1090 additional files at 10.01 per second'),(119673,1648161738.100083,2,'info','Scanned contents of 1085 additional files at 10.06 per second'),(119672,1648161736.918483,2,'info','Scanned contents of 1071 additional files at 10.04 per second'),(119671,1648161735.825905,2,'info','Scanned contents of 1057 additional files at 10.01 per second'),(119670,1648161734.679770,2,'info','Scanned contents of 1042 additional files at 9.98 per second'),(119669,1648161733.663898,2,'info','Scanned contents of 1012 additional files at 9.79 per second'),(119668,1648161732.581311,2,'info','Scanned contents of 1008 additional files at 9.85 per second'),(119667,1648161731.472944,2,'info','Scanned contents of 1004 additional files at 9.92 per second'),(119666,1648161730.416951,2,'info','Scanned contents of 1000 additional files at 9.98 per second'),(119665,1648161729.341754,2,'info','Scanned contents of 996 additional files at 10.05 per second'),(119664,1648161727.995114,2,'info','Scanned contents of 995 additional files at 10.18 per second'),(119663,1648161726.873051,1,'error','Scan Engine Error: The signature on the request to start a scan is invalid. Please try again.'),(119662,1648161726.407912,2,'info','Scanned contents of 994 additional files at 10.34 per second'),(119661,1648161720.953061,2,'info','Scanned contents of 993 additional files at 10.95 per second'),(119660,1648161719.554510,2,'info','Scanned contents of 992 additional files at 11.11 per second'),(119659,1648161718.091309,2,'info','Scanned contents of 991 additional files at 11.28 per second'),(119658,1648161716.784254,2,'info','Scanned contents of 990 additional files at 11.44 per second'),(119657,1648161715.194510,2,'info','Scanned contents of 989 additional files at 11.65 per second'),(119656,1648161713.522305,2,'info','Scanned contents of 988 additional files at 11.87 per second'),(119655,1648161712.034301,2,'info','Scanned contents of 987 additional files at 12.07 per second'),(119654,1648161710.583317,2,'info','Scanned contents of 986 additional files at 12.28 per second'),(119653,1648161709.120463,2,'info','Scanned contents of 985 additional files at 12.49 per second'),(119652,1648161707.495793,2,'info','Scanned contents of 984 additional files at 12.74 per second'),(119651,1648161706.012389,2,'info','Scanned contents of 983 additional files at 12.98 per second'),(119650,1648161704.646457,2,'info','Scanned contents of 982 additional files at 13.20 per second'),(119649,1648161702.223351,2,'info','Scanned contents of 937 additional files at 13.02 per second'),(119648,1648161700.251145,2,'info','Scanned contents of 935 additional files at 13.36 per second'),(119647,1648161698.737058,2,'info','Scanned contents of 933 additional files at 13.63 per second'),(119646,1648161696.744576,2,'info','Scanned contents of 931 additional files at 14.00 per second'),(119344,1647948532.825533,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(119345,1647948532.825708,10,'info','SUM_FINAL:Scan complete. You have 1 new issue to fix. See below.'),(119214,1647897696.795407,2,'info','Scanned contents of 1266 additional files at 10.20 per second'),(119213,1647897695.782281,2,'info','Scanned contents of 1245 additional files at 10.11 per second'),(119212,1647897694.743357,2,'info','Scanned contents of 1217 additional files at 9.97 per second'),(119211,1647897693.730650,2,'info','Scanned contents of 1194 additional files at 9.86 per second'),(119358,1648121293.437168,1,'info','Initiating quick scan'),(119359,1648121293.451706,10,'info','SUM_START:Checking Web Application Firewall status'),(119387,1648161535.563947,2,'info','Getting theme list from WordPress'),(119388,1648161536.062376,2,'info','Found 24 themes'),(119357,1648121293.434493,10,'info','SUM_PREP:Preparing a new scan.'),(119356,1648035304.096314,10,'info','SUM_FINAL:Scan complete. You have 1 new issue to fix. See below.'),(119362,1648121293.542000,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(119363,1648121293.545156,1,'info','-------------------'),(119364,1648121293.545807,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 108.75 MB'),(119184,1647897652.683087,2,'info','Scanned contents of 971 additional files at 12.13 per second'),(119183,1647897650.969323,2,'info','Scanned contents of 970 additional files at 12.38 per second'),(119182,1647897649.331760,2,'info','Scanned contents of 969 additional files at 12.64 per second'),(119181,1647897647.884925,2,'info','Scanned contents of 968 additional files at 12.87 per second'),(119180,1647897646.084978,2,'info','Scanned contents of 962 additional files at 13.10 per second'),(119179,1647897645.055275,2,'info','Scanned contents of 923 additional files at 12.75 per second'),(119645,1648161694.480783,2,'info','Scanned contents of 923 additional files at 14.37 per second'),(118983,1647897494.821358,2,'info','Analyzed 1900 files containing 50.6 MB of data so far'),(118982,1647897492.922106,2,'info','Analyzed 1800 files containing 42.06 MB of data so far'),(118981,1647897492.284435,2,'info','Analyzed 1700 files containing 40.55 MB of data so far'),(118980,1647897489.203123,2,'info','Analyzed 1600 files containing 28.07 MB of data so far'),(119722,1648161792.691735,2,'info','Scanned contents of 2183 additional files at 13.44 per second'),(119714,1648161783.711582,2,'info','Scanned contents of 2083 additional files at 13.57 per second'),(119715,1648161784.718790,2,'info','Scanned contents of 2089 additional files at 13.53 per second'),(119716,1648161785.722334,2,'info','Scanned contents of 2124 additional files at 13.66 per second'),(119717,1648161786.959874,2,'info','Scanned contents of 2130 additional files at 13.59 per second'),(119718,1648161788.164065,2,'info','Scanned contents of 2134 additional files at 13.51 per second'),(119719,1648161789.174784,2,'info','Scanned contents of 2164 additional files at 13.62 per second'),(119720,1648161790.284951,2,'info','Scanned contents of 2170 additional files at 13.56 per second'),(119721,1648161791.525765,2,'info','Scanned contents of 2180 additional files at 13.52 per second'),(118821,1647640129.711939,2,'info','Scanned contents of 2567 additional files at 11.92 per second'),(118822,1647640130.713545,2,'info','Scanned contents of 2579 additional files at 11.92 per second'),(118823,1647640131.977780,2,'info','Scanned contents of 2600 additional files at 11.95 per second'),(118824,1647640133.080886,2,'info','Scanned contents of 2621 additional files at 11.99 per second'),(118825,1647640134.162558,2,'info','Scanned contents of 2639 additional files at 12.01 per second'),(118826,1647640135.191679,2,'info','Scanned contents of 2655 additional files at 12.03 per second'),(118827,1647640136.207381,2,'info','Scanned contents of 2675 additional files at 12.06 per second'),(118828,1647640137.219907,2,'info','Scanned contents of 2721 additional files at 12.21 per second'),(118829,1647640138.279675,2,'info','Scanned contents of 2742 additional files at 12.25 per second'),(118830,1647640139.375621,2,'info','Scanned contents of 2747 additional files at 12.21 per second'),(118831,1647640140.385558,2,'info','Scanned contents of 2779 additional files at 12.30 per second'),(118832,1647640141.395123,2,'info','Scanned contents of 2812 additional files at 12.39 per second'),(118833,1647640142.463001,2,'info','Scanned contents of 2837 additional files at 12.44 per second'),(118834,1647640143.483925,2,'info','Scanned contents of 2877 additional files at 12.56 per second'),(118835,1647640144.496821,2,'info','Scanned contents of 2902 additional files at 12.61 per second'),(119629,1648161678.109059,1,'error','Scan Engine Error: The signature on the request to start a scan is invalid. Please try again.'),(119628,1648161677.408350,2,'info','Scanned contents of 570 additional files at 12.09 per second'),(119627,1648161676.350273,2,'info','Scanned contents of 549 additional files at 11.91 per second'),(119626,1648161672.518065,2,'info','Scanned contents of 538 additional files at 12.73 per second'),(119625,1648161671.495908,2,'info','Scanned contents of 506 additional files at 12.27 per second'),(119624,1648161670.475740,2,'info','Scanned contents of 475 additional files at 11.81 per second'),(119623,1648161669.424367,2,'info','Scanned contents of 454 additional files at 11.59 per second'),(119622,1648161668.356786,2,'info','Scanned contents of 431 additional files at 11.31 per second'),(119621,1648161667.337578,2,'info','Scanned contents of 375 additional files at 10.12 per second'),(119453,1648161556.139779,2,'info','Analyzed 2400 files containing 56.05 MB of data so far'),(119452,1648161555.996561,2,'info','Analyzed 2300 files containing 55.18 MB of data so far'),(119451,1648161555.844255,2,'info','Analyzed 2200 files containing 54.42 MB of data so far'),(119448,1648161555.166472,2,'info','Analyzed 1900 files containing 52.12 MB of data so far'),(119449,1648161555.546795,2,'info','Analyzed 2000 files containing 53.56 MB of data so far'),(119450,1648161555.704839,2,'info','Analyzed 2100 files containing 54.02 MB of data so far'),(119305,1647897814.381123,2,'info','Asking Wordfence to check URLs against malware list.'),(119696,1648161763.790262,2,'info','Scanned contents of 1557 additional files at 11.66 per second'),(119691,1648161758.590782,2,'info','Scanned contents of 1445 additional files at 11.26 per second'),(119692,1648161759.652273,2,'info','Scanned contents of 1461 additional files at 11.29 per second'),(119693,1648161760.713507,2,'info','Scanned contents of 1478 additional files at 11.33 per second'),(119694,1648161761.756313,2,'info','Scanned contents of 1498 additional files at 11.39 per second'),(119695,1648161762.784759,2,'info','Scanned contents of 1534 additional files at 11.58 per second'),(119314,1647897814.835453,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(119313,1647897814.663123,10,'info','SUM_START:Scanning posts for URLs on a domain blocklist'),(119550,1648161606.210570,2,'info','Analyzed 12000 files containing 234.72 MB of data so far'),(119549,1648161605.310370,2,'info','Analyzed 11900 files containing 231.25 MB of data so far'),(119548,1648161604.247786,2,'info','Analyzed 11800 files containing 226.69 MB of data so far'),(119242,1647897728.853326,2,'info','Scanned contents of 1937 additional files at 12.40 per second'),(119243,1647897729.866824,2,'info','Scanned contents of 1966 additional files at 12.50 per second'),(119244,1647897730.868869,2,'info','Scanned contents of 2001 additional files at 12.65 per second'),(119245,1647897731.900229,2,'info','Scanned contents of 2026 additional files at 12.72 per second'),(119246,1647897732.910151,2,'info','Scanned contents of 2056 additional files at 12.83 per second'),(119247,1647897733.913775,2,'info','Scanned contents of 2067 additional files at 12.82 per second'),(119248,1647897735.063256,2,'info','Scanned contents of 2069 additional files at 12.74 per second'),(119249,1647897736.638338,2,'info','Scanned contents of 2073 additional files at 12.64 per second'),(119250,1647897737.649194,2,'info','Scanned contents of 2093 additional files at 12.68 per second'),(119251,1647897738.830824,2,'info','Scanned contents of 2114 additional files at 12.72 per second'),(119252,1647897739.868488,2,'info','Scanned contents of 2117 additional files at 12.66 per second'),(119253,1647897740.898583,2,'info','Scanned contents of 2121 additional files at 12.61 per second'),(119254,1647897741.902018,2,'info','Scanned contents of 2149 additional files at 12.70 per second'),(119255,1647897743.082921,2,'info','Scanned contents of 2156 additional files at 12.65 per second'),(119256,1647897744.271996,2,'info','Scanned contents of 2166 additional files at 12.62 per second'),(119257,1647897745.315482,2,'info','Scanned contents of 2174 additional files at 12.59 per second'),(119258,1647897746.328771,2,'info','Scanned contents of 2193 additional files at 12.63 per second'),(119259,1647897747.427820,2,'info','Scanned contents of 2207 additional files at 12.63 per second'),(119260,1647897748.444598,2,'info','Scanned contents of 2230 additional files at 12.68 per second'),(119261,1647897749.637816,2,'info','Scanned contents of 2254 additional files at 12.74 per second'),(119262,1647897752.322141,2,'info','Scanned contents of 2270 additional files at 12.63 per second'),(119263,1647897758.389132,2,'info','Scanned contents of 2273 additional files at 12.24 per second'),(119264,1647897759.470297,2,'info','Scanned contents of 2280 additional files at 12.20 per second'),(119265,1647897760.480715,2,'info','Scanned contents of 2313 additional files at 12.31 per second'),(119266,1647897762.296648,2,'info','Scanned contents of 2335 additional files at 12.31 per second'),(119267,1647897765.196905,2,'info','Scanned contents of 2337 additional files at 12.14 per second'),(119268,1647897767.150556,2,'info','Scanned contents of 2338 additional files at 12.02 per second'),(119269,1647897769.148897,2,'info','Scanned contents of 2348 additional files at 11.95 per second'),(119551,1648161606.756641,2,'info','Analyzed 12100 files containing 236.76 MB of data so far'),(119552,1648161607.500055,2,'info','Analyzed 12200 files containing 239.17 MB of data so far'),(119553,1648161607.971220,2,'info','Analyzed 12300 files containing 240.95 MB of data so far'),(119554,1648161608.663392,2,'info','Analyzed 12400 files containing 243.19 MB of data so far'),(119555,1648161609.167521,2,'info','Analyzed 12500 files containing 244.55 MB of data so far'),(119556,1648161609.577673,2,'info','Analyzed 12600 files containing 245.97 MB of data so far'),(119557,1648161610.333034,2,'info','Analyzed 12700 files containing 247.68 MB of data so far'),(118978,1647897486.695108,2,'info','Analyzed 1400 files containing 22.75 MB of data so far'),(119071,1647897546.235752,2,'info','Analyzed 10700 files containing 203.22 MB of data so far'),(119336,1647948532.716155,10,'info','SUM_PREP:Preparing a new scan.'),(119337,1647948532.718114,1,'info','Initiating quick scan'),(119338,1647948532.731402,10,'info','SUM_START:Checking Web Application Firewall status'),(119339,1647948532.731806,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(119340,1647948532.736177,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(119341,1647948532.821668,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(119342,1647948532.824742,1,'info','-------------------'),(119343,1647948532.825334,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 108.5 MB'),(119472,1648161568.232791,2,'info','Analyzed 4300 files containing 106.98 MB of data so far'),(119473,1648161568.637368,2,'info','Analyzed 4400 files containing 108.07 MB of data so far'),(119360,1648121293.452186,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(119361,1648121293.456415,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(119385,1648161535.508353,2,'info','Getting plugin list from WordPress'),(119386,1648161535.563701,2,'info','Found 25 plugins'),(118979,1647897487.906119,2,'info','Analyzed 1500 files containing 25.9 MB of data so far'),(119612,1648161656.505460,2,'info','Scanned contents of 305 additional files at 11.62 per second'),(119043,1647897533.525026,2,'info','Analyzed 7900 files containing 155.43 MB of data so far'),(119044,1647897533.699761,2,'info','Analyzed 8000 files containing 155.86 MB of data so far'),(119045,1647897533.878225,2,'info','Analyzed 8100 files containing 156.32 MB of data so far'),(119046,1647897534.027986,2,'info','Analyzed 8200 files containing 156.56 MB of data so far'),(119047,1647897534.422497,2,'info','Analyzed 8300 files containing 158.09 MB of data so far'),(119048,1647897534.572697,2,'info','Analyzed 8400 files containing 158.19 MB of data so far'),(119049,1647897534.709358,2,'info','Analyzed 8500 files containing 158.48 MB of data so far'),(119050,1647897534.978340,2,'info','Analyzed 8600 files containing 159.26 MB of data so far'),(119051,1647897535.338673,2,'info','Analyzed 8700 files containing 160.75 MB of data so far'),(119052,1647897535.653758,2,'info','Analyzed 8800 files containing 161.98 MB of data so far'),(119053,1647897536.134691,2,'info','Analyzed 8900 files containing 163.83 MB of data so far'),(119054,1647897536.574244,2,'info','Analyzed 9000 files containing 165.39 MB of data so far'),(119055,1647897537.115799,2,'info','Analyzed 9100 files containing 167.55 MB of data so far'),(119056,1647897537.388913,2,'info','Analyzed 9200 files containing 168.48 MB of data so far'),(119057,1647897537.834363,2,'info','Analyzed 9300 files containing 170 MB of data so far'),(119058,1647897539.244205,2,'info','Analyzed 9400 files containing 176.27 MB of data so far'),(119059,1647897539.419188,2,'info','Analyzed 9500 files containing 178.57 MB of data so far'),(119060,1647897539.738271,2,'info','Analyzed 9600 files containing 179.67 MB of data so far'),(119061,1647897539.999196,2,'info','Analyzed 9700 files containing 180.92 MB of data so far'),(119365,1648121293.546026,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(119379,1648161535.484940,10,'info','SUM_START:Checking Web Application Firewall status'),(119380,1648161535.487102,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(119381,1648161535.492787,10,'info','SUM_START:Checking for future GeoIP support'),(119382,1648161535.494853,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(119383,1648161535.500328,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(119384,1648161535.504216,10,'info','SUM_ENDBAD:Checking for paths skipped due to scan settings'),(119705,1648161775.119758,2,'info','Scanned contents of 1834 additional files at 12.66 per second'),(119038,1647897532.233475,2,'info','Analyzed 7400 files containing 151.73 MB of data so far'),(119037,1647897531.587040,2,'info','Analyzed 7300 files containing 149.03 MB of data so far'),(119036,1647897529.135678,2,'info','Analyzed 7200 files containing 137.17 MB of data so far'),(119035,1647897528.655693,2,'info','Analyzed 7100 files containing 135.22 MB of data so far'),(119034,1647897528.282021,2,'info','Analyzed 7000 files containing 133.97 MB of data so far'),(119033,1647897527.961295,2,'info','Analyzed 6900 files containing 132.74 MB of data so far'),(119032,1647897526.860335,2,'info','Analyzed 6800 files containing 127.71 MB of data so far'),(119031,1647897525.867984,2,'info','Analyzed 6700 files containing 123.37 MB of data so far'),(119030,1647897525.274494,2,'info','Analyzed 6600 files containing 121.3 MB of data so far'),(119029,1647897525.087658,2,'info','Analyzed 6500 files containing 121.05 MB of data so far'),(119028,1647897524.925340,2,'info','Analyzed 6400 files containing 120.78 MB of data so far'),(119027,1647897524.768173,2,'info','Analyzed 6300 files containing 120.49 MB of data so far'),(119026,1647897524.644855,2,'info','Analyzed 6200 files containing 120.32 MB of data so far'),(119025,1647897524.459202,2,'info','Analyzed 6100 files containing 119.95 MB of data so far'),(119024,1647897524.286774,2,'info','Analyzed 6000 files containing 119.82 MB of data so far'),(119023,1647897523.889247,2,'info','Analyzed 5900 files containing 118.43 MB of data so far'),(119022,1647897523.403978,2,'info','Analyzed 5800 files containing 116.99 MB of data so far'),(119021,1647897523.118488,2,'info','Analyzed 5700 files containing 115.93 MB of data so far'),(119020,1647897522.871293,2,'info','Analyzed 5600 files containing 115.18 MB of data so far'),(119019,1647897522.582159,2,'info','Analyzed 5500 files containing 114.25 MB of data so far'),(119018,1647897521.987462,2,'info','Analyzed 5400 files containing 112.59 MB of data so far'),(119017,1647897521.720241,2,'info','Analyzed 5300 files containing 111.96 MB of data so far'),(119016,1647897521.527004,2,'info','Analyzed 5200 files containing 111.41 MB of data so far'),(119015,1647897521.311576,2,'info','Analyzed 5100 files containing 110.76 MB of data so far'),(119014,1647897521.117277,2,'info','Analyzed 5000 files containing 110.2 MB of data so far'),(119013,1647897520.970166,2,'info','Analyzed 4900 files containing 109.85 MB of data so far'),(118888,1647777531.666261,1,'info','-------------------'),(118889,1647777531.666834,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 108 MB'),(118883,1647777531.579288,1,'info','Initiating quick scan'),(119794,1648161860.730969,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(119793,1648161860.723770,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(118880,1647695209.106276,1,'info','Quick Scan Complete. Scanned in 1 second.'),(118878,1647695209.105473,1,'info','-------------------'),(118879,1647695209.106053,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 108.25 MB'),(119789,1648161859.429414,10,'info','SUM_START:Scanning for weak passwords'),(119454,1648161557.078708,2,'info','Analyzed 2500 files containing 60.19 MB of data so far'),(119792,1648161859.456706,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(119791,1648161859.449988,10,'info','SUM_ENDOK:Scanning for weak passwords'),(119790,1648161859.431838,2,'info','Starting password strength check on 1 user.'),(118873,1647695208.970219,1,'info','Initiating quick scan'),(119462,1648161561.359701,2,'info','Analyzed 3300 files containing 77.56 MB of data so far'),(119461,1648161560.793022,2,'info','Analyzed 3200 files containing 75.33 MB of data so far'),(119460,1648161558.611495,2,'info','Analyzed 3100 files containing 65.85 MB of data so far'),(119459,1648161558.306457,2,'info','Analyzed 3000 files containing 65 MB of data so far'),(119458,1648161558.126472,2,'info','Analyzed 2900 files containing 64.52 MB of data so far'),(119457,1648161557.994621,2,'info','Analyzed 2800 files containing 63.97 MB of data so far'),(119456,1648161557.866217,2,'info','Analyzed 2700 files containing 63.43 MB of data so far'),(119455,1648161557.720304,2,'info','Analyzed 2600 files containing 62.96 MB of data so far'),(119072,1647897546.527750,2,'info','Analyzed 10800 files containing 204.11 MB of data so far'),(119073,1647897546.804621,2,'info','Analyzed 10900 files containing 205.11 MB of data so far'),(119074,1647897546.988628,2,'info','Analyzed 11000 files containing 205.62 MB of data so far'),(119075,1647897547.376611,2,'info','Analyzed 11100 files containing 206.87 MB of data so far'),(119076,1647897547.518576,2,'info','Analyzed 11200 files containing 207.2 MB of data so far'),(119077,1647897547.780104,2,'info','Analyzed 11300 files containing 207.81 MB of data so far'),(119078,1647897548.113346,2,'info','Analyzed 11400 files containing 208.92 MB of data so far'),(119079,1647897549.095126,2,'info','Analyzed 11500 files containing 213.16 MB of data so far'),(119080,1647897549.654127,2,'info','Analyzed 11600 files containing 215.27 MB of data so far'),(119081,1647897550.817874,2,'info','Analyzed 11700 files containing 220.45 MB of data so far'),(119082,1647897551.977944,2,'info','Analyzed 11800 files containing 225.78 MB of data so far'),(119083,1647897552.566298,2,'info','Analyzed 11900 files containing 227.92 MB of data so far'),(119084,1647897553.324030,2,'info','Analyzed 12000 files containing 230.98 MB of data so far'),(119085,1647897553.627741,2,'info','Analyzed 12100 files containing 231.9 MB of data so far'),(119086,1647897554.296705,2,'info','Analyzed 12200 files containing 234.74 MB of data so far'),(119087,1647897555.032757,2,'info','Analyzed 12300 files containing 237.69 MB of data so far'),(119088,1647897555.429141,2,'info','Analyzed 12400 files containing 239.05 MB of data so far'),(119089,1647897555.765889,2,'info','Analyzed 12500 files containing 240.22 MB of data so far'),(119090,1647897556.254307,2,'info','Analyzed 12600 files containing 241.57 MB of data so far'),(119091,1647897561.267250,2,'info','Analyzed 12700 files containing 245.18 MB of data so far'),(119092,1647897562.123718,2,'info','Analyzed 12800 files containing 247.63 MB of data so far'),(119093,1647897562.801603,2,'info','Analyzed 12900 files containing 250.23 MB of data so far'),(119094,1647897563.440117,2,'info','Analyzed 13000 files containing 254.14 MB of data so far'),(119095,1647897563.693199,2,'info','Analyzed 13100 files containing 254.95 MB of data so far'),(119096,1647897563.865007,2,'info','Analyzed 13200 files containing 255.28 MB of data so far'),(119097,1647897564.016431,2,'info','Analyzed 13300 files containing 255.58 MB of data so far'),(119098,1647897564.178310,2,'info','Analyzed 13400 files containing 255.89 MB of data so far'),(119099,1647897564.345170,2,'info','Analyzed 13500 files containing 256.03 MB of data so far'),(119100,1647897564.506074,2,'info','Analyzed 13600 files containing 256.26 MB of data so far'),(119101,1647897564.672237,2,'info','Analyzed 13700 files containing 257.11 MB of data so far'),(119102,1647897564.947128,2,'info','Analyzed 13800 files containing 259.31 MB of data so far'),(119103,1647897565.612586,2,'info','Analyzed 13900 files containing 262 MB of data so far'),(119104,1647897565.829284,2,'info','Analyzed 14000 files containing 263.61 MB of data so far'),(119105,1647897566.275920,2,'info','Analyzed 14100 files containing 265.41 MB of data so far'),(119106,1647897569.144048,2,'info','Analyzed 14200 files containing 279.05 MB of data so far'),(119107,1647897569.530242,2,'info','Analyzed 14300 files containing 280.47 MB of data so far'),(119108,1647897570.074484,2,'info','Analyzed 14400 files containing 282.81 MB of data so far'),(119109,1647897570.727253,2,'info','Analyzed 14500 files containing 285.71 MB of data so far'),(119110,1647897571.089129,2,'info','Analyzed 14600 files containing 288.87 MB of data so far'),(119111,1647897571.301439,2,'info','Analyzed 14700 files containing 289.97 MB of data so far'),(119112,1647897571.516718,2,'info','Analyzed 14783 files containing 291.48 MB of data.'),(119113,1647897571.516973,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(119114,1647897571.521012,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(119115,1647897571.737555,10,'info','SUM_ENDOK:Scanning for known malware files'),(119116,1647897571.762348,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(119117,1647897572.025500,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(119118,1647897572.034096,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(119119,1647897572.036659,10,'info','SUM_START:Scanning file contents for URLs on a domain blocklist'),(119120,1647897572.644661,2,'info','Starting scan of file contents'),(119121,1647897573.704991,2,'info','Scanned contents of 15 additional files at 14.16 per second'),(119122,1647897574.770030,2,'info','Scanned contents of 35 additional files at 16.48 per second'),(119123,1647897575.805676,2,'info','Scanned contents of 39 additional files at 12.34 per second'),(119124,1647897576.831227,2,'info','Scanned contents of 49 additional files at 11.71 per second'),(119125,1647897577.874033,2,'info','Scanned contents of 64 additional files at 12.24 per second'),(119126,1647897578.955110,2,'info','Scanned contents of 81 additional files at 12.84 per second'),(119127,1647897580.008928,2,'info','Scanned contents of 91 additional files at 12.36 per second'),(119128,1647897581.012856,2,'info','Scanned contents of 104 additional files at 12.43 per second'),(119129,1647897582.066078,2,'info','Scanned contents of 115 additional files at 12.21 per second'),(119130,1647897583.324236,2,'info','Scanned contents of 119 additional files at 11.14 per second'),(119131,1647897584.331577,2,'info','Scanned contents of 140 additional files at 11.98 per second'),(119132,1647897585.344256,2,'info','Scanned contents of 149 additional files at 11.73 per second'),(119133,1647897586.423085,2,'info','Scanned contents of 158 additional files at 11.47 per second'),(119134,1647897587.480928,2,'info','Scanned contents of 163 additional files at 10.99 per second'),(119135,1647897588.523384,2,'info','Scanned contents of 173 additional files at 10.90 per second'),(119136,1647897589.541134,2,'info','Scanned contents of 183 additional files at 10.83 per second'),(119137,1647897590.547709,2,'info','Scanned contents of 222 additional files at 12.40 per second'),(119138,1647897591.798039,2,'info','Scanned contents of 238 additional files at 12.43 per second'),(119139,1647897592.813315,2,'info','Scanned contents of 264 additional files at 13.09 per second'),(119140,1647897593.933774,2,'info','Scanned contents of 276 additional files at 12.97 per second'),(119141,1647897595.016501,2,'info','Scanned contents of 279 additional files at 12.47 per second'),(119142,1647897596.214149,2,'info','Scanned contents of 289 additional files at 12.26 per second'),(119143,1647897597.379963,2,'info','Scanned contents of 291 additional files at 11.77 per second'),(119144,1647897599.442688,2,'info','Scanned contents of 295 additional files at 11.01 per second'),(119145,1647897600.448298,2,'info','Scanned contents of 299 additional files at 10.75 per second'),(119146,1647897601.452472,2,'info','Scanned contents of 309 additional files at 10.73 per second'),(119147,1647897602.985991,2,'info','Scanned contents of 322 additional files at 10.61 per second'),(119148,1647897604.398589,2,'info','Scanned contents of 328 additional files at 10.33 per second'),(119149,1647897605.413748,2,'info','Scanned contents of 344 additional files at 10.50 per second'),(119150,1647897606.453502,2,'info','Scanned contents of 353 additional files at 10.44 per second'),(119151,1647897611.605177,2,'info','Scanned contents of 355 additional files at 9.11 per second'),(119152,1647897612.610295,2,'info','Scanned contents of 363 additional files at 9.08 per second'),(119153,1647897613.632270,2,'info','Scanned contents of 419 additional files at 10.22 per second'),(119191,1647897667.731995,2,'info','Scanned contents of 978 additional files at 10.29 per second'),(119620,1648161666.326030,2,'info','Scanned contents of 369 additional files at 10.23 per second'),(119192,1647897669.343706,2,'info','Scanned contents of 979 additional files at 10.12 per second'),(119193,1647897671.172986,2,'info','Scanned contents of 980 additional files at 9.95 per second'),(119194,1647897672.853714,2,'info','Scanned contents of 981 additional files at 9.79 per second'),(119195,1647897674.306124,2,'info','Scanned contents of 982 additional files at 9.66 per second'),(119196,1647897675.547394,2,'info','Scanned contents of 986 additional files at 9.58 per second'),(119197,1647897676.656906,2,'info','Scanned contents of 990 additional files at 9.52 per second'),(119198,1647897677.837577,2,'info','Scanned contents of 994 additional files at 9.45 per second'),(119199,1647897678.872537,2,'info','Scanned contents of 997 additional files at 9.39 per second'),(119200,1647897679.882108,2,'info','Scanned contents of 1010 additional files at 9.42 per second'),(119757,1648161840.409905,2,'info','Scanned contents of 2661 additional files at 12.66 per second'),(119756,1648161839.336446,2,'info','Scanned contents of 2640 additional files at 12.63 per second'),(119306,1647897814.395320,2,'info','Checking 2767 host keys against Wordfence scanning servers.'),(119307,1647897814.630844,2,'info','Done host key check.'),(119308,1647897814.634562,2,'info','Done file contents scan'),(119309,1647897814.642923,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(119474,1648161568.874484,2,'info','Analyzed 4500 files containing 108.96 MB of data so far'),(119475,1648161569.080979,2,'info','Analyzed 4600 files containing 109.62 MB of data so far'),(119482,1648161570.762396,2,'info','Analyzed 5300 files containing 114.67 MB of data so far'),(119481,1648161570.560488,2,'info','Analyzed 5200 files containing 114.15 MB of data so far'),(119480,1648161570.349617,2,'info','Analyzed 5100 files containing 113.45 MB of data so far'),(119479,1648161570.142845,2,'info','Analyzed 5000 files containing 112.9 MB of data so far'),(119478,1648161569.950736,2,'info','Analyzed 4900 files containing 112.42 MB of data so far'),(119477,1648161569.714964,2,'info','Analyzed 4800 files containing 111.68 MB of data so far'),(119476,1648161569.422180,2,'info','Analyzed 4700 files containing 110.74 MB of data so far'),(118902,1647897447.579184,1,'info','Scheduled Wordfence scan starting at Monday 21st of March 2022 09:17:27 PM'),(118893,1647864128.872666,1,'info','Initiating quick scan'),(118898,1647864129.938066,1,'info','-------------------'),(118899,1647864129.939016,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 108 MB'),(118900,1647864129.939274,1,'info','Quick Scan Complete. Scanned in 1 second.'),(119795,1648161860.957968,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(119796,1648161860.963926,10,'info','SUM_START:Scanning for suspicious site options'),(119797,1648161860.970768,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(119798,1648161860.971110,2,'info','Done examining URLs'),(118969,1647897478.672146,2,'info','Analyzed 500 files containing 7.79 MB of data so far'),(118970,1647897479.111618,2,'info','Analyzed 600 files containing 8.61 MB of data so far'),(119799,1648161860.971772,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(118904,1647897460.153924,1,'info','Contacting Wordfence to initiate scan'),(118911,1647897466.610697,2,'info','Total disk space: 1.79 TB -- Free disk space: 969.29 GB'),(118912,1647897466.610892,2,'info','The disk has 992553.08 MB available'),(119814,1648203377.007047,10,'info','SUM_FINAL:Scan complete. You have 1 new issue to fix. See below.'),(119524,1648161590.816774,2,'info','Analyzed 9400 files containing 174.53 MB of data so far'),(119525,1648161592.334146,2,'info','Analyzed 9500 files containing 182.05 MB of data so far'),(119526,1648161592.587395,2,'info','Analyzed 9600 files containing 184.23 MB of data so far'),(119527,1648161592.862126,2,'info','Analyzed 9700 files containing 185.07 MB of data so far'),(119528,1648161593.140561,2,'info','Analyzed 9800 files containing 186.41 MB of data so far'),(119529,1648161593.304800,2,'info','Analyzed 9900 files containing 186.85 MB of data so far'),(119530,1648161593.665071,2,'info','Analyzed 10000 files containing 187.84 MB of data so far'),(119531,1648161594.485565,2,'info','Analyzed 10100 files containing 190.87 MB of data so far'),(119532,1648161595.512770,2,'info','Analyzed 10200 files containing 195.19 MB of data so far'),(119533,1648161595.976534,2,'info','Analyzed 10300 files containing 197.03 MB of data so far'),(119534,1648161596.594652,2,'info','Analyzed 10400 files containing 199.64 MB of data so far'),(119535,1648161597.273061,2,'info','Analyzed 10500 files containing 202.06 MB of data so far'),(119536,1648161597.887914,2,'info','Analyzed 10600 files containing 204.45 MB of data so far'),(119537,1648161598.813498,2,'info','Analyzed 10700 files containing 207.84 MB of data so far'),(119538,1648161599.135445,2,'info','Analyzed 10800 files containing 208.8 MB of data so far'),(119539,1648161599.444074,2,'info','Analyzed 10900 files containing 209.53 MB of data so far'),(119540,1648161599.789799,2,'info','Analyzed 11000 files containing 210.63 MB of data so far'),(119541,1648161599.967221,2,'info','Analyzed 11100 files containing 211 MB of data so far'),(119542,1648161600.329470,2,'info','Analyzed 11200 files containing 212.33 MB of data so far'),(119543,1648161600.484273,2,'info','Analyzed 11300 files containing 212.63 MB of data so far'),(119544,1648161600.805030,2,'info','Analyzed 11400 files containing 213.23 MB of data so far'),(119545,1648161601.390303,2,'info','Analyzed 11500 files containing 215.48 MB of data so far'),(119546,1648161602.176959,2,'info','Analyzed 11600 files containing 218.59 MB of data so far'),(119547,1648161603.403446,2,'info','Analyzed 11700 files containing 223.81 MB of data so far'),(119210,1647897692.701387,2,'info','Scanned contents of 1172 additional files at 9.76 per second'),(119690,1648161757.578914,2,'info','Scanned contents of 1427 additional files at 11.21 per second'),(119689,1648161756.533573,2,'info','Scanned contents of 1411 additional files at 11.17 per second'),(119688,1648161755.521661,2,'info','Scanned contents of 1396 additional files at 11.15 per second'),(119687,1648161754.515062,2,'info','Scanned contents of 1365 additional files at 10.99 per second'),(119686,1648161753.509291,2,'info','Scanned contents of 1340 additional files at 10.87 per second'),(119685,1648161752.422735,2,'info','Scanned contents of 1321 additional files at 10.81 per second'),(119684,1648161751.053761,2,'info','Scanned contents of 1320 additional files at 10.93 per second'),(119683,1648161749.499911,2,'info','Scanned contents of 1304 additional files at 10.94 per second'),(119682,1648161748.498300,2,'info','Scanned contents of 1292 additional files at 10.93 per second'),(119681,1648161747.495453,2,'info','Scanned contents of 1269 additional files at 10.82 per second'),(119680,1648161746.457893,2,'info','Scanned contents of 1249 additional files at 10.75 per second'),(119679,1648161745.397423,2,'info','Scanned contents of 1222 additional files at 10.61 per second'),(119678,1648161744.324768,2,'info','Scanned contents of 1196 additional files at 10.49 per second'),(119677,1648161743.317337,2,'info','Scanned contents of 1142 additional files at 10.10 per second'),(119355,1648035304.095954,1,'info','Quick Scan Complete. Scanned in 1 second.'),(119353,1648035304.095209,1,'info','-------------------'),(119354,1648035304.095762,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 108.25 MB'),(119389,1648161536.068511,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(119390,1648161536.721222,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(119347,1648035303.965658,10,'info','SUM_PREP:Preparing a new scan.'),(119348,1648035303.968660,1,'info','Initiating quick scan'),(119349,1648035304.008273,10,'info','SUM_START:Checking Web Application Firewall status'),(119350,1648035304.008714,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(119351,1648035304.012351,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(119352,1648035304.092701,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(118890,1647777531.667025,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(119283,1647897785.023097,2,'info','Scanned contents of 2546 additional files at 11.99 per second'),(119284,1647897788.952559,2,'info','Scanned contents of 2567 additional files at 11.87 per second'),(119285,1647897789.973510,2,'info','Scanned contents of 2582 additional files at 11.88 per second'),(119286,1647897791.156713,2,'info','Scanned contents of 2600 additional files at 11.90 per second'),(119287,1647897792.221997,2,'info','Scanned contents of 2621 additional files at 11.94 per second'),(119288,1647897793.349087,2,'info','Scanned contents of 2639 additional files at 11.96 per second'),(119289,1647897794.351348,2,'info','Scanned contents of 2656 additional files at 11.98 per second'),(119290,1647897795.378630,2,'info','Scanned contents of 2679 additional files at 12.03 per second'),(119291,1647897796.379121,2,'info','Scanned contents of 2736 additional files at 12.23 per second'),(119292,1647897797.653503,2,'info','Scanned contents of 2744 additional files at 12.20 per second'),(118971,1647897479.517191,2,'info','Analyzed 700 files containing 9.31 MB of data so far'),(119468,1648161566.923468,2,'info','Analyzed 3900 files containing 101.73 MB of data so far'),(119467,1648161566.682011,2,'info','Analyzed 3800 files containing 100.38 MB of data so far'),(119466,1648161566.444859,2,'info','Analyzed 3700 files containing 99.35 MB of data so far'),(119465,1648161565.987355,2,'info','Analyzed 3600 files containing 97.97 MB of data so far'),(119464,1648161565.217843,2,'info','Analyzed 3500 files containing 95.45 MB of data so far'),(119463,1648161564.564798,2,'info','Analyzed 3400 files containing 92.81 MB of data so far'),(119154,1647897614.651521,2,'info','Scanned contents of 439 additional files at 10.45 per second'),(119155,1647897615.665855,2,'info','Scanned contents of 457 additional files at 10.62 per second'),(119156,1647897616.708194,2,'info','Scanned contents of 480 additional files at 10.89 per second'),(119447,1648161553.315480,2,'info','Analyzed 1800 files containing 43.55 MB of data so far'),(119209,1647897691.699028,2,'info','Scanned contents of 1135 additional files at 9.53 per second'),(119446,1648161552.498106,2,'info','Analyzed 1700 files containing 40.55 MB of data so far'),(119444,1648161548.761503,2,'info','Analyzed 1500 files containing 26.09 MB of data so far'),(119445,1648161549.566315,2,'info','Analyzed 1600 files containing 27.73 MB of data so far'),(119208,1647897690.691507,2,'info','Scanned contents of 1104 additional files at 9.35 per second'),(119190,1647897666.121493,2,'info','Scanned contents of 977 additional files at 10.45 per second'),(119189,1647897664.207746,2,'info','Scanned contents of 976 additional files at 10.66 per second'),(119188,1647897662.461716,2,'info','Scanned contents of 975 additional files at 10.86 per second'),(119187,1647897660.708829,2,'info','Scanned contents of 974 additional files at 11.06 per second'),(119186,1647897655.993200,2,'info','Scanned contents of 973 additional files at 11.67 per second'),(119185,1647897654.347177,2,'info','Scanned contents of 972 additional files at 11.90 per second'),(119576,1648161628.268060,2,'info','Analyzed 14600 files containing 292.02 MB of data so far'),(119575,1648161623.577578,2,'info','Analyzed 14500 files containing 288.59 MB of data so far'),(119574,1648161622.877464,2,'info','Analyzed 14400 files containing 286.02 MB of data so far'),(119573,1648161622.095935,2,'info','Analyzed 14300 files containing 284.73 MB of data so far'),(119572,1648161620.029786,2,'info','Analyzed 14200 files containing 278.87 MB of data so far'),(119571,1648161617.358541,2,'info','Analyzed 14100 files containing 268.98 MB of data so far'),(119570,1648161616.898449,2,'info','Analyzed 14000 files containing 267.5 MB of data so far'),(119569,1648161616.224468,2,'info','Analyzed 13900 files containing 265.07 MB of data so far'),(119568,1648161615.785368,2,'info','Analyzed 13800 files containing 262.97 MB of data so far'),(119567,1648161615.320055,2,'info','Analyzed 13700 files containing 261.66 MB of data so far'),(119566,1648161615.126374,2,'info','Analyzed 13600 files containing 261.41 MB of data so far'),(119565,1648161614.609548,2,'info','Analyzed 13500 files containing 261.28 MB of data so far'),(119564,1648161614.256453,2,'info','Analyzed 13400 files containing 260.96 MB of data so far'),(119563,1648161614.049338,2,'info','Analyzed 13300 files containing 260.67 MB of data so far'),(119562,1648161613.892798,2,'info','Analyzed 13200 files containing 260.46 MB of data so far'),(119561,1648161613.424193,2,'info','Analyzed 13100 files containing 259.76 MB of data so far'),(119178,1647897642.902398,2,'info','Scanned contents of 921 additional files at 13.11 per second'),(119177,1647897641.087434,2,'info','Scanned contents of 919 additional files at 13.43 per second'),(119176,1647897638.883286,2,'info','Scanned contents of 917 additional files at 13.84 per second'),(119175,1647897636.394135,2,'info','Scanned contents of 909 additional files at 14.26 per second'),(119174,1647897635.393280,2,'info','Scanned contents of 903 additional files at 14.39 per second'),(119173,1647897634.387397,2,'info','Scanned contents of 899 additional files at 14.56 per second'),(119172,1647897633.082123,2,'info','Scanned contents of 873 additional files at 14.44 per second'),(119171,1647897632.062041,2,'info','Scanned contents of 852 additional files at 14.34 per second'),(119170,1647897630.995861,2,'info','Scanned contents of 817 additional files at 14.00 per second'),(119169,1647897629.956244,2,'info','Scanned contents of 796 additional files at 13.89 per second'),(119168,1647897628.941779,2,'info','Scanned contents of 767 additional files at 13.62 per second'),(119167,1647897627.937727,2,'info','Scanned contents of 753 additional files at 13.62 per second'),(119166,1647897626.871678,2,'info','Scanned contents of 725 additional files at 13.37 per second'),(119165,1647897625.862064,2,'info','Scanned contents of 688 additional files at 12.93 per second'),(119164,1647897624.854875,2,'info','Scanned contents of 667 additional files at 12.78 per second'),(119163,1647897623.851218,2,'info','Scanned contents of 652 additional files at 12.73 per second'),(119162,1647897622.834977,2,'info','Scanned contents of 628 additional files at 12.51 per second'),(119161,1647897621.832833,2,'info','Scanned contents of 606 additional files at 12.32 per second'),(119160,1647897620.826933,2,'info','Scanned contents of 593 additional files at 12.31 per second'),(119159,1647897619.776947,2,'info','Scanned contents of 565 additional files at 11.99 per second'),(119158,1647897618.770413,2,'info','Scanned contents of 541 additional files at 11.73 per second'),(119157,1647897617.719899,2,'info','Scanned contents of 513 additional files at 11.38 per second'),(119042,1647897533.300753,2,'info','Analyzed 7800 files containing 154.92 MB of data so far'),(119041,1647897533.137189,2,'info','Analyzed 7700 files containing 154.59 MB of data so far'),(119040,1647897532.556008,2,'info','Analyzed 7600 files containing 152.38 MB of data so far'),(119039,1647897532.387231,2,'info','Analyzed 7500 files containing 152.04 MB of data so far'),(119741,1648161818.711287,2,'info','Scanned contents of 2433 additional files at 12.91 per second'),(119740,1648161817.659346,2,'info','Scanned contents of 2421 additional files at 12.92 per second'),(119739,1648161816.621032,2,'info','Scanned contents of 2409 additional files at 12.93 per second'),(119738,1648161815.520199,2,'info','Scanned contents of 2396 additional files at 12.93 per second'),(119736,1648161812.465640,2,'info','Scanned contents of 2378 additional files at 13.05 per second'),(119737,1648161814.448455,2,'info','Scanned contents of 2388 additional files at 12.97 per second'),(119220,1647897703.521505,2,'info','Scanned contents of 1352 additional files at 10.33 per second'),(119219,1647897702.440276,2,'info','Scanned contents of 1326 additional files at 10.22 per second'),(119215,1647897697.815086,2,'info','Scanned contents of 1285 additional files at 10.27 per second'),(119216,1647897698.831269,2,'info','Scanned contents of 1301 additional files at 10.31 per second'),(119217,1647897699.957584,2,'info','Scanned contents of 1306 additional files at 10.26 per second'),(119218,1647897701.328358,2,'info','Scanned contents of 1307 additional files at 10.16 per second'),(118954,1647897474.171273,2,'info','10000 files indexed'),(118955,1647897474.534174,2,'info','10500 files indexed'),(119437,1648161545.516658,2,'info','Analyzed 800 files containing 11.83 MB of data so far'),(119706,1648161775.733286,1,'error','Scan Engine Error: The signature on the request to start a scan is invalid. Please try again.'),(119707,1648161776.131890,2,'info','Scanned contents of 1875 additional files at 12.85 per second'),(119708,1648161777.152440,2,'info','Scanned contents of 1906 additional files at 12.98 per second'),(119709,1648161778.153092,2,'info','Scanned contents of 1937 additional files at 13.10 per second'),(119710,1648161779.191979,2,'info','Scanned contents of 1965 additional files at 13.19 per second'),(119711,1648161780.202047,2,'info','Scanned contents of 2012 additional files at 13.42 per second'),(119712,1648161781.211568,2,'info','Scanned contents of 2045 additional files at 13.55 per second'),(119713,1648161782.700994,2,'info','Scanned contents of 2079 additional files at 13.64 per second'),(119578,1648161628.787363,2,'info','Analyzed 14800 files containing 295.7 MB of data so far'),(119577,1648161628.474393,2,'info','Analyzed 14700 files containing 294.59 MB of data so far'),(119776,1648161858.948684,2,'info','Done file contents scan'),(119775,1648161858.944429,2,'info','Done host key check.'),(119774,1648161858.716427,2,'info','Checking 2768 host keys against Wordfence scanning servers.'),(119773,1648161858.701842,2,'info','Asking Wordfence to check URLs against malware list.'),(119772,1648161858.701511,2,'info','Scanned contents of 3024 additional files at 13.24 per second'),(119771,1648161858.592455,2,'info','Scanned contents of 3020 additional files at 13.23 per second'),(119770,1648161857.013816,2,'info','Scanned contents of 3017 additional files at 13.31 per second'),(119769,1648161852.851720,2,'info','Scanned contents of 2992 additional files at 13.44 per second'),(119768,1648161851.843519,2,'info','Scanned contents of 2956 additional files at 13.34 per second'),(119296,1647897801.796129,2,'info','Scanned contents of 2852 additional files at 12.45 per second'),(119297,1647897802.802343,2,'info','Scanned contents of 2882 additional files at 12.52 per second'),(119298,1647897803.812636,2,'info','Scanned contents of 2910 additional files at 12.59 per second'),(119299,1647897807.259147,2,'info','Scanned contents of 2917 additional files at 12.43 per second'),(119300,1647897808.261804,2,'info','Scanned contents of 2949 additional files at 12.52 per second'),(119301,1647897809.367111,2,'info','Scanned contents of 2972 additional files at 12.55 per second'),(119302,1647897812.775589,2,'info','Scanned contents of 2977 additional files at 12.40 per second'),(119303,1647897814.272213,2,'info','Scanned contents of 2980 additional files at 12.33 per second'),(119304,1647897814.380791,2,'info','Scanned contents of 2984 additional files at 12.34 per second'),(119697,1648161764.811914,2,'info','Scanned contents of 1583 additional files at 11.77 per second'),(119698,1648161765.826434,2,'info','Scanned contents of 1612 additional files at 11.89 per second'),(119699,1648161766.840389,2,'info','Scanned contents of 1656 additional files at 12.13 per second'),(119700,1648161767.853641,2,'info','Scanned contents of 1694 additional files at 12.31 per second'),(119701,1648161768.868024,2,'info','Scanned contents of 1729 additional files at 12.47 per second'),(119702,1648161769.879574,2,'info','Scanned contents of 1763 additional files at 12.63 per second'),(119703,1648161770.881540,2,'info','Scanned contents of 1781 additional files at 12.67 per second'),(119704,1648161774.111877,2,'info','Scanned contents of 1787 additional files at 12.42 per second'),(119813,1648203377.006887,1,'info','Quick Scan Complete. Scanned in 1 second.'),(119812,1648203377.006702,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 109.25 MB'),(119811,1648203377.006115,1,'info','-------------------'),(119810,1648203377.003606,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(118957,1647897474.790593,2,'info','11500 files indexed'),(118937,1647897469.006137,2,'info','1500 files indexed'),(118938,1647897469.250374,2,'info','2000 files indexed'),(118939,1647897469.532200,2,'info','2500 files indexed'),(118940,1647897469.723655,2,'info','3000 files indexed'),(118941,1647897469.863161,2,'info','3500 files indexed'),(118936,1647897468.884840,2,'info','1000 files indexed'),(118935,1647897468.612006,2,'info','500 files indexed'),(118931,1647897468.467404,10,'info','SUM_DISABLED:Skipping theme scan'),(118932,1647897468.467842,10,'info','SUM_DISABLED:Skipping plugin scan'),(118933,1647897468.469678,10,'info','SUM_START:Scanning for known malware files'),(118934,1647897468.473400,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(118929,1647897468.462016,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(118930,1647897468.465310,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(118928,1647897468.460788,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(119808,1648203376.923832,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(119809,1648203376.927356,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(118920,1647897466.639263,2,'info','Getting plugin list from WordPress'),(118921,1647897467.285707,2,'info','Found 25 plugins'),(118922,1647897467.285987,2,'info','Getting theme list from WordPress'),(118923,1647897467.792575,2,'info','Found 24 themes'),(119807,1648203376.923454,10,'info','SUM_START:Checking Web Application Firewall status'),(119806,1648203376.913282,1,'info','Initiating quick scan'),(119804,1648161862.880274,1,'error','Scan Engine Error: The signature on the request to start a scan is invalid. Please try again.'),(119805,1648203376.911100,10,'info','SUM_PREP:Preparing a new scan.'),(118926,1647897468.456264,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(118927,1647897468.457477,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(119310,1647897814.647783,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),(119068,1647897544.386194,2,'info','Analyzed 10400 files containing 196.35 MB of data so far'),(119069,1647897545.131763,2,'info','Analyzed 10500 files containing 199.03 MB of data so far'),(119070,1647897545.992651,2,'info','Analyzed 10600 files containing 202.42 MB of data so far'),(119471,1648161567.815598,2,'info','Analyzed 4200 files containing 105.18 MB of data so far'),(118850,1647640158.042269,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(119755,1648161838.207949,2,'info','Scanned contents of 2622 additional files at 12.61 per second'),(119754,1648161837.183391,2,'info','Scanned contents of 2607 additional files at 12.60 per second'),(119227,1647897713.290715,2,'info','Scanned contents of 1473 additional files at 10.47 per second'),(119228,1647897714.304436,2,'info','Scanned contents of 1496 additional files at 10.56 per second'),(119229,1647897715.354190,2,'info','Scanned contents of 1524 additional files at 10.68 per second'),(119230,1647897716.366652,2,'info','Scanned contents of 1549 additional files at 10.78 per second'),(119231,1647897717.553112,2,'info','Scanned contents of 1570 additional files at 10.83 per second'),(119232,1647897718.555188,2,'info','Scanned contents of 1603 additional files at 10.99 per second'),(119001,1647897517.080586,2,'info','Analyzed 3700 files containing 96.89 MB of data so far'),(119002,1647897517.311892,2,'info','Analyzed 3800 files containing 97.89 MB of data so far'),(119003,1647897517.594680,2,'info','Analyzed 3900 files containing 99.19 MB of data so far'),(119630,1648161678.452799,2,'info','Scanned contents of 593 additional files at 12.31 per second'),(119273,1647897773.466637,2,'info','Scanned contents of 2391 additional files at 11.91 per second'),(119270,1647897770.206477,2,'info','Scanned contents of 2357 additional files at 11.93 per second'),(119271,1647897771.213266,2,'info','Scanned contents of 2368 additional files at 11.93 per second'),(119272,1647897772.371312,2,'info','Scanned contents of 2380 additional files at 11.92 per second'),(119281,1647897782.836160,2,'info','Scanned contents of 2523 additional files at 12.00 per second'),(119280,1647897781.819388,2,'info','Scanned contents of 2504 additional files at 11.97 per second'),(119279,1647897780.525129,2,'info','Scanned contents of 2488 additional files at 11.97 per second'),(119278,1647897779.519444,2,'info','Scanned contents of 2472 additional files at 11.95 per second'),(119277,1647897778.509461,2,'info','Scanned contents of 2456 additional files at 11.93 per second'),(119276,1647897776.528435,2,'info','Scanned contents of 2440 additional files at 11.97 per second'),(119275,1647897775.507741,2,'info','Scanned contents of 2415 additional files at 11.90 per second'),(119274,1647897774.500773,2,'info','Scanned contents of 2401 additional files at 11.89 per second'),(118840,1647640156.605338,2,'info','Scanned contents of 2984 additional files at 12.32 per second'),(118841,1647640156.605633,2,'info','Asking Wordfence to check URLs against malware list.'),(118842,1647640156.619548,2,'info','Checking 2767 host keys against Wordfence scanning servers.'),(118843,1647640157.807951,2,'info','Done host key check.'),(118844,1647640157.812203,2,'info','Done file contents scan'),(119241,1647897727.756938,2,'info','Scanned contents of 1904 additional files at 12.28 per second'),(119240,1647897726.745966,2,'info','Scanned contents of 1876 additional files at 12.17 per second'),(119239,1647897725.736274,2,'info','Scanned contents of 1845 additional files at 12.05 per second'),(119238,1647897724.732186,2,'info','Scanned contents of 1803 additional files at 11.86 per second'),(119237,1647897723.716530,2,'info','Scanned contents of 1766 additional files at 11.69 per second'),(119236,1647897722.609771,2,'info','Scanned contents of 1746 additional files at 11.64 per second'),(119235,1647897721.590479,2,'info','Scanned contents of 1714 additional files at 11.51 per second'),(119234,1647897720.586115,2,'info','Scanned contents of 1682 additional files at 11.37 per second'),(119233,1647897719.581925,2,'info','Scanned contents of 1645 additional files at 11.20 per second'),(119505,1648161584.583420,2,'info','Analyzed 7500 files containing 154.81 MB of data so far'),(118942,1647897470.025478,2,'info','4000 files indexed'),(118943,1647897471.162706,2,'info','4500 files indexed'),(118944,1647897471.640949,2,'info','5000 files indexed'),(118945,1647897472.148660,2,'info','5500 files indexed'),(118946,1647897472.584140,2,'info','6000 files indexed'),(118947,1647897472.795755,2,'info','6500 files indexed'),(118948,1647897473.285943,2,'info','7000 files indexed'),(118949,1647897473.494439,2,'info','7500 files indexed'),(118950,1647897473.633910,2,'info','8000 files indexed'),(118951,1647897473.734114,2,'info','8500 files indexed'),(118952,1647897473.940166,2,'info','9000 files indexed'),(118953,1647897474.054722,2,'info','9500 files indexed'),(119504,1648161584.382990,2,'info','Analyzed 7400 files containing 154.49 MB of data so far'),(119503,1648161581.794275,2,'info','Analyzed 7300 files containing 142.18 MB of data so far'),(119502,1648161581.738230,1,'error','Scan Engine Error: The signature on the request to start a scan is invalid. Please try again.'),(119501,1648161581.055427,2,'info','Analyzed 7200 files containing 139.08 MB of data so far'),(119500,1648161580.570638,2,'info','Analyzed 7100 files containing 137.23 MB of data so far'),(119499,1648161580.385992,2,'info','Analyzed 7000 files containing 136.68 MB of data so far'),(119498,1648161579.397459,2,'info','Analyzed 6900 files containing 132.54 MB of data so far'),(119497,1648161578.446726,2,'info','Analyzed 6800 files containing 128.54 MB of data so far'),(119496,1648161574.781604,2,'info','Analyzed 6700 files containing 125.99 MB of data so far'),(119495,1648161574.335846,2,'info','Analyzed 6600 files containing 124.15 MB of data so far'),(119494,1648161574.124098,2,'info','Analyzed 6500 files containing 123.83 MB of data so far'),(119493,1648161573.972513,2,'info','Analyzed 6400 files containing 123.6 MB of data so far'),(119492,1648161573.846010,2,'info','Analyzed 6300 files containing 123.37 MB of data so far'),(119491,1648161573.681737,2,'info','Analyzed 6200 files containing 123.06 MB of data so far'),(119490,1648161573.537376,2,'info','Analyzed 6100 files containing 122.87 MB of data so far'),(119489,1648161573.279619,2,'info','Analyzed 6000 files containing 122.26 MB of data so far'),(119488,1648161572.880480,2,'info','Analyzed 5900 files containing 120.74 MB of data so far'),(119487,1648161572.508105,2,'info','Analyzed 5800 files containing 119.65 MB of data so far'),(119486,1648161572.215836,2,'info','Analyzed 5700 files containing 118.55 MB of data so far'),(119485,1648161571.911685,2,'info','Analyzed 5600 files containing 117.61 MB of data so far'),(119484,1648161571.525640,2,'info','Analyzed 5500 files containing 116.9 MB of data so far'),(119483,1648161570.971706,2,'info','Analyzed 5400 files containing 115.28 MB of data so far'),(119294,1647897799.696917,2,'info','Scanned contents of 2794 additional files at 12.31 per second'),(119293,1647897798.663469,2,'info','Scanned contents of 2755 additional files at 12.19 per second'),(119295,1647897800.783907,2,'info','Scanned contents of 2821 additional files at 12.37 per second'),(119778,1648161858.965088,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),(119777,1648161858.960557,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(119779,1648161858.971388,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(119780,1648161858.973678,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(119788,1648161859.422610,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),(119783,1648161859.185986,2,'info','Checking 226 host keys against Wordfence scanning servers.'),(119781,1648161858.980184,10,'info','SUM_START:Scanning posts for URLs on a domain blocklist'),(119782,1648161859.184297,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(119787,1648161859.416279,10,'info','SUM_START:Scanning comments for URLs on a domain blocklist'),(119786,1648161859.408524,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),(119785,1648161859.407094,2,'info','Done examining URLs'),(119784,1648161859.406545,2,'info','Done host key check.'),(119062,1647897540.147976,2,'info','Analyzed 9800 files containing 181.34 MB of data so far'),(119063,1647897540.469014,2,'info','Analyzed 9900 files containing 182.37 MB of data so far'),(119064,1647897541.025721,2,'info','Analyzed 10000 files containing 184.48 MB of data so far'),(119065,1647897542.622018,2,'info','Analyzed 10100 files containing 189.38 MB of data so far'),(119066,1647897542.939731,2,'info','Analyzed 10200 files containing 190.63 MB of data so far'),(119067,1647897543.726343,2,'info','Analyzed 10300 files containing 193.98 MB of data so far'),(118956,1647897474.662997,2,'info','11000 files indexed'),(119436,1648161544.877457,2,'info','Analyzed 700 files containing 9.31 MB of data so far'),(119432,1648161543.648757,2,'info','Analyzed 300 files containing 4.09 MB of data so far'),(119433,1648161544.098031,2,'info','Analyzed 400 files containing 6.89 MB of data so far'),(119434,1648161544.362403,2,'info','Analyzed 500 files containing 7.79 MB of data so far'),(119435,1648161544.626042,2,'info','Analyzed 600 files containing 8.61 MB of data so far'),(119431,1648161543.402427,2,'info','Analyzed 200 files containing 2.89 MB of data so far'),(119346,1647948535.582367,1,'error','Scan Engine Error: The signature on the request to start a scan is invalid. Please try again.'),(119430,1648161543.044054,2,'info','Analyzed 100 files containing 1.67 MB of data so far'),(119428,1648161542.528842,2,'info','14500 files indexed'),(119429,1648161542.566588,2,'info','14863 files indexed'),(119391,1648161536.725855,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(119392,1648161536.727186,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(119393,1648161536.730372,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(119394,1648161536.731652,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(119395,1648161536.734840,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(119396,1648161536.736905,10,'info','SUM_DISABLED:Skipping theme scan'),(119397,1648161536.737313,10,'info','SUM_DISABLED:Skipping plugin scan'),(119398,1648161536.739099,10,'info','SUM_START:Scanning for known malware files'),(119399,1648161536.742780,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(119400,1648161536.901021,2,'info','500 files indexed'),(119401,1648161537.141474,2,'info','1000 files indexed'),(119402,1648161537.286070,2,'info','1500 files indexed'),(119403,1648161537.527391,2,'info','2000 files indexed'),(119404,1648161537.713298,2,'info','2500 files indexed'),(119405,1648161537.912990,2,'info','3000 files indexed'),(119406,1648161538.054507,2,'info','3500 files indexed'),(119407,1648161538.216696,2,'info','4000 files indexed'),(119408,1648161539.277813,2,'info','4500 files indexed'),(119409,1648161539.538208,2,'info','5000 files indexed'),(119410,1648161539.818071,2,'info','5500 files indexed'),(119411,1648161540.284278,2,'info','6000 files indexed'),(119412,1648161540.460398,2,'info','6500 files indexed'),(119413,1648161540.647618,2,'info','7000 files indexed'),(119414,1648161540.764280,2,'info','7500 files indexed'),(119415,1648161540.894384,2,'info','8000 files indexed'),(119416,1648161540.974639,2,'info','8500 files indexed'),(119417,1648161541.133282,2,'info','9000 files indexed'),(119418,1648161541.284533,2,'info','9500 files indexed'),(119419,1648161541.424656,2,'info','10000 files indexed'),(119420,1648161541.614906,2,'info','10500 files indexed'),(119421,1648161541.739436,2,'info','11000 files indexed'),(119422,1648161541.829630,2,'info','11500 files indexed'),(119423,1648161541.915141,2,'info','12000 files indexed'),(119424,1648161542.002952,2,'info','12500 files indexed'),(119425,1648161542.076764,2,'info','13000 files indexed'),(119426,1648161542.391707,2,'info','13500 files indexed'),(119427,1648161542.462693,2,'info','14000 files indexed'),(119619,1648161665.255223,2,'info','Scanned contents of 368 additional files at 10.52 per second'),(119618,1648161663.880810,2,'info','Scanned contents of 361 additional files at 10.74 per second'),(119617,1648161662.853308,2,'info','Scanned contents of 342 additional files at 10.49 per second'),(119616,1648161661.512094,2,'info','Scanned contents of 336 additional files at 10.75 per second'),(119615,1648161660.505685,2,'info','Scanned contents of 335 additional files at 11.08 per second'),(119614,1648161659.499849,2,'info','Scanned contents of 314 additional files at 10.74 per second'),(119613,1648161658.416971,2,'info','Scanned contents of 309 additional files at 10.98 per second'),(119758,1648161841.452009,2,'info','Scanned contents of 2679 additional files at 12.69 per second'),(119759,1648161842.544473,2,'info','Scanned contents of 2695 additional files at 12.70 per second'),(119760,1648161843.551626,2,'info','Scanned contents of 2713 additional files at 12.72 per second'),(119761,1648161844.561203,2,'info','Scanned contents of 2764 additional files at 12.90 per second'),(119762,1648161845.684123,2,'info','Scanned contents of 2783 additional files at 12.92 per second'),(119763,1648161846.719370,2,'info','Scanned contents of 2790 additional files at 12.89 per second'),(119764,1648161847.730562,2,'info','Scanned contents of 2825 additional files at 12.99 per second'),(119765,1648161848.794490,2,'info','Scanned contents of 2859 additional files at 13.08 per second'),(119766,1648161849.814478,2,'info','Scanned contents of 2885 additional files at 13.14 per second'),(119767,1648161850.843506,2,'info','Scanned contents of 2922 additional files at 13.25 per second'),(119438,1648161545.959270,2,'info','Analyzed 900 files containing 13.69 MB of data so far'),(119439,1648161546.187058,2,'info','Analyzed 1000 files containing 15.53 MB of data so far'),(119440,1648161546.593784,2,'info','Analyzed 1100 files containing 17.16 MB of data so far'),(119441,1648161546.940243,2,'info','Analyzed 1200 files containing 18.49 MB of data so far'),(119442,1648161547.697653,2,'info','Analyzed 1300 files containing 21.74 MB of data so far'),(119443,1648161547.985122,2,'info','Analyzed 1400 files containing 22.75 MB of data so far'),(119470,1648161567.619833,2,'info','Analyzed 4100 files containing 104.41 MB of data so far'),(119469,1648161567.197736,2,'info','Analyzed 4000 files containing 102.8 MB of data so far'),(119282,1647897783.871346,2,'info','Scanned contents of 2536 additional files at 12.01 per second'),(119221,1647897704.568035,2,'info','Scanned contents of 1385 additional files at 10.50 per second'),(119222,1647897708.198068,2,'info','Scanned contents of 1391 additional files at 10.26 per second'),(119366,1648121293.546715,10,'info','SUM_FINAL:Scan complete. You have 1 new issue to fix. See below.'),(119377,1648161535.478573,2,'info','The disk has 991064.15 MB available'),(119376,1648161535.478353,2,'info','Total disk space: 1.79 TB -- Free disk space: 967.84 GB'),(119375,1648161535.476194,10,'info','SUM_START:Scanning to check available disk space'),(119374,1648161535.469851,10,'info','SUM_ENDOK:Checking for the most secure way to get IPs'),(119373,1648161535.466477,10,'info','SUM_START:Checking for the most secure way to get IPs'),(119372,1648161533.460911,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blocklist is for paid members only'),(119371,1648161531.458923,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(119370,1648161529.457171,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(119369,1648161529.129579,1,'info','Contacting Wordfence to initiate scan'),(119368,1648161529.124724,10,'info','SUM_PREP:Preparing a new scan.'),(119367,1648161525.744842,1,'info','Scheduled Wordfence scan starting at Thursday 24th of March 2022 10:38:45 PM');
/*!40000 ALTER TABLE `wpjj_wfStatus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjj_wfTrafficRates`
--

DROP TABLE IF EXISTS `wpjj_wfTrafficRates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_wfTrafficRates` (
  `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',
  `hitType` enum('hit','404') NOT NULL DEFAULT 'hit',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`,`hitType`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wfTrafficRates`
--

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

--
-- Table structure for table `wpjj_wfls_2fa_secrets`
--

DROP TABLE IF EXISTS `wpjj_wfls_2fa_secrets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpjj_wfls_2fa_secrets` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `secret` tinyblob NOT NULL,
  `recovery` blob NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `vtime` int(10) unsigned NOT NULL,
  `mode` enum('authenticator') NOT NULL DEFAULT 'authenticator',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjj_wfls_2fa_secrets`
--

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

--
-- Table structure for table `wpjj_wfls_settings`
--

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

--
-- Dumping data for table `wpjj_wfls_settings`
--

LOCK TABLES `wpjj_wfls_settings` WRITE;
/*!40000 ALTER TABLE `wpjj_wfls_settings` DISABLE KEYS */;
INSERT INTO `wpjj_wfls_settings` (`name`, `value`, `autoload`) VALUES ('2fa-user-grace-period',_binary '10','yes'),('allow-disabling-ntp',_binary '1','yes'),('allow-xml-rpc',_binary '1','yes'),('captcha-stats',_binary '{\"counts\":[0,0,0,0,0,0,0,0,0,0,0],\"avg\":0}','yes'),('delete-deactivation','','yes'),('enable-auth-captcha','','yes'),('enable-woocommerce-integration','','yes'),('global-notices',_binary '[]','yes'),('ip-source','','yes'),('ip-trusted-proxies','','yes'),('last-secret-refresh',_binary '1634637933','yes'),('ntp-failure-count',_binary '0','yes'),('ntp-offset',_binary '0.21612882614136','yes'),('recaptcha-threshold',_binary '0.5','yes'),('remember-device','','yes'),('remember-device-duration',_binary '2592000','yes'),('require-2fa-grace-period-enabled','','yes'),('require-2fa.administrator','','yes'),('shared-hash-secret',_binary '957f2fc6508bc81bdb75480c358f74a5c1f32cb98aba5376bdf0053c15a70589','yes'),('shared-symmetric-secret',_binary '5c4c1e616b8971da573d27661a1c111384d1041c52e2ede6dd0c2f01912b314d','yes'),('use-ntp',_binary '1','yes'),('whitelisted','','yes'),('xmlrpc-enabled',_binary '1','yes');
/*!40000 ALTER TABLE `wpjj_wfls_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'homeston_wp464'
--

--
-- Dumping routines for database 'homeston_wp464'
--
/*!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 2023-05-01  2:04:00
